Skip to content
Snippets Groups Projects
Commit 6a2cf7da authored by Markus Blatt's avatar Markus Blatt
Browse files

[release,cmake] Use uppercase for CMake type in variables.

parent 4120a7f3
Branches
Tags
No related merge requests found
......@@ -29,13 +29,13 @@ dune_common_options_am2cmake()
# Check for --disable-gxx0xcheck
echo $PARAMS | grep \\-\\-disable-gxx0xcheck > /dev/null
if test "$?" -eq 0 ; then
CMAKE_PARAMS="$CMAKE_PARAMS -DDISABLE_GXX0XCHECK:Bool=TRUE"
CMAKE_PARAMS="$CMAKE_PARAMS -DDISABLE_GXX0XCHECK:BOOL=TRUE"
fi
# Check for --disable-gxx0xcheck
echo $PARAMS | grep \\-\\-disable-tr1-headers > /dev/null
if test "$?" -eq 0 ; then
CMAKE_PARAMS="$CMAKE_PARAMS -DDISABLE_TR1_HEADERS:Bool=TRUE"
CMAKE_PARAMS="$CMAKE_PARAMS -DDISABLE_TR1_HEADERS:BOOL=TRUE"
fi
# Check for --with-minimal-debug-level
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment