Giter Site home page Giter Site logo

cmake-cpp-lib-template's Introduction

Overview

Template repository to be used as a base for creating C++ libraries built with CMake. This repository provides:

  • Commonly accepted directory layout: cmake for CMake utilities and package config, include/<libname> for public headers, src for library sources and private headers, examples and tests for library examples and tests correspondingly.
  • CMakeLists.txt files thoroughly implemented with the following ideas in mind:
    • user should be able to build library both as subproject (probably fetched with CMake's FetchContent_MakeAvailable) and as a stand-alone project
    • user should be able to build examples/tests as part of the library build or as a stand-alone projects
    • multi-configuration CMake generators should be supported
    • package systems (conan, vcpkg and others) should be respected, which means that library CMakeLists.txt file should contain only build requirements, i.e. should not hardcode any compiler/linker flags unless they are absolutely required to build the library
  • Basic preset file CMakePresets.json which is a modern way (since CMake 3.19) for specifying build options (instead of hardcoding them in the CMakeLists.txt or setting on the command line)
  • My personal .clang-format for code-style worth trying

Note, that I prefer googletest as a testing framework so it's the one used in this repository. Still it's not a big deal to replace it with any other of your choice.

cmake-cpp-lib-template's People

Contributors

pananton 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.