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/premake4.lua

22 lines
520 B
Lua
Raw Normal View History

---------------------------------------------------------------------------
-- Premake4 solution script for Premake4
-- Copyright (c) 2002-2008 Jason Perkins and the Premake project
---------------------------------------------------------------------------
solution "Premake4"
configurations { "Debug", "Release" }
project "Premake4"
language "c"
defines { "_CRT_SECURE_NO_WARNINGS" }
files { "**.h", "**.c" }
configuration "Debug"
defines { "_DEBUG" }
configuration "Release"
defines { "NDEBUG" }