Merge branch 'security-manager' into tizen
[platform/core/test/security-tests.git] / src / ckm / CMakeLists.txt
1 # Copyright (c) 2013-2019 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 OPTION("TZ_BACKEND" OFF)
34 IF(TZ_BACKEND)
35     ADD_DEFINITIONS("-DTZ_BACKEND")
36 ENDIF(TZ_BACKEND)
37
38 PKG_CHECK_MODULES(CKM_TEST_COMMON_DEP
39     REQUIRED
40     openssl1.1
41     key-manager
42     libtzplatform-config
43 )
44
45 SET(CKM_TEST_COMMON_SRCS
46     ckm-common.cpp
47     test-certs.cpp
48 )
49
50 INCLUDE_DIRECTORIES(SYSTEM ${CKM_TEST_COMMON_DEP_INCLUDE_DIRS})
51 INCLUDE_DIRECTORIES(
52     .
53     ${PROJECT_SOURCE_DIR}/src/common
54 )
55
56 ADD_LIBRARY(${TARGET_CKM_TEST_COMMON} ${CKM_TEST_COMMON_SRCS})
57
58 TARGET_LINK_LIBRARIES(${TARGET_CKM_TEST_COMMON}
59     ${CKM_TEST_COMMON_DEP_LIBRARIES}
60     ${COMMON_TARGET_TEST}
61 )
62
63 # C compilation test
64 SET(TARGET_C_COMPILATION_TEST "ckm-c-compilation-test")
65 SET(C_COMPILATION_SOURCES c-compilation.c)
66 PKG_CHECK_MODULES(CKM_C_COMPILATION_DEP REQUIRED key-manager)
67 ADD_EXECUTABLE(${TARGET_C_COMPILATION_TEST} ${C_COMPILATION_SOURCES})
68 TARGET_LINK_LIBRARIES(${TARGET_C_COMPILATION_TEST} ${CKM_C_COMPILATION_DEP_LIBRARIES})
69
70 INSTALL(DIRECTORY resource/ DESTINATION ${CKM_TEST_DIR})
71
72 ADD_SUBDIRECTORY(privileged)
73 ADD_SUBDIRECTORY(unprivileged)