add_executable(server_app server_main.c
    ../shared/utils.c
    modules/sockets/s_sockets.c
    modules/sockets/s_sockets.h
    modules/fifo/s_fifo.c
    modules/fifo/s_fifo.h
    modules/shm/s_shm.c
    modules/shm/s_shm.h)

target_include_directories(server_app PRIVATE ${CMAKE_SOURCE_DIR}/src/shared)