Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/xaliphostes/cpp-py
- Owner: xaliphostes
- Created: 2024-07-02T14:38:33.000Z (6 months ago)
- Default Branch: main
- Last Pushed: 2024-09-17T05:10:53.000Z (3 months ago)
- Last Synced: 2024-09-17T07:59:58.942Z (3 months ago)
- Language: C++
- Size: 11.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```