Reshuffle folder structure

Reshuffle folder structure and update cmake.yml
This commit is contained in:
McMassiveNZ
2022-12-16 23:10:43 +01:00
parent 97a801e4a6
commit bb6eb1b24f
10 changed files with 17 additions and 15 deletions

View File

@@ -17,11 +17,11 @@ OPTION(ENABLE_WARNINGS_AS_ERRORS "Warnings are treated as Errors" ON)
OPTION(ENABLE_STATIC_ANALYSIS "Enable Static Analysis Tools" ON)
OPTION(ENABLE_SANITIZERS "Enable Sanitizer Tools" ON)
set(SCRIPTS_DIR ${CMAKE_CURRENT_LIST_DIR}/scripts)
set(CMAKE_SCRIPTS_DIR ${CMAKE_CURRENT_LIST_DIR}/scripts/cmake)
include(${SCRIPTS_DIR}/compilerwarnings.cmake)
include(${SCRIPTS_DIR}/sanitizers.cmake)
include(${SCRIPTS_DIR}/staticanalysis.cmake)
include(${CMAKE_SCRIPTS_DIR}/compilerwarnings.cmake)
include(${CMAKE_SCRIPTS_DIR}/sanitizers.cmake)
include(${CMAKE_SCRIPTS_DIR}/staticanalysis.cmake)
if (ENABLE_TESTS)
message("Unit Testing Enabled")