diff options
| author | Hennadii Chernyshchyk <genaloner@gmail.com> | 2021-08-31 18:29:13 +0300 |
|---|---|---|
| committer | Bastiaan Olij <mux213@gmail.com> | 2021-09-27 23:08:10 +1000 |
| commit | e8030ed1cf9c3e74934c6d87e8dbc7af7a4ed134 (patch) | |
| tree | 52ea81ae16a1bef9ef837c007079da6ad65229ae /binding_generator.py | |
| parent | b7f03837a2e54300c9bce612b1776a2823e6af92 (diff) | |
| download | redot-cpp-e8030ed1cf9c3e74934c6d87e8dbc7af7a4ed134.tar.gz | |
Fix print file list
Diffstat (limited to 'binding_generator.py')
| -rw-r--r-- | binding_generator.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/binding_generator.py b/binding_generator.py index 8676ae9..5094d6d 100644 --- a/binding_generator.py +++ b/binding_generator.py @@ -27,6 +27,9 @@ def print_file_list(api_filepath, output_dir, headers=False, sources=False): print(str(source_filename.as_posix()), end=end) for engine_class in api["classes"]: + # TODO: Properly setup this singleton since it conflicts with ClassDB in the bindings. + if engine_class["name"] == "ClassDB": + continue header_filename = include_gen_folder / "classes" / (camel_to_snake(engine_class["name"]) + ".hpp") source_filename = source_gen_folder / "classes" / (camel_to_snake(engine_class["name"]) + ".cpp") if headers: |
