1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-23 11:13:28 +01:00

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 b907fa377d
commit 41cf104f91

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
)