19 lines
425 B
Plaintext
19 lines
425 B
Plaintext
PLATFORM="x86-linux-static"
|
|
CURSES_LIBRARY="/usr/lib/libcurses.a"
|
|
FORM_LIBRARY="/usr/lib/libform.a"
|
|
CC="gcc"
|
|
CXX="c++"
|
|
|
|
# Write entries into the cache file before building cmake.
|
|
write_cache()
|
|
{
|
|
cat > CMakeCache.txt <<EOF
|
|
BUILD_TESTING:BOOL=ON
|
|
CMAKE_EXE_LINKER_FLAGS:STRING=-static
|
|
CMAKE_SKIP_RPATH:BOOL=1
|
|
CMAKE_VERBOSE_MAKEFILE:BOOL=TRUE
|
|
CURSES_LIBRARY:FILEPATH=${CURSES_LIBRARY}
|
|
FORM_LIBRARY:FILEPATH=${FORM_LIBRARY}
|
|
EOF
|
|
}
|