mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 19:23:23 +01:00
84f566c2fb
This reorganisation prevents us from cluttering up the top-level lib directory with more driver libraries such as llvm-dlltool (see D29892). llvm-svn: 302995
9 lines
238 B
CMake
9 lines
238 B
CMake
set(LLVM_TARGET_DEFINITIONS Options.td)
|
|
tablegen(LLVM Options.inc -gen-opt-parser-defs)
|
|
add_public_tablegen_target(LibOptionsTableGen)
|
|
|
|
add_llvm_library(LLVMLibDriver
|
|
LibDriver.cpp
|
|
)
|
|
add_dependencies(LLVMLibDriver LibOptionsTableGen)
|