Hey @brycegallo, you can add the following two lines to CMakeLists.txt to resolve the issue:
find_package(ZLIB REQUIRED)
target_link_libraries(http-server PRIVATE ZLIB::ZLIB)
This ensures that your project links correctly against the Zlib library.
