From 71a1e77fe762a33c5a0fdaa06bd65c0ea41f30c4 Mon Sep 17 00:00:00 2001 From: Detanup01 <91248446+Detanup01@users.noreply.github.com> Date: Tue, 14 May 2024 20:44:06 +0200 Subject: [PATCH] yes, linux doesnt need thos files, idk why --- premake5.lua | 25 +++++++++++++------------ 1 file changed, 13 insertions(+), 12 deletions(-) diff --git a/premake5.lua b/premake5.lua index 15f75ac4..6a6838a2 100644 --- a/premake5.lua +++ b/premake5.lua @@ -286,10 +286,7 @@ project "SteamEmu" linux_files } removefiles { - "libs/simpleini/**" - } - - removefiles { + "libs/simpleini/**", "helpers/pe_**" } buildoptions { @@ -362,22 +359,26 @@ project "SteamEmu" -- ExperimentalDebug LINUX filter { "ExperimentalDebug", "options:os=linux" } files { - default_files, - predefined_libs, - crash_linux, - "controller/**", + linux_files, "overlay_experimental/**" } + + removefiles { + "libs/simpleini/**", + "helpers/pe_**" + } defines { "DEBUG", "CONTROLLER_SUPPORT", "EMU_OVERLAY", "ImTextureID=ImU64", "UTF_CPP_CPLUSPLUS=201703L", "CURL_STATICLIB", "UNICODE", "_UNICODE", "GNUC", "EMU_BUILD_STRING=".._OPTIONS["emubuild"] } -- ExperimentalRelease LINUX filter { "ExperimentalRelease", "options:os=linux" } files { - default_files, - predefined_libs, - crash_linux, - "controller/**", + linux_files, "overlay_experimental/**" } + + removefiles { + "libs/simpleini/**", + "helpers/pe_**" + } defines { "NDEBUG", "EMU_RELEASE_BUILD", "CONTROLLER_SUPPORT", "EMU_OVERLAY", "ImTextureID=ImU64", "UTF_CPP_CPLUSPLUS=201703L", "CURL_STATICLIB", "UNICODE", "_UNICODE", "GNUC", "EMU_BUILD_STRING=".._OPTIONS["emubuild"] } -- End SteamEmu