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.
mosquitto/plugins/examples/add-properties/CMakeLists.txt

19 lines
526 B
CMake

add_library(mosquitto_add_properties SHARED
mosquitto_add_properties.c
)
target_include_directories(mosquitto_add_properties PRIVATE
"${STDBOOL_H_PATH}"
"${STDINT_H_PATH}"
"${mosquitto_SOURCE_DIR}"
"${mosquitto_SOURCE_DIR}/include"
)
set_target_properties(mosquitto_add_properties PROPERTIES
PREFIX ""
POSITION_INDEPENDENT_CODE 1
)
# Don't install, these are example plugins only.
#install(TARGETS mosquitto_add_properties RUNTIME DESTINATION "${CMAKE_INSTALL_BINDIR}" LIBRARY DESTINATION "${CMAKE_INSTALL_LIBDIR}")