CKM: Add ECDH tests
[platform/core/test/security-tests.git] / src / ckm / unprivileged / 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 SET(CKM_SOURCES
20     algo-params.cpp
21     async-api.cpp
22     capi-certificate-chains.cpp
23     capi-testcases.cpp
24     encryption-decryption-env.cpp
25     encryption-decryption.cpp
26     sign-verify.cpp
27     key-derivation.cpp
28     main.cpp
29 )
30
31 FIND_PACKAGE (Threads)
32
33 INCLUDE_DIRECTORIES(
34     ${PROJECT_SOURCE_DIR}/src/common
35     ..
36     .
37 )
38
39 ADD_EXECUTABLE(${TARGET_CKM_TESTS} ${CKM_SOURCES})
40
41 TARGET_LINK_LIBRARIES(${TARGET_CKM_TESTS}
42     ${TARGET_CKM_TEST_COMMON}
43     ${COMMON_TARGET_TEST}
44     ${CMAKE_THREAD_LIBS_INIT}
45 )
46
47 INSTALL(TARGETS ${TARGET_CKM_TESTS} DESTINATION bin)