build: merge Coati app and Trial to single executable
* removed trial target * updated deploy scripts to exclude trial * cleanup CMakeLists * removed Eigen dependencies * split parser lib into lib_cxx and lib_java * added ProjectFactory and ProjectFactoryModules * removed old installer projects * updated wix installer * updated readme for wix setup * updated to use obfuscated exe * added qt.conf * added indexing dialog images * added jars * added coatidb files of sample projects * added source code of javaparser sample * removed auto-refresh image * intermediate files of windows installer are created in build folder * preselected desktop shortcut * build bat is executed from deploy_windows script
This commit is contained in:
@@ -13,15 +13,6 @@ BUNDLE_NAME="@MACOSX_BUNDLE_NAME@"
|
||||
APP_NAME="@MACOSX_BINARY_NAME@"
|
||||
DYNLIB_PATHS=(@MACOSX_DYNAMIC_LIBRARIES@)
|
||||
|
||||
if [ "$1" = "trial" ]
|
||||
then
|
||||
echo -e $INFO "Trial bundle"
|
||||
BUNDLE_NAME="${BUNDLE_NAME}_Trial"
|
||||
APP_NAME="${APP_NAME}_trial"
|
||||
echo $BUNDLE_NAME
|
||||
echo $APP_NAME
|
||||
fi
|
||||
|
||||
VERSION_STRING=$(git describe --long)
|
||||
VERSION_STRING="${VERSION_STRING//-/_}"
|
||||
VERSION_STRING="${VERSION_STRING//./_}"
|
||||
@@ -79,12 +70,7 @@ ln -s /Applications $PACKAGE_DIR/Applications
|
||||
echo -e $INFO "Copying bundle contents."
|
||||
cp $APP_NAME $APP_PATH
|
||||
|
||||
if [ "$1" = "trial" ]
|
||||
then
|
||||
cp bundle_info_trial.plist $BUNDLE_PATH/Contents/Info.plist
|
||||
else
|
||||
cp bundle_info.plist $BUNDLE_PATH/Contents/Info.plist
|
||||
fi
|
||||
cp bundle_info.plist $BUNDLE_PATH/Contents/Info.plist
|
||||
|
||||
mkdir -p $RES_DIR/data
|
||||
mkdir -p $RES_DIR/data/projects
|
||||
@@ -98,12 +84,6 @@ cp -R ../data/projects/tictactoe $RES_DIR/data/projects/tictactoe
|
||||
cp -R ../data/projects/tutorial $RES_DIR/data/projects/tutorial
|
||||
cp -R ../data/projects/javaparser $RES_DIR/data/projects/javaparser
|
||||
|
||||
if [ ! "$1" = "trial" ]
|
||||
then
|
||||
rm $RES_DIR/data/projects/tictactoe/tictactoe.coatidb
|
||||
rm $RES_DIR/data/projects/tutorial/tutorial.coatidb
|
||||
fi
|
||||
|
||||
mkdir -p $RES_DIR/user
|
||||
mkdir -p $RES_DIR/user/log
|
||||
|
||||
|
||||
Reference in New Issue
Block a user