Files
Nuake/NuakeNet/premake5.lua
2025-01-16 20:19:27 -05:00

28 lines
650 B
Lua

project "NuakeNet"
language "C#"
dotnetframework "net8.0"
kind "SharedLib"
clr "Unsafe"
-- Don't specify architecture here. (see https://github.com/premake/premake-core/issues/1758)
vsprops {
AppendTargetFrameworkToOutputPath = "false",
Nullable = "enable",
}
files
{
"src/**.cs"
}
links
{
"Coral.Managed"
}
postbuildcommands {
'{ECHO} Copying "%{wks.location}/NuakeNet/bin/$(Configuration)/NuakeNet.dll" to "%{wks.location}/Editor"',
'{COPYFILE} "%{wks.location}/NuakeNet/bin/$(Configuration)/NuakeNet.dll" "%{wks.location}/Editor"'
}