diff --git a/CMakeLists.txt b/CMakeLists.txt
index 0c16d269789fe5123789ee52d88a7ba6210e599e..fc2718e0555619364402599528561d28ad61aa72 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -49,6 +49,8 @@ add_event ( nett_python float_vector_message ${NETT_SCHEMA_DIR} ${PROJECT_BINARY
add_event ( nett_python hierarchy_message ${NETT_SCHEMA_DIR} ${PROJECT_BINARY_DIR} )
add_event ( nett_python population_rates_message ${NETT_SCHEMA_DIR} ${PROJECT_BINARY_DIR} )
add_event ( nett_python flux_message ${NETT_SCHEMA_DIR} ${PROJECT_BINARY_DIR} )
+add_event ( nett_python connectivity_message ${NETT_SCHEMA_DIR} ${PROJECT_BINARY_DIR} )
+add_event ( nett_python map_string_float_vector_message ${NETT_SCHEMA_DIR} ${PROJECT_BINARY_DIR} )
add_library (nett_python SHARED ${ProjectSources} ${nett_python_EVENT_SOURCE_FILES})
diff --git a/src/nett-python/nett-python.cpp b/src/nett-python/nett-python.cpp
index 994f0089c37bf095fe8d5574a4dd299fa566b9b9..c1a48cc4cea0c0e3291e7fe896dddf5a5902b5e8 100644
--- a/src/nett-python/nett-python.cpp
+++ b/src/nett-python/nett-python.cpp
@@ -16,6 +16,8 @@
#include <../schema/hierarchy_message.pb.h>
#include <../schema/population_rates_message.pb.h>
#include <../schema/flux_message.pb.h>
+#include <../schema/connectivity_message.pb.h>
+#include <../schema/map_string_float_vector_message.pb.h>
using namespace boost::python;