~mterry/ubuntu-calculator-app/confined

« back to all changes in this revision

Viewing changes to CMakeLists.txt

  • Committer: Riccardo Padovani
  • Date: 2014-11-10 09:28:27 UTC
  • Revision ID: riccardo@rpadovani.com-20141110092827-9pj07nom3u4s278g
Starting a new adventure, yeah!

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
project(ubuntu-calculator-app C CXX)
 
2
cmake_minimum_required(VERSION 2.8.9)
 
3
 
 
4
# Do not remove this line, its required for the correct functionality of the Ubuntu-SDK
 
5
set(UBUNTU_MANIFEST_PATH "manifest.json.in" CACHE INTERNAL "Tells QtCreator location and name of the manifest file")
 
6
 
 
7
find_package(Qt5Core)
 
8
find_package(Qt5Qml)
 
9
find_package(Qt5Quick)
 
10
# Find_package(ubuntu-sdk-libs)
 
11
 
 
12
#automatically create moc files
 
13
set(CMAKE_AUTOMOC ON)
 
14
 
 
15
# Figure out the component install path
 
16
execute_process(
 
17
    COMMAND dpkg-architecture -qDEB_HOST_MULTIARCH
 
18
    OUTPUT_VARIABLE ARCH_TRIPLET
 
19
    OUTPUT_STRIP_TRAILING_WHITESPACE
 
20
)
 
21
 
 
22
set(CLICK_ARCH "all")
 
23
# If you want to add native code to your project, replace the set CLICK_ARCH command
 
24
# with the following part.
 
25
# This command figures out the target architecture for use in the manifest file
 
26
# execute_process(
 
27
#   COMMAND dpkg-architecture -qDEB_HOST_ARCH
 
28
#   OUTPUT_VARIABLE CLICK_ARCH
 
29
#   OUTPUT_STRIP_TRAILING_WHITESPACE
 
30
# )
 
31
 
 
32
set(QT_IMPORTS_DIR "lib/${ARCH_TRIPLET}")
 
33
 
 
34
option(INSTALL_TESTS "Install the tests on make install" on)
 
35
 
 
36
set(APP_NAME          ubuntu-calculator-app)
 
37
set(UBUNTU-CALCULATOR-APP_DIR "share/qml/ubuntu-calculator-app")
 
38
set(MAIN_QML          "ubuntu-calculator-app.qml")
 
39
set(ICON              "graphics/ubuntu-calculator-app.png")
 
40
 
 
41
# Set install paths
 
42
set(CMAKE_INSTALL_PREFIX /)
 
43
set(DATA_DIR /)
 
44
set(DESKTOP_DIR ${DATA_DIR})
 
45
set(DESKTOP_FILE_NAME "ubuntu-calculator-app.desktop")
 
46
 
 
47
# This sets the commandline that is executed on the device
 
48
set(EXEC "qmlscene $@ ${UBUNTU-CALCULATOR-APP_DIR}/${MAIN_QML}")
 
49
 
 
50
# Configures the manifest file. The manifest file describes the click package
 
51
# to the target system. All cmake variables that are defined at this point
 
52
# can be used in the manifest file and will be automatically replaced by cmake
 
53
configure_file(manifest.json.in ${CMAKE_CURRENT_BINARY_DIR}/manifest.json)
 
54
install(FILES ${CMAKE_CURRENT_BINARY_DIR}/manifest.json
 
55
        DESTINATION ${CMAKE_INSTALL_PREFIX})
 
56
 
 
57
install(DIRECTORY "app/graphics" DESTINATION ${DATA_DIR})
 
58
install(FILES "ubuntu-calculator-app.apparmor" DESTINATION ${DATA_DIR})
 
59
 
 
60
add_subdirectory(app)
 
61
add_subdirectory(po)
 
62
 
 
63
add_custom_target("autopilot" chmod +x ${CMAKE_SOURCE_DIR}/app/tests/autopilot/run
 
64
                    COMMAND ${CMAKE_SOURCE_DIR}/app/tests/autopilot/run
 
65
                    WORKING_DIRECTORY ./app)
 
66
 
 
67
add_custom_target("check" /usr/bin/qmltestrunner -input ${CMAKE_SOURCE_DIR}/app/tests/unit -import ${CMAKE_BINARY_DIR}/backend
 
68
                    WORKING_DIRECTORY ./app)
 
69
 
 
70
add_custom_target("run" /usr/bin/qmlscene -I ${CMAKE_BINARY_DIR}/backend  ${CMAKE_SOURCE_DIR}/app/ubuntu-calculator-app.qml
 
71
                    WORKING_DIRECTORY ./app)
 
72
 
 
73
# Normally QtCreator would only show files that are part of a target, but we need it to show also files 
 
74
# that are not compiled. Therefore we add a custom target that just does nothing but list the files 
 
75
add_custom_target("ubuntu-calculator-app_ClickFiles" ALL SOURCES "ubuntu-calculator-app.apparmor" "manifest.json.in")
 
76