nheko/Makefile

34 lines
612 B
Makefile
Raw Normal View History

2017-08-13 18:17:04 +02:00
debug:
2017-05-02 03:22:33 +02:00
@cmake -DBUILD_TESTS=OFF -H. -GNinja -Bbuild -DCMAKE_BUILD_TYPE=Debug
@cmake --build build
2017-04-06 03:07:53 +02:00
release-debug:
@cmake -DBUILD_TESTS=OFF -H. -GNinja -Bbuild -DCMAKE_BUILD_TYPE=RelWithDebInfo
@cmake --build build
test:
@cmake -DBUILD_TESTS=ON -H. -GNinja -Bbuild -DCMAKE_BUILD_TYPE=RelWithDebInfo
@cmake --build build
@cd build && GTEST_COLOR=1 ctest --verbose
2017-11-05 16:56:02 +01:00
linux-appimage:
@./.ci/linux/deploy.sh
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