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.
22 lines
380 B
CMake
22 lines
380 B
CMake
|
|
set(sv_subscriber_example_SRCS
|
|
sv_subscriber_example.c
|
|
)
|
|
|
|
IF(MSVC)
|
|
|
|
set_source_files_properties(${sv_subscriber_example_SRCS}
|
|
PROPERTIES LANGUAGE CXX)
|
|
ENDIF(MSVC)
|
|
|
|
add_executable(sv_subscriber_example
|
|
${sv_subscriber_example_SRCS}
|
|
)
|
|
|
|
target_link_libraries(sv_subscriber_example
|
|
iec61850
|
|
)
|
|
|
|
|
|
|