Source Level Debugger - debugger library interface

- interface to debugger dynamic library
- code is included when source level debugger header exists,
otherwise implementation is exluded from build
- unit tests do not load real dynamic library,
instead test version (DebbugerLibrary) of OsLibrary is used.

Change-Id: Id3229c77963352e8001043ee41b7d48c6b180a59
This commit is contained in:
Hoppe, Mateusz
2018-04-20 14:44:14 +02:00
committed by sys_ocldev
parent b79be3dafb
commit efda64eb4a
27 changed files with 849 additions and 10 deletions

View File

@ -37,12 +37,12 @@ set(CLOC_SRCS_LIB
if(WIN32)
list(APPEND CLOC_SRCS_LIB
${IGDRCL_SOURCE_DIR}/runtime/os_interface/windows/os_library.cpp
${IGDRCL_SOURCE_DIR}/runtime/os_interface/windows/options.cpp
${IGDRCL_SOURCE_DIR}/runtime/dll/windows/options.cpp
)
else()
list(APPEND CLOC_SRCS_LIB
${IGDRCL_SOURCE_DIR}/runtime/os_interface/linux/os_library.cpp
${IGDRCL_SOURCE_DIR}/runtime/os_interface/linux/options.cpp
${IGDRCL_SOURCE_DIR}/runtime/dll/linux/options.cpp
)
endif()