Skip to content

arcana261/autotools

Repository files navigation

Build Status Coverage Status

autotools

A backbone for autotools and C/C++

See more doc here

requirements

  1. glib-2.0
  2. autotools

what to do?

./autogen.sh
./configure
make check
make
make install

linter

requires cpplint, install via pip install --user cpplint

make lint

unit test

make unittest

gcc/clang sanity checks

make sanity

code coverage

requires gcov and lcov, install via apt-get install gcov lcov

make coverage

debian packaging

edit files in pkg folder, then run

make deb

vscode coding

contents of .vscode/c_cpp_properties.json

{
    "configurations": [
        {
            "name": "mehdi",
            "includePath": [
                "/usr/include",
                "/usr/include/glib-2.0/glib",
                "/home/arcana/Documents/Projects/autotools",
                "/home/arcana/Documents/Projects/autotools/src",
                "/home/arcana/Documents/Projects/autotools/src/whine"
            ],
            "browse": {
                "path": [
                    "/usr/include/glib-2.0/glib"
                ]
            },
            "intelliSenseMode": "clang-x64",
            "compilerPath": "/usr/bin/clang",
            "cStandard": "c11",
            "cppStandard": "c++17"
        }
    ],
    "version": 4
}

About

A backbone for autotools and C/C++

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published