Separate ckm-test by the need of capability
[platform/core/test/security-tests.git] / src / ckm / CMakeLists.txt
1 # Copyright (c) 2013-2015 Samsung Electronics Co., Ltd All Rights Reserved
2 #
3 #   Licensed under the Apache License, Version 2.0 (the "License");
4 #   you may not use this file except in compliance with the License.
5 #   You may obtain a copy of the License at
6 #
7 #       http://www.apache.org/licenses/LICENSE-2.0
8 #
9 #   Unless required by applicable law or agreed to in writing, software
10 #   distributed under the License is distributed on an "AS IS" BASIS,
11 #   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 #   See the License for the specific language governing permissions and
13 #   limitations under the License.
14 #
15 # @file        CMakeLists.txt
16 # @author      Bartlomiej Grzelewski (b.grzelewski@samsung.com)
17 # @brief
18 #
19
20 INCLUDE(FindPkgConfig)
21
22 # mdpp flag
23 IF (DEFINED SECURITY_MDFPP_STATE_ENABLED)
24     MESSAGE("SECURITY_MDFPP_STATE_ENABLE ENABLED !")
25     ADD_DEFINITIONS("-DSECURITY_MDFPP_STATE_ENABLE")
26 ELSE (DEFINED SECURITY_MDFPP_STATE_ENABLED)
27     MESSAGE("SECURITY_MDFPP_STATE_ENABLE DISABLED !")
28 ENDIF (DEFINED SECURITY_MDFPP_STATE_ENABLED)
29
30 ADD_DEFINITIONS("-DCKM_TEST_DIR=\"${CKM_TEST_DIR}\"")
31 ADD_DEFINITIONS("-DCKM_RW_DATA_DIR=\"${CKM_RW_DATA_DIR}\"")
32
33 PKG_CHECK_MODULES(CKM_TEST_COMMON_DEP
34     REQUIRED
35     key-manager
36 )
37
38 SET(CKM_TEST_COMMON_SRCS
39     ckm-common.cpp
40     test-certs.cpp
41 )
42
43 INCLUDE_DIRECTORIES(SYSTEM ${CKM_TEST_COMMON_DEP_INCLUDE_DIRS})
44 INCLUDE_DIRECTORIES(
45     .
46     ${PROJECT_SOURCE_DIR}/src/common
47 )
48
49 ADD_LIBRARY(${TARGET_CKM_TEST_COMMON} ${CKM_TEST_COMMON_SRCS})
50
51 TARGET_LINK_LIBRARIES(${TARGET_CKM_TEST_COMMON}
52     ${CKM_TEST_COMMON_DEP_LIBRARIES}
53     ${COMMON_TARGET_TEST}
54 )
55
56 # C compilation test
57 SET(TARGET_C_COMPILATION_TEST "ckm-c-compilation-test")
58 SET(C_COMPILATION_SOURCES c-compilation.c)
59 PKG_CHECK_MODULES(CKM_C_COMPILATION_DEP REQUIRED key-manager)
60 ADD_EXECUTABLE(${TARGET_C_COMPILATION_TEST} ${C_COMPILATION_SOURCES})
61 TARGET_LINK_LIBRARIES(${TARGET_C_COMPILATION_TEST} ${CKM_C_COMPILATION_DEP_LIBRARIES})
62
63 INSTALL(DIRECTORY resource/ DESTINATION ${CKM_TEST_DIR})
64
65 ADD_SUBDIRECTORY(privileged)
66 ADD_SUBDIRECTORY(unprivileged)