blob: adf499594b5d39efbe03031c2f96744eba5c3883 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
include(commonmark_spec)
set(TEST_SOURCES
TestCommonmark.cpp
TestImageSizeExtension.cpp
)
foreach(source IN LISTS TEST_SOURCES)
serenity_test("${source}" LibMarkdown LIBS LibMarkdown)
endforeach()
if (BUILD_LAGOM)
set_tests_properties(TestCommonmark PROPERTIES DISABLED YES)
endif()
|