~mzanetti/+junk/throw

« back to all changes in this revision

Viewing changes to throw.pro

  • Committer: Michael Zanetti
  • Date: 2015-09-10 07:24:59 UTC
  • Revision ID: michael.zanetti@canonical.com-20150910072459-hw9zuce7ort4z6fu
initial test for throwing things and breaking stuff

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# This is the basic qmake template for the Ubuntu-SDK
 
2
# it handles creation and installation of the manifest
 
3
# file and takes care of subprojects
 
4
TEMPLATE = subdirs
 
5
 
 
6
#load Ubuntu specific features
 
7
load(ubuntu-click)
 
8
 
 
9
SUBDIRS += app
 
10
 
 
11
# specify the manifest file, this file is required for click
 
12
# packaging and for the IDE to create runconfigurations
 
13
UBUNTU_MANIFEST_FILE=manifest.json.in
 
14
 
 
15
# specify translation domain, this must be equal with the
 
16
# app name in the manifest file
 
17
UBUNTU_TRANSLATION_DOMAIN="throw.mzanetti"
 
18
 
 
19
# specify the source files that should be included into
 
20
# the translation file, from those files a translation
 
21
# template is created in po/template.pot, to create a
 
22
# translation copy the template to e.g. de.po and edit the sources
 
23
UBUNTU_TRANSLATION_SOURCES+= \
 
24
    $$files(app/*.qml,true) \
 
25
    $$files(app/*.js,true)
 
26
 
 
27
# specifies all translations files and makes sure they are
 
28
# compiled and installed into the right place in the click package
 
29
UBUNTU_PO_FILES+=$$files(po/*.po)
 
30
 
 
31
 
 
32