Crossed Fingers 🤞
C++ testing framework
Loading...
Searching...
No Matches
Crossed Fingers 🤞

License: MIT Version

C++ testing framework

Installation

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)

Usage

See USAGE.md.

Contributors

Want to contribute? Please read CODE_OF_CONDUCT.md and CONTRIBUTING.md

List of contributors (ordered by date of first contribution) GitHub contributors

Security

See SECURITY.md.