cmake-module-manager/README.md

14 lines
341 B
Markdown
Raw Normal View History

2024-08-26 00:45:24 +02:00
# Git Module Manager for CMake
A simple function which clones a git repository and includes it's CMake project
## Usage
1. download the file module-manager.cmake
2. include the file in your CMakeLists.txt
2024-08-26 00:47:27 +02:00
```
include(module-manager.cmake)
2024-08-26 00:45:24 +02:00
2024-08-26 00:47:27 +02:00
load_module(TestModule SOURCE "http://git.fritz.box/Patrick/cmake-module-manager.git" UPDATE)```