diff --git a/CMakeLists.txt b/CMakeLists.txt
index 0da031b5d19123d33447dc3c1ee0b0fe52d68541..6291b3caded8d1cb8073010f55418ec07619f9a2 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -42,6 +42,7 @@ include_directories ("${CMAKE_CURRENT_BINARY_DIR}")
 add_event ( nett_python routing_message ${NETT_SCHEMA_DIR} ${PROJECT_BINARY_DIR} )
 add_event ( nett_python string_message ${NETT_SCHEMA_DIR} ${PROJECT_BINARY_DIR} )
 add_event ( nett_python float_message ${NETT_SCHEMA_DIR} ${PROJECT_BINARY_DIR} )
+add_event ( nett_python string_vector_message ${NETT_SCHEMA_DIR} ${PROJECT_BINARY_DIR} )
 add_library (nett_python SHARED ${ProjectSources} ${nett_python_EVENT_SOURCE_FILES})
 
 target_link_libraries( nett_python optimized ${NETT_LIBRARY} debug ${NETT_LIBRARY_DEBUG})
diff --git a/src/nett-python/nett-python.cpp b/src/nett-python/nett-python.cpp
index 7071748afc181d57971cfc88416e09b87e06b074..5a13d9129078853b39b135424146f41b54fc6bdb 100644
--- a/src/nett-python/nett-python.cpp
+++ b/src/nett-python/nett-python.cpp
@@ -11,6 +11,7 @@
 
 #include <../schema/string_message.pb.h>
 #include <../schema/float_message.pb.h>
+#include <../schema/string_vector_message.pb.h>
 
 using namespace boost::python;