mirror of
https://thingvellir.net/git/overte
synced 2025-03-27 23:52:03 +01:00
13 lines
No EOL
328 B
CMake
13 lines
No EOL
328 B
CMake
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) |