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.
29 lines
693 B
Python
29 lines
693 B
Python
#!/usr/bin/env python
|
|
|
|
Import('env')
|
|
|
|
|
|
common_win=[
|
|
"context_gl_win.cpp",
|
|
"os_windows.cpp",
|
|
"ctxgl_procaddr.cpp",
|
|
"key_mapping_win.cpp",
|
|
"tcp_server_winsock.cpp",
|
|
"packet_peer_udp_winsock.cpp",
|
|
"stream_peer_winsock.cpp",
|
|
"joystick.cpp",
|
|
]
|
|
|
|
restarget="godot_res"+env["OBJSUFFIX"]
|
|
|
|
obj = env.RES(restarget,'godot_res.rc')
|
|
|
|
common_win.append(obj)
|
|
|
|
env.Program('#bin/godot',['godot_win.cpp']+common_win,PROGSUFFIX=env["PROGSUFFIX"])
|
|
|
|
# Microsoft Visual Studio Project Generation
|
|
if (env['vsproj'])=="yes":
|
|
env.vs_srcs = env.vs_srcs + ["platform/windows/godot_win.cpp"]
|
|
for x in common_win:
|
|
env.vs_srcs = env.vs_srcs + ["platform/windows/" + str(x)]
|