Use proper RUNNER_ASSERT macros
[platform/core/test/security-tests.git] / tests / CMakeLists.txt
1 # Copyright (c) 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
16 cmake_minimum_required(VERSION 2.8.3)
17
18 INCLUDE(FindPkgConfig)
19 SET(INNER_TARGET_TEST "security-tests-inner-test")
20
21 PKG_CHECK_MODULES(INNER_TARGET_DEP
22     REQUIRED
23     glib-2.0
24     )
25
26 #files to compile
27 SET(INNER_TARGET_TEST_SOURCES
28     ${PROJECT_SOURCE_DIR}/tests/inner-test.cpp
29     ${PROJECT_SOURCE_DIR}/tests/common/test_cases_timeout.cpp
30     ${PROJECT_SOURCE_DIR}/tests/framework/test_cases_deferred.cpp
31     )
32
33 #header directories
34 INCLUDE_DIRECTORIES(SYSTEM
35     ${INNER_TARGET_DEP_INCLUDE_DIRS}
36     )
37
38 INCLUDE_DIRECTORIES(
39     ${PROJECT_SOURCE_DIR}/src/framework/include/
40     ${PROJECT_SOURCE_DIR}/src/
41     )
42
43 #output format
44 ADD_EXECUTABLE(${INNER_TARGET_TEST} ${INNER_TARGET_TEST_SOURCES})
45
46 #linker directories
47 TARGET_LINK_LIBRARIES(${INNER_TARGET_TEST}
48     ${INNER_TARGET_DEP_LIBRARIES}
49     tests-common
50     dpl-test-framework
51     )
52
53 #place for output file
54 INSTALL(TARGETS ${INNER_TARGET_TEST}
55     DESTINATION /usr/bin
56     PERMISSIONS OWNER_READ
57                 OWNER_WRITE
58                 OWNER_EXECUTE
59                 GROUP_READ
60                 GROUP_EXECUTE
61                 WORLD_READ
62                 WORLD_EXECUTE
63     )