rename domain target to domain server, use SetupHifiProject

This commit is contained in:
Stephen Birarda 2013-04-12 13:12:56 -07:00
parent 31f3f0c31c
commit 3e6b794f11
5 changed files with 13 additions and 15 deletions

View file

@ -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)

View file

@ -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})

View 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})

View file

@ -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)