summaryrefslogtreecommitdiff
path: root/functions.cmake
diff options
context:
space:
mode:
authorRama Krishnan Raghupathy <ramarag@microsoft.com>2016-07-18 19:40:05 -0700
committerRama Krishnan Raghupathy <ramarag@microsoft.com>2016-07-25 18:42:30 -0700
commit00e3695c1b51248f58f6b7e1f24f83a791a3b79e (patch)
tree1af2da04bf3816d3a6172b52a84201387a5e2673 /functions.cmake
parentc358f77a1ddcf31475450c40af64ad115259e622 (diff)
downloadcoreclr-00e3695c1b51248f58f6b7e1f24f83a791a3b79e.tar.gz
coreclr-00e3695c1b51248f58f6b7e1f24f83a791a3b79e.tar.bz2
coreclr-00e3695c1b51248f58f6b7e1f24f83a791a3b79e.zip
Arm64: Debugger
Instruction emulation for Break Points Debugger::FuncEvalSetup NativeWalker ExceptionHijack Exception intercept Managed Return Value
Diffstat (limited to 'functions.cmake')
-rw-r--r--functions.cmake6
1 files changed, 3 insertions, 3 deletions
diff --git a/functions.cmake b/functions.cmake
index a61687e7a6..bbc571b46d 100644
--- a/functions.cmake
+++ b/functions.cmake
@@ -47,10 +47,10 @@ endfunction(convert_to_absolute_path)
#Preprocess exports definition file
function(preprocess_def_file inputFilename outputFilename)
get_compile_definitions(PREPROCESS_DEFINITIONS)
-
+ get_include_directories(ASM_INCLUDE_DIRECTORIES)
add_custom_command(
OUTPUT ${outputFilename}
- COMMAND ${CMAKE_CXX_COMPILER} /P /EP /TC ${PREPROCESS_DEFINITIONS} /Fi${outputFilename} ${inputFilename}
+ COMMAND ${CMAKE_CXX_COMPILER} ${ASM_INCLUDE_DIRECTORIES} /P /EP /TC ${PREPROCESS_DEFINITIONS} /Fi${outputFilename} ${inputFilename}
DEPENDS ${inputFilename}
COMMENT "Preprocessing ${inputFilename}"
)
@@ -185,4 +185,4 @@ function(_install)
if(NOT DEFINED CLR_CROSS_COMPONENTS_BUILD)
install(${ARGV})
endif()
-endfunction() \ No newline at end of file
+endfunction()