summaryrefslogtreecommitdiff
path: root/xmake/platforms/linux/xmake.lua
diff options
context:
space:
mode:
Diffstat (limited to 'xmake/platforms/linux/xmake.lua')
-rwxr-xr-xxmake/platforms/linux/xmake.lua10
1 files changed, 5 insertions, 5 deletions
diff --git a/xmake/platforms/linux/xmake.lua b/xmake/platforms/linux/xmake.lua
index 6d4bbc1b9..c6d6cce0b 100755
--- a/xmake/platforms/linux/xmake.lua
+++ b/xmake/platforms/linux/xmake.lua
@@ -24,19 +24,19 @@
platform("linux")
-- set os
- set_platform_os("linux")
+ set_os("linux")
-- set hosts
- set_platform_hosts("macosx", "linux", "windows")
+ set_hosts("macosx", "linux", "windows")
-- set archs
- set_platform_archs("i386", "x86_64")
+ set_archs("i386", "x86_64")
-- set checker
- set_platform_checker("checker")
+ set_checker("checker")
-- on load
- on_platform_load(function ()
+ on_load(function ()
-- imports
import("core.project.config")