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 /gui | |
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 'gui')
-rw-r--r-- | gui/CMakeLists.txt | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gui/CMakeLists.txt b/gui/CMakeLists.txt index a818640f..e692eee9 100644 --- a/gui/CMakeLists.txt +++ b/gui/CMakeLists.txt @@ -40,3 +40,7 @@ endif() target_compile_definitions(gui_${family} PRIVATE NEXTPNR_NAMESPACE=nextpnr_${family} ARCH_${ufamily} ARCHNAME=${family} QT_NO_KEYWORDS) target_link_libraries(gui_${family} Qt5::Widgets) + +foreach(lib_dep ${EXTRA_LIB_DEPS}) + target_link_libraries(gui_${family} ${lib_dep}) +endforeach() |