CMake: Remove unused tablegenning code from tools/llvmc2/driver.

llvm-svn: 59333
This commit is contained in:
Oscar Fuentes 2008-11-14 23:59:50 +00:00
parent c381841e99
commit 49df826e30
1 changed files with 0 additions and 22 deletions

View File

@ -1,31 +1,9 @@
set(LLVM_LINK_COMPONENTS support system)
set(LLVM_REQUIRES_EH 1)
macro(tgen ofn)
add_custom_command(OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/${ofn}
COMMAND ${LLVM_TABLEGEN} ${ARGN} -I ${CMAKE_CURRENT_SOURCE_DIR} -I ${CMAKE_SOURCE_DIR}/lib/Target -I ${LLVM_MAIN_INCLUDE_DIR} ${CMAKE_CURRENT_SOURCE_DIR}/Graph.td -o ${ofn}
DEPENDS
tblgen
${LLVM_MAIN_INCLUDE_DIR}/llvm/CompilerDriver/Common.td
${LLVM_MAIN_INCLUDE_DIR}/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)