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/iec61850_9_2_LE_example/CMakeLists.txt

22 lines
365 B
CMake

include_directories(
.
)
set(sv_9_2_LE_example_SRCS
iec61850_9_2_LE_example.c
static_model.c
)
IF(MSVC)
set_source_files_properties(${sv_9_2_LE_example_SRCS}
PROPERTIES LANGUAGE CXX)
ENDIF(MSVC)
add_executable(sv_9_2_LE_example
${sv_9_2_LE_example_SRCS}
)
target_link_libraries(sv_9_2_LE_example
iec61850
)