https://github.com/lambdaurora/lcmm
LambdaCMakeModules - CMake scripts to make life easier.
https://github.com/lambdaurora/lcmm
cmake cmake-modules cmake-scripts cpp
Last synced: 11 months ago
JSON representation
LambdaCMakeModules - CMake scripts to make life easier.
- Host: GitHub
- URL: https://github.com/lambdaurora/lcmm
- Owner: LambdAurora
- License: mit
- Created: 2019-02-28T19:30:34.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2020-06-13T10:05:03.000Z (over 5 years ago)
- Last Synced: 2025-03-15T00:09:46.626Z (12 months ago)
- Topics: cmake, cmake-modules, cmake-scripts, cpp
- Language: CMake
- Size: 52.7 KB
- Stars: 2
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# LambdaCMakeModules (lcmm)

[](https://raw.githubusercontent.com/LambdAurora/lcmm/master/LICENSE)
[](https://github.com/LambdAurora/lcmm/issues/)
LambdaCMakeModules is a project which contains a lot of CMake scripts to make developer's life easier in C/C++ development.
LCMM provides scripts to find various libraries, easier compilation and installation generation script.
## How to use?
It is recommended to use the Git's submodule subsystem to import these scripts, in your git root just execute:
```sh
git submodule add https://github.com/LambdAurora/lcmm.git cmake
```
When the scripts are cloned into the `cmake` directory, add the following code to your `CMakeLists.txt`:
```cmake
list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/cmake")
```
Now you can use these scripts in your project.