Skip to content
Snippets Groups Projects
Commit 25084694 authored by Mathis Rosenhauer's avatar Mathis Rosenhauer
Browse files

CMake: target for update-sampledata (fixes #11)

parent 1d973fff
No related branches found
No related tags found
No related merge requests found
......@@ -19,4 +19,17 @@ if(UNIX)
NAME sampledata.sh
COMMAND ${CMAKE_CURRENT_SOURCE_DIR}/sampledata.sh ${CMAKE_CURRENT_SOURCE_DIR}
WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR})
set(SAMPLE_DATA_DIR "${PROJECT_SOURCE_DIR}/data")
set(SAMPLE_DATA_NAME "121B2TestData")
set(SAMPLE_DATA_URL "https://cwe.ccsds.org/sls/docs/SLS-DC/BB121B2TestData/121B2TestData.zip")
add_custom_target(
update-sampledata
WORKING_DIRECTORY ${SAMPLE_DATA_DIR}
COMMAND rm -rf ${SAMPLE_DATA_NAME}
COMMAND curl ${SAMPLE_DATA_URL} -O
COMMAND unzip "${SAMPLE_DATA_NAME}.zip"
COMMAND rm -f "${SAMPLE_DATA_NAME}.zip"
COMMAND mv -f "${SAMPLE_DATA_NAME}/AllOptions/test_P512n22.dat"
"${SAMPLE_DATA_NAME}/AllOptions/test_p512n22.dat")
endif(UNIX)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment