mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-24 07:09:06 +08:00
61ae96ea06
* 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
10 lines
271 B
Plaintext
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)
|