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
349 B
CMake
22 lines
349 B
CMake
![]()
11 years ago
|
include_directories(
|
||
|
.
|
||
|
)
|
||
|
|
||
|
set(server_example1_SRCS
|
||
|
server_example1.c
|
||
|
static_model.c
|
||
|
)
|
||
|
|
||
|
IF(WIN32)
|
||
|
set_source_files_properties(${server_example1_SRCS}
|
||
|
PROPERTIES LANGUAGE CXX)
|
||
|
ENDIF(WIN32)
|
||
|
|
||
|
add_executable(server_example1
|
||
|
${server_example1_SRCS}
|
||
|
)
|
||
|
|
||
|
target_link_libraries(server_example1
|
||
|
iec61850
|
||
|
)
|