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
362 B
CMake
18 lines
362 B
CMake
|
|
set(iec61850_client_no_thread_SRCS
|
|
client_example_no_thread.c
|
|
)
|
|
|
|
IF(WIN32)
|
|
set_source_files_properties(${iec61850_client_no_thread_SRCS}
|
|
PROPERTIES LANGUAGE CXX)
|
|
ENDIF(WIN32)
|
|
|
|
add_executable(iec61850_client_no_thread
|
|
${iec61850_client_no_thread_SRCS}
|
|
)
|
|
|
|
target_link_libraries(iec61850_client_no_thread
|
|
iec61850
|
|
)
|