You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
nheko/Makefile

69 lines
1.5 KiB

DEPS_BUILD_DIR=.deps
DEPS_SOURCE_DIR=deps
debug:
@cmake -H. -GNinja -Bbuild -DCMAKE_BUILD_TYPE=Debug -DCMAKE_EXPORT_COMPILE_COMMANDS=1
@cmake --build build
third_party:
@mkdir -p ${DEPS_BUILD_DIR}/usr/{lib,include}/
@cmake -GNinja -H${DEPS_SOURCE_DIR} -B${DEPS_BUILD_DIR} \
-DCMAKE_BUILD_TYPE=Release \
-DUSE_BUNDLED_BOOST=OFF
@cmake --build ${DEPS_BUILD_DIR}
ci:
mkdir -p ${DEPS_BUILD_DIR}/usr/{lib,include}/
cmake -H${DEPS_SOURCE_DIR} -B${DEPS_BUILD_DIR} -DCMAKE_BUILD_TYPE=Release
cmake --build ${DEPS_BUILD_DIR}
cmake -H. -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
7 years ago
macos-app-install:
cp -Rf build/nheko.app /Applications
8 years ago
lint:
7 years ago
./.ci/format.sh
image:
docker build -t nheko-app-image .
debian-image:
docker build -f Dockerfile.debian -t nheko-debian-appimage .
7 years ago
linux-deploy:
./.ci/linux/deploy.sh
macos-deploy:
./.ci/macos/deploy.sh
7 years ago
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 \
7 years ago
-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:
7 years ago
lupdate \
-locations relative \
-Iinclude/dialogs \
-Iinclude \
src/ -ts resources/langs/nheko_*.ts -no-obsolete
clean:
7 years ago
rm -rf build