mirror of https://gitee.com/bigwinds/arangodb
fixed dependencies in case USE_PRECOMPILED_V8
This commit is contained in:
parent
fdff42e9cf
commit
5e027818c5
|
@ -42,7 +42,11 @@ if (USE_BOOST_UNITTESTS)
|
|||
${SYSTEM_LIBRARIES}
|
||||
)
|
||||
|
||||
add_dependencies(basics_suite v8_build)
|
||||
if (NOT USE_PRECOMPILED_V8)
|
||||
add_dependencies(basics_suite v8_build)
|
||||
else ()
|
||||
add_dependencies(basics_suite)
|
||||
endif ()
|
||||
endif ()
|
||||
|
||||
################################################################################
|
||||
|
@ -63,5 +67,9 @@ if (USE_BOOST_UNITTESTS)
|
|||
${SYSTEM_LIBRARIES}
|
||||
)
|
||||
|
||||
add_dependencies(geo_suite v8_build)
|
||||
if (NOT USE_PRECOMPILED_V8)
|
||||
add_dependencies(geo_suite v8_build)
|
||||
else ()
|
||||
add_dependencies(geo_suite)
|
||||
endif ()
|
||||
endif ()
|
||||
|
|
|
@ -310,7 +310,11 @@ install(
|
|||
|
||||
install_config(arangod)
|
||||
|
||||
add_dependencies(arangod ev zlibstatic v8_build)
|
||||
if (NOT USE_PRECOMPILED_V8)
|
||||
add_dependencies(arangod ev zlibstatic v8_build)
|
||||
else ()
|
||||
add_dependencies(arangod ev zlibstatic)
|
||||
endif ()
|
||||
|
||||
################################################################################
|
||||
## arango-dfdb
|
||||
|
|
|
@ -79,7 +79,11 @@ install(
|
|||
|
||||
install_config(arangodump)
|
||||
|
||||
add_dependencies(arangodump zlibstatic v8_build) # v8_build includes ICU build
|
||||
if (NOT USE_PRECOMPILED_V8)
|
||||
add_dependencies(arangodump zlibstatic v8_build) # v8_build includes ICU build
|
||||
else ()
|
||||
add_dependencies(arangodump zlibstatic)
|
||||
endif ()
|
||||
|
||||
################################################################################
|
||||
## arangoimp
|
||||
|
@ -119,7 +123,11 @@ install(
|
|||
|
||||
install_config(arangoimp)
|
||||
|
||||
add_dependencies(arangoimp zlibstatic v8_build) # v8_build includes ICU build
|
||||
if (NOT USE_PRECOMPILED_V8)
|
||||
add_dependencies(arangoimp zlibstatic v8_build) # v8_build includes ICU build
|
||||
else ()
|
||||
add_dependencies(arangoimp zlibstatic) # v8_build includes ICU build
|
||||
endif ()
|
||||
|
||||
################################################################################
|
||||
## arangorestore
|
||||
|
@ -158,7 +166,11 @@ install(
|
|||
|
||||
install_config(arangorestore)
|
||||
|
||||
add_dependencies(arangorestore zlibstatic v8_build) # v8_build includes ICU build
|
||||
if (NOT USE_PRECOMPILED_V8)
|
||||
add_dependencies(arangorestore zlibstatic v8_build) # v8_build includes ICU build
|
||||
else ()
|
||||
add_dependencies(arangorestore zlibstatic) # v8_build includes ICU build
|
||||
endif ()
|
||||
|
||||
################################################################################
|
||||
## arangosh
|
||||
|
@ -202,7 +214,11 @@ install(
|
|||
|
||||
install_config(arangosh)
|
||||
|
||||
add_dependencies(arangosh zlibstatic v8_build)
|
||||
if (NOT USE_PRECOMPILED_V8)
|
||||
add_dependencies(arangosh zlibstatic v8_build)
|
||||
else ()
|
||||
add_dependencies(arangosh zlibstatic)
|
||||
endif ()
|
||||
|
||||
################################################################################
|
||||
## foxx-manager
|
||||
|
|
Loading…
Reference in New Issue