diff options
| author | Zachary Turner <zturner@google.com> | 2015-02-11 03:28:02 +0000 |
|---|---|---|
| committer | Zachary Turner <zturner@google.com> | 2015-02-11 03:28:02 +0000 |
| commit | 3bd47cee78afc3aea72ef0da887bf4caa7f685aa (patch) | |
| tree | e0688c6a8b01b56f071348d292411d841b5a6b1f /llvm/lib/ExecutionEngine | |
| parent | 43b2cae82a39dcabdfe56c457789b90babd37a5f (diff) | |
| download | bcm5719-llvm-3bd47cee78afc3aea72ef0da887bf4caa7f685aa.tar.gz bcm5719-llvm-3bd47cee78afc3aea72ef0da887bf4caa7f685aa.zip | |
Use ADDITIONAL_HEADER_DIRS in all LLVM CMake projects.
This allows IDEs to recognize the entire set of header files for
each of the core LLVM projects.
Differential Revision: http://reviews.llvm.org/D7526
Reviewed By: Chris Bieneman
llvm-svn: 228798
Diffstat (limited to 'llvm/lib/ExecutionEngine')
| -rw-r--r-- | llvm/lib/ExecutionEngine/CMakeLists.txt | 3 | ||||
| -rw-r--r-- | llvm/lib/ExecutionEngine/Orc/CMakeLists.txt | 3 |
2 files changed, 6 insertions, 0 deletions
diff --git a/llvm/lib/ExecutionEngine/CMakeLists.txt b/llvm/lib/ExecutionEngine/CMakeLists.txt index d2c33cda1a6..723cae98464 100644 --- a/llvm/lib/ExecutionEngine/CMakeLists.txt +++ b/llvm/lib/ExecutionEngine/CMakeLists.txt @@ -7,6 +7,9 @@ add_llvm_library(LLVMExecutionEngine RTDyldMemoryManager.cpp SectionMemoryManager.cpp TargetSelect.cpp + + ADDITIONAL_HEADER_DIRS + ${LLVM_MAIN_INCLUDE_DIR}/llvm/ExecutionEngine ) add_subdirectory(Interpreter) diff --git a/llvm/lib/ExecutionEngine/Orc/CMakeLists.txt b/llvm/lib/ExecutionEngine/Orc/CMakeLists.txt index 3fadb931200..b0a8445c84d 100644 --- a/llvm/lib/ExecutionEngine/Orc/CMakeLists.txt +++ b/llvm/lib/ExecutionEngine/Orc/CMakeLists.txt @@ -3,4 +3,7 @@ add_llvm_library(LLVMOrcJIT IndirectionUtils.cpp OrcMCJITReplacement.cpp OrcTargetSupport.cpp + + ADDITIONAL_HEADER_DIRS + ${LLVM_MAIN_INCLUDE_DIR}/llvm/ExecutionEngine/Orc ) |

