9 lines
314 B
Bash
9 lines
314 B
Bash
|
#!/bin/bash
|
||
|
cd $(dirname "$0")
|
||
|
|
||
|
# Apply the patch file that makes it easier to build freetype.
|
||
|
# Note that this doesn't work all that well on windows.
|
||
|
cat ../lib/freetype_patch.diff | git -C ../lib/freetype apply
|
||
|
|
||
|
QUIK_ADDITIONAL_CMAKE=-DBUILD_SHARED_LIBS\=true DST=$PWD ../sh/quik_build_native.sh ../lib/freetype
|