From f85d4a429435917b843a50e2e7f35181196feb20 Mon Sep 17 00:00:00 2001 From: OatmealDome Date: Thu, 15 Aug 2024 12:39:56 -0400 Subject: [PATCH] CMakeLists: Remove flag for creating a Steam build --- CMakeLists.txt | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index e3a33876d5..7ca6679f28 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -104,7 +104,6 @@ option(ENABLE_VULKAN "Enables vulkan video backend" ON) option(USE_DISCORD_PRESENCE "Enables Discord Rich Presence, show the current game on Discord" ON) option(USE_MGBA "Enables GBA controllers emulation using libmgba" ON) option(ENABLE_AUTOUPDATE "Enables support for automatic updates" ON) -option(STEAM "Creates a build for Steam" OFF) option(USE_RETRO_ACHIEVEMENTS "Enables integration with retroachievements.org" ON) # Maintainers: if you consider blanket disabling this for your users, please @@ -391,7 +390,7 @@ if(ENABLE_LTO) endif() if(UNIX) - if(LINUX_LOCAL_DEV OR (CMAKE_SYSTEM_NAME STREQUAL "Linux" AND STEAM)) + if(LINUX_LOCAL_DEV) add_definitions(-DLINUX_LOCAL_DEV) endif() endif() @@ -753,10 +752,6 @@ else() message(STATUS "libsystemd not found, disabling traversal server watchdog support") endif() -if(STEAM) - add_definitions(-DSTEAM) -endif() - if (WIN32) include_directories(Externals/WIL/include) include_directories(Externals/OpenAL/include)