summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthias Vogelgesang <matthias.vogelgesang@gmail.com>2012-09-25 18:18:53 +0200
committerMatthias Vogelgesang <matthias.vogelgesang@gmail.com>2012-09-25 18:18:53 +0200
commitf92e2316665c75ed44f1c662cf7aa62fcbf6d419 (patch)
treefa0567e7afab4eacadfd4069cc3a8094608b58b6
parent3a45434834999e1ac7c7a99cdaa644d939b859b0 (diff)
downloaduca-f92e2316665c75ed44f1c662cf7aa62fcbf6d419.tar.gz
uca-f92e2316665c75ed44f1c662cf7aa62fcbf6d419.tar.bz2
uca-f92e2316665c75ed44f1c662cf7aa62fcbf6d419.tar.xz
uca-f92e2316665c75ed44f1c662cf7aa62fcbf6d419.zip
Add CMakeLists.txt for control GUI
-rw-r--r--tools/gui/CMakeLists.txt39
1 files changed, 39 insertions, 0 deletions
diff --git a/tools/gui/CMakeLists.txt b/tools/gui/CMakeLists.txt
new file mode 100644
index 0000000..39afe98
--- /dev/null
+++ b/tools/gui/CMakeLists.txt
@@ -0,0 +1,39 @@
+cmake_minimum_required(VERSION 2.8)
+
+add_definitions("--std=c99 -Wall")
+
+# --- Find packages and libraries ---------------------------------------------
+find_package(PkgConfig)
+
+pkg_check_modules(GTK2 gtk+-2.0>=2.22)
+pkg_check_modules(GTHREAD2 gthread-2.0)
+pkg_check_modules(GLIB2 glib-2.0>=2.24 REQUIRED)
+pkg_check_modules(GOBJECT2 gobject-2.0>=2.24 REQUIRED)
+
+configure_file(${CMAKE_CURRENT_SOURCE_DIR}/control.glade ${CMAKE_CURRENT_BINARY_DIR})
+
+# --- Build targets -----------------------------------------------------------
+include_directories(
+ ${GLIB2_INCLUDE_DIRS}
+ ${GOBJECT2_INCLUDE_DIRS}
+ ${CMAKE_CURRENT_BINARY_DIR}/../../src/
+ ${CMAKE_CURRENT_SOURCE_DIR}/../../src
+ )
+
+if (GTK2_FOUND)
+ include_directories(${GTK2_INCLUDE_DIRS})
+
+ add_executable(control
+ control.c
+ egg-property-cell-renderer.c
+ egg-property-tree-view.c)
+
+ target_link_libraries(control uca
+ ${GTK2_LIBRARIES} ${GTHREAD2_LIBRARIES})
+
+ install(TARGETS control
+ RUNTIME DESTINATION bin)
+
+ install(FILES control.glade
+ DESTINATION share/libuca)
+endif()