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.
22 lines
365 B
CMake
22 lines
365 B
CMake
![]()
4 months ago
|
include_directories(
|
||
|
.
|
||
|
)
|
||
|
|
||
|
set(server_example_SMV_SRCS
|
||
|
server_example_SMV.c
|
||
|
static_model.c
|
||
|
)
|
||
|
|
||
|
IF(MSVC)
|
||
|
set_source_files_properties(${server_example_SMV_SRCS}
|
||
|
PROPERTIES LANGUAGE CXX)
|
||
|
ENDIF(MSVC)
|
||
|
|
||
|
add_executable(server_example_SMV
|
||
|
${server_example_SMV_SRCS}
|
||
|
)
|
||
|
|
||
|
target_link_libraries(server_example_SMV
|
||
|
iec61850
|
||
|
)
|