diff options
author | Keith Rothman <537074+litghost@users.noreply.github.com> | 2021-02-11 15:36:16 -0800 |
---|---|---|
committer | Keith Rothman <537074+litghost@users.noreply.github.com> | 2021-02-12 10:31:05 -0800 |
commit | 8a860857ea8a1a0fffd68762bcf4cd8432e59408 (patch) | |
tree | 3c9c0dbe0b4f99ea8130fc2f5e449a35ebe72205 | |
parent | c96d0f225c19059e2eb91b66934e7f01e5e5b43e (diff) | |
download | nextpnr-8a860857ea8a1a0fffd68762bcf4cd8432e59408.tar.gz nextpnr-8a860857ea8a1a0fffd68762bcf4cd8432e59408.tar.bz2 nextpnr-8a860857ea8a1a0fffd68762bcf4cd8432e59408.zip |
Remove capnp and libz for XDC parser PR.
Signed-off-by: Keith Rothman <537074+litghost@users.noreply.github.com>
-rw-r--r-- | fpga_interchange/family.cmake | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/fpga_interchange/family.cmake b/fpga_interchange/family.cmake index 47bfb436..c3fefaba 100644 --- a/fpga_interchange/family.cmake +++ b/fpga_interchange/family.cmake @@ -1,4 +1,3 @@ - find_package(TCL) if(NOT ${TCL_FOUND}) message(FATAL_ERROR "Tcl is required for FPGA interchange Arch.") @@ -7,7 +6,4 @@ endif() foreach (target ${family_targets}) target_link_libraries(${target} LINK_PUBLIC ${TCL_LIBRARY}) include_directories (${TCL_INCLUDE_PATH}) - target_link_libraries(${target} LINK_PUBLIC capnp) - target_link_libraries(${target} LINK_PUBLIC kj) - target_link_libraries(${target} LINK_PUBLIC z) endforeach() |