Skip to content

Commit

Permalink
Fix missing progresstracker header
Browse files Browse the repository at this point in the history
Some system would fail to find
the progresstracker header file.
  • Loading branch information
mlund committed Mar 27, 2023
1 parent 39cac86 commit b3dd135
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion src/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,7 @@ target_link_libraries(libfaunus PUBLIC
functionparser
nlohmann_json
pcg-cpp
progresstracker
range-v3
spdlog
xdrfile
Expand Down Expand Up @@ -148,7 +149,7 @@ if (ENABLE_PYTHON)

pybind11_add_module(pyfaunus pyfaunus.cpp ${objs})
target_link_libraries(pyfaunus PRIVATE
project_options cereal Eigen functionparser nlohmann_json pybind11_json range-v3 spdlog xdrfile zstr)
project_options cereal Eigen functionparser nlohmann_json progresstracker pybind11_json range-v3 spdlog xdrfile zstr)
target_compile_definitions(pyfaunus PUBLIC SPDLOG_COMPILED_LIB)
target_compile_definitions(pyfaunus PRIVATE DOCTEST_CONFIG_DISABLE)

Expand Down
2 changes: 1 addition & 1 deletion src/actions.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
#include "energy.h"
#include "potentials.h"
#include "io.h"
#include "progress_tracker.h"
#include "aux/arange.h"
#include <progress_tracker.h>
#include <range/v3/view/concat.hpp>

namespace Faunus {
Expand Down

0 comments on commit b3dd135

Please sign in to comment.