summaryrefslogtreecommitdiff
path: root/src/debug/dbgutil/CMakeLists.txt
blob: 1c0d49a24ec625a93e79c927286badf7304565ca (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
if(WIN32)
  #use static crt
  add_definitions(-MT)
endif(WIN32)

set(CMAKE_INCLUDE_CURRENT_DIR ON)

set(DBGUTIL_SOURCES
    dbgutil.cpp
)

if(CLR_CMAKE_PLATFORM_UNIX)
    add_compile_options(-fPIC)
endif(CLR_CMAKE_PLATFORM_UNIX)

add_library_clr(dbgutil STATIC ${DBGUTIL_SOURCES})