You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+12-1Lines changed: 12 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -53,8 +53,19 @@ make
53
53
make test
54
54
```
55
55
56
+
### Modern CMake (All Platforms)
57
+
This is the recommended way to build and integrate the library:
58
+
59
+
```bash
60
+
mkdir build
61
+
cd build
62
+
cmake ..
63
+
cmake --build .
64
+
ctest .
65
+
```
66
+
56
67
### Windows (MSVC)
57
-
This fork is specifically patched to support building with Visual Studio 2019/2022. You can include the headers directly in your solution without any extra configuration.
68
+
This fork is specifically patched to support building with Visual Studio 2019/2022. You can use the CMake instructions above to generate a Visual Studio solution, or simply include the headers directly in your project.
0 commit comments