mirror of
https://github.com/falk-werner/webfuse
synced 2024-10-27 20:34:10 +00:00
14 lines
290 B
CMake
14 lines
290 B
CMake
|
# jsonrpc
|
||
|
|
||
|
add_library(jsonrpc STATIC
|
||
|
lib/jsonrpc/proxy.c
|
||
|
lib/jsonrpc/server.c
|
||
|
lib/jsonrpc/method.c
|
||
|
lib/jsonrpc/request.c
|
||
|
lib/jsonrpc/response.c
|
||
|
lib/jsonrpc/error.c
|
||
|
)
|
||
|
|
||
|
target_include_directories(jsonrpc PUBLIC lib)
|
||
|
set_target_properties(jsonrpc PROPERTIES C_VISIBILITY_PRESET hidden)
|