21 lines
361 B
CMake
21 lines
361 B
CMake
include_directories(
|
|
.
|
|
)
|
|
|
|
set(server_example_ca_SRCS
|
|
server_example_ca.c
|
|
static_model.c
|
|
)
|
|
|
|
IF(WIN32)
|
|
set_source_files_properties(${server_example_ca_SRCS}
|
|
PROPERTIES LANGUAGE CXX)
|
|
ENDIF(WIN32)
|
|
|
|
add_executable(server_example_ca
|
|
${server_example_ca_SRCS}
|
|
)
|
|
|
|
target_link_libraries(server_example_ca
|
|
iec61850
|
|
)
|