diff options
author | Linus Groh <mail@linusgroh.de> | 2021-03-15 00:02:53 +0100 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-03-15 09:06:10 +0100 |
commit | f59d58cb76e234664cd248f4971532d163a8a92e (patch) | |
tree | f4bd5a41e58a7d47913efefcb005f3c74c0b4247 /Userland/Libraries/LibTest/CMakeLists.txt | |
parent | a3b03eef016db4ee3759bea17a889dd8db83f64f (diff) | |
download | serenity-f59d58cb76e234664cd248f4971532d163a8a92e.zip |
LibELF+LibTest: Fix serenity_install_sources() paths
Currently we end up with the following:
serenity/
AK/
...
Kernel/
...
Libraries/
LibELF/
LibTest/
Userland/
Libraries/
<all other libs>
...
Diffstat (limited to 'Userland/Libraries/LibTest/CMakeLists.txt')
-rw-r--r-- | Userland/Libraries/LibTest/CMakeLists.txt | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Userland/Libraries/LibTest/CMakeLists.txt b/Userland/Libraries/LibTest/CMakeLists.txt index 954409d28c..a924ea3e3f 100644 --- a/Userland/Libraries/LibTest/CMakeLists.txt +++ b/Userland/Libraries/LibTest/CMakeLists.txt @@ -1,2 +1 @@ - -serenity_install_sources(Libraries/LibTest) +serenity_install_sources("Userland/Libraries/LibTest") |