Add missing dependency.
This commit is contained in:
parent
daeaa6d9fb
commit
1cb36481ba
@ -463,7 +463,6 @@ if (TARGET clang-headers)
|
||||
endif()
|
||||
|
||||
add_subdirectory(lib)
|
||||
add_subdirectory(tools)
|
||||
|
||||
if( CLING_INCLUDE_TESTS )
|
||||
add_subdirectory(test)
|
||||
@ -485,6 +484,8 @@ if( CLING_INCLUDE_TESTS )
|
||||
endif()
|
||||
endif()
|
||||
|
||||
add_subdirectory(tools)
|
||||
|
||||
option(CLING_INCLUDE_DOCS "Generate build targets for the Cling docs."
|
||||
${LLVM_INCLUDE_DOCS})
|
||||
if( CLING_INCLUDE_DOCS )
|
||||
|
@ -7,6 +7,10 @@
|
||||
#-------------------------------------------------------------------------------
|
||||
|
||||
add_cling_library(clingDemoPlugin SHARED DemoPlugin.cpp)
|
||||
if (TARGET check-cling)
|
||||
# Make sure if we are running the testsuite to build clingDemoPlugin before.
|
||||
add_dependencies(check-cling clingDemoPlugin)
|
||||
endif()
|
||||
|
||||
set_target_properties(clingDemoPlugin PROPERTIES LIBRARY_OUTPUT_DIRECTORY ".")
|
||||
if(APPLE)
|
||||
|
Loading…
x
Reference in New Issue
Block a user