Skip to content
Snippets Groups Projects
Commit bdd9b751 authored by Christian Nowke's avatar Christian Nowke
Browse files

added events

parent 98506670
No related branches found
No related tags found
No related merge requests found
...@@ -27,10 +27,12 @@ set (NETT_SCHEMA_DIR "" CACHE PATH "The nett schema path" ) ...@@ -27,10 +27,12 @@ set (NETT_SCHEMA_DIR "" CACHE PATH "The nett schema path" )
set (NETT_LIBRARY "" CACHE FILEPATH "The nett library to link against" ) set (NETT_LIBRARY "" CACHE FILEPATH "The nett library to link against" )
set (NETT_LIBRARY_DEBUG "" CACHE FILEPATH "The nett debug library to link against" ) set (NETT_LIBRARY_DEBUG "" CACHE FILEPATH "The nett debug library to link against" )
set( ZMQ_INCLUDE_DIR "" CACHE PATH "Path to the include directory of zmq" )
set( ZMQ_LIBRARY "" CACHE FILEPATH "The zmq library to link against" ) set( ZMQ_LIBRARY "" CACHE FILEPATH "The zmq library to link against" )
include( "src/nett-python/_SourceFiles.cmake" ) include( "src/nett-python/_SourceFiles.cmake" )
include_directories (${ZMQ_INCLUDE_DIR})
include_directories (${NETT_INCLUDE_DIR}) include_directories (${NETT_INCLUDE_DIR})
include_directories (${BOOST_INCLUDE_DIR}) include_directories (${BOOST_INCLUDE_DIR})
include_directories (${PYTHON_INCLUDE_DIR}) include_directories (${PYTHON_INCLUDE_DIR})
...@@ -43,6 +45,10 @@ add_event ( nett_python routing_message ${NETT_SCHEMA_DIR} ${PROJECT_BINARY_DIR} ...@@ -43,6 +45,10 @@ 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 string_message ${NETT_SCHEMA_DIR} ${PROJECT_BINARY_DIR} )
add_event ( nett_python float_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_event ( nett_python string_vector_message ${NETT_SCHEMA_DIR} ${PROJECT_BINARY_DIR} )
add_event ( nett_python float_vector_message ${NETT_SCHEMA_DIR} ${PROJECT_BINARY_DIR} )
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_library (nett_python SHARED ${ProjectSources} ${nett_python_EVENT_SOURCE_FILES}) add_library (nett_python SHARED ${ProjectSources} ${nett_python_EVENT_SOURCE_FILES})
target_link_libraries( nett_python optimized ${NETT_LIBRARY} debug ${NETT_LIBRARY_DEBUG}) target_link_libraries( nett_python optimized ${NETT_LIBRARY} debug ${NETT_LIBRARY_DEBUG})
......
...@@ -12,6 +12,9 @@ ...@@ -12,6 +12,9 @@
#include <../schema/string_message.pb.h> #include <../schema/string_message.pb.h>
#include <../schema/float_message.pb.h> #include <../schema/float_message.pb.h>
#include <../schema/string_vector_message.pb.h> #include <../schema/string_vector_message.pb.h>
#include <../schema/float_vector_message.pb.h>
#include <../schema/hierarchy_message.pb.h>
#include <../schema/population_rates_message.pb.h>
using namespace boost::python; using namespace boost::python;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment