Skip to content

Instantly share code, notes, and snippets.

@r-ryantm
Created February 7, 2020 07:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save r-ryantm/b32c33dec097beef093abdfad2c991c0 to your computer and use it in GitHub Desktop.
Save r-ryantm/b32c33dec097beef093abdfad2c991c0 to your computer and use it in GitHub Desktop.
/nix/store/wbigmjb6b1griq5yszbf5c533qb3wms0-cpp-utilities-5.2.0
├── include
│   └── c++utilities
│   ├── application
│   │   ├── argumentparser.h
│   │   ├── commandlineutils.h
│   │   ├── fakeqtconfigarguments.h
│   │   └── global.h
│   ├── chrono
│   │   ├── datetime.h
│   │   ├── format.h
│   │   ├── period.h
│   │   └── timespan.h
│   ├── conversion
│   │   ├── binaryconversion.h
│   │   ├── binaryconversionprivate.h
│   │   ├── conversionexception.h
│   │   ├── stringbuilder.h
│   │   └── stringconversion.h
│   ├── global.h
│   ├── io
│   │   ├── ansiescapecodes.h
│   │   ├── binaryreader.h
│   │   ├── binarywriter.h
│   │   ├── bitreader.h
│   │   ├── copy.h
│   │   ├── inifile.h
│   │   ├── misc.h
│   │   ├── nativefilestream.h
│   │   └── path.h
│   ├── misc
│   │   ├── flagenumclass.h
│   │   ├── levenshtein.h
│   │   ├── math.h
│   │   ├── multiarray.h
│   │   ├── parseerror.h
│   │   └── traits.h
│   ├── tests
│   │   ├── cppunit.h
│   │   ├── outputcheck.h
│   │   └── testutils.h
│   └── version.h
├── lib
│   ├── libc++utilities.a
│   └── pkgconfig
│   └── c++utilities.pc
└── share
└── c++utilities
├── cmake
│   ├── c++utilitiesConfig.cmake
│   ├── c++utilitiesConfigVersion.cmake
│   ├── c++utilitiesTargets.cmake
│   ├── c++utilitiesTargets-release.cmake
│   ├── modules
│   │   ├── 3rdParty.cmake
│   │   ├── AppTarget.cmake
│   │   ├── BasicConfig.cmake
│   │   ├── ConfigHeader.cmake
│   │   ├── Doxygen.cmake
│   │   ├── LibraryTarget.cmake
│   │   ├── ListToString.cmake
│   │   ├── ShellCompletion.cmake
│   │   ├── TemplateFinder.cmake
│   │   ├── TestTarget.cmake
│   │   └── WindowsResources.cmake
│   └── templates
│   ├── appdata.xml.in
│   ├── bash-completion.sh.in
│   ├── Config.cmake.in
│   ├── config.h.in
│   ├── desktop.in
│   ├── doxygen.in
│   ├── global.h.in
│   ├── template.pc.in
│   └── version.h.in
├── coding-style.clang-format
└── tests
└── calculateoverallcoverage.awk
16 directories, 61 files
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment