mirror of
https://github.com/Poikilos/b3view.git
synced 2023-10-03 07:58:48 -07:00
Fix input for assertions. Organize distributable files.
This commit is contained in:
parent
c9cfbfc87c
commit
0170567e66
@ -503,8 +503,8 @@ TestUtility::TestUtility() {
|
||||
|
||||
testReplaceAll(L"***water_dragon***", L"***", L"", L"water_dragon");
|
||||
testReplaceAll(L"***water_dragon***", L"", L"***", L"***water_dragon***"); // do nothing
|
||||
testLTrim("apple ", "apple");
|
||||
testLTrim(" banana ", "banana ");
|
||||
testLTrim(" apple", "apple");
|
||||
testLTrim(" banana ", "banana ");
|
||||
testRTrim(" cantelope ", " cantelope");
|
||||
testRTrim("dragon fruit ", "dragon fruit");
|
||||
testTrim(" elderberry ", "elderberry");
|
||||
|
7
build.sh
7
build.sh
@ -65,3 +65,10 @@ if [ ! -f "$OUT_BIN" ]; then
|
||||
else
|
||||
echo "Building $OUT_BIN is complete."
|
||||
fi
|
||||
|
||||
INSTALLED_BIN="$HOME/.local/bin/b3view"
|
||||
if [ -f "$INSTALLED_BIN" ]; then
|
||||
echo "* updating $INSTALLED_BIN..."
|
||||
rm "$INSTALLED_BIN"
|
||||
cp -f "$OUT_BIN" "$INSTALLED_BIN"
|
||||
fi
|
||||
|
BIN
build/b3view
BIN
build/b3view
Binary file not shown.
198
build/install.sh
198
build/install.sh
@ -1,198 +0,0 @@
|
||||
#!/bin/bash
|
||||
|
||||
customDie() {
|
||||
echo
|
||||
echo "ERROR:"
|
||||
echo "$1"
|
||||
echo
|
||||
echo
|
||||
exit 1
|
||||
}
|
||||
|
||||
echo
|
||||
echo
|
||||
if [ -z "$PREFIX" ]; then PREFIX=/usr/local; fi
|
||||
dest_bin_dir="$PREFIX/bin"
|
||||
dest_share_dir="$PREFIX/share"
|
||||
project_unix_name=b3view
|
||||
dest_name=$project_unix_name
|
||||
src_name="$project_unix_name"
|
||||
src_path="$src_name"
|
||||
try_dest_bin="$dest_bin_dir/$dest_name"
|
||||
icon_name="b3view.png"
|
||||
icon_src_path="icons/$icon_name"
|
||||
shortcut_name="org.poikilos.b3view.desktop"
|
||||
shortcut_src_path="applications/$shortcut_name"
|
||||
icons_root=$PREFIX/share/pixmaps
|
||||
applications_path=$PREFIX/share/applications
|
||||
|
||||
mimes_path="share/mime/packages"
|
||||
USER_MIMETYPES_DB_PATH=$HOME/.local/share/mime
|
||||
#USER_MIMETYPES_PATH="$USER_MIMETYPES_DB_PATH/packages"
|
||||
SYSTEM_MIMETYPES_DB_PATH=/usr/share/mime
|
||||
#SYSTEM_MIMETYPES_PATH=$SYSTEM_MIMETYPES_DB_PATH/packages
|
||||
MIMETYPES_DB_PATH=$SYSTEM_MIMETYPES_DB_PATH
|
||||
|
||||
try_build_path="../../build-$project_unix_name-Desktop-Release/build/"
|
||||
try_src_path="$try_build_path/$src_name"
|
||||
if [ ! -f $src_path ]; then
|
||||
echo "Checking for $src_path...NOT FOUND"
|
||||
if [ -f "$try_src_path" ]; then
|
||||
echo "Checking for $src_name in $try_build_path...FOUND"
|
||||
src_path="$try_src_path"
|
||||
else
|
||||
echo "Checking for $src_name in $try_build_path...NOT FOUND"
|
||||
fi
|
||||
fi
|
||||
if [ ! -f "$src_path" ]; then
|
||||
customDie "(Nothing done) missing $src_name (You must build first, such as using Qt Creator)."
|
||||
else
|
||||
echo "Checking for $src_path...FOUND"
|
||||
echo "* current directory: `pwd`"
|
||||
fi
|
||||
|
||||
if [ -d "$try_dest_bin" ]; then
|
||||
customDie "(Nothing done) '$try_dest_bin' is a directory (should be deleted or a binary file of old version)"
|
||||
fi
|
||||
|
||||
PROFILE_ENABLE=false
|
||||
if [ -f "$try_dest_bin" ]; then
|
||||
rm -f "$try_dest_bin"
|
||||
if [ -f "$try_dest_bin" ]; then
|
||||
echo "WARNING: can't remove old $try_dest_bin, so"
|
||||
PROFILE_ENABLE=true
|
||||
fi
|
||||
fi
|
||||
# echo "* using '$src_path'..."
|
||||
cp -f "$src_path" "$try_dest_bin"
|
||||
|
||||
if [ ! -f "$try_dest_bin" ]; then
|
||||
PROFILE_ENABLE=true
|
||||
prev_dir="$dest_bin_dir"
|
||||
echo "WARNING: can't write to $prev_dir, so"
|
||||
fi
|
||||
if [ "@$PROFILE_ENABLE" = "@true" ]; then
|
||||
dest_bin_dir="$HOME/.local/bin"
|
||||
echo "installing to '$dest_bin_dir'."
|
||||
echo "Press Ctrl C to cancel..."
|
||||
#sleep 1
|
||||
#echo "3..."
|
||||
#sleep 1
|
||||
#echo "2..."
|
||||
#sleep 1
|
||||
#echo "1..."
|
||||
#sleep 1
|
||||
else
|
||||
echo "Successfully installed as '$try_dest_bin'"
|
||||
fi
|
||||
if [ "@$PROFILE_ENABLE" = "@true" ]; then
|
||||
if [ ! -d "$dest_bin_dir" ]; then mkdir "$dest_bin_dir"; fi
|
||||
cp -f $src_path "$dest_bin_dir/"
|
||||
icons_root="$HOME/.local/share/icons"
|
||||
applications_path="$HOME/.local/share/applications"
|
||||
MIMETYPES_DB_PATH="$USER_MIMETYPES_DB_PATH"
|
||||
fi
|
||||
if [ ! -d "$icons_root" ]; then
|
||||
mkdir -p "$icons_root"
|
||||
fi
|
||||
cp -f "$icon_src_path" "$icons_root/"
|
||||
if [ -f "$icons_root/$icon_name" ]; then
|
||||
echo "Successfully copied '$icons_root/$icon_name'"
|
||||
else
|
||||
echo "FAILED to install '$icons_root/$icon_name'"
|
||||
fi
|
||||
|
||||
if [ ! -d "$applications_path" ]; then
|
||||
mkdir -p "$applications_path"
|
||||
fi
|
||||
|
||||
#if [ "@$PROFILE_ENABLE" = "@true" ]; then
|
||||
# always rewrite, since PREFIX may differ
|
||||
echo "Rewriting $applications_path/$shortcut_name..."
|
||||
if [ -f "$shortcut_src_path" ]; then
|
||||
cat "$shortcut_src_path" | grep -v Exec= | grep -v Icon= > "$applications_path/$shortcut_name"
|
||||
echo "Exec=$dest_bin_dir/$project_unix_name" >> "$applications_path/$shortcut_name"
|
||||
echo "Icon=$icons_root/$icon_name" >> "$applications_path/$shortcut_name"
|
||||
echo >> "$applications_path/$shortcut_name"
|
||||
else
|
||||
echo "ERROR: No icon installed since missing '$shortcut_src_path'"
|
||||
fi
|
||||
#else
|
||||
#cp -f "$shortcut_src_path" "$applications_path/"
|
||||
#fi
|
||||
|
||||
if [ -f "$applications_path/$shortcut_name" ]; then
|
||||
echo "Successfully copied '$applications_path/$shortcut_name'"
|
||||
else
|
||||
echo "FAILED to install '$applications_path/$shortcut_name'"
|
||||
fi
|
||||
|
||||
if [ ! -d "$MIMETYPES_DB_PATH/packages" ]; then
|
||||
# echo "Creating '$MIMETYPES_DB_PATH/packages'..."
|
||||
mkdir "$MIMETYPES_DB_PATH/packages"
|
||||
fi
|
||||
update_mime_enable=false
|
||||
#if [ ! -f "$mime_path" ]; then
|
||||
#echo "ERROR: Stopped installing mime types since missing $mime_path"
|
||||
#exit 1
|
||||
#fi
|
||||
|
||||
install_mime() {
|
||||
mime_name=$1
|
||||
mime_path="$mimes_path/$mime_name"
|
||||
if [ ! -f "$mime_path" ]; then
|
||||
echo "ERROR: Stopped installing mime types since missing $mime_path"
|
||||
exit 1
|
||||
fi
|
||||
try_dest="$MIMETYPES_DB_PATH/packages/$mime_name"
|
||||
if diff -q $mime_path $try_dest; then
|
||||
echo "(You already have an identical $try_dest)"
|
||||
else
|
||||
cp -f "$mime_path" "$MIMETYPES_DB_PATH/packages/"
|
||||
if [ -f "$MIMETYPES_DB_PATH/packages/$mime_name" ]; then
|
||||
echo "Successfully copied '$MIMETYPES_DB_PATH/packages/$mime_name'"
|
||||
# rm -f "$MIMETYPES_DB_PATH/packages/$mime_name"
|
||||
update_mime_enable=true
|
||||
fi
|
||||
fi
|
||||
}
|
||||
|
||||
install_mime model-b3d.xml
|
||||
install_mime model-x.xml
|
||||
install_mime model-ms3d.xml
|
||||
install_mime model-irr.xml
|
||||
install_mime model-irrmesh.xml
|
||||
|
||||
# Since OBJ Mime type is broken on linux (detected as TGIF obj/sym
|
||||
# hyperlinked vector graphics format unrelated to Wavefront OBJ
|
||||
# format but sharing the same file extension), trying
|
||||
# to add an overlapping mime type breaks it worse (KDE detects the
|
||||
# file as "plain text file" if the xml file below is installed)
|
||||
mime_name=model-obj.xml
|
||||
mime_path="$mimes_path/$mime_name"
|
||||
#if [ ! -f "$mime_path" ]; then
|
||||
#echo "ERROR: Stopped installing mime types since missing $mime_path"
|
||||
#exit 1
|
||||
#fi
|
||||
try_dest="$MIMETYPES_DB_PATH/packages/$mime_name"
|
||||
#if diff -q $mime_path $try_dest; then
|
||||
#echo "* (You already have an identical $try_dest)"
|
||||
#else
|
||||
#cp -f "$mime_path" "$MIMETYPES_DB_PATH/packages/"
|
||||
if [ -f "$MIMETYPES_DB_PATH/packages/$mime_name" ]; then
|
||||
# echo "* Successfully copied '$MIMETYPES_DB_PATH/packages/$mime_name'"
|
||||
echo "* Removing '$MIMETYPES_DB_PATH/packages/$mime_name' (overlaps with system usually)"
|
||||
rm -f "$MIMETYPES_DB_PATH/packages/$mime_name"
|
||||
update_mime_enable=true
|
||||
fi
|
||||
#fi
|
||||
|
||||
|
||||
if [ "@$update_mime_enable" = "@true" ]; then
|
||||
echo "Updating mime type database '$MIMETYPES_DB_PATH'..."
|
||||
update-mime-database "$MIMETYPES_DB_PATH" # must contain packages
|
||||
fi
|
||||
echo "Done."
|
||||
|
||||
echo
|
||||
echo
|
Before Width: | Height: | Size: 727 B After Width: | Height: | Size: 727 B |
0
build/install.bat → dist/install.bat
vendored
0
build/install.bat → dist/install.bat
vendored
0
build/ninja.b3d → dist/ninja.b3d
vendored
0
build/ninja.b3d → dist/ninja.b3d
vendored
0
build/nskinbl.jpg → dist/nskinbl.jpg
vendored
0
build/nskinbl.jpg → dist/nskinbl.jpg
vendored
Before Width: | Height: | Size: 39 KiB After Width: | Height: | Size: 39 KiB |
0
build/nskinrd.jpg → dist/nskinrd.jpg
vendored
0
build/nskinrd.jpg → dist/nskinrd.jpg
vendored
Before Width: | Height: | Size: 51 KiB After Width: | Height: | Size: 51 KiB |
0
build/test.b3d → dist/test.b3d
vendored
0
build/test.b3d → dist/test.b3d
vendored
195
install.sh
195
install.sh
@ -10,6 +10,195 @@ customDie() {
|
||||
}
|
||||
|
||||
echo "Use the install.sh in build instead. Switching to build/install.sh..."
|
||||
cd build || customDie "ERROR: No build directory"
|
||||
chmod +x install.sh
|
||||
./install.sh
|
||||
DIST_DIR=dist
|
||||
if [ ! -d "$DIST_DIR" ]; then
|
||||
customDie "ERROR: There is no $DIST_DIR directory in `pwd`"
|
||||
fi
|
||||
# chmod +x install.sh
|
||||
echo
|
||||
echo
|
||||
if [ -z "$PREFIX" ]; then PREFIX=/usr/local; fi
|
||||
dest_bin_dir="$PREFIX/bin"
|
||||
dest_share_dir="$PREFIX/share"
|
||||
project_unix_name=b3view
|
||||
dest_name=$project_unix_name
|
||||
src_name="$project_unix_name"
|
||||
src_path="$src_name"
|
||||
try_dest_bin="$dest_bin_dir/$dest_name"
|
||||
icon_name="b3view.png"
|
||||
icon_src_path="icons/$icon_name"
|
||||
shortcut_name="org.poikilos.b3view.desktop"
|
||||
shortcut_src_path="applications/$shortcut_name"
|
||||
icons_root=$PREFIX/share/pixmaps
|
||||
applications_path=$PREFIX/share/applications
|
||||
|
||||
mimes_path="share/mime/packages"
|
||||
USER_MIMETYPES_DB_PATH=$HOME/.local/share/mime
|
||||
#USER_MIMETYPES_PATH="$USER_MIMETYPES_DB_PATH/packages"
|
||||
SYSTEM_MIMETYPES_DB_PATH=/usr/share/mime
|
||||
#SYSTEM_MIMETYPES_PATH=$SYSTEM_MIMETYPES_DB_PATH/packages
|
||||
MIMETYPES_DB_PATH=$SYSTEM_MIMETYPES_DB_PATH
|
||||
|
||||
try_build_path="../../build-$project_unix_name-Desktop-Release/build/"
|
||||
try_src_path="$try_build_path/$src_name"
|
||||
if [ ! -f $src_path ]; then
|
||||
echo "Checking for $src_path...NOT FOUND"
|
||||
if [ -f "$try_src_path" ]; then
|
||||
echo "Checking for $src_name in $try_build_path...FOUND"
|
||||
src_path="$try_src_path"
|
||||
else
|
||||
echo "Checking for $src_name in $try_build_path...NOT FOUND"
|
||||
fi
|
||||
fi
|
||||
if [ ! -f "$src_path" ]; then
|
||||
customDie "(Nothing done) missing $src_name (You must build first, such as using Qt Creator)."
|
||||
else
|
||||
echo "Checking for $src_path...FOUND"
|
||||
echo "* current directory: `pwd`"
|
||||
fi
|
||||
|
||||
if [ -d "$try_dest_bin" ]; then
|
||||
customDie "(Nothing done) '$try_dest_bin' is a directory (should be deleted or a binary file of old version)"
|
||||
fi
|
||||
|
||||
PROFILE_ENABLE=false
|
||||
if [ -f "$try_dest_bin" ]; then
|
||||
rm -f "$try_dest_bin"
|
||||
if [ -f "$try_dest_bin" ]; then
|
||||
echo "WARNING: can't remove old $try_dest_bin, so"
|
||||
PROFILE_ENABLE=true
|
||||
fi
|
||||
fi
|
||||
# echo "* using '$src_path'..."
|
||||
cp -f "$src_path" "$try_dest_bin"
|
||||
|
||||
if [ ! -f "$try_dest_bin" ]; then
|
||||
PROFILE_ENABLE=true
|
||||
prev_dir="$dest_bin_dir"
|
||||
echo "WARNING: can't write to $prev_dir, so"
|
||||
fi
|
||||
if [ "@$PROFILE_ENABLE" = "@true" ]; then
|
||||
dest_bin_dir="$HOME/.local/bin"
|
||||
echo "installing to '$dest_bin_dir'."
|
||||
echo "Press Ctrl C to cancel..."
|
||||
#sleep 1
|
||||
#echo "3..."
|
||||
#sleep 1
|
||||
#echo "2..."
|
||||
#sleep 1
|
||||
#echo "1..."
|
||||
#sleep 1
|
||||
else
|
||||
echo "Successfully installed as '$try_dest_bin'"
|
||||
fi
|
||||
if [ "@$PROFILE_ENABLE" = "@true" ]; then
|
||||
if [ ! -d "$dest_bin_dir" ]; then mkdir "$dest_bin_dir"; fi
|
||||
cp -f $src_path "$dest_bin_dir/"
|
||||
icons_root="$HOME/.local/share/icons"
|
||||
applications_path="$HOME/.local/share/applications"
|
||||
MIMETYPES_DB_PATH="$USER_MIMETYPES_DB_PATH"
|
||||
fi
|
||||
if [ ! -d "$icons_root" ]; then
|
||||
mkdir -p "$icons_root"
|
||||
fi
|
||||
cp -f "$icon_src_path" "$icons_root/"
|
||||
if [ -f "$icons_root/$icon_name" ]; then
|
||||
echo "Successfully copied '$icons_root/$icon_name'"
|
||||
else
|
||||
echo "FAILED to install '$icons_root/$icon_name'"
|
||||
fi
|
||||
|
||||
if [ ! -d "$applications_path" ]; then
|
||||
mkdir -p "$applications_path"
|
||||
fi
|
||||
|
||||
#if [ "@$PROFILE_ENABLE" = "@true" ]; then
|
||||
# always rewrite, since PREFIX may differ
|
||||
echo "Rewriting $applications_path/$shortcut_name..."
|
||||
if [ -f "$shortcut_src_path" ]; then
|
||||
cat "$shortcut_src_path" | grep -v Exec= | grep -v Icon= > "$applications_path/$shortcut_name"
|
||||
echo "Exec=$dest_bin_dir/$project_unix_name" >> "$applications_path/$shortcut_name"
|
||||
echo "Icon=$icons_root/$icon_name" >> "$applications_path/$shortcut_name"
|
||||
echo >> "$applications_path/$shortcut_name"
|
||||
else
|
||||
echo "ERROR: No icon installed since missing '$shortcut_src_path'"
|
||||
fi
|
||||
#else
|
||||
#cp -f "$shortcut_src_path" "$applications_path/"
|
||||
#fi
|
||||
|
||||
if [ -f "$applications_path/$shortcut_name" ]; then
|
||||
echo "Successfully copied '$applications_path/$shortcut_name'"
|
||||
else
|
||||
echo "FAILED to install '$applications_path/$shortcut_name'"
|
||||
fi
|
||||
|
||||
if [ ! -d "$MIMETYPES_DB_PATH/packages" ]; then
|
||||
# echo "Creating '$MIMETYPES_DB_PATH/packages'..."
|
||||
mkdir "$MIMETYPES_DB_PATH/packages"
|
||||
fi
|
||||
update_mime_enable=false
|
||||
#if [ ! -f "$mime_path" ]; then
|
||||
#echo "ERROR: Stopped installing mime types since missing $mime_path"
|
||||
#exit 1
|
||||
#fi
|
||||
|
||||
install_mime() {
|
||||
mime_name=$1
|
||||
mime_path="$mimes_path/$mime_name"
|
||||
if [ ! -f "$mime_path" ]; then
|
||||
echo "ERROR: Stopped installing mime types since missing $mime_path"
|
||||
exit 1
|
||||
fi
|
||||
try_dest="$MIMETYPES_DB_PATH/packages/$mime_name"
|
||||
if diff -q $mime_path $try_dest; then
|
||||
echo "(You already have an identical $try_dest)"
|
||||
else
|
||||
cp -f "$mime_path" "$MIMETYPES_DB_PATH/packages/"
|
||||
if [ -f "$MIMETYPES_DB_PATH/packages/$mime_name" ]; then
|
||||
echo "Successfully copied '$MIMETYPES_DB_PATH/packages/$mime_name'"
|
||||
# rm -f "$MIMETYPES_DB_PATH/packages/$mime_name"
|
||||
update_mime_enable=true
|
||||
fi
|
||||
fi
|
||||
}
|
||||
|
||||
install_mime model-b3d.xml
|
||||
install_mime model-x.xml
|
||||
install_mime model-ms3d.xml
|
||||
install_mime model-irr.xml
|
||||
install_mime model-irrmesh.xml
|
||||
|
||||
# Since OBJ Mime type is broken on linux (detected as TGIF obj/sym
|
||||
# hyperlinked vector graphics format unrelated to Wavefront OBJ
|
||||
# format but sharing the same file extension), trying
|
||||
# to add an overlapping mime type breaks it worse (KDE detects the
|
||||
# file as "plain text file" if the xml file below is installed)
|
||||
mime_name=model-obj.xml
|
||||
mime_path="$mimes_path/$mime_name"
|
||||
#if [ ! -f "$mime_path" ]; then
|
||||
#echo "ERROR: Stopped installing mime types since missing $mime_path"
|
||||
#exit 1
|
||||
#fi
|
||||
try_dest="$MIMETYPES_DB_PATH/packages/$mime_name"
|
||||
#if diff -q $mime_path $try_dest; then
|
||||
#echo "* (You already have an identical $try_dest)"
|
||||
#else
|
||||
#cp -f "$mime_path" "$MIMETYPES_DB_PATH/packages/"
|
||||
if [ -f "$MIMETYPES_DB_PATH/packages/$mime_name" ]; then
|
||||
# echo "* Successfully copied '$MIMETYPES_DB_PATH/packages/$mime_name'"
|
||||
echo "* Removing '$MIMETYPES_DB_PATH/packages/$mime_name' (overlaps with system usually)"
|
||||
rm -f "$MIMETYPES_DB_PATH/packages/$mime_name"
|
||||
update_mime_enable=true
|
||||
fi
|
||||
#fi
|
||||
|
||||
|
||||
if [ "@$update_mime_enable" = "@true" ]; then
|
||||
echo "Updating mime type database '$MIMETYPES_DB_PATH'..."
|
||||
update-mime-database "$MIMETYPES_DB_PATH" # must contain packages
|
||||
fi
|
||||
echo "Done."
|
||||
|
||||
echo
|
||||
echo
|
||||
|
Loading…
x
Reference in New Issue
Block a user