diff options
| author | Juan Linietsky | 2016-05-29 12:26:15 -0300 |
|---|---|---|
| committer | Juan Linietsky | 2016-05-29 12:26:15 -0300 |
| commit | 65615c03539305d022abf9ac720726bcaefb1d2f (patch) | |
| tree | 630c63b1df350e43884cf3d6c5823f620d3ce163 /platform/windows/detect.py | |
| parent | 3e8eb396d7cfec8a96efb78719c0556f1beccf68 (diff) | |
| download | godot-65615c03539305d022abf9ac720726bcaefb1d2f.tar.gz godot-65615c03539305d022abf9ac720726bcaefb1d2f.tar.zst godot-65615c03539305d022abf9ac720726bcaefb1d2f.zip | |
fix freetype paths on osx and mingw
Diffstat (limited to 'platform/windows/detect.py')
| -rw-r--r-- | platform/windows/detect.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/platform/windows/detect.py b/platform/windows/detect.py index ed0049b36..97d2461e5 100644 --- a/platform/windows/detect.py +++ b/platform/windows/detect.py @@ -352,8 +352,9 @@ def configure(env): if (env["freetype"]!="no"): env.Append(CCFLAGS=['-DFREETYPE_ENABLED']) - env.Append(CPPPATH=['#tools/freetype']) - env.Append(CPPPATH=['#tools/freetype/freetype/include']) + env.Append(CPPPATH=['#drivers/freetype']) + env.Append(CPPPATH=['#drivers/freetype/freetype/include']) + env["CC"]=mingw_prefix+"gcc" env['AS']=mingw_prefix+"as" |
