1
0
mirror of https://github.com/bitdefender/bddisasm.git synced 2025-03-24 00:05:42 +00:00

Added the paths to bddisasm library : default install path (Linux) and local build path (Linux/Windows)

This commit is contained in:
Andrei KISARI 2020-08-04 15:30:12 +03:00
parent 175b059b27
commit c6a741b711
2 changed files with 2 additions and 0 deletions

View File

@ -59,6 +59,7 @@ jobs:
python3 -m pip install setuptools
- name: Build pybddisasm
run: |
sudo make install
cd pybddisasm
python3 setup.py build
cd ..

View File

@ -59,6 +59,7 @@ setup(
define_macros = [('AMD64', None), ('Py_LIMITED_API', None)],
include_dirs = ['../inc'],
libraries = ['bddisasm'],
library_dirs = ['/usr/local/lib', '../bin/x64/Release'],
py_limited_api=True)],
distclass=BinaryDistribution
)