Set key-manager version requirement
[platform/core/test/security-tests.git] / src / ckm / CMakeLists.txt
1 # Copyright (c) 2013-2020 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     openssl1.1
36     key-manager>=0.1.49
37     libtzplatform-config
38 )
39
40 SET(CKM_TEST_COMMON_SRCS
41     ckm-common.cpp
42     test-certs.cpp
43 )
44
45 INCLUDE_DIRECTORIES(SYSTEM ${CKM_TEST_COMMON_DEP_INCLUDE_DIRS})
46 INCLUDE_DIRECTORIES(
47     .
48     ${PROJECT_SOURCE_DIR}/src/common
49 )
50
51 ADD_LIBRARY(${TARGET_CKM_TEST_COMMON} ${CKM_TEST_COMMON_SRCS})
52
53 TARGET_LINK_LIBRARIES(${TARGET_CKM_TEST_COMMON}
54     ${CKM_TEST_COMMON_DEP_LIBRARIES}
55     ${COMMON_TARGET_TEST}
56 )
57
58 # C compilation test
59 SET(TARGET_C_COMPILATION_TEST "ckm-c-compilation-test")
60 SET(C_COMPILATION_SOURCES c-compilation.c)
61 PKG_CHECK_MODULES(CKM_C_COMPILATION_DEP REQUIRED key-manager)
62 ADD_EXECUTABLE(${TARGET_C_COMPILATION_TEST} ${C_COMPILATION_SOURCES})
63 TARGET_LINK_LIBRARIES(${TARGET_C_COMPILATION_TEST} ${CKM_C_COMPILATION_DEP_LIBRARIES})
64
65 INSTALL(DIRECTORY resource/ DESTINATION ${CKM_TEST_DIR})
66
67 ADD_SUBDIRECTORY(privileged)
68 ADD_SUBDIRECTORY(unprivileged)