Move tests source code from "tests" to "src" directory
[platform/core/test/security-tests.git] / src / smack-dbus-tests / CMakeLists.txt
1 # Copyright (c) 2014-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      Michal Eljasiewicz (m.eljasiewic@samsung.com)
17 # @brief
18 #
19
20 INCLUDE(FindPkgConfig)
21
22 # Dependencies
23 PKG_CHECK_MODULES(SMACK_DBUS_TESTS_DEP
24     libsmack
25     dbus-1
26     REQUIRED)
27
28 # Targets definition
29
30 INCLUDE_DIRECTORIES(SYSTEM
31     ${SMACK_DBUS_TESTS_DEP_INCLUDE_DIRS}
32    )
33
34 SET(TARGET_SMACK_DBUS_TESTS "smack-dbus-tests")
35
36 # Sources definition
37
38 SET(SMACK_DBUS_SOURCES
39     ${PROJECT_SOURCE_DIR}/src/smack-dbus-tests/smack_dbus_tests.cpp
40    )
41
42 INCLUDE_DIRECTORIES(
43     ${PROJECT_SOURCE_DIR}/src/common/
44    )
45
46 ADD_EXECUTABLE(${TARGET_SMACK_DBUS_TESTS} ${SMACK_DBUS_SOURCES})
47
48 TARGET_LINK_LIBRARIES(${TARGET_SMACK_DBUS_TESTS}
49     ${SMACK_DBUS_TESTS_DEP_LIBRARIES}
50     dpl-test-framework
51     tests-common
52     )
53
54 # Installation
55
56 INSTALL(TARGETS ${TARGET_SMACK_DBUS_TESTS} DESTINATION /usr/bin)