mirror of
https://git.citron-emu.org/citron/emu
synced 2025-05-12 19:00:37 +01:00

Reverted video_core changes as they were causing instability and OpenGL had no video output. The following commits were reverted:1fd5fefcb1
edfb500ee7
b25c7653e6
5d952717ff
964bbf489a
a4088f3a1e
18def48dfe
3205c9b691
2f57a35d2d
f706427815
fc88c06769
Signed-off-by: Zephyron <zephyron@citron-emu.org>
19 lines
467 B
Bash
Executable file
19 lines
467 B
Bash
Executable file
#!/bin/bash -e
|
|
|
|
# SPDX-FileCopyrightText: 2021 citron Emulator Project
|
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
set -x
|
|
|
|
echo -e "\e[1m\e[33mBuild tools information:\e[0m"
|
|
cmake --version
|
|
gcc -v
|
|
tx --version
|
|
|
|
mkdir build && cd build
|
|
cmake .. -DENABLE_QT_TRANSLATION=ON -DGENERATE_QT_TRANSLATION=ON -DCMAKE_BUILD_TYPE=Release -DENABLE_SDL2=OFF -DCITRON_TESTS=OFF -DCITRON_USE_BUNDLED_VCPKG=ON
|
|
make translation
|
|
cd ..
|
|
|
|
cd dist/languages
|
|
tx push -s
|