Stupid broken build tool maintained by frogs, rust, and fed contractor brainlets
Go to file
2019-10-17 02:22:50 +08:00
.github Update issue templates 2019-10-09 10:19:04 -04:00
binmodules Xcode Fixes 2018-05-31 21:00:15 -07:00
contrib Upgrade Lua from 5.3.4 to 5.3.5 2019-10-06 13:09:55 -05:00
modules Merge pull request #1352 from LORgames/ssurtees/testImprovement 2019-10-13 12:56:57 -04:00
packages/debian Copied packaging files to 4.0 trunk 2008-05-05 14:12:38 +00:00
scripts package.lua: Fix source package not containing scripts.c 2019-05-30 19:10:28 +02:00
src Merge pull request #1345 from kaldap/registry 2019-10-14 16:01:14 -04:00
tests New 'listWindowsRegistry' OS API method for enumerating content of single Windows registry subkey 2019-10-14 21:35:13 +02:00
.editorconfig fixes to dotnetbase code for C++ nuget support. 2017-10-09 10:38:01 -07:00
.gitignore Update .gitignore 2017-04-04 09:04:56 -07:00
.travis.yml Fleshed out CI builds 2018-04-09 22:12:10 +10:00
appveyor.yml Fleshed out CI builds 2018-04-09 22:12:10 +10:00
Bootstrap.bat Bootstrap.bat: Change default behaviour to bootstrap with latest Visual Studio available 2019-05-04 15:30:15 +02:00
Bootstrap.mak Fix Haiku support 2019-10-01 00:48:56 +02:00
BUILD.txt Package: Replace gmake with gmake2 for source package 2019-05-04 17:16:52 +02:00
CHANGES.txt CHANGES.txt: Add merged PRs since alpha13 2019-05-04 14:21:32 +02:00
CONTRIBUTING.md Add a CONTRIBUTING.md 2019-08-21 10:00:48 -04:00
CONTRIBUTORS.txt Update support files for alpha12 release 2017-08-21 11:44:47 -04:00
doxyfile Initial import of my local 4.x development code 2008-04-06 18:10:41 +00:00
FUNDING.yml Add FUNDING.yml for GitHub Sponsors 2019-07-23 11:33:36 -04:00
LICENSE.txt Update copyright year in support files 2019-08-20 10:05:37 -04:00
mobdebug.lua Embed luasocket as a static library 2018-03-17 14:47:40 +00:00
premake4.lua Fix premake4.lua bootstrap build script 2019-10-17 02:22:50 +08:00
premake5.lua Fix Haiku support 2019-10-01 00:48:56 +02:00
README.md Improve the README 2019-08-27 11:12:14 -04: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/