mirror of
https://github.com/lubosz/overte.git
synced 2025-08-07 19:21:16 +02:00
15 lines
No EOL
370 B
CMake
15 lines
No EOL
370 B
CMake
cmake_minimum_required(VERSION 2.8)
|
|
|
|
set(TARGET_NAME voxel-server)
|
|
|
|
set(MACRO_DIR ../cmake/macros)
|
|
include(${MACRO_DIR}/SetupHifiProject.cmake)
|
|
|
|
setup_hifi_project(${TARGET_NAME})
|
|
|
|
# link in the shared library
|
|
include(${MACRO_DIR}/LinkHifiLibrary.cmake)
|
|
link_hifi_library(shared ${TARGET_NAME})
|
|
|
|
# link in the hifi voxels library
|
|
link_hifi_library(voxels ${TARGET_NAME}) |