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/client-properties/CMakeLists.txt

16 lines
673 B
CMake

include_directories(${mosquitto_SOURCE_DIR} ${mosquitto_SOURCE_DIR}/include
${STDBOOL_H_PATH} ${STDINT_H_PATH})
link_directories(${mosquitto_SOURCE_DIR})
add_library(mosquitto_client_properties SHARED mosquitto_client_properties.c)
set_target_properties(mosquitto_client_properties PROPERTIES
POSITION_INDEPENDENT_CODE 1
)
set_target_properties(mosquitto_client_properties PROPERTIES PREFIX "")
if(WIN32)
target_link_libraries(mosquitto_client_properties mosquitto)
endif(WIN32)
# Don't install, these are example plugins only.
#install(TARGETS mosquitto_client_properties RUNTIME DESTINATION "${CMAKE_INSTALL_BINDIR}" LIBRARY DESTINATION "${CMAKE_INSTALL_LIBDIR}")