Best folder structure for C++ cross-platform library and bindings - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T11:27:26Z http://stackoverflow.com/feeds/question/718126 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/718126/best-folder-structure-for-c-cross-platform-library-and-bindings 6 Best folder structure for C++ cross-platform library and bindings Kevin P. 2009-04-05T00:38:02Z 2009-04-14T04:00:40Z <p>I am about to begin work on a cross-platform library to be written in C++. Down the road, I intend to implement bindings for other languages such as Python, Java, etc. The library needs to be available on the major platforms: win32, Linux and Mac OSX.</p> <p>Although the application is really a library, some basic console programs will be bundled along with it for demonstration and testing.</p> <p>I'd like to come up with an optimum folder structure before I start storing stuff in Subversion.</p> <p>I am thinking of something like:</p> <pre><code>/project //Top level folder /bin //Binaries ready for deployment /linux_amd64 //Linux AMD64 platform /debug //Debug build - duplicated in all platforms /release //Release build - duplicated in all platforms /linux_i386 //Linux 32-bit platform /macosx //Mac OS X /win32 //Windows 32-bit platform /cygwin //Windows 32-bit platform compiled with Cygwin /vs.net //Windows 32-bit platform compiled with Visual Studio .NET /win64 //Windows 64-bit platform /build //Make and build files, IDE project files /linux_amd64 //Linux AMD64 platform /linux_i386 //Linux 32-bit platform /macosx //Mac OS X /win32 //Windows 32-bit platform /win64 //Windows 64-bit platform /config //Configuration files that accompany the binaries /data //Data files that accompany the binaries /doc //Documentation /lib //External or third-party libraries /platforms //Platform-specific code for ... /linux_amd64 //Linux AMD64 platform /linux_i386 //Linux 32-bit platform /macosx //Mac OS X /win32 //Windows 32-bit platform /win64 //Windows 64-bit platform /src //Available library source code in subfolders /src //Source code tree - this will contain main.cpp /bindings //Bindings to other languages such as ... /python /java /h //Header files /modules //Platform-independent modules, components or subprojects /platforms //Platform-specific code for ... /linux_amd64 //Linux AMD64 platform-specific code /linux_i386 //Linux 32-bit platform-specific code /macosx /win32 //Windows 32-bit platform-specific code /win64 //Windows 64-bit platform /test //Automated test scripts </code></pre> <p>If you have suggestions, I'd love to hear them. I wonder if there is a tool that can help create this structure.</p> <p>I am planning on using CMake and Subversion.</p> http://stackoverflow.com/questions/718126/best-folder-structure-for-c-cross-platform-library-and-bindings/718154#718154 2 Answer by bb for Best folder structure for C++ cross-platform library and bindings bb 2009-04-05T01:00:33Z 2009-04-05T23:47:54Z <p>Why you need different platform folders for binary files? You going to build this source code under different platoforms but with same file system?</p> <p>If yes, I think you need compiller specific folders too. </p> <p>Why you don't use different folders for debug and release build, maybe unicode and non-unicode, single-threading or multithreading builds?</p> <p>Look on bjam or Scons make replacers. Maybe you don't need different folders in build directory. </p> <p>I think it will be better if all modules from "modules" directory will contain "tests" directory for test self. </p> <p><hr /></p> <p>And last - see boost library, this platofrm independed library which have nice structure. </p> <p>Also try to get ideas from antother platform independed projects.</p> <p><strong><em>Boost folders structure:</em></strong></p> <pre><code>boost - root dir - boost - library header lib ( for users ) - libs - library source dir ( one dir per lib ) - build - library build files ( if they are needed ) - doc - documentation files - example - sample programs - src - library source files - test - programs and srcipts for testing module - bin - created by bjam build system - libs - &lt;lib-name&gt; for all compiled folders from libs [example|test|build] - &lt;compiler-name&gt;/&lt;[static|dynamic]-link&gt;/&lt;[debug|release]&gt;/&lt;[threading mode]&gt; contain builded [obj|dll|lib|pdb|so|o|etc] files see detailed information in bjam build system - doc - tools </code></pre> <p>If you choose bjam - you will not be concerned on build and bin folders structure. </p> <p>Also your libs/src/ dir could contain own for all platform files and couple dirs for platform spcific files. <br> <br></p> <p>I don't see any serious problems in your folders structre, maybe you will see them when start write project prototype.</p> http://stackoverflow.com/questions/718126/best-folder-structure-for-c-cross-platform-library-and-bindings/718169#718169 2 Answer by Neil Butterworth for Best folder structure for C++ cross-platform library and bindings Neil Butterworth 2009-04-05T01:17:20Z 2009-04-05T01:17:20Z <p>The structure looks good to me, but there are a few points:</p> <ul> <li>it's normal to separate C++ header and source files into different directories, or maybe there is structure in the modules directory you are not showing?</li> <li>you probably want directories to put intermediate files like *.obj in</li> <li>you will need different directories for debug and release output files</li> <li>a directory for installers like InnoSetup and their install files can be useful - you have to make the philosphical decision about whether to version control these</li> </ul> <p>As for tools to create the structure, a few minutes spent writing a bash script is all you need - it's worth having the same tools (like bash) available on all platforms.</p> http://stackoverflow.com/questions/718126/best-folder-structure-for-c-cross-platform-library-and-bindings/718241#718241 1 Answer by Andy Dent for Best folder structure for C++ cross-platform library and bindings Andy Dent 2009-04-05T02:44:35Z 2009-04-05T02:44:35Z <p>I recently posted a <a href="http://stackoverflow.com/questions/634816/c-header-files-put-them-in-one-directory-or-merged-in-a-tree-structure">question about packaging headers</a> in just one directory, decided to go with a small number of include directories.</p> <p>Are you going to cater for Win64? That will be an increasingly important target.</p> <p>Do <em>not</em> put your build intermediate files anywhere under a tree being checked into svn. If you do so, depending on your svn client tools, they will generate a lot of noise as <em>files which are not in the repository.</em> That makes it hard to see files you've added that <em>should</em> be in the repository.</p> <p>Instead, if your compiler allows it, put the intermediate directories off to one side.</p> <p>Otherwise, make sure you add the entire intermediate directories to your svn exclusion properties. Some GUI's make that easier than others (Tortoise on Windows, Cornerstone or Versions on OS/X).</p>