mirror of
https://github.com/YosysHQ/yosys
synced 2026-07-15 11:45:41 +00:00
- update CMakeLists.txt to load two new files: - SilimateConfig.cmake: sets Silimate configuration options and defaults - SilimateVerific.cmake: compiles Verific library, optionally with Silimate modifications - include silimate tests in test Makefile
14 lines
184 B
Python
14 lines
184 B
Python
#!/usr/bin/env python3
|
|
|
|
import sys
|
|
sys.path.append("..")
|
|
|
|
import gen_tests_makefile
|
|
|
|
def main():
|
|
gen_tests_makefile.generate(["-y", "-t"])
|
|
|
|
if __name__ == "__main__":
|
|
main()
|
|
|
|
|