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.
31 lines
406 B
CMake
31 lines
406 B
CMake
|
|
set(sntp_example_SRCS
|
|
sntp_example.c
|
|
)
|
|
|
|
IF(WIN32)
|
|
|
|
set_source_files_properties(${sntp_example_SRCS}
|
|
PROPERTIES LANGUAGE CXX)
|
|
add_executable(sntp_example
|
|
${sntp_example_SRCS}
|
|
)
|
|
|
|
target_link_libraries(sntp_example
|
|
iec61850
|
|
)
|
|
|
|
ELSE(WIN32)
|
|
|
|
add_executable(sntp_example
|
|
${sntp_example_SRCS}
|
|
)
|
|
|
|
target_link_libraries(sntp_example
|
|
iec61850
|
|
)
|
|
|
|
ENDIF(WIN32)
|
|
|
|
|