tags:

views:

699

answers:

2

Hey guys, which options do we have for the folder structure of a C project? I also would like to do TDD, so I need that that structure accommodates a test directory.

What do you think?

+1  A: 

Maybe this link provides some useful information. Take a look at http://stackoverflow.com/questions/718126/best-folder-structure-for-c-cross-platform-library-and-bindings

adatapost
+5  A: 

Variants of this question have been asked before, so it make sense to look at those answers:

Recommendations for structuring complex applications in C

Popular folder structure for build

Projects folder structure recommendation

How do you organize your version control repository?

Argalatyr