mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-22 07:32:48 +00:00
80533040bc
for llvmc2 incomplete. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@57076 91177308-0d34-0410-b5e6-96231b3b80d8
32 lines
844 B
CMake
32 lines
844 B
CMake
set(LLVM_LINK_COMPONENTS support system)
|
|
set(LLVM_REQUIRES_EH 1)
|
|
|
|
macro(tgen ofn)
|
|
add_custom_command(OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/${ofn}
|
|
COMMAND tblgen ${ARGN} -I ${CMAKE_CURRENT_SOURCE_DIR} -I ${CMAKE_SOURCE_DIR}/lib/Target -I ${llvm_include_path} ${CMAKE_CURRENT_SOURCE_DIR}/Graph.td -o ${ofn}
|
|
DEPENDS
|
|
tblgen
|
|
${llvm_include_path}/llvm/CompilerDriver/Common.td
|
|
${llvm_include_path}/llvm/CompilerDriver/Tools.td
|
|
COMMENT "Building ${ofn}..."
|
|
)
|
|
endmacro(tgen ofn)
|
|
|
|
# tgen(AutoGenerated.inc -gen-llvmc)
|
|
|
|
# add_custom_target(AutoGenerated_ct echo Tablegenning
|
|
# DEPENDS
|
|
# ${CMAKE_CURRENT_BINARY_DIR}/AutoGenerated.inc
|
|
# )
|
|
|
|
include_directories( ${CMAKE_CURRENT_BINARY_DIR} )
|
|
|
|
add_llvm_tool(llvmc2
|
|
Action.cpp
|
|
CompilationGraph.cpp
|
|
llvmc.cpp
|
|
Plugin.cpp
|
|
)
|
|
|
|
# add_dependencies(llvmc2 AutoGenerated_ct)
|