mirror of
https://github.com/ModOrganizer2/modorganizer-installer_bundle.git
synced 2026-07-27 14:02:39 -07:00
Changed pynedit.pro to fetch from 'standard' install location Changed saveas code to use organizer report rather than uibase - this way it's not dependant on the vagaries of the include path, and works the same as the rest of the organiser directory
16 lines
308 B
Python
16 lines
308 B
Python
Import('qt_env')
|
|
|
|
env = qt_env.Clone()
|
|
|
|
env.DisableQtModules('Gui')
|
|
env.AppendUnique(CPPDEFINES = [ 'INSTALLERBUNDLE_LIBRARY' ])
|
|
|
|
# Sigh
|
|
env['CPPPATH'] += [ '.' ]
|
|
|
|
lib = env.SharedLibrary('installerBundle', env.Glob('*.cpp'))
|
|
env.InstallModule(lib)
|
|
|
|
res = env['QT_USED_MODULES']
|
|
Return('res')
|