Changes between Initial Version and Version 1 of FirstSteps


Ignore:
Timestamp:
Feb 24, 2010, 2:55:57 PM (15 years ago)
Author:
FrederikHeber
Comment:

first version with initial pointers

Legend:

Unmodified
Added
Removed
Modified
  • FirstSteps

    v1 v1  
     1== First steps into the code ==
     2
     3MoleCuilder has become quite complex, so a few initial pointers might be helpful:
     4
     5   * MoleCuilder has a built-in documentation system through [[http://www.doxygen.org/ doxygen]]. By default the documentation resides in molecuilder/doc/html/index.html. You have to create it first through by entering in your build directory
     6{{{
     7make doc
     8}}}
     9   * In general, look at [source:molecuilder/src/builder.cpp] as a start. All the stuff that MoleCuilder can do is launched from there and also the main() routine resides therein. If you have a suitable development environment such as Eclipse you can easily strg+click through the functions to discover what they do.