mirror of
https://github.com/ModOrganizer2/modorganizer-plugin_python.git
synced 2026-07-27 14:03:33 -07:00
- esptk now determines if a esp is a dummy (without records) - hook.dll no longer creates a log file if noone wrote to it - nexus id and installtime columns are now hidden by default - modlist can now be refreshed without saving first (so plugins can replace the modlist.txt as a whole) - plugins can now query more details about virtualised files - added style options "plastique" and "cleanlooks" - "overwrite" is no longer listed with a creation time - a warning will now be displayed if the user has too many plugins active - a warning will now be displayed if mods with scripts have an installation order that doesn't match the corresponding esp load order - nmm importer now has select all/deselect all buttons - nmm importer no longer tries to unpack missing files from archives (won't work anyway) - initial support for importing from nmm 0.5 alpha - removed some broken warning suppresions - python runner now works with bundled python - extended qbs build system (still fails to build the main gui application) - implemented a nsis-based installer
48 lines
1.0 KiB
Prolog
48 lines
1.0 KiB
Prolog
#-------------------------------------------------
|
|
#
|
|
# Project created by QtCreator 2013-09-01T15:55:01
|
|
#
|
|
#-------------------------------------------------
|
|
|
|
TARGET = pythonRunner
|
|
TEMPLATE = lib
|
|
|
|
CONFIG += dll
|
|
CONFIG += warn_on
|
|
|
|
DEFINES += PYTHONRUNNER_LIBRARY
|
|
|
|
# suppress a few warnings caused by boost vs vc++ paranoia
|
|
DEFINES += _SCL_SECURE_NO_WARNINGS
|
|
|
|
SOURCES += pythonrunner.cpp \
|
|
gilock.cpp \
|
|
error.cpp \
|
|
pythonpluginwrapper.cpp \
|
|
proxypluginwrappers.cpp
|
|
|
|
HEADERS += pythonrunner.h \
|
|
gilock.h \
|
|
error.h \
|
|
uibasewrappers.h \
|
|
pythonpluginwrapper.h \
|
|
proxypluginwrappers.h
|
|
|
|
|
|
|
|
CONFIG(debug, debug|release) {
|
|
LIBS += -L$$OUT_PWD/../uibase/debug
|
|
} else {
|
|
LIBS += -L$$OUT_PWD/../uibase/release
|
|
QMAKE_CXXFLAGS += /Zi
|
|
QMAKE_LFLAGS += /DEBUG
|
|
}
|
|
|
|
|
|
INCLUDEPATH += "$(BOOSTPATH)" "$$(PYTHONPATH)/include" "$$(PYTHONPATH)/Lib/site-packages/PyQt4/include"
|
|
LIBS += -L"$$(PYTHONPATH)/libs" -L"$(BOOSTPATH)/stage/lib"
|
|
LIBS += -lpython27
|
|
|
|
INCLUDEPATH += ../uibase
|
|
LIBS += -luibase
|