mirror of
https://github.com/ModOrganizer2/modorganizer-game_fallout4london.git
synced 2026-07-27 14:09:13 -07:00
15 lines
296 B
Python
15 lines
296 B
Python
Import('qt_env')
|
|
|
|
env = qt_env.Clone()
|
|
|
|
# Shouldn't this be GAMEFALLOUT3_LIBRARY
|
|
env.AppendUnique(CPPDEFINES = [ 'GAMEFALLOUT4_LIBRARY' ])
|
|
|
|
env.RequiresGamebryo()
|
|
|
|
lib = env.SharedLibrary('gameFallout4London', env.Glob('*.cpp'))
|
|
env.InstallModule(lib)
|
|
|
|
res = env['QT_USED_MODULES']
|
|
Return('res')
|