vcpkg/ports/braft/fix-glog.patch
Jia Yue Hua 683c1dfd2d
[glog] update to 0.7.0 (#37071)
- [X] Changes comply with the [maintainer
guide](https://github.com/microsoft/vcpkg-docs/blob/main/vcpkg/contributing/maintainer-guide.md)
- [X] SHA512s are updated for each updated download
- [ ] ~The "supports" clause reflects platforms that may be fixed by
this new version~
- [ ] ~Any fixed [CI
baseline](https://github.com/microsoft/vcpkg/blob/master/scripts/ci.baseline.txt)
entries are removed from that file.~
- [ ] ~Any patches that are no longer applied are deleted from the
port's directory.~
- [X] The version database is fixed by rerunning `./vcpkg x-add-version
--all` and committing the result.
- [X] Only one version is added to each modified port's versions file.
2024-03-05 02:23:38 -08:00

48 lines
1.6 KiB
Diff

diff --git a/CMakeLists.txt b/CMakeLists.txt
index c88b0a2..bd3b74f 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -55,12 +55,8 @@ if ((NOT GFLAGS_INCLUDE_PATH) OR (NOT GFLAGS_LIB))
endif()
if(BRPC_WITH_GLOG)
- find_path(GLOG_INCLUDE_PATH NAMES glog/logging.h)
- find_library(GLOG_LIB NAMES glog)
- if((NOT GLOG_INCLUDE_PATH) OR (NOT GLOG_LIB))
- message(FATAL_ERROR "Fail to find glog")
- endif()
- include_directories(${GLOG_INCLUDE_PATH})
+ find_package(glog CONFIG REQUIRED)
+ set(GLOG_LIB glog::glog)
endif()
if(LEVELDB_WITH_SNAPPY)
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt
index ff435a2..4e7591b 100644
--- a/src/CMakeLists.txt
+++ b/src/CMakeLists.txt
@@ -10,6 +10,9 @@ include_directories(${CMAKE_CURRENT_BINARY_DIR})
include_directories(${CMAKE_SOURCE_DIR}/src)
add_library(OBJ_LIB OBJECT ${SOURCES})
+target_include_directories(OBJ_LIB PUBLIC $<INSTALL_INTERFACE:include>)
+target_link_libraries(OBJ_LIB PUBLIC ${DYNAMIC_LIB})
+
set_property(TARGET ${OBJ_LIB} PROPERTY POSITION_INDEPENDENT_CODE 1)
if (BUILD_SHARED_LIBS)
@@ -18,13 +21,6 @@ else()
add_library(braft-static STATIC $<TARGET_OBJECTS:OBJ_LIB>)
endif()
-if (BUILD_SHARED_LIBS)
-target_include_directories(braft-shared PUBLIC $<INSTALL_INTERFACE:include>)
-target_link_libraries(braft-shared PUBLIC ${DYNAMIC_LIB})
-else()
-target_include_directories(braft-static PUBLIC $<INSTALL_INTERFACE:include>)
-target_link_libraries(braft-static PUBLIC ${DYNAMIC_LIB})
-endif()
if (NOT BUILD_SHARED_LIBS)
SET_TARGET_PROPERTIES(braft-static PROPERTIES OUTPUT_NAME braft CLEAN_DIRECT_OUTPUT 1)