21 lines
399 B
Plaintext
21 lines
399 B
Plaintext
PLATFORM="hpux-static"
|
|
CC="cc"
|
|
CXX="aCC"
|
|
|
|
# Write entries into the cache file before building cmake.
|
|
WriteCMakeCache()
|
|
{
|
|
BINDIR=`pwd`
|
|
|
|
${CAT} > UserMakeRules.cmake <<EOF
|
|
SET(CMAKE_DL_LIBS "")
|
|
EOF
|
|
|
|
${CAT} > CMakeCache.txt <<EOF
|
|
BUILD_TESTING:BOOL=OFF
|
|
CMAKE_EXE_LINKER_FLAGS:STRING=-ldld -Wl,-a,archive
|
|
CMAKE_USER_MAKE_RULES_OVERRIDE:STRING=${BINDIR}/UserMakeRules.cmake
|
|
CMAKE_SKIP_RPATH:BOOL=1
|
|
EOF
|
|
}
|