2025-11-02 19:08:47 -04:00
|
|
|
add_library(attachmentSupport STATIC
|
|
|
|
|
attachmentSupport.cpp
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
set_target_properties(attachmentSupport PROPERTIES
|
|
|
|
|
POSITION_INDEPENDENT_CODE ON
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
target_include_directories(attachmentSupport PUBLIC
|
|
|
|
|
${Boost_INCLUDE_DIRS}
|
|
|
|
|
${CMAKE_SOURCE_DIR}/include
|
|
|
|
|
${CMAKE_BINARY_DIR}/include
|
|
|
|
|
)
|
2025-11-03 22:18:45 -04:00
|
|
|
|
|
|
|
|
target_link_libraries(attachmentSupport PUBLIC
|
|
|
|
|
Boost::system
|
|
|
|
|
Boost::log
|
|
|
|
|
)
|