Lines Matching +full:software +full:- +full:generated

2 # Boost Software License - Version 1.0 - August 17th, 2003
5 # obtaining a copy of the software and accompanying documentation covered by
6 # this license (the "Software") to use, reproduce, display, distribute,
7 # execute, and transmit the Software, and to prepare derivative works of the
8 # Software, and to permit third-parties to whom the Software is furnished to
11 # The copyright notices in the Software and this entire statement, including
13 # must be included in all copies of the Software, in whole or in part, and
14 # all derivative works of the Software, unless such copies or derivative
15 # works are solely in the form of machine-executable object code generated by
18 # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
20 # FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT
21 # SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE
23 # ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
24 # DEALINGS IN THE SOFTWARE.
26 # 2012-01-31, Lars Bilke
27 # - Enable Code Coverage
29 # 2013-09-17, Joakim Söderberg
30 # - Added support for Clang.
31 # - Some additional usage instructions.
33 # 2016-11-02, Azat Khuzhin
34 # - Adopt for C compiler only (libevent)
43 # SET(CMAKE_CXX_FLAGS "-g -O0 -fprofile-arcs -ftest-coverage")
44 # SET(CMAKE_C_FLAGS "-g -O0 -fprofile-arcs -ftest-coverage")
58 # cmake -DCMAKE_BUILD_TYPE=Debug ..
84 MESSAGE( WARNING "Code coverage results with an optimized (non-Debug) build may be misleading" )
92 # Param _outputname lcov output is generated as _outputname.info
93 # HTML report is generated in _outputname/index.html
95 # Pass them in list form, e.g.: "-j;2" for -j 2
110 ${LCOV_PATH} --directory . --zerocounters
116 COMMAND ${LCOV_PATH} --directory . --capture --output-file ${_outputname}.info
117 …COMMAND ${LCOV_PATH} --remove ${_outputname}.info 'tests/*' '/usr/*' --output-file ${_outputname}.…
118 COMMAND ${GENHTML_PATH} -o ${_outputname} ${_outputname}.info.cleaned
119 COMMAND ${CMAKE_COMMAND} -E remove ${_outputname}.info ${_outputname}.info.cleaned
135 # Param _outputname cobertura output is generated as _outputname.xml
137 # Pass them in list form, e.g.: "-j;2" for -j 2
154 …COMMAND ${GCOVR_PATH} -x -r ${CMAKE_SOURCE_DIR} -e '${CMAKE_SOURCE_DIR}/tests/' -o ${_outputname}…