From b6fe8d269968c8dbbc7e817537f46dc0de7453ad Mon Sep 17 00:00:00 2001 From: Matthias Koefferlein Date: Sun, 12 Mar 2023 10:21:44 +0100 Subject: [PATCH] Fixed link errors for pyacore on Win --- setup.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/setup.py b/setup.py index 4f636018a..748182bdd 100644 --- a/setup.py +++ b/setup.py @@ -953,6 +953,8 @@ pya = Extension(config.root + '.pyacore', include_dirs=[_laybasic_path, _layview_path, _lib_path, + _db_path, + _rdb_path, _img_path, _ant_path, _edt_path, @@ -963,6 +965,8 @@ pya = Extension(config.root + '.pyacore', extra_objects=[config.path_of('_laybasic', _laybasic_path), config.path_of('_layview', _layview_path), config.path_of('_lib', _lib_path), + config.path_of('_db', _db_path), + config.path_of('_rdb', _rdb_path), config.path_of('_img', _img_path), config.path_of('_ant', _ant_path), config.path_of('_edt', _edt_path),