Skip to content

Commit

Permalink
Merge branch 'WIP' of github.com:Chrismarsh/CHM into WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
Chrismarsh committed May 10, 2024
2 parents 9a7d518 + 809ea6d commit 9d28527
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
1 change: 0 additions & 1 deletion src/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,6 @@ if(BUILD_WITH_CONAN)
endif()


add_compile_definitions(SPDLOG_FMT_EXTERNAL)
message("-- Final compile: ${CHM_BUILD_FLAGS}")

add_library(CHMmath OBJECT
Expand Down
8 changes: 7 additions & 1 deletion src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -74,8 +74,14 @@ int main (int argc, char *argv[])
kernel.end();
try
{

#if BOOST_VERSION < 107400
boost::filesystem::copy_file(kernel.log_file_path,kernel.o_path / "CHM.log", boost::filesystem::copy_option::overwrite_if_exists);
#else
boost::filesystem::copy_file(kernel.log_file_path,kernel.o_path / "CHM.log", boost::filesystem::copy_options::overwrite_existing);
}
#endif
}

catch(...)
{

Expand Down
1 change: 1 addition & 0 deletions src/timeseries/timeseries.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@
#include <boost/date_time/posix_time/posix_time.hpp> // for boost::posix

#include <boost/variant.hpp>
#include <boost/make_shared.hpp>
#include <boost/lexical_cast.hpp>
#include <boost/iterator/iterator_facade.hpp>
#include <boost/utility.hpp>
Expand Down

0 comments on commit 9d28527

Please sign in to comment.