Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/burning-eggs/whim-edit
IDE for cross-platform native development.
https://github.com/burning-eggs/whim-edit
Last synced: 13 days ago
JSON representation
IDE for cross-platform native development.
- Host: GitHub
- URL: https://github.com/burning-eggs/whim-edit
- Owner: burning-eggs
- License: mit
- Created: 2021-09-17T20:35:24.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2021-09-17T21:20:58.000Z (over 3 years ago)
- Last Synced: 2024-03-28T05:39:19.230Z (10 months ago)
- Language: Lua
- Size: 9.77 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# 🪁 Project
Describe your project!## Premake
This project uses Premake for project configuration. ([What is Premake?](https://github.com/premake/premake-core/wiki/What-Is-Premake))
You can get the latest version [here](https://premake.github.io/download)! 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](https://github.com/premake/premake-core/wiki/Using-Premake).*(Psst! There are also a few [third-party premake extensions](https://github.com/premake/premake-core/wiki/Modules#third-party-modules) 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.