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.
21 lines
409 B
CMake
21 lines
409 B
CMake
![]()
3 years ago
|
|
||
|
set(r_goose_subscriber_example_SRCS
|
||
|
r_goose_subscriber_example.c
|
||
|
)
|
||
|
|
||
|
IF(MSVC)
|
||
|
|
||
|
set_source_files_properties(${r_goose_subscriber_example_SRCS}
|
||
|
PROPERTIES LANGUAGE CXX)
|
||
|
ENDIF(MSVC)
|
||
|
|
||
|
add_executable(r_goose_subscriber_example
|
||
|
${r_goose_subscriber_example_SRCS}
|
||
|
)
|
||
|
|
||
|
target_link_libraries(r_goose_subscriber_example
|
||
|
iec61850
|
||
|
)
|
||
|
|
||
|
|