mirror of
https://github.com/Nheko-Reborn/nheko.git
synced 2024-11-22 03:00:46 +03:00
15 lines
226 B
Makefile
15 lines
226 B
Makefile
run: debug
|
|
./build/nheko
|
|
|
|
debug:
|
|
@cmake -H. -Bbuild -DCMAKE_BUILD_TYPE=Debug
|
|
@make -C build -j2
|
|
|
|
release-debug:
|
|
@cmake -H. -Bbuild -DCMAKE_BUILD_TYPE=RelWithDebInfo
|
|
@make -C build -j2
|
|
|
|
clean:
|
|
rm -rf build
|
|
|
|
.PHONY: build
|