Skip to content

Latest commit

 

History

History
30 lines (23 loc) · 459 Bytes

File metadata and controls

30 lines (23 loc) · 459 Bytes

C++ Devcontainer

Devcontainer

Basic C and C++ devcontainer with cmake, compiler warnings, clang-tidy and clang-format.

Installed tools

  • ccache
  • clang
  • clang-tidy
  • clang-format
  • cmake
  • cppcheck
  • lldb
  • vcpkg

Usage

// devcontainer.json

{
    "name": "C++ Devcontainer",
    "image": "dhglennvl/cpp-devcontainer:latest",
    "capAdd": [ "SYS_PTRACE" ],
    "securityOpt": [ "seccomp=unconfined" ],
    "remoteUser": "user"
}