diff options
author | Nico Weber <thakis@chromium.org> | 2021-01-15 14:12:34 -0500 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-01-15 22:05:08 +0100 |
commit | 476a3acfb21f58c69476e32d34eb1002dbc4ae28 (patch) | |
tree | 58f2962c9d3429c48710648532f0d766ddfbba19 /Userland/Utilities/CMakeLists.txt | |
parent | b3d04b3a3ca0ac7396d8d8c192fae565012e1f9e (diff) | |
download | serenity-476a3acfb21f58c69476e32d34eb1002dbc4ae28.zip |
Utilities: Add "chres", a way to change the screen resolution from the command line
Diffstat (limited to 'Userland/Utilities/CMakeLists.txt')
-rw-r--r-- | Userland/Utilities/CMakeLists.txt | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Userland/Utilities/CMakeLists.txt b/Userland/Utilities/CMakeLists.txt index a6cffdb6de..242754ac5d 100644 --- a/Userland/Utilities/CMakeLists.txt +++ b/Userland/Utilities/CMakeLists.txt @@ -18,6 +18,7 @@ endforeach() target_link_libraries(aplay LibAudio) target_link_libraries(avol LibAudio) target_link_libraries(checksum LibCrypto) +target_link_libraries(chres LibGUI) target_link_libraries(copy LibGUI) target_link_libraries(disasm LibX86) target_link_libraries(expr LibRegex) |