3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-08-05 10:50:25 +00:00

CMake: Installable share files

This commit is contained in:
Miodrag Milanovic 2025-02-13 16:06:51 +01:00
parent 3900eadde0
commit 7a31fcac3b
22 changed files with 370 additions and 0 deletions

View file

@ -28,3 +28,24 @@ target_sources(yosys_techlib_common INTERFACE
add_dependencies(yosys_techlib_common yosys_techlib_common_gen)
target_link_libraries(yosys PRIVATE yosys_techlib_common)
add_share_file("share" "simlib.v")
add_share_file("share" "simcells.v")
add_share_file("share" "techmap.v")
add_share_file("share" "smtmap.v")
add_share_file("share" "pmux2mux.v")
add_share_file("share" "adff2dff.v")
add_share_file("share" "dff2ff.v")
add_share_file("share" "gate2lut.v")
add_share_file("share" "cmp2lut.v")
add_share_file("share" "cells.lib")
add_share_file("share" "mul2dsp.v")
add_share_file("share" "abc9_model.v")
add_share_file("share" "abc9_map.v")
add_share_file("share" "abc9_unmap.v")
add_share_file("share" "cmp2lcu.v")
add_share_file("share" "cmp2softlogic.v")
add_share_file("share/choices" "choices/kogge-stone.v")
add_share_file("share/choices" "choices/han-carlson.v")
add_share_file("share/choices" "choices/sklansky.v")