Cmake build: Do not overwrite the cache if nothing changes.

One of possibly more places .
This commit is contained in:
Kornel Benko 2020-06-17 00:26:51 +02:00
parent 0d84f0b9fd
commit 5f0ca8efe4

View File

@ -140,9 +140,11 @@ LYX_OPTION(ENABLE_URLTESTS "Enable for URL tests" OFF ALL)
LYX_OPTION(ENABLE_EXPORT_TESTS "Enable for export tests" OFF ALL)
LYX_OPTION(ENABLE_KEYTESTS "Enable for keytests" OFF ALL)
if (NOT CMAKE_VERSION VERSION_LESS "3.17")
LYX_OPTION(ENABLE_VALGRIND_TESTS "Enable for tests involving valgrind" OFF ALL)
LYX_OPTION(ENABLE_VALGRIND_TESTS "Enable for tests involving valgrind" OFF ALL)
else()
unset(LYX_ENABLE_VALGRIND_TESTS CACHE)
if (LYX_ENABLE_VALGRIND_TESTS)
unset(LYX_ENABLE_VALGRIND_TESTS CACHE)
endif()
endif()
LYX_OPTION(ASAN "Use address sanitizer" OFF ALL)
#LYX_COMBO(USE_FILEDIALOG "Use native or QT file dialog" QT NATIVE)