mirror of
https://thingvellir.net/git/overte
synced 2025-03-27 23:52:03 +01:00
13 lines
No EOL
243 B
CMake
13 lines
No EOL
243 B
CMake
cmake_minimum_required(VERSION 2.8)
|
|
|
|
project(hifi)
|
|
|
|
if(APPLE)
|
|
set(CMAKE_OSX_DEPLOYMENT_TARGET 10.7)
|
|
set(CMAKE_OSX_SYSROOT macosx)
|
|
endif()
|
|
|
|
add_subdirectory(space)
|
|
add_subdirectory(domain)
|
|
add_subdirectory(mixer)
|
|
add_subdirectory(interface) |