diff options
author | gatecat <gatecat@ds0.me> | 2021-03-18 22:02:37 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-18 22:02:37 +0000 |
commit | aa8b12db6f0cb7859207a26de268315225270c94 (patch) | |
tree | bfd768bb1a370f6dc3aa8f66d1788108cb778c53 /fpga_interchange | |
parent | bc3fe7d014d082c4e2b7b66f9e154fc8305d2c28 (diff) | |
parent | 76c6e1248c3550bf5dfc6191421225507dabe404 (diff) | |
download | nextpnr-aa8b12db6f0cb7859207a26de268315225270c94.tar.gz nextpnr-aa8b12db6f0cb7859207a26de268315225270c94.tar.bz2 nextpnr-aa8b12db6f0cb7859207a26de268315225270c94.zip |
Merge pull request #631 from litghost/fixup_gui_dependencies
Update root CMake with some additional features
Diffstat (limited to 'fpga_interchange')
-rw-r--r-- | fpga_interchange/family.cmake | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/fpga_interchange/family.cmake b/fpga_interchange/family.cmake index bad439f8..16a38fa7 100644 --- a/fpga_interchange/family.cmake +++ b/fpga_interchange/family.cmake @@ -30,3 +30,8 @@ foreach (target ${family_targets}) target_link_libraries(${target} PRIVATE fpga_interchange_capnp) target_link_libraries(${target} PRIVATE z) endforeach() + +if(BUILD_GUI) + target_link_libraries(gui_${family} fpga_interchange_capnp) + target_link_libraries(gui_${family} z) +endif() |