33 lines · plain
1set(LLVM_LINK_COMPONENTS2 Object3 Option4 Support5 TargetParser6 )7 8set(LLVM_TARGET_DEFINITIONS Opts.td)9tablegen(LLVM Opts.inc -gen-opt-parser-defs)10add_public_tablegen_target(RcOptsTableGen)11 12set(LLVM_TARGET_DEFINITIONS WindresOpts.td)13tablegen(LLVM WindresOpts.inc -gen-opt-parser-defs)14add_public_tablegen_target(WindresOptsTableGen)15 16add_llvm_tool(llvm-rc17 llvm-rc.cpp18 ResourceFileWriter.cpp19 ResourceScriptCppFilter.cpp20 ResourceScriptParser.cpp21 ResourceScriptStmt.cpp22 ResourceScriptToken.cpp23 DEPENDS24 WindresOptsTableGen25 GENERATE_DRIVER26 )27 28add_llvm_tool_symlink(llvm-windres llvm-rc)29 30if(LLVM_INSTALL_BINUTILS_SYMLINKS)31 add_llvm_tool_symlink(windres llvm-rc)32endif()33