18 lines
403 B
Plaintext
18 lines
403 B
Plaintext
PLATFORM="x86-linux"
|
|
CURSES_LIBRARY="-Wl,-Bstatic -lcurses -Wl,-Bdynamic"
|
|
FORM_LIBRARY="/usr/lib/libform.a"
|
|
CC="gcc304s"
|
|
CXX="c++304s"
|
|
|
|
# Write entries into the cache file before building cmake.
|
|
write_cache()
|
|
{
|
|
cat > CMakeCache.txt <<EOF
|
|
BUILD_TESTING:BOOL=ON
|
|
CMAKE_SKIP_RPATH:BOOL=1
|
|
CMAKE_VERBOSE_MAKEFILE:BOOL=TRUE
|
|
CURSES_LIBRARY:FILEPATH=${CURSES_LIBRARY}
|
|
FORM_LIBRARY:FILEPATH=${FORM_LIBRARY}
|
|
EOF
|
|
}
|