mirror of
https://github.com/overte-org/overte.git
synced 2025-08-09 11:07:07 +02:00
Fix OSX server console dependency
This commit is contained in:
parent
87bb4654ee
commit
6a42a5c50e
1 changed files with 5 additions and 1 deletions
|
@ -29,7 +29,11 @@ set_target_properties(${TARGET_NAME}-npm-install PROPERTIES FOLDER "hidden/Serve
|
||||||
|
|
||||||
# add a dependency from the package target to the server components
|
# add a dependency from the package target to the server components
|
||||||
if (BUILD_CLIENT)
|
if (BUILD_CLIENT)
|
||||||
add_dependencies(${TARGET_NAME} interface)
|
if (APPLE)
|
||||||
|
add_dependencies(${TARGET_NAME} Vircadia)
|
||||||
|
else()
|
||||||
|
add_dependencies(${TARGET_NAME} interface)
|
||||||
|
endif()
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
if (BUILD_SERVER)
|
if (BUILD_SERVER)
|
||||||
|
|
Loading…
Reference in a new issue