I am trying to learn how to create the TCL file from Vitis so I can use it to re-create the same project later. I have done the same in Vivado, but Vitis seems different. how can I re-create a project by using TCL or any other file in Vitis?
platform create -name {signal_fpga_06_09}\
-hw {/home/tahaalar/Downloads/Project/***_fpga-master@691d2d3b3bd/design_sources/firmware/processor_file/signal_fpga_06_09.xsa}\
-out {/home/tahaalar/workspace/re_gen_yeb}
platform write
domain create -name {standalone_microblaze_0} -display-name {standalone_microblaze_0} -os {standalone} -proc {microblaze_0} -runtime {cpp} -arch {32-bit} -support-app {empty_application}
platform generate -domains
platform active {signal_fpga_06_09}
platform generate -quick
I have some start lines to create the the project but where can I find the other commands for adding the sources and build the project and so on?.
Am I on the write path or Do I have to do something else to generate the TCL file?