quasardb 3.14.2.dev4__cp313-cp313-win32.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.
Potentially problematic release.
This version of quasardb might be problematic. Click here for more details.
- quasardb/CMakeFiles/generate.stamp +1 -0
- quasardb/CMakeFiles/generate.stamp.depend +2 -0
- quasardb/INSTALL.vcxproj +209 -0
- quasardb/INSTALL.vcxproj.filters +13 -0
- quasardb/__init__.py +123 -0
- quasardb/cmake_install.cmake +48 -0
- quasardb/date/ALL_BUILD.vcxproj +181 -0
- quasardb/date/ALL_BUILD.vcxproj.filters +8 -0
- quasardb/date/CMakeFiles/Export/df49adab93b9e0c10c64f72458b31971/dateTargets.cmake +106 -0
- quasardb/date/CMakeFiles/generate.stamp +1 -0
- quasardb/date/CMakeFiles/generate.stamp.depend +6 -0
- quasardb/date/INSTALL.vcxproj +209 -0
- quasardb/date/INSTALL.vcxproj.filters +13 -0
- quasardb/date/cmake_install.cmake +71 -0
- quasardb/date/date.sln +60 -0
- quasardb/date/dateConfigVersion.cmake +65 -0
- quasardb/date/dateTargets.cmake +63 -0
- quasardb/extensions/__init__.py +8 -0
- quasardb/extensions/writer.py +193 -0
- quasardb/firehose.py +101 -0
- quasardb/numpy/__init__.py +901 -0
- quasardb/pandas/__init__.py +447 -0
- quasardb/pool.py +294 -0
- quasardb/pybind11/ALL_BUILD.vcxproj +181 -0
- quasardb/pybind11/ALL_BUILD.vcxproj.filters +8 -0
- quasardb/pybind11/CMakeFiles/generate.stamp +1 -0
- quasardb/pybind11/CMakeFiles/generate.stamp.depend +20 -0
- quasardb/pybind11/INSTALL.vcxproj +209 -0
- quasardb/pybind11/INSTALL.vcxproj.filters +13 -0
- quasardb/pybind11/cmake_install.cmake +40 -0
- quasardb/pybind11/pybind11.sln +60 -0
- quasardb/qdb_api.dll +0 -0
- quasardb/quasardb.cp313-win32.pyd +0 -0
- quasardb/range-v3/ALL_BUILD.vcxproj +181 -0
- quasardb/range-v3/ALL_BUILD.vcxproj.filters +8 -0
- quasardb/range-v3/CMakeFiles/Export/d94ef200eca10a819b5858b33e808f5b/range-v3-targets.cmake +128 -0
- quasardb/range-v3/CMakeFiles/generate.stamp +1 -0
- quasardb/range-v3/CMakeFiles/generate.stamp.depend +18 -0
- quasardb/range-v3/INSTALL.vcxproj +209 -0
- quasardb/range-v3/INSTALL.vcxproj.filters +13 -0
- quasardb/range-v3/Range-v3.sln +72 -0
- quasardb/range-v3/cmake_install.cmake +107 -0
- quasardb/range-v3/include/range/v3/version.hpp +24 -0
- quasardb/range-v3/range-v3-config-version.cmake +83 -0
- quasardb/range-v3/range-v3-config.cmake +80 -0
- quasardb/range-v3/range.v3.headers.vcxproj +804 -0
- quasardb/range-v3/range.v3.headers.vcxproj.filters +952 -0
- quasardb/stats.py +233 -0
- quasardb/table_cache.py +52 -0
- quasardb-3.14.2.dev4.dist-info/LICENSE.md +11 -0
- quasardb-3.14.2.dev4.dist-info/METADATA +40 -0
- quasardb-3.14.2.dev4.dist-info/RECORD +54 -0
- quasardb-3.14.2.dev4.dist-info/WHEEL +5 -0
- quasardb-3.14.2.dev4.dist-info/top_level.txt +1 -0
|
@@ -0,0 +1,128 @@
|
|
|
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 range-v3-concepts range-v3-meta range-v3)
|
|
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 range-v3-concepts
|
|
59
|
+
add_library(range-v3-concepts INTERFACE IMPORTED)
|
|
60
|
+
|
|
61
|
+
set_target_properties(range-v3-concepts PROPERTIES
|
|
62
|
+
INTERFACE_COMPILE_OPTIONS "\$<\$<COMPILE_LANG_AND_ID:CXX,MSVC>:/permissive->;\$<\$<COMPILE_LANG_AND_ID:CUDA,MSVC>:-Xcompiler=/permissive->"
|
|
63
|
+
INTERFACE_INCLUDE_DIRECTORIES "${_IMPORT_PREFIX}/include"
|
|
64
|
+
INTERFACE_LINK_LIBRARIES "range-v3-meta"
|
|
65
|
+
INTERFACE_SYSTEM_INCLUDE_DIRECTORIES "${_IMPORT_PREFIX}/include"
|
|
66
|
+
)
|
|
67
|
+
|
|
68
|
+
# Create imported target range-v3-meta
|
|
69
|
+
add_library(range-v3-meta INTERFACE IMPORTED)
|
|
70
|
+
|
|
71
|
+
set_target_properties(range-v3-meta PROPERTIES
|
|
72
|
+
INTERFACE_COMPILE_OPTIONS "\$<\$<COMPILE_LANG_AND_ID:CXX,MSVC>:/permissive->;\$<\$<COMPILE_LANG_AND_ID:CUDA,MSVC>:-Xcompiler=/permissive->"
|
|
73
|
+
INTERFACE_INCLUDE_DIRECTORIES "${_IMPORT_PREFIX}/include"
|
|
74
|
+
INTERFACE_SYSTEM_INCLUDE_DIRECTORIES "${_IMPORT_PREFIX}/include"
|
|
75
|
+
)
|
|
76
|
+
|
|
77
|
+
# Create imported target range-v3
|
|
78
|
+
add_library(range-v3 INTERFACE IMPORTED)
|
|
79
|
+
|
|
80
|
+
set_target_properties(range-v3 PROPERTIES
|
|
81
|
+
INTERFACE_COMPILE_OPTIONS "\$<\$<COMPILE_LANG_AND_ID:CXX,MSVC>:/permissive->;\$<\$<COMPILE_LANG_AND_ID:CUDA,MSVC>:-Xcompiler=/permissive->"
|
|
82
|
+
INTERFACE_INCLUDE_DIRECTORIES "${_IMPORT_PREFIX}/include"
|
|
83
|
+
INTERFACE_LINK_LIBRARIES "range-v3-concepts;range-v3-meta"
|
|
84
|
+
INTERFACE_SYSTEM_INCLUDE_DIRECTORIES "${_IMPORT_PREFIX}/include"
|
|
85
|
+
)
|
|
86
|
+
|
|
87
|
+
# Load information for each installed configuration.
|
|
88
|
+
file(GLOB _cmake_config_files "${CMAKE_CURRENT_LIST_DIR}/range-v3-targets-*.cmake")
|
|
89
|
+
foreach(_cmake_config_file IN LISTS _cmake_config_files)
|
|
90
|
+
include("${_cmake_config_file}")
|
|
91
|
+
endforeach()
|
|
92
|
+
unset(_cmake_config_file)
|
|
93
|
+
unset(_cmake_config_files)
|
|
94
|
+
|
|
95
|
+
# Cleanup temporary variables.
|
|
96
|
+
set(_IMPORT_PREFIX)
|
|
97
|
+
|
|
98
|
+
# Loop over all imported files and verify that they actually exist
|
|
99
|
+
foreach(_cmake_target IN LISTS _cmake_import_check_targets)
|
|
100
|
+
if(CMAKE_VERSION VERSION_LESS "3.28"
|
|
101
|
+
OR NOT DEFINED _cmake_import_check_xcframework_for_${_cmake_target}
|
|
102
|
+
OR NOT IS_DIRECTORY "${_cmake_import_check_xcframework_for_${_cmake_target}}")
|
|
103
|
+
foreach(_cmake_file IN LISTS "_cmake_import_check_files_for_${_cmake_target}")
|
|
104
|
+
if(NOT EXISTS "${_cmake_file}")
|
|
105
|
+
message(FATAL_ERROR "The imported target \"${_cmake_target}\" references the file
|
|
106
|
+
\"${_cmake_file}\"
|
|
107
|
+
but this file does not exist. Possible reasons include:
|
|
108
|
+
* The file was deleted, renamed, or moved to another location.
|
|
109
|
+
* An install or uninstall procedure did not complete successfully.
|
|
110
|
+
* The installation package was faulty and contained
|
|
111
|
+
\"${CMAKE_CURRENT_LIST_FILE}\"
|
|
112
|
+
but not all the files it references.
|
|
113
|
+
")
|
|
114
|
+
endif()
|
|
115
|
+
endforeach()
|
|
116
|
+
endif()
|
|
117
|
+
unset(_cmake_file)
|
|
118
|
+
unset("_cmake_import_check_files_for_${_cmake_target}")
|
|
119
|
+
endforeach()
|
|
120
|
+
unset(_cmake_target)
|
|
121
|
+
unset(_cmake_import_check_targets)
|
|
122
|
+
|
|
123
|
+
# This file does not depend on other imported targets which have
|
|
124
|
+
# been exported from the same project but in a separate export set.
|
|
125
|
+
|
|
126
|
+
# Commands beyond this point should not need to know the version.
|
|
127
|
+
set(CMAKE_IMPORT_FILE_VERSION)
|
|
128
|
+
cmake_policy(POP)
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
# CMake generation timestamp file for this directory.
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
# CMake generation dependency list for this directory.
|
|
2
|
+
C:/TeamCity/temp/buildTmp/build-env-60lwjgyu/Lib/site-packages/cmake/data/share/cmake-3.31/Modules/BasicConfigVersion-ExactVersion.cmake.in
|
|
3
|
+
C:/TeamCity/temp/buildTmp/build-env-60lwjgyu/Lib/site-packages/cmake/data/share/cmake-3.31/Modules/CMakeDependentOption.cmake
|
|
4
|
+
C:/TeamCity/temp/buildTmp/build-env-60lwjgyu/Lib/site-packages/cmake/data/share/cmake-3.31/Modules/CMakePackageConfigHelpers.cmake
|
|
5
|
+
C:/TeamCity/temp/buildTmp/build-env-60lwjgyu/Lib/site-packages/cmake/data/share/cmake-3.31/Modules/CheckCXXCompilerFlag.cmake
|
|
6
|
+
C:/TeamCity/temp/buildTmp/build-env-60lwjgyu/Lib/site-packages/cmake/data/share/cmake-3.31/Modules/CheckCXXSourceCompiles.cmake
|
|
7
|
+
C:/TeamCity/temp/buildTmp/build-env-60lwjgyu/Lib/site-packages/cmake/data/share/cmake-3.31/Modules/FindDoxygen.cmake
|
|
8
|
+
C:/TeamCity/temp/buildTmp/build-env-60lwjgyu/Lib/site-packages/cmake/data/share/cmake-3.31/Modules/FindGit.cmake
|
|
9
|
+
C:/TeamCity/temp/buildTmp/build-env-60lwjgyu/Lib/site-packages/cmake/data/share/cmake-3.31/Modules/FindPackageHandleStandardArgs.cmake
|
|
10
|
+
C:/TeamCity/temp/buildTmp/build-env-60lwjgyu/Lib/site-packages/cmake/data/share/cmake-3.31/Modules/FindPackageMessage.cmake
|
|
11
|
+
C:/TeamCity/temp/buildTmp/build-env-60lwjgyu/Lib/site-packages/cmake/data/share/cmake-3.31/Modules/GNUInstallDirs.cmake
|
|
12
|
+
C:/TeamCity/temp/buildTmp/build-env-60lwjgyu/Lib/site-packages/cmake/data/share/cmake-3.31/Modules/WriteBasicConfigVersionFile.cmake
|
|
13
|
+
C:/TeamCity/work/938b0bdf6727d1ad/thirdparty/range-v3/CMakeLists.txt
|
|
14
|
+
C:/TeamCity/work/938b0bdf6727d1ad/thirdparty/range-v3/Version.cmake
|
|
15
|
+
C:/TeamCity/work/938b0bdf6727d1ad/thirdparty/range-v3/cmake/ranges_env.cmake
|
|
16
|
+
C:/TeamCity/work/938b0bdf6727d1ad/thirdparty/range-v3/cmake/ranges_flags.cmake
|
|
17
|
+
C:/TeamCity/work/938b0bdf6727d1ad/thirdparty/range-v3/cmake/ranges_options.cmake
|
|
18
|
+
C:/TeamCity/work/938b0bdf6727d1ad/thirdparty/range-v3/version.hpp.in
|
|
@@ -0,0 +1,209 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
+
<Project DefaultTargets="Build" ToolsVersion="17.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
3
|
+
<PropertyGroup>
|
|
4
|
+
<PreferredToolArchitecture>x64</PreferredToolArchitecture>
|
|
5
|
+
</PropertyGroup>
|
|
6
|
+
<ItemGroup Label="ProjectConfigurations">
|
|
7
|
+
<ProjectConfiguration Include="Debug|Win32">
|
|
8
|
+
<Configuration>Debug</Configuration>
|
|
9
|
+
<Platform>Win32</Platform>
|
|
10
|
+
</ProjectConfiguration>
|
|
11
|
+
<ProjectConfiguration Include="Release|Win32">
|
|
12
|
+
<Configuration>Release</Configuration>
|
|
13
|
+
<Platform>Win32</Platform>
|
|
14
|
+
</ProjectConfiguration>
|
|
15
|
+
<ProjectConfiguration Include="MinSizeRel|Win32">
|
|
16
|
+
<Configuration>MinSizeRel</Configuration>
|
|
17
|
+
<Platform>Win32</Platform>
|
|
18
|
+
</ProjectConfiguration>
|
|
19
|
+
<ProjectConfiguration Include="RelWithDebInfo|Win32">
|
|
20
|
+
<Configuration>RelWithDebInfo</Configuration>
|
|
21
|
+
<Platform>Win32</Platform>
|
|
22
|
+
</ProjectConfiguration>
|
|
23
|
+
</ItemGroup>
|
|
24
|
+
<PropertyGroup Label="Globals">
|
|
25
|
+
<ProjectGuid>{A7E310E6-6789-363A-86E2-8C0705B99F59}</ProjectGuid>
|
|
26
|
+
<Keyword>Win32Proj</Keyword>
|
|
27
|
+
<WindowsTargetPlatformVersion>10.0.22621.0</WindowsTargetPlatformVersion>
|
|
28
|
+
<Platform>Win32</Platform>
|
|
29
|
+
<ProjectName>INSTALL</ProjectName>
|
|
30
|
+
<VCProjectUpgraderObjectName>NoUpgrade</VCProjectUpgraderObjectName>
|
|
31
|
+
</PropertyGroup>
|
|
32
|
+
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
|
33
|
+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
|
|
34
|
+
<ConfigurationType>Utility</ConfigurationType>
|
|
35
|
+
<CharacterSet>MultiByte</CharacterSet>
|
|
36
|
+
<PlatformToolset>v143</PlatformToolset>
|
|
37
|
+
</PropertyGroup>
|
|
38
|
+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
|
|
39
|
+
<ConfigurationType>Utility</ConfigurationType>
|
|
40
|
+
<CharacterSet>MultiByte</CharacterSet>
|
|
41
|
+
<PlatformToolset>v143</PlatformToolset>
|
|
42
|
+
</PropertyGroup>
|
|
43
|
+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='MinSizeRel|Win32'" Label="Configuration">
|
|
44
|
+
<ConfigurationType>Utility</ConfigurationType>
|
|
45
|
+
<CharacterSet>MultiByte</CharacterSet>
|
|
46
|
+
<PlatformToolset>v143</PlatformToolset>
|
|
47
|
+
</PropertyGroup>
|
|
48
|
+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='RelWithDebInfo|Win32'" Label="Configuration">
|
|
49
|
+
<ConfigurationType>Utility</ConfigurationType>
|
|
50
|
+
<CharacterSet>MultiByte</CharacterSet>
|
|
51
|
+
<PlatformToolset>v143</PlatformToolset>
|
|
52
|
+
</PropertyGroup>
|
|
53
|
+
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
|
54
|
+
<ImportGroup Label="ExtensionSettings">
|
|
55
|
+
</ImportGroup>
|
|
56
|
+
<ImportGroup Label="PropertySheets">
|
|
57
|
+
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
|
58
|
+
</ImportGroup>
|
|
59
|
+
<PropertyGroup Label="UserMacros" />
|
|
60
|
+
<PropertyGroup>
|
|
61
|
+
<_ProjectFileVersion>10.0.20506.1</_ProjectFileVersion>
|
|
62
|
+
<IntDir Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">$(Platform)\$(Configuration)\$(ProjectName)\</IntDir>
|
|
63
|
+
<IntDir Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">$(Platform)\$(Configuration)\$(ProjectName)\</IntDir>
|
|
64
|
+
<IntDir Condition="'$(Configuration)|$(Platform)'=='MinSizeRel|Win32'">$(Platform)\$(Configuration)\$(ProjectName)\</IntDir>
|
|
65
|
+
<IntDir Condition="'$(Configuration)|$(Platform)'=='RelWithDebInfo|Win32'">$(Platform)\$(Configuration)\$(ProjectName)\</IntDir>
|
|
66
|
+
</PropertyGroup>
|
|
67
|
+
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
|
68
|
+
<PostBuildEvent>
|
|
69
|
+
<UseUtf8Encoding>Always</UseUtf8Encoding>
|
|
70
|
+
<Message></Message>
|
|
71
|
+
<Command>setlocal
|
|
72
|
+
C:\TeamCity\temp\buildTmp\build-env-60lwjgyu\Lib\site-packages\cmake\data\bin\cmake.exe -DBUILD_TYPE=$(Configuration) -P cmake_install.cmake
|
|
73
|
+
if %errorlevel% neq 0 goto :cmEnd
|
|
74
|
+
:cmEnd
|
|
75
|
+
endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
|
|
76
|
+
:cmErrorLevel
|
|
77
|
+
exit /b %1
|
|
78
|
+
:cmDone
|
|
79
|
+
if %errorlevel% neq 0 goto :VCEnd</Command>
|
|
80
|
+
</PostBuildEvent>
|
|
81
|
+
</ItemDefinitionGroup>
|
|
82
|
+
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
|
83
|
+
<PostBuildEvent>
|
|
84
|
+
<UseUtf8Encoding>Always</UseUtf8Encoding>
|
|
85
|
+
<Message></Message>
|
|
86
|
+
<Command>setlocal
|
|
87
|
+
C:\TeamCity\temp\buildTmp\build-env-60lwjgyu\Lib\site-packages\cmake\data\bin\cmake.exe -DBUILD_TYPE=$(Configuration) -P cmake_install.cmake
|
|
88
|
+
if %errorlevel% neq 0 goto :cmEnd
|
|
89
|
+
:cmEnd
|
|
90
|
+
endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
|
|
91
|
+
:cmErrorLevel
|
|
92
|
+
exit /b %1
|
|
93
|
+
:cmDone
|
|
94
|
+
if %errorlevel% neq 0 goto :VCEnd</Command>
|
|
95
|
+
</PostBuildEvent>
|
|
96
|
+
</ItemDefinitionGroup>
|
|
97
|
+
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='MinSizeRel|Win32'">
|
|
98
|
+
<PostBuildEvent>
|
|
99
|
+
<UseUtf8Encoding>Always</UseUtf8Encoding>
|
|
100
|
+
<Message></Message>
|
|
101
|
+
<Command>setlocal
|
|
102
|
+
C:\TeamCity\temp\buildTmp\build-env-60lwjgyu\Lib\site-packages\cmake\data\bin\cmake.exe -DBUILD_TYPE=$(Configuration) -P cmake_install.cmake
|
|
103
|
+
if %errorlevel% neq 0 goto :cmEnd
|
|
104
|
+
:cmEnd
|
|
105
|
+
endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
|
|
106
|
+
:cmErrorLevel
|
|
107
|
+
exit /b %1
|
|
108
|
+
:cmDone
|
|
109
|
+
if %errorlevel% neq 0 goto :VCEnd</Command>
|
|
110
|
+
</PostBuildEvent>
|
|
111
|
+
</ItemDefinitionGroup>
|
|
112
|
+
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='RelWithDebInfo|Win32'">
|
|
113
|
+
<PostBuildEvent>
|
|
114
|
+
<UseUtf8Encoding>Always</UseUtf8Encoding>
|
|
115
|
+
<Message></Message>
|
|
116
|
+
<Command>setlocal
|
|
117
|
+
C:\TeamCity\temp\buildTmp\build-env-60lwjgyu\Lib\site-packages\cmake\data\bin\cmake.exe -DBUILD_TYPE=$(Configuration) -P cmake_install.cmake
|
|
118
|
+
if %errorlevel% neq 0 goto :cmEnd
|
|
119
|
+
:cmEnd
|
|
120
|
+
endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
|
|
121
|
+
:cmErrorLevel
|
|
122
|
+
exit /b %1
|
|
123
|
+
:cmDone
|
|
124
|
+
if %errorlevel% neq 0 goto :VCEnd</Command>
|
|
125
|
+
</PostBuildEvent>
|
|
126
|
+
</ItemDefinitionGroup>
|
|
127
|
+
<ItemGroup>
|
|
128
|
+
<CustomBuild Include="C:\TeamCity\work\938b0bdf6727d1ad\build\temp.win32-cpython-313\Release\CMakeFiles\aec379e5ca9c110c92e8161b9046c82f\INSTALL_force.rule">
|
|
129
|
+
<BuildInParallel Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">true</BuildInParallel>
|
|
130
|
+
<Message Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> </Message>
|
|
131
|
+
<Command Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">setlocal
|
|
132
|
+
cd .
|
|
133
|
+
if %errorlevel% neq 0 goto :cmEnd
|
|
134
|
+
:cmEnd
|
|
135
|
+
endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
|
|
136
|
+
:cmErrorLevel
|
|
137
|
+
exit /b %1
|
|
138
|
+
:cmDone
|
|
139
|
+
if %errorlevel% neq 0 goto :VCEnd</Command>
|
|
140
|
+
<AdditionalInputs Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(AdditionalInputs)</AdditionalInputs>
|
|
141
|
+
<Outputs Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">C:\TeamCity\work\938b0bdf6727d1ad\build\lib.win32-cpython-313\quasardb\range-v3\CMakeFiles\INSTALL_force</Outputs>
|
|
142
|
+
<LinkObjects Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">false</LinkObjects>
|
|
143
|
+
<VerifyInputsAndOutputsExist Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">false</VerifyInputsAndOutputsExist>
|
|
144
|
+
<BuildInParallel Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">true</BuildInParallel>
|
|
145
|
+
<Message Condition="'$(Configuration)|$(Platform)'=='Release|Win32'"> </Message>
|
|
146
|
+
<Command Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">setlocal
|
|
147
|
+
cd .
|
|
148
|
+
if %errorlevel% neq 0 goto :cmEnd
|
|
149
|
+
:cmEnd
|
|
150
|
+
endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
|
|
151
|
+
:cmErrorLevel
|
|
152
|
+
exit /b %1
|
|
153
|
+
:cmDone
|
|
154
|
+
if %errorlevel% neq 0 goto :VCEnd</Command>
|
|
155
|
+
<AdditionalInputs Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">%(AdditionalInputs)</AdditionalInputs>
|
|
156
|
+
<Outputs Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">C:\TeamCity\work\938b0bdf6727d1ad\build\lib.win32-cpython-313\quasardb\range-v3\CMakeFiles\INSTALL_force</Outputs>
|
|
157
|
+
<LinkObjects Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">false</LinkObjects>
|
|
158
|
+
<VerifyInputsAndOutputsExist Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">false</VerifyInputsAndOutputsExist>
|
|
159
|
+
<BuildInParallel Condition="'$(Configuration)|$(Platform)'=='MinSizeRel|Win32'">true</BuildInParallel>
|
|
160
|
+
<Message Condition="'$(Configuration)|$(Platform)'=='MinSizeRel|Win32'"> </Message>
|
|
161
|
+
<Command Condition="'$(Configuration)|$(Platform)'=='MinSizeRel|Win32'">setlocal
|
|
162
|
+
cd .
|
|
163
|
+
if %errorlevel% neq 0 goto :cmEnd
|
|
164
|
+
:cmEnd
|
|
165
|
+
endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
|
|
166
|
+
:cmErrorLevel
|
|
167
|
+
exit /b %1
|
|
168
|
+
:cmDone
|
|
169
|
+
if %errorlevel% neq 0 goto :VCEnd</Command>
|
|
170
|
+
<AdditionalInputs Condition="'$(Configuration)|$(Platform)'=='MinSizeRel|Win32'">%(AdditionalInputs)</AdditionalInputs>
|
|
171
|
+
<Outputs Condition="'$(Configuration)|$(Platform)'=='MinSizeRel|Win32'">C:\TeamCity\work\938b0bdf6727d1ad\build\lib.win32-cpython-313\quasardb\range-v3\CMakeFiles\INSTALL_force</Outputs>
|
|
172
|
+
<LinkObjects Condition="'$(Configuration)|$(Platform)'=='MinSizeRel|Win32'">false</LinkObjects>
|
|
173
|
+
<VerifyInputsAndOutputsExist Condition="'$(Configuration)|$(Platform)'=='MinSizeRel|Win32'">false</VerifyInputsAndOutputsExist>
|
|
174
|
+
<BuildInParallel Condition="'$(Configuration)|$(Platform)'=='RelWithDebInfo|Win32'">true</BuildInParallel>
|
|
175
|
+
<Message Condition="'$(Configuration)|$(Platform)'=='RelWithDebInfo|Win32'"> </Message>
|
|
176
|
+
<Command Condition="'$(Configuration)|$(Platform)'=='RelWithDebInfo|Win32'">setlocal
|
|
177
|
+
cd .
|
|
178
|
+
if %errorlevel% neq 0 goto :cmEnd
|
|
179
|
+
:cmEnd
|
|
180
|
+
endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
|
|
181
|
+
:cmErrorLevel
|
|
182
|
+
exit /b %1
|
|
183
|
+
:cmDone
|
|
184
|
+
if %errorlevel% neq 0 goto :VCEnd</Command>
|
|
185
|
+
<AdditionalInputs Condition="'$(Configuration)|$(Platform)'=='RelWithDebInfo|Win32'">%(AdditionalInputs)</AdditionalInputs>
|
|
186
|
+
<Outputs Condition="'$(Configuration)|$(Platform)'=='RelWithDebInfo|Win32'">C:\TeamCity\work\938b0bdf6727d1ad\build\lib.win32-cpython-313\quasardb\range-v3\CMakeFiles\INSTALL_force</Outputs>
|
|
187
|
+
<LinkObjects Condition="'$(Configuration)|$(Platform)'=='RelWithDebInfo|Win32'">false</LinkObjects>
|
|
188
|
+
<VerifyInputsAndOutputsExist Condition="'$(Configuration)|$(Platform)'=='RelWithDebInfo|Win32'">false</VerifyInputsAndOutputsExist>
|
|
189
|
+
</CustomBuild>
|
|
190
|
+
</ItemGroup>
|
|
191
|
+
<ItemGroup />
|
|
192
|
+
<ItemGroup>
|
|
193
|
+
<ProjectReference Include="C:\TeamCity\work\938b0bdf6727d1ad\build\temp.win32-cpython-313\Release\ZERO_CHECK.vcxproj">
|
|
194
|
+
<Project>{9616D9E8-9613-3191-906B-DF929B637FBE}</Project>
|
|
195
|
+
<Name>ZERO_CHECK</Name>
|
|
196
|
+
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
|
197
|
+
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
|
|
198
|
+
</ProjectReference>
|
|
199
|
+
<ProjectReference Include="C:\TeamCity\work\938b0bdf6727d1ad\build\lib.win32-cpython-313\quasardb\range-v3\ALL_BUILD.vcxproj">
|
|
200
|
+
<Project>{E7BBB16D-F7DC-3176-9FCA-FD71230AF66D}</Project>
|
|
201
|
+
<Name>ALL_BUILD</Name>
|
|
202
|
+
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
|
203
|
+
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
|
|
204
|
+
</ProjectReference>
|
|
205
|
+
</ItemGroup>
|
|
206
|
+
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
|
207
|
+
<ImportGroup Label="ExtensionTargets">
|
|
208
|
+
</ImportGroup>
|
|
209
|
+
</Project>
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
+
<Project ToolsVersion="17.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
3
|
+
<ItemGroup>
|
|
4
|
+
<CustomBuild Include="C:\TeamCity\work\938b0bdf6727d1ad\build\temp.win32-cpython-313\Release\CMakeFiles\aec379e5ca9c110c92e8161b9046c82f\INSTALL_force.rule">
|
|
5
|
+
<Filter>CMake Rules</Filter>
|
|
6
|
+
</CustomBuild>
|
|
7
|
+
</ItemGroup>
|
|
8
|
+
<ItemGroup>
|
|
9
|
+
<Filter Include="CMake Rules">
|
|
10
|
+
<UniqueIdentifier>{799C2895-E8D2-3B59-A0DC-643DEED4721E}</UniqueIdentifier>
|
|
11
|
+
</Filter>
|
|
12
|
+
</ItemGroup>
|
|
13
|
+
</Project>
|
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
|
|
2
|
+
Microsoft Visual Studio Solution File, Format Version 12.00
|
|
3
|
+
# Visual Studio Version 17
|
|
4
|
+
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "CMakePredefinedTargets", "CMakePredefinedTargets", "{9053E8A0-D393-34A4-81E1-BF7AC38C829D}"
|
|
5
|
+
EndProject
|
|
6
|
+
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "header", "header", "{0F5786F5-0B7A-3055-B541-9C1B701190AB}"
|
|
7
|
+
EndProject
|
|
8
|
+
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ALL_BUILD", "ALL_BUILD.vcxproj", "{E7BBB16D-F7DC-3176-9FCA-FD71230AF66D}"
|
|
9
|
+
ProjectSection(ProjectDependencies) = postProject
|
|
10
|
+
{9616D9E8-9613-3191-906B-DF929B637FBE} = {9616D9E8-9613-3191-906B-DF929B637FBE}
|
|
11
|
+
EndProjectSection
|
|
12
|
+
EndProject
|
|
13
|
+
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "INSTALL", "INSTALL.vcxproj", "{A7E310E6-6789-363A-86E2-8C0705B99F59}"
|
|
14
|
+
ProjectSection(ProjectDependencies) = postProject
|
|
15
|
+
{E7BBB16D-F7DC-3176-9FCA-FD71230AF66D} = {E7BBB16D-F7DC-3176-9FCA-FD71230AF66D}
|
|
16
|
+
{9616D9E8-9613-3191-906B-DF929B637FBE} = {9616D9E8-9613-3191-906B-DF929B637FBE}
|
|
17
|
+
EndProjectSection
|
|
18
|
+
EndProject
|
|
19
|
+
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ZERO_CHECK", "C:\TeamCity\work\938b0bdf6727d1ad\build\temp.win32-cpython-313\Release\ZERO_CHECK.vcxproj", "{9616D9E8-9613-3191-906B-DF929B637FBE}"
|
|
20
|
+
ProjectSection(ProjectDependencies) = postProject
|
|
21
|
+
EndProjectSection
|
|
22
|
+
EndProject
|
|
23
|
+
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "range.v3.headers", "range.v3.headers.vcxproj", "{522B3370-5EB3-3D3E-91C1-F2A940E4071E}"
|
|
24
|
+
ProjectSection(ProjectDependencies) = postProject
|
|
25
|
+
{9616D9E8-9613-3191-906B-DF929B637FBE} = {9616D9E8-9613-3191-906B-DF929B637FBE}
|
|
26
|
+
EndProjectSection
|
|
27
|
+
EndProject
|
|
28
|
+
Global
|
|
29
|
+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
|
30
|
+
Debug|Win32 = Debug|Win32
|
|
31
|
+
Release|Win32 = Release|Win32
|
|
32
|
+
MinSizeRel|Win32 = MinSizeRel|Win32
|
|
33
|
+
RelWithDebInfo|Win32 = RelWithDebInfo|Win32
|
|
34
|
+
EndGlobalSection
|
|
35
|
+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
|
36
|
+
{E7BBB16D-F7DC-3176-9FCA-FD71230AF66D}.Debug|Win32.ActiveCfg = Debug|Win32
|
|
37
|
+
{E7BBB16D-F7DC-3176-9FCA-FD71230AF66D}.Debug|Win32.Build.0 = Debug|Win32
|
|
38
|
+
{E7BBB16D-F7DC-3176-9FCA-FD71230AF66D}.Release|Win32.ActiveCfg = Release|Win32
|
|
39
|
+
{E7BBB16D-F7DC-3176-9FCA-FD71230AF66D}.Release|Win32.Build.0 = Release|Win32
|
|
40
|
+
{E7BBB16D-F7DC-3176-9FCA-FD71230AF66D}.MinSizeRel|Win32.ActiveCfg = MinSizeRel|Win32
|
|
41
|
+
{E7BBB16D-F7DC-3176-9FCA-FD71230AF66D}.MinSizeRel|Win32.Build.0 = MinSizeRel|Win32
|
|
42
|
+
{E7BBB16D-F7DC-3176-9FCA-FD71230AF66D}.RelWithDebInfo|Win32.ActiveCfg = RelWithDebInfo|Win32
|
|
43
|
+
{E7BBB16D-F7DC-3176-9FCA-FD71230AF66D}.RelWithDebInfo|Win32.Build.0 = RelWithDebInfo|Win32
|
|
44
|
+
{A7E310E6-6789-363A-86E2-8C0705B99F59}.Debug|Win32.ActiveCfg = Debug|Win32
|
|
45
|
+
{A7E310E6-6789-363A-86E2-8C0705B99F59}.Release|Win32.ActiveCfg = Release|Win32
|
|
46
|
+
{A7E310E6-6789-363A-86E2-8C0705B99F59}.MinSizeRel|Win32.ActiveCfg = MinSizeRel|Win32
|
|
47
|
+
{A7E310E6-6789-363A-86E2-8C0705B99F59}.RelWithDebInfo|Win32.ActiveCfg = RelWithDebInfo|Win32
|
|
48
|
+
{9616D9E8-9613-3191-906B-DF929B637FBE}.Debug|Win32.ActiveCfg = Debug|Win32
|
|
49
|
+
{9616D9E8-9613-3191-906B-DF929B637FBE}.Debug|Win32.Build.0 = Debug|Win32
|
|
50
|
+
{9616D9E8-9613-3191-906B-DF929B637FBE}.Release|Win32.ActiveCfg = Release|Win32
|
|
51
|
+
{9616D9E8-9613-3191-906B-DF929B637FBE}.Release|Win32.Build.0 = Release|Win32
|
|
52
|
+
{9616D9E8-9613-3191-906B-DF929B637FBE}.MinSizeRel|Win32.ActiveCfg = MinSizeRel|Win32
|
|
53
|
+
{9616D9E8-9613-3191-906B-DF929B637FBE}.MinSizeRel|Win32.Build.0 = MinSizeRel|Win32
|
|
54
|
+
{9616D9E8-9613-3191-906B-DF929B637FBE}.RelWithDebInfo|Win32.ActiveCfg = RelWithDebInfo|Win32
|
|
55
|
+
{9616D9E8-9613-3191-906B-DF929B637FBE}.RelWithDebInfo|Win32.Build.0 = RelWithDebInfo|Win32
|
|
56
|
+
{522B3370-5EB3-3D3E-91C1-F2A940E4071E}.Debug|Win32.ActiveCfg = Debug|Win32
|
|
57
|
+
{522B3370-5EB3-3D3E-91C1-F2A940E4071E}.Release|Win32.ActiveCfg = Release|Win32
|
|
58
|
+
{522B3370-5EB3-3D3E-91C1-F2A940E4071E}.MinSizeRel|Win32.ActiveCfg = MinSizeRel|Win32
|
|
59
|
+
{522B3370-5EB3-3D3E-91C1-F2A940E4071E}.RelWithDebInfo|Win32.ActiveCfg = RelWithDebInfo|Win32
|
|
60
|
+
EndGlobalSection
|
|
61
|
+
GlobalSection(NestedProjects) = preSolution
|
|
62
|
+
{E7BBB16D-F7DC-3176-9FCA-FD71230AF66D} = {9053E8A0-D393-34A4-81E1-BF7AC38C829D}
|
|
63
|
+
{A7E310E6-6789-363A-86E2-8C0705B99F59} = {9053E8A0-D393-34A4-81E1-BF7AC38C829D}
|
|
64
|
+
{9616D9E8-9613-3191-906B-DF929B637FBE} = {9053E8A0-D393-34A4-81E1-BF7AC38C829D}
|
|
65
|
+
{522B3370-5EB3-3D3E-91C1-F2A940E4071E} = {0F5786F5-0B7A-3055-B541-9C1B701190AB}
|
|
66
|
+
EndGlobalSection
|
|
67
|
+
GlobalSection(ExtensibilityGlobals) = postSolution
|
|
68
|
+
SolutionGuid = {27CC77AE-C000-3666-A984-470BCBAB9C6A}
|
|
69
|
+
EndGlobalSection
|
|
70
|
+
GlobalSection(ExtensibilityAddIns) = postSolution
|
|
71
|
+
EndGlobalSection
|
|
72
|
+
EndGlobal
|
|
@@ -0,0 +1,107 @@
|
|
|
1
|
+
# Install script for directory: C:/TeamCity/work/938b0bdf6727d1ad/thirdparty/range-v3
|
|
2
|
+
|
|
3
|
+
# Set the install prefix
|
|
4
|
+
if(NOT DEFINED CMAKE_INSTALL_PREFIX)
|
|
5
|
+
set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/quasardb")
|
|
6
|
+
endif()
|
|
7
|
+
string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")
|
|
8
|
+
|
|
9
|
+
# Set the install configuration name.
|
|
10
|
+
if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
|
|
11
|
+
if(BUILD_TYPE)
|
|
12
|
+
string(REGEX REPLACE "^[^A-Za-z0-9_]+" ""
|
|
13
|
+
CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}")
|
|
14
|
+
else()
|
|
15
|
+
set(CMAKE_INSTALL_CONFIG_NAME "Release")
|
|
16
|
+
endif()
|
|
17
|
+
message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
|
|
18
|
+
endif()
|
|
19
|
+
|
|
20
|
+
# Set the component getting installed.
|
|
21
|
+
if(NOT CMAKE_INSTALL_COMPONENT)
|
|
22
|
+
if(COMPONENT)
|
|
23
|
+
message(STATUS "Install component: \"${COMPONENT}\"")
|
|
24
|
+
set(CMAKE_INSTALL_COMPONENT "${COMPONENT}")
|
|
25
|
+
else()
|
|
26
|
+
set(CMAKE_INSTALL_COMPONENT)
|
|
27
|
+
endif()
|
|
28
|
+
endif()
|
|
29
|
+
|
|
30
|
+
# Is this installation the result of a crosscompile?
|
|
31
|
+
if(NOT DEFINED CMAKE_CROSSCOMPILING)
|
|
32
|
+
set(CMAKE_CROSSCOMPILING "FALSE")
|
|
33
|
+
endif()
|
|
34
|
+
|
|
35
|
+
if(CMAKE_INSTALL_COMPONENT STREQUAL "Unspecified" OR NOT CMAKE_INSTALL_COMPONENT)
|
|
36
|
+
if(CMAKE_INSTALL_CONFIG_NAME MATCHES "^([Dd][Ee][Bb][Uu][Gg])$")
|
|
37
|
+
include("C:/TeamCity/work/938b0bdf6727d1ad/build/lib.win32-cpython-313/quasardb/range-v3/CMakeFiles/range-v3-concepts.dir/install-cxx-module-bmi-Debug.cmake" OPTIONAL)
|
|
38
|
+
elseif(CMAKE_INSTALL_CONFIG_NAME MATCHES "^([Rr][Ee][Ll][Ee][Aa][Ss][Ee])$")
|
|
39
|
+
include("C:/TeamCity/work/938b0bdf6727d1ad/build/lib.win32-cpython-313/quasardb/range-v3/CMakeFiles/range-v3-concepts.dir/install-cxx-module-bmi-Release.cmake" OPTIONAL)
|
|
40
|
+
elseif(CMAKE_INSTALL_CONFIG_NAME MATCHES "^([Mm][Ii][Nn][Ss][Ii][Zz][Ee][Rr][Ee][Ll])$")
|
|
41
|
+
include("C:/TeamCity/work/938b0bdf6727d1ad/build/lib.win32-cpython-313/quasardb/range-v3/CMakeFiles/range-v3-concepts.dir/install-cxx-module-bmi-MinSizeRel.cmake" OPTIONAL)
|
|
42
|
+
elseif(CMAKE_INSTALL_CONFIG_NAME MATCHES "^([Rr][Ee][Ll][Ww][Ii][Tt][Hh][Dd][Ee][Bb][Ii][Nn][Ff][Oo])$")
|
|
43
|
+
include("C:/TeamCity/work/938b0bdf6727d1ad/build/lib.win32-cpython-313/quasardb/range-v3/CMakeFiles/range-v3-concepts.dir/install-cxx-module-bmi-RelWithDebInfo.cmake" OPTIONAL)
|
|
44
|
+
endif()
|
|
45
|
+
endif()
|
|
46
|
+
|
|
47
|
+
if(CMAKE_INSTALL_COMPONENT STREQUAL "Unspecified" OR NOT CMAKE_INSTALL_COMPONENT)
|
|
48
|
+
if(CMAKE_INSTALL_CONFIG_NAME MATCHES "^([Dd][Ee][Bb][Uu][Gg])$")
|
|
49
|
+
include("C:/TeamCity/work/938b0bdf6727d1ad/build/lib.win32-cpython-313/quasardb/range-v3/CMakeFiles/range-v3-meta.dir/install-cxx-module-bmi-Debug.cmake" OPTIONAL)
|
|
50
|
+
elseif(CMAKE_INSTALL_CONFIG_NAME MATCHES "^([Rr][Ee][Ll][Ee][Aa][Ss][Ee])$")
|
|
51
|
+
include("C:/TeamCity/work/938b0bdf6727d1ad/build/lib.win32-cpython-313/quasardb/range-v3/CMakeFiles/range-v3-meta.dir/install-cxx-module-bmi-Release.cmake" OPTIONAL)
|
|
52
|
+
elseif(CMAKE_INSTALL_CONFIG_NAME MATCHES "^([Mm][Ii][Nn][Ss][Ii][Zz][Ee][Rr][Ee][Ll])$")
|
|
53
|
+
include("C:/TeamCity/work/938b0bdf6727d1ad/build/lib.win32-cpython-313/quasardb/range-v3/CMakeFiles/range-v3-meta.dir/install-cxx-module-bmi-MinSizeRel.cmake" OPTIONAL)
|
|
54
|
+
elseif(CMAKE_INSTALL_CONFIG_NAME MATCHES "^([Rr][Ee][Ll][Ww][Ii][Tt][Hh][Dd][Ee][Bb][Ii][Nn][Ff][Oo])$")
|
|
55
|
+
include("C:/TeamCity/work/938b0bdf6727d1ad/build/lib.win32-cpython-313/quasardb/range-v3/CMakeFiles/range-v3-meta.dir/install-cxx-module-bmi-RelWithDebInfo.cmake" OPTIONAL)
|
|
56
|
+
endif()
|
|
57
|
+
endif()
|
|
58
|
+
|
|
59
|
+
if(CMAKE_INSTALL_COMPONENT STREQUAL "Unspecified" OR NOT CMAKE_INSTALL_COMPONENT)
|
|
60
|
+
if(CMAKE_INSTALL_CONFIG_NAME MATCHES "^([Dd][Ee][Bb][Uu][Gg])$")
|
|
61
|
+
include("C:/TeamCity/work/938b0bdf6727d1ad/build/lib.win32-cpython-313/quasardb/range-v3/CMakeFiles/range-v3.dir/install-cxx-module-bmi-Debug.cmake" OPTIONAL)
|
|
62
|
+
elseif(CMAKE_INSTALL_CONFIG_NAME MATCHES "^([Rr][Ee][Ll][Ee][Aa][Ss][Ee])$")
|
|
63
|
+
include("C:/TeamCity/work/938b0bdf6727d1ad/build/lib.win32-cpython-313/quasardb/range-v3/CMakeFiles/range-v3.dir/install-cxx-module-bmi-Release.cmake" OPTIONAL)
|
|
64
|
+
elseif(CMAKE_INSTALL_CONFIG_NAME MATCHES "^([Mm][Ii][Nn][Ss][Ii][Zz][Ee][Rr][Ee][Ll])$")
|
|
65
|
+
include("C:/TeamCity/work/938b0bdf6727d1ad/build/lib.win32-cpython-313/quasardb/range-v3/CMakeFiles/range-v3.dir/install-cxx-module-bmi-MinSizeRel.cmake" OPTIONAL)
|
|
66
|
+
elseif(CMAKE_INSTALL_CONFIG_NAME MATCHES "^([Rr][Ee][Ll][Ww][Ii][Tt][Hh][Dd][Ee][Bb][Ii][Nn][Ff][Oo])$")
|
|
67
|
+
include("C:/TeamCity/work/938b0bdf6727d1ad/build/lib.win32-cpython-313/quasardb/range-v3/CMakeFiles/range-v3.dir/install-cxx-module-bmi-RelWithDebInfo.cmake" OPTIONAL)
|
|
68
|
+
endif()
|
|
69
|
+
endif()
|
|
70
|
+
|
|
71
|
+
if(CMAKE_INSTALL_COMPONENT STREQUAL "Unspecified" OR NOT CMAKE_INSTALL_COMPONENT)
|
|
72
|
+
if(EXISTS "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/cmake/range-v3/range-v3-targets.cmake")
|
|
73
|
+
file(DIFFERENT _cmake_export_file_changed FILES
|
|
74
|
+
"$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/cmake/range-v3/range-v3-targets.cmake"
|
|
75
|
+
"C:/TeamCity/work/938b0bdf6727d1ad/build/lib.win32-cpython-313/quasardb/range-v3/CMakeFiles/Export/d94ef200eca10a819b5858b33e808f5b/range-v3-targets.cmake")
|
|
76
|
+
if(_cmake_export_file_changed)
|
|
77
|
+
file(GLOB _cmake_old_config_files "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/cmake/range-v3/range-v3-targets-*.cmake")
|
|
78
|
+
if(_cmake_old_config_files)
|
|
79
|
+
string(REPLACE ";" ", " _cmake_old_config_files_text "${_cmake_old_config_files}")
|
|
80
|
+
message(STATUS "Old export file \"$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/cmake/range-v3/range-v3-targets.cmake\" will be replaced. Removing files [${_cmake_old_config_files_text}].")
|
|
81
|
+
unset(_cmake_old_config_files_text)
|
|
82
|
+
file(REMOVE ${_cmake_old_config_files})
|
|
83
|
+
endif()
|
|
84
|
+
unset(_cmake_old_config_files)
|
|
85
|
+
endif()
|
|
86
|
+
unset(_cmake_export_file_changed)
|
|
87
|
+
endif()
|
|
88
|
+
file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/lib/cmake/range-v3" TYPE FILE FILES "C:/TeamCity/work/938b0bdf6727d1ad/build/lib.win32-cpython-313/quasardb/range-v3/CMakeFiles/Export/d94ef200eca10a819b5858b33e808f5b/range-v3-targets.cmake")
|
|
89
|
+
endif()
|
|
90
|
+
|
|
91
|
+
if(CMAKE_INSTALL_COMPONENT STREQUAL "Unspecified" OR NOT CMAKE_INSTALL_COMPONENT)
|
|
92
|
+
file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/lib/cmake/range-v3" TYPE FILE FILES
|
|
93
|
+
"C:/TeamCity/work/938b0bdf6727d1ad/build/lib.win32-cpython-313/quasardb/range-v3/range-v3-config-version.cmake"
|
|
94
|
+
"C:/TeamCity/work/938b0bdf6727d1ad/thirdparty/range-v3/cmake/range-v3-config.cmake"
|
|
95
|
+
)
|
|
96
|
+
endif()
|
|
97
|
+
|
|
98
|
+
if(CMAKE_INSTALL_COMPONENT STREQUAL "Unspecified" OR NOT CMAKE_INSTALL_COMPONENT)
|
|
99
|
+
file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/include" TYPE DIRECTORY FILES "C:/TeamCity/work/938b0bdf6727d1ad/thirdparty/range-v3/include/" FILES_MATCHING REGEX "/[^/]*$")
|
|
100
|
+
endif()
|
|
101
|
+
|
|
102
|
+
string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT
|
|
103
|
+
"${CMAKE_INSTALL_MANIFEST_FILES}")
|
|
104
|
+
if(CMAKE_INSTALL_LOCAL_ONLY)
|
|
105
|
+
file(WRITE "C:/TeamCity/work/938b0bdf6727d1ad/build/lib.win32-cpython-313/quasardb/range-v3/install_local_manifest.txt"
|
|
106
|
+
"${CMAKE_INSTALL_MANIFEST_CONTENT}")
|
|
107
|
+
endif()
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
/// \file
|
|
2
|
+
// Range v3 library
|
|
3
|
+
//
|
|
4
|
+
// Copyright Eric Niebler 2017-present
|
|
5
|
+
//
|
|
6
|
+
// Use, modification and distribution is subject to the
|
|
7
|
+
// Boost Software License, Version 1.0. (See accompanying
|
|
8
|
+
// file LICENSE_1_0.txt or copy at
|
|
9
|
+
// http://www.boost.org/LICENSE_1_0.txt)
|
|
10
|
+
//
|
|
11
|
+
// Project home: https://github.com/ericniebler/range-v3
|
|
12
|
+
//
|
|
13
|
+
|
|
14
|
+
#ifndef RANGES_V3_VERSION_HPP
|
|
15
|
+
#define RANGES_V3_VERSION_HPP
|
|
16
|
+
|
|
17
|
+
#define RANGE_V3_MAJOR 0
|
|
18
|
+
#define RANGE_V3_MINOR 11
|
|
19
|
+
#define RANGE_V3_PATCHLEVEL 0
|
|
20
|
+
|
|
21
|
+
#define RANGE_V3_VERSION \
|
|
22
|
+
(RANGE_V3_MAJOR * 10000 + RANGE_V3_MINOR * 100 + RANGE_V3_PATCHLEVEL)
|
|
23
|
+
|
|
24
|
+
#endif
|