Skip to content
Snippets Groups Projects
Commit a313b6f3 authored by Charles Villard's avatar Charles Villard
Browse files

edit: fmt: revert private statement as dependencies needs it too

parent 7f23b042
No related branches found
No related tags found
No related merge requests found
Pipeline #61965 failed
......@@ -117,10 +117,9 @@ if (PYBIND)
add_pybind_dependency(${module_name})
##
target_link_libraries(${pybind_module_name} PRIVATE fmt::fmt)
endif()
target_link_libraries(${module_name} PRIVATE fmt::fmt)
target_link_libraries(${module_name} PUBLIC fmt::fmt)
target_link_libraries(${module_name} PUBLIC Threads::Threads)
target_compile_features(${module_name} PRIVATE cxx_std_14)
......
......@@ -63,7 +63,6 @@ endif()
target_link_libraries(tests${module_name} PRIVATE ${module_name})
target_link_libraries(tests${module_name} PRIVATE Catch2::Catch2WithMain)
target_link_libraries(tests${module_name} PRIVATE fmt::fmt)
list(APPEND CMAKE_MODULE_PATH ${catch2_SOURCE_DIR}/extras)
include(CTest)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment