2015-01-18 08:31:04 -05:00
|
|
|
# vim: tabstop=2 shiftwidth=2 expandtab textwidth=80 linebreak wrap
|
|
|
|
#
|
|
|
|
# Copyright 2012 Matthew McCormick
|
|
|
|
# Copyright 2015 Pawel 'l0ner' Soltys
|
|
|
|
#
|
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
# you may not use this file except in compliance with the License.
|
|
|
|
# You may obtain a copy of the License at
|
|
|
|
#
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
#
|
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
# See the License for the specific language governing permissions and
|
|
|
|
# limitations under the License.
|
|
|
|
#
|
|
|
|
|
2009-09-09 02:51:47 -04:00
|
|
|
cmake_minimum_required(VERSION 2.6)
|
|
|
|
if(COMMAND cmake_policy)
|
2015-01-18 08:31:04 -05:00
|
|
|
cmake_policy(VERSION 2.6)
|
2009-09-09 02:51:47 -04:00
|
|
|
endif(COMMAND cmake_policy)
|
|
|
|
|
2015-01-07 08:31:49 -05:00
|
|
|
### General Package stuff
|
2015-01-20 08:11:20 -05:00
|
|
|
project(tmux-mem-cpu-load)
|
2015-01-20 08:11:40 -05:00
|
|
|
set(tmux-mem-cpu-load_VERSION_MAJOR 3)
|
|
|
|
set(tmux-mem-cpu-load_VERSION_MINOR 0)
|
2015-01-18 08:51:27 -05:00
|
|
|
set(tmux-mem-cpu-load_VERSION_PATCH 0)
|
|
|
|
#Compute full version string
|
|
|
|
set(tmux-mem-cpu-load_VERSION
|
|
|
|
${tmux-mem-cpu-load_VERSION_MAJOR}.${tmux-mem-cpu-load_VERSION_MINOR}.${tmux-mem-cpu-load_VERSION_PATCH})
|
2014-04-14 14:51:46 -04:00
|
|
|
|
2015-01-18 10:59:19 -05:00
|
|
|
# Check whether we have support for c++11 in compiler and fail if we don't
|
|
|
|
include(CheckCXXCompilerFlag)
|
2015-01-19 11:55:29 -05:00
|
|
|
check_cxx_compiler_flag("-std=c++11" COMPILER_SUPPORTS_CXX11)
|
|
|
|
check_cxx_compiler_flag("-std=c++0x" COMPILER_SUPPORTS_CXX0X)
|
2015-01-18 10:59:19 -05:00
|
|
|
|
|
|
|
if(COMPILER_SUPPORTS_CXX11)
|
2015-01-20 08:11:20 -05:00
|
|
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11")
|
2015-01-18 10:59:19 -05:00
|
|
|
elseif(COMPILER_SUPPORTS_CXX0X)
|
2015-01-20 08:11:20 -05:00
|
|
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++0x")
|
2015-01-18 10:59:19 -05:00
|
|
|
else()
|
2015-01-20 08:11:20 -05:00
|
|
|
message(FATAL_ERROR
|
|
|
|
"Compiler ${CMAKE_CXX_COMPILER_ID} ${CMAKE_CXX_COMPILER_VERSION} has no C++11 support.")
|
2015-01-18 10:59:19 -05:00
|
|
|
endif()
|
|
|
|
|
2014-04-14 14:51:46 -04:00
|
|
|
# generate header file to handle version
|
|
|
|
configure_file(
|
2015-01-20 08:04:02 -05:00
|
|
|
"${PROJECT_SOURCE_DIR}/common/version.h.in" "${PROJECT_BINARY_DIR}/version.h"
|
2015-01-18 08:31:04 -05:00
|
|
|
)
|
2009-09-09 02:51:47 -04:00
|
|
|
|
2015-01-18 14:04:28 -05:00
|
|
|
# set build type
|
2009-09-09 02:51:47 -04:00
|
|
|
if(NOT CMAKE_BUILD_TYPE)
|
2013-07-15 19:23:11 -04:00
|
|
|
set(CMAKE_BUILD_TYPE MinSizeRel CACHE STRING
|
2015-01-18 08:31:04 -05:00
|
|
|
"Choose the type of build, options are: None Debug Release RelWithDebInfo MinSizeRel."
|
|
|
|
FORCE)
|
2009-09-09 02:51:47 -04:00
|
|
|
endif(NOT CMAKE_BUILD_TYPE)
|
|
|
|
|
2014-04-14 14:51:46 -04:00
|
|
|
# detect system type
|
|
|
|
if(CMAKE_SYSTEM_NAME MATCHES "Linux")
|
2015-01-19 21:50:47 -05:00
|
|
|
message(STATUS "Linux detected")
|
2015-01-18 08:31:04 -05:00
|
|
|
set(METER_SOURCES "linux/memory.cc" "linux/cpu.cc" "linux/load.cc")
|
2015-01-17 17:23:21 -05:00
|
|
|
elseif(CMAKE_SYSTEM_NAME MATCHES "Darwin")
|
2015-01-19 21:50:47 -05:00
|
|
|
message(STATUS "Darwin detected")
|
2015-01-18 08:31:04 -05:00
|
|
|
set(METER_SOURCES "osx/memory.cc" "osx/cpu.cc" "osx/load.cc")
|
2015-01-17 17:23:21 -05:00
|
|
|
elseif(CMAKE_SYSTEM_NAME MATCHES "FreeBSD")
|
2015-01-18 08:31:04 -05:00
|
|
|
message("FreeBSD detected")
|
2015-01-19 17:57:53 -05:00
|
|
|
message( WARNING "FreeBSD is still experimental!" )
|
|
|
|
set( METER_SOURCES "freebsd/memory.cc" "freebsd/cpu.cc" "freebsd/load.cc" )
|
2015-01-17 17:23:21 -05:00
|
|
|
elseif(CMAKE_SYSTEM_NAME MATCHES "OpenBSD")
|
2015-01-19 17:57:53 -05:00
|
|
|
# OpenBSD Stuff Here
|
|
|
|
message( "OpenBSD detected")
|
|
|
|
message( WARNING "OpenBSD is still experimental!" )
|
|
|
|
set( METER_SOURCES "openbsd/memory.cc" "openbsd/cpu.cc" "openbsd/load.cc" )
|
2015-01-17 17:23:21 -05:00
|
|
|
else()
|
2015-01-19 21:54:35 -05:00
|
|
|
message(FATAL_ERROR "Cannot be compiled on this system" )
|
2014-04-14 14:51:46 -04:00
|
|
|
endif()
|
|
|
|
|
2015-01-07 14:57:25 -05:00
|
|
|
# set common source files
|
2015-01-20 08:05:28 -05:00
|
|
|
set(COMMON_SOURCES "common/main.cc" "common/graph.cc")
|
2015-01-07 14:57:25 -05:00
|
|
|
|
2014-04-14 14:51:46 -04:00
|
|
|
# add binary tree so we find version.h
|
2015-01-19 21:54:35 -05:00
|
|
|
include_directories("${PROJECT_BINARY_DIR}")
|
2015-01-20 08:04:02 -05:00
|
|
|
include_directories("${PROJECT_SOURCE_DIR}" "${PROJECT_SOURCE_DIR}/common")
|
2013-04-30 06:38:39 -04:00
|
|
|
|
2015-01-07 14:57:25 -05:00
|
|
|
add_executable(tmux-mem-cpu-load ${COMMON_SOURCES} ${METER_SOURCES})
|
2015-01-18 10:59:19 -05:00
|
|
|
install(TARGETS tmux-mem-cpu-load RUNTIME DESTINATION bin)
|
2013-06-09 22:50:03 -04:00
|
|
|
|
2015-01-19 21:54:35 -05:00
|
|
|
include(CTest)
|
|
|
|
if(BUILD_TESTING)
|
|
|
|
add_test(NAME usage
|
|
|
|
COMMAND tmux-mem-cpu-load -h
|
|
|
|
)
|
2013-06-09 22:50:03 -04:00
|
|
|
|
2015-01-19 21:54:35 -05:00
|
|
|
add_test(NAME no_arguments
|
|
|
|
COMMAND tmux-mem-cpu-load
|
|
|
|
)
|
2013-06-09 22:50:03 -04:00
|
|
|
|
2015-01-19 21:54:35 -05:00
|
|
|
add_test(NAME custom_interval
|
|
|
|
COMMAND tmux-mem-cpu-load -i 3
|
|
|
|
)
|
2015-01-08 14:04:27 -05:00
|
|
|
|
2015-01-19 21:54:35 -05:00
|
|
|
add_test(NAME no_cpu_graph
|
|
|
|
COMMAND tmux-mem-cpu-load -g 0
|
|
|
|
)
|
2015-01-18 09:07:11 -05:00
|
|
|
|
2015-01-19 21:54:35 -05:00
|
|
|
add_test(NAME colors
|
|
|
|
COMMAND tmux-mem-cpu-load --colors
|
|
|
|
)
|
2013-06-09 22:50:03 -04:00
|
|
|
|
2015-01-19 21:54:35 -05:00
|
|
|
add_test(NAME invalid_status_interval
|
|
|
|
COMMAND tmux-mem-cpu-load -i -1
|
|
|
|
)
|
2013-06-09 22:50:03 -04:00
|
|
|
|
2015-01-19 21:54:35 -05:00
|
|
|
add_test(NAME invalid_graph_lines
|
|
|
|
COMMAND tmux-mem-cpu-load --graph_lines -2
|
|
|
|
)
|
2013-06-09 22:50:03 -04:00
|
|
|
|
2015-01-19 22:51:14 -05:00
|
|
|
add_test(NAME old_option_specification
|
|
|
|
COMMAND tmux-mem-cpu-load 2 8
|
|
|
|
)
|
|
|
|
|
2015-01-19 21:54:35 -05:00
|
|
|
set_tests_properties(usage
|
2013-06-09 22:50:03 -04:00
|
|
|
invalid_status_interval
|
|
|
|
invalid_graph_lines
|
2015-01-19 22:51:14 -05:00
|
|
|
old_option_specification
|
2015-01-19 21:54:35 -05:00
|
|
|
PROPERTIES WILL_FAIL TRUE)
|
2013-06-09 22:50:03 -04:00
|
|
|
endif()
|