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

add_definitions(-DFEATURE_CORECLR)

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

if(WIN32)
else()
  add_compile_options(-Wno-delete-non-virtual-dtor)
endif(WIN32)

add_library_clr(mscorpe STATIC
  ${MSCORPE_SOURCES}
)