diff options
author | Jesse Buhagiar <jesse.buhagiar@student.rmit.edu.au> | 2019-09-03 21:45:02 +1000 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-09-07 16:51:15 +0200 |
commit | ecbc0322c11644ff186fe89fcd058c07a383a884 (patch) | |
tree | f8c17750c57e4be442ef7b411bc6c1b58c115fa8 /Applications/DisplayProperties/Makefile | |
parent | af14b8dc592f244bb90ff471347f7c4883f00be6 (diff) | |
download | serenity-ecbc0322c11644ff186fe89fcd058c07a383a884.zip |
Applications: Create a display properties manager
An interactive application to modify the current display settings, such as
the current wallpaper as well as the screen resolution. Currently we're
adding the resolutions ourselves, because there's currently no way to
detect was resolutions the current display adapter supports (or at least
I can't see one... Maybe VBE does and I'm stupid). It even comes with
a very nice template'd `ItemList` that can support a vector of any type,
which makes life much simpler.
Diffstat (limited to 'Applications/DisplayProperties/Makefile')
-rw-r--r-- | Applications/DisplayProperties/Makefile | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/Applications/DisplayProperties/Makefile b/Applications/DisplayProperties/Makefile new file mode 100644 index 0000000000..a3d7d9462b --- /dev/null +++ b/Applications/DisplayProperties/Makefile @@ -0,0 +1,9 @@ +include ../../Makefile.common + +OBJS = \ + DisplayProperties.o \ + main.o \ + +APP = DisplayProperties + +include ../Makefile.common |