From 18184d5c1f1ef70be7d15345e8b512fb72114e1f Mon Sep 17 00:00:00 2001 From: nullgemm Date: Sat, 2 Jul 2022 23:09:01 +0200 Subject: [PATCH] add missing condition on darwin&linux steam service inclusion in cmakelists --- strife-ve-src/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/strife-ve-src/CMakeLists.txt b/strife-ve-src/CMakeLists.txt index 613e1ad..f9df5b8 100644 --- a/strife-ve-src/CMakeLists.txt +++ b/strife-ve-src/CMakeLists.txt @@ -254,7 +254,7 @@ if(ENABLE_STEAM_SERVICE) ) # Linux - if(NOT APPLE AND NOT WIN32) + if(NOT APPLE AND NOT WIN32 AND ENABLE_STEAM_SERVICE) add_library(SteamService INTERFACE IMPORTED) add_dependencies(SteamService steam-service-project) target_compile_definitions(SteamService INTERFACE _USE_STEAM_)