Update CMakeLists files tree and organization
[staging/xdg-launcher.git] / templates / native / app / CMakeLists.txt
1 ###########################################################################
2 # Copyright 2015, 2016, 2017 IoT.bzh
3 #
4 # author: Fulup Ar Foll <fulup@iot.bzh>
5 # contrib: Romain Forlot <romain.forlot@iot.bzh>
6 #
7 # Licensed under the Apache License, Version 2.0 (the "License");
8 # you may not use this file except in compliance with the License.
9 # You may obtain a copy of the License at
10 #
11 #     http://www.apache.org/licenses/LICENSE-2.0
12 #
13 # Unless required by applicable law or agreed to in writing, software
14 # distributed under the License is distributed on an "AS IS" BASIS,
15 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 # See the License for the specific language governing permissions and
17 # limitations under the License.
18 ###########################################################################
19
20 # Add target to project dependency list
21 PROJECT_TARGET_ADD(xxx-native-app)
22
23         # Define project Targets
24         add_executable(${TARGET_NAME} 
25                 ${TARGET_NAME}.c
26                 )
27
28         link_libraries(
29                 ${CMAKE_THREAD_LIBS_INIT}
30                 ${libafbwsc_LIBRARIES}
31                 ${json-c_LIBRARIES}
32                 ${libsystemd_LIBRARIES}
33         )
34
35         # Binder exposes a unique public entry point
36         SET_TARGET_PROPERTIES(${TARGET_NAME} PROPERTIES
37                 LABELS "EXECUTABLE"
38                 OUTPUT_NAME ${TARGET_NAME})
39
40         TARGET_INCLUDE_DIRECTORIES(${TARGET_NAME}
41                 PUBLIC  ${libafbwsc_INCLUDE_DIRS}
42                         ${json-c_INCLUDE_DIRS}
43                         ${libsystemd_INCLUDE_DIRS})
44
45         TARGET_LINK_LIBRARIES(${TARGET_NAME}
46                 afbwsc
47                 ${link_libraries})
48
49         # installation directory
50         INSTALL(TARGETS ${TARGET_NAME}
51                 RUNTIME DESTINATION ${BINDINGS_INSTALL_DIR})