From Wikipedia, the free encyclopedia
Premake
Original author(s)Jason Perkins
Stable release
4.3 [1] / November 16, 2010; 13 years ago (2010-11-16)
Preview release
5.0-beta2 [2] / September 4, 2022; 21 months ago (2022-09-04)
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 Premake's features 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

Projects that use Premake include: [4]

See also

References

  1. ^ "Releases". GitHub.
  2. ^ "Release Premake 5.0-beta2 · premake/Premake-core". GitHub.
  3. ^ Premake Freecode entry
  4. ^ a b c d "Who Uses Premake". GitHub.
  5. ^ Bullet 2.79 release
  6. ^ Building project
  7. ^ "Building with Premake". Archived from the original on 2011-11-02. Retrieved 2011-07-04.
  8. ^ Building OpenJAUS

External links


From Wikipedia, the free encyclopedia
Premake
Original author(s)Jason Perkins
Stable release
4.3 [1] / November 16, 2010; 13 years ago (2010-11-16)
Preview release
5.0-beta2 [2] / September 4, 2022; 21 months ago (2022-09-04)
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 Premake's features 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

Projects that use Premake include: [4]

See also

References

  1. ^ "Releases". GitHub.
  2. ^ "Release Premake 5.0-beta2 · premake/Premake-core". GitHub.
  3. ^ Premake Freecode entry
  4. ^ a b c d "Who Uses Premake". GitHub.
  5. ^ Bullet 2.79 release
  6. ^ Building project
  7. ^ "Building with Premake". Archived from the original on 2011-11-02. Retrieved 2011-07-04.
  8. ^ Building OpenJAUS

External links



Videos

Youtube | Vimeo | Bing

Websites

Google | Yahoo | Bing

Encyclopedia

Google | Yahoo | Bing

Facebook