mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-24 17:39:00 +08:00
ad5baff2b6
* Generate Imath.pc * update version * add dependency imath minizip-ng * updata version * update version * fix usage * update version
10 lines
436 B
Plaintext
10 lines
436 B
Plaintext
libjpeg-turbo is compatible with built-in implementation-agnostic CMake targets:
|
|
|
|
find_package(JPEG REQUIRED)
|
|
target_include_directories(main PRIVATE JPEG::JPEG)
|
|
|
|
libjpeg-turbo provides CMake targets for the TurboJPEG C API:
|
|
|
|
find_package(libjpeg-turbo CONFIG REQUIRED)
|
|
target_link_libraries(main PRIVATE $<IF:$<TARGET_EXISTS:libjpeg-turbo::turbojpeg>,libjpeg-turbo::turbojpeg,libjpeg-turbo::turbojpeg-static>)
|