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.
libiec61850/examples/tls_client_example/CMakeLists.txt

18 lines
288 B
CMake

set(example_SRCS
tls_client_example.c
)
IF(WIN32)
set_source_files_properties(${example_SRCS}
PROPERTIES LANGUAGE CXX)
ENDIF(WIN32)
add_executable(tls_client_example
${example_SRCS}
)
target_link_libraries(tls_client_example
iec61850
)