diff options
| author | ruki <[email protected]> | 2016-05-27 13:25:19 +0800 |
|---|---|---|
| committer | ruki <[email protected]> | 2016-05-27 13:25:19 +0800 |
| commit | ba420896702097733403ec8e3ce56b8ee4e54e88 (patch) | |
| tree | a5af327e962cba4b8715f68ec45c912f651346c9 /xmake/platforms/linux | |
| parent | 93a7da63ce2be9f8125c8886c3f319d866d4e439 (diff) | |
modify interpreter interfaces
Diffstat (limited to 'xmake/platforms/linux')
| -rwxr-xr-x | xmake/platforms/linux/xmake.lua | 10 |
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") |
