summaryrefslogtreecommitdiff
path: root/src/debug/shim/CMakeLists.txt
blob: 28b7f624c55994cc50b1d2c5e2438aaff18480b5 (plain)
1
2
3
4
5
6
7
8
9
10
11
if(WIN32)
  #use static crt
  add_definitions(-MT) 
  add_definitions(-DHOST_IS_WINDOWS_OS)
endif(WIN32)

set(DEBUGSHIM_SOURCES
  debugshim.cpp
)

add_library_clr(debugshim STATIC ${DEBUGSHIM_SOURCES})