Instructions to run Google Benchmark

In order to include Google benchmark to a Charm++ code, following libraries
are required: Google Benchmark, Google Test.

Google Benchmark can be cloned using:
	git clone https://github.com/google/benchmark.git

Google Benchmark requires GTest as a dependency:
	git clone https://github.com/google/googletest.git benchmark/googletest

Then build Google Benchmark library:
	cd benchmark
	mkdir build
	cd build
	cmake .. -DCMAKE_BUILD_TYPE=RELEASE
	make

	sudo make install


Then in Makefile, modify the path to CHARMC and Google Benchmark Library if needed.
Link pthread and google benchmark library during compilation.


More detailed installation guide can be found at https://github.com/google/benchmark.
