summaryrefslogtreecommitdiff
path: root/src/dlls/mscorpe/CMakeLists.txt
blob: 6a8919326b2a7a89a9eed5ed1d7379f1b57ab874 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
project(mscorpe)

add_definitions(-DFEATURE_CORECLR)

set(MSCORPE_SOURCES
  iceefilegen.cpp
  ceefilegenwriter.cpp
  pewriter.cpp
  ceefilegenwritertokens.cpp
)

if(NOT WIN32)
  add_compile_options($<$<COMPILE_LANGUAGE:CXX>:-Wno-delete-non-virtual-dtor>)
endif()

add_library_clr(mscorpe STATIC
  ${MSCORPE_SOURCES}
)