summaryrefslogtreecommitdiff
path: root/xmake/modules
diff options
context:
space:
mode:
authorruki <[email protected]>2025-01-11 00:48:01 +0800
committerruki <[email protected]>2025-01-11 00:48:01 +0800
commit4bd329ef8184659bfbd221bf80efc5d7ee30e63f (patch)
tree62789ed4f865c3c2ca860ab7602af366b8150411 /xmake/modules
parente470863c24280ad3566d35b16ad184d3781510af (diff)
check pkgconfig
Diffstat (limited to 'xmake/modules')
-rw-r--r--xmake/modules/lib/detect/check_pkgconfig.lua40
1 files changed, 40 insertions, 0 deletions
diff --git a/xmake/modules/lib/detect/check_pkgconfig.lua b/xmake/modules/lib/detect/check_pkgconfig.lua
new file mode 100644
index 000000000..97fdabe55
--- /dev/null
+++ b/xmake/modules/lib/detect/check_pkgconfig.lua
@@ -0,0 +1,40 @@
+--!A cross-platform build utility based on Lua
+--
+-- Licensed under the Apache License, Version 2.0 (the "License");
+-- you may not use this file except in compliance with the License.
+-- You may obtain a copy of the License at
+--
+-- http://www.apache.org/licenses/LICENSE-2.0
+--
+-- Unless required by applicable law or agreed to in writing, software
+-- distributed under the License is distributed on an "AS IS" BASIS,
+-- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+-- See the License for the specific language governing permissions and
+-- limitations under the License.
+--
+-- Copyright (C) 2015-present, TBOOX Open Source Group.
+--
+-- @author ruki
+-- @file check_pkgconfig.lua
+--
+
+-- imports
+import("core.base.option")
+import("lib.detect.pkgconfig")
+
+-- check the given pkgconfig file
+--
+-- @param name the .pc file name
+-- @param opt the argument options, e.g. { verbose = true, configdirs = {"lib"}}
+--
+function main(name, opt)
+ local result = pkgconfig.libinfo(name, opt)
+ if opt.verbose or option.get("verbose") or option.get("diagnosis") then
+ cprint("${dim}> checking for pkgconfig/%s.pc", name)
+ if result then
+ print(result)
+ end
+ end
+ return result
+end
+