mirror of
https://github.com/mudita/MuditaOS.git
synced 2026-07-20 13:04:21 -04:00
Added info about product, OS version and commit hash to crashdump filename to simplify analysis of the crashdumps without corresponding logs available.
16 lines
335 B
CMake
16 lines
335 B
CMake
add_library(crashdump-metadata-store STATIC)
|
|
|
|
target_include_directories(crashdump-metadata-store
|
|
PUBLIC
|
|
$<BUILD_INTERFACE:${CMAKE_CURRENT_LIST_DIR}>
|
|
)
|
|
|
|
target_sources(crashdump-metadata-store
|
|
PUBLIC
|
|
CrashdumpMetadataStore.cpp
|
|
)
|
|
|
|
if (${ENABLE_TESTS})
|
|
add_subdirectory(tests)
|
|
endif()
|