mirror of
https://github.com/antopilo/Nuake.git
synced 2026-01-01 05:48:14 +03:00
28 lines
662 B
Lua
28 lines
662 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)
|
|
|
|
propertytags {
|
|
{ "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"'
|
|
}
|