7e2f4d8dbed4e5227c42509b361fc9311df1c031
[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     )
30
31 #header directories
32 INCLUDE_DIRECTORIES(SYSTEM
33     ${INNER_TARGET_DEP_INCLUDE_DIRS}
34     )
35
36 INCLUDE_DIRECTORIES(
37     ${PROJECT_SOURCE_DIR}/src/framework/include/
38     )
39
40 #output format
41 ADD_EXECUTABLE(${INNER_TARGET_TEST} ${INNER_TARGET_TEST_SOURCES})
42
43 #linker directories
44 TARGET_LINK_LIBRARIES(${INNER_TARGET_TEST}
45     ${INNER_TARGET_DEP_LIBRARIES}
46     dpl-test-framework
47     )
48
49 #place for output file
50 INSTALL(TARGETS ${INNER_TARGET_TEST}
51     DESTINATION /usr/bin
52     PERMISSIONS OWNER_READ
53                 OWNER_WRITE
54                 OWNER_EXECUTE
55                 GROUP_READ
56                 GROUP_EXECUTE
57                 WORLD_READ
58                 WORLD_EXECUTE
59     )