This commit is contained in:
Zengtudor 2024-09-22 00:20:37 +08:00
parent b6615d1280
commit 2801f984b1
1 changed files with 3 additions and 1 deletions

View File

@ -40,7 +40,9 @@ target("dna_pybind")
after_build(
function (target)
print(target:targetdir())
os.cp("*.py*",target:targetdir().."/dna/")
os.cp("*.pyi",target:targetdir().."/dna/")
os.cp("*.pyd",target:targetdir().."/dna/")
os.cp("*.py",target:targetdir())
if is_plat("windows") then
os.cp("./dll/*.dll",target:targetdir())
end