| | |
| | | # to the source code |
| | | configure_file(bus_config.h.in bus_config.h) |
| | | |
| | | add_library(shm_queue |
| | | |
| | | list(APPEND _SOURCES_ |
| | | ./logger_factory.cpp |
| | | ./socket/bus_server_socket.cpp |
| | | ./socket/bus_server_socket_wrapper.cpp |
| | |
| | | ./shm/shm_mm_wrapper.cpp |
| | | ./shm/mm.cpp |
| | | ./shm/hashtable.cpp |
| | | |
| | | ) |
| | | |
| | | target_include_directories(shm_queue PUBLIC |
| | | ${EXTRA_INCLUDES} |
| | | ) |
| | | |
| | | add_library(shm_queue ${_SOURCES_}) |
| | | |
| | | target_include_directories(shm_queue PUBLIC ${EXTRA_INCLUDES} ) |
| | | |
| | | target_include_directories(shm_queue PUBLIC |
| | | ${PROJECT_BINARY_DIR}/src |
| | |
| | | ./shm/mm.h |
| | | ./shm/shm_mm_wrapper.h |
| | | ./shm/shm_allocator.h |
| | | |
| | | |
| | | |
| | | DESTINATION include) |
| | | |