diff options
author | thatlittlegit <personal@thatlittlegit.tk> | 2020-02-23 10:38:57 -0500 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-02-23 22:03:03 +0100 |
commit | 30556a0a9349110f3ecfdb60379f6838289a6295 (patch) | |
tree | 1d980ec3b5d571f01f2e584506e2721cf4243f63 /Applications/SystemMenu/Makefile | |
parent | 9784ab99d2d0e7a2e89107ff6c7feb5b9a247ca5 (diff) | |
download | serenity-30556a0a9349110f3ecfdb60379f6838289a6295.zip |
SystemMenu: Move SystemDialog into SystemMenu and remove INI config
I probably would've done INI config removal in another commit, but it
fit well here because I didn't want to pledge wpath for SystemMenu if I
didn't need to.
Frankly, that's something that I think should be done: allow ConfigFile
to be used read-only.
Diffstat (limited to 'Applications/SystemMenu/Makefile')
-rw-r--r-- | Applications/SystemMenu/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Applications/SystemMenu/Makefile b/Applications/SystemMenu/Makefile index 0132cdd40c..58a9369e16 100644 --- a/Applications/SystemMenu/Makefile +++ b/Applications/SystemMenu/Makefile @@ -1,5 +1,6 @@ OBJS = \ - main.o + main.o \ + PowerDialog.o PROGRAM = SystemMenu |