libretro: attempted build fixes post merge

This commit is contained in:
Eric Warmenhoven 2025-07-27 16:51:22 -04:00
parent cdec4380fd
commit 65c09b1586
No known key found for this signature in database
4 changed files with 4 additions and 4 deletions

View file

@ -62,7 +62,7 @@ libretro-build-windows-x64:
- .libretro-windows-cmake-x86_64
variables:
EXTRA_PATH: bin/Release
CORE_ARGS: ${BASE_CORE_ARGS} -DENABLE_LTO=OFF
CORE_ARGS: ${BASE_CORE_ARGS} -DENABLE_LTO=OFF -G Ninja
before_script:
- export NUMPROC=$(($(nproc)/5))
- sudo apt-get update -qy

View file

@ -21,9 +21,10 @@ list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/CMakeModules")
list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/externals/cmake-modules")
include(DownloadExternals)
include(CMakeDependentOption)
include(FindPkgConfig)
project(citra LANGUAGES C CXX ASM)
# must be invoked after project() command when using CMAKE_TOOLCHAIN_FILE
include(FindPkgConfig)
if (CMAKE_SYSTEM_NAME STREQUAL "Darwin" OR CMAKE_SYSTEM_NAME STREQUAL "iOS")
enable_language(OBJC OBJCXX)
endif()

View file

@ -230,7 +230,7 @@ else()
)
target_link_libraries(zstd_seekable PUBLIC libzstd_static)
target_link_libraries(libzstd_static INTERFACE zstd_seekable)
target_link_libraries(libzstd_static zstd_seekable)
add_library(zstd ALIAS libzstd_static)

View file

@ -9,7 +9,6 @@
#include <algorithm>
#include <chrono>
#include <ctime>
#include <format>
#include <mutex>
#include <sstream>
#include <zstd.h>