vcpkg/ports/wcslib/usage
Simon Perkins 4a45104152
[wcslib] Add wcslib port (#31320)
* Initial commit

* Add usage and install

* Correct library  name

* Try configure install

* Disable more features

* Remove redundant lines

* Remove CMakeLists.txt

* --without-cfitsio

* Clean up vcpkg.json and disable windows

* Format the manifest

* Add versions

* Update homepage and download URL

* Fix version

* Update usage

* Update version
2023-05-16 10:45:18 -07:00

7 lines
267 B
Plaintext

wcslib can be imported via CMake FindPkgConfig module:
find_package(PkgConfig)
pkg_check_modules(wcslib REQUIRED IMPORTED_TARGET wcslib)
target_include_directories(main PRIVATE PkgConfig::wcslib)
target_link_libraries(main PRIVATE PkgConfig::wcslib)