diff --git a/CMakeLists.txt b/CMakeLists.txt index a1e0f4d..e367b4c 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -61,6 +61,10 @@ foreach(_script ${EXAMPLEB4A_SCRIPTS}) ) endforeach() +file(GLOB_RECURSE SOURCES "${PROJECT_SOURCE_DIR}/src/*.cc" ) +add_subdirectory(lib/pybind11) +pybind11_add_module(compiled ${SOURCES} "${PROJECT_SOURCE_DIR}/bind/bindings.cpp") + #---------------------------------------------------------------------------- # Install the executable to 'bin' directory under CMAKE_INSTALL_PREFIX # diff --git a/bind/bindings.cpp b/bind/bindings.cpp new file mode 100644 index 0000000..e69de29