From 00ed8ad83aedd917b3cf515e1f8759691cfa036e Mon Sep 17 00:00:00 2001 From: Mateusz Pusz Date: Thu, 26 Sep 2019 23:08:33 +0200 Subject: [PATCH] Missing CMake change added to fix the compilation --- src/CMakeLists.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 4a1b2f56..52f68e6c 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -63,8 +63,9 @@ target_include_directories(units if(CMAKE_COMPILER_IS_GNUCC OR CMAKE_COMPILER_IS_GNUCXX) target_compile_options(units INTERFACE - -Wno-literal-suffix -fconcepts + -Wno-literal-suffix + -Wno-non-template-friend ) endif() add_library(mp::units ALIAS units)