mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-03-23 07:15:35 +08:00
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
30 lines
846 B
INI
30 lines
846 B
INI
load(common_pre)
|
|
|
|
TEMPLATE = lib
|
|
CONFIG += staticlib
|
|
CONFIG -= qt
|
|
|
|
OTHER_FILES += data/images/flags/*.png
|
|
OTHER_FILES += data/images/airlines/*.png
|
|
OTHER_FILES += local.env.template/*.*
|
|
OTHER_FILES += local.env.template/bootstrap/*.*
|
|
OTHER_FILES += shared//bootstrap/*.*
|
|
OTHER_FILES += shared/dbdata/*.*
|
|
OTHER_FILES += shared/updateinfo/*.*
|
|
|
|
COPY_FILES += $$PWD/data/images/flags/*.png
|
|
COPY_FILES += $$PWD/data/images/airlines/*.png
|
|
COPY_FILES += $$PWD/local.env.template/*.*
|
|
COPY_FILES += $$PWD/local.env.template/bootstrap/*.*
|
|
COPY_FILES += $$PWD/shared/bootstrap/*.*
|
|
COPY_FILES += $$PWD/shared/dbdata/*.*
|
|
COPY_FILES += $$PWD/shared/updateinfo/*.*
|
|
|
|
package_resources.path = $$PREFIX
|
|
package_resources.files += data
|
|
package_resources.files += shared
|
|
package_resources.files += local.env.template
|
|
INSTALLS += package_resources
|
|
|
|
load(common_post)
|