From 21229470cea01f82986cc18ba993492d3197ebde Mon Sep 17 00:00:00 2001 From: PixelyIon Date: Sun, 21 Mar 2021 20:34:59 +0530 Subject: [PATCH] Disable All Warnings from TZCode This just disables all compiler warnings generated while compiling TZCode as those are irrelevant while compiling Skyline and need to be tackled in that repository. --- app/CMakeLists.txt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/CMakeLists.txt b/app/CMakeLists.txt index eba3b1e7..7749c3e7 100644 --- a/app/CMakeLists.txt +++ b/app/CMakeLists.txt @@ -17,7 +17,9 @@ if (uppercase_CMAKE_BUILD_TYPE STREQUAL "RELEASE") endif () add_subdirectory("libraries/fmt") + add_subdirectory("libraries/tzcode") +target_compile_options(tzcode PRIVATE -Wno-everything) add_subdirectory("libraries/oboe") include_directories("libraries/oboe/include")