Hello Richard, acprep is a convenience build script, which basically runs: % cmake . && make
So that command should compile ledger for you using the dependencies from MacPorts. I'm working on improving and documenting the ledger CMake files, so that using cmake directly and knowing about the various configuration options will become easier. Here's a list of options ledger's cmake process understands: % grep option CMakeLists.txt option(USE_PYTHON "Build support for the Python scripting bridge" OFF) option(USE_DOXYGEN "Build reference documentation using Doxygen" OFF) option(DISABLE_ASSERTS "Build without any internal consistency checks" OFF) option(BUILD_DEBUG "Build support for runtime debugging" OFF) option(BUILD_LIBRARY "Build and install Ledger as a library" ON) option(BUILD_DOCS "Build and install documentation" OFF) option(BUILD_WEB_DOCS "Build version of documentation suitable for viewing online" OFF) option(BUILD_EMACSLISP "Build and install ledger-mode for Emacs" OFF) So if you would like to use the ledger's Python module you would need to run: % cmake -DUSE_PYTHON=ON . && make # I recommend using make -j Please report back if certain dependencies such as boost, gmp or mpfr aren't found. Happy compiling ledger, Alexis -- --- You received this message because you are subscribed to the Google Groups "Ledger" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
