summaryrefslogtreecommitdiff
path: root/src/dlls/mscorrc/full/CMakeLists.txt
blob: 30d93385ecf4c7ba6df26c0021202d1642f9de80 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
add_definitions(-DFX_VER_INTERNALNAME_STR=mscorrc.debug.dll)

if(WIN32)

  add_library_clr(mscorrc.debug SHARED
    ../include.rc
  )

  install_clr (mscorrc.debug) 

else()
  build_resources(${CMAKE_CURRENT_SOURCE_DIR}/../include.rc mscorrc_debug TARGET_CPP_FILE)

  add_library_clr(mscorrc_debug STATIC
    ${TARGET_CPP_FILE}
  )

endif(WIN32)