From 8ee4ed882cc8a76acd776f1a44a225913af3b5b6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20Vondru=C5=A1?= Date: Sun, 7 May 2023 20:50:03 +0200 Subject: [PATCH] CMake: enter the Corrade/Containers directory unconditionally. The Python-specific conditionals are inside as well. --- src/Corrade/CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Corrade/CMakeLists.txt b/src/Corrade/CMakeLists.txt index e93e7b0..394038c 100644 --- a/src/Corrade/CMakeLists.txt +++ b/src/Corrade/CMakeLists.txt @@ -30,6 +30,6 @@ set(CMAKE_FOLDER "Corrade/Python") if(MAGNUM_WITH_PYTHON) add_custom_target(CorradePython SOURCES PythonBindings.h) install(FILES PythonBindings.h DESTINATION ${CORRADE_INCLUDE_INSTALL_DIR}) - - add_subdirectory(Containers) endif() + +add_subdirectory(Containers)