init(cgi): add Common Gateway Interface with authentication only

This commit is contained in:
2023-01-04 01:55:15 +03:00
parent 091b1757c6
commit 5019c54380
2 changed files with 118 additions and 0 deletions
+4
View File
@@ -28,3 +28,7 @@ add_library(tanabata SHARED ${TANABATA_SRC})
# Tanabata CLI app
add_executable(tfm ${TANABATA_SRC} ${CLI_SRC})
# Authentication CGI app
add_executable(tfm-cgi ${TANABATA_SRC} cgi/cgi.c)
target_link_libraries(tfm-cgi fcgi ssl crypto pthread)