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.
libiec61850/examples/mms_utility/CMakeLists.txt

18 lines
277 B
CMake

set(mms_utility_SRCS
mms_utility.c
)
IF(MSVC)
set_source_files_properties(${mms_utility_SRCS}
PROPERTIES LANGUAGE CXX)
ENDIF(MSVC)
add_executable(mms_utility
${mms_utility_SRCS}
)
target_link_libraries(mms_utility
iec61850
)