mirror of
https://github.com/SerenityOS/serenity.git
synced 2025-01-22 09:21:57 -05:00
9 lines
410 B
CMake
9 lines
410 B
CMake
option(ENABLE_COMMONMARK_SPEC_DOWNLOAD "Enable download of commonmark test suite at build time" ON)
|
|
|
|
set(MARKDOWN_TEST_PATH ${SERENITY_CACHE_DIR}/commonmark.spec.json)
|
|
set(MARKDOWN_TEST_URL https://spec.commonmark.org/0.30/spec.json)
|
|
|
|
if(ENABLE_COMMONMARK_SPEC_DOWNLOAD)
|
|
download_file(${MARKDOWN_TEST_URL} ${MARKDOWN_TEST_PATH})
|
|
install(FILES ${MARKDOWN_TEST_PATH} DESTINATION home/anon/Tests)
|
|
endif()
|