libiec61850/examples/iec61850_client_example_reporting/CMakeLists.txt
2014-12-01 10:34:45 +01:00

17 lines
402 B
CMake

set(iec61850_client_example_reporting_SRCS
client_example_reporting.c
)
IF(WIN32)
set_source_files_properties(${iec61850_client_example_reporting_SRCS}
PROPERTIES LANGUAGE CXX)
ENDIF(WIN32)
add_executable(iec61850_client_example_reporting
${iec61850_client_example_reporting_SRCS}
)
target_link_libraries(iec61850_client_example_reporting
iec61850
)