From d7482999a48da72ea00e085feb7917f27fc25841 Mon Sep 17 00:00:00 2001 From: Dzmitry Neviadomski Date: Mon, 26 Apr 2021 21:14:34 +0300 Subject: [PATCH] Fix CMake configurations for Transmission. --- CMakeLists.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 676727f165..4dfa349850 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -39,7 +39,8 @@ string(TOLOWER "${CMAKE_BUILD_TYPE}" CMAKE_BUILD_TYPE_LOWER) # get rid of the extra default configurations # what? why would you get id of other useful build types? - Ellzey -set(CMAKE_CONFIGURATION_TYPES "Debug;Release" CACHE STRING "Limited configurations" FORCE) +# Transmission - we need all configurations +# set(CMAKE_CONFIGURATION_TYPES "Debug;Release" CACHE STRING "Limited configurations" FORCE) set(EVENT__LIBRARY_TYPE DEFAULT CACHE STRING "Set library type to SHARED/STATIC/BOTH (default SHARED for MSVC, otherwise BOTH)")