aboutsummaryrefslogtreecommitdiff
path: root/tools/testapp/CMakeLists.txt
diff options
context:
space:
mode:
authorTed Gould <ted@gould.cx>2010-04-01 09:12:29 -0500
committerTed Gould <ted@gould.cx>2010-04-01 09:12:29 -0500
commit8e258679cc4e74929776e27f19663e7d1981c77b (patch)
treed5369ccd25076140deb6a093daa42facd51708fd /tools/testapp/CMakeLists.txt
parentc1aafdb75dbb6cedaba949a37cc3486b47697de5 (diff)
parent187a33539569163ee953903010169356b8d57beb (diff)
downloadlibdbusmenu-8e258679cc4e74929776e27f19663e7d1981c77b.tar.gz
libdbusmenu-8e258679cc4e74929776e27f19663e7d1981c77b.tar.bz2
libdbusmenu-8e258679cc4e74929776e27f19663e7d1981c77b.zip
* New upstream release.
* Changing the parse function to get_children instead of taking them. (LP: #471044) * Supporting AboutToShow in event callbacks to catch up with QT implementation. * Unrefing on layout updates (LP: #545026) * Resetting sync versions on disconnection * Removing useless warning - Added extended description for gir1.0-dbusmenu-gtk-0.2 and
Diffstat (limited to 'tools/testapp/CMakeLists.txt')
-rw-r--r--tools/testapp/CMakeLists.txt29
1 files changed, 0 insertions, 29 deletions
diff --git a/tools/testapp/CMakeLists.txt b/tools/testapp/CMakeLists.txt
deleted file mode 100644
index b848e50..0000000
--- a/tools/testapp/CMakeLists.txt
+++ /dev/null
@@ -1,29 +0,0 @@
-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}
- )