mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-02 17:46:22 +03:00
The basic implementation of VCPKG as a beta version. By default will be disabled. To enable needs to remove CMake cache and reconfigure with BUILD_USE_VCPKG flag to ON. The current version do not support whole list of 3rd-party, only limited. and VCPKG_ROOT reachable as a CMake or env variable Add vcpkg support for FFmpeg and Jemalloc, including configuration files and patches.
14 lines
291 B
Diff
14 lines
291 B
Diff
diff --git a/fftools/cmdutils.c b/fftools/cmdutils.c
|
|
index fe424b6..2df70df 100644
|
|
--- a/fftools/cmdutils.c
|
|
+++ b/fftools/cmdutils.c
|
|
@@ -60,6 +60,8 @@
|
|
#include <sys/resource.h>
|
|
#endif
|
|
#ifdef _WIN32
|
|
+#define _WIN32_WINNT 0x0502
|
|
+#define WIN32_LEAN_AND_MEAN
|
|
#include <windows.h>
|
|
#endif
|
|
|