mirror of
https://github.com/zealdocs/zeal.git
synced 2026-08-29 16:40:51 +08:00
23 lines
419 B
Plaintext
23 lines
419 B
Plaintext
HEADERS += \
|
|
$$files($$PWD/*.h) \
|
|
$$files($$PWD/widgets/*.h)
|
|
|
|
SOURCES += \
|
|
$$files($$PWD/*.cpp) \
|
|
$$files($$PWD/widgets/*.cpp)
|
|
|
|
unix:!macx {
|
|
CONFIG += link_pkgconfig
|
|
PKGCONFIG += x11
|
|
|
|
QMAKE_DEL_DIR = rmdir --ignore-fail-on-non-empty
|
|
|
|
packagesExist(appindicator) {
|
|
PKGCONFIG += appindicator
|
|
DEFINES += USE_LIBAPPINDICATOR
|
|
}
|
|
}
|
|
|
|
FORMS += \
|
|
$$files($$PWD/forms/*.ui)
|