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.
18 lines
402 B
CMake
18 lines
402 B
CMake
![]()
1 year ago
|
|
||
|
set(iec61850_client_example_rcbAsync_SRCS
|
||
|
client_example_rcbAsync.c
|
||
|
)
|
||
|
|
||
|
IF(MSVC)
|
||
|
set_source_files_properties(${iec61850_client_example_rcbAsync_SRCS}
|
||
|
PROPERTIES LANGUAGE CXX)
|
||
|
ENDIF(MSVC)
|
||
|
|
||
|
add_executable(iec61850_client_example_rcbAsync
|
||
|
${iec61850_client_example_rcbAsync_SRCS}
|
||
|
)
|
||
|
|
||
|
target_link_libraries(iec61850_client_example_rcbAsync
|
||
|
iec61850
|
||
|
)
|