Skip to content

Latest commit

 

History

History
16 lines (13 loc) · 1.57 KB

README.md

File metadata and controls

16 lines (13 loc) · 1.57 KB

🚩 Project

Describe your project!

Premake

This project uses Premake for project configuration. (What is Premake?)
You can get the latest version here! Make sure you have it in your PATH or in the project root directory.

🔨 Building

  1. Open a terminal in the project root directory.

  2. Run premake with the action of your choice. It's as simple as: ./premake5 my-favorite-action.
    A few examples of actions are: vs2017/vs2019 (Visual Studio), gmake2 (GNU Make) and xcode4 (Xcode).
    Here is a full list of available actions.

    (Psst! There are also a few third-party premake extensions at your disposal, in case none of the official generators pique your interest)

  3. Premake will now have generated project files for the action you specified. You should see a workspace file in the project root directory. For Visual Studio this takes the shape of a .sln file. For GNU Make; a Makefile, etc..
    This means that you can now build the project using the corresponding build tool on your computer. If you're using GNU Make, for instance, you can now simply call make. Otherwise, if you're using an IDE, you should open the workspace file with said IDE and you will be able to build the project.