We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 81c143a commit 58dfd76Copy full SHA for 58dfd76
src/core/CMakeLists.txt
@@ -26,6 +26,9 @@ target_link_libraries(PennerOptimizationCoreLib PUBLIC
26
target_compile_definitions(PennerOptimizationCoreLib PUBLIC
27
SPDLOG_ACTIVE_LEVEL=SPDLOG_LEVEL_DEBUG
28
)
29
-target_compile_options(PennerOptimizationCoreLib PRIVATE
30
- -Wall -Wpedantic -Wextra -Werror
31
-)
+# TODO Fix for multiprecision
+if (NOT USE_MULTIPRECISION)
+ target_compile_options(PennerOptimizationCoreLib PRIVATE
32
+ -Wall -Wpedantic -Wextra -Werror
33
+ )
34
+endif()
0 commit comments