Boost.Test > Components > The Program Execution Monitor > Compilation
Boost Test logo

The Program Execution Monitor compilation instructions

Unlike most boost libraries the Program Execution Monitor compilation may require you to go one extra mile. There are several alternative options that you could consider:

Each option has it's advantages and drawbacks. By default it's recommended to use standalone static library.

Building standalone library

The Program Execution Monitor implementaion wraps a several system headers and designed to be used as standalone library. While there exist an alternative option to include the whole implementation directly into your test module, for the long term usage the preferable solution is to build library once and reuse it. Depending on your hardware this may save you significant time during compilation and doesn't really require that much effort.

If you decided to go with standalone library, you first need to build one. There are a varity of make systems that allow you to do that. To name a few: GNU make and similar, all kinds of integrated development environments. Boost preferred solution is Boost.Build system, that is built on top of bjam tool. All make systems require some kind of configuration file that list all files that constitute the library and all the build options. For example makefile that is used by make, Microsoft Visual Studio project file, Jamfile that is used by Boost.Build. For the sake of simplicity lets call this file the makefile. To build a stanalone library following files, that are located in the Boost Test Library source directory, needs to be listed as source files in your makefile:

execution_monitor.cpp
cpp_main.cpp

The Jamfile for use with Boost.Build system is supplied in libs/test/build directory.

Building static library

There are no additional build defines or options required to build static library. Using Boost.build system you could build the static library with a following command from libs/test/build directory:

bjam -sTOOLS=<your-tool-name> "-sBUILD=" boost_prg_exec_monitor

Also on windows you could use this Microsoft Visual Studio .NET project file.

Building dynamic library

To build dynamic library you need to add BOOST_TEST_DYN_LINK to the list of defines in makefile. Using Boost.Build system you could build the dynamic library with a following command from libs/test/build directory:

bjam -sTOOLS=<your-tool-name> "-sBUILD="boost_prg_exec_monitor

Also on windows you could use this Microsoft Visual Studio .NET project file.

Note that the same flag BOOST_TEST_DYN_LINK needs to be defined during test module compilation for it to successfully link with dynamic library.

Using autolinking feature

For the Microsoft family of compilers Boost.Test provides an ability to automatically select proper library name and add it to the list of objects to be linked with. By default this feature is on. To disable this feature you should define the flag BOOST_TEST_NO_LIB. More detailes on autolinking feature implementation and configuration you could see here.

Using "included" option

While building standalone library is preferred solution, some users prefer "quick and dirty" include one. The Program Execution Monitor provides an ability to do that. The only change that is required for you to employ it is the path to the header file you include. So the usual include staments:

#include <boost/test/prg_exec_monitor.hpp>

...

becomes:

#include <boost/test/included/prg_exec_monitor.hpp>

...

This way you don't need to link with any prebuild library. The whole Program Execution Monitor implementation in included directly into your file. The autolionking feature is disabled also.

Including sources directly into test module project

Finnally you could include all the files listed in build standalone library section directly into you test module makefile. Obviosly there is no sence to employ an options for dynamic build since you you are linking with implementation statically.