nheko/Makefile

53 lines
1.1 KiB
Makefile
Raw Normal View History

2017-08-13 18:17:04 +02:00
debug:
2018-01-25 14:08:19 +01:00
@cmake -H. -GNinja -Bbuild -DCMAKE_BUILD_TYPE=Debug -DCMAKE_EXPORT_COMPILE_COMMANDS=1
@cmake --build build
2017-04-06 03:07:53 +02:00
2017-12-22 15:33:29 +01:00
ci:
@cmake -H. -GNinja -Bbuild -DCMAKE_BUILD_TYPE=RelWithDebInfo
@cmake --build build
release:
@cmake -H. -Bbuild -DCMAKE_BUILD_TYPE=RelWithDebInfo
@cmake --build build
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-install:
cp -Rf build/nheko.app /Applications
2017-04-30 14:10:59 +02:00
lint:
2017-12-31 12:19:32 +01:00
./.ci/format.sh
2017-05-02 03:22:33 +02:00
2017-12-14 00:23:17 +01:00
image:
docker build -t nheko-app-image .
debian-image:
docker build -f Dockerfile.debian -t nheko-debian-appimage .
2017-12-31 12:19:32 +01:00
linux-deploy:
./.ci/linux/deploy.sh
macos-deploy:
./.ci/macos/deploy.sh
2017-12-14 00:23:17 +01:00
2017-12-31 12:19:32 +01:00
docker-app-image: image
2017-12-26 18:08:00 +01:00
docker run \
-e CXX=g++-7 \
-e CC=gcc-7 \
-v `pwd`:/build nheko-app-image make release
docker run \
--privileged \
2017-12-31 12:19:32 +01:00
-v `pwd`:/build nheko-app-image make linux-deploy
2017-12-26 18:08:00 +01:00
docker-debian-appimage: debian-image
docker run -v `pwd`:/build nheko-debian-appimage make release
docker run --privileged -v `pwd`:/build nheko-debian-appimage make linux-deploy
2018-03-28 10:05:08 +02:00
update-translations:
lupdate src/**/*.cc src/**/*.cpp -ts resources/langs/nheko_*.ts -no-obsolete
2017-04-06 03:07:53 +02:00
clean:
2017-12-21 14:10:04 +01:00
rm -rf build