summaryrefslogtreecommitdiff
path: root/xmake/core/project
diff options
context:
space:
mode:
authorruki <[email protected]>2021-09-18 10:18:22 +0800
committerruki <[email protected]>2021-09-18 10:18:22 +0800
commitaeeeca0fb547b157501045c0ddd44b0258619a2b (patch)
tree3963a4c135f1d65767dba02492d2e01c387d0751 /xmake/core/project
parent1b231d9a73299528f1e336d4038c120d5a4fd183 (diff)
add common bit module
Diffstat (limited to 'xmake/core/project')
-rw-r--r--xmake/core/project/target.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/xmake/core/project/target.lua b/xmake/core/project/target.lua
index 5cb7d32b9..d51cc6b71 100644
--- a/xmake/core/project/target.lua
+++ b/xmake/core/project/target.lua
@@ -23,7 +23,7 @@ local target = target or {}
local _instance = _instance or {}
-- load modules
-local bit = require("bit")
+local bit = require("base/bit")
local os = require("base/os")
local path = require("base/path")
local utils = require("base/utils")