cmake_minimum_required(VERSION 2.8) project(Instrument) set(CMAKE_MODULE_PATH ${CMAKE_SOURCE_DIR}/cmake) find_package(Glib) find_package(GIO) find_package(Mhash) include_directories(${GLIB_PKG_INCLUDE_DIRS}) set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -g -funsigned-char -Wall") add_executable(instr-daemon instr-daemon.c signalobject.c response.c parser.c error_utils.c device-functions.c string_utils.c globals.c i2c.c lcd.c flash.c nicutils.c bus.c monitor.c menus.c gpib.c ) add_executable(instr-client instr-client.c) target_link_libraries(instr-daemon gio-2.0 gobject-2.0 glib-2.0 mhash m) target_link_libraries(instr-client gio-2.0 gobject-2.0 glib-2.0) INSTALL(TARGETS instr-daemon instr-client RUNTIME DESTINATION /usr/bin)