2025-03-01 20:38:52 -05:00
|
|
|
QT += core
|
|
|
|
|
TEMPLATE = lib
|
2025-04-04 20:39:51 -04:00
|
|
|
CONFIG += staticlib c++17
|
2025-03-01 20:38:52 -05:00
|
|
|
|
2025-08-14 17:30:25 -04:00
|
|
|
SOURCES += $$files($$PWD/*.cpp, true)
|
|
|
|
|
HEADERS += $$files($$PWD/*.h, true)
|
2025-03-01 20:38:52 -05:00
|
|
|
|
|
|
|
|
LIBS += \
|
2025-09-07 12:36:08 -04:00
|
|
|
#-L$$PWD/../../third_party/devil_sdk/lib/ -lDevIL \
|
|
|
|
|
#-L$$PWD/../../third_party/devil_sdk/lib/ -lILU \
|
|
|
|
|
#-L$$PWD/../../third_party/devil_sdk/lib/ -lILUT \
|
2025-03-01 20:38:52 -05:00
|
|
|
-L$$OUT_PWD/../libs/iwifile -liwifile
|
|
|
|
|
|
|
|
|
|
INCLUDEPATH += \
|
|
|
|
|
$$PWD/../iwifile/ \
|
2025-09-07 12:36:08 -04:00
|
|
|
#$$PWD/../../third_party/devil_sdk/include/
|
2025-03-01 20:38:52 -05:00
|
|
|
|
|
|
|
|
DEPENDPATH += \
|
|
|
|
|
$$PWD/../iwifile/ \
|
2025-09-07 12:36:08 -04:00
|
|
|
#$$PWD/../../third_party/devil_sdk/include/
|
2025-03-01 20:38:52 -05:00
|
|
|
|
|
|
|
|
DESTDIR = $$OUT_PWD/../
|