您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 
Bergmann89 637d7be9f5 Refactored whole project structure 2 年前
.vscode * Added VS code settings 5 年前
cmake Refactored whole project structure 2 年前
projects Refactored whole project structure 2 年前
tools * Fixed unit test groups 5 年前
.gitignore * Initial commit 5 年前
.gitmodules * Initial commit 5 年前
CMakeLists.txt Refactored whole project structure 2 年前
README.md Refactored whole project structure 2 年前
tool Refactored whole project structure 2 年前

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