mirror of
https://github.com/Nheko-Reborn/nheko.git
synced 2024-11-22 11:00:48 +03:00
f524700767
closes #146 [ci skip]
35 lines
562 B
Makefile
35 lines
562 B
Makefile
|
|
debug:
|
|
@cmake -H. -GNinja -Bbuild -DCMAKE_BUILD_TYPE=Debug
|
|
@cmake --build build
|
|
|
|
release-debug:
|
|
@cmake -H. -GNinja -Bbuild -DCMAKE_BUILD_TYPE=RelWithDebInfo
|
|
@cmake --build build
|
|
|
|
release:
|
|
@cmake -H. -Bbuild -DCMAKE_BUILD_TYPE=RelWithDebInfo
|
|
@cmake --build build
|
|
|
|
linux-appimage:
|
|
@./.ci/linux/deploy.sh
|
|
|
|
linux-install:
|
|
cp -f nheko*.AppImage ~/.local/bin
|
|
|
|
macos-app: release-debug
|
|
@./.ci/macos/deploy.sh
|
|
|
|
macos-app-install:
|
|
cp -Rf build/nheko.app /Applications
|
|
|
|
run:
|
|
@./build/nheko
|
|
|
|
lint:
|
|
@./.ci/format.sh
|
|
|
|
clean:
|
|
rm -rf build
|
|
|
|
.PHONY: build app dmg
|