Authors: | The BxCppDev group |
---|---|
Date: | 2018-09-11 |
Contact: | [email protected] |
The purpose of the BxTour project is to help you to discover the Bayeux's C++ Library functionalities. BxTour provides a collection of programs that illustrates possible usages of Bayeux's components.
You should have built and installed the Bayeux library before building
BxTour. Particularly the Linuxbrew's brew
and Bayeux's bxquery
programs should be available on your system:
$ which brew
$ brew --prefix
$ which bxbayeux
$ bxbayeux --prefix
$ cd {BxTour source directory}
$ mkdir BxTour-build
$ cd BxTour-build/
$ cmake -DCMAKE_INSTALL_PREFIX=<where you want to install> \
-DCMAKE_PREFIX_PATH=$(brew --prefix) \
-DBayeux_DIR=$(bxquery --cmakedir} \
..
$ make -j
$ make install
bxtour000.cxx
: print Bayeux version and configuration.bxtour001.cxx
: use the classdatatools::integer_range
.bxtour002.cxx
: use the classdatatools::real_range
.bxtour003.cxx
: use tools from the namespacedatatools::units
.