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>
            ...
This commit is contained in:
Linus Groh 2021-03-15 00:02:53 +01:00 committed by Andreas Kling
parent a3b03eef01
commit f59d58cb76
Notes: sideshowbarker 2024-07-18 21:21:12 +09:00
2 changed files with 2 additions and 3 deletions

View File

@ -1 +1 @@
serenity_install_sources(Libraries/LibELF)
serenity_install_sources("Userland/Libraries/LibELF")

View File

@ -1,2 +1 @@
serenity_install_sources(Libraries/LibTest)
serenity_install_sources("Userland/Libraries/LibTest")