mirror of
https://github.com/YosysHQ/yosys
synced 2025-04-21 16:16:39 +00:00
10 lines
220 B
CMake
10 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()
|