Skip to content

Latest commit

 

History

History
68 lines (48 loc) · 1.53 KB

README.rst

File metadata and controls

68 lines (48 loc) · 1.53 KB

Bayeux C++ Library Discovery Tour

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 class datatools::integer_range.
  • bxtour002.cxx : use the class datatools::real_range.
  • bxtour003.cxx : use tools from the namespace datatools::units.