mirror of
https://thingvellir.net/git/overte
synced 2025-03-27 23:52:03 +01:00
14 lines
No EOL
305 B
CMake
14 lines
No EOL
305 B
CMake
cmake_minimum_required(VERSION 2.8)
|
|
|
|
project(voxel)
|
|
|
|
file(GLOB VOXEL_SRCS src/*.cpp src/*.h)
|
|
|
|
add_executable(voxel ${VOXEL_SRCS})
|
|
|
|
# link in the shared library
|
|
include(../cmake/macros/LinkHifiLibrary.cmake)
|
|
link_hifi_library(shared voxel)
|
|
|
|
# link in the hifi voxels library
|
|
link_hifi_library(voxels voxel) |