3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2026-07-15 11:45:41 +00:00
yosys/tests/silimate/generate_mk.py
Mohamed Gaber d986ee91ac
CMake: integrate silimate additions and extensions
- 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
2026-06-10 20:27:52 +03:00

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()