mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-24 06:59:07 +08:00
80f8da23a8
* Generate Imath.pc * update version * add dependency imath minizip-ng * updata version * add usage * update version * add pc * update version * add pc * update version
11 lines
442 B
Plaintext
11 lines
442 B
Plaintext
the package readline can be used under windows via:
|
|
|
|
find_package(unofficial-readline-win32 CONFIG REQUIRED)
|
|
target_link_libraries(main PRIVATE unofficial::readline-win32::readline)
|
|
|
|
The package readline can be imported via the CMake FindPkgConfig module:
|
|
|
|
find_package(PkgConfig REQUIRED)
|
|
pkg_check_modules(readline REQUIRED IMPORTED_TARGET readline)
|
|
target_link_libraries(main PRIVATE PkgConfig::readline)
|