mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-03-07 22:40:44 +00:00
added libraries: opus flac libsndfile updated: libvorbis libogg openal - Everything works as expected for now. Bare in mind libsndfile needed the check for whether or not it could find the xiph libraries removed in order for this to work.
8 lines
195 B
Python
8 lines
195 B
Python
def FlagsForFile(filename, **kwargs):
|
|
return {
|
|
'flags': [
|
|
'-x', 'c',
|
|
'-g', '-Wall', '-Wextra',
|
|
'-D_REENTRANT', '-D__NO_MATH_INLINES', '-fsigned-char'
|
|
],
|
|
}
|