b2f26bab3f
Colors are added for terminals that have 256 color support when the --colors flag is enabled. The background colors are varied with different color maps derived from their matplotlib versions. The foreground color is a contrasting black or white.
21 lines
526 B
CMake
21 lines
526 B
CMake
cmake_minimum_required(VERSION 2.6)
|
|
if(COMMAND cmake_policy)
|
|
cmake_policy(VERSION 2.6)
|
|
endif(COMMAND cmake_policy)
|
|
|
|
project( tmux-mem-cpu-load )
|
|
|
|
if(NOT CMAKE_BUILD_TYPE)
|
|
set(CMAKE_BUILD_TYPE Release CACHE STRING
|
|
"Choose the type of build, options are: None Debug Release RelWithDebInfo MinSizeRel."
|
|
FORCE)
|
|
endif(NOT CMAKE_BUILD_TYPE)
|
|
|
|
include_directories(${CMAKE_CURRENT_SOURCE_DIR})
|
|
|
|
add_executable(tmux-mem-cpu-load tmux-mem-cpu-load.cpp)
|
|
install(TARGETS tmux-mem-cpu-load
|
|
RUNTIME
|
|
DESTINATION bin
|
|
)
|