IC_104/lib60870-C/examples/cs104_client/CMakeLists.txt
George 1ddf693260 feat:
--READ smash_read_this.txt
2026-06-22 16:04:13 +05:30

21 lines
301 B
CMake

include_directories(
.
)
set(example_SRCS
simple_client.c
)
IF(WIN32)
set_source_files_properties(${example_SRCS}
PROPERTIES LANGUAGE CXX)
ENDIF(WIN32)
add_executable(simple_client
${example_SRCS}
)
target_link_libraries(simple_client
lib60870
)