Refactor qmake SUBDIRS structure

The big swift.pro is refactored by the correct usage of SUBDIRS
template. The following additional changes are made:
- Removed '_' from all targets and folder names
- Aligned parent folder and target name

refs #461
This commit is contained in:
Roland Winklmeier
2015-11-23 09:50:44 +01:00
parent 097b4d900c
commit 7ece093ee9
47 changed files with 111 additions and 77 deletions

23
samples/hotkey/hotkey.pro Normal file
View File

@@ -0,0 +1,23 @@
load(common_pre)
QT += core gui dbus network
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
TARGET = samplehotkey
TEMPLATE = app
CONFIG -= app_bundle
CONFIG += blackmisc blackinput blackcore blackgui
DEPENDPATH += . $$SourceRoot/src
INCLUDEPATH += . $$SourceRoot/src
SOURCES += *.cpp
DESTDIR = $$DestRoot/bin
target.path = $$PREFIX/bin
INSTALLS += target
load(common_post)