diff options
author | Hanspeter Portner <dev@open-music-kontrollers.ch> | 2015-03-23 22:54:26 +0100 |
---|---|---|
committer | Hanspeter Portner <dev@open-music-kontrollers.ch> | 2015-03-23 22:54:26 +0100 |
commit | cf7b637a4473262787063a648fbe0d917e018f54 (patch) | |
tree | 950af579b1339aac2f377deec6704ee0f6e4e9aa /CMakeLists.txt | |
parent | 8546da08879897704b79d7871dff6e5ac0baa02f (diff) | |
download | synthpod-cf7b637a4473262787063a648fbe0d917e018f54.tar.xz |
finalize state saving
* add cJSON
* save module list
* save port list
* save port connections
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 8c02d744..ff4b28dc 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -7,6 +7,7 @@ find_package(PkgConfig REQUIRED) include(CheckIncludeFiles) include_directories(${PROJECT_SOURCE_DIR}) +include_directories(${PROJECT_SOURCE_DIR}/cjson) include_directories(${PROJECT_BINARY_DIR}) set(APP_DIR share/synthpod) @@ -44,7 +45,8 @@ add_executable(synthpod app.c varchunk.c patcher.c - ext_urid.c) + ext_urid.c + cjson/cJSON.c) target_link_libraries(synthpod ${LIBS}) target_compile_definitions(synthpod PUBLIC -DAPP_DIR=${APP_DIR}) install(TARGETS synthpod DESTINATION bin) |