Skip to content

Commit 2adf825

Browse files
committed
Example code with Python module from C++ code
1 parent 111e559 commit 2adf825

38 files changed

+4511
-0
lines changed

.gitmodules

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[submodule "pybind11"]
2+
path = pybind11
3+
url = https://github.com/pybind/pybind11

.vscode/c_cpp_properties.json

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
{
2+
"configurations": [
3+
{
4+
"name": "Linux",
5+
"includePath": [
6+
"${workspaceFolder}/**",
7+
"/usr/include/python3.8"
8+
],
9+
"defines": [],
10+
"compilerPath": "/usr/bin/gcc",
11+
"cStandard": "gnu17",
12+
"cppStandard": "gnu++14",
13+
"intelliSenseMode": "linux-gcc-x64"
14+
}
15+
],
16+
"version": 4
17+
}

.vscode/settings.json

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"editor.formatOnPaste": true
3+
}

CMakeLists.txt

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
cmake_minimum_required(VERSION 3.4...3.18)
2+
project(pybindtest)
3+
add_subdirectory(pybind11)
4+
pybind11_add_module(module_name main.cpp)

README.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,7 @@
11
# pybind11-cpp-example
2+
23
Example C++ project with pybind11
4+
5+
Links:
6+
7+
- <https://www.youtube.com/watch?v=_5T70cAXDJ0>

0 commit comments

Comments
 (0)