aboutsummaryrefslogtreecommitdiff
path: root/ports/liburing/usage
diff options
context:
space:
mode:
authorPark DongHa <luncliff@gmail.com>2021-07-17 04:53:49 +0900
committerGitHub <noreply@github.com>2021-07-16 12:53:49 -0700
commitbbe9763f6254298470dddb6eaf186b13c37459fd (patch)
tree287168b08e14dbe430f6a76818cbf8399219c57d /ports/liburing/usage
parent588b1e66f9c18e0887eeaea8dfb49ff856acf683 (diff)
downloadvcpkg-bbe9763f6254298470dddb6eaf186b13c37459fd.tar.gz
vcpkg-bbe9763f6254298470dddb6eaf186b13c37459fd.zip
[liburing] create a new port (#17623)
* [liburing] create a new port * [liburing] patch datadir * [liburing] add port usage * with CMake module: FindPkgConfig * Update ports/liburing/portfile.cmake Co-authored-by: NancyLi1013 <46708020+NancyLi1013@users.noreply.github.com> * [liburing] comments for BUILD_SHARED * update git-tree SHA * [liburing] fix portfile * [liburing] configure with ENABLE_SHARED * update git-tree SHA * Update ports/liburing/usage * [liburing] fix mistype in usage * update git-tree SHA Co-authored-by: NancyLi1013 <46708020+NancyLi1013@users.noreply.github.com> Co-authored-by: nicole mazzuca <83086508+strega-nil-ms@users.noreply.github.com> Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>
Diffstat (limited to 'ports/liburing/usage')
-rw-r--r--ports/liburing/usage6
1 files changed, 6 insertions, 0 deletions
diff --git a/ports/liburing/usage b/ports/liburing/usage
new file mode 100644
index 000000000..36a718895
--- /dev/null
+++ b/ports/liburing/usage
@@ -0,0 +1,6 @@
+The package liburing can be imported via CMake FindPkgConfig module:
+
+ include(FindPkgConfig)
+ pkg_check_modules(liburing REQUIRED IMPORTED_TARGET GLOBAL liburing>=2.0)
+
+ target_link_libraries(main PRIVATE PkgConfig::liburing)