diff options
| author | Sebastien Bacher <seb128@ubuntu.com> | 2010-02-04 14:09:19 -0800 |
|---|---|---|
| committer | Sebastien Bacher <seb128@ubuntu.com> | 2010-02-04 14:09:19 -0800 |
| commit | c6637f3dbfffaead059486b86c1d3332fc600cbf (patch) | |
| tree | 7d348358d0b4fa999a851af2352f49ce5f851098 /tools/testapp/CMakeLists.txt | |
| parent | de91eab080847de6bea8d87d78589672c258eabe (diff) | |
| parent | 6bed6531192b318cfcf4281662491521b95b68f6 (diff) | |
| download | libdbusmenu-c6637f3dbfffaead059486b86c1d3332fc600cbf.tar.gz libdbusmenu-c6637f3dbfffaead059486b86c1d3332fc600cbf.tar.bz2 libdbusmenu-c6637f3dbfffaead059486b86c1d3332fc600cbf.zip | |
releasing version 0.2.2-0ubuntu1
Diffstat (limited to 'tools/testapp/CMakeLists.txt')
| -rw-r--r-- | tools/testapp/CMakeLists.txt | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/tools/testapp/CMakeLists.txt b/tools/testapp/CMakeLists.txt new file mode 100644 index 0000000..b848e50 --- /dev/null +++ b/tools/testapp/CMakeLists.txt @@ -0,0 +1,29 @@ +find_package(PkgConfig REQUIRED) + +pkg_check_modules(DBUSMENUGLIB REQUIRED dbusmenu-glib) +pkg_check_modules(GLIB REQUIRED glib-2.0) +pkg_check_modules(JSONGLIB REQUIRED json-glib-1.0) + +set(glibapp_SRCS + main.c + ) + +include_directories( + ${DBUSMENUGLIB_INCLUDE_DIRS} + ${GLIB_INCLUDE_DIRS} + ${JSONGLIB_INCLUDE_DIRS} + ) + +link_directories( + ${DBUSMENUGLIB_LIBRARY_DIRS} + ${GLIB_LIBRARY_DIRS} + ${JSONGLIB_LIBRARY_DIRS} + ) + +add_executable(dbusmenubench-glibapp ${glibapp_SRCS}) + +target_link_libraries(dbusmenubench-glibapp + ${DBUSMENUGLIB_LIBRARIES} + ${GLIB_LIBARIES} + ${JSONGLIB_LIBRARIES} + ) |
