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
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -8,7 +8,7 @@ Currently the documentation of **cpp_bindgen** is part of the [GridTools documen
8
8
9
9
### Installation instructions
10
10
11
-
You can easily integrate **cpp_bindgen** in your CMake project with the following snippet which makes the function `cpp_bindgen_add_library()` available.
11
+
You can easily integrate **cpp_bindgen** in your CMake project with the following snippet which makes the function `bindgen_add_library()` available.
Copy file name to clipboardExpand all lines: example/simple_fetch_content/CMakeLists.txt
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -19,7 +19,7 @@ if(NOT cpp_bindgen_POPULATED)
19
19
endif()
20
20
21
21
# 2) create a library with bindings. This will generate the files simple.h and simple.f90 which can be included within C and Fortran. In CMake you can use them by linking against `simple_c`or `simple_fortran`.
22
-
cpp_bindgen_add_library(simpleSOURCESsimple.cpp)
22
+
bindgen_add_library(simpleSOURCESsimple.cpp)
23
23
24
24
# 3) link the generated library to a fortran executable
0 commit comments