* 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
15 lines
575 B
Batchfile
15 lines
575 B
Batchfile
rm -rf build
|
|
mkdir build
|
|
|
|
"devenv.com" Setup/build/Setup.sln //build "Release|x86"
|
|
"devenv.com" CustomActions/CustomActions.sln //build "Release|x86"
|
|
|
|
rm -rf bin
|
|
mkdir bin
|
|
|
|
candle.exe -dprojectVersion="0.9.0" coati.wxs customActions.wxs dialogShortcuts.wxs installDir.wxs appDataDir.wxs -out build/ > build/compileLog.txt
|
|
light.exe -ext WixUIExtension build/coati.wixobj build/customActions.wixobj build/dialogShortcuts.wixobj build/installDir.wixobj build/appDataDir.wixobj -out build/coati.msi > build/linkLog.txt
|
|
|
|
cp -u -r build/coati.msi bin
|
|
cp -u -r build/Setup.exe bin
|