cmake_minimum_required(VERSION 3.10) project(esc C) set(CMAKE_C_STANDARD 99) 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_executable(esc src/main.c src/mutex.c src/mutex.h src/thread.c src/thread.h src/socket.c src/socket.h src/esc.c src/esc.h src/proto.c src/proto.h src/uuid.c src/uuid.h src/buffer.c src/buffer.h src/tcp_package.c src/tcp_package.h) if(WIN32) target_link_libraries(esc wsock32 ws2_32 libprotobuf-c.a) else() target_link_libraries(esc protobuf-c) endif()