e72a99883a7964b4826b143e4d133011d729f126
[framework/web/wrt-installer.git] / tests / general / CMakeLists.txt
1 # Copyright (c) 2013 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      Karol Pawlowski (k.pawlowski@samsung.com)
17 #
18
19
20 # TODO cleanup dependencies
21 PKG_CHECK_MODULES(COMMON_LIB_PKGS
22     dbus-1
23     libpcrecpp
24     dpl-efl
25     dpl-test-efl
26     dpl-utils-efl
27     dpl-wrt-dao-ro
28     dpl-event-efl
29     glib-2.0
30     gthread-2.0
31     edje
32     ecore
33     ecore-x
34     ecore-imf
35     ecore-ipc
36     ecore-evas
37     ecore-file
38     ecore-input
39     evas
40     eina
41     elementary
42     vconf
43     aul
44     libidn
45     xmlsec1
46     libiri
47     REQUIRED
48     )
49
50 INCLUDE(CMakeUtils.txt)
51
52 pkg_search_module(dpl REQUIRED dpl-efl)
53 pkg_search_module(dpl-test REQUIRED dpl-test-efl)
54
55 SET(WRT_TEST_LIBRARY "wrt-tests-libs")
56
57 include_directories(
58   ${dpl_INCLUDE_DIRS}
59   ${dpl-test_INCLUDE_DIRS}
60   ${CMAKE_CURRENT_SOURCE_DIR}/common
61 )
62
63 ADD_SUBDIRECTORY(common)
64
65 SET(INSTALLER_TESTS_SOURCES
66     ${CMAKE_CURRENT_SOURCE_DIR}/TestInit.cpp
67     ${CMAKE_CURRENT_SOURCE_DIR}/TestCases.cpp
68 )
69
70 SET(INSTALLER_TESTS_TARGET "wrt-installer-tests-general")
71
72 WRT_TEST_BUILD(${INSTALLER_TESTS_TARGET} ${INSTALLER_TESTS_SOURCES})
73 WRT_TEST_INSTALL(${INSTALLER_TESTS_TARGET})
74 target_link_libraries(${INSTALLER_TESTS_TARGET}
75   ${dpl_LIBRARIES}
76   ${dpl-test_LIBRARIES}
77   ${WRT_TEST_LIBRARY}
78   ${TARGET_CORE_MODULE_LIB}
79   ${COMMON_LIB_PKGS_LIBRARIES}
80 )