Remove hardcoded paths in unwind target

In most cases they match defaults now, but it is too hard to override when one needs to (alternative builds)
This commit is contained in:
Konstantin Podshumok 2019-10-23 20:33:40 +03:00 committed by GitHub
parent bb1c1d0ed9
commit d1a19d26e8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -30,9 +30,4 @@ target_include_directories(unwind SYSTEM BEFORE PUBLIC $<BUILD_INTERFACE:${LIBUN
target_compile_definitions(unwind PRIVATE -D_LIBUNWIND_NO_HEAP=1 -D_DEBUG -D_LIBUNWIND_IS_NATIVE_ONLY)
target_compile_options(unwind PRIVATE -fno-exceptions -funwind-tables -fno-sanitize=all -nostdinc++ -fno-rtti)
install(
TARGETS unwind
EXPORT global
LIBRARY DESTINATION lib
ARCHIVE DESTINATION lib
)
install(TARGETS unwind EXPORT global)