1
0
Fork 0
mirror of https://github.com/tobast/libunwind-eh_elf.git synced 2024-12-03 19:57:39 +01:00

Shared lib was added

This commit is contained in:
Alexander Esilevich 2010-09-15 00:00:49 +07:00
parent 91d4e65da7
commit 5fd973cfe2

View file

@ -131,3 +131,7 @@ endif()
add_library(unwind STATIC ${libunwind_sources_common} ${libunwind_sources_${target}})
set_property(TARGET unwind PROPERTY COMPILE_DEFINITIONS_DEBUG DEBUG)
add_library(unwind-shared SHARED ${libunwind_sources_common} ${libunwind_sources_${target}})
set_property(TARGET unwind-shared PROPERTY COMPILE_DEFINITIONS_DEBUG DEBUG)
set_property(TARGET unwind-shared PROPERTY OUTPUT_NAME "unwind")