61fb96d071f48932a98047b7415e845aaada4400
[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     popt
24     )
25
26 SET(SCREENSHOOTER_PATH
27     ${PROJECT_SOURCE_DIR}/src
28     )
29
30 SET(SCREENSHOOTER_SOURCES
31     ${SCREENSHOOTER_PATH}/main.c
32     )
33
34 INCLUDE_DIRECTORIES(
35     ${SCREENSHOOTER_PATH}
36     ${SCREENSHOOTER_DEP_INCLUDE_DIRS}
37     )
38
39 ADD_EXECUTABLE(${TARGET_SCREENSHOOTER} ${SCREENSHOOTER_SOURCES})
40
41 TARGET_LINK_LIBRARIES(${TARGET_SCREENSHOOTER}
42     ${SCREENSHOOTER_DEP_LIBRARIES}
43     )
44
45 INSTALL(TARGETS ${TARGET_SCREENSHOOTER} DESTINATION ${BIN_INSTALL_DIR})