0b82c57b2c3d5000474925d9762103f2ff0294c2
[platform/core/test/security-tests.git] / tests / ckm / CMakeLists.txt
1 #
2 #Copyright (c) 2013 Samsung Electronics Co., Ltd All Rights Reserved
3 #
4 #   Licensed under the Apache License, Version 2.0 (the "License");
5 #   you may not use this file except in compliance with the License.
6 #   You may obtain a copy of the License at
7 #
8 #       http://www.apache.org/licenses/LICENSE-2.0
9 #
10 #   Unless required by applicable law or agreed to in writing, software
11 #   distributed under the License is distributed on an "AS IS" BASIS,
12 #   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 #   See the License for the specific language governing permissions and
14 #   limitations under the License.
15 #
16 # @file        CMakeLists.txt
17 # @author      Bartlomiej Grzelewski (b.grzelewski@samsung.com)
18 # @brief
19 #
20
21 INCLUDE(FindPkgConfig)
22
23 # mdpp flag
24 IF (DEFINED SECURITY_MDFPP_STATE_ENABLED)
25     MESSAGE("SECURITY_MDFPP_STATE_ENABLE ENABLED !")
26     ADD_DEFINITIONS("-DSECURITY_MDFPP_STATE_ENABLE")
27 ELSE (DEFINED SECURITY_MDFPP_STATE_ENABLE)
28     MESSAGE("SECURITY_MDFPP_STATE_ENABLE DISABLED !")
29 ENDIF (DEFINED SECURITY_MDFPP_STATE_ENABLE)
30
31 # Dependencies
32 PKG_CHECK_MODULES(CKM_DEP
33     libsmack
34     key-manager
35     security-server
36     dbus-1
37     vconf
38     REQUIRED)
39
40 # Targets definition
41
42 SET(CKM_SOURCES
43     ${PROJECT_SOURCE_DIR}/tests/ckm/access_provider2.cpp
44     ${PROJECT_SOURCE_DIR}/tests/ckm/main.cpp
45     ${PROJECT_SOURCE_DIR}/tests/ckm/capi-testcases.cpp
46     ${PROJECT_SOURCE_DIR}/tests/ckm/capi-certificate-chains.cpp
47     ${PROJECT_SOURCE_DIR}/tests/ckm/capi-access_control.cpp
48     ${PROJECT_SOURCE_DIR}/tests/ckm/async-api.cpp
49     ${PROJECT_SOURCE_DIR}/tests/ckm/ckm-common.cpp
50     ${PROJECT_SOURCE_DIR}/tests/ckm/cc-mode.cpp
51 #    ${PROJECT_SOURCE_DIR}/tests/ckm/password-integration.cpp
52     ${PROJECT_SOURCE_DIR}/tests/ckm/clean-env.cpp
53     ${PROJECT_SOURCE_DIR}/tests/ckm/test-certs.cpp
54 )
55
56 INCLUDE_DIRECTORIES(SYSTEM ${CKM_DEP_INCLUDE_DIRS})
57 INCLUDE_DIRECTORIES(${PROJECT_SOURCE_DIR}/tests/common/ )
58 INCLUDE_DIRECTORIES(${PROJECT_SOURCE_DIR}/tests/ckm/ )
59
60 ADD_EXECUTABLE(${TARGET_CKM_TESTS} ${CKM_SOURCES})
61
62 TARGET_LINK_LIBRARIES(${TARGET_CKM_TESTS} ${CKM_DEP_LIBRARIES} ${COMMON_TARGET_TEST})
63
64 # Installation
65
66 INSTALL(TARGETS ${TARGET_CKM_TESTS} DESTINATION bin)
67 INSTALL(FILES
68     test1801.pkcs12
69     pkcs.p12
70     capi-t3096.p12
71     DESTINATION /usr/share/ckm-test
72     )