vcpkg/ports/qhull/usage
Kai Pastor 61ae96ea06
[qhull] Fix copyright, pc files, cmake usage (#23129)
* Modernize portfile

* Install COPYING.txt for copyright

* Create uniform pc file names for all configurations

* Provide uniform and documented CMake config

* Update versions

* Use version field

* Update versions

* CI
2022-02-22 13:08:24 -08:00

10 lines
271 B
Plaintext

The package qhull provides CMake targets:
# Reentrant C API
find_package(Qhull CONFIG REQUIRED)
target_link_libraries(main PRIVATE Qhull::qhull_r)
# C++ API
find_package(Qhull CONFIG REQUIRED)
target_link_libraries(main PRIVATE Qhull::qhullcpp)