mirror of
https://github.com/tomahawk-player/tomahawk.git
synced 2025-04-22 00:42:04 +02:00
85 lines
2.8 KiB
CMake
85 lines
2.8 KiB
CMake
PROJECT(breakpad)
|
|
cmake_minimum_required(VERSION 2.8)
|
|
|
|
set( CMAKE_MODULE_PATH
|
|
${CMAKE_MODULE_PATH}
|
|
${CMAKE_CURRENT_SOURCE_DIR}/cmake/modules
|
|
)
|
|
|
|
if( CMAKE_COMPILER_IS_GNUCXX )
|
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=gnu++98")
|
|
endif()
|
|
|
|
if(${CMAKE_BUILD_TYPE} MATCHES "Release")
|
|
add_definitions(-DNDEBUG)
|
|
endif(${CMAKE_BUILD_TYPE} MATCHES "Release")
|
|
|
|
IF(UNIX)
|
|
IF(APPLE)
|
|
SET( breakpadSources
|
|
client/mac/crash_generation/crash_generation_client.cc
|
|
client/mac/crash_generation/crash_generation_server.cc
|
|
client/mac/handler/breakpad_nlist_64.cc
|
|
client/mac/handler/dynamic_images.cc
|
|
client/mac/handler/exception_handler.cc
|
|
client/mac/handler/minidump_generator.cc
|
|
client/mac/handler/protected_memory_allocator.cc
|
|
# client/mac/Framework/Breakpad.mm
|
|
# client/mac/Framework/OnDemandServer.mm
|
|
common/mac/file_id.cc
|
|
common/mac/macho_id.cc
|
|
common/mac/macho_reader.cc
|
|
common/mac/macho_utilities.cc
|
|
common/mac/macho_walker.cc
|
|
common/mac/string_utilities.cc
|
|
common/md5.cc
|
|
common/mac/dump_syms.mm
|
|
common/mac/MachIPC.mm
|
|
common/mac/SimpleStringDictionary.mm
|
|
common/mac/bootstrap_compat.cc
|
|
)
|
|
ELSE(APPLE)
|
|
SET( breakpadSources
|
|
common/linux/safe_readlink.cc
|
|
client/linux/crash_generation/crash_generation_client.cc
|
|
client/linux/crash_generation/crash_generation_server.cc
|
|
client/linux/minidump_writer/minidump_writer.cc
|
|
client/linux/minidump_writer/linux_dumper.cc
|
|
client/linux/handler/exception_handler.cc
|
|
common/linux/dump_symbols.cc
|
|
common/linux/file_id.cc
|
|
common/linux/libcurl_wrapper.cc
|
|
common/linux/google_crashdump_uploader.cc
|
|
common/linux/synth_elf.cc
|
|
common/linux/http_upload.cc
|
|
common/linux/guid_creator.cc
|
|
common/linux/elf_symbols_to_module.cc
|
|
client/minidump_file_writer.cc
|
|
client/linux/minidump_writer/linux_ptrace_dumper.cc
|
|
common/linux/memory_mapped_file.cc
|
|
client/linux/log/log.cc
|
|
)
|
|
ENDIF(APPLE)
|
|
|
|
LIST(APPEND breakpadSources
|
|
client/minidump_file_writer.cc
|
|
common/convert_UTF.c
|
|
common/string_conversion.cc
|
|
)
|
|
ENDIF(UNIX)
|
|
|
|
IF(WIN32)
|
|
ADD_DEFINITIONS( -DUNICODE -fshort-wchar )
|
|
SET( breakpadSources
|
|
client/windows/handler/exception_handler.cc
|
|
client/windows/crash_generation/crash_generation_client.cc
|
|
common/windows/guid_string.cc
|
|
)
|
|
ENDIF(WIN32)
|
|
|
|
|
|
INCLUDE_DIRECTORIES(.)
|
|
ADD_DEFINITIONS( -fPIC )
|
|
ADD_LIBRARY( tomahawk_breakpad STATIC ${breakpadSources} )
|
|
TARGET_LINK_LIBRARIES( tomahawk_breakpad )
|