Added rest of file modifications. (oops)

This commit is contained in:
codestation
2015-03-21 14:53:43 -04:30
parent 9f790dc788
commit 79067535c0
112 changed files with 228 additions and 14060 deletions

View File

@@ -5,26 +5,29 @@
#-------------------------------------------------
TEMPLATE = subdirs
CONFIG += ordered
SUBDIRS = common
android {
SUBDIRS = qcma_android.pro
} else {
SUBDIRS = qcma_gui.pro
}
# Compile the headless binary only on Linux
unix:!macx:!android {
SUBDIRS += qcma_cli.pro
# Compile the headless binary only on Linux
SUBDIRS += cli
cli.depends = common
# The appindicator and kde extensions are linux only too
ENABLE_APPINDICATOR {
SUBDIRS += qcma_appindicator.pro
SUBDIRS += appindicator
appindicator.depends = gui
}
ENABLE_KDENOTIFIER {
SUBDIRS += qcma_kdenotifier.pro
SUBDIRS += kdenotifier
kdenotifier.depends = gui
}
}
TRANSLATIONS += \
resources/translations/qcma_es.ts \
resources/translations/qcma_fr.ts \
resources/translations/qcma_ja.ts
android {
SUBDIRS += android
android.depends = common
} else {
SUBDIRS += gui
gui.depends = common
}