Remove programs that depend on TLS or X.509
diff --git a/programs/test/CMakeLists.txt b/programs/test/CMakeLists.txt
index 59f8d54..2b455ee 100644
--- a/programs/test/CMakeLists.txt
+++ b/programs/test/CMakeLists.txt
@@ -13,9 +13,6 @@
     target_link_libraries(cpp_dummy_build ${libs})
 endif()
 
-add_executable(udp_proxy udp_proxy.c)
-target_link_libraries(udp_proxy ${libs})
-
 add_executable(zeroize zeroize.c)
 target_link_libraries(zeroize ${libs})
 
@@ -23,6 +20,6 @@
 target_sources(query_compile_time_config PUBLIC query_config.c)
 target_link_libraries(query_compile_time_config ${libs})
 
-install(TARGETS selftest benchmark udp_proxy query_compile_time_config
+install(TARGETS selftest benchmark query_compile_time_config
         DESTINATION "bin"
         PERMISSIONS OWNER_READ OWNER_WRITE OWNER_EXECUTE GROUP_READ GROUP_EXECUTE WORLD_READ WORLD_EXECUTE)