mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-25 23:11:17 +08:00
e2b22a2ae5
* [liblas] use supports expression * Fix linkage and license * Drop pointless stuff * Simplify cleanup, minor fixes * Fix exported config * Add tools feature * Install usage file * Update versions * Fix usage * Update versions * Add Windows prefix to usage * Update versions Co-authored-by: Leander Schulten <Leander.Schulten@rwth-aachen.de>
10 lines
289 B
Plaintext
10 lines
289 B
Plaintext
liblas provides CMake targets:
|
|
|
|
# C API
|
|
find_package(libLAS CONFIG REQUIRED)
|
|
target_link_libraries(main PRIVATE $<$<PLATFORM_ID:Windows>:lib>las_c)
|
|
|
|
# C++ API
|
|
find_package(libLAS CONFIG REQUIRED)
|
|
target_link_libraries(main PRIVATE $<$<PLATFORM_ID:Windows>:lib>las)
|