This repository contains the BDE libraries, currently BSL (Basic Standard Library), BDL (Basic Development Library), BAL (Basic Application Library), and BBL (Basic Business Library).
For more information about BDE libraries follow the links below:
BDE uses a build system based on cmake, which is located in the BDE Tools repository.
The following commands can be used to configure and build the BDE repository:
-
Clone the
bde-tools
andbde
repositories and addbde-tools
to yourPATH
:$ git clone https://github.com/bloomberg/bde-tools.git $ export PATH=$PWD/bde-tools/bin:$PATH # add bde-tools to the 'PATH' $ git clone https://github.com/bloomberg/bde.git $ cd bde
-
From the root of this source repository, run:
$ export BDE_CMAKE_BUILD_DIR=$PWD/_build # configure the build directory $ cmake_build.py configure -u dbg_exc_mt_64_cpp14
-
To build the libraries, but not the test drivers, run:
$ cmake_build.py build
To also build the test drivers, run:
$ cmake_build.py build --test build
To build and run the test drivers, run:
$ cmake_build.py build --test run
BDE uses a build system based on cmake, which is located in the BDE Tools repository.
The following commands can be used to configure and build the BDE repository:
-
Clone the
bde-tools
andbde
repositories and addbde-tools
to yourPATH
:$ git clone bbgithub:bde/bde-tools $ export PATH=$PWD/bde-tools/bin:$PATH # add bde-tools to the 'PATH' $ git clone bbgithub:bde/bde $ cd bde
-
From the root of this source repository, run:
$ export BDE_CMAKE_BUILD_DIR=$PWD/_build # configure the build directory $ cmake_build.py configure -u dbg_exc_mt_64_cpp14
-
To build the libraries, but not the test drivers, run:
$ cmake_build.py build
To also build the test drivers, run:
$ cmake_build.py build --test build
To build and run the test drivers, run:
$ cmake_build.py build --test run
For more details on building the BDE repository, please see the Build Examples on BDE Build Tools).
The BDE libraries are distributed under the Apache License (version 2.0); see the LICENSE file at the top of the source tree for more information.