mirror of
https://github.com/hyprwm/Hypr.git
synced 2024-11-07 16:35:59 +01:00
13 lines
366 B
Makefile
13 lines
366 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 -r build
|