而 cgic 跟 cJSON 都是很精簡的單一檔案,非常方便,建議直接看他們的 header file ,就可以很快了解其概念,其中 cJSON 適合看 README ,裡頭提到了需要面對的記憶體管理。
以下是 CMake 編譯範例:
# https://raw.githubusercontent.com/boutell/cgic/master/cgic.h
# https://raw.githubusercontent.com/boutell/cgic/master/cgic.c
set(CGIC_VERSION "cgic-2.07")
include_directories(deps/${CGIC_VERSION}/include)
add_library(cgic
deps/${CGIC_VERSION}/src/cgic.c
)
# https://raw.githubusercontent.com/DaveGamble/cJSON/v1.7.12/cJSON.h
# https://raw.githubusercontent.com/DaveGamble/cJSON/v1.7.12/cJSON.c
set(CJSON_VERSION "cjson-1.7.12")
include_directories(deps/${CJSON_VERSION}/include)
add_library(cjson
deps/${CJSON_VERSION}/src/cJSON.c
)
如此,後續要編譯時,就可以:
add_executable(study-app.cgi
src/study-app.c
)
target_link_libraries(study-app.cgi
cgic
cjson
curl
)
相關筆記在此: changyy/thttpd-cgi-study/blob/master/src/study-app.c
原來cgi還有這套,之前是都用FastCGI,那時候有刻一個小小RESTful框架,後面有在復刻一個,看看能不能也兼容這套
回覆刪除https://github.com/JeffTsengTwn/cREST