From 6c8187324edaa1e607f6f71d55a7b599e77f322f Mon Sep 17 00:00:00 2001 From: Alexis Maiquez Date: Fri, 10 Sep 2021 15:51:05 +0200 Subject: [PATCH] - removed -fpermissive from the C++ flags compiler as it was screwing up the compilation Signed-off-by: Alexis Maiquez --- CMakeLists.txt | 1 - 1 file changed, 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index b2539da..c30bba0 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -2,7 +2,6 @@ cmake_minimum_required(VERSION 3.0) project(wallengine) set(CMAKE_CXX_STANDARD 17) -set(CMAKE_CXX_FLAGS "-fpermissive") set(CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/CMakeModules") set(OpenGL_GL_PREFERENCE "LEGACY")