summaryrefslogtreecommitdiff
path: root/CMakeLists.txt
blob: 7f63209c252ab96e5e51dd5aa717140218bc3e1b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
cmake_minimum_required(VERSION 2.8)
project(glib-sock-serv)

set(CMAKE_MODULE_PATH ${CMAKE_SOURCE_DIR}/cmake)
find_package(Glib)
find_package(GIO)
include_directories(${GLIB_PKG_INCLUDE_DIRS})
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 gobject-2.0 glib-2.0)
target_link_libraries(instr-client gio-2.0 gobject-2.0 glib-2.0)

INSTALL(TARGETS instr-daemon instr-client
  RUNTIME DESTINATION /usr/bin)