C++ testing framework
You can retrieve rpm/deb package attached to latest release.
Devel packages are also built for each push to master branch in package workflow.
A nix flake package is also available inside flake.nix.
For CMake-based projects, you can simply use FetchContent this way:
FetchContent_Declare(
crossedfingers
GIT_REPOSITORY https://github.com/Gashmob/CrossedFingers.git
GIT_TAG v1.0.0
)
FetchContent_GetProperties(crossedfingers)
if (NOT crossedfingers_POPULATED)
message(STATUS "Fetching crossedfingers...")
FetchContent_Populate(crossedfingers)
add_subdirectory(${crossedfingers_SOURCE_DIR})
endif ()
target_link_libraries(my_test PUBLIC crossedfingers crossedfingers_main)See USAGE.md.
Want to contribute? Please read CODE_OF_CONDUCT.md and CONTRIBUTING.md
List of contributors (ordered by date of first contribution)
See SECURITY.md.