https://github.com/codylico/qbvoxel
Parser/generator for Qubicle Binary file format
https://github.com/codylico/qbvoxel
cmake parser qubicle voxel
Last synced: about 1 year ago
JSON representation
Parser/generator for Qubicle Binary file format
- Host: GitHub
- URL: https://github.com/codylico/qbvoxel
- Owner: codylico
- License: unlicense
- Created: 2020-09-04T19:18:43.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2025-01-11T04:52:42.000Z (over 1 year ago)
- Last Synced: 2025-02-05T01:30:09.608Z (over 1 year ago)
- Topics: cmake, parser, qubicle, voxel
- Language: C
- Homepage:
- Size: 57.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# qbvoxel
Parser/generator for Qubicle Binary file format
## Goals
- Full support for the Qubicle Binary (QB) File Specification.
- Simple and orthogonal function interface
- Language feature usage kept to a minimum
## Build
This project uses CMake
([https://cmake.org/download/](https://cmake.org/download/)).
To use CMake with this project, first create a directory to hold the compiled
code. Then run CMake in the directory with a path to the source code. Here
are sample commands for UNIX:
```
mkdir build
cd build
cmake ../qbvoxel
```
Running CMake should produce either an IDE project or a build script
(i.e. Makefile, ninja file, ...). For Makefiles, the following command
should build the project:
```
make
```
For IDE projects, the IDE must be installed and ready to use. Open the
project within the IDE.