Skip to content

Commit a8483f5

Browse files
committed
Default new spell checking backends to on
1 parent aaa72f0 commit a8483f5

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

indra/CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,8 +77,8 @@ else ()
7777
endif ()
7878

7979
# Spell checking backend
80-
cmake_dependent_option(USE_NSSPELLCHECKER "Use the native macOS NSSpellChecker instead of Hunspell" OFF "DARWIN" OFF)
81-
cmake_dependent_option(USE_WINSPELLCHECK "Use the native Windows Spell Checking API instead of Hunspell" OFF "WIN32" OFF)
80+
cmake_dependent_option(USE_NSSPELLCHECKER "Use the native macOS NSSpellChecker instead of Hunspell" ON "APPLE" OFF)
81+
cmake_dependent_option(USE_WINSPELLCHECK "Use the native Windows Spell Checking API instead of Hunspell" ON "WIN32" OFF)
8282

8383
# Configure crash reporting
8484
option(RELEASE_CRASH_REPORTING "Enable use of crash reporting in release builds" OFF)

indra/cmake/Copy3rdPartyLibs.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ if(WINDOWS)
8888
endif()
8989
elseif(DARWIN)
9090
set(vcpkg_lib_dir "${_VCPKG_INSTALLED_DIR}/${VCPKG_TARGET_TRIPLET}/lib")
91-
if (NOT USE_NSSPELLCHECKER)
91+
if (USE_NSSPELLCHECKER)
9292
set(release_libs "")
9393
else()
9494
set(release_libs

0 commit comments

Comments
 (0)