blob: 417f4cf2cd6313c505d725ef398a8c9dc98d2d32 (
plain)
1
2
3
4
5
|
include_directories(${PROJECT_SOURCE_DIR}include/)
add_executable(simple_example simple_example.c)
add_executable(async_example async_example.c)
target_link_libraries(simple_example swarmkv-static ${SWARMKV_DEPEND_DYN_LIB})
target_link_libraries(async_example swarmkv-static ${SWARMKV_DEPEND_DYN_LIB})
|