Commit d920c8dc authored by Dominik Charousset's avatar Dominik Charousset

Check for DEFAULT_CMAKE_GENERATOR in configure

parent 93febc18
...@@ -134,6 +134,9 @@ configure () ...@@ -134,6 +134,9 @@ configure ()
if [ -n "$5" ]; then if [ -n "$5" ]; then
cmake -G "$5" $CMakeCacheEntries $sourcedir cmake -G "$5" $CMakeCacheEntries $sourcedir
elif [ -n "$DEFAULT_CMAKE_GENERATOR" ]; then
# parse custom environment variable
cmake -G "$DEFAULT_CMAKE_GENERATOR" $CMakeCacheEntries $sourcedir
else else
cmake $CMakeCacheEntries $sourcedir cmake $CMakeCacheEntries $sourcedir
fi fi
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment