* update to clang/llvm to 3.9 * update to qt 5.8 * fixed windows javapathdetector for 64 bit java. * added LibGui as dependency to tests * fixed legacy Java 6 install necessary on MacOS * fixed setting of user path for 64 bit build * added missing pngs to windows installer * renamed graph zoom button images * reverted moving of setupLogging call to fix crash on deployed exe fortune cookie message = An old acquaintance will enter your life.
33 lines
752 B
CMake
33 lines
752 B
CMake
#pre install script
|
|
function(Print text)
|
|
execute_process(
|
|
COMMAND echo ${text}
|
|
)
|
|
endfunction()
|
|
|
|
function(Run)
|
|
execute_process(
|
|
COMMAND ${ARGV}
|
|
)
|
|
endfunction()
|
|
|
|
# upx
|
|
set(upxPath ${CMAKE_CURRENT_LIST_DIR}/../build/Release/app)
|
|
|
|
execute_process(
|
|
COMMAND ${upxPath}/Coati -z ${CMAKE_CURRENT_LIST_DIR}/../setup/license.txt
|
|
)
|
|
|
|
execute_process(
|
|
COMMAND ${upxPath}/Coati -f -d ${CMAKE_CURRENT_LIST_DIR}/../bin/app/user/projects/tictactoe/tictactoe.coatiproject
|
|
)
|
|
|
|
execute_process(
|
|
COMMAND ${upxPath}/Coati -f -d ${CMAKE_CURRENT_LIST_DIR}/../bin/app/user/projects/tutorial/tutorial.coatiproject
|
|
)
|
|
|
|
execute_process(
|
|
COMMAND ${upxPath}/Coati -f -d ${CMAKE_CURRENT_LIST_DIR}/../bin/app/user/projects/javaparser/javaparser.coatiproject
|
|
)
|
|
|