Add missing include directory
authorMatt Ellis <matell@microsoft.com>
Sat, 27 Jun 2015 04:29:33 +0000 (21:29 -0700)
committerMatt Ellis <matell@microsoft.com>
Sat, 27 Jun 2015 04:31:05 +0000 (21:31 -0700)
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.

src/dlls/dbgshim/CMakeLists.txt

index 664d827..8786d0e 100644 (file)
@@ -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
 )