mirror of
https://github.com/bensuperpc/dockcross.git
synced 2024-11-10 05:07:26 +01:00
7 lines
270 B
Bash
7 lines
270 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
# Always pass the CMAKE_TOOLCHAIN_FILE variable to CMake when inside a
|
||
|
# dockcross environment -- the CMAKE_TOOLCHAIN_FILE environmental variable is
|
||
|
# always set in this context
|
||
|
exec /usr/bin/cmake -DCMAKE_TOOLCHAIN_FILE:FILEPATH=${CMAKE_TOOLCHAIN_FILE} "$@"
|