mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-12-11 17:19:07 +08:00
0a277597a1
* [armadillo] Update to 11.4.3 * Fixup pkgconfig * Add vcpkg cmake wrapper * Update versions * [ensmallen] Update and fix * Add vcpkg version requirement
11 lines
365 B
Plaintext
11 lines
365 B
Plaintext
armadillo provides CMake targets:
|
|
|
|
find_package(Armadillo CONFIG REQUIRED)
|
|
target_link_libraries(main PRIVATE armadillo)
|
|
|
|
armadillo is compatible with built-in CMake targets:
|
|
|
|
find_package(Armadillo REQUIRED)
|
|
target_include_directories(main PRIVATE ${ARMADILLO_INCLUDE_DIRS})
|
|
target_link_libraries(main PRIVATE ${ARMADILLO_LIBRARIES})
|