v4k-git-backup/tools/lua
r-lyeh 54aa82aecf chg: bring back project generators `MAKE proj` (premake5)
chg: bring back most demos/ `MAKE demos`
fix: ui: fixed crash when no cooked fonts were available (ui_notify)
fix: html5: added pthreads support (@zpl-zak)
fix: html5: allowed coi requests in localhost served contents (@zpl-zak)
chg: html5: instantiate web server only if content is not being served
chg: bring back demos/html5/
chg: bring back tools/editor/
chg: bring back some audio tunes
chg: update docs
2023-08-10 23:04:56 +02:00
..
LICENSE chg: bring back project generators `MAKE proj` (premake5) 2023-08-10 23:04:56 +02:00
README.md chg: bring back project generators `MAKE proj` (premake5) 2023-08-10 23:04:56 +02:00
_manifest.lua chg: bring back project generators `MAKE proj` (premake5) 2023-08-10 23:04:56 +02:00
_preload.lua chg: bring back project generators `MAKE proj` (premake5) 2023-08-10 23:04:56 +02:00
appveyor.yml chg: bring back project generators `MAKE proj` (premake5) 2023-08-10 23:04:56 +02:00
ninja.lua chg: bring back project generators `MAKE proj` (premake5) 2023-08-10 23:04:56 +02:00

README.md

premake-ninja

Premake extension to support Ninja, because it's awesome. Build Status Build status

Implementation

For each project - configuration pair we create separate .ninja file. For solution we create build.ninja file which imports other .ninja files with subninja command.

Build.ninja file sets phony targets for configuration names so you can build them from command line. And default target is a first configuration name in your project (usually default).

TODO

  • Resources are not supported
  • Makefile not supported
  • Bundles of any sort are not supported
  • Clear methods are not supported
  • C# not supported
  • D not supported

Tested on

  • msvc / win
    • ConsoleApp works
    • WindowedApp works
    • StaticLib works
    • SharedLib works
    • win64 not tested
  • clang / win
    • not tested
  • clang / linux
    • not tested
  • clang / osx
    • ConsoleApp works
    • WindowedApp works
    • StaticLib works
    • SharedLib works
    • x86_64 tested, x86 not tested
  • gcc / win
    • ConsoleApp works
    • WindowedApp works
    • StaticLib works
    • SharedLib works
    • x86_64 tested, x86 not tested
  • gcc / linux (tested on Ubuntu 15.04)
    • ConsoleApp works
    • WindowedApp works
    • StaticLib works
    • SharedLib works
    • PCH works
    • Custom build rules works
    • x86_64 tested, x86 not tested

Extra Tests

Part of integration tests of several generators in https://github.com/Jarod42/premake-sample-projects