diff options
author | Hanspeter Portner <dev@open-music-kontrollers.ch> | 2015-06-18 23:22:21 +0200 |
---|---|---|
committer | Hanspeter Portner <dev@open-music-kontrollers.ch> | 2015-06-18 23:22:21 +0200 |
commit | 457a8be07ba67b6d7e268105dd8c65ea91ab63a7 (patch) | |
tree | c2355f5bb9ed9466d43ea7b76060a91ce7edc7a2 /CMakeLists.txt | |
parent | 719419c0eead1eba8492b70cf64fb02c9090eec8 (diff) | |
download | synthpod-457a8be07ba67b6d7e268105dd8c65ea91ab63a7.tar.xz |
outsource synthpod sink/source as private bundle.
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 1142193d..30aa8031 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -14,6 +14,12 @@ include_directories(${PROJECT_BINARY_DIR}) set(SYNTHPOD_DATA_DIR "share/synthpod") add_definitions("-DSYNTHPOD_DATA_DIR=\"${CMAKE_INSTALL_PREFIX}/${SYNTHPOD_DATA_DIR}\"") +set(SYNTHPOD_BUNDLE_DIR "lib/synthpod") +add_definitions("-DSYNTHPOD_BUNDLE_DIR=\"${CMAKE_INSTALL_PREFIX}/${SYNTHPOD_BUNDLE_DIR}\"") + +set(SYNTHPOD_PLUGIN_DIR "lib/lv2/synthpod.lv2") +add_definitions("-DSYNTHPOD_PLUGIN_DIR=\"${CMAKE_INSTALL_PREFIX}/${SYNTHPOD_PLUGIN_DIR}\"") + set(SYNTHPOD_VERSION "0.1.0_alpha") add_definitions("-DSYNTHPOD_VERSION=\"${SYNTHPOD_VERSION}\"") @@ -66,4 +72,5 @@ add_subdirectory(lib) add_subdirectory(bin) add_subdirectory(plugins) add_subdirectory(data) +add_subdirectory(state) add_subdirectory(bundle) |