Bergmann89 637d7be9f5 | 2 years ago | |
---|---|---|
.vscode | 5 years ago | |
cmake | 2 years ago | |
projects | 2 years ago | |
tools | 5 years ago | |
.gitignore | 5 years ago | |
.gitmodules | 5 years ago | |
CMakeLists.txt | 2 years ago | |
README.md | 2 years ago | |
tool | 2 years ago |
Create a new project group
$ tool \
--verbose \
--modules <cmake-modules-git-repository> \
--group <directory-to-init-group-at>
Add a new executable to an existing project group
$ tool \
--verbose \
--modules <cmake-modules-git-repository> \
--executable <name> <group-directory>
Add a new library to an existing project group
$ tool \
--verbose \
--modules <cmake-modules-git-repository> \
--library <name> <group-directory>
Add a new interface library to an existing project group
$ tool \
--verbose \
--modules <cmake-modules-git-repository> \
--interface <name> <group-directory>
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