File tree Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -95,6 +95,11 @@ target_link_libraries(matplot
95
95
# https://cmake.org/cmake/help/v3.14/manual/cmake-compile-features.7.html#requiring-language-standards
96
96
target_compile_features (matplot PUBLIC cxx_std_17 )
97
97
98
+ # Definition to find the proper filesystem library
99
+ if (CXX_FILESYSTEM_IS_EXPERIMENTAL )
100
+ target_compile_definitions (matplot PRIVATE CXX_FILESYSTEM_IS_EXPERIMENTAL )
101
+ endif ()
102
+
98
103
# Hacks to support MSVC
99
104
if (MSVC )
100
105
# World maps require this option because there is so much in the file
@@ -197,7 +202,7 @@ if (BUILD_EXPERIMENTAL_OPENGL_BACKEND)
197
202
endif ()
198
203
199
204
# https://github.com/glfw/glfw
200
- find_package (glfw3 REQUIRED )
205
+ find_package (glfw3 QUIET )
201
206
if (NOT GLFW3_FOUND AND NOT TARGET glfw )
202
207
# Use CPM only if not found, to avoid ODR violations
203
208
# find_package(glfw3 REQUIRE) would suffice if it worked well
You can’t perform that action at this time.
0 commit comments