13 lines
220 B
Plaintext
13 lines
220 B
Plaintext
|
PLATFORM="darwin"
|
||
|
CC="cc"
|
||
|
CXX="c++"
|
||
|
|
||
|
# Write entries into the cache file before building cmake.
|
||
|
write_cache()
|
||
|
{
|
||
|
cat > CMakeCache.txt <<EOF
|
||
|
BUILD_TESTING:BOOL=OFF
|
||
|
CURSES_LIBRARY:FILEPATH=/usr/local/lib/libncurses.a
|
||
|
EOF
|
||
|
}
|