hardcode somewhat logical order of header files in public_header.py

append possibly missing header files
assumes that missing header files need no dedicated position in list
This commit is contained in:
Gregor Weiss 2024-04-12 12:13:47 +02:00
parent bf719d3a1d
commit 27cdf8d389
Signed by: Gregor Weiss
GPG key ID: 61E170A8BBFE5756

View file

@ -91,9 +91,12 @@ destination = current_path.joinpath('include/library/public')
if os.path.isdir(destination) == False: if os.path.isdir(destination) == False:
os.mkdir(destination) os.mkdir(destination)
header_files = [f for f in os.listdir(source) if os.path.isfile(os.path.join(source, f))] all_header_files = [f for f in os.listdir(source) if os.path.isfile(os.path.join(source, f))]
header_files.remove('prim_types_double.h') all_header_files.remove('prim_types_double.h')
header_files.remove('prim_types_single.h') all_header_files.remove('prim_types_single.h')
header_files = ['macros.h', 'constants.h', 'dwt.h', 'tagtree.h', 'mq_types.h', 'mq.h',
'bitstream.h', 'codestream.h', 'tier1.h', 'tier2.h', 'types.h', 'libbwc.h']
header_files += [element for element in all_header_files if element not in header_files]
print(header_files) print(header_files)
#----------------------------------------------------------# #----------------------------------------------------------#