No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
 
 
 
 
Bergmann89 637d7be9f5 Refactored whole project structure hace 2 años
.vscode * Added VS code settings hace 4 años
cmake Refactored whole project structure hace 2 años
projects Refactored whole project structure hace 2 años
tools * Fixed unit test groups hace 4 años
.gitignore * Initial commit hace 4 años
.gitmodules * Initial commit hace 4 años
CMakeLists.txt Refactored whole project structure hace 2 años
README.md Refactored whole project structure hace 2 años
tool Refactored whole project structure hace 2 años

README.md

New Group

Create a new project group

$ tool \
    --verbose \
    --modules <cmake-modules-git-repository> \
    --group <directory-to-init-group-at>

New Executable

Add a new executable to an existing project group

$ tool \
    --verbose \
    --modules <cmake-modules-git-repository> \
    --executable <name> <group-directory>

New Library

Add a new library to an existing project group

$ tool \
    --verbose \
    --modules <cmake-modules-git-repository> \
    --library <name> <group-directory>

New Interface Library

Add a new interface library to an existing project group

$ tool \
    --verbose \
    --modules <cmake-modules-git-repository> \
    --interface <name> <group-directory>

All in One

You can generate all in one by specifying multiple project or group arguments

$ tool \
    --verbose \
    --modules <cmake-modules-git-repository> \
    --group /tmp/fuu \
    --executable myexe /tmp/fuu \
    --library mylib /tmp/fuu \
    --interface myintf /tmp/fuu