1
0
forked from 0ad/0ad
0ad/build/premake/premake5
s0600204 a0d2112195 (1/2) Update premake5 to Alpha 15 - premake5 files
See `CHANGES.txt` below for the upstream-composed list of changes.


`premake5.exe` built by Stan

Accepted By: Stan (for Windows)
Trac Tickets: #5869
Differential Revision: https://code.wildfiregames.com/D3219
This was SVN commit r24387.
2020-12-14 02:17:47 +00:00
..
bin/release (1/2) Update premake5 to Alpha 15 - premake5 files 2020-12-14 02:17:47 +00:00
binmodules Upgrade premake5 from alpha12 to alpha13, refs #3729. 2019-01-04 21:20:45 +00:00
build (1/2) Update premake5 to Alpha 15 - premake5 files 2020-12-14 02:17:47 +00:00
contrib (1/2) Update premake5 to Alpha 15 - premake5 files 2020-12-14 02:17:47 +00:00
modules (1/2) Update premake5 to Alpha 15 - premake5 files 2020-12-14 02:17:47 +00:00
scripts (1/2) Update premake5 to Alpha 15 - premake5 files 2020-12-14 02:17:47 +00:00
src (1/2) Update premake5 to Alpha 15 - premake5 files 2020-12-14 02:17:47 +00:00
tests (1/2) Update premake5 to Alpha 15 - premake5 files 2020-12-14 02:17:47 +00:00
appveyor.yml (1/2) Update premake5 to Alpha 15 - premake5 files 2020-12-14 02:17:47 +00:00
BUILD.txt (1/2) Update premake5 to Alpha 15 - premake5 files 2020-12-14 02:17:47 +00:00
CHANGES.txt (1/2) Update premake5 to Alpha 15 - premake5 files 2020-12-14 02:17:47 +00:00
CONTRIBUTORS.txt Alpha 12 version of Premake 5, including prebuilt binary for Windows. 2017-10-28 16:10:49 +00:00
doxyfile Alpha 12 version of Premake 5, including prebuilt binary for Windows. 2017-10-28 16:10:49 +00:00
LICENSE.txt (1/2) Update premake5 to Alpha 15 - premake5 files 2020-12-14 02:17:47 +00:00
mobdebug.lua Upgrade premake5 from alpha12 to alpha13, refs #3729. 2019-01-04 21:20:45 +00:00
premake4.lua (1/2) Update premake5 to Alpha 15 - premake5 files 2020-12-14 02:17:47 +00:00
premake5.lua (1/2) Update premake5 to Alpha 15 - premake5 files 2020-12-14 02:17:47 +00:00
README.md (1/2) Update premake5 to Alpha 15 - premake5 files 2020-12-14 02:17:47 +00:00

Premake

Latest release Release date Commits BSD 3-Clause
Linux Windows Contributors Contributors

Welcome to Premake

Premake is a command line utility which reads a scripted definition of a software project, then uses it to perform build configuration tasks or generate project files for toolsets like Visual Studio, Xcode, and GNU Make. Premake's scripts are little Lua programs, so the sky's the limit!

workspace "MyWorkspace"
    configurations { "Debug", "Release" }

project "MyProject"
    kind "ConsoleApp"
    language "C++"
    files { "**.h", "**.cpp" }

    filter { "configurations:Debug" }
        defines { "DEBUG" }
        symbols "On"

    filter { "configurations:Release" }
        defines { "NDEBUG" }
        optimize "On"

Getting Started

Sponsors

Premake is a BSD-licensed open source project. Our many thanks to these fine people who help us spend more time adding features and supporting the community. 🎉

Want to join them? Learn more here. Use Premake at work? Ask your manager or marketing team about contributing too; your company logo will appear on our website and README, as well as all of our release pages.

Organizations

Individuals

Contributing

We love getting pull requests and rely heavily on the contributions of our community to keep Premake healthy and growing. If you're new to the project, our Contributing Guide is here.

A great big thank you to all of you who have already contributed your time and know-how!

Stay in touch

License

BSD 3-Clause

The Lua language and runtime library is © TeCGraf, PUC-Rio. See their website at http://www.lua.org/