1.12, 1.13, 1.14, 1.15.2

This commit is contained in:
Carl Pearson
2024-11-07 10:08:55 -07:00
commit 0942e89158
20 changed files with 102368 additions and 0 deletions

30
README.md Normal file
View File

@@ -0,0 +1,30 @@
# gtest-fuser
Google removed support for generating a single-file googletest between versions 1.11 and 1.12.
This repository provides unofficial fused versions for releases after 1.11.
> [!WARNING]
> Unofficial single-source single-header for the googletest library.
> [!WARNING]
> You must comply with the [googletest LICENSE](https://github.com/google/googletest/blob/main/LICENSE) to use these files.
1. Download the version you want from [`_generated`](https://github.com/cwpearson/gtest-fuser/tree/master/_generated)
2. Provide your own main function, something like this:
```bash
cat << 'EOF' >> main.cpp
#include <gtest/gtest.h>
int main(int argc, char **argv) {
printf("Running main() from %s\n", __FILE__);
testing::InitGoogleTest(&argc, argv);
return RUN_ALL_TESTS();
}
EOF
```
3. Compile together:
```bash
g++ --std=c++14 -I gtest-<version> main.cpp gtest-<version>/gtest-all.cpp
```