1
0
Jef 20d28e80a5 Initial community commit 1 сар өмнө
..
.github 20d28e80a5 Initial community commit 1 сар өмнө
binmodules 20d28e80a5 Initial community commit 1 сар өмнө
contrib 20d28e80a5 Initial community commit 1 сар өмнө
modules 20d28e80a5 Initial community commit 1 сар өмнө
packages 20d28e80a5 Initial community commit 1 сар өмнө
scripts 20d28e80a5 Initial community commit 1 сар өмнө
src 20d28e80a5 Initial community commit 1 сар өмнө
tests 20d28e80a5 Initial community commit 1 сар өмнө
website 20d28e80a5 Initial community commit 1 сар өмнө
.editorconfig 20d28e80a5 Initial community commit 1 сар өмнө
.gitignore 20d28e80a5 Initial community commit 1 сар өмнө
BUILD.txt 20d28e80a5 Initial community commit 1 сар өмнө
Bootstrap.bat 20d28e80a5 Initial community commit 1 сар өмнө
Bootstrap.mak 20d28e80a5 Initial community commit 1 сар өмнө
CHANGES.txt 20d28e80a5 Initial community commit 1 сар өмнө
CONTRIBUTING.md 20d28e80a5 Initial community commit 1 сар өмнө
CONTRIBUTORS.txt 20d28e80a5 Initial community commit 1 сар өмнө
FUNDING.yml 20d28e80a5 Initial community commit 1 сар өмнө
LICENSE.txt 20d28e80a5 Initial community commit 1 сар өмнө
OpenMPT.txt 20d28e80a5 Initial community commit 1 сар өмнө
README.md 20d28e80a5 Initial community commit 1 сар өмнө
doxyfile 20d28e80a5 Initial community commit 1 сар өмнө
mobdebug.lua 20d28e80a5 Initial community commit 1 сар өмнө
premake4.lua 20d28e80a5 Initial community commit 1 сар өмнө
premake5.lua 20d28e80a5 Initial community commit 1 сар өмнө

README.md

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. :tada:

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/