Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
 
 
 
 
Bergmann89 637d7be9f5 Refactored whole project structure 2 anni fa
.vscode * Added VS code settings 4 anni fa
cmake Refactored whole project structure 2 anni fa
projects Refactored whole project structure 2 anni fa
tools * Fixed unit test groups 4 anni fa
.gitignore * Initial commit 5 anni fa
.gitmodules * Initial commit 5 anni fa
CMakeLists.txt Refactored whole project structure 2 anni fa
README.md Refactored whole project structure 2 anni fa
tool Refactored whole project structure 2 anni fa

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