diff options
author | Lucas CHOLLET <lucas.chollet@free.fr> | 2022-01-13 20:54:35 +0100 |
---|---|---|
committer | Idan Horowitz <idan.horowitz@gmail.com> | 2022-01-14 19:42:19 +0200 |
commit | affef5d1a9006c28b782e589e9425d742fe0a54c (patch) | |
tree | ddcb95628e11dc1146a1b30317f3a737f6be1d96 /Meta/Lagom | |
parent | 1716105e738b91120905b53dddac389c39ce38dd (diff) | |
download | serenity-affef5d1a9006c28b782e589e9425d742fe0a54c.zip |
disasm: Port to LibMain
Diffstat (limited to 'Meta/Lagom')
-rw-r--r-- | Meta/Lagom/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Meta/Lagom/CMakeLists.txt b/Meta/Lagom/CMakeLists.txt index fcc5d15a67..47f75c4f24 100644 --- a/Meta/Lagom/CMakeLists.txt +++ b/Meta/Lagom/CMakeLists.txt @@ -478,7 +478,7 @@ if (BUILD_LAGOM) add_executable(disasm_lagom ../../Userland/Utilities/disasm.cpp) set_target_properties(disasm_lagom PROPERTIES OUTPUT_NAME disasm) - target_link_libraries(disasm_lagom LagomCore LagomELF LagomX86) + target_link_libraries(disasm_lagom LagomCore LagomELF LagomX86 LagomMain) add_executable(gml-format_lagom ../../Userland/Utilities/gml-format.cpp) set_target_properties(gml-format_lagom PROPERTIES OUTPUT_NAME gml-format) |