cpp-btree with a small fix
 
 
Go to file
sername=jmacd 7aad0f28fd Update README; remove benchmarks.awk 2013-01-22 15:57:34 -08:00
CMakeLists.txt Build fixes 2013-01-14 02:08:38 -08:00
README Update README; remove benchmarks.awk 2013-01-22 15:57:34 -08:00
btree.h Build outside of Google; add CMakeLists.txt, README 2012-07-17 17:25:01 -07:00
btree_bench.cc Make btree_bench work; compiled & tested on OS X 10.7.5 using gcc 4.7.2 -std=c++11 2013-01-13 00:16:02 -08: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 Make btree_bench work; compiled & tested on OS X 10.7.5 using gcc 4.7.2 -std=c++11 2013-01-13 00:16:02 -08: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.  Copy the .h files and use them!

----

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

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

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

Download gflags from https://code.google.com/p/gflags

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

cmake . -Dbuild_tests=ON