Update User Agent String
[framework/web/wrt-commons.git] / examples / dbus / client-example / CMakeLists.txt
1 cmake_minimum_required(VERSION 2.6)
2 project(client-example)
3
4 include(FindPkgConfig)
5
6 pkg_check_modules(DEPS
7                   dbus-1
8                   dpl-efl
9                   dpl-dbus-efl
10                   REQUIRED)
11
12 set(TARGET_NAME "client-example")
13
14 set(SRCS
15     client-example.cpp)
16
17 include_directories(${DEPS_INCLUDE_DIRS})
18
19 add_definitions("-std=c++0x")
20 add_definitions("-DDPL_LOGS_ENABLED")
21
22 add_executable(${TARGET_NAME} ${SRCS})
23 target_link_libraries(${TARGET_NAME} ${DEPS_LIBRARIES})
24