20 Mar
2024
20 Mar
'24
8:07 p.m.
Dennis Luehring wrote: ...
find_package( Boost REQUIRED COMPONENTS locale ) add_executable( my_test main.cpp) target_link_libraries( my_test PRIVATE Boost::boost ) ... any idea what is happening here?
Since Locale is a compiled library, you need to link to Boost::locale. target_link_libraries( my_test PRIVATE Boost::boost Boost::locale )