blob: a8478105599f8cbcf1fcd6b0f98e057b4649ebf5 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
debug:
@cmake -H. -GNinja -Bbuild -DCMAKE_BUILD_TYPE=Debug -DCMAKE_EXPORT_COMPILE_COMMANDS=1
@cmake --build build
ci:
@cmake -H. -GNinja -Bbuild -DCMAKE_BUILD_TYPE=RelWithDebInfo
@cmake --build build
release:
@cmake -H. -Bbuild -DCMAKE_BUILD_TYPE=RelWithDebInfo
@cmake --build build
linux-install:
cp -f nheko*.AppImage ~/.local/bin
macos-app-install:
cp -Rf build/nheko.app /Applications
lint:
./.ci/format.sh
image:
docker build -t nheko-app-image .
debian-image:
docker build -f Dockerfile.debian -t nheko-debian-appimage .
linux-deploy:
./.ci/linux/deploy.sh
./.ci/linux/create-packages.sh
macos-deploy:
./.ci/macos/deploy.sh
docker-app-image: image
docker run \
-e CXX=g++-7 \
-e CC=gcc-7 \
-v `pwd`:/build nheko-app-image make release
docker run \
--privileged \
-v `pwd`:/build nheko-app-image make linux-deploy
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
update-translations:
lupdate src/**/*.cc src/**/*.cpp -ts resources/langs/nheko_*.ts -no-obsolete
clean:
rm -rf build
|