You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Makes it easier(ish) to build with different compilers on different platforms
Allows installation in a way which other projects can use find_package(inplace_vector) and then target_link_libraries(myapp inplace_vector::inplace_vector) just like any library.
Package managers like conan and vcpkg like it. In case you plan on releasing.
Even though this is a single-header library - it's still useful to have a CMake for it. Benefits:
find_package(inplace_vector)and thentarget_link_libraries(myapp inplace_vector::inplace_vector)just like any library.