ue,upper: fix linking on 32bit platforms with missing atomic libs

This commit is contained in:
Andre Puschmann 2021-07-05 08:59:19 +02:00
parent f90e359208
commit 5dbeecdbb5
1 changed files with 2 additions and 1 deletions

View File

@ -15,7 +15,8 @@ if(HAVE_PCSC)
endif(HAVE_PCSC)
add_library(srsue_upper STATIC ${SOURCES})
target_link_libraries(srsue_upper ${ATOMIC_LIBS})
if(HAVE_PCSC)
target_link_libraries(srsue_upper ${PCSCLITE_LIBRARY})
endif(HAVE_PCSC)
endif(HAVE_PCSC)