File tree 4 files changed +4
-19
lines changed
4 files changed +4
-19
lines changed Original file line number Diff line number Diff line change @@ -123,10 +123,6 @@ target_link_libraries(paraviewo PUBLIC Eigen3::Eigen)
123
123
include (tinyxml)
124
124
target_link_libraries (paraviewo PUBLIC tinyxml2)
125
125
126
- # fmt library
127
- include (fmt)
128
- target_link_libraries (paraviewo PUBLIC fmt::fmt)
129
-
130
126
# h5pp + HDF5 library
131
127
include (hdf5)
132
128
target_link_libraries (paraviewo PUBLIC hdf5::hdf5)
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 8
8
message (STATUS "Third-party: creating target 'h5pp'" )
9
9
10
10
SET (H5PP_ENABLE_EIGEN3 ON )
11
- SET (H5PP_ENABLE_FMT ON )
11
+ SET (H5PP_ENABLE_FMT OFF )
12
+ SET (H5PP_ENABLE_SPDLOG OFF )
12
13
SET (H5PP_IS_SUBPROJECT ON )
13
14
14
15
include (CPM)
15
- CPMAddPackage("gh:wildmeshing/h5pp#9872c2f239271c711d572035cc689ae485e12a4c " )
16
+ CPMAddPackage("gh:wildmeshing/h5pp#b46d66b16c11f4e94752433e61d92b152be3d1d8 " )
Original file line number Diff line number Diff line change 1
1
#include " PVDWriter.hpp"
2
2
3
3
#include < tinyxml2.h>
4
- #include < fmt/core.h>
5
4
6
5
namespace paraviewo
7
6
{
@@ -27,7 +26,7 @@ namespace paraviewo
27
26
for (int i = 0 ; i <= time_steps; i += skip_frame)
28
27
{
29
28
tinyxml2::XMLElement *dataset = collection->InsertNewChildElement (" DataSet" );
30
- dataset->SetAttribute (" timestep" , fmt::format ( " {:g} " , t0 + i * dt).c_str ());
29
+ dataset->SetAttribute (" timestep" , std::to_string ( t0 + i * dt).c_str ());
31
30
dataset->SetAttribute (" group" , " " );
32
31
dataset->SetAttribute (" part" , " 0" );
33
32
dataset->SetAttribute (" file" , vtu_names (i).c_str ());
You can’t perform that action at this time.
0 commit comments