summaryrefslogtreecommitdiff
path: root/src/components/qt_hmi/qml_model_qt5/CMakeLists.txt
blob: e6eeb9e525ffe0473a808a3c00c465cba2cf28d4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
# Copyright (c) 2013, Ford Motor Company
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are met:
#
# Redistributions of source code must retain the above copyright notice, this
# list of conditions and the following disclaimer.
#
# Redistributions in binary form must reproduce the above copyright notice,
# this list of conditions and the following
# disclaimer in the documentation and/or other materials provided with the
# distribution.
#
# Neither the name of the Ford Motor Company nor the names of its contributors
# may be used to endorse or promote products derived from this software
# without specific prior written permission.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
# POSSIBILITY OF SUCH DAMAGE.

cmake_minimum_required(VERSION 2.8.11)

set(components_dir ${CMAKE_CURRENT_SOURCE_DIR}/../..)
set(dbus_dir ${components_dir}/dbus)
set(codegen_dir ${dbus_dir}/codegen)
set(codegen ${codegen_dir}/make_qml_dbus_qml.py)
set(parser ${codegen_dir}/ford_xml_parser.py)
set(interfaces_dir ${components_dir}/interfaces)
set(api_xml ${interfaces_dir}/QT_HMI_API.xml)
set(proxy_dir ${CMAKE_CURRENT_BINARY_DIR}/hmi_api)
set(qml_dirs hmi_api controls models popups views)
set(qml_files MainWindow.qml)

add_custom_target(qml_auto ALL
  COMMAND python ${codegen} --infile ${api_xml} --version ${qt_version} --outdir ${proxy_dir}
  DEPENDS ${api_xml} ${codegen} ${parser}
  COMMENT "Generating files:
    ${proxy_dir}/BasicCommunicationProxy.qml
    ${proxy_dir}/ButtonsProxy.qml
    ${proxy_dir}/NavigationProxy.qml
    ${proxy_dir}/TTSProxy.qml
    ${proxy_dir}/UIProxy.qml
    ${proxy_dir}/VehicleInfoProxy.qml
    ${proxy_dir}/VRProxy.qml
    from:
    ${api_xml} ..."
)

add_custom_target(qml_copy_resources ALL
  COMMAND ${CMAKE_COMMAND} -E copy_directory ${CMAKE_CURRENT_SOURCE_DIR}/../res ${CMAKE_CURRENT_BINARY_DIR}/res
  COMMENT "Copying resources")

if(NOT "${CMAKE_SOURCE_DIR}" STREQUAL "${CMAKE_BINARY_DIR}")
  foreach(qml_dir ${qml_dirs})
    add_custom_target(qml_copy_${qml_dir} ALL
    COMMAND ${CMAKE_COMMAND} -E copy_directory ${CMAKE_CURRENT_SOURCE_DIR}/${qml_dir} ${CMAKE_CURRENT_BINARY_DIR}/${qml_dir}
    COMMENT "Copying directory ${qml_dir}")
  endforeach(qml_dir)

  add_dependencies(qml_auto qml_copy_hmi_api)

  foreach(qml_file ${qml_files})
    add_custom_target(qml_copy_${qml_file} ALL
    COMMAND ${CMAKE_COMMAND} -E copy_if_different ${CMAKE_CURRENT_SOURCE_DIR}/${qml_file} ${CMAKE_CURRENT_BINARY_DIR}/${qml_file}
    COMMENT "Copying file ${qml_file}")
  endforeach(qml_file)
endif()

install(DIRECTORY
    ${CMAKE_CURRENT_BINARY_DIR}/controls
    ${CMAKE_CURRENT_BINARY_DIR}/hmi_api
    ${CMAKE_CURRENT_BINARY_DIR}/models
    ${CMAKE_CURRENT_BINARY_DIR}/popups
    ${CMAKE_CURRENT_BINARY_DIR}/res
    ${CMAKE_CURRENT_BINARY_DIR}/views
  DESTINATION bin/hmi)
install(FILES ${CMAKE_CURRENT_BINARY_DIR}/MainWindow.qml DESTINATION bin/hmi)