-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathxmake.lua
More file actions
12 lines (11 loc) · 683 Bytes
/
xmake.lua
File metadata and controls
12 lines (11 loc) · 683 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
target("phony")
do
set_kind("phony")
add_installfiles("src/xmake_python/*.py", { prefixdir = "$(pythondir)/xmake_python" })
add_installfiles("src/xmake_python/builder/*.py", { prefixdir = "$(pythondir)/xmake_python/builder" })
add_installfiles("src/xmake_python/templates/xmake.lua", { prefixdir = "$(pythondir)/xmake_python/templates" })
add_installfiles("src/xmake_python/templates/Makefile", { prefixdir = "$(pythondir)/xmake_python/templates" })
set_configvar("version", "$(project_version)")
add_configfiles("src/xmake_python/templates/__init__.py")
add_installfiles("$(buildir)/*.py", { prefixdir = "$(pythondir)/xmake_python/templates" })
end