Premake: Difference between revisions
Appearance
Content deleted Content added
Rescuing 1 sources and tagging 0 as dead.) #IABot (v2.0.9.3) (Whoop whoop pull up - 12943 |
updated preview version to latest |
||
Line 5: | Line 5: | ||
| latest release version = 4.3<ref>{{cite web |title=Releases |website=[[GitHub]] |url=https://github.com/premake/premake-4.x/releases}}</ref> |
| latest release version = 4.3<ref>{{cite web |title=Releases |website=[[GitHub]] |url=https://github.com/premake/premake-4.x/releases}}</ref> |
||
| latest release date = {{release date and age|2010|11|16}} |
| latest release date = {{release date and age|2010|11|16}} |
||
| latest preview version = 5.0- |
| latest preview version = 5.0-beta2<ref>{{Cite web|url=https://github.com/premake/premake-core/releases/tag/v5.0.0-beta2|title = Release Premake 5.0-beta2 · premake/Premake-core| website=[[GitHub]] }}</ref> |
||
| latest preview date = {{release date and age| |
| latest preview date = {{release date and age|2022|09|04}} |
||
| programming language = [[C (programming language)|C]], [[Lua (programming language)|Lua]] |
| programming language = [[C (programming language)|C]], [[Lua (programming language)|Lua]] |
||
| license = [[New BSD License]] |
| license = [[New BSD License]] |
Revision as of 22:15, 11 September 2023
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 |
Premake is an open-source software development utility for automatically building configuration from source code.
Features
Some of Premake's features are:[3]
- It supports the C, C++, and C# programming languages.
- Its syntax is simple.
- It can generate automatic build files for Visual Studio, GNU Make, Xcode, Code::Blocks, CodeLite, SharpDevelop, and MonoDevelop.
- Using just one configuration set of files, different systems[clarification needed] can be built.
Sample script
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" }
Notable uses
Projects that use Premake include:[4]
See also
References
- ^ "Releases". GitHub.
- ^ "Release Premake 5.0-beta2 · premake/Premake-core". GitHub.
- ^ Premake Freecode entry
- ^ a b c d "Who Uses Premake". GitHub.
- ^ Bullet 2.79 release
- ^ Building project
- ^ "Building with Premake". Archived from the original on 2011-11-02. Retrieved 2011-07-04.
- ^ Building OpenJAUS
External links