vector-of-bool / pitchfork

Pitchfork is a Set of C++ Project Conventions
MIT License
1.12k stars 56 forks source link

Where to place source of other languages #46

Open kiwixz opened 2 years ago

kiwixz commented 2 years ago

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 😅

kiwixz commented 2 years ago

Related to #34.