mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-01 16:33:37 +01:00
38c8c22382
TableGen deps introduced in r136023. This completes the fixing that dgregor started in r136621. Sorry for missing these the first time around. This should fix some of the random race-condition failures people are still seeing with CMake. llvm-svn: 136643
14 lines
276 B
CMake
14 lines
276 B
CMake
include_directories( ${CMAKE_CURRENT_BINARY_DIR}/.. ${CMAKE_CURRENT_SOURCE_DIR}/.. )
|
|
|
|
add_llvm_library(LLVMMipsInfo
|
|
MipsTargetInfo.cpp
|
|
)
|
|
|
|
add_llvm_library_dependencies(LLVMMipsInfo
|
|
LLVMMC
|
|
LLVMSupport
|
|
LLVMTarget
|
|
)
|
|
|
|
add_dependencies(LLVMMipsInfo MipsCommonTableGen)
|