File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -17,13 +17,14 @@ if (EXISTS "$ENV{HOME}/homebrew")
1717 list (APPEND CMAKE_FIND_ROOT_PATH "$ENV{HOME} /homebrew" )
1818endif ()
1919
20- find_package (Boost REQUIRED
20+ find_package (Boost
2121 COMPONENTS
2222 filesystem
2323 chrono
2424 date_time
2525 system
2626 thread
27+ REQUIRED CONFIG
2728)
2829find_package (Eigen REQUIRED)
2930find_package (FmtLib REQUIRED)
Original file line number Diff line number Diff line change 2222#include " VrsBindings.h"
2323#include " reader/Reader.h"
2424#include " utils/Utils.h"
25+ #include " writer/Writer.h"
2526
2627#if IS_VRS_FB_INTERNAL()
2728#include " archive/Archive.h"
2829#include " fb/FbInternal.h"
2930#include " fb/dataset_snapshot/PyDatasetSnapshot.h"
3031#include " filter/Filter.h" // Disable filter internally until AsyncImageFilter is reworked.
31- #include " writer/Writer.h"
3232#endif
3333
3434#ifndef PYBIND_MODULE_NAME
@@ -59,9 +59,9 @@ PYBIND11_MODULE(PYBIND_MODULE_NAME, m) {
5959 pyvrs::pybind_fbinternal (m);
6060#endif
6161 pyvrs::pybind_reader (m);
62+ pyvrs::pybind_writer (m);
6263#if IS_VRS_FB_INTERNAL()
6364 pyvrs::pybind_filter (m); // Disable filter internally until AsyncImageFilter is reworked.
64- pyvrs::pybind_writer (m);
6565 pyvrs::pybind_archive (m);
6666 pyvrs::pybind_dataset_snapshot (m);
6767#endif
You can’t perform that action at this time.
0 commit comments