9 lines
183 B
Plaintext
9 lines
183 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
export ROOT="<root>"
|
||
|
export MINGW="/home/<user>/mingw/cross_win32"
|
||
|
|
||
|
export PATH="$MINGW/bin:$PATH"
|
||
|
|
||
|
exec /usr/bin/cmake -DCMAKE_TOOLCHAIN_FILE="$ROOT/toolchain.cmake" "$@"
|