2018-11-30 11:08:08 +01:00
|
|
|
# PySysC-SC
|
|
|
|
|
|
|
|
A simple C++/SystemC/CMake project to test pysysc
|
|
|
|
|
|
|
|
# How to build
|
|
|
|
|
|
|
|
> Currently only Linux and MacOS are tested
|
|
|
|
|
|
|
|
|
|
|
|
```
|
|
|
|
cd PySysC-SC
|
|
|
|
mkdir build
|
|
|
|
cd build
|
|
|
|
conan install .. --build=missing
|
2021-03-14 12:28:04 +01:00
|
|
|
cmake -DBUILD_SHARED_LIBS=ON ..
|
2018-11-30 11:08:08 +01:00
|
|
|
cmake --build .
|
|
|
|
```
|
|
|
|
|
|
|
|
|