Premake

Premake
Original author(s) Jason Perkins
Stable release
4.3[1] / November 16, 2010 (2010-11-16)
Preview release
5.0-alpha11[2] / January 13, 2017 (2017-01-13)
Repository
Written in C, Lua
Type build automation tool
License New BSD License
Website premake.github.io

Premake is an open-source software development utility for automatically building configuration from source code.

Features

Some of the features of the system are:[3]

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

There are a number of notable uses including:[4]

See also

References

This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.