This repository has been archived on 2022-12-23. You can view files and clone it, but cannot push or open issues or pull requests.
fuck-premake-old2/samples/project/CsSharedLib/premake4.lua

16 lines
235 B
Lua

project "CsSharedLib"
kind "SharedLib"
language "C#"
files { "*.cs" }
configuration "Debug"
targetdir "lib/debug"
configuration "Release"
targetdir "lib/release"
if _ACTION == "clean" then
os.rmdir("lib")
end