Skip to content

Commit 58dfd76

Browse files
committed
Removed warning errors in multiprecision
1 parent 81c143a commit 58dfd76

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

src/core/CMakeLists.txt

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,9 @@ target_link_libraries(PennerOptimizationCoreLib PUBLIC
2626
target_compile_definitions(PennerOptimizationCoreLib PUBLIC
2727
SPDLOG_ACTIVE_LEVEL=SPDLOG_LEVEL_DEBUG
2828
)
29-
target_compile_options(PennerOptimizationCoreLib PRIVATE
30-
-Wall -Wpedantic -Wextra -Werror
31-
)
29+
# TODO Fix for multiprecision
30+
if (NOT USE_MULTIPRECISION)
31+
target_compile_options(PennerOptimizationCoreLib PRIVATE
32+
-Wall -Wpedantic -Wextra -Werror
33+
)
34+
endif()

0 commit comments

Comments
 (0)