[CMake] Add option to suppress CMake regeneration (STR #3215).
This option is marked as advanced and only available with CMake >= 3.0. git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@10721 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
This commit is contained in:
parent
5f3f1c8bc6
commit
f5bf727e37
@ -319,3 +319,10 @@ else()
|
||||
set(FLTK_XDBE_FOUND FALSE)
|
||||
endif(OPTION_USE_XDBE AND HAVE_XDBE_H)
|
||||
|
||||
#######################################################################
|
||||
# prior to CMake 3.0 this feature was buggy
|
||||
if(NOT CMAKE_VERSION VERSION_LESS 3.0.0)
|
||||
option(CMAKE_SUPPRESS_REGENERATION
|
||||
"suppress rules to re-run CMake on rebuild" OFF)
|
||||
mark_as_advanced(CMAKE_SUPPRESS_REGENERATION)
|
||||
endif(NOT CMAKE_VERSION VERSION_LESS 3.0.0)
|
||||
|
Loading…
x
Reference in New Issue
Block a user