gadomski / cpd

C++ implementation of the Coherent Point Drift point set registration algorithm.
http://www.gadom.ski/cpd
GNU General Public License v2.0
396 stars 124 forks source link

Build a single gtest static library #84

Closed gadomski closed 7 years ago

gadomski commented 7 years ago

Our vendored gtest library has CMake installs that polluted CPD's install, so I currently just include the gtest source files in each test executable. However, this leads to extra compilations of those test files. We should just remove (or disable) the offending parts of the vendored gtest source, and then link our test executables against a single gtest static library. This will speed up compilation time.