https://github.com/peterhellberg/sokol-init
sokol-init is a tool used to initialize a Zig ⚡ Sokol project
https://github.com/peterhellberg/sokol-init
Last synced: 8 months ago
JSON representation
sokol-init is a tool used to initialize a Zig ⚡ Sokol project
- Host: GitHub
- URL: https://github.com/peterhellberg/sokol-init
- Owner: peterhellberg
- License: other
- Created: 2023-11-15T19:18:25.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2025-03-30T18:51:54.000Z (11 months ago)
- Last Synced: 2025-06-01T18:18:54.052Z (9 months ago)
- Language: Zig
- Homepage:
- Size: 26.4 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# sokol-init :sparkles:
This is a command line tool that helps you start a
[Sokol](https://github.com/floooh/sokol) project with
[Zig](https://ziglang.org/) :zap:
`sokol-init` is used to create a directory containing code that
allows you to promptly get started coding with Sokol (via the
[sokol-zig](https://github.com/floooh/sokol-zig) bindings)
## Installation
(Requires you to have [Go](https://go.dev/) installed)
```sh
go install github.com/peterhellberg/sokol-init@latest
```
## Usage
(Requires you to have an up to date (_nightly_) version of
[Zig](https://ziglang.org/download/#release-master) installed
```sh
sokol-init myproject
cd myproject
zig build run
```
:seedling: