metaforce/hecl/driver/driver.pro

46 lines
986 B
Prolog
Raw Normal View History

2015-07-05 06:27:24 +00:00
TEMPLATE = app
2015-05-15 22:39:43 +00:00
TARGET = hecl
CONFIG -= Qt
2015-07-05 06:27:24 +00:00
CONFIG += c++11
2015-05-15 22:39:43 +00:00
QT =
LIBS -= -lQtGui -lQtCore
2015-07-05 06:27:24 +00:00
INCLUDEPATH += ../include \
../extern/Athena/include \
../extern/LogVisor/include \
../extern
2015-05-17 04:55:29 +00:00
2015-05-18 23:37:10 +00:00
LIBPATH += $$OUT_PWD/../lib \
$$OUT_PWD/../blender \
$$OUT_PWD/../extern/LogVisor \
$$OUT_PWD/../extern/blowfish \
$$OUT_PWD/../extern/libpng \
$$OUT_PWD/../extern/Athena/lib \
$$OUT_PWD/../extern/RetroCommon/DataSpec \
$$OUT_PWD/../extern/RetroCommon/NODLib/lib
2015-05-18 23:37:10 +00:00
LIBS += -lhecl -lhecl-blender -lblowfish -lpng -lpthread
LIBS += -Wl,--whole-archive -lRetroDataSpec -Wl,--no-whole-archive -lNOD -lLogVisor
CONFIG(debug, debug|release) {
LIBS += -lAthena-d
} else {
LIBS += -lAthena
}
2015-06-09 22:57:21 +00:00
2015-05-15 22:39:43 +00:00
SOURCES += \
$$PWD/main.cpp
HEADERS += \
2015-06-10 02:40:03 +00:00
ToolBase.hpp \
ToolPackage.hpp \
2015-06-12 09:08:49 +00:00
ToolExtract.hpp \
2015-06-10 02:40:03 +00:00
ToolInit.hpp \
ToolHelp.hpp \
ToolGroup.hpp \
ToolCook.hpp \
ToolClean.hpp \
ToolAdd.hpp \
ToolRemove.hpp \
ToolSpec.hpp
2015-05-15 22:39:43 +00:00