Skip to content

Commit

Permalink
WIP: move X11 stuff from conky.cc to display-x11
Browse files Browse the repository at this point in the history
Still not complete, but seems to work.

A lot of variables and calls had to be made non-static.
  • Loading branch information
mmuman committed Oct 19, 2018
1 parent e38f3ea commit 2120049
Show file tree
Hide file tree
Showing 6 changed files with 948 additions and 142 deletions.
8 changes: 7 additions & 1 deletion src/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -230,10 +230,16 @@ if(BUILD_PORT_MONITORS)
set(optional_sources ${optional_sources} ${port_monitors})
endif(BUILD_PORT_MONITORS)

if(BUILD_GUI)
set(gui
fonts.cc fonts.h
)
set(optional_sources ${optional_sources} ${gui})
endif(BUILD_GUI)

if(BUILD_X11)
set(x11
x11.cc x11.h
fonts.cc fonts.h
)
set(optional_sources ${optional_sources} ${x11})

Expand Down
Loading

0 comments on commit 2120049

Please sign in to comment.