Merge branch 'tizen' into cynara
[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 # Dependencies
23 PKG_CHECK_MODULES(CKM_DEP
24     libsmack
25     key-manager
26     dlog
27     REQUIRED)
28
29 # Targets definition
30
31 SET(TARGET_CKM_TESTS "ckm-tests")
32
33 SET(CKM_SOURCES
34     ${PROJECT_SOURCE_DIR}/src/ckm/main.cpp
35     ${PROJECT_SOURCE_DIR}/src/ckm/capi-testcases.cpp
36 )
37
38 INCLUDE_DIRECTORIES(SYSTEM ${CKM_DEP_INCLUDE_DIRS})
39 INCLUDE_DIRECTORIES(${PROJECT_SOURCE_DIR}/src/common/ )
40
41 ADD_EXECUTABLE(${TARGET_CKM_TESTS} ${CKM_SOURCES})
42
43 TARGET_LINK_LIBRARIES(${TARGET_CKM_TESTS} ${CKM_DEP_LIBRARIES} tests-common)
44
45 # Installation
46
47 INSTALL(TARGETS ${TARGET_CKM_TESTS} DESTINATION bin)
48 INSTALL(FILES test1801.pkcs12 DESTINATION /usr/share/ckm-test)