mirror of
https://github.com/RGBCube/serenity
synced 2025-05-25 13:05:07 +00:00

This makes it so we don't need to specify the full path to all the helper scripts we include() from different places in the codebase and feels a lot cleaner.
9 lines
180 B
CMake
9 lines
180 B
CMake
include(commonmark_spec)
|
|
|
|
set(TEST_SOURCES
|
|
TestCommonmark.cpp
|
|
)
|
|
|
|
foreach(source IN LISTS TEST_SOURCES)
|
|
serenity_test("${source}" LibMarkdown LIBS LibMarkdown)
|
|
endforeach()
|