diff --git a/assignment-client/CMakeLists.txt b/assignment-client/CMakeLists.txt index 773ef845e2..54afabfd21 100644 --- a/assignment-client/CMakeLists.txt +++ b/assignment-client/CMakeLists.txt @@ -1,12 +1,12 @@ set(TARGET_NAME assignment-client) +setup_hifi_project(Core Gui Network Script Quick Widgets WebSockets) + # Fix up the rpath so macdeployqt works if (APPLE) set_target_properties(${TARGET_NAME} PROPERTIES INSTALL_RPATH "@executable_path/../Frameworks") endif () -setup_hifi_project(Core Gui Network Script Quick Widgets WebSockets) - # link in the shared libraries link_hifi_libraries( audio avatars octree gpu model fbx entities diff --git a/domain-server/CMakeLists.txt b/domain-server/CMakeLists.txt index 8a14907da3..746e599d4e 100644 --- a/domain-server/CMakeLists.txt +++ b/domain-server/CMakeLists.txt @@ -6,14 +6,14 @@ else () set(_SHOULD_SYMLINK_RESOURCES FALSE) endif () +# setup the project and link required Qt modules +setup_hifi_project(Network) + # Fix up the rpath so macdeployqt works if (APPLE) set_target_properties(${TARGET_NAME} PROPERTIES INSTALL_RPATH "@executable_path/../Frameworks") endif () -# setup the project and link required Qt modules -setup_hifi_project(Network) - # TODO: find a solution that will handle web file changes in resources on windows without a re-build. # Currently the resources are only copied on post-build. If one is changed but the domain-server is not, they will # not be re-copied. This is worked-around on OS X/UNIX by using a symlink.