mfontanini / libtins

High-level, multiplatform C++ network packet sniffing and crafting library.
http://libtins.github.io/
BSD 2-Clause "Simplified" License
1.89k stars 374 forks source link

Fall back to system GTest if available #473

Closed cottsay closed 2 years ago

cottsay commented 2 years ago

Using a submodule to download and build GTest is a great approach for most circumstances, but some may prefer to use the system-provided GTest if it is available.

This change adds a fallback to using the system's GTest if the submodule is absent.

mfontanini commented 2 years ago

Thanks!