cargo install ajour
brew install --cask ajour
choco install ajour
choco install ajour-opengl
Before compiling Ajour, you need the source code
git clone https://github.com/ajour/ajour.git
cd ajour
Ensure you have installed the Rust compiler rustup.rs
.
Depending on what system you are building the source code on, additional dependencies might be required.
sudo apt install build-essential cmake libxft-dev libssl-dev libx11-dev libxkbcommon-dev
If your system has extra dependencies, and they are not listed here please create a pull-request or open a issue.
cargo build --release
The application executable will be built to
target/release/ajour
make app
cp -r target/release/osx/Ajour.app /Applications/
Ajour is built using wgpu
which has requirements
which might not be achievable by all.
It is therefore possible to build a compatability build using opengl
as renderer instead. Performance should be close to 1:1.
To build a compatability build add the flag --no-default-features --features opengl
cargo build --release --no-default-features --features opengl