Initial commit based on common repo commit ffeb9c9b

This commit is contained in:
2021-04-22 15:57:00 +02:00
commit 8b2a408e6f
107 changed files with 61542 additions and 0 deletions

19
examples/CMakeLists.txt Normal file
View File

@@ -0,0 +1,19 @@
SET(APP_NAME raw2caps)
SET(SOURCES
raw2caps.cpp
)
ADD_EXECUTABLE(${APP_NAME} ${SOURCES})
TARGET_LINK_LIBRARIES(${APP_NAME}
capsclient
mseed
${Boost_program_options_LIBRARY}
${Boost_filesystem_LIBRARY}
${Boost_system_LIBRARY}
${OPENSSL_LIBRARIES}
)
INSTALL(TARGETS ${APP_NAME} DESTINATION examples)
INSTALL(DIRECTORY python DESTINATION examples)