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.
20 lines
356 B
CMake
20 lines
356 B
CMake
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)
|