Fix header path in CMake. NFC.

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.

llvm-svn: 240175
This commit is contained in:
Pete Cooper 2015-06-19 20:49:02 +00:00
parent 00302df3fe
commit 90b05b52fa
1 changed files with 1 additions and 1 deletions

View File

@ -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/MCParser
)