We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 5b72583 + e02d642 commit 6371cd4Copy full SHA for 6371cd4
CMakeLists.txt
@@ -58,6 +58,20 @@ FetchContent_Declare(
58
)
59
FetchContent_MakeAvailable(SocksServer)
60
61
+if(WIN32)
62
+ FetchContent_Declare(
63
+ CoffPacker
64
+ GIT_REPOSITORY https://github.com/maxDcb/COFFPacker.git
65
+ GIT_TAG master
66
+ )
67
68
+ CoffLoader
69
+ GIT_REPOSITORY https://github.com/maxDcb/COFFLoader.git
70
+ GIT_TAG main
71
72
+ FetchContent_MakeAvailable(CoffPacker CoffLoader)
73
+endif()
74
+
75
# Header-only / source dependencies placed in thirdParty for relative includes
76
set(BASE64_SRC_DIR ${CMAKE_SOURCE_DIR}/thirdParty/base64)
77
FetchContent_Declare(
0 commit comments