CTest/Coverage/Example: Difference between revisions

From KitwarePublic
Jump to navigationJump to search
No edit summary
(Replace content with link to new CMake community wiki)
 
(2 intermediate revisions by 2 users not shown)
Line 1: Line 1:
==coverage.cpp==
{{CMake/Template/Moved}}
<source lang="cpp">
#include <iostream>


int main (int, char *[])
This page has moved [https://gitlab.kitware.com/cmake/community/wikis/doc/ctest/coverage/Example here].
{
 
  std::cout << "Sample text." << std::endl;
 
  return 0;
}
 
 
</source>
 
==CMakeLists.txt==
<source lang="cmake">
cmake_minimum_required(VERSION 2.6)
 
project(Coverage)
ENABLE_TESTING()
 
SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wall -std=gnu++0x")
 
SET(CXXFLAGS="-g -O0 -Wall -W -Wshadow -Wunused-variable -Wunused-parameter -Wunused-function -Wunused -Wno-system-headers -Wno-deprecated -Woverloaded-virtual -Wwrite-strings -fprofile-arcs -ftest-coverage")
SET(CFLAGS="-g -O0 -Wall -W -fprofile-arcs -ftest-coverage")
SET(LDFLAGS="-fprofile-arcs -ftest-coverage")
 
add_executable(Coverage coverage.cpp)
 
</source>

Latest revision as of 15:41, 30 April 2018


The CMake community Wiki has moved to the Kitware GitLab Instance.

This page has moved here.