Skip to content

cpp-testing/gherkin-c

 
 

Repository files navigation

Build Status

Build instruction:

mkdir build
cd build
cmake ..
cmake --build . --target install

You can use this library in your project like this

cmake_minimum_required(VERSION 3.0)
project(gherkincsample)
list(APPEND CMAKE_PREFIX_PATH "INSTALLATION_DIRECTORY")
set(CMAKE_CXX_STANDARD 11)
find_package(gherkin REQUIRED)
add_executable(gherkincsample main.cpp)
target_link_libraries(gherkincsample gherkin::gherkin)

The docs are here.

About

Gherkin parser/compiler in C

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • C 95.2%
  • HTML 1.9%
  • Makefile 1.6%
  • Other 1.3%