mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-24 03:09:00 +08:00
86c573ec5f
* Update pe-parse to 1.3.0 * Update CI baseline * Update uthenticode to 1.0.6 * Update git-tree hash * Fix ARM64 Windows build * Update git-tree hash Co-authored-by: chausner <chausner@users.noreply.github.com>
14 lines
608 B
Diff
14 lines
608 B
Diff
find_package(Filesystem) fails on arm64 Windows.
|
|
We can remove it as it is only used for tests which are not built in vcpkg.
|
|
diff --git a/CMakeLists.txt b/CMakeLists.txt
|
|
--- a/CMakeLists.txt
|
|
+++ b/CMakeLists.txt
|
|
@@ -15,7 +15,6 @@ endif ()
|
|
include(cmake/compilation_flags.cmake)
|
|
# Greater c++17 filesystem compatibility (like with experimental)
|
|
list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/cmake/modules")
|
|
-find_package(Filesystem COMPONENTS Experimental Final REQUIRED)
|
|
list(APPEND GLOBAL_CXXFLAGS ${DEFAULT_CXX_FLAGS})
|
|
|
|
option(BUILD_SHARED_LIBS "Build Shared Libraries" ON)
|