diff options
| author | Tannin <Tannin@Serenity> | 2013-02-03 12:49:25 +0100 |
|---|---|---|
| committer | Tannin <Tannin@Serenity> | 2013-02-03 12:49:25 +0100 |
| commit | 981f8b3acf7e76f27c02f4ced80d55b424cc7497 (patch) | |
| tree | 0f504d99d1e5fe197258febff3c147d0725abda4 /src/shared/shared.pro | |
initial commit to mercurial repository.
Corresponds to MO version 0.12.6
Diffstat (limited to 'src/shared/shared.pro')
| -rw-r--r-- | src/shared/shared.pro | 56 |
1 files changed, 56 insertions, 0 deletions
diff --git a/src/shared/shared.pro b/src/shared/shared.pro new file mode 100644 index 00000000..3e1283e6 --- /dev/null +++ b/src/shared/shared.pro @@ -0,0 +1,56 @@ +#-------------------------------------------------
+#
+# Project created by QtCreator 2011-05-03T18:35:56
+#
+#-------------------------------------------------
+
+QT -= gui core
+#QT += core
+
+TARGET = mo_shared
+TEMPLATE = lib
+CONFIG += staticlib
+
+INCLUDEPATH += ../../../bsatk "$(BOOSTPATH)"
+
+CONFIG(debug, debug|release) {
+ LIBS += -L../../../bsatk-build/debug
+
+} else {
+ LIBS += -L../../../bsatk-build/release
+}
+
+LIBS += -lbsatk
+
+DEFINES += UNICODE _UNICODE _CRT_SECURE_NO_WARNINGS
+
+DEFINES += BOOST_DISABLE_ASSERTS NDEBUG
+
+# QMAKE_CXXFLAGS += /analyze
+
+SOURCES += \
+ inject.cpp \
+ windows_error.cpp \
+ error_report.cpp \
+ directoryentry.cpp \
+ gameinfo.cpp \
+ oblivioninfo.cpp \
+ fallout3info.cpp \
+ falloutnvinfo.cpp \
+ util.cpp \
+ skyriminfo.cpp \
+ appconfig.cpp
+
+HEADERS += \
+ inject.h \
+ windows_error.h \
+ error_report.h \
+ directoryentry.h \
+ gameinfo.h \
+ oblivioninfo.h \
+ fallout3info.h \
+ falloutnvinfo.h \
+ util.h \
+ skyriminfo.h \
+ appconfig.h \
+ appconfig.inc
|
