diff options
author | Matthias Vogelgesang <matthias.vogelgesang@gmail.com> | 2012-09-21 14:54:05 +0200 |
---|---|---|
committer | Matthias Vogelgesang <matthias.vogelgesang@gmail.com> | 2012-09-21 14:54:05 +0200 |
commit | f2c4098e756b237aa0654f71a0f437086d5e667e (patch) | |
tree | 2eb109f8d88f684aa64edb007e0c2ab17b040e87 /test/CMakeLists.txt | |
parent | 6eaadaa0e4ad8ce906aa8ccee63d91f0d9cb28ea (diff) | |
download | uca-f2c4098e756b237aa0654f71a0f437086d5e667e.tar.gz uca-f2c4098e756b237aa0654f71a0f437086d5e667e.tar.bz2 uca-f2c4098e756b237aa0654f71a0f437086d5e667e.tar.xz uca-f2c4098e756b237aa0654f71a0f437086d5e667e.zip |
Port perf overhead tool
Diffstat (limited to 'test/CMakeLists.txt')
-rw-r--r-- | test/CMakeLists.txt | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt index e4e60dc..0f46c32 100644 --- a/test/CMakeLists.txt +++ b/test/CMakeLists.txt @@ -36,10 +36,12 @@ endif() add_executable(grab grab.c) add_executable(grab-async grab-async.c) add_executable(benchmark benchmark.c) +add_executable(perf perf-overhead.c) target_link_libraries(benchmark uca ${GLIB2_LIBRARIES} ${GOBJECT2_LIBRARIES}) target_link_libraries(grab uca ${GLIB2_LIBRARIES} ${GOBJECT2_LIBRARIES}) target_link_libraries(grab-async uca ${GLIB2_LIBRARIES} ${GOBJECT2_LIBRARIES}) +target_link_libraries(perf uca ${GLIB2_LIBRARIES} ${GOBJECT2_LIBRARIES}) if (GTK2_FOUND) include_directories(${GTK2_INCLUDE_DIRS}) |