diff options
author | Andoni Morales Alastruey <ylatuya@gmail.com> | 2012-04-18 15:25:50 +0200 |
---|---|---|
committer | Andoni Morales Alastruey <ylatuya@gmail.com> | 2012-04-18 15:25:50 +0200 |
commit | 499bf83f2276e19dbb517d6b1c07c05961527655 (patch) | |
tree | de0ca615a9dd8b9aa16b980fd40e1b9b70f55042 /config | |
parent | 21ac2033a138dcea6ac67cc4bc862db043b8d275 (diff) |
windows.config: change includes dir path for directx
Diffstat (limited to 'config')
-rw-r--r-- | config/windows.config | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/config/windows.config b/config/windows.config index bb1d3339..88e8a437 100644 --- a/config/windows.config +++ b/config/windows.config @@ -85,9 +85,10 @@ os.environ['PYTHON_INCLUDES'] = '-I%s/include/Python2.7 -I%s/include/Python2.7' os.environ['PYTHON_LIBS'] = '-lpython27 -shrext .pyd' # DirectX and DirectSound -os.environ['DIRECTSOUND_CFLAGS']= '-I%s/include/DirectX' % toolchain_prefix +os.environ['DIRECTSOUND_CFLAGS'] = '-I%s/%s/include/directx' % (toolchain_prefix, host) os.environ['DIRECSOUND_LDFLAGS'] = '-L%s/lib' % toolchain_prefix os.environ['DIRECTX_CFLAGS']= '-I%s/include/DirectX' % toolchain_prefix +os.environ['DIRECTX_CFLAGS'] = '-I%s/%s/include/directx' % (toolchain_prefix, host) os.environ['DIRECTX_LDFLAGS'] = '-L%s/lib' % toolchain_prefix if platform == Platform.WINDOWS: |