aboutsummaryrefslogtreecommitdiff
path: root/cmake/FindNice.cmake
diff options
context:
space:
mode:
authorfiaxh <git@lightrise.org>2021-05-11 12:57:02 +0200
committerfiaxh <git@lightrise.org>2021-05-11 12:57:02 +0200
commitd71604913dd5b3372a823320db83c37c845fac5c (patch)
tree2ffbff97a02c81d48d8aef4a4b7ee870507236e9 /cmake/FindNice.cmake
parente92ed27317ae398c867c946cf7206b1f0b32f3b4 (diff)
parent90f9ecf62b2ebfef14de2874e7942552409632bf (diff)
downloaddino-d71604913dd5b3372a823320db83c37c845fac5c.tar.gz
dino-d71604913dd5b3372a823320db83c37c845fac5c.zip
Merge remote-tracking branch 'origin/feature/calls'
Diffstat (limited to 'cmake/FindNice.cmake')
-rw-r--r--cmake/FindNice.cmake13
1 files changed, 13 insertions, 0 deletions
diff --git a/cmake/FindNice.cmake b/cmake/FindNice.cmake
new file mode 100644
index 00000000..d40fc8c7
--- /dev/null
+++ b/cmake/FindNice.cmake
@@ -0,0 +1,13 @@
+include(PkgConfigWithFallback)
+find_pkg_config_with_fallback(Nice
+ PKG_CONFIG_NAME nice
+ LIB_NAMES nice
+ INCLUDE_NAMES nice.h
+ INCLUDE_DIR_SUFFIXES nice nice/include
+ DEPENDS GIO
+)
+
+include(FindPackageHandleStandardArgs)
+find_package_handle_standard_args(Nice
+ REQUIRED_VARS Nice_LIBRARY
+ VERSION_VAR Nice_VERSION)