@JoeCFD I was able to find an answer to this question by doing this:
find_package(PkgConfig REQUIRED)
pkg_check_modules(ZBar REQUIRED IMPORTED_TARGET zbar)
target_link_libraries(camera PUBLIC PkgConfig::ZBar)
Since I anyway had pkg-config, I found that package and then zbar using that package and then linked it with the libraries.