From 619e41a1cb3a59e674ca2226c151a5dd781755a9 Mon Sep 17 00:00:00 2001 From: McMassiveNZ <12842622+McMassiveNZ@users.noreply.github.com> Date: Tue, 6 Dec 2022 23:31:18 +0100 Subject: [PATCH] Fix Linux CI Fix case sensitive file name issue on Linux build --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 50107bc..b984eac 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -19,7 +19,7 @@ OPTION(ENABLE_SANITIZERS "Enable Sanitizer Tools" ON) set(SCRIPTS_DIR ${CMAKE_CURRENT_LIST_DIR}/scripts) -include(${SCRIPTS_DIR}/compilerWarnings.cmake) +include(${SCRIPTS_DIR}/compilerwarnings.cmake) include(${SCRIPTS_DIR}/sanitizers.cmake) include(${SCRIPTS_DIR}/staticanalysis.cmake)