561c1f17a1
Done with `autopep8 --select=E1`, fixes: - E101 - Reindent all lines. - E112 - Fix under-indented comments. - E113 - Fix over-indented comments. - E115 - Fix under-indented comments. - E116 - Fix over-indented comments. - E121 - Fix a badly indented line. - E122 - Fix a badly indented line. - E123 - Fix a badly indented line. - E124 - Fix a badly indented line. - E125 - Fix indentation undistinguish from the next logical line. - E126 - Fix a badly indented line. - E127 - Fix a badly indented line. - E128 - Fix a badly indented line. - E129 - Fix a badly indented line.
23 lines
663 B
Python
23 lines
663 B
Python
#!/usr/bin/env python
|
|
|
|
Import('env')
|
|
|
|
if (env["platform"] in ["haiku","osx","windows","x11"]):
|
|
# Thirdparty source files
|
|
if (env["glew"] != "system"): # builtin
|
|
thirdparty_dir = "#thirdparty/glew/"
|
|
thirdparty_sources = [
|
|
"glew.c",
|
|
]
|
|
thirdparty_sources = [thirdparty_dir + file for file in thirdparty_sources]
|
|
|
|
env.add_source_files(env.drivers_sources, thirdparty_sources)
|
|
env.Append(CPPFLAGS = ['-DGLEW_STATIC'])
|
|
env.Append(CPPPATH = [thirdparty_dir])
|
|
|
|
env.Append(CPPFLAGS = ['-DGLEW_ENABLED'])
|
|
|
|
# Godot source files
|
|
env.add_source_files(env.drivers_sources, "*.cpp")
|
|
|
|
Export('env')
|