Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/xaliphostes/cpp-py

Course on C++ and Python binding
https://github.com/xaliphostes/cpp-py

Last synced: 19 days ago
JSON representation

Course on C++ and Python binding

Awesome Lists containing this project

README

        

# Initiation au C++ et au binding python

## Compilation and testing

### 1) C++

Read the [**README**](./cpp/README.md) file in the `cpp` folder

### 2) Python binding

Read the [**README**](./py/README.md) file in the `py` folder

### 3) Other useful info

- [Packaging](https://pybind11.readthedocs.io/en/stable/compiling.html#modules-with-cmake) with CMake




## To look at the dependencies
Go the bin directory

**Macos**
```sh
otool -L pyalgo.so # or app
```

**Linux**
```sh
ldd pyalgo.so # or app
```

**Win**
```sh
dumpbin /dependents pyalgo.dll # or app.exe
```