mirror of
https://github.com/godotengine/godot.git
synced 2024-11-27 09:16:35 +08:00
f3102160a1
Now it's possible to compile for Windows platform if wanted. It's supported only for Windows 8 or later, so it's not enabled by default.
10 lines
187 B
Python
10 lines
187 B
Python
#!/usr/bin/env python
|
|
|
|
Import('env')
|
|
|
|
env.add_source_files(env.drivers_sources, "*.cpp")
|
|
env.Append(CXXFLAGS=['-DXAUDIO2_ENABLED'])
|
|
env.Append(LINKFLAGS=['xaudio2_8.lib'])
|
|
|
|
Export('env')
|