diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2002-06-10 15:33:49 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2002-06-10 15:33:49 (GMT) |
commit | 781fac21f0e3ff4b12dbda9ef5778c730a8285ed (patch) | |
tree | db4092386eb3ebb6eb0d5e557fe234e90887e893 /Source | |
parent | daaa5f3e79e8470faea0e5614d1eeeb2c7fde033 (diff) | |
download | CMake-781fac21f0e3ff4b12dbda9ef5778c730a8285ed.zip CMake-781fac21f0e3ff4b12dbda9ef5778c730a8285ed.tar.gz CMake-781fac21f0e3ff4b12dbda9ef5778c730a8285ed.tar.bz2 |
BUG: cmake needs it's own directory for includes, so depends work
Diffstat (limited to 'Source')
-rw-r--r-- | Source/CMakeLists.txt | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Source/CMakeLists.txt b/Source/CMakeLists.txt index 815f994..2720c9a 100644 --- a/Source/CMakeLists.txt +++ b/Source/CMakeLists.txt @@ -40,6 +40,7 @@ ${CMake_BINARY_DIR}/Source/cmConfigure.h ) # add the include path to find the .h INCLUDE_DIRECTORIES(${CMake_BINARY_DIR}/Source) +INCLUDE_DIRECTORIES(${CMake_SOURCE_DIR}/Source) # let cmake know it is supposed to use it ADD_DEFINITIONS(-DCMAKE_BUILD_WITH_CMAKE) |