Let the thread to be managed outside the binding.
[apps/agl-service-can-low-level.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 target to project dependency list
21 PROJECT_TARGET_ADD(low-can-demo)
22
23         # Define project Targets
24         add_custom_command(OUTPUT dist.prod
25         DEPENDS ${TARGET_NAME}
26         WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}
27         COMMAND [ -d "dist.prod" ] || npm install
28         COMMAND [ -d "dist.prod" ] || gulp build-app-prod
29         COMMAND touch dist.prod
30         COMMAND cp -r dist.prod ${CMAKE_CURRENT_BINARY_DIR})
31
32         add_custom_target(${TARGET_NAME} ALL DEPENDS dist.prod)
33
34         # Binder exposes a unique public entry point
35         SET_TARGET_PROPERTIES(${TARGET_NAME} PROPERTIES
36                 LABELS "HTDOCS"
37                 OUTPUT_NAME dist.prod)
38
39         # installation directory
40         INSTALL(DIRECTORY dist.prod/ DESTINATION ${BINDINGS_INSTALL_DIR})
41
42 # Add subdir targets
43 project_subdirs_add()