Loading AI tools
From Wikipedia, the free encyclopedia
Premake is an open-source software development utility for automatically building configuration from source code.
Original author(s) | Jason Perkins |
---|---|
Stable release | 4.3[1]
/ November 16, 2010 |
Preview release | 5.0-beta2[2]
/ September 4, 2022 |
Repository | |
Written in | C, Lua |
Type | build automation tool |
License | New BSD License |
Website | premake |
Some of Premake's features are:[3]
The following is an example Premake script for a simple software project.
solution "MySolution"
configurations { "Debug", "Release" }
project "MyProject"
kind "ConsoleApp"
language "C++"
includedirs { "include" }
files { "src/**.h", "src/**.cpp" }
configuration "Debug"
symbols "On"
defines { "_DEBUG" }
configuration "Release"
flags { "Optimize" }
defines { "NDEBUG" }
Projects that use Premake include:[4]
Seamless Wikipedia browsing. On steroids.
Every time you click a link to Wikipedia, Wiktionary or Wikiquote in your browser's search results, it will show the modern Wikiwand interface.
Wikiwand extension is a five stars, simple, with minimum permission required to keep your browsing private, safe and transparent.