- Windows: Gpg4win
- Linux: Install
gnupg
from system package manager - More: https://gnupg.org/download/
$ gpg --keyserver keys.openpgp.org --recv-keys 9B1380D7B700BA9DFAAED4849EEEED2D1566C61B
$ gpg --verify <across_release_package>.sig
scoop bucket add arktoria https://github.com/ArkToria/scoop-bucket
scoop install arktoria/across
The scoop
package provides a simple configuration, and making any modifications in the setting page can generate the full one. The software will be installed in your user directory ~/scoop/bucket/across/
.
Download the mingw-w64-x86_64
package from action or release page. For the action artifacts package, you should unzip
at first.
pacman -U *.pkg.tar.zst
Download and unzip
to use it.
You can install the package from ArchLinuxCN repositories.
For Manjaro
or other based on the Arch Linux operating system user, We recommend to build the package from AUR by yourself.
We provide Flakes support.
Our AppImage is built from Debian, because there has no the latest Qt or other dependence packages in the upstream, so there may be some problems, such as the input method is broken.
Before you start the AppImage, you should chmod u+x <AppImage File>
to make it executable and make sure you glibc
version matchs the minimum requirements.
-
Runtime requirements:
-
Build requirements:
- GCC / Clang / MSVC (Support C++ 20 Standard)
- Ninja (optional)
- Git
- CMake
- GoogleTest
Please refer to Arch Linux PKGBUILD file for installation dependencies.
$ cd <ACross Reposotiry>
$ mkdir -p build && cd build
$ cmake .. \
-DCMAKE_INSTALL_PREFIX=/usr \
-DCMAKE_BUILD_TYPE=Release \
-GNinja
$ cmake --build .
$ DESTDIR=<installation_directory> cmake --install .
CPM.cmake is a CMake script that adds dependency management capabilities to CMake.
We use CPM
as the dependency source manager for C++. In our settings, it will first search the local system package as default. If no dependencies are found, they will be automatically pulled by FetchContent() based on the version. However, some basic dependencies like gcc
and cmake
still require you to manually build and install.
If your build system does not support packaging through the internet, such as OBS, you'll need to manually synchronize the submodules and set the following options to OFF
.
$ cmake .. \
-DCMAKE_INSTALL_PREFIX=/usr \
-DCMAKE_BUILD_TYPE=Release \
-DFETCH_MAGIC_ENUM=OFF \
-DFETCH_SEMVER=OFF \
-DFETCH_SINGLE_APPLICATION=OFF \
-GNinja
The minimum required version of Qt for building the ACross
project is v6.2.0
. However, if you use the official Qt installer, then you need at least version v6.2.1
because of the absent qt6-5compat
component.
The following commands are all executed in PowerShell.
Clone and bootstrap it.
$ git clone --recursive https://github.com/microsoft/vcpkg.git
$ ./vcpkg/bootstrap-vcpkg.bat
You can add the vcpkg
directory to the PATH
environment variable, or use vcpkg.exe
with the absolute path later.
Update it and sources by
$ cd <vcpkg Directory>
$ git pull
$ ./vcpkg/bootstrap-vcpkg.bat
$ cd <ACross Reposotiry>
$ vcpkg install
$ cd <ACross Reposotiry>
$ mkdir build && cd build
$ cmake ../ ^
-G "Visual Studio 16 2019" ^
-DCMAKE_BUILD_TYPE=Release ^
-DCMAKE_TOOLCHAIN_FILE=<vcpkg Directory>/scripts/buildsystems/vcpkg.cmake ^
-DVCPKG_TARGET_TRIPLET=x64-windows
$ cmake --build .
Recommended:
Build the MSYS2 package from ACross PKGBUILD following the official tutorial.
$ pacman -S base-devel mingw-w64-x86_64-toolchain mingw-w64-x86_64-gcc
$ cd <ACross Reposotiry>/pkgbuild/msys2/
$ MINGW_ARCH=mingw64 makepkg-mingw -sCLfi
You can also follow the steps below to build manually:
Download the installer from Official Website | TUNA Mirror
The package manager called
pacman
, which Arch Linux users should be familiar with, is also the one for MSYS2. But to install packages you do not need root privilege.
$ pacman -S mingw-w64-x86_64-qt6-base \
mingw-w64-x86_64-qt6-translations \
mingw-w64-x86_64-qt6-imageformats \
mingw-w64-x86_64-qt6-5compat \
mingw-w64-x86_64-qt6-tools \
mingw-w64-x86_64-curl \
mingw-w64-x86_64-fmt \
mingw-w64-x86_64-spdlog \
mingw-w64-x86_64-protobuf \
mingw-w64-x86_64-grpc \
mingw-w64-x86_64-nlohmann-json \
mingw-w64-x86_64-zxing-cpp \
mingw-w64-x86_64-cmake \
mingw-w64-x86_64-clang \
mingw-w64-x86_64-ninja \
mingw-w64-x86_64-gcc \
mingw-w64-x86_64-gtest
Open your Mingw-w64 Terminal in Windows Launcher.
$ mkdir build && cd build
$ cmake ../ -GNinja -DCMAKE_BUILD_TYPE=Release
$ cmake --build .
The ENABLE_DEPLOYMENT
option is ON
by default, this will copy the required resources (including the *.dll
) to the compiled directory.