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.
16 lines
635 B
Diff
16 lines
635 B
Diff
diff --git a/configure b/configure
|
|
index ee26559..f2c83b7 100755
|
|
--- a/configure
|
|
+++ b/configure
|
|
@@ -4496,6 +4496,10 @@ msvc_common_flags(){
|
|
-march=*) ;;
|
|
-lz) echo zlib.lib ;;
|
|
-lx264) echo libx264.lib ;;
|
|
+ -lx265) echo libx265.lib ;;
|
|
+ -lmp3lame) echo libmp3lame.lib ;;
|
|
+ -liconv) echo iconv.lib ;;
|
|
+ -lm) ;;
|
|
-lstdc++) ;;
|
|
-l*) echo ${flag#-l}.lib ;;
|
|
-LARGEADDRESSAWARE) echo $flag ;;
|