README 431 B

12345678910111213141516
  1. To compile the
  2. libs/tuple/test/*.cpp
  3. files, you need to set include paths
  4. for boost.
  5. For example, in libs/tuple/test directory you would type (using g++):
  6. g++ -I../../.. tuple_test_bench.cpp
  7. The following is not true anymore:
  8. If you want to use tuple_io, you need to compile and link src/tuple.cpp:
  9. g++ -I../../.. ../src/tuple.cpp io_test.cpp
  10. Thanks to Hartmut Kaiser's suggestion, the tuple.cpp is not needed anymore.