File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11@PACKAGE_INIT@
2- include ("${CMAKE_CURRENT_LIST_DIR } /vccovTargets .cmake" )
2+ include ("${CMAKE_CURRENT_LIST_DIR } /vcovTargets .cmake" )
Original file line number Diff line number Diff line change 1212# Dia_FOUND - True if the DIA library was found.
1313#==========================================================================]
1414
15- find_path (Dia_INCLUDE_DIR dia2.h )
15+ # by default DIA directories are not addded to system envirment variables
16+ # this need to be run from a developper command prompet
17+ find_path (Dia_INCLUDE_DIR
18+ NAMES dia2.h
19+ PATHS "$ENV{VSINSTALLDIR} /DIA SDK/include"
20+ NO_DEFAULT_PATH
21+ )
1622
1723string (TOLOWER "${CMAKE_GENERATOR_PLATFORM } " _dia_platform)
18- message (STATUS "Detected platform: ${_dia_platform} " )
1924
2025if (_dia_platform STREQUAL "x64" OR _dia_platform STREQUAL "amd64" )
2126 set (_DIA_LIB_PATHS ${Dia_INCLUDE_DIR} /../lib/amd64)
@@ -32,12 +37,10 @@ find_library(Dia_LIBRARY diaguids.lib
3237 NO_DEFAULT_PATH
3338)
3439
35- message (STATUS "DIA architecture directories: ${_DIA_ARCH_DIRS} " )
36-
3740include (FindPackageHandleStandardArgs )
3841find_package_handle_standard_args (Dia DEFAULT_MSG Dia_INCLUDE_DIR Dia_LIBRARY)
3942
4043if (Dia_FOUND)
4144 set (Dia_INCLUDE_DIRS ${Dia_INCLUDE_DIR} )
4245 set (Dia_LIBRARIES ${Dia_LIBRARY} )
43- endif ()
46+ endif ()
Original file line number Diff line number Diff line change 11#[=======================================================================[ .rst:
2- # Findvcov
2+ # FindVcov
33# -----------
44# Find the Vcov library
55#
6- # find_package(vcov [<version>] REQUIRED)
6+ # find_package(Vcov [<version>] REQUIRED)
77#
88# - Vcov_FOUND - True if the library was found.
99# - Vcov_VERSION - The version of the library.
Original file line number Diff line number Diff line change 1717#pragma once
1818
1919#include " CommonExport.h"
20+ #include < windows.h>
2021#include < DbgHelp.h>
2122
2223namespace Tools
Original file line number Diff line number Diff line change 1515// along with this program. If not, see <http://www.gnu.org/licenses/>.
1616
1717#pragma once
18-
18+ # define NOMINMAX
1919#include " ConsoleExport.h"
2020#include < iosfwd>
2121
Original file line number Diff line number Diff line change 1717#pragma once
1818
1919#include " CoreExport.h"
20- #include < Windows .h>
20+ #include < windows .h>
2121#include < boost/optional/optional.hpp>
2222#include < unordered_map>
2323
Original file line number Diff line number Diff line change 2020#include " StartInfo.hpp"
2121#include " Tool.hpp"
2222#include " stdafx.h"
23- #include < Windows .h>
23+ #include < windows .h>
2424#include < boost/optional.hpp>
2525#include < vector>
2626
Original file line number Diff line number Diff line change 1616
1717#pragma once
1818
19- #include < minwindef .h>
19+ #include < windows .h>
2020#include < vector>
2121
2222namespace FileFilter
Original file line number Diff line number Diff line change 1919#include " FilterExport.h"
2020#include < filesystem>
2121#include < memory>
22- #include < minwindef .h>
22+ #include < windows .h>
2323#include < unordered_map>
2424#include < unordered_set>
2525
You can’t perform that action at this time.
0 commit comments