mirror of
https://github.com/overte-org/overte.git
synced 2025-04-15 08:08:53 +02:00
7 lines
264 B
CMake
7 lines
264 B
CMake
set(PACKAGING_TARGET_NAME package-console)
|
|
|
|
# add a target that when built will produce an executable of console for this platform
|
|
add_custom_target(${PACKAGING_TARGET_NAME}
|
|
COMMAND npm run-script package-darwin
|
|
WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}
|
|
)
|