diff options
author | Sam Atkins <atkinssj@serenityos.org> | 2023-01-19 11:44:35 +0000 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2023-01-19 11:50:10 +0000 |
commit | 73350b8492465d757fe3a7699c0450aec41061b2 (patch) | |
tree | ce416a19f48c93a86cc503d2b9d4ffcd6463b0ed /Tests/LibMarkdown/CMakeLists.txt | |
parent | 7b82f37ba326565eca9738a3a71be90347342781 (diff) | |
download | serenity-73350b8492465d757fe3a7699c0450aec41061b2.zip |
Tests: Mark TestCommonmark as DISABLED
This has no effect right now, but will allow us to use this same cmake
file from Lagom.
Diffstat (limited to 'Tests/LibMarkdown/CMakeLists.txt')
-rw-r--r-- | Tests/LibMarkdown/CMakeLists.txt | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Tests/LibMarkdown/CMakeLists.txt b/Tests/LibMarkdown/CMakeLists.txt index 97bff35e45..adf499594b 100644 --- a/Tests/LibMarkdown/CMakeLists.txt +++ b/Tests/LibMarkdown/CMakeLists.txt @@ -8,3 +8,7 @@ set(TEST_SOURCES foreach(source IN LISTS TEST_SOURCES) serenity_test("${source}" LibMarkdown LIBS LibMarkdown) endforeach() + +if (BUILD_LAGOM) + set_tests_properties(TestCommonmark PROPERTIES DISABLED YES) +endif() |