mirror of
https://github.com/overte-org/overte.git
synced 2025-08-07 22:50:54 +02:00
add a custom target to package up the console
This commit is contained in:
parent
f3dd97cf6b
commit
fa4153d2e0
2 changed files with 21 additions and 15 deletions
|
@ -204,6 +204,7 @@ if (NOT ANDROID)
|
|||
set_target_properties(interface PROPERTIES FOLDER "Apps")
|
||||
add_subdirectory(stack-manager)
|
||||
set_target_properties(stack-manager PROPERTIES FOLDER "Apps")
|
||||
add_subdirectory(console)
|
||||
add_subdirectory(tests)
|
||||
add_subdirectory(plugins)
|
||||
add_subdirectory(tools)
|
||||
|
|
5
console/CMakeLists.txt
Normal file
5
console/CMakeLists.txt
Normal file
|
@ -0,0 +1,5 @@
|
|||
# add a command to produce an executable for this platform
|
||||
add_custom_target(package-console
|
||||
COMMAND npm run-script package-darwin
|
||||
WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}
|
||||
)
|
Loading…
Reference in a new issue