You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
OpenTTD-patches/cmake/FindDemangle.cmake

19 lines
373 B
CMake

include(CheckCXXSourceCompiles)
set(CMAKE_REQUIRED_FLAGS "")
check_cxx_source_compiles("
#include <cxxabi.h>
int main() {
int status = -1;
char *demangled = abi::__cxa_demangle(\"test\", 0, 0, &status);
return 0;
}"
DEMANGLE_FOUND
)
if (DEMANGLE_FOUND)
add_compile_options(
-DWITH_DEMANGLE
)
endif (DEMANGLE_FOUND)