mirror of https://github.com/YosysHQ/nextpnr.git
11 lines
189 B
CMake
11 lines
189 B
CMake
|
|
add_library(nextpnr_rust INTERFACE)
|
||
|
|
|
||
|
|
target_include_directories(nextpnr_rust INTERFACE .)
|
||
|
|
|
||
|
|
if (USE_RUST)
|
||
|
|
target_sources(nextpnr_rust PUBLIC
|
||
|
|
rust.cc
|
||
|
|
rust.h
|
||
|
|
)
|
||
|
|
endif()
|