CMake build system
Visit the CMake home page at http://www.cmake.orgExamples
source_group
You can put your *.c and *.h files in visual studio folders using the source_group command.
source_group(Sources REGULAR_EXPRESSION ".+\\.c$") source_group(Includes REGULAR_EXPRESSION ".+\\.h$")-- StephaneLenclud - 24 Jan 2009