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.
7 lines
283 B
Plaintext
7 lines
283 B
Plaintext
To use ffmpeg add the following to your CMake project:
|
|
|
|
find_package(FFMPEG REQUIRED)
|
|
target_include_directories(main PRIVATE ${FFMPEG_INCLUDE_DIRS})
|
|
target_link_directories(main PRIVATE ${FFMPEG_LIBRARY_DIRS})
|
|
target_link_libraries(main PRIVATE ${FFMPEG_LIBRARIES})
|