premake/samples/project/CppStaticLib/premake4.lua

16 lines
240 B
Lua

project "CppStaticLib"
kind "StaticLib"
language "C++"
files { "*.cpp" }
configuration "Debug"
targetdir "lib/debug"
configuration "Release"
targetdir "lib/release"
if _ACTION == "clean" then
os.rmdir("lib")
end