cling/tools/driver/CMakeLists.txt
Axel Naumann 0dea9a66f6 Updated location of RequiredSymbols.cpp
git-svn-id: http://root.cern.ch/svn/root/trunk@46986 27541ba8-7e3a-0410-8455-c3a389f83636
2012-11-01 19:38:15 +00:00

29 lines
396 B
CMake

#set( LLVM_LINK_COMPONENTS
# jit
# linker
# native
# )
add_cling_executable(cling
cling.cpp)
target_link_libraries(cling
clingUserInterface
clingMetaProcessor
clingInterpreter
clingUtils
clangFrontend
clangSerialization
clangDriver
clangCodeGen
clangParse
clangSema
clangAnalysis
clangAST
clangLex
clangBasic
)
install(TARGETS cling
RUNTIME DESTINATION bin)