nheko/Makefile

36 lines
562 B
Makefile
Raw Normal View History

2017-08-13 18:17:04 +02:00
debug:
@cmake -H. -GNinja -Bbuild -DCMAKE_BUILD_TYPE=Debug
@cmake --build build
2017-04-06 03:07:53 +02:00
release-debug:
@cmake -H. -GNinja -Bbuild -DCMAKE_BUILD_TYPE=RelWithDebInfo
@cmake --build build
release:
@cmake -H. -Bbuild -DCMAKE_BUILD_TYPE=RelWithDebInfo
@cmake --build build
2017-11-05 16:56:02 +01:00
linux-appimage:
@./.ci/linux/deploy.sh
2017-11-26 20:32:18 +01:00
linux-install:
cp -f nheko*.AppImage ~/.local/bin
2017-11-06 16:20:48 +01:00
macos-app: release-debug
@./.ci/macos/deploy.sh
2017-08-13 18:17:04 +02:00
2017-11-06 16:20:48 +01:00
macos-app-install:
cp -Rf build/nheko.app /Applications
run:
@./build/nheko
2017-04-06 13:58:48 +02:00
2017-04-30 14:10:59 +02:00
lint:
2017-09-24 16:08:11 +02:00
@./.ci/format.sh
2017-05-02 03:22:33 +02:00
2017-04-06 03:07:53 +02:00
clean:
rm -rf build
2017-08-13 18:17:04 +02:00
.PHONY: build app dmg