Lines Matching +full:cmake +full:- +full:3
32 message("Coveralls: Using alternate CMake script dir: ${_CMAKE_SCRIPT_PATH}")
34 set(_CMAKE_SCRIPT_PATH ${PROJECT_SOURCE_DIR}/cmake)
37 if (NOT EXISTS "${_CMAKE_SCRIPT_PATH}/CoverallsClear.cmake")
38 message(FATAL_ERROR "Coveralls: Missing ${_CMAKE_SCRIPT_PATH}/CoverallsClear.cmake")
41 if (NOT EXISTS "${_CMAKE_SCRIPT_PATH}/CoverallsGenerateGcov.cmake")
42 message(FATAL_ERROR "Coveralls: Missing ${_CMAKE_SCRIPT_PATH}/CoverallsGenerateGcov.cmake")
45 # When passing a CMake list to an external process, the list
46 # will be converted from the format "1;2;3" to "1 2 3".
51 …# http://cmake.3232098.n2.nabble.com/Passing-a-CMake-list-quot-as-is-quot-to-a-custom-target-td650…
65 -P "${_CMAKE_SCRIPT_PATH}/CoverallsClear.cmake"
68 COMMAND ${CMAKE_CTEST_COMMAND} --output-on-failure
71 # We do this by executing an external CMake script.
72 …# (We don't want this to run at CMake generation time, but after compilation and everything has ru…
74 -DCOVERAGE_SRCS="${COVERAGE_SRCS}" # TODO: This is passed like: "a b c", not "a;b;c"
75 -DCOVERALLS_OUTPUT_FILE="${COVERALLS_FILE}"
76 -DCOV_PATH="${PROJECT_BINARY_DIR}"
77 -DPROJECT_ROOT="${PROJECT_SOURCE_DIR}"
78 -P "${_CMAKE_SCRIPT_PATH}/CoverallsGenerateGcov.cmake"
96 -S -F json_file=@${COVERALLS_FILE}
114 … "Coveralls: Code coverage results with an optimised (non-Debug) build may be misleading! Add -DCM…
117 set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -g -O0 -fprofile-arcs -ftest-coverage")
118 set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -g -O0 -fprofile-arcs -ftest-coverage")