mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2024-11-23 22:00:10 +00:00
53880b8cb9
The `intrinsics_gen` target exists in the CMake exports since r309389 (see LLVMConfig.cmake.in), hence projects can depend on `intrinsics_gen` even it they are built separately from LLVM. Reviewed By: MaskRay, JDevlieghere Differential Revision: https://reviews.llvm.org/D83454
20 lines
302 B
CMake
20 lines
302 B
CMake
set(LLVM_TARGET_DEFINITIONS Options.td)
|
|
tablegen(LLVM Options.inc -gen-opt-parser-defs)
|
|
add_public_tablegen_target(MinGWOptionsTableGen)
|
|
|
|
add_lld_library(lldMinGW
|
|
Driver.cpp
|
|
|
|
LINK_COMPONENTS
|
|
Option
|
|
Support
|
|
|
|
LINK_LIBS
|
|
lldCOFF
|
|
lldCommon
|
|
|
|
DEPENDS
|
|
MinGWOptionsTableGen
|
|
intrinsics_gen
|
|
)
|