]> git.ipfire.org Git - thirdparty/kea.git/commitdiff
[#3732] Add note to devel docs about gtest.wrap
authorAndrei Pavel <andrei@isc.org>
Wed, 16 Apr 2025 10:09:28 +0000 (13:09 +0300)
committerAndrei Pavel <andrei@isc.org>
Wed, 23 Apr 2025 19:29:34 +0000 (22:29 +0300)
doc/devel/unit-tests.dox

index 823b88ec64cf4f00061d9ff262ad718ff1d2dbb3..a8955abfec8e26f08ed85c75b1ed08deb193fd9f 100644 (file)
@@ -17,11 +17,11 @@ be, but rather provide gtest as sources. This was further complicated
 with the fact that some Linux distributions packaged gtest and tried
 to mimic its installation. Meson tries its best to accommodate all typical
 situations and to locate gtest on its own. If it cannot be found, linking
-/usr/src/googletest to the custom location should do the trick. The `-D tests`
-flag has to be provided.
+/usr/src/googletest to the custom location should do the trick. If that does
+not work either, the Kea project has a gtest.wrap which instructs it how to
+fetch googletest on its own. The `-D tests` flag has to be provided.
 
 @code
-sudo apt install googletest
 meson setup build -D tests=enabled
 @endcode