summaryrefslogtreecommitdiff
path: root/xmake/plugins/project/main.lua
diff options
context:
space:
mode:
authorruki <[email protected]>2019-02-13 22:37:00 +0800
committerruki <[email protected]>2019-02-13 09:42:01 +0800
commitb0ab905e2ae98b4ebb66eea9e0a635fc834019be (patch)
tree54be72a83658d7e94417924826523f32e15c54c7 /xmake/plugins/project/main.lua
parente6b1a84a210d20f69f9987054c21ab64157f77d9 (diff)
add cmakelists plugin stub
Diffstat (limited to 'xmake/plugins/project/main.lua')
-rw-r--r--xmake/plugins/project/main.lua4
1 files changed, 3 insertions, 1 deletions
diff --git a/xmake/plugins/project/main.lua b/xmake/plugins/project/main.lua
index 787dafe92..75da9309f 100644
--- a/xmake/plugins/project/main.lua
+++ b/xmake/plugins/project/main.lua
@@ -26,7 +26,8 @@
import("core.base.option")
import("core.base.task")
import("core.platform.environment")
-import("makefile.makefile")
+import("make.makefile")
+import("cmake.cmakelists")
import("vstudio.vs2002")
import("vstudio.vs2003")
import("vstudio.vs2005")
@@ -45,6 +46,7 @@ function _make(kind)
local maps =
{
makefile = makefile.make
+ , cmakelists = cmakelists.make
, vs2002 = vs2002.make
, vs2003 = vs2003.make
, vs2005 = vs2005.make