CMake/Utilities/Release/config_Linux

19 lines
425 B
Plaintext
Raw Normal View History

2003-01-16 02:42:41 +03:00
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
2003-01-16 02:42:41 +03:00
CMAKE_EXE_LINKER_FLAGS:STRING=-static
CMAKE_SKIP_RPATH:BOOL=1
CMAKE_VERBOSE_MAKEFILE:BOOL=TRUE
2003-01-16 02:42:41 +03:00
CURSES_LIBRARY:FILEPATH=${CURSES_LIBRARY}
FORM_LIBRARY:FILEPATH=${FORM_LIBRARY}
EOF
}