mirror of https://github.com/YosysHQ/nextpnr.git
11 lines
189 B
CMake
11 lines
189 B
CMake
|
|
add_library(nextpnr_route INTERFACE)
|
||
|
|
|
||
|
|
target_include_directories(nextpnr_route INTERFACE .)
|
||
|
|
|
||
|
|
target_sources(nextpnr_route PUBLIC
|
||
|
|
router1.cc
|
||
|
|
router1.h
|
||
|
|
router2.cc
|
||
|
|
router2.h
|
||
|
|
)
|