mirror of https://github.com/CGAL/cgal
cleanup
This commit is contained in:
parent
0578f9ce05
commit
465d2046ae
|
|
@ -48,7 +48,6 @@ else()
|
||||||
message(STATUS "NOTICE: DICOM files (.dcm) require the VTK libraries, and will not be readable.")
|
message(STATUS "NOTICE: DICOM files (.dcm) require the VTK libraries, and will not be readable.")
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
find_package(Boost)
|
|
||||||
|
|
||||||
qt6_wrap_ui( imgUI_FILES Image_res_dialog.ui raw_image.ui)
|
qt6_wrap_ui( imgUI_FILES Image_res_dialog.ui raw_image.ui)
|
||||||
cgal_lab_plugin(io_image_plugin Io_image_plugin
|
cgal_lab_plugin(io_image_plugin Io_image_plugin
|
||||||
|
|
|
||||||
|
|
@ -1532,7 +1532,7 @@ Image* Io_image_plugin::createDirectoryImage(const QString& dirname,
|
||||||
paths.push_back(x.path());
|
paths.push_back(x.path());
|
||||||
}
|
}
|
||||||
|
|
||||||
// boost::filesystem::directory_iterator does not guarantee a sorted order
|
// std::filesystem::directory_iterator does not guarantee a sorted order
|
||||||
std::sort(std::begin(paths), std::end(paths));
|
std::sort(std::begin(paths), std::end(paths));
|
||||||
|
|
||||||
for(const std::filesystem::path& p : paths)
|
for(const std::filesystem::path& p : paths)
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue