Difference between revisions of "Modules - Folder Structure"
Jump to navigation
Jump to search
Jgvictores (talk | contribs) |
Jgvictores (talk | contribs) |
||
Line 1: | Line 1: | ||
− | + | Full implementation is not necessary. This folder stucture is designed for compiled (''c++''-style) projects. For advise on naming modules, check [[Modules - Naming Modules and Variables]] page. For UNIX-like operating systems, a [[Project-generating script]] may be used. <!-- [http://roborepo.uc3m.es/svn/ASIBOTcoderepo/trunk/tools/mkproy].--> | |
---- | ---- | ||
* doc/ | * doc/ | ||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
* out/ | * out/ | ||
** share/ | ** share/ | ||
Line 24: | Line 10: | ||
* src/ | * src/ | ||
* AUTHORS | * AUTHORS | ||
+ | * CMakeLists.txt | ||
* INSTALL | * INSTALL | ||
− | |||
---- | ---- | ||
<U>Notes:</U> | <U>Notes:</U> | ||
− | + | * share/ is intended for inclusion of multiplatform data for execution of the program, such as .mp3 sounds, etc... . | |
− | * share/ is intended for inclusion of multiplatform data for execution of the program, such as | ||
− |
Revision as of 17:50, 1 June 2010
Full implementation is not necessary. This folder stucture is designed for compiled (c++-style) projects. For advise on naming modules, check Modules - Naming Modules and Variables page. For UNIX-like operating systems, a Project-generating script may be used.
- doc/
- out/
- share/
- win32/
- linux-x86/
- ...
- src/
- AUTHORS
- CMakeLists.txt
- INSTALL
Notes:
- share/ is intended for inclusion of multiplatform data for execution of the program, such as .mp3 sounds, etc... .