mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-08 04:07:07 +00:00
81fd0ba8ab
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. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@136643 91177308-0d34-0410-b5e6-96231b3b80d8
14 lines
281 B
CMake
14 lines
281 B
CMake
include_directories( ${CMAKE_CURRENT_BINARY_DIR}/.. ${CMAKE_CURRENT_SOURCE_DIR}/.. )
|
|
|
|
add_llvm_library(LLVMSparcInfo
|
|
SparcTargetInfo.cpp
|
|
)
|
|
|
|
add_llvm_library_dependencies(LLVMSparcInfo
|
|
LLVMMC
|
|
LLVMSupport
|
|
LLVMTarget
|
|
)
|
|
|
|
add_dependencies(LLVMSparcInfo SparcCommonTableGen)
|