summaryrefslogtreecommitdiff
path: root/src/ilasm
diff options
context:
space:
mode:
authorJacek Blaszczynski <biosciencenow@outlook.com>2018-09-25 19:11:26 +0200
committerAaron Robinson <arobins@microsoft.com>2018-09-25 10:11:26 -0700
commit659af58047a949ed50d11101708538d2e87f2568 (patch)
tree49f3c207ac7622a0e24d65a00b84c731a3e86344 /src/ilasm
parent1496647a946279908acd8d03210ac3ad114204d2 (diff)
downloadcoreclr-659af58047a949ed50d11101708538d2e87f2568.tar.gz
coreclr-659af58047a949ed50d11101708538d2e87f2568.tar.bz2
coreclr-659af58047a949ed50d11101708538d2e87f2568.zip
Add header files to ildasm, ilasm vcxproj (#20052)
Diffstat (limited to 'src/ilasm')
-rw-r--r--src/ilasm/CMakeLists.txt18
1 files changed, 17 insertions, 1 deletions
diff --git a/src/ilasm/CMakeLists.txt b/src/ilasm/CMakeLists.txt
index 9e99d02bb2..e67267a42a 100644
--- a/src/ilasm/CMakeLists.txt
+++ b/src/ilasm/CMakeLists.txt
@@ -24,7 +24,24 @@ set(ILASM_SOURCES
assembler.cpp
prebuilt/asmparse.cpp
)
+
+set(ILASM_HEADERS
+ asmenum.h
+ asmman.hpp
+ asmparse.h
+ asmtemplates.h
+ assembler.h
+ binstr.h
+ class.hpp
+ ilasmpch.h
+ method.hpp
+ nvpair.h
+ typar.hpp
+)
+
if(WIN32)
+ list(APPEND ILASM_SOURCES ${ILASM_HEADERS})
+
set(ILASM_RESOURCES Native.rc)
add_definitions(-DFX_VER_INTERNALNAME_STR=ilasm.exe)
endif(WIN32)
@@ -81,4 +98,3 @@ else()
endif(CLR_CMAKE_PLATFORM_UNIX)
install_clr(ilasm)
-