3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-08-04 10:20:24 +00:00

CMake: added passes

This commit is contained in:
Miodrag Milanovic 2025-02-12 14:48:41 +01:00
parent 171949065f
commit a50d630336
9 changed files with 181 additions and 0 deletions

View file

@ -0,0 +1,20 @@
add_library(yosys_passes_memory INTERFACE)
target_sources(yosys_passes_memory INTERFACE
memory.cc
memory_dff.cc
memory_share.cc
memory_collect.cc
memory_unpack.cc
memory_bram.cc
memory_map.cc
memory_memx.cc
memory_nordff.cc
memory_narrow.cc
memory_libmap.cc
memory_bmux2rom.cc
memlib.cc
memlib.h
)
target_link_libraries(yosys PRIVATE yosys_passes_memory)