update cmake modules dir

This commit is contained in:
McMassiveNZ
2023-07-19 22:18:18 +02:00
parent 7f76c83875
commit 6d317cf89c
3 changed files with 6 additions and 6 deletions

View File

@@ -13,12 +13,12 @@ OPTION(ENABLE_WARNINGS_AS_ERRORS "Warnings are treated as Errors" ON)
OPTION(ENABLE_STATIC_ANALYSIS "Enable Static Analysis Tools" ON) OPTION(ENABLE_STATIC_ANALYSIS "Enable Static Analysis Tools" ON)
OPTION(ENABLE_SANITIZERS "Enable Sanitizer Tools" ON) OPTION(ENABLE_SANITIZERS "Enable Sanitizer Tools" ON)
set(CMAKE_SCRIPTS_DIR ${CMAKE_CURRENT_LIST_DIR}/cmake) list(APPEND CMAKE_MODULE_PATH ${CMAKE_CURRENT_SOURCE_DIR}/cmake)
include(${CMAKE_SCRIPTS_DIR}/compilerwarnings.cmake) include(compilerwarnings)
include(${CMAKE_SCRIPTS_DIR}/sanitizers.cmake) include(sanitizers)
include(${CMAKE_SCRIPTS_DIR}/staticanalysis.cmake) include(staticanalysis)
include(${CMAKE_SCRIPTS_DIR}/cpm.cmake) include(cpm)
if (ENABLE_TESTS) if (ENABLE_TESTS)
message("-- Unit Testing Enabled") message("-- Unit Testing Enabled")

View File

@@ -1,4 +1,4 @@
include(${CMAKE_SCRIPTS_DIR}/googletest.cmake) include(gtest)
add_executable( add_executable(
blank-slate-test blank-slate-test