- added goose_publisher/CMakeLists.txt
This commit is contained in:
parent
33fcf156d4
commit
c730c93229
1 changed files with 30 additions and 0 deletions
30
examples/goose_publisher/CMakeLists.txt
Normal file
30
examples/goose_publisher/CMakeLists.txt
Normal file
|
@ -0,0 +1,30 @@
|
|||
|
||||
set(goose_publisher_example_SRCS
|
||||
goose_publisher_example.c
|
||||
)
|
||||
|
||||
IF(WIN32)
|
||||
|
||||
set_source_files_properties(${goose_publisher_example_SRCS}
|
||||
PROPERTIES LANGUAGE CXX)
|
||||
add_executable(goose_publisher_example
|
||||
${goose_publisher_example_SRCS}
|
||||
)
|
||||
|
||||
target_link_libraries(goose_publisher_example
|
||||
iec61850
|
||||
)
|
||||
|
||||
ELSE(WIN32)
|
||||
|
||||
add_executable(goose_publisher_example
|
||||
${goose_publisher_example_SRCS}
|
||||
)
|
||||
|
||||
target_link_libraries(goose_publisher_example
|
||||
iec61850
|
||||
)
|
||||
|
||||
ENDIF(WIN32)
|
||||
|
||||
|
Loading…
Add table
Reference in a new issue