3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-06-22 13:53:40 +00:00

CMake: add backends

This commit is contained in:
Miodrag Milanovic 2025-02-12 14:36:04 +01:00
parent f51a2d793a
commit 171949065f
17 changed files with 133 additions and 1 deletions

View file

@ -0,0 +1,7 @@
add_library(yosys_backends_table INTERFACE)
target_sources(yosys_backends_table INTERFACE
table.cc
)
target_link_libraries(yosys PRIVATE yosys_backends_table)