0dea9a66f6
git-svn-id: http://root.cern.ch/svn/root/trunk@46986 27541ba8-7e3a-0410-8455-c3a389f83636
29 lines
396 B
CMake
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)
|