2020-02-10 16:35:27 +00:00
|
|
|
# libwebfuse-core
|
|
|
|
|
|
|
|
add_library(webfuse-core STATIC
|
|
|
|
lib/webfuse/core/slist.c
|
|
|
|
lib/webfuse/core/message.c
|
|
|
|
lib/webfuse/core/message_queue.c
|
|
|
|
lib/webfuse/core/status.c
|
|
|
|
lib/webfuse/core/string.c
|
|
|
|
lib/webfuse/core/base64.c
|
|
|
|
lib/webfuse/core/lws_log.c
|
2020-02-28 22:17:41 +00:00
|
|
|
lib/webfuse/core/json_util.c
|
2020-02-10 16:35:27 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
set_target_properties(webfuse-core PROPERTIES OUTPUT_NAME webfuse-core)
|
2020-02-29 01:44:26 +00:00
|
|
|
target_include_directories(webfuse-core PUBLIC lib lib/jsonrpc/include)
|
2020-02-10 16:35:27 +00:00
|
|
|
set_target_properties(webfuse-core PROPERTIES C_VISIBILITY_PRESET hidden)
|
|
|
|
|
2020-02-11 21:23:51 +00:00
|
|
|
install(DIRECTORY include/webfuse/core DESTINATION include/webfuse COMPONENT headers)
|