Disable IPO when debugging

This commit is contained in:
Eric Mertens 2022-11-18 23:33:30 -08:00
parent c6879b4359
commit ed07924b0a

View File

@ -6,6 +6,7 @@ project(aocpp
LANGUAGES C CXX
)
if(NOT CMAKE_BUILD_TYPE MATCHES "^Debug$")
include(CheckIPOSupported)
check_ipo_supported(RESULT result OUTPUT output)
if(result)
@ -13,6 +14,7 @@ if(result)
else()
message(WARNING "IPO is not supported: ${output}")
endif()
endif()
find_package(PkgConfig)
pkg_check_modules(GMP REQUIRED IMPORTED_TARGET gmpxx)