mirror of
https://github.com/ModOrganizer2/modorganizer-preview_bsa.git
synced 2026-07-27 14:06:38 -07:00
Every plugin now built
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
Import('qt_env')
|
||||
|
||||
env = qt_env.Clone()
|
||||
|
||||
modules = [
|
||||
'Core',
|
||||
'Gui'
|
||||
]
|
||||
|
||||
if env['QT_MAJOR_VERSION'] > 4:
|
||||
modules += [ 'Widgets' ]
|
||||
|
||||
env.EnableQt4Modules(['Qt' + n for n in modules],
|
||||
debug = env['CONFIG'] == 'debug')
|
||||
|
||||
env.AppendUnique(CPPDEFINES = [ 'PREVIEWBASE_LIBRARY' ])
|
||||
|
||||
env.RequireLibraries('uibase')
|
||||
|
||||
lib = env.SharedLibrary('previewBase', env.Glob('*.cpp'))
|
||||
env.InstallPlugin(lib)
|
||||
+2
-1
@@ -22,4 +22,5 @@ HEADERS += previewbase.h
|
||||
include(../plugin_template.pri)
|
||||
|
||||
OTHER_FILES += \
|
||||
previewbase.json
|
||||
previewbase.json\
|
||||
SConscript
|
||||
|
||||
Reference in New Issue
Block a user