Giter VIP home page Giter VIP logo

conan-cmocka's Introduction

conan-cmocka

Packaging up cmocka in conan.

Originally hosted on bintray: https://bintray.com/samuelmarks/cmocka/cmocka%3Asamuelmarks, now this is deprecated.

Developing conan-cmocka, rebuild with:

conan create . <your_username>/<your_channel>

Usage

Add a conanfile.txt with:

[requires]
cmocka/1.1.3@samuelmarks/stable

[generators]
cmake

Add this to your CMakeLists.txt:

enable_testing()
include(CTest)

include(${CMAKE_BINARY_DIR}/conanbuildinfo.cmake)
conan_basic_setup(KEEP_RPATHS)

find_package(CMOCKA REQUIRED)
if (CMOCKA_FOUND)
    include_directories("${CONAN_INCLUDE_DIRS_CMOCKA}/include")
    add_executable(test_0 test/test_0.c)
    add_test(test_0 test_0)
    target_link_libraries(test_0 cmocka)
else ()
    message(could not find CMocka, did you run `conan install`?)
endif ()

Where test/test_0.c contains:

#include <stdarg.h>
#include <stddef.h>
#include <setjmp.h>
#include "cmocka.h"

/* A test case that does nothing and succeeds. */
static void null_test_success(void **state) {
    (void) state; /* unused */
}

int main(void) {
    const struct CMUnitTest tests[] = {
            cmocka_unit_test(null_test_success),
    };

    return cmocka_run_group_tests(tests, NULL, NULL);
}

conan-cmocka's People

Contributors

samuelmarks avatar alvarogarcia7 avatar

Watchers

James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.