All Projects → premake → Premake Core

premake / Premake Core

Licence: bsd-3-clause
Premake

Programming Languages

c
50402 projects - #5 most used programming language
lua
6591 projects
HTML
75241 projects
shell
77523 projects
python
139335 projects - #7 most used programming language
perl
6916 projects

Projects that are alternatives of or similar to Premake Core

premake-android-studio
premake5 module for android-studio and gradle build.
Stars: ✭ 24 (-98.93%)
Mutual labels:  premake
cpp-compiler-options
Compilation options for different versions of Clang, GCC and MSVC. Provided a generator and different file formats (cmake, xmake, meson, premake5, bjam/b2, ...)
Stars: ✭ 19 (-99.15%)
Mutual labels:  premake
PlaneGame
飞机大战源码(豪华版)
Stars: ✭ 89 (-96.04%)
Mutual labels:  premake
premake-compilationunit
Premake module adding support for compilation speed up through the use of the "single compilation unit" pattern, slightly modified.
Stars: ✭ 16 (-99.29%)
Mutual labels:  premake
premake-next
An experimental, exploratory take on new ideas and approaches for Premake
Stars: ✭ 17 (-99.24%)
Mutual labels:  premake
Geno
IDE for cross-platform C/C++ development
Stars: ✭ 39 (-98.27%)
Mutual labels:  premake

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. 🎉

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/

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].