From 6dc0d71a1c1e72568250b8976f3c160aea7919c6 Mon Sep 17 00:00:00 2001 From: rjindael Date: Sat, 8 Jul 2023 16:23:34 -0700 Subject: [PATCH] ignore attribute warnings --- CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index eb9f3b0..2162768 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -9,6 +9,7 @@ option(COMPILE_STUDIO "Compile the RNR studio" ON) option(COMPILE_SERVER "Compile the RNR server" ON) set(DEPENDENCIES_DIR ${CMAKE_SOURCE_DIR}/Dependencies) +set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wno-attributes") # Ignore attribute warnings generated by Luau find_package(Boost REQUIRED) find_package(cglm REQUIRED CONFIG)