Hello, I have a "big" project with mostly C++, but also some python files!
The spec says src is for compilable source (and I wouldnt want to put rogue python files in there anyway), but what would be the best place then? My best guess and what I did until now is a python folder in root basically acting like a src folder.
A similar issue I have now is for packaging. Multiple CMake files could go in a cmake folder. What about deb's control, postinst etc (those are basically package specs: dependencies, things to do on install etc), a debian folder maybe ?
It did make sense for python but now I feel like this is getting out of hand 😅
Hello, I have a "big" project with mostly C++, but also some python files!
The spec says
src
is for compilable source (and I wouldnt want to put rogue python files in there anyway), but what would be the best place then? My best guess and what I did until now is apython
folder in root basically acting like asrc
folder.A similar issue I have now is for packaging. Multiple CMake files could go in a
cmake
folder. What about deb'scontrol
,postinst
etc (those are basically package specs: dependencies, things to do on install etc), adebian
folder maybe ?It did make sense for python but now I feel like this is getting out of hand 😅