diff --git a/console/CMakeLists.txt b/console/CMakeLists.txt index 4cf96f2716..2641c685e6 100644 --- a/console/CMakeLists.txt +++ b/console/CMakeLists.txt @@ -1,7 +1,15 @@ set(PACKAGING_TARGET_NAME package-console) # add a target that when built will produce an executable of console for this platform +if (APPLE) + set(PACKAGE_COMMAND package-darwin) +elseif (WIN32) + set(PACKAGE_COMMAND package-win) +elseif (UNIX) + set(PACKAGE_COMMAND package-linux) +endif () + add_custom_target(${PACKAGING_TARGET_NAME} - COMMAND npm run-script package-darwin + COMMAND npm run-script ${PACKAGE_COMMAND} WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR} )