diff options
author | Andrew Kaster <akaster@serenityos.org> | 2021-09-07 01:50:09 -0600 |
---|---|---|
committer | Ali Mohammad Pur <Ali.mpfard@gmail.com> | 2021-09-15 19:04:52 +0430 |
commit | 6e7cc40b18dae594a9b0344a8dda692fa4d81343 (patch) | |
tree | f6b3ada9d733f09242d1b6278610c597115447c5 /Tests | |
parent | a269a32a17866641f057c8f52348c1c9b4b95d7b (diff) | |
download | serenity-6e7cc40b18dae594a9b0344a8dda692fa4d81343.zip |
Meta: Add Meta/CMake to the CMAKE_MODULE_PATH for Serenity and Lagom
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.
Diffstat (limited to 'Tests')
-rw-r--r-- | Tests/LibMarkdown/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Tests/LibMarkdown/CMakeLists.txt b/Tests/LibMarkdown/CMakeLists.txt index b69c3013b1..ec58449842 100644 --- a/Tests/LibMarkdown/CMakeLists.txt +++ b/Tests/LibMarkdown/CMakeLists.txt @@ -1,4 +1,4 @@ -include(${SERENITY_PROJECT_ROOT}/Meta/CMake/commonmark_spec.cmake) +include(commonmark_spec) set(TEST_SOURCES TestCommonmark.cpp |