[*] Update vala script

This commit is contained in:
Reece Wilson 2022-03-04 17:09:10 +00:00
parent a9588c9d40
commit 447c8ea15c

View File

@ -1,5 +1,5 @@
local cia = path.translate(path.join(build.projectRoot, "symbols.CIA"), path.getDefaultSeparator())
local def = path.translate(path.join(build.projectRoot, "symbols.def"), path.getDefaultSeparator())
local cia = path.translate(path.join(auBuild.projectRoot, "symbols.CIA"), path.getDefaultSeparator())
local def = path.translate(path.join(auBuild.projectRoot, "symbols.def"), path.getDefaultSeparator())
print("Generating MSVC def file for scuffed gnome vala build", cia, def)
@ -11,7 +11,7 @@ end
-- so, we can't pull the target module name until we've actually built the binary
-- we'll just have to guess for now
local dllName = build.projectTargetName .. ".dll"
local dllName = auBuild.projectTargetName .. ".dll"
local buffer = ""
buffer = buffer .. "LIBRARY " .. dllName .. "\r\n"