diff options
author | Hanspeter Portner <dev@open-music-kontrollers.ch> | 2015-08-16 23:10:55 +0200 |
---|---|---|
committer | Hanspeter Portner <dev@open-music-kontrollers.ch> | 2015-08-16 23:10:55 +0200 |
commit | 906a10d2da4326fb108185d52053d8f9fa7f3e04 (patch) | |
tree | 8b91553f13210cb1928836c078cdb3913c01f73b /CMakeLists.txt | |
parent | 6c2ae176641e4f5d1b9eb18ecf6c9eb5b122901d (diff) | |
download | synthpod-906a10d2da4326fb108185d52053d8f9fa7f3e04.tar.xz |
prototype synthpod_alsa.
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 7b62ab6d..b21ad20e 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -27,10 +27,13 @@ set(SYNTHPOD_VERSION "${SYNTHPOD_MAJOR_VERSION}.${SYNTHPOD_MINOR_VERSION}.${SYNT add_definitions("-DSYNTHPOD_VERSION=\"${SYNTHPOD_VERSION}\"") set(CMAKE_C_FLAGS "-std=gnu11 -ffast-math -fvisibility=hidden ${CMAKE_C_FLAGS}") +set(CMAKE_CXX_FLAGS "-std=gnu++11 -ffast-math -fvisibility=hidden ${CMAKE_CXX_FLAGS}") # options option(BUILD_UI "Build user interface libraries" ON) option(BUILD_JACK "Build JACK standalone host" ON) +option(BUILD_ALSA "Build ALSA standalone host (experimental)" OFF) +option(BUILD_RTAUDIO "Build RtAudio standalone host (experimental)" OFF) option(BUILD_PORTAUDIO "Build PortAudio standalone host (broken)" OFF) # vectorization |