diff options
author | Matt Ellis <matell@microsoft.com> | 2015-06-26 21:29:33 -0700 |
---|---|---|
committer | Matt Ellis <matell@microsoft.com> | 2015-06-26 21:31:05 -0700 |
commit | b5c5dbc829ac17f8e56b4371e1dc94f88e85c25f (patch) | |
tree | 87e67949e200b463b0c011a8a15eb84a7020d5ea | |
parent | 4704616110fb8090da4e746921843fd020f272e0 (diff) | |
download | coreclr-b5c5dbc829ac17f8e56b4371e1dc94f88e85c25f.tar.gz coreclr-b5c5dbc829ac17f8e56b4371e1dc94f88e85c25f.tar.bz2 coreclr-b5c5dbc829ac17f8e56b4371e1dc94f88e85c25f.zip |
Add missing include directory
dbgshim.cpp wants to include debugshim.h but the directory that holds
this file was not on the include path when buidling with cmake. Adding
this directory in line with what we had for the razzle driven internal
TFS build.
-rw-r--r-- | src/dlls/dbgshim/CMakeLists.txt | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/dlls/dbgshim/CMakeLists.txt b/src/dlls/dbgshim/CMakeLists.txt index 664d827467..8786d0ee84 100644 --- a/src/dlls/dbgshim/CMakeLists.txt +++ b/src/dlls/dbgshim/CMakeLists.txt @@ -1,6 +1,8 @@ add_definitions(-DFEATURE_NO_HOST) add_definitions(-DSELF_NO_HOST) +include_directories(${CLR_DIR}/src/debug/shim) + set(DBGSHIM_SOURCES dbgshim.cpp ) |