From 390084c9d808ca62ad028e362065d475db684189 Mon Sep 17 00:00:00 2001 From: Kawe Mazidjatari <48657826+Mauler125@users.noreply.github.com> Date: Tue, 2 Jan 2024 15:24:54 +0100 Subject: [PATCH] CMake: remove OPTION_GAMEDLL Only S3 is supported moving forward; see commit e825a1e7. --- r5dev/cmake/Options.cmake | 9 --------- 1 file changed, 9 deletions(-) diff --git a/r5dev/cmake/Options.cmake b/r5dev/cmake/Options.cmake index 4a2d4fb2..c2ccb067 100644 --- a/r5dev/cmake/Options.cmake +++ b/r5dev/cmake/Options.cmake @@ -26,14 +26,6 @@ macro( apply_project_settings ) option( OPTION_CERTAIN "This build is certain; debug statements (such as DevMsg(...)) will NOT be compiled" OFF ) option( OPTION_RETAIL "This build is retail; enable this among with 'OPTION_CERTAIN' to form a release build" OFF ) - set( OPTION_GAMEDLL "GAMEDLL_S3" CACHE STRING "Game DLL version" ) - set_property( CACHE OPTION_GAMEDLL PROPERTY STRINGS - "GAMEDLL_S0" - "GAMEDLL_S1" - "GAMEDLL_S2" - "GAMEDLL_S3" - ) - # Set common defines add_compile_definitions( "_CRT_SECURE_NO_WARNINGS" @@ -48,7 +40,6 @@ macro( apply_project_settings ) # Target is 64bits only. "PLATFORM_64BITS" - "${OPTION_GAMEDLL}" ) if( ${OPTION_CERTAIN} )