From 8ed7fc46611d065a382c628151d209db0f238b0a Mon Sep 17 00:00:00 2001 From: huzhiqiang <912790387@qq.com> Date: Tue, 29 Oct 2019 23:59:44 +0800 Subject: [PATCH] remove dynamic library method from ci_build.sh (#2275) remove dynamic library compiling from `ci_build.sh build_test_server` --- lite/api/CMakeLists.txt | 1 - 1 file changed, 1 deletion(-) diff --git a/lite/api/CMakeLists.txt b/lite/api/CMakeLists.txt index 3401231b70..4e768731d2 100644 --- a/lite/api/CMakeLists.txt +++ b/lite/api/CMakeLists.txt @@ -15,7 +15,6 @@ if ((NOT LITE_ON_TINY_PUBLISH) AND (LITE_WITH_X86 OR ARM_TARGET_OS STREQUAL "and target_sources(paddle_full_api_shared PUBLIC ${__lite_cc_files} paddle_api.cc light_api.cc cxx_api.cc cxx_api_impl.cc light_api_impl.cc) add_dependencies(paddle_full_api_shared op_list_h kernel_list_h framework_proto) target_link_libraries(paddle_full_api_shared framework_proto) - add_dependencies(lite_compile_deps paddle_full_api_shared) if(LITE_WITH_X86) add_dependencies(paddle_full_api_shared xxhash) target_link_libraries(paddle_full_api_shared xxhash) -- GitLab