[c-host] added initial crash handler stub

This commit is contained in:
Geoffrey McRae
2019-04-11 11:34:22 +10:00
parent d8915dbfc9
commit 611216286e
6 changed files with 154 additions and 3 deletions

View File

@@ -5,9 +5,11 @@ include_directories(
${PROJECT_SOURCE_DIR}/include
)
add_library(lg_common STATIC
src/debug.c
)
if(WIN32)
add_library(lg_common STATIC src/crash.windows.c)
else()
add_library(lg_common STATIC src/crash.linux.c)
endif()
#target_link_libraries(lg_common
#)