Add screen capturing functionality
[test/tools/screenshooter.git] / src / CMakeLists.txt
1 # Copyright (c) 2016 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        src/CMakeLists.txt
16 # @author      Adam Malinowski <a.malinowsk2@partner.samsung.com>
17 #
18
19 FIND_PACKAGE(PkgConfig)
20
21 PKG_CHECK_MODULES(SCREENSHOOTER_DEP
22     REQUIRED
23     cairo
24     capi-ui-efl-util
25     popt
26     )
27
28 SET(SCREENSHOOTER_PATH
29     ${PROJECT_SOURCE_DIR}/src
30     )
31
32 SET(SCREENSHOOTER_SOURCES
33     ${SCREENSHOOTER_PATH}/main.c
34     )
35
36 INCLUDE_DIRECTORIES(
37     ${SCREENSHOOTER_PATH}
38     ${SCREENSHOOTER_DEP_INCLUDE_DIRS}
39     )
40
41 ADD_EXECUTABLE(${TARGET_SCREENSHOOTER} ${SCREENSHOOTER_SOURCES})
42
43 TARGET_LINK_LIBRARIES(${TARGET_SCREENSHOOTER}
44     ${SCREENSHOOTER_DEP_LIBRARIES}
45     )
46
47 INSTALL(TARGETS ${TARGET_SCREENSHOOTER} DESTINATION ${BIN_INSTALL_DIR})