diff options
author | Michael J. Chudobiak <mjc@avtechpulse.com> | 2012-07-19 09:10:22 -0400 |
---|---|---|
committer | Michael J. Chudobiak <mjc@avtechpulse.com> | 2012-07-19 09:10:22 -0400 |
commit | 3e81b648cfb865117b3b434029a549b2672ed5bc (patch) | |
tree | 82821a191ecc258de67393e7b7f862b501cf9275 /CMakeLists.txt | |
parent | 50506ef3771ce833d76cf29a16d5f1acc288453e (diff) |
link libraries properly
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d7d8e9..d0faa1f 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -9,7 +9,7 @@ set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -g") add_executable(instr-daemon instr-daemon.c signalobject.c response.c) add_executable(instr-client instr-client.c) -target_link_libraries(instr-daemon gio-2.0) -target_link_libraries(instr-client gio-2.0) +target_link_libraries(instr-daemon gio-2.0 gobject-2.0 glib-2.0) +target_link_libraries(instr-client gio-2.0 gobject-2.0 glib-2.0) |