views:

60

answers:

2

I want to start a new C++ (Qt) Open Source project and I'm wondering if there is an existing template somewhere for files usually found in an Open Source project but that are not purely source code (README, LICENSE, CHANGELOG, etc.)

I could probably find a popular Open Source project for inspiration but if there is some existing generic templates, I will use that instead.

Thanks.

+2  A: 

One place to look might be the implementation of the GNU Hello program. It includes all the standard template files expected by the GNU coding guidelines.

You may, of course, choose to follow another set of guidelines than GNU's.

Greg Hewgill
Thanks, exactly what I was looking for.
esavard
A: 

You might find the boost sandbox template interesting: Sandbox Template

AraK