mirror of
https://github.com/overte-org/overte.git
synced 2025-04-08 14:12:50 +02:00
move space to space-server, use setup project macro
This commit is contained in:
parent
b0ff960e37
commit
44c2099183
7 changed files with 12 additions and 11 deletions
|
@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 2.8)
|
|||
|
||||
project(hifi)
|
||||
|
||||
add_subdirectory(space)
|
||||
add_subdirectory(space-server)
|
||||
add_subdirectory(avatar-mixer)
|
||||
add_subdirectory(domain-server)
|
||||
add_subdirectory(audio-mixer)
|
||||
|
|
11
space-server/CMakeLists.txt
Normal file
11
space-server/CMakeLists.txt
Normal file
|
@ -0,0 +1,11 @@
|
|||
cmake_minimum_required(VERSION 2.8)
|
||||
|
||||
set(TARGET_NAME space-server)
|
||||
|
||||
set(MACRO_DIR ../cmake/macros)
|
||||
include(${MACRO_DIR}/SetupHifiProject.cmake)
|
||||
|
||||
setup_hifi_project(${TARGET_NAME})
|
||||
|
||||
include(${MACRO_DIR}/LinkHifiLibrary.cmake)
|
||||
link_hifi_library(shared ${TARGET_NAME})
|
|
@ -1,10 +0,0 @@
|
|||
cmake_minimum_required(VERSION 2.8)
|
||||
|
||||
project(space)
|
||||
|
||||
file(GLOB SPACE_SRCS src/*.cpp src/*.h)
|
||||
|
||||
add_executable(space ${SPACE_SRCS})
|
||||
|
||||
include(../cmake/macros/LinkHifiLibrary.cmake)
|
||||
link_hifi_library(shared space)
|
Loading…
Reference in a new issue