mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-28 03:59:02 +08:00
43b4ba9e55
Signed-off-by: msclock <msclock@qq.com> Co-authored-by: Cheney Wang <38240633+Cheney-W@users.noreply.github.com> Co-authored-by: Kai Pastor <dg0yt@darc.de> Co-authored-by: Javier Matos Denizac <javier.matosd@gmail.com>
29 lines
909 B
Diff
29 lines
909 B
Diff
diff --git a/CMakeLists.txt b/CMakeLists.txt
|
|
index f8ff6f0..855b78d 100644
|
|
--- a/CMakeLists.txt
|
|
+++ b/CMakeLists.txt
|
|
@@ -194,15 +194,22 @@ include( cmake/BuildOptions.cmake )
|
|
include( cmake/CompilerOptions.cmake )
|
|
|
|
# dependencies
|
|
-include( cmake/Dependencies.cmake )
|
|
+# include( cmake/Dependencies.cmake )
|
|
+find_package(7zip CONFIG REQUIRED)
|
|
+add_library(7-zip ALIAS 7zip::7zip)
|
|
|
|
# 7-zip source code
|
|
target_link_libraries( ${LIB_TARGET} PRIVATE 7-zip )
|
|
|
|
# filesystem library (needed if std::filesystem is not available)
|
|
+if(0)
|
|
if( ghc_filesystem_ADDED )
|
|
target_link_libraries( ${LIB_TARGET} PRIVATE ghc_filesystem )
|
|
endif()
|
|
+else()
|
|
+ find_package(ghc_filesystem CONFIG REQUIRED)
|
|
+ target_link_libraries(${LIB_TARGET} PRIVATE ghcFilesystem::ghc_filesystem )
|
|
+endif()
|
|
|
|
# public includes
|
|
target_include_directories( ${LIB_TARGET} PUBLIC "$<BUILD_INTERFACE:${PROJECT_SOURCE_DIR}/include>"
|