tmux-mem-cpu-load/CMakeLists.txt

84 lines
2.3 KiB
CMake
Raw Normal View History

2009-09-09 02:51:47 -04:00
cmake_minimum_required(VERSION 2.6)
if(COMMAND cmake_policy)
cmake_policy(VERSION 2.6)
endif(COMMAND cmake_policy)
2015-01-07 08:31:49 -05:00
### General Package stuff
project( tmux-mem-cpu-load )
2015-01-07 08:31:49 -05:00
set(VERSION_MAJOR 2)
set(VERSION_MINOR 3)
set(VERSION_PATCH 0)
2014-04-14 14:51:46 -04:00
# generate header file to handle version
configure_file(
"${PROJECT_SOURCE_DIR}/version.h.in"
"${PROJECT_SOURCE_DIR}/version.h"
)
2009-09-09 02:51:47 -04:00
# set buold type
2009-09-09 02:51:47 -04:00
if(NOT CMAKE_BUILD_TYPE)
set(CMAKE_BUILD_TYPE MinSizeRel CACHE STRING
2009-09-09 02:51:47 -04:00
"Choose the type of build, options are: None Debug Release RelWithDebInfo MinSizeRel."
FORCE)
endif(NOT CMAKE_BUILD_TYPE)
2014-04-14 14:51:46 -04:00
# detect system type
if(CMAKE_SYSTEM_NAME MATCHES "Linux")
message( "Linux detected")
SET( METER_SOURCES "linux/memory.cc" "linux/cpu.cc" "linux/load.cc" )
ELSEIF(CMAKE_SYSTEM_NAME MATCHES "Darwin")
# Mac OS X source setting will go here
2014-04-14 14:51:46 -04:00
message( "Darwin detected")
SET( METER_SOURCES "osx/memory.cc" "osx/cpu.cc" "osx/load.cc" )
ELSEIF(CMAKE_SYSTEM_NAME MATCHES "FreeBSD")
# FreeBSD STUFF HERE
2014-04-14 14:51:46 -04:00
message( "FreeBSD detected")
message( FATAL_ERROR "Free BSD is not supported yet" )
2014-04-14 14:51:46 -04:00
ELSEIF(CMAKE_SYSTEM_NAME MATCHES "OpenBSD")
# OpenBSD Stuff Here
2014-04-14 14:51:46 -04:00
message( "OpenBSD detected")
message( FATAL_ERROR "OpenBSD is not supported yet" )
ELSE()
2014-04-14 14:51:46 -04:00
message( FATAL_ERROR "Cannot be compiled on this system" )
endif()
# set common source files
SET( COMMON_SOURCES "tmux-mem-cpu-load.cpp" "graph.cc" "argParse/argParse.cc" )
2014-04-14 14:51:46 -04:00
# compiler flags
SET( GCC_COVERAGE_COMPILE_FLAGS "-std=c++11 " )
SET( CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${GCC_COVERAGE_COMPILE_FLAGS}" )
# add binary tree so we find version.h
include_directories("${PROJECT_BINARY_DIR}" )
add_executable(tmux-mem-cpu-load ${COMMON_SOURCES} ${METER_SOURCES})
2014-04-14 14:51:46 -04:00
install(TARGETS tmux-mem-cpu-load
RUNTIME DESTINATION bin
)
2013-06-09 22:50:03 -04:00
include( CTest )
if( BUILD_TESTING )
add_test( NAME usage
COMMAND tmux-mem-cpu-load -h )
add_test( NAME no_arguments
COMMAND tmux-mem-cpu-load )
add_test( NAME colors
COMMAND tmux-mem-cpu-load --colors )
add_test( NAME invalid_status_interval
COMMAND tmux-mem-cpu-load -i -1 )
2013-06-09 22:50:03 -04:00
add_test( NAME invalid_graph_lines
COMMAND tmux-mem-cpu-load -g -4 )
2013-06-09 22:50:03 -04:00
set_tests_properties( usage
invalid_status_interval
invalid_graph_lines
PROPERTIES WILL_FAIL TRUE )
endif()