Add missing BUILD_TESTING option to BuildOptions.cmake

This commit is contained in:
S David 2024-05-18 10:58:12 -04:00
parent b3e12fab00
commit 6e58064d03

View File

@ -1,8 +1,8 @@
# BuildOptions.cmake # BuildOptions.cmake
# License: Unlicense (https://unlicense.org) # License: Unlicense (https://unlicense.org)
option(USE_CCACHE "Use ccache compiler cache to speed up builds" ON) option(USE_CCACHE "Use ccache compiler cache to speed up builds" ON)
option(USE_MOLD "Use the mold/sold parallel linker for faster builds" ON) option(USE_MOLD "Use the mold/sold parallel linker for faster builds" ON)
option(BUILD_TESTING "Build unit tests" ON)
function(use_ccache) function(use_ccache)
if (USE_CCACHE) if (USE_CCACHE)