mirror of
https://gitee.com/milvus-io/milvus.git
synced 2024-12-05 05:18:52 +08:00
6a770e5c38
Make knowhere compile independently 1. Make knowhere compile independently * Add gtest, arrow, and some other libraries to index. * Add cache, log and some other files to knowhere. * Add CMakeLists files to index's thirdparty. 2. Modified the compilation content of knowhere * Delete some content of compile library. * Add IMPORTED_GLOBAL property to faiss. 3. Change the compilation location of some libraries * Make OpenBLas compiled in thirdpartycore.cmake. * Make faiss compiled in thirdparty/CMakeLists. Change the content of knowhere/CMakeLists 1. Change easyloggingpp and nlohmann into index/thirdparty. 2. Change MILVUS_THIRDPARTY_SRC into KNOWHERE_THIRDPARTY_SRC. Delete FindOpenBLAS 1. Delete Openblas.cmake. 2. The search task for openBlas is assigned to ThirdpartyCore. 3. Some changes were made to build.sh in index. Fix the openBLas compilation problem Delete the if-else in compilation of faiss; Now when complie faiss, it will find the Openblas as we wish. Fix some problem: 1. delete arrow 2. set openblas_source to AUTO 3. change a include_dir 4. delete MKL 5. delete the CMakeLists in index/utils,cache,log Change variable build_test to knowhere_build_test in index/build.sh Change the include location of GNUInstallDirs set CMAKE_INSTALL_LIBDIR Resolves: milvus-io#5183 See also: milvus-io#6604 Signed-off-by: Shen Zhi <m13120163046@163.com>
59 lines
2.2 KiB
CMake
59 lines
2.2 KiB
CMake
#-------------------------------------------------------------------------------
|
|
# Copyright (C) 2019-2020 Zilliz. All rights reserved.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance
|
|
# with the License. You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software distributed under the License
|
|
# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
|
|
# or implied. See the License for the specific language governing permissions and limitations under the License.
|
|
#-------------------------------------------------------------------------------
|
|
# Using default c and cxx compiler in our build tree
|
|
# Thirdpart cxx and c flags
|
|
add_compile_options( -O3 -fPIC -Wno-error -fopenmp )
|
|
|
|
if ( NOT KNOWHERE_VERBOSE_THIRDPARTY_BUILD )
|
|
set( EP_LOG_OPTIONS LOG_CONFIGURE 1 LOG_BUILD 1 LOG_INSTALL 1 LOG_DOWNLOAD 1 )
|
|
else ()
|
|
set( EP_LOG_OPTIONS )
|
|
endif ()
|
|
|
|
set( MAKE_BUILD_ARGS "-j6" )
|
|
|
|
include( FetchContent )
|
|
set( FETCHCONTENT_BASE_DIR ${MILVUS_BINARY_DIR}/3rdparty_download )
|
|
set( FETCHCONTENT_QUIET OFF )
|
|
|
|
if( CUSTOM_THIRDPARTY_DOWNLOAD_PATH )
|
|
set( THIRDPARTY_DOWNLOAD_PATH ${CUSTOM_THIRDPARTY_DOWNLOAD_PATH} )
|
|
else()
|
|
set( THIRDPARTY_DOWNLOAD_PATH ${CMAKE_BINARY_DIR}/3rdparty_download/download )
|
|
endif()
|
|
message( STATUS "Thirdparty downloaded file path: ${THIRDPARTY_DOWNLOAD_PATH}" )
|
|
# ----------------------------------------------------------------------
|
|
# Find pthreads
|
|
|
|
set( THREADS_PREFER_PTHREAD_FLAG ON )
|
|
find_package( Threads REQUIRED )
|
|
|
|
# ****************************** Thirdparty googletest ***************************************
|
|
if ( MILVUS_BUILD_TESTS )
|
|
add_subdirectory( gtest )
|
|
add_subdirectory( google_benchmark )
|
|
endif()
|
|
|
|
|
|
# ****************************** Thirdparty yaml ***************************************
|
|
add_subdirectory( yaml-cpp )
|
|
|
|
# ****************************** Thirdparty opentracing ***************************************
|
|
if ( MILVUS_WITH_OPENTRACING )
|
|
add_subdirectory( opentracing )
|
|
endif()
|
|
|
|
add_subdirectory( protobuf )
|
|
add_subdirectory( fiu )
|
|
add_subdirectory( boost_ext )
|