mirror of
https://github.com/YosysHQ/yosys
synced 2025-06-27 16:38:46 +00:00
9 lines
220 B
CMake
9 lines
220 B
CMake
if (NOT DISABLE_SPAWN)
|
|
add_library(yosys_frontends_rpc INTERFACE)
|
|
|
|
target_sources(yosys_frontends_rpc INTERFACE
|
|
rpc_frontend.cc
|
|
)
|
|
|
|
target_link_libraries(yosys PRIVATE yosys_frontends_rpc)
|
|
endif()
|