diff options
| author | Tanner Gooding <tagoo@outlook.com> | 2020-01-06 13:14:20 -0800 |
|---|---|---|
| committer | dan-shaw <51385773+dan-shaw@users.noreply.github.com> | 2020-01-06 13:14:20 -0800 |
| commit | fb2006edf9b2b7338263abc629d59441b5da32d1 (patch) | |
| tree | 7765cde3322dc1b6829193978b5d388ff84f4a46 /ports/nethost/usage | |
| parent | 38260a7936a1ec1c02c80fb8a593b7b5d6f199ff (diff) | |
| download | vcpkg-fb2006edf9b2b7338263abc629d59441b5da32d1.tar.gz vcpkg-fb2006edf9b2b7338263abc629d59441b5da32d1.zip | |
[nethost] Adding a port for nethost (#8701)
* Adding a port for nethost
* Fixing ref, removing unneeded include, and marking unsupported architectures for nethost
* Fixing the expected sha512 for nethost
* Setting nethost to fail on static and uwp
* Removing an unecessary file(REMOVE_RECURSE) from nethost
* update baseline
* [nethost] Update to latest from dotnet/runtime
* [vcpkg-baseline] Update baseline for nethost
* [vcpkg-baseline] Update baseline for nethost
Co-authored-by: Jack·Boos·Yu <47264268+JackBoosY@users.noreply.github.com>
Co-authored-by: Robert Schumacher <roschuma@microsoft.com>
Diffstat (limited to 'ports/nethost/usage')
| -rw-r--r-- | ports/nethost/usage | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/ports/nethost/usage b/ports/nethost/usage new file mode 100644 index 000000000..6e6d860d1 --- /dev/null +++ b/ports/nethost/usage @@ -0,0 +1,6 @@ +The package nethost can be used via CMake:
+
+ find_path(NETHOST_INCLUDE_DIRS nethost.h)
+ find_library(NETHOST_LIBRARY NAMES libnethost nethost)
+ target_include_directories(main PRIVATE ${NETHOST_INCLUDE_DIRS})
+ target_link_libraries(main PRIVATE ${NETHOST_LIBRARY})
|
