CMakeezer / gherkin-c

Gherkin parser/compiler in C

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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

License:MIT License


Languages

Language:C 91.9%Language:C++ 3.3%Language:Gherkin 2.0%Language:Makefile 1.8%Language:CMake 0.8%Language:JSONiq 0.3%