mirror of
https://github.com/Z3Prover/z3
synced 2025-04-07 09:55:19 +00:00
[CMake] Fix incorrect variable name.
This commit is contained in:
parent
71fff8ffa2
commit
236875c3ab
|
@ -105,7 +105,7 @@ else()
|
||||||
message(STATUS "CMAKE_BUILD_TYPE is not set. Setting default")
|
message(STATUS "CMAKE_BUILD_TYPE is not set. Setting default")
|
||||||
message(STATUS "The available build types are: ${available_build_types}")
|
message(STATUS "The available build types are: ${available_build_types}")
|
||||||
set(CMAKE_BUILD_TYPE RelWithDebInfo CACHE String
|
set(CMAKE_BUILD_TYPE RelWithDebInfo CACHE String
|
||||||
"Options are ${build_types}"
|
"Options are ${available_build_types}"
|
||||||
FORCE)
|
FORCE)
|
||||||
# Provide drop down menu options in cmake-gui
|
# Provide drop down menu options in cmake-gui
|
||||||
set_property(CACHE CMAKE_BUILD_TYPE PROPERTY STRINGS ${available_build_types})
|
set_property(CACHE CMAKE_BUILD_TYPE PROPERTY STRINGS ${available_build_types})
|
||||||
|
|
Loading…
Reference in a new issue