We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3aa2d31 commit a696435Copy full SHA for a696435
CMakeLists.txt
@@ -342,7 +342,13 @@ add_subdirectory(include/fcl)
342
343
set(PKG_DESC "Flexible Collision Library")
344
345
+if(WIN32)
346
+# It's not clear what is necessary to make C++17 and eigen play together nicely
347
+# on windows. TODO: FIgure this out.
348
+set(CMAKE_CXX_STANDARD 14)
349
+else()
350
set(CMAKE_CXX_STANDARD 17)
351
+endif()
352
353
configure_file(fcl.pc.in fcl.pc @ONLY)
354
0 commit comments