18 lines
412 B
Plaintext
18 lines
412 B
Plaintext
PLATFORM="darwin"
|
|
CC="cc"
|
|
CXX="c++"
|
|
WX_PREFIX=/Users/andy/vtk/wx
|
|
WX_RESOURCES=${WX_PREFIX}/lib/libwx_mac-2.3.rsrc
|
|
|
|
# Write entries into the cache file before building cmake.
|
|
write_cache()
|
|
{
|
|
cat > CMakeCache.txt <<EOF
|
|
BUILD_TESTING:BOOL=ON
|
|
CURSES_LIBRARY:FILEPATH=/usr/local/lib/libncurses.a
|
|
CMAKE_BUILD_WX_DIALOG:BOOL=ON
|
|
CMAKE_WX_CONFIG:FILEPATH=${WX_PREFIX}/bin/wx-config
|
|
CMAKE_VERBOSE_MAKEFILE:BOOL=TRUE
|
|
EOF
|
|
}
|