https://github.com/craftablescience/compressonator-compiler
A GitHub Actions workflow to compile Compressonator.
https://github.com/craftablescience/compressonator-compiler
Last synced: 3 months ago
JSON representation
A GitHub Actions workflow to compile Compressonator.
- Host: GitHub
- URL: https://github.com/craftablescience/compressonator-compiler
- Owner: craftablescience
- License: mit
- Created: 2024-06-27T21:53:36.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-09-23T05:54:00.000Z (4 months ago)
- Last Synced: 2025-09-23T07:15:37.326Z (4 months ago)
- Language: CMake
- Homepage:
- Size: 40 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
README
# Compressonator Compiler
A GitHub Actions workflow to compile Compressonator's core library. The SDK, CLI, and GUI are *not* compiled.
Releases come bundled with a CMake file to allow for easy usage of the compiled library. To use it, do something like the following:
```cmake
# Set the path to the downloaded+unzipped release
add_subdirectory("${CMAKE_CURRENT_SOURCE_DIR}/path/to/compressonator/release")
# Say we have a library called "sample_lib"... Link to Compressonator using the given function.
# This function will link to the correct libraries and make the "Compressonator.h" header file available.
target_link_compressonator(sample_lib)
```