From a0f5f7509bb9040752fa61fe0fdb447608e22b1c Mon Sep 17 00:00:00 2001 From: Xavier Del Campo Romero Date: Tue, 30 Sep 2025 23:50:33 +0200 Subject: Implement form interface This new interface allows library users to parse application/x-www-form-urlencoded data conveniently. --- examples/form/CMakeLists.txt | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 examples/form/CMakeLists.txt (limited to 'examples/form/CMakeLists.txt') diff --git a/examples/form/CMakeLists.txt b/examples/form/CMakeLists.txt new file mode 100644 index 0000000..d855a89 --- /dev/null +++ b/examples/form/CMakeLists.txt @@ -0,0 +1,4 @@ +cmake_minimum_required(VERSION 3.13) +project(form C) +add_executable(${PROJECT_NAME} main.c) +target_link_libraries(${PROJECT_NAME} PRIVATE web) -- cgit v1.2.3