summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorruki <[email protected]>2025-01-26 13:33:06 +0800
committerruki <[email protected]>2025-01-26 13:33:06 +0800
commitdc17d289953b23df38e3c64063b175b7a4f5e70d (patch)
treee14d2a815e2d4603d22931b79f155fa79fcb960c
parent2dff9f8387dde9bdaa59ef7c693927d54fbd27ab (diff)
add iarchive
-rw-r--r--xmake/modules/core/tools/iarchive.lua25
1 files changed, 25 insertions, 0 deletions
diff --git a/xmake/modules/core/tools/iarchive.lua b/xmake/modules/core/tools/iarchive.lua
new file mode 100644
index 000000000..30001ab77
--- /dev/null
+++ b/xmake/modules/core/tools/iarchive.lua
@@ -0,0 +1,25 @@
+--!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 iarchive.lua
+--
+
+inherit("ar")
+
+function init(self)
+ _super.init(self)
+end