4e585e4372
added subscribe_to_all (wip)
22 lines
1.4 KiB
CMake
22 lines
1.4 KiB
CMake
cmake_minimum_required(VERSION 3.9)
|
|
project(evenstore-client-c C)
|
|
|
|
set(CMAKE_C_STANDARD 99)
|
|
|
|
add_compile_options(-DDEBUG)
|
|
|
|
if(WIN32)
|
|
include_directories(c:/Users/nicol/dev/thirdparty/protobuf-c)
|
|
link_directories(c:/Users/nicol/dev/thirdparty/protobuf-c/protobuf-c/.libs)
|
|
endif()
|
|
|
|
add_library(eventstore-client-c src/utils/mutex.c src/utils/mutex.h src/utils/thread.c src/utils/thread.h src/utils/socket.c src/utils/socket.h include/esc.h src/proto.c src/proto.h src/utils/uuid.c src/utils/uuid.h src/utils/buffer.c src/utils/buffer.h src/tcp_package.c src/tcp_package.h src/utils/string.c src/utils/string.h src/utils/queue.c src/utils/queue.h src/tcp_messages.c src/tcp_messages.h src/utils/debug.h src/utils/debug.c src/position.c src/position.h src/credentials.c src/credentials.h src/connection.c src/connection.h src/utils/bool.h src/endpoint_discoverer.h src/utils/error.c src/utils/error.h src/endpoint_discoverer.c src/proto_helper.h src/proto_helper.c src/results.h src/results.c src/event_data.c src/event_data.h src/utils/array.c src/utils/array.h src/utils/event.c src/utils/event.h src/subscription.c src/subscription.h)
|
|
add_executable(esc test/main.c include/esc.h)
|
|
|
|
if(WIN32)
|
|
target_link_libraries(eventstore-client-c wsock32 ws2_32)
|
|
target_link_libraries(esc eventstore-client-c libprotobuf-c.a)
|
|
else()
|
|
target_link_libraries(eventstore-client-c pthread)
|
|
target_link_libraries(esc pthread eventstore-client-c protobuf-c)
|
|
endif() |