20 lines
325 B
Prolog
20 lines
325 B
Prolog
QT += core widgets
|
|
TEMPLATE = lib
|
|
CONFIG += staticlib c++17
|
|
|
|
SOURCES += $$files($$PWD/*.cpp, true)
|
|
HEADERS += $$files($$PWD/*.h, true)
|
|
|
|
LIBS += \
|
|
-L$$OUT_PWD/../ -lcore -lxassets
|
|
|
|
INCLUDEPATH += \
|
|
$$PWD/../core \
|
|
$$PWD/../xassets
|
|
|
|
DEPENDPATH += \
|
|
$$PWD/../core \
|
|
$$PWD/../xassets
|
|
|
|
DESTDIR = $$OUT_PWD/../
|