From dffa0fa7f8549d3dad1973240ce36571c0062c80 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20Vondru=C5=A1?= Date: Fri, 24 Jul 2020 17:26:16 +0200 Subject: [PATCH] python: oh, forgot to install Containers/PythonBindings.h. --- src/Corrade/CMakeLists.txt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/Corrade/CMakeLists.txt b/src/Corrade/CMakeLists.txt index d8eb55d..511a186 100644 --- a/src/Corrade/CMakeLists.txt +++ b/src/Corrade/CMakeLists.txt @@ -27,4 +27,6 @@ if(WITH_PYTHON) add_custom_target(CorradePython SOURCES PythonBindings.h) set_target_properties(CorradePython PROPERTIES FOLDER "Corrade/Python") install(FILES PythonBindings.h DESTINATION ${CORRADE_INCLUDE_INSTALL_DIR}) + + add_subdirectory(Containers) endif()