summaryrefslogtreecommitdiff
path: root/xmake/modules/core
diff options
context:
space:
mode:
authorruki <[email protected]>2021-10-09 11:58:10 +0800
committerruki <[email protected]>2021-10-09 11:58:10 +0800
commita01e17a5049bdd02ddc2514bd47af74cf2ff802d (patch)
tree83cea0cf9fa564bd0bbbddb35a366b64a404635e /xmake/modules/core
parent59498b047190411a144f821a5cc40174faeaaa9a (diff)
move private.utils.progress to utils.progress
Diffstat (limited to 'xmake/modules/core')
-rw-r--r--xmake/modules/core/tools/ar.lua2
-rw-r--r--xmake/modules/core/tools/cl.lua2
-rw-r--r--xmake/modules/core/tools/gcc.lua2
-rw-r--r--xmake/modules/core/tools/nvcc.lua2
-rw-r--r--xmake/modules/core/tools/sdcc.lua2
5 files changed, 5 insertions, 5 deletions
diff --git a/xmake/modules/core/tools/ar.lua b/xmake/modules/core/tools/ar.lua
index dc858a19e..abb1e9695 100644
--- a/xmake/modules/core/tools/ar.lua
+++ b/xmake/modules/core/tools/ar.lua
@@ -20,7 +20,7 @@
-- imports
import("core.tool.compiler")
-import("private.utils.progress")
+import("utils.progress")
-- init it
function init(self)
diff --git a/xmake/modules/core/tools/cl.lua b/xmake/modules/core/tools/cl.lua
index 54eafe227..efea29a14 100644
--- a/xmake/modules/core/tools/cl.lua
+++ b/xmake/modules/core/tools/cl.lua
@@ -26,7 +26,7 @@ import("core.project.project")
import("core.language.language")
import("private.tools.vstool")
import("private.tools.cl.parse_include")
-import("private.utils.progress")
+import("utils.progress")
-- init it
function init(self)
diff --git a/xmake/modules/core/tools/gcc.lua b/xmake/modules/core/tools/gcc.lua
index c6422d204..2cf31e2dc 100644
--- a/xmake/modules/core/tools/gcc.lua
+++ b/xmake/modules/core/tools/gcc.lua
@@ -27,7 +27,7 @@ import("core.project.config")
import("core.project.project")
import("core.language.language")
import("private.tools.ccache")
-import("private.utils.progress")
+import("utils.progress")
-- init it
function init(self)
diff --git a/xmake/modules/core/tools/nvcc.lua b/xmake/modules/core/tools/nvcc.lua
index 25a589124..2aad54096 100644
--- a/xmake/modules/core/tools/nvcc.lua
+++ b/xmake/modules/core/tools/nvcc.lua
@@ -26,7 +26,7 @@ import("core.project.project")
import("core.platform.platform")
import("core.language.language")
import("private.tools.ccache")
-import("private.utils.progress")
+import("utils.progress")
-- init it
function init(self)
diff --git a/xmake/modules/core/tools/sdcc.lua b/xmake/modules/core/tools/sdcc.lua
index 526254fe7..82d6cd78a 100644
--- a/xmake/modules/core/tools/sdcc.lua
+++ b/xmake/modules/core/tools/sdcc.lua
@@ -21,7 +21,7 @@
-- imports
import("core.base.option")
import("core.base.global")
-import("private.utils.progress")
+import("utils.progress")
-- init it
function init(self)