fastgpx 0.1.0__cp311-cp311-win_amd64.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,65 @@
1
+ # This is a basic version file for the Config-mode of find_package().
2
+ # It is used by write_basic_package_version_file() as input file for configure_file()
3
+ # to create a version-file which can be installed along a config.cmake file.
4
+ #
5
+ # The created file sets PACKAGE_VERSION_EXACT if the current version string and
6
+ # the requested version string are exactly the same and it sets
7
+ # PACKAGE_VERSION_COMPATIBLE if the current version is >= requested version,
8
+ # but only if the requested major version is the same as the current one.
9
+ # The variable CVF_VERSION must be set before calling configure_file().
10
+
11
+
12
+ set(PACKAGE_VERSION "1.14")
13
+
14
+ if(PACKAGE_VERSION VERSION_LESS PACKAGE_FIND_VERSION)
15
+ set(PACKAGE_VERSION_COMPATIBLE FALSE)
16
+ else()
17
+
18
+ if("1.14" MATCHES "^([0-9]+)\\.")
19
+ set(CVF_VERSION_MAJOR "${CMAKE_MATCH_1}")
20
+ if(NOT CVF_VERSION_MAJOR VERSION_EQUAL 0)
21
+ string(REGEX REPLACE "^0+" "" CVF_VERSION_MAJOR "${CVF_VERSION_MAJOR}")
22
+ endif()
23
+ else()
24
+ set(CVF_VERSION_MAJOR "1.14")
25
+ endif()
26
+
27
+ if(PACKAGE_FIND_VERSION_RANGE)
28
+ # both endpoints of the range must have the expected major version
29
+ math (EXPR CVF_VERSION_MAJOR_NEXT "${CVF_VERSION_MAJOR} + 1")
30
+ if (NOT PACKAGE_FIND_VERSION_MIN_MAJOR STREQUAL CVF_VERSION_MAJOR
31
+ OR ((PACKAGE_FIND_VERSION_RANGE_MAX STREQUAL "INCLUDE" AND NOT PACKAGE_FIND_VERSION_MAX_MAJOR STREQUAL CVF_VERSION_MAJOR)
32
+ OR (PACKAGE_FIND_VERSION_RANGE_MAX STREQUAL "EXCLUDE" AND NOT PACKAGE_FIND_VERSION_MAX VERSION_LESS_EQUAL CVF_VERSION_MAJOR_NEXT)))
33
+ set(PACKAGE_VERSION_COMPATIBLE FALSE)
34
+ elseif(PACKAGE_FIND_VERSION_MIN_MAJOR STREQUAL CVF_VERSION_MAJOR
35
+ AND ((PACKAGE_FIND_VERSION_RANGE_MAX STREQUAL "INCLUDE" AND PACKAGE_VERSION VERSION_LESS_EQUAL PACKAGE_FIND_VERSION_MAX)
36
+ OR (PACKAGE_FIND_VERSION_RANGE_MAX STREQUAL "EXCLUDE" AND PACKAGE_VERSION VERSION_LESS PACKAGE_FIND_VERSION_MAX)))
37
+ set(PACKAGE_VERSION_COMPATIBLE TRUE)
38
+ else()
39
+ set(PACKAGE_VERSION_COMPATIBLE FALSE)
40
+ endif()
41
+ else()
42
+ if(PACKAGE_FIND_VERSION_MAJOR STREQUAL CVF_VERSION_MAJOR)
43
+ set(PACKAGE_VERSION_COMPATIBLE TRUE)
44
+ else()
45
+ set(PACKAGE_VERSION_COMPATIBLE FALSE)
46
+ endif()
47
+
48
+ if(PACKAGE_FIND_VERSION STREQUAL PACKAGE_VERSION)
49
+ set(PACKAGE_VERSION_EXACT TRUE)
50
+ endif()
51
+ endif()
52
+ endif()
53
+
54
+
55
+ # if the installed or the using project don't have CMAKE_SIZEOF_VOID_P set, ignore it:
56
+ if("${CMAKE_SIZEOF_VOID_P}" STREQUAL "" OR "8" STREQUAL "")
57
+ return()
58
+ endif()
59
+
60
+ # check that the installed version has the same 32/64bit-ness as the one which is currently searching:
61
+ if(NOT CMAKE_SIZEOF_VOID_P STREQUAL "8")
62
+ math(EXPR installedBits "8 * 8")
63
+ set(PACKAGE_VERSION "${PACKAGE_VERSION} (${installedBits}bit)")
64
+ set(PACKAGE_VERSION_UNSUITABLE TRUE)
65
+ endif()
@@ -0,0 +1,19 @@
1
+
2
+ ####### Expanded from @PACKAGE_INIT@ by configure_package_config_file() #######
3
+ ####### Any changes to this file will be overwritten by the next CMake run ####
4
+ ####### The input file was pugixml-config.cmake.in ########
5
+
6
+ get_filename_component(PACKAGE_PREFIX_DIR "${CMAKE_CURRENT_LIST_DIR}/../" ABSOLUTE)
7
+
8
+ ####################################################################################
9
+
10
+ include("${CMAKE_CURRENT_LIST_DIR}/pugixml-targets.cmake")
11
+
12
+ # If the user is not requiring 1.11 (either by explicitly requesting an older
13
+ # version or not requesting one at all), provide the old imported target name
14
+ # for compatibility.
15
+ if (NOT TARGET pugixml AND (NOT DEFINED PACKAGE_FIND_VERSION OR PACKAGE_FIND_VERSION VERSION_LESS "1.11"))
16
+ add_library(pugixml INTERFACE IMPORTED)
17
+ # Equivalent to target_link_libraries INTERFACE, but compatible with CMake 3.10
18
+ set_target_properties(pugixml PROPERTIES INTERFACE_LINK_LIBRARIES pugixml::pugixml)
19
+ endif ()
@@ -0,0 +1,19 @@
1
+ #----------------------------------------------------------------
2
+ # Generated CMake target import file for configuration "RelWithDebInfo".
3
+ #----------------------------------------------------------------
4
+
5
+ # Commands may need to know the format version.
6
+ set(CMAKE_IMPORT_FILE_VERSION 1)
7
+
8
+ # Import target "pugixml::static" for configuration "RelWithDebInfo"
9
+ set_property(TARGET pugixml::static APPEND PROPERTY IMPORTED_CONFIGURATIONS RELWITHDEBINFO)
10
+ set_target_properties(pugixml::static PROPERTIES
11
+ IMPORTED_LINK_INTERFACE_LANGUAGES_RELWITHDEBINFO "CXX"
12
+ IMPORTED_LOCATION_RELWITHDEBINFO "${_IMPORT_PREFIX}/lib/pugixml.lib"
13
+ )
14
+
15
+ list(APPEND _cmake_import_check_targets pugixml::static )
16
+ list(APPEND _cmake_import_check_files_for_pugixml::static "${_IMPORT_PREFIX}/lib/pugixml.lib" )
17
+
18
+ # Commands beyond this point should not need to know the version.
19
+ set(CMAKE_IMPORT_FILE_VERSION)
@@ -0,0 +1,115 @@
1
+ # Generated by CMake
2
+
3
+ if("${CMAKE_MAJOR_VERSION}.${CMAKE_MINOR_VERSION}" LESS 2.8)
4
+ message(FATAL_ERROR "CMake >= 3.0.0 required")
5
+ endif()
6
+ if(CMAKE_VERSION VERSION_LESS "3.0.0")
7
+ message(FATAL_ERROR "CMake >= 3.0.0 required")
8
+ endif()
9
+ cmake_policy(PUSH)
10
+ cmake_policy(VERSION 3.0.0...3.29)
11
+ #----------------------------------------------------------------
12
+ # Generated CMake target import file.
13
+ #----------------------------------------------------------------
14
+
15
+ # Commands may need to know the format version.
16
+ set(CMAKE_IMPORT_FILE_VERSION 1)
17
+
18
+ # Protect against multiple inclusion, which would fail when already imported targets are added once more.
19
+ set(_cmake_targets_defined "")
20
+ set(_cmake_targets_not_defined "")
21
+ set(_cmake_expected_targets "")
22
+ foreach(_cmake_expected_target IN ITEMS pugixml::pugixml pugixml::static)
23
+ list(APPEND _cmake_expected_targets "${_cmake_expected_target}")
24
+ if(TARGET "${_cmake_expected_target}")
25
+ list(APPEND _cmake_targets_defined "${_cmake_expected_target}")
26
+ else()
27
+ list(APPEND _cmake_targets_not_defined "${_cmake_expected_target}")
28
+ endif()
29
+ endforeach()
30
+ unset(_cmake_expected_target)
31
+ if(_cmake_targets_defined STREQUAL _cmake_expected_targets)
32
+ unset(_cmake_targets_defined)
33
+ unset(_cmake_targets_not_defined)
34
+ unset(_cmake_expected_targets)
35
+ unset(CMAKE_IMPORT_FILE_VERSION)
36
+ cmake_policy(POP)
37
+ return()
38
+ endif()
39
+ if(NOT _cmake_targets_defined STREQUAL "")
40
+ string(REPLACE ";" ", " _cmake_targets_defined_text "${_cmake_targets_defined}")
41
+ string(REPLACE ";" ", " _cmake_targets_not_defined_text "${_cmake_targets_not_defined}")
42
+ message(FATAL_ERROR "Some (but not all) targets in this export set were already defined.\nTargets Defined: ${_cmake_targets_defined_text}\nTargets not yet defined: ${_cmake_targets_not_defined_text}\n")
43
+ endif()
44
+ unset(_cmake_targets_defined)
45
+ unset(_cmake_targets_not_defined)
46
+ unset(_cmake_expected_targets)
47
+
48
+
49
+ # Compute the installation prefix relative to this file.
50
+ get_filename_component(_IMPORT_PREFIX "${CMAKE_CURRENT_LIST_FILE}" PATH)
51
+ get_filename_component(_IMPORT_PREFIX "${_IMPORT_PREFIX}" PATH)
52
+ get_filename_component(_IMPORT_PREFIX "${_IMPORT_PREFIX}" PATH)
53
+ get_filename_component(_IMPORT_PREFIX "${_IMPORT_PREFIX}" PATH)
54
+ if(_IMPORT_PREFIX STREQUAL "/")
55
+ set(_IMPORT_PREFIX "")
56
+ endif()
57
+
58
+ # Create imported target pugixml::pugixml
59
+ add_library(pugixml::pugixml INTERFACE IMPORTED)
60
+
61
+ set_target_properties(pugixml::pugixml PROPERTIES
62
+ INTERFACE_INCLUDE_DIRECTORIES "${_IMPORT_PREFIX}/include"
63
+ INTERFACE_LINK_LIBRARIES "pugixml::static"
64
+ )
65
+
66
+ # Create imported target pugixml::static
67
+ add_library(pugixml::static STATIC IMPORTED)
68
+
69
+ set_target_properties(pugixml::static PROPERTIES
70
+ INTERFACE_COMPILE_DEFINITIONS "\$<\$<BOOL:OFF>:PUGIXML_WCHAR_MODE>;\$<\$<BOOL:OFF>:PUGIXML_COMPACT>;\$<\$<BOOL:OFF>:PUGIXML_NO_XPATH>;\$<\$<BOOL:OFF>:PUGIXML_NO_STL>;\$<\$<BOOL:OFF>:PUGIXML_NO_EXCEPTIONS>"
71
+ INTERFACE_INCLUDE_DIRECTORIES "${_IMPORT_PREFIX}/include"
72
+ )
73
+
74
+ # Load information for each installed configuration.
75
+ file(GLOB _cmake_config_files "${CMAKE_CURRENT_LIST_DIR}/pugixml-targets-*.cmake")
76
+ foreach(_cmake_config_file IN LISTS _cmake_config_files)
77
+ include("${_cmake_config_file}")
78
+ endforeach()
79
+ unset(_cmake_config_file)
80
+ unset(_cmake_config_files)
81
+
82
+ # Cleanup temporary variables.
83
+ set(_IMPORT_PREFIX)
84
+
85
+ # Loop over all imported files and verify that they actually exist
86
+ foreach(_cmake_target IN LISTS _cmake_import_check_targets)
87
+ if(CMAKE_VERSION VERSION_LESS "3.28"
88
+ OR NOT DEFINED _cmake_import_check_xcframework_for_${_cmake_target}
89
+ OR NOT IS_DIRECTORY "${_cmake_import_check_xcframework_for_${_cmake_target}}")
90
+ foreach(_cmake_file IN LISTS "_cmake_import_check_files_for_${_cmake_target}")
91
+ if(NOT EXISTS "${_cmake_file}")
92
+ message(FATAL_ERROR "The imported target \"${_cmake_target}\" references the file
93
+ \"${_cmake_file}\"
94
+ but this file does not exist. Possible reasons include:
95
+ * The file was deleted, renamed, or moved to another location.
96
+ * An install or uninstall procedure did not complete successfully.
97
+ * The installation package was faulty and contained
98
+ \"${CMAKE_CURRENT_LIST_FILE}\"
99
+ but not all the files it references.
100
+ ")
101
+ endif()
102
+ endforeach()
103
+ endif()
104
+ unset(_cmake_file)
105
+ unset("_cmake_import_check_files_for_${_cmake_target}")
106
+ endforeach()
107
+ unset(_cmake_target)
108
+ unset(_cmake_import_check_targets)
109
+
110
+ # This file does not depend on other imported targets which have
111
+ # been exported from the same project but in a separate export set.
112
+
113
+ # Commands beyond this point should not need to know the version.
114
+ set(CMAKE_IMPORT_FILE_VERSION)
115
+ cmake_policy(POP)
@@ -0,0 +1,11 @@
1
+ prefix=C:/Users/runneradmin/AppData/Local/Temp/tmpha9aonbl/wheel/platlib
2
+ exec_prefix=${prefix}
3
+ includedir=C:/Users/runneradmin/AppData/Local/Temp/tmpha9aonbl/wheel/platlib/include
4
+ libdir=C:/Users/runneradmin/AppData/Local/Temp/tmpha9aonbl/wheel/platlib/lib
5
+
6
+ Name: pugixml
7
+ Description: Light-weight, simple and fast XML parser for C++ with XPath support.
8
+ URL: https://pugixml.org/
9
+ Version: 1.14
10
+ Cflags: -I${includedir}
11
+ Libs: -L${libdir} -lpugixml
lib/pugixml.lib ADDED
Binary file