Open
Description
My use case is as follows: I have a selection of library based submodules. They are not completely standalone as there are dependencies among them, but they makes sense as submodules. I also will be generating multiple executables that use these libraries to do various things. There doesn't seem to be a way in the current spec to have "submodules" in the src
directory. It makes logical sense to me that you put library submodules in the libs
directory and executable submodules in the src
directory.
Random illustrative example: if my project generated: libdisk.so libnetwork.so disk-add network-add
the structure would be like:
|-- lib
| \-- disk
| \-- disk.cpp
| \-- network
| \-- network.cpp
|-- src
\-- disk-add
\-- main.cpp
\-- network-add
\-- main.cpp
Thoughts?