mirror of https://github.com/qTox/qTox.git
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.
18 lines
431 B
18 lines
431 B
#!/bin/bash |
|
|
|
# SPDX-License-Identifier: GPL-3.0-or-later AND MIT |
|
# Copyright (c) 2022 by The qTox Project Contributors |
|
|
|
set -euo pipefail |
|
|
|
"$(dirname "$0")"/download/download_msgpack_c.sh |
|
|
|
cmake -DCMAKE_INSTALL_PREFIX=/windows/ \ |
|
-DCMAKE_BUILD_TYPE=Release \ |
|
-DCMAKE_TOOLCHAIN_FILE=/build/windows-toolchain.cmake \ |
|
-DMSGPACK_BUILD_EXAMPLES=OFF \ |
|
-DMSGPACK_BUILD_TESTS=OFF \ |
|
. |
|
|
|
make -j $(nproc) |
|
make install
|
|
|