Updated generators scripts

This commit is contained in:
John Wellbelove 2022-07-24 17:43:46 +01:00
parent 23bf850785
commit ea49e6a80f
2 changed files with 3 additions and 2 deletions

View File

@ -5,4 +5,5 @@ python -m cogapp -d -e -o../smallest.h -DNTypes=16 smallest_generator.h
python -m cogapp -d -e -o../type_traits.h -DIsOneOf=16 type_traits_generator.h
python -m cogapp -d -e -o../type_lookup.h -DNTypes=16 type_lookup_generator.h
python -m cogapp -d -e -o../type_select.h -DNTypes=16 type_select_generator.h
python -m cogapp -d -e -o../message_packet.h -DHandlers=16 message_packet_generator.h
python -m cogapp -d -e -o../message_packet.h -DHandlers=16 message_packet_generator.h
python -m cogapp -d -e -o../variant_pool.h -DNTypes=16 variant_pool_generator.h

View File

@ -3,7 +3,7 @@ from os.path import abspath
from pathlib import Path
import filecmp
root_path = Path(abspath(__file__)).parent
root_path = Path(abspath(__file__)).parent.parent
generator_folder = root_path/"include" / "etl" / "generators"
# Create folder where generator outputs can go for purpose of comparison