Apply Cynara implementation
[platform/core/connectivity/smartcard-service.git] / CMakeLists.txt
1 CMAKE_MINIMUM_REQUIRED(VERSION 2.6)
2
3 MESSAGE("build smartcard-service")
4
5 SET(CMAKE_VERBOSE_MAKEFILE OFF)
6
7 IF(DEFINED USE_AUTOSTART)
8         ADD_DEFINITIONS("-DUSE_AUTOSTART")
9 ENDIF()
10
11 # make string from entire content of byte array
12 ADD_DEFINITIONS("-DTO_STRING_ALL")
13 ADD_DEFINITIONS("-DUSE_CYNARA")
14
15 SET(GC_SECTIONS_FLAGS "-fdata-sections -ffunction-sections -Wl,--gc-sections")
16 SET(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} ${GC_SECTIONS_FLAGS}")
17 SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${GC_SECTIONS_FLAGS}")
18
19 FIND_PROGRAM(GDBUS_CODEGEN NAMES gdbus-codegen)
20 EXEC_PROGRAM(${GDBUS_CODEGEN} ARGS
21         " \\
22         --generate-c-code ${CMAKE_CURRENT_SOURCE_DIR}/common/smartcard-service-gdbus \\
23         --c-namespace SmartcardService\\
24         --interface-prefix org.tizen.SmartcardService. \\
25         ${CMAKE_CURRENT_SOURCE_DIR}/common/smartcard-service-gdbus.xml \\
26         ")
27
28 ADD_SUBDIRECTORY(common)
29 ADD_SUBDIRECTORY(client)
30 ADD_SUBDIRECTORY(server)
31
32 IF(DEFINED TEST_CLIENT)
33         ADD_SUBDIRECTORY(test-client)
34 ENDIF()
35