2
0
mirror of https://github.com/telegramdesktop/tdesktop synced 2025-08-22 02:07:24 +00:00
2019-11-08 11:30:20 +03:00

16 lines
307 B
CMake

add_library(external_crash_reports INTERFACE IMPORTED GLOBAL)
add_subdirectory(breakpad)
if (WIN32)
target_link_libraries(external_crash_reports
INTERFACE
external_breakpad
)
else()
target_link_libraries(external_crash_reports
INTERFACE
external_crashpad
)
endif()