mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-26 12:43:36 +01:00
f3fcbe4a9d
This allows to process HTML resources defined in .rc scripts and output them to resulting .res files. Additionally, some infrastructure allowing to output these files is created. This is the first resource type we can operate on. Thanks to Nico Weber for his original work in this area. Differential Revision: reviews.llvm.org/D37283 llvm-svn: 314538
18 lines
315 B
CMake
18 lines
315 B
CMake
set(LLVM_LINK_COMPONENTS
|
|
Option
|
|
Support
|
|
)
|
|
|
|
set(LLVM_TARGET_DEFINITIONS Opts.td)
|
|
|
|
tablegen(LLVM Opts.inc -gen-opt-parser-defs)
|
|
add_public_tablegen_target(RcTableGen)
|
|
|
|
add_llvm_tool(llvm-rc
|
|
llvm-rc.cpp
|
|
ResourceFileWriter.cpp
|
|
ResourceScriptParser.cpp
|
|
ResourceScriptStmt.cpp
|
|
ResourceScriptToken.cpp
|
|
)
|