mirror of https://github.com/KLayout/klayout.git
Issue 886 (python module does not build from sources) (#896)
* Added cc_gen to manifest file * Added lib sources to manifest
This commit is contained in:
parent
b6c548dad1
commit
b303548591
|
|
@ -1,8 +1,9 @@
|
|||
recursive-include src/tl/tl *.cc *.h
|
||||
recursive-include src/db/db *.cc *.h
|
||||
recursive-include src/db/db *.cc *.cc_gen *.h
|
||||
recursive-include src/gsi/gsi *.cc *.h
|
||||
recursive-include src/rdb/rdb *.cc *.h
|
||||
recursive-include src/pya/pya *.cc *.h
|
||||
recursive-include src/lib/lib *.cc *.h
|
||||
recursive-include src/pymod *.cc *.h
|
||||
include src/plugins/*/db_plugin/*.cc
|
||||
include src/plugins/*/*/db_plugin/*.cc
|
||||
|
|
|
|||
1
setup.py
1
setup.py
|
|
@ -564,7 +564,6 @@ rdb_sources = set(glob.glob(os.path.join(rdb_path, "*.cc")))
|
|||
|
||||
rdb = Extension(config.root + '.rdbcore',
|
||||
define_macros=config.macros(),
|
||||
|
||||
include_dirs=[_rdb_path, _tl_path, _gsi_path, _pya_path],
|
||||
extra_objects=[config.path_of('_rdb', _rdb_path), config.path_of('_tl', _tl_path), config.path_of('_gsi', _gsi_path), config.path_of('_pya', _pya_path)],
|
||||
extra_link_args=config.link_args('rdbcore'),
|
||||
|
|
|
|||
Loading…
Reference in New Issue