1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 16:07:47 +00:00

markdown-checker: New tool that checks document links

This commit is contained in:
Ben Wiederhake 2021-09-10 21:37:42 +02:00 committed by Brian Gianforcaro
parent 50ad294527
commit 3f88d65b78
3 changed files with 248 additions and 0 deletions

View file

@ -436,6 +436,10 @@ if (BUILD_LAGOM)
set_target_properties(js_lagom PROPERTIES OUTPUT_NAME js)
target_link_libraries(js_lagom LagomJS LagomLine Threads::Threads)
add_executable(markdown-check_lagom ../../Userland/Utilities/markdown-check.cpp)
set_target_properties(markdown-check_lagom PROPERTIES OUTPUT_NAME markdown-check)
target_link_libraries(markdown-check_lagom LagomMarkdown)
add_executable(ntpquery_lagom ../../Userland/Utilities/ntpquery.cpp)
set_target_properties(ntpquery_lagom PROPERTIES OUTPUT_NAME ntpquery)
target_link_libraries(ntpquery_lagom LagomCore)