SConscript indentation fix

metadata
Wenzel Jakob 2013-11-28 09:19:20 +01:00
parent be8275749d
commit 3781651694
2 changed files with 2 additions and 2 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 92 KiB

After

Width:  |  Height:  |  Size: 96 KiB

View File

@ -33,9 +33,9 @@ for ver in hasPython:
if sys.platform == 'darwin':
pythonEnv.Append(LINKFLAGS=['-Xlinker', '-rpath', '-Xlinker', '@loader_path/../../Contents/Frameworks', '-undefined', 'dynamic_lookup'])
elif 'linux' in sys.platform:
# Linux: ensure that all core Mitsuba libraries are loaded when the plugin is used in Python
# Linux: ensure that all core Mitsuba libraries are loaded when the plugin is used in Python
pythonEnv.Append(SHLINKFLAGS=['-Wl,-R,\'$$ORIGIN/../..\''])
pythonEnv.Append(SHLINKFLAGS=['-Wl,-no-as-needed', '-lmitsuba-hw', '-Wl,-no-as-needed', '-lmitsuba-bidir'])
pythonEnv.Append(SHLINKFLAGS=['-Wl,-no-as-needed', '-lmitsuba-hw', '-Wl,-no-as-needed', '-lmitsuba-bidir'])
libcore_obj = pythonEnv.SharedObject('core_'+ver, 'core.cpp')
librender_obj = pythonEnv.SharedObject('render_'+ver, 'render.cpp')