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
After [adding cpm to your project](https://github.com/cpm-cmake/CPM.cmake?tab=readme-ov-file#adding-cpm), you can use toml11 by doing:
123
+
124
+
```cmake
125
+
include(cmake/CPM.cmake)
126
+
127
+
CPMAddPackage("gh:ToruNiina/toml11@4.1.0")
128
+
129
+
add_executable(main main.cpp)
130
+
target_link_libraries(main PUBLIC toml11::toml11)
131
+
```
132
+
120
133
### Install Using CMake
121
134
122
135
You can install toml11 using CMake with the following steps:
0 commit comments