mirror of
https://github.com/Gericom/teak-llvm.git
synced 2025-06-20 20:15:49 -04:00

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)
|