You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
538 B
CMake
21 lines
538 B
CMake
set (PLUGIN_NAME mosquitto_connection_state)
|
|
|
|
add_library(${PLUGIN_NAME} MODULE
|
|
${PLUGIN_NAME}.c
|
|
)
|
|
|
|
target_include_directories(${PLUGIN_NAME} PRIVATE
|
|
"${mosquitto_SOURCE_DIR}"
|
|
"${mosquitto_SOURCE_DIR}/include"
|
|
)
|
|
|
|
set_target_properties(${PLUGIN_NAME} PROPERTIES
|
|
PREFIX ""
|
|
POSITION_INDEPENDENT_CODE 1
|
|
)
|
|
|
|
target_link_libraries(${PLUGIN_NAME} PRIVATE mosquitto)
|
|
|
|
# Don't install, these are example plugins only.
|
|
#install(TARGETS ${PLUGIN_NAME} RUNTIME DESTINATION "${CMAKE_INSTALL_BINDIR}" LIBRARY DESTINATION "${CMAKE_INSTALL_LIBDIR}")
|