From c190271565397c9f786f8e15d03b9cb5b42f4bc7 Mon Sep 17 00:00:00 2001 From: Dominic Masters Date: Wed, 28 Jan 2026 12:28:27 -0600 Subject: [PATCH] Builds on PSP properly. --- .gitea/workflows/build.yml | 2 +- CMakeLists.txt | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitea/workflows/build.yml b/.gitea/workflows/build.yml index c5dfc42..f059864 100644 --- a/.gitea/workflows/build.yml +++ b/.gitea/workflows/build.yml @@ -19,7 +19,7 @@ jobs: apt-get update apt-get install -y build-essential cmake python3 python3-pip python3-polib python3-pil libsdl2-dev libgl1-mesa-dev libzip-dev python3-dotenv python3-pyqt5 python3-opengl liblua5.3-dev - name: Configure CMake for tests - run: cmake -S . -B build -DDUSK_BUILD_TESTS=ON + run: cmake -S . -B build -DDUSK_BUILD_TESTS=ON -DDUSK_TARGET_SYSTEM=linux - name: Build tests run: cmake --build build -- -j$(nproc) - name: Run tests diff --git a/CMakeLists.txt b/CMakeLists.txt index b6fc983..76922aa 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -13,8 +13,8 @@ option(ENABLE_TESTS "Enable tests" ON) # Set target system if(NOT DEFINED DUSK_TARGET_SYSTEM) - # set(DUSK_TARGET_SYSTEM "linux") - set(DUSK_TARGET_SYSTEM "psp") + set(DUSK_TARGET_SYSTEM "linux") + # set(DUSK_TARGET_SYSTEM "psp") endif() # Prep cache