Skip to content

Commit

Permalink
Add logs
Browse files Browse the repository at this point in the history
  • Loading branch information
mxamin committed Apr 16, 2024
1 parent 9bcbe98 commit ae30742
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -282,6 +282,11 @@ def prepare_static_build_win(self):
includes.append(next(p / 'xmlsec' for p in includes if (p / 'xmlsec').is_dir()))
ext.include_dirs = [str(p.absolute()) for p in includes]

libs = ', '.join(map(str, ext.library_dirs))
incs = ', '.join(map(str, ext.include_dirs))
self.info('libs: {}'.format(libs))
self.info('incs: {}'.format(incs))

def prepare_static_build(self, build_platform):
self.openssl_version = os.environ.get('PYXMLSEC_OPENSSL_VERSION')
self.libiconv_version = os.environ.get('PYXMLSEC_LIBICONV_VERSION')
Expand Down

0 comments on commit ae30742

Please sign in to comment.