ricksy / libs

An example of cmake project with multiple libs

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

cmake example of a multi library

This is an example of how to create a multi level library project.

├── CMakeLists.txt
├── CMakePresets.json
├── levelone
│   ├── CMakeLists.txt
│   ├── include
│   │   └── l2a.hpp
│   ├── leveltwo_a
│   │   ├── CMakeLists.txt
│   │   ├── include
│   │   │   └── l2a.hpp
│   │   └── src
│   │       └── l2a.cpp
│   └── leveltwo_b
│       ├── CMakeLists.txt
│       ├── include
│       │   └── l2b.hpp
│       └── src
│           └── l2b.cpp
└── main.cpp

About

An example of cmake project with multiple libs


Languages

Language:CMake 66.5%Language:C++ 33.5%