mirror of
https://github.com/hyprwm/Hypr.git
synced 2024-11-02 06:45:58 +01:00
12 lines
367 B
Makefile
12 lines
367 B
Makefile
all: cmake
|
|
|
|
release:
|
|
mkdir build && cmake --no-warn-unused-cli -DCMAKE_BUILD_TYPE:STRING=Release -H./ -B./build -G Ninja
|
|
cmake --build ./build --config Release --target all -j 10
|
|
|
|
debug:
|
|
mkdir build && cmake --no-warn-unused-cli -DCMAKE_BUILD_TYPE:STRING=Debug -H./ -B./build -G Ninja
|
|
cmake --build ./build --config Debug --target all -j 10
|
|
|
|
clear:
|
|
rm -rf build
|