Jump to content

Programming Howto:Building BCI2000: Difference between revisions

From BCI2000 Wiki
Mellinger (talk | contribs)
Mellinger (talk | contribs)
Line 38: Line 38:
# In the project manager (at the top right), right-click the topmost project and choose "Make all from here".
# In the project manager (at the top right), right-click the topmost project and choose "Make all from here".
# To get rid of possible inconsistencies from earlier builds, choose "Build all from here" rather than "Make all from here".
# To get rid of possible inconsistencies from earlier builds, choose "Build all from here" rather than "Make all from here".
# Command-line builds cannot be done with Borland C++ Builder 2007/2009 because it lacks a project-to-makefile conversion utility. Still, [[User Reference:Command Line Processing|Command line tools]] and [[User Reference:Matlab MEX Files|Matlab MEX files]] may be compiled from the command line as described in their documentation.
# Command-line builds cannot be done with Borland C++ Builder 2007/2009 because it lacks the bpr2mak project-to-makefile conversion utility. Still, [[User Reference:Command Line Processing|Command line tools]] and [[User Reference:Matlab MEX Files|Matlab MEX files]] may be compiled from the command line as described in their documentation.
# When using BCB 2006, you may experience "invalid property" runtime errors when running BCI2000. This may be due to imperfect import of *.dfm files. Make sure to install all available updates, then import a clean version of the BCI2000 source tree. If this doesn't help, consider updating to BCB2009.
# When using BCB 2006, you may experience "invalid property" runtime errors when running BCI2000. This may be due to imperfect import of *.dfm files. Make sure to install all available updates, then import a clean version of the BCI2000 source tree. If this doesn't help, consider updating to BCB2009.



Revision as of 14:32, 19 February 2010

This document describes how to build BCI2000, i.e. how to create the BCI2000 executables from their source code.

Why to build

Typically, you will install BCI2000 from its binary distribution, and do not need to build BCI2000, unless

  • you want to always use its most current SVN version,
  • you want to use code from the Contributions section,
  • you create your own module by modifying an existing one, or create a new one from scratch.

Tools required

As of BCI2000 version 2.0, building all parts of BCI2000 requires Borland's C++ Builder 6, or a more recent version. The operator GUI and Application modules currently require the Borland VCL library. The following non-GUI related parts of BCI2000 can be built using the freely available Borland C++ compiler:

How to build

Building BCI2000 from the command line

Command-line builds require a working installation of Borland C++ Builder 6.

  1. Open a Windows cmd shell, e.g. by choosing "Run..." from the Start Menu and entering "cmd".
  2. Change to the BCI2000 "src" directory.
  3. Execute "make" from the command prompt.
  4. If you updated or edited any of the source files, and experience linker errors or other unexpected behavior, execute "make clean && make all".
  5. For build versioning, execute "make build" rather than "make" or "make all". This will update the build information visible in the BCI2000 "Version" parameters, and in the "About" boxes of BCI2000 GUI applications.

Building BCI2000 using the Borland C++ Builder 6 IDE

  1. Open the file "BCI2000.bpg" with the IDE by double-clicking it.
  2. Make sure the "ProjectManager" view is visible to the left (choose "Project Manager" from the "View" menu to display it).
  3. Right-click the topmost project (located immediately below the line reading "BCI2000"), and choose "Make all from here".
  4. To get rid of possible inconsistencies from earlier builds, choose "Build all from here" rather than "Make all from here".

Starting up BCI2000

  1. After compilation, a desired configuration of BCI2000 may be started by executing an appropriate batch file from the top level "batch" directory. Once a particular configuration of BCI2000 is started, simply load a parameter file with the same name as the batch file from the "parms" directory.
  2. If you need a configuration for which no batch file exists, just modify a copy of a batch file that is close to your needs.

Compiling BCI2000 with Borland C++ Builder (BCB) 2006/2007/2009

When using BCB 2006, please make sure to install all available updates from the Borland Download Site. The originally shipped version of BCB 2006 is defective and will not work without updating. We recommend updating to BCB 2009.

  1. Open the file "BCI2000.bpg" from within Borland Developer Studio. This will import all existing projects into BDS project files.
  2. In the project manager (at the top right), right-click the topmost project and choose "Make all from here".
  3. To get rid of possible inconsistencies from earlier builds, choose "Build all from here" rather than "Make all from here".
  4. Command-line builds cannot be done with Borland C++ Builder 2007/2009 because it lacks the bpr2mak project-to-makefile conversion utility. Still, Command line tools and Matlab MEX files may be compiled from the command line as described in their documentation.
  5. When using BCB 2006, you may experience "invalid property" runtime errors when running BCI2000. This may be due to imperfect import of *.dfm files. Make sure to install all available updates, then import a clean version of the BCI2000 source tree. If this doesn't help, consider updating to BCB2009.

Building Contributions

From the command line

After building BCI2000 from the command line, the makefiles file in the src directory contains a full list of subprojects. Those from the contribution section are commented out with a # character in front. When you remove the # character in front of a project, and do a "make all" or "make build", the additional project will be included in the build. Likewise, you may speed up builds by commenting out parts of the core distribution that you don't need.

From the IDE

Open the contrib project group in the src/contrib directory, and build the contributions you want.