cpp-btree with a small fix
 
 
Go to file
Josh MacDonald 88853fbc9e Build outside of Google; add CMakeLists.txt, README 2012-07-17 17:25:01 -07:00
CMakeLists.txt Build outside of Google; add CMakeLists.txt, README 2012-07-17 17:25:01 -07:00
README Build outside of Google; add CMakeLists.txt, README 2012-07-17 17:25:01 -07:00
benchmarks.awk Initial checkin of C++ btree code, has some useless google3-specific 2011-12-12 13:46:12 -08:00
btree.h Build outside of Google; add CMakeLists.txt, README 2012-07-17 17:25:01 -07:00
btree_bench.cc Build outside of Google; add CMakeLists.txt, README 2012-07-17 17:25:01 -07:00
btree_container.h Build outside of Google; add CMakeLists.txt, README 2012-07-17 17:25:01 -07:00
btree_map.h Build outside of Google; add CMakeLists.txt, README 2012-07-17 17:25:01 -07:00
btree_set.h Build outside of Google; add CMakeLists.txt, README 2012-07-17 17:25:01 -07:00
btree_test.cc Build outside of Google; add CMakeLists.txt, README 2012-07-17 17:25:01 -07:00
btree_test.h Build outside of Google; add CMakeLists.txt, README 2012-07-17 17:25:01 -07:00
btree_test_flags.cc Build outside of Google; add CMakeLists.txt, README 2012-07-17 17:25:01 -07:00
safe_btree.h Build outside of Google; add CMakeLists.txt, README 2012-07-17 17:25:01 -07:00
safe_btree_map.h Build outside of Google; add CMakeLists.txt, README 2012-07-17 17:25:01 -07:00
safe_btree_set.h Build outside of Google; add CMakeLists.txt, README 2012-07-17 17:25:01 -07:00
safe_btree_test.cc Build outside of Google; add CMakeLists.txt, README 2012-07-17 17:25:01 -07:00

README

This library is a C++ template library and, as such, there is no
library to build and install.

----

To build and run the provided tests, however, you will need to install
CMake and the Google C++ Test framework.

Download CMake from http://www.cmake.org

Download the GoogleTest framework from http://code.google.com/p/googletest

export GTEST_ROOT=/path/for/gtest-x.y

cmake . -Dbuild_tests=ON