diff options
author | Hanspeter Portner <dev@open-music-kontrollers.ch> | 2015-06-07 17:44:09 +0200 |
---|---|---|
committer | Hanspeter Portner <dev@open-music-kontrollers.ch> | 2015-06-07 17:44:09 +0200 |
commit | 974a06444f98dc686ade32bece5e7c8e290597a9 (patch) | |
tree | aa1e634bdabdb0f50827d120271317e54403aa99 /CMakeLists.txt | |
parent | cf5527080465cf58997e8814cf940f32af2058f5 (diff) | |
download | synthpod-974a06444f98dc686ade32bece5e7c8e290597a9.tar.xz |
fix build recipe for non-gui executables.
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 1ad8cc08..20cb76f8 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -29,6 +29,10 @@ include_directories(${EINA_INCLUDE_DIRS}) pkg_search_module(EFREET REQUIRED efreet>=1.8) include_directories(${EFREET_INCLUDE_DIRS}) +# ecore +pkg_search_module(ECORE REQUIRED ecore>=1.8) +include_directories(${ECORE_INCLUDE_DIRS}) + # ecore-con pkg_search_module(ECORE_CON REQUIRED ecore-con>=1.8) include_directories(${ECORE_CON_INCLUDE_DIRS}) |