mirror of
https://github.com/qTox/qTox.git
synced 2024-03-22 14:00:36 +08:00
21 lines
526 B
Bash
Executable File
21 lines
526 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# SPDX-License-Identifier: GPL-3.0-or-later AND MIT
|
|
# Copyright (c) 2017-2021 Maxim Biro <nurupo.contributions@gmail.com>
|
|
# Copyright (c) 2021 by The qTox Project Contributors
|
|
|
|
set -euo pipefail
|
|
|
|
"$(dirname "$0")"/download/download_snore.sh
|
|
|
|
cmake -DCMAKE_INSTALL_PREFIX=/windows/ \
|
|
-DCMAKE_BUILD_TYPE=Release \
|
|
-DBUILD_daemon=OFF \
|
|
-DBUILD_settings=OFF \
|
|
-DBUILD_snoresend=OFF \
|
|
-DCMAKE_TOOLCHAIN_FILE=/build/windows-toolchain.cmake \
|
|
.
|
|
|
|
make -j $(nproc)
|
|
make install
|