projects
/
oota-llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
dc6d652
)
Fix header path in CMake. NFC.
author
Pete Cooper
<peter_cooper@apple.com>
Fri, 19 Jun 2015 20:49:02 +0000
(20:49 +0000)
committer
Pete Cooper
<peter_cooper@apple.com>
Fri, 19 Jun 2015 20:49:02 +0000
(20:49 +0000)
The ADDITIONAL_HEADER_DIRS command can be used to tell UIs that a given library
owns certain headers. The path for MCParser was missing MC/ in it.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@240175
91177308
-0d34-0410-b5e6-
96231b3b80d8
lib/MC/MCParser/CMakeLists.txt
patch
|
blob
|
history
diff --git
a/lib/MC/MCParser/CMakeLists.txt
b/lib/MC/MCParser/CMakeLists.txt
index 957c94edc53e9ced32f47d998d9da8e0c8ca4f02..99fdd0167993780f81c43be5503cf260ba2f240f 100644
(file)
--- a/
lib/MC/MCParser/CMakeLists.txt
+++ b/
lib/MC/MCParser/CMakeLists.txt
@@
-10,5
+10,5
@@
add_llvm_library(LLVMMCParser
MCTargetAsmParser.cpp
ADDITIONAL_HEADER_DIRS
- ${LLVM_MAIN_INCLUDE_DIR}/llvm/MCParser
+ ${LLVM_MAIN_INCLUDE_DIR}/llvm/MC
/MC
Parser
)