mirror of https://github.com/YosysHQ/yosys.git
17 lines
558 B
CMake
17 lines
558 B
CMake
add_library(yosys_techlibs_fabulous INTERFACE)
|
|
|
|
target_sources(yosys_techlibs_fabulous INTERFACE
|
|
synth_fabulous.cc
|
|
)
|
|
|
|
target_link_libraries(yosys PRIVATE yosys_techlibs_fabulous)
|
|
|
|
add_share_file("share/fabulous" "cells_map.v")
|
|
add_share_file("share/fabulous" "prims.v")
|
|
add_share_file("share/fabulous" "latches_map.v")
|
|
add_share_file("share/fabulous" "ff_map.v")
|
|
add_share_file("share/fabulous" "ram_regfile.txt")
|
|
add_share_file("share/fabulous" "regfile_map.v")
|
|
add_share_file("share/fabulous" "io_map.v")
|
|
add_share_file("share/fabulous" "arith_map.v")
|