mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-24 02:48:59 +08:00
0d79ec5c39
* [iceoryx] Add new port * Update version database * [iceoryx] Fix portfile * [iceoryx] Update version * [iceoryx] Update features * [iceoryx] Update version * Add usage text. Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>
15 lines
685 B
Plaintext
15 lines
685 B
Plaintext
iceoryx provides CMake targets:
|
|
|
|
find_package(iceoryx_binding_c CONFIG REQUIRED)
|
|
target_link_libraries(main PRIVATE iceoryx_binding_c::iceoryx_binding_c)
|
|
|
|
find_package(iceoryx_hoofs CONFIG REQUIRED)
|
|
target_link_libraries(main PRIVATE iceoryx_hoofs::iceoryx_hoofs
|
|
iceoryx_hoofs::iceoryx_platform)
|
|
|
|
find_package(iceoryx_posh CONFIG REQUIRED)
|
|
target_link_libraries(main PRIVATE iceoryx_posh::iceoryx_posh
|
|
iceoryx_posh::iceoryx_posh_roudi
|
|
iceoryx_posh::iceoryx_posh_config
|
|
iceoryx_posh::iceoryx_posh_gateway)
|