c5975d71de88579f80fe2ac0c5a7bc0845b99cc2
[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 # Dependencies
24 PKG_CHECK_MODULES(CKM_DEP
25     libsmack
26     key-manager
27     security-server
28     dbus-1
29     vconf
30     REQUIRED)
31
32 # Targets definition
33
34 SET(CKM_SOURCES
35     ${PROJECT_SOURCE_DIR}/tests/ckm/access_provider2.cpp
36     ${PROJECT_SOURCE_DIR}/tests/ckm/main.cpp
37     ${PROJECT_SOURCE_DIR}/tests/ckm/capi-testcases.cpp
38     ${PROJECT_SOURCE_DIR}/tests/ckm/capi-access_control.cpp
39     ${PROJECT_SOURCE_DIR}/tests/ckm/async-api.cpp
40     ${PROJECT_SOURCE_DIR}/tests/ckm/ckm-common.cpp
41     ${PROJECT_SOURCE_DIR}/tests/ckm/cc-mode.cpp
42     ${PROJECT_SOURCE_DIR}/tests/ckm/password-integration.cpp
43     ${PROJECT_SOURCE_DIR}/tests/ckm/clean-env.cpp
44 )
45
46 INCLUDE_DIRECTORIES(SYSTEM ${CKM_DEP_INCLUDE_DIRS})
47 INCLUDE_DIRECTORIES(${PROJECT_SOURCE_DIR}/tests/common/ )
48 INCLUDE_DIRECTORIES(${PROJECT_SOURCE_DIR}/tests/ckm/ )
49
50 ADD_EXECUTABLE(${TARGET_CKM_TESTS} ${CKM_SOURCES})
51
52 TARGET_LINK_LIBRARIES(${TARGET_CKM_TESTS} ${CKM_DEP_LIBRARIES} ${COMMON_TARGET_TEST})
53
54 # Installation
55
56 INSTALL(TARGETS ${TARGET_CKM_TESTS} DESTINATION bin)
57 INSTALL(FILES test1801.pkcs12 DESTINATION /usr/share/ckm-test)