mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-03-22 23:05:36 +08:00
* removed local.env.template * fixed path in global setup class * removed timestamp check from gloabl setup (problem when switching URLs)
25 lines
618 B
INI
25 lines
618 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 += 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/shared/bootstrap/*.*
|
|
COPY_FILES += $$PWD/shared/dbdata/*.*
|
|
COPY_FILES += $$PWD/shared/updateinfo/*.*
|
|
|
|
package_resources.path = $$PREFIX
|
|
package_resources.files += data
|
|
package_resources.files += shared
|
|
INSTALLS += package_resources
|
|
|
|
load(common_post)
|