No description
| helpers | ||
| include | ||
| microbench | ||
| tables | ||
| unittests | ||
| .clang-format | ||
| .gitignore | ||
| allcounters.pl | ||
| AUTHORS | ||
| bulk_ops.hpp | ||
| bulk_ops_impl.hpp | ||
| CMakeLists.txt | ||
| communicate-ff.cpp | ||
| compare_FxyzPhi.cpp | ||
| COPYING | ||
| COPYING.LESSER | ||
| coulomb.cc | ||
| count-ops.pl | ||
| default_alloc.hpp | ||
| fmm_enum.cpp | ||
| fmmtest.cpp | ||
| input_qxyz.dat | ||
| la_test.cpp | ||
| operatortest.cpp | ||
| otloop | ||
| parse-operator-benchmark.pl | ||
| qxyz2hpp.pl | ||
| random_dots.py | ||
| README | ||
| reference_long_double.dat | ||
| rotationtest.bulk_ops.cpp | ||
| rotationtest.cpp | ||
| saline.py | ||
| test_susi.cpp | ||
| zzzsched | ||
Out-Of-Tree Builds
==================
In the desired build directory, create a Makefile containing
SRCROOT = path/to/fmsolvr
include $(SRCROOT)/Makefile
The SRCROOT can be relative or absolute, the build directory
can be below the source or anywhere else in the filesystem.
All additional settings should still go to Makefile.local in
the build directory.
Installing googletest locally
=============================
If there is no systemwide googletest installation available,
create a local clone from github:
git clone https://github.com/google/googletest.git ~/some/path/googletest
and in Makefile.local set
GTEST_SRC = $(HOME)/some/path/googletest/googletest
(Yes, this is a googletest subdirectory inside the googletest repository.)