Skip to content

Latest commit

 

History

History
49 lines (39 loc) · 1.89 KB

File metadata and controls

49 lines (39 loc) · 1.89 KB

cctop

Building

MacOS

This program is built with cmake. We use the cmake from homebrew, setting the path in the CLion IDE settings. We also installed ncurses using homebrew and set the paths in CMakeLists.txt to use that. The reason is that the curses that comes with XCode and MacOS is very old and doesn't support wide characters.

What we really want is libncursesw.dylib (w on the end means wide character support).

WIDE CHARACTERS (UTF_16)

    //    0x2581 ▁
    //    0x2582 ▂
    //    0x2583 ▃
    //    0x2584 ▄
    //    0x2585 ▅
    //    0x2586 ▆
    //    0x2587 ▇
    //    0x2588 █

Useful links

CMAKE

CURL

PROCESSES ETC.