mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-02-01 05:01:59 +01:00
4ec77fc2c7
A PE COFF spec compliant import library generator. Intended to be used with mingw-w64. Supports: PE COFF spec (section 8, Import Library Format) PE COFF spec (Aux Format 3: Weak Externals) Reviewed By: ruiu Differential Revision: https://reviews.llvm.org/D29892 This reapplies rL308329, which was reverted in rL308374 llvm-svn: 308379
10 lines
251 B
CMake
10 lines
251 B
CMake
set(LLVM_TARGET_DEFINITIONS Options.td)
|
|
tablegen(LLVM Options.inc -gen-opt-parser-defs)
|
|
add_public_tablegen_target(DllOptionsTableGen)
|
|
|
|
add_llvm_library(LLVMDlltoolDriver
|
|
DlltoolDriver.cpp
|
|
)
|
|
|
|
add_dependencies(LLVMDlltoolDriver DllOptionsTableGen)
|