mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-27 19:49:01 +08:00
4a45104152
* 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
7 lines
267 B
Plaintext
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)
|