Closed Risto97 closed 2 months ago
Because SystemVerilog and Verilog are split as separate languages often we need to do this:
get_ip_include_directories(SV_INCDIRS ${IP_LIB} SYSTEMVERILOG) get_ip_include_directories(V_INCDIRS ${IP_LIB} VERILOG)
A nicer solution would be, to have LANGUAGES be a list, like this:
get_ip_include_directories(SV_INCDIRS ${IP_LIB} SYSTEMVERILOG VERILOG)
The order of the list should signify which file list will be first.
Currently the get_rtl_sources() solves this for source files, but I don't like the solution, because should VHDL be included? What are RTL languages, chisel also?
get_rtl_sources()
chisel
Because SystemVerilog and Verilog are split as separate languages often we need to do this:
A nicer solution would be, to have LANGUAGES be a list, like this:
The order of the list should signify which file list will be first.
Currently the
get_rtl_sources()
solves this for source files, but I don't like the solution, because should VHDL be included? What are RTL languages,chisel
also?