Using new CMake architecture (again...)
[apps/low-level-can-service.git] / CAN-binder / low-can-demo / 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>w
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 subdir targets
21 search_targets()
22
23 # Add target to project dependency list
24 PROJECT_TARGET_ADD(low-can-demo)
25
26         # Define project Targets
27         add_custom_command(OUTPUT dist.prod
28         DEPENDS ${TARGET_NAME}
29         WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}
30         COMMAND npm install
31         COMMAND gulp build-app-prod
32         COMMAND cp -r dist.prod ${CMAKE_CURRENT_BINARY_DIR})
33
34         add_custom_target(${TARGET_NAME} ALL DEPENDS dist.prod)
35  
36         # Binder exposes a unique public entry point
37         SET_TARGET_PROPERTIES(${TARGET_NAME} PROPERTIES
38                 PREFIX ""
39                 LABELS "HTDOCS"
40                 OUTPUT_NAME dist.prod)
41
42         # installation directory
43         INSTALL(DIRECTORY dist.prod/ DESTINATION ${BINDINGS_INSTALL_DIR})
44
45         populate_widget()