diff options
author | Leon Albrecht <37629766+Hendiadyoin1@users.noreply.github.com> | 2021-04-19 18:16:46 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-19 18:16:46 +0200 |
commit | 6f5e92a2798b8bf5de5e94ce8ea9f6b544f609f1 (patch) | |
tree | 633f42f1671a8d968ba48eb65aa656dd84184da0 /AK/Tests/CMakeLists.txt | |
parent | e5f84b53d87c1c9931c7e223c71300c27e51d6cb (diff) | |
download | serenity-6f5e92a2798b8bf5de5e94ce8ea9f6b544f609f1.zip |
AK/Tests: Install test fixtures required for TestJSON
Diffstat (limited to 'AK/Tests/CMakeLists.txt')
-rw-r--r-- | AK/Tests/CMakeLists.txt | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/AK/Tests/CMakeLists.txt b/AK/Tests/CMakeLists.txt index 486a24e576..e6a583fef5 100644 --- a/AK/Tests/CMakeLists.txt +++ b/AK/Tests/CMakeLists.txt @@ -63,3 +63,7 @@ foreach(source ${AK_TEST_SOURCES}) target_link_libraries(${name} LibCore) install(TARGETS ${name} RUNTIME DESTINATION usr/Tests/AK) endforeach() + +get_filename_component(TEST_FRM_RESOLVED ./test.frm REALPATH) +install(FILES ./4chan_catalog.json DESTINATION usr/Tests/AK) +install(FILES ${TEST_FRM_RESOLVED} DESTINATION usr/Tests/AK) |