overte/domain/CMakeLists.txt
2013-02-18 11:08:12 -08:00

13 lines
No EOL
314 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(../LinkHifiShared.cmake)
link_hifi_shared_library(domain)