Collection of commonly re-usable C++ code
You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
Go to file
heck 7026ce6cc2 pEpLog: add verbosity to `set_enabled()` 3 months ago
build-android PEMA-103 WIP 7 months ago
src pEpLog: add verbosity to `set_enabled()` 3 months ago
test Merge branch 'master' of https://gitea.pep.foundation/pEp.foundation/libpEpCxx11 9 months ago
.clang-format Coding Conventions (!) 1 year ago
.clang-tidy Coding Conventions: .clang-tidy - allow implicit bool conversion 1 year ago
.gitignore .gitignore 1 year ago
LICENSE Add License GPL3 1 year ago
Makefile Build: add basic makefile build 1 year ago
Makefile.conf Build: remove -ansi requirement 9 months ago
README.md README.md 1 year ago
local.conf.example Build: add basic makefile build 1 year ago

README.md

libpEpCxx11

A collection of commonly re-usable C++ code
Important: No dependencies allowed except c++ standard libraries

Resources

Requirements & Platforms

  • License: GPL3

  • C++ standard: C++11

  • supported compilers: at least gcc and clang (both have to work)

  • Build sytem: GNU Make Platforms: Linux, macOS ** Target: static library libpEpCxx.a

  • Windows and Android builds will be done separatly

Public API

  • defined in namespace pEp::CXX
  • header files are installed in PREFIX/include/pEp/ and are used via #include <pEp/filename.hh>

Coding Conventions

The coding conventions are expressed in the top level:

  • .clang-format
  • .clang-tidy

Code committed or submitted via PR will be rejected if not adhering to these coding conventions

Additionally:

  • Include guards: #ifdef/#define style (not #pragma once), naming key: LIBPEPCXX1_<FILENAME>_{HH|HXX}