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 136973d commit e3d4f4dCopy full SHA for e3d4f4d
blifexplorer/CMakeLists.txt
@@ -61,4 +61,11 @@ target_link_libraries(blifexplorer
61
${CMAKE_DL_LIBS}
62
)
63
64
+#Supress IPO link warnings if IPO is enabled
65
+get_target_property(TEST_BLIFEXPLORER_USES_IPO blifexplorer INTERPROCEDURAL_OPTIMIZATION)
66
+if (TEST_BLIFEXPLORER_USES_IPO)
67
+ set_target_properties(blifexplorer PROPERTIES LINK_FLAGS ${IPO_LINK_WARN_SUPRESS_FLAGS})
68
+endif()
69
+
70
71
install(TARGETS blifexplorer DESTINATION bin)
0 commit comments