kicad-developers team mailing list archive
-
kicad-developers team
-
Mailing list archive
-
Message #41543
[PATCH] Remove GLM version check (no longer needed with C++14)
---
CMakeLists.txt | 4 ----
1 file changed, 4 deletions(-)
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 77912e9e9..27d319c05 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -565,10 +565,6 @@ endif()
# Find GLM library, required
#
find_package( GLM 0.9.5.1 REQUIRED )
-if( GLM_VERSION MATCHES "0.9.9.3" AND CMAKE_CXX_COMPILER_ID MATCHES "GNU")
- MESSAGE( FATAL_ERROR "\nGLM version ${GLM_VERSION} is incompatible with KiCad using GCC.\n"
- "Please downgrade to GLM version 0.9.9.2 or older or use clang instead" )
-endif()
add_definitions( -DGLM_FORCE_CTOR_INIT )
Follow ups
References