mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-04-07 00:23:34 +02:00
rename domain target to domain server, use SetupHifiProject
This commit is contained in:
parent
31f3f0c31c
commit
3e6b794f11
5 changed files with 13 additions and 15 deletions
|
@ -4,7 +4,7 @@ project(hifi)
|
|||
|
||||
add_subdirectory(space)
|
||||
add_subdirectory(avatar-mixer)
|
||||
add_subdirectory(domain)
|
||||
add_subdirectory(domain-server)
|
||||
add_subdirectory(mixer)
|
||||
add_subdirectory(voxel)
|
||||
add_subdirectory(interface)
|
||||
|
|
|
@ -2,7 +2,7 @@ MACRO(SETUP_HIFI_PROJECT TARGET)
|
|||
project(${TARGET})
|
||||
|
||||
# grab the implemenation and header files
|
||||
file(GLOB TARGET_SRCS /src/*.cpp src/*.h)
|
||||
file(GLOB TARGET_SRCS src/*.cpp src/*.h)
|
||||
|
||||
# add the executable
|
||||
add_executable(${TARGET} ${TARGET_SRCS})
|
||||
|
|
11
domain-server/CMakeLists.txt
Normal file
11
domain-server/CMakeLists.txt
Normal file
|
@ -0,0 +1,11 @@
|
|||
cmake_minimum_required(VERSION 2.8)
|
||||
set(MACRO_DIR ../cmake/macros)
|
||||
|
||||
set(TARGET_NAME domain-server)
|
||||
|
||||
include(${MACRO_DIR}/SetupHifiProject.cmake)
|
||||
setup_hifi_project(${TARGET_NAME})
|
||||
|
||||
# link the shared hifi library
|
||||
include(${MACRO_DIR}/LinkHifiLibrary.cmake)
|
||||
link_hifi_library(shared ${TARGET_NAME})
|
|
@ -1,13 +0,0 @@
|
|||
cmake_minimum_required(VERSION 2.8)
|
||||
|
||||
project(domain)
|
||||
|
||||
# grab the implementation / header files
|
||||
file(GLOB DOMAIN_SRCS src/*.cpp src/*.h)
|
||||
|
||||
# add an executable with the source files
|
||||
add_executable(domain ${DOMAIN_SRCS})
|
||||
|
||||
# link the shared hifi library
|
||||
include(../cmake/macros/LinkHifiLibrary.cmake)
|
||||
link_hifi_library(shared domain)
|
Loading…
Reference in a new issue