nextpnr/frontend/CMakeLists.txt
Catherine 5f80f13803 CMake: refactor architecture-specific build system parts.
Two user-visible changes were made:
* `-DUSE_RUST` is replaced with `-DBUILD_RUST`, by analogy with
  `-DBUILD_PYTHON`
* `-DCOVERAGE` was removed as it doesn't work with either modern GCC
  or Clang
2025-01-21 16:51:58 +00:00

10 lines
204 B
CMake

add_library(nextpnr_frontend INTERFACE)
target_include_directories(nextpnr_frontend INTERFACE .)
target_sources(nextpnr_frontend INTERFACE
frontend_base.h
json_frontend.cc
json_frontend.h
)