quasardb 3.14.2.dev4__cp313-cp313-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.
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-win_amd64.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
quasardb/pool.py
ADDED
|
@@ -0,0 +1,294 @@
|
|
|
1
|
+
import logging
|
|
2
|
+
import quasardb
|
|
3
|
+
import threading
|
|
4
|
+
import functools
|
|
5
|
+
import weakref
|
|
6
|
+
|
|
7
|
+
logger = logging.getLogger('quasardb.pool')
|
|
8
|
+
|
|
9
|
+
def _create_conn(**kwargs):
|
|
10
|
+
return quasardb.Cluster(**kwargs)
|
|
11
|
+
|
|
12
|
+
class SessionWrapper(object):
|
|
13
|
+
def __init__(self, pool, conn):
|
|
14
|
+
self._conn = conn
|
|
15
|
+
self._pool = pool
|
|
16
|
+
|
|
17
|
+
def __getattr__(self, attr):
|
|
18
|
+
# This hack copies all the quasardb.Cluster() properties, functions and
|
|
19
|
+
# whatnot, and pretends that this class is actually a quasardb.Cluster.
|
|
20
|
+
#
|
|
21
|
+
# The background is that when someone does this:
|
|
22
|
+
#
|
|
23
|
+
# with pool.connect() as conn:
|
|
24
|
+
# ...
|
|
25
|
+
#
|
|
26
|
+
# we don't want the the connection to be closed near the end, but rather
|
|
27
|
+
# released back onto the pool.
|
|
28
|
+
#
|
|
29
|
+
# Now, my initial approach was to build a pool.Session class which inherited
|
|
30
|
+
# from quasardb.Cluster, and just overload the __exit__ function there. But,
|
|
31
|
+
# we want people to have the flexibility to pass in an external `get_conn` callback
|
|
32
|
+
# in the pool, which establishes a connection, because they may have to look up
|
|
33
|
+
# some dynamic security tokens. This function should then, in turn, return a vanilla
|
|
34
|
+
# quasardb.Cluster() object.
|
|
35
|
+
#
|
|
36
|
+
# And this is why we end up with the solution below.
|
|
37
|
+
if attr in self.__dict__:
|
|
38
|
+
return getattr(self, attr)
|
|
39
|
+
|
|
40
|
+
return getattr(self._conn, attr)
|
|
41
|
+
|
|
42
|
+
def __enter__(self):
|
|
43
|
+
return self
|
|
44
|
+
|
|
45
|
+
def __exit__(self, exc_type, exc_val, exc_tb):
|
|
46
|
+
self._pool.release(self._conn)
|
|
47
|
+
|
|
48
|
+
class Pool(object):
|
|
49
|
+
"""
|
|
50
|
+
A connection pool. This class should not be initialized directly, but
|
|
51
|
+
rather the subclass `SingletonPool` should be initialized.
|
|
52
|
+
|
|
53
|
+
The constructor either accepts all regular `quasardb.Cluster()` connection parameters,
|
|
54
|
+
or a `get_conn` parameter which is invoked any time a new connection should be
|
|
55
|
+
created.
|
|
56
|
+
|
|
57
|
+
Example usage:
|
|
58
|
+
--------------
|
|
59
|
+
|
|
60
|
+
Initialize the pool by passthrough of `quasardb.Cluster()` arguments:
|
|
61
|
+
```
|
|
62
|
+
import quasardb.pool as pool
|
|
63
|
+
|
|
64
|
+
pool.SingletonPool(uri='qdb://127.0.0.1:2836',
|
|
65
|
+
cluster_public_key='...',
|
|
66
|
+
user_private_key='...',
|
|
67
|
+
user_name='...')
|
|
68
|
+
```
|
|
69
|
+
|
|
70
|
+
Initialize pool by providing a callback function
|
|
71
|
+
```
|
|
72
|
+
import quasardb
|
|
73
|
+
import quasardb.pool as pool
|
|
74
|
+
|
|
75
|
+
def my_qdb_connection_create():
|
|
76
|
+
# This function is invoked any time the pool needs to allocate
|
|
77
|
+
# a new connection.
|
|
78
|
+
return quasardb.Cluster(uri='qdb://127.0.0.1:2836',
|
|
79
|
+
cluster_public_key='...',
|
|
80
|
+
user_private_key='...',
|
|
81
|
+
user_name='...')
|
|
82
|
+
|
|
83
|
+
pool.SingletonPool(get_conn=my_qdb_connection_create)
|
|
84
|
+
```
|
|
85
|
+
|
|
86
|
+
"""
|
|
87
|
+
|
|
88
|
+
def __init__(self, get_conn=None, **kwargs):
|
|
89
|
+
self._all_connections = []
|
|
90
|
+
|
|
91
|
+
if get_conn is None:
|
|
92
|
+
get_conn = functools.partial(_create_conn, **kwargs)
|
|
93
|
+
|
|
94
|
+
if not callable(get_conn):
|
|
95
|
+
raise TypeError("get_conn must be callable")
|
|
96
|
+
|
|
97
|
+
self._get_conn = get_conn
|
|
98
|
+
|
|
99
|
+
def __enter__(self):
|
|
100
|
+
return self
|
|
101
|
+
|
|
102
|
+
def __exit__(self, exc_type, exc_val, exc_tb):
|
|
103
|
+
self.close()
|
|
104
|
+
|
|
105
|
+
def _create_conn(self):
|
|
106
|
+
return SessionWrapper(self, self._get_conn())
|
|
107
|
+
|
|
108
|
+
def close(self):
|
|
109
|
+
"""
|
|
110
|
+
Close this connection pool, and all associated connections. This function
|
|
111
|
+
is automatically invoked when used in a with-block or when using the global
|
|
112
|
+
`instance()` singleton.
|
|
113
|
+
"""
|
|
114
|
+
for conn in self._all_connections:
|
|
115
|
+
logger.debug("closing connection {}".format(conn))
|
|
116
|
+
conn.close()
|
|
117
|
+
|
|
118
|
+
def connect(self) -> quasardb.Cluster:
|
|
119
|
+
"""
|
|
120
|
+
Acquire a new connection from the pool. Returned connection must either
|
|
121
|
+
be explicitly released using `pool.release()`, or should be wrapped in a
|
|
122
|
+
with-block.
|
|
123
|
+
|
|
124
|
+
Returns:
|
|
125
|
+
--------
|
|
126
|
+
`quasardb.Cluster`
|
|
127
|
+
"""
|
|
128
|
+
logger.info("Acquiring connection from pool")
|
|
129
|
+
return self._do_connect()
|
|
130
|
+
|
|
131
|
+
def release(self, conn: quasardb.Cluster):
|
|
132
|
+
"""
|
|
133
|
+
Put a connection back into the pool
|
|
134
|
+
"""
|
|
135
|
+
logger.info("Putting connection back onto pool")
|
|
136
|
+
return self._do_release(conn)
|
|
137
|
+
|
|
138
|
+
class SingletonPool(Pool):
|
|
139
|
+
"""
|
|
140
|
+
Implementation of our connection pool that maintains just a single connection
|
|
141
|
+
per thread.
|
|
142
|
+
|
|
143
|
+
Example usage:
|
|
144
|
+
--------
|
|
145
|
+
|
|
146
|
+
Using pool.connect() in a with-block:
|
|
147
|
+
```
|
|
148
|
+
import quasardb.pool as pool
|
|
149
|
+
|
|
150
|
+
with pool.Pool(uri='qdb://127.0.0.1:2836') as pool:
|
|
151
|
+
with pool.connect() as conn:
|
|
152
|
+
conn.query(...)
|
|
153
|
+
```
|
|
154
|
+
|
|
155
|
+
Explicitly releasing the connection using `Pool.release()`:
|
|
156
|
+
```
|
|
157
|
+
import quasardb.pool as pool
|
|
158
|
+
|
|
159
|
+
with pool.Pool(uri='qdb://127.0.0.1:2836') as pool:
|
|
160
|
+
conn = pool.connect()
|
|
161
|
+
try:
|
|
162
|
+
conn.query(...)
|
|
163
|
+
finally:
|
|
164
|
+
pool.release(conn)
|
|
165
|
+
```
|
|
166
|
+
"""
|
|
167
|
+
|
|
168
|
+
def __init__(self, **kwargs):
|
|
169
|
+
Pool.__init__(self, **kwargs)
|
|
170
|
+
self._conn = threading.local()
|
|
171
|
+
|
|
172
|
+
def _do_connect(self):
|
|
173
|
+
try:
|
|
174
|
+
c = self._conn.current()
|
|
175
|
+
if c:
|
|
176
|
+
return c
|
|
177
|
+
except AttributeError:
|
|
178
|
+
pass
|
|
179
|
+
|
|
180
|
+
c = self._create_conn()
|
|
181
|
+
self._conn.current = weakref.ref(c)
|
|
182
|
+
self._all_connections.append(c)
|
|
183
|
+
|
|
184
|
+
return c
|
|
185
|
+
|
|
186
|
+
def _do_release(self, conn):
|
|
187
|
+
# Thread-local connections do not have to be 'released'.
|
|
188
|
+
pass
|
|
189
|
+
|
|
190
|
+
|
|
191
|
+
__instance = None
|
|
192
|
+
|
|
193
|
+
def initialize(*args, **kwargs):
|
|
194
|
+
"""
|
|
195
|
+
Initialize a new global SingletonPool. Forwards all arguments to the constructor of
|
|
196
|
+
`SingletonPool()`.
|
|
197
|
+
|
|
198
|
+
After initialization, the instance can be used by invoking `instance()`.
|
|
199
|
+
|
|
200
|
+
Example usage:
|
|
201
|
+
--------------
|
|
202
|
+
|
|
203
|
+
```
|
|
204
|
+
import quasardb.pool as pool
|
|
205
|
+
|
|
206
|
+
pool.initialize(cluster='qdb://127.0.0.1:2836')
|
|
207
|
+
|
|
208
|
+
# ...
|
|
209
|
+
|
|
210
|
+
def myfunction()
|
|
211
|
+
with pool.instance().connect() as conn:
|
|
212
|
+
conn.query(...)
|
|
213
|
+
```
|
|
214
|
+
"""
|
|
215
|
+
global __instance
|
|
216
|
+
__instance = SingletonPool(*args, **kwargs)
|
|
217
|
+
|
|
218
|
+
def instance() -> SingletonPool:
|
|
219
|
+
"""
|
|
220
|
+
Singleton accessor. Instance must have been initialized using initialize()
|
|
221
|
+
prior to invoking this function.
|
|
222
|
+
|
|
223
|
+
Returns:
|
|
224
|
+
--------
|
|
225
|
+
`SingletonPool`
|
|
226
|
+
|
|
227
|
+
"""
|
|
228
|
+
global __instance
|
|
229
|
+
assert __instance is not None, "Global connection pool uninitialized: please initialize by calling the initialize() function."
|
|
230
|
+
return __instance
|
|
231
|
+
|
|
232
|
+
def _inject_conn_arg(conn, arg, args, kwargs):
|
|
233
|
+
"""
|
|
234
|
+
Decorator utility function. Takes the argument provided to the decorator
|
|
235
|
+
that configures how we should inject the pool into the args to the callback
|
|
236
|
+
function, and injects it in the correct place.
|
|
237
|
+
"""
|
|
238
|
+
if isinstance(arg, int):
|
|
239
|
+
# Invoked positional such as `@with_pool(arg=1)`, put the pool into the
|
|
240
|
+
# correct position.
|
|
241
|
+
#
|
|
242
|
+
# Because positional args are always a tuple, and tuples don't have an
|
|
243
|
+
# easy 'insert into position' function, we just cast to and from a list.
|
|
244
|
+
args = list(args)
|
|
245
|
+
args.insert(arg, conn)
|
|
246
|
+
args = tuple(args)
|
|
247
|
+
else:
|
|
248
|
+
assert isinstance(arg, str) == True
|
|
249
|
+
# If not a number, we assume it's a kwarg, which makes things easier
|
|
250
|
+
kwargs[arg] = conn
|
|
251
|
+
|
|
252
|
+
return (args, kwargs)
|
|
253
|
+
|
|
254
|
+
def with_conn(_fn=None, *, arg=0):
|
|
255
|
+
"""
|
|
256
|
+
Decorator function that handles connection assignment, release and invocation for you.
|
|
257
|
+
Should be used in conjuction with the global singleton accessor, see also: `initialize()`.
|
|
258
|
+
|
|
259
|
+
By default, the decorator function injects the connection as the first argument to the
|
|
260
|
+
function:
|
|
261
|
+
```
|
|
262
|
+
import quasardb.pool as pool
|
|
263
|
+
pool.initialize(...)
|
|
264
|
+
|
|
265
|
+
@pool.with_conn()
|
|
266
|
+
def myfunction(conn, arg1, arg2):
|
|
267
|
+
conn.query(...)
|
|
268
|
+
```
|
|
269
|
+
|
|
270
|
+
You can optionally provide an `arg` parameter to denote which named keyword to provide
|
|
271
|
+
it as:
|
|
272
|
+
```
|
|
273
|
+
import quasardb.pool as pool
|
|
274
|
+
pool.initialize(...)
|
|
275
|
+
|
|
276
|
+
@pool.with_conn(arg='conn')
|
|
277
|
+
def myfunction(arg1, arg2, conn=None):
|
|
278
|
+
conn.query(...)
|
|
279
|
+
```
|
|
280
|
+
"""
|
|
281
|
+
def inner(fn):
|
|
282
|
+
def wrapper(*args, **kwargs):
|
|
283
|
+
pool = instance()
|
|
284
|
+
|
|
285
|
+
with pool.connect() as conn:
|
|
286
|
+
(args, kwargs) = _inject_conn_arg(conn, arg, args, kwargs)
|
|
287
|
+
return fn(*args, **kwargs)
|
|
288
|
+
|
|
289
|
+
return wrapper
|
|
290
|
+
|
|
291
|
+
if _fn is None:
|
|
292
|
+
return inner
|
|
293
|
+
else:
|
|
294
|
+
return inner(_fn)
|
|
@@ -0,0 +1,181 @@
|
|
|
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
|
+
<PropertyGroup>
|
|
7
|
+
<ResolveNugetPackages>false</ResolveNugetPackages>
|
|
8
|
+
</PropertyGroup>
|
|
9
|
+
<ItemGroup Label="ProjectConfigurations">
|
|
10
|
+
<ProjectConfiguration Include="Debug|x64">
|
|
11
|
+
<Configuration>Debug</Configuration>
|
|
12
|
+
<Platform>x64</Platform>
|
|
13
|
+
</ProjectConfiguration>
|
|
14
|
+
<ProjectConfiguration Include="Release|x64">
|
|
15
|
+
<Configuration>Release</Configuration>
|
|
16
|
+
<Platform>x64</Platform>
|
|
17
|
+
</ProjectConfiguration>
|
|
18
|
+
<ProjectConfiguration Include="MinSizeRel|x64">
|
|
19
|
+
<Configuration>MinSizeRel</Configuration>
|
|
20
|
+
<Platform>x64</Platform>
|
|
21
|
+
</ProjectConfiguration>
|
|
22
|
+
<ProjectConfiguration Include="RelWithDebInfo|x64">
|
|
23
|
+
<Configuration>RelWithDebInfo</Configuration>
|
|
24
|
+
<Platform>x64</Platform>
|
|
25
|
+
</ProjectConfiguration>
|
|
26
|
+
</ItemGroup>
|
|
27
|
+
<PropertyGroup Label="Globals">
|
|
28
|
+
<ProjectGuid>{DBFCE00D-F9D1-3040-9DC0-F546CDDC3D20}</ProjectGuid>
|
|
29
|
+
<Keyword>Win32Proj</Keyword>
|
|
30
|
+
<WindowsTargetPlatformVersion>10.0.20348.0</WindowsTargetPlatformVersion>
|
|
31
|
+
<Platform>x64</Platform>
|
|
32
|
+
<ProjectName>ALL_BUILD</ProjectName>
|
|
33
|
+
<VCProjectUpgraderObjectName>NoUpgrade</VCProjectUpgraderObjectName>
|
|
34
|
+
</PropertyGroup>
|
|
35
|
+
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
|
36
|
+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
|
|
37
|
+
<ConfigurationType>Utility</ConfigurationType>
|
|
38
|
+
<CharacterSet>MultiByte</CharacterSet>
|
|
39
|
+
<PlatformToolset>v143</PlatformToolset>
|
|
40
|
+
</PropertyGroup>
|
|
41
|
+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
|
|
42
|
+
<ConfigurationType>Utility</ConfigurationType>
|
|
43
|
+
<CharacterSet>MultiByte</CharacterSet>
|
|
44
|
+
<PlatformToolset>v143</PlatformToolset>
|
|
45
|
+
</PropertyGroup>
|
|
46
|
+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='MinSizeRel|x64'" Label="Configuration">
|
|
47
|
+
<ConfigurationType>Utility</ConfigurationType>
|
|
48
|
+
<CharacterSet>MultiByte</CharacterSet>
|
|
49
|
+
<PlatformToolset>v143</PlatformToolset>
|
|
50
|
+
</PropertyGroup>
|
|
51
|
+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='RelWithDebInfo|x64'" Label="Configuration">
|
|
52
|
+
<ConfigurationType>Utility</ConfigurationType>
|
|
53
|
+
<CharacterSet>MultiByte</CharacterSet>
|
|
54
|
+
<PlatformToolset>v143</PlatformToolset>
|
|
55
|
+
</PropertyGroup>
|
|
56
|
+
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
|
57
|
+
<ImportGroup Label="ExtensionSettings">
|
|
58
|
+
</ImportGroup>
|
|
59
|
+
<ImportGroup Label="PropertySheets">
|
|
60
|
+
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
|
61
|
+
</ImportGroup>
|
|
62
|
+
<PropertyGroup Label="UserMacros" />
|
|
63
|
+
<PropertyGroup>
|
|
64
|
+
<_ProjectFileVersion>10.0.20506.1</_ProjectFileVersion>
|
|
65
|
+
<IntDir Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">$(Platform)\$(Configuration)\$(ProjectName)\</IntDir>
|
|
66
|
+
<IntDir Condition="'$(Configuration)|$(Platform)'=='Release|x64'">$(Platform)\$(Configuration)\$(ProjectName)\</IntDir>
|
|
67
|
+
<IntDir Condition="'$(Configuration)|$(Platform)'=='MinSizeRel|x64'">$(Platform)\$(Configuration)\$(ProjectName)\</IntDir>
|
|
68
|
+
<IntDir Condition="'$(Configuration)|$(Platform)'=='RelWithDebInfo|x64'">$(Platform)\$(Configuration)\$(ProjectName)\</IntDir>
|
|
69
|
+
</PropertyGroup>
|
|
70
|
+
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
|
71
|
+
<Midl>
|
|
72
|
+
<AdditionalIncludeDirectories>C:\TeamCity\work\938b0bdf6727d1ad\quasardb\..\qdb\include;C:\TeamCity\work\938b0bdf6727d1ad\quasardb\..\thirdparty\date\include;C:\TeamCity\work\938b0bdf6727d1ad\quasardb\..\thirdparty\range-v3\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
|
73
|
+
<OutputDirectory>$(ProjectDir)/$(IntDir)</OutputDirectory>
|
|
74
|
+
<HeaderFileName>%(Filename).h</HeaderFileName>
|
|
75
|
+
<TypeLibraryName>%(Filename).tlb</TypeLibraryName>
|
|
76
|
+
<InterfaceIdentifierFileName>%(Filename)_i.c</InterfaceIdentifierFileName>
|
|
77
|
+
<ProxyFileName>%(Filename)_p.c</ProxyFileName>
|
|
78
|
+
</Midl>
|
|
79
|
+
</ItemDefinitionGroup>
|
|
80
|
+
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
|
|
81
|
+
<Midl>
|
|
82
|
+
<AdditionalIncludeDirectories>C:\TeamCity\work\938b0bdf6727d1ad\quasardb\..\qdb\include;C:\TeamCity\work\938b0bdf6727d1ad\quasardb\..\thirdparty\date\include;C:\TeamCity\work\938b0bdf6727d1ad\quasardb\..\thirdparty\range-v3\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
|
83
|
+
<OutputDirectory>$(ProjectDir)/$(IntDir)</OutputDirectory>
|
|
84
|
+
<HeaderFileName>%(Filename).h</HeaderFileName>
|
|
85
|
+
<TypeLibraryName>%(Filename).tlb</TypeLibraryName>
|
|
86
|
+
<InterfaceIdentifierFileName>%(Filename)_i.c</InterfaceIdentifierFileName>
|
|
87
|
+
<ProxyFileName>%(Filename)_p.c</ProxyFileName>
|
|
88
|
+
</Midl>
|
|
89
|
+
</ItemDefinitionGroup>
|
|
90
|
+
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='MinSizeRel|x64'">
|
|
91
|
+
<Midl>
|
|
92
|
+
<AdditionalIncludeDirectories>C:\TeamCity\work\938b0bdf6727d1ad\quasardb\..\qdb\include;C:\TeamCity\work\938b0bdf6727d1ad\quasardb\..\thirdparty\date\include;C:\TeamCity\work\938b0bdf6727d1ad\quasardb\..\thirdparty\range-v3\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
|
93
|
+
<OutputDirectory>$(ProjectDir)/$(IntDir)</OutputDirectory>
|
|
94
|
+
<HeaderFileName>%(Filename).h</HeaderFileName>
|
|
95
|
+
<TypeLibraryName>%(Filename).tlb</TypeLibraryName>
|
|
96
|
+
<InterfaceIdentifierFileName>%(Filename)_i.c</InterfaceIdentifierFileName>
|
|
97
|
+
<ProxyFileName>%(Filename)_p.c</ProxyFileName>
|
|
98
|
+
</Midl>
|
|
99
|
+
</ItemDefinitionGroup>
|
|
100
|
+
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='RelWithDebInfo|x64'">
|
|
101
|
+
<Midl>
|
|
102
|
+
<AdditionalIncludeDirectories>C:\TeamCity\work\938b0bdf6727d1ad\quasardb\..\qdb\include;C:\TeamCity\work\938b0bdf6727d1ad\quasardb\..\thirdparty\date\include;C:\TeamCity\work\938b0bdf6727d1ad\quasardb\..\thirdparty\range-v3\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
|
103
|
+
<OutputDirectory>$(ProjectDir)/$(IntDir)</OutputDirectory>
|
|
104
|
+
<HeaderFileName>%(Filename).h</HeaderFileName>
|
|
105
|
+
<TypeLibraryName>%(Filename).tlb</TypeLibraryName>
|
|
106
|
+
<InterfaceIdentifierFileName>%(Filename)_i.c</InterfaceIdentifierFileName>
|
|
107
|
+
<ProxyFileName>%(Filename)_p.c</ProxyFileName>
|
|
108
|
+
</Midl>
|
|
109
|
+
</ItemDefinitionGroup>
|
|
110
|
+
<ItemGroup>
|
|
111
|
+
<CustomBuild Include="C:\TeamCity\work\938b0bdf6727d1ad\thirdparty\pybind11\CMakeLists.txt">
|
|
112
|
+
<UseUtf8Encoding>Always</UseUtf8Encoding>
|
|
113
|
+
<Message Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">Building Custom Rule C:/TeamCity/work/938b0bdf6727d1ad/thirdparty/pybind11/CMakeLists.txt</Message>
|
|
114
|
+
<Command Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">setlocal
|
|
115
|
+
C:\TeamCity\temp\buildTmp\build-env-sm6ds8_q\Lib\site-packages\cmake\data\bin\cmake.exe -SC:/TeamCity/work/938b0bdf6727d1ad/quasardb -BC:/TeamCity/work/938b0bdf6727d1ad/build/temp.win-amd64-cpython-313/Release --check-stamp-file C:/TeamCity/work/938b0bdf6727d1ad/build/lib.win-amd64-cpython-313/quasardb/pybind11/CMakeFiles/generate.stamp
|
|
116
|
+
if %errorlevel% neq 0 goto :cmEnd
|
|
117
|
+
:cmEnd
|
|
118
|
+
endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
|
|
119
|
+
:cmErrorLevel
|
|
120
|
+
exit /b %1
|
|
121
|
+
:cmDone
|
|
122
|
+
if %errorlevel% neq 0 goto :VCEnd</Command>
|
|
123
|
+
<AdditionalInputs Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">C:\TeamCity\temp\buildTmp\build-env-sm6ds8_q\Lib\site-packages\cmake\data\share\cmake-3.31\Modules\CMakeCheckCompilerFlagCommonPatterns.cmake;C:\TeamCity\temp\buildTmp\build-env-sm6ds8_q\Lib\site-packages\cmake\data\share\cmake-3.31\Modules\CMakeDependentOption.cmake;C:\TeamCity\temp\buildTmp\build-env-sm6ds8_q\Lib\site-packages\cmake\data\share\cmake-3.31\Modules\CMakePackageConfigHelpers.cmake;C:\TeamCity\temp\buildTmp\build-env-sm6ds8_q\Lib\site-packages\cmake\data\share\cmake-3.31\Modules\CMakeParseArguments.cmake;C:\TeamCity\temp\buildTmp\build-env-sm6ds8_q\Lib\site-packages\cmake\data\share\cmake-3.31\Modules\CheckCXXCompilerFlag.cmake;C:\TeamCity\temp\buildTmp\build-env-sm6ds8_q\Lib\site-packages\cmake\data\share\cmake-3.31\Modules\CheckCXXSourceCompiles.cmake;C:\TeamCity\temp\buildTmp\build-env-sm6ds8_q\Lib\site-packages\cmake\data\share\cmake-3.31\Modules\FindPackageHandleStandardArgs.cmake;C:\TeamCity\temp\buildTmp\build-env-sm6ds8_q\Lib\site-packages\cmake\data\share\cmake-3.31\Modules\FindPackageMessage.cmake;C:\TeamCity\temp\buildTmp\build-env-sm6ds8_q\Lib\site-packages\cmake\data\share\cmake-3.31\Modules\FindPythonInterp.cmake;C:\TeamCity\temp\buildTmp\build-env-sm6ds8_q\Lib\site-packages\cmake\data\share\cmake-3.31\Modules\GNUInstallDirs.cmake;C:\TeamCity\temp\buildTmp\build-env-sm6ds8_q\Lib\site-packages\cmake\data\share\cmake-3.31\Modules\Internal\CheckCompilerFlag.cmake;C:\TeamCity\temp\buildTmp\build-env-sm6ds8_q\Lib\site-packages\cmake\data\share\cmake-3.31\Modules\Internal\CheckFlagCommonConfig.cmake;C:\TeamCity\temp\buildTmp\build-env-sm6ds8_q\Lib\site-packages\cmake\data\share\cmake-3.31\Modules\Internal\CheckSourceCompiles.cmake;C:\TeamCity\temp\buildTmp\build-env-sm6ds8_q\Lib\site-packages\cmake\data\share\cmake-3.31\Modules\WriteBasicConfigVersionFile.cmake;C:\TeamCity\work\938b0bdf6727d1ad\thirdparty\pybind11\tools\FindPythonLibsNew.cmake;C:\TeamCity\work\938b0bdf6727d1ad\thirdparty\pybind11\tools\JoinPaths.cmake;C:\TeamCity\work\938b0bdf6727d1ad\thirdparty\pybind11\tools\pybind11Common.cmake;C:\TeamCity\work\938b0bdf6727d1ad\thirdparty\pybind11\tools\pybind11Tools.cmake;%(AdditionalInputs)</AdditionalInputs>
|
|
124
|
+
<Outputs Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">C:\TeamCity\work\938b0bdf6727d1ad\build\lib.win-amd64-cpython-313\quasardb\pybind11\CMakeFiles\generate.stamp</Outputs>
|
|
125
|
+
<LinkObjects Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">false</LinkObjects>
|
|
126
|
+
<Message Condition="'$(Configuration)|$(Platform)'=='Release|x64'">Building Custom Rule C:/TeamCity/work/938b0bdf6727d1ad/thirdparty/pybind11/CMakeLists.txt</Message>
|
|
127
|
+
<Command Condition="'$(Configuration)|$(Platform)'=='Release|x64'">setlocal
|
|
128
|
+
C:\TeamCity\temp\buildTmp\build-env-sm6ds8_q\Lib\site-packages\cmake\data\bin\cmake.exe -SC:/TeamCity/work/938b0bdf6727d1ad/quasardb -BC:/TeamCity/work/938b0bdf6727d1ad/build/temp.win-amd64-cpython-313/Release --check-stamp-file C:/TeamCity/work/938b0bdf6727d1ad/build/lib.win-amd64-cpython-313/quasardb/pybind11/CMakeFiles/generate.stamp
|
|
129
|
+
if %errorlevel% neq 0 goto :cmEnd
|
|
130
|
+
:cmEnd
|
|
131
|
+
endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
|
|
132
|
+
:cmErrorLevel
|
|
133
|
+
exit /b %1
|
|
134
|
+
:cmDone
|
|
135
|
+
if %errorlevel% neq 0 goto :VCEnd</Command>
|
|
136
|
+
<AdditionalInputs Condition="'$(Configuration)|$(Platform)'=='Release|x64'">C:\TeamCity\temp\buildTmp\build-env-sm6ds8_q\Lib\site-packages\cmake\data\share\cmake-3.31\Modules\CMakeCheckCompilerFlagCommonPatterns.cmake;C:\TeamCity\temp\buildTmp\build-env-sm6ds8_q\Lib\site-packages\cmake\data\share\cmake-3.31\Modules\CMakeDependentOption.cmake;C:\TeamCity\temp\buildTmp\build-env-sm6ds8_q\Lib\site-packages\cmake\data\share\cmake-3.31\Modules\CMakePackageConfigHelpers.cmake;C:\TeamCity\temp\buildTmp\build-env-sm6ds8_q\Lib\site-packages\cmake\data\share\cmake-3.31\Modules\CMakeParseArguments.cmake;C:\TeamCity\temp\buildTmp\build-env-sm6ds8_q\Lib\site-packages\cmake\data\share\cmake-3.31\Modules\CheckCXXCompilerFlag.cmake;C:\TeamCity\temp\buildTmp\build-env-sm6ds8_q\Lib\site-packages\cmake\data\share\cmake-3.31\Modules\CheckCXXSourceCompiles.cmake;C:\TeamCity\temp\buildTmp\build-env-sm6ds8_q\Lib\site-packages\cmake\data\share\cmake-3.31\Modules\FindPackageHandleStandardArgs.cmake;C:\TeamCity\temp\buildTmp\build-env-sm6ds8_q\Lib\site-packages\cmake\data\share\cmake-3.31\Modules\FindPackageMessage.cmake;C:\TeamCity\temp\buildTmp\build-env-sm6ds8_q\Lib\site-packages\cmake\data\share\cmake-3.31\Modules\FindPythonInterp.cmake;C:\TeamCity\temp\buildTmp\build-env-sm6ds8_q\Lib\site-packages\cmake\data\share\cmake-3.31\Modules\GNUInstallDirs.cmake;C:\TeamCity\temp\buildTmp\build-env-sm6ds8_q\Lib\site-packages\cmake\data\share\cmake-3.31\Modules\Internal\CheckCompilerFlag.cmake;C:\TeamCity\temp\buildTmp\build-env-sm6ds8_q\Lib\site-packages\cmake\data\share\cmake-3.31\Modules\Internal\CheckFlagCommonConfig.cmake;C:\TeamCity\temp\buildTmp\build-env-sm6ds8_q\Lib\site-packages\cmake\data\share\cmake-3.31\Modules\Internal\CheckSourceCompiles.cmake;C:\TeamCity\temp\buildTmp\build-env-sm6ds8_q\Lib\site-packages\cmake\data\share\cmake-3.31\Modules\WriteBasicConfigVersionFile.cmake;C:\TeamCity\work\938b0bdf6727d1ad\thirdparty\pybind11\tools\FindPythonLibsNew.cmake;C:\TeamCity\work\938b0bdf6727d1ad\thirdparty\pybind11\tools\JoinPaths.cmake;C:\TeamCity\work\938b0bdf6727d1ad\thirdparty\pybind11\tools\pybind11Common.cmake;C:\TeamCity\work\938b0bdf6727d1ad\thirdparty\pybind11\tools\pybind11Tools.cmake;%(AdditionalInputs)</AdditionalInputs>
|
|
137
|
+
<Outputs Condition="'$(Configuration)|$(Platform)'=='Release|x64'">C:\TeamCity\work\938b0bdf6727d1ad\build\lib.win-amd64-cpython-313\quasardb\pybind11\CMakeFiles\generate.stamp</Outputs>
|
|
138
|
+
<LinkObjects Condition="'$(Configuration)|$(Platform)'=='Release|x64'">false</LinkObjects>
|
|
139
|
+
<Message Condition="'$(Configuration)|$(Platform)'=='MinSizeRel|x64'">Building Custom Rule C:/TeamCity/work/938b0bdf6727d1ad/thirdparty/pybind11/CMakeLists.txt</Message>
|
|
140
|
+
<Command Condition="'$(Configuration)|$(Platform)'=='MinSizeRel|x64'">setlocal
|
|
141
|
+
C:\TeamCity\temp\buildTmp\build-env-sm6ds8_q\Lib\site-packages\cmake\data\bin\cmake.exe -SC:/TeamCity/work/938b0bdf6727d1ad/quasardb -BC:/TeamCity/work/938b0bdf6727d1ad/build/temp.win-amd64-cpython-313/Release --check-stamp-file C:/TeamCity/work/938b0bdf6727d1ad/build/lib.win-amd64-cpython-313/quasardb/pybind11/CMakeFiles/generate.stamp
|
|
142
|
+
if %errorlevel% neq 0 goto :cmEnd
|
|
143
|
+
:cmEnd
|
|
144
|
+
endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
|
|
145
|
+
:cmErrorLevel
|
|
146
|
+
exit /b %1
|
|
147
|
+
:cmDone
|
|
148
|
+
if %errorlevel% neq 0 goto :VCEnd</Command>
|
|
149
|
+
<AdditionalInputs Condition="'$(Configuration)|$(Platform)'=='MinSizeRel|x64'">C:\TeamCity\temp\buildTmp\build-env-sm6ds8_q\Lib\site-packages\cmake\data\share\cmake-3.31\Modules\CMakeCheckCompilerFlagCommonPatterns.cmake;C:\TeamCity\temp\buildTmp\build-env-sm6ds8_q\Lib\site-packages\cmake\data\share\cmake-3.31\Modules\CMakeDependentOption.cmake;C:\TeamCity\temp\buildTmp\build-env-sm6ds8_q\Lib\site-packages\cmake\data\share\cmake-3.31\Modules\CMakePackageConfigHelpers.cmake;C:\TeamCity\temp\buildTmp\build-env-sm6ds8_q\Lib\site-packages\cmake\data\share\cmake-3.31\Modules\CMakeParseArguments.cmake;C:\TeamCity\temp\buildTmp\build-env-sm6ds8_q\Lib\site-packages\cmake\data\share\cmake-3.31\Modules\CheckCXXCompilerFlag.cmake;C:\TeamCity\temp\buildTmp\build-env-sm6ds8_q\Lib\site-packages\cmake\data\share\cmake-3.31\Modules\CheckCXXSourceCompiles.cmake;C:\TeamCity\temp\buildTmp\build-env-sm6ds8_q\Lib\site-packages\cmake\data\share\cmake-3.31\Modules\FindPackageHandleStandardArgs.cmake;C:\TeamCity\temp\buildTmp\build-env-sm6ds8_q\Lib\site-packages\cmake\data\share\cmake-3.31\Modules\FindPackageMessage.cmake;C:\TeamCity\temp\buildTmp\build-env-sm6ds8_q\Lib\site-packages\cmake\data\share\cmake-3.31\Modules\FindPythonInterp.cmake;C:\TeamCity\temp\buildTmp\build-env-sm6ds8_q\Lib\site-packages\cmake\data\share\cmake-3.31\Modules\GNUInstallDirs.cmake;C:\TeamCity\temp\buildTmp\build-env-sm6ds8_q\Lib\site-packages\cmake\data\share\cmake-3.31\Modules\Internal\CheckCompilerFlag.cmake;C:\TeamCity\temp\buildTmp\build-env-sm6ds8_q\Lib\site-packages\cmake\data\share\cmake-3.31\Modules\Internal\CheckFlagCommonConfig.cmake;C:\TeamCity\temp\buildTmp\build-env-sm6ds8_q\Lib\site-packages\cmake\data\share\cmake-3.31\Modules\Internal\CheckSourceCompiles.cmake;C:\TeamCity\temp\buildTmp\build-env-sm6ds8_q\Lib\site-packages\cmake\data\share\cmake-3.31\Modules\WriteBasicConfigVersionFile.cmake;C:\TeamCity\work\938b0bdf6727d1ad\thirdparty\pybind11\tools\FindPythonLibsNew.cmake;C:\TeamCity\work\938b0bdf6727d1ad\thirdparty\pybind11\tools\JoinPaths.cmake;C:\TeamCity\work\938b0bdf6727d1ad\thirdparty\pybind11\tools\pybind11Common.cmake;C:\TeamCity\work\938b0bdf6727d1ad\thirdparty\pybind11\tools\pybind11Tools.cmake;%(AdditionalInputs)</AdditionalInputs>
|
|
150
|
+
<Outputs Condition="'$(Configuration)|$(Platform)'=='MinSizeRel|x64'">C:\TeamCity\work\938b0bdf6727d1ad\build\lib.win-amd64-cpython-313\quasardb\pybind11\CMakeFiles\generate.stamp</Outputs>
|
|
151
|
+
<LinkObjects Condition="'$(Configuration)|$(Platform)'=='MinSizeRel|x64'">false</LinkObjects>
|
|
152
|
+
<Message Condition="'$(Configuration)|$(Platform)'=='RelWithDebInfo|x64'">Building Custom Rule C:/TeamCity/work/938b0bdf6727d1ad/thirdparty/pybind11/CMakeLists.txt</Message>
|
|
153
|
+
<Command Condition="'$(Configuration)|$(Platform)'=='RelWithDebInfo|x64'">setlocal
|
|
154
|
+
C:\TeamCity\temp\buildTmp\build-env-sm6ds8_q\Lib\site-packages\cmake\data\bin\cmake.exe -SC:/TeamCity/work/938b0bdf6727d1ad/quasardb -BC:/TeamCity/work/938b0bdf6727d1ad/build/temp.win-amd64-cpython-313/Release --check-stamp-file C:/TeamCity/work/938b0bdf6727d1ad/build/lib.win-amd64-cpython-313/quasardb/pybind11/CMakeFiles/generate.stamp
|
|
155
|
+
if %errorlevel% neq 0 goto :cmEnd
|
|
156
|
+
:cmEnd
|
|
157
|
+
endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
|
|
158
|
+
:cmErrorLevel
|
|
159
|
+
exit /b %1
|
|
160
|
+
:cmDone
|
|
161
|
+
if %errorlevel% neq 0 goto :VCEnd</Command>
|
|
162
|
+
<AdditionalInputs Condition="'$(Configuration)|$(Platform)'=='RelWithDebInfo|x64'">C:\TeamCity\temp\buildTmp\build-env-sm6ds8_q\Lib\site-packages\cmake\data\share\cmake-3.31\Modules\CMakeCheckCompilerFlagCommonPatterns.cmake;C:\TeamCity\temp\buildTmp\build-env-sm6ds8_q\Lib\site-packages\cmake\data\share\cmake-3.31\Modules\CMakeDependentOption.cmake;C:\TeamCity\temp\buildTmp\build-env-sm6ds8_q\Lib\site-packages\cmake\data\share\cmake-3.31\Modules\CMakePackageConfigHelpers.cmake;C:\TeamCity\temp\buildTmp\build-env-sm6ds8_q\Lib\site-packages\cmake\data\share\cmake-3.31\Modules\CMakeParseArguments.cmake;C:\TeamCity\temp\buildTmp\build-env-sm6ds8_q\Lib\site-packages\cmake\data\share\cmake-3.31\Modules\CheckCXXCompilerFlag.cmake;C:\TeamCity\temp\buildTmp\build-env-sm6ds8_q\Lib\site-packages\cmake\data\share\cmake-3.31\Modules\CheckCXXSourceCompiles.cmake;C:\TeamCity\temp\buildTmp\build-env-sm6ds8_q\Lib\site-packages\cmake\data\share\cmake-3.31\Modules\FindPackageHandleStandardArgs.cmake;C:\TeamCity\temp\buildTmp\build-env-sm6ds8_q\Lib\site-packages\cmake\data\share\cmake-3.31\Modules\FindPackageMessage.cmake;C:\TeamCity\temp\buildTmp\build-env-sm6ds8_q\Lib\site-packages\cmake\data\share\cmake-3.31\Modules\FindPythonInterp.cmake;C:\TeamCity\temp\buildTmp\build-env-sm6ds8_q\Lib\site-packages\cmake\data\share\cmake-3.31\Modules\GNUInstallDirs.cmake;C:\TeamCity\temp\buildTmp\build-env-sm6ds8_q\Lib\site-packages\cmake\data\share\cmake-3.31\Modules\Internal\CheckCompilerFlag.cmake;C:\TeamCity\temp\buildTmp\build-env-sm6ds8_q\Lib\site-packages\cmake\data\share\cmake-3.31\Modules\Internal\CheckFlagCommonConfig.cmake;C:\TeamCity\temp\buildTmp\build-env-sm6ds8_q\Lib\site-packages\cmake\data\share\cmake-3.31\Modules\Internal\CheckSourceCompiles.cmake;C:\TeamCity\temp\buildTmp\build-env-sm6ds8_q\Lib\site-packages\cmake\data\share\cmake-3.31\Modules\WriteBasicConfigVersionFile.cmake;C:\TeamCity\work\938b0bdf6727d1ad\thirdparty\pybind11\tools\FindPythonLibsNew.cmake;C:\TeamCity\work\938b0bdf6727d1ad\thirdparty\pybind11\tools\JoinPaths.cmake;C:\TeamCity\work\938b0bdf6727d1ad\thirdparty\pybind11\tools\pybind11Common.cmake;C:\TeamCity\work\938b0bdf6727d1ad\thirdparty\pybind11\tools\pybind11Tools.cmake;%(AdditionalInputs)</AdditionalInputs>
|
|
163
|
+
<Outputs Condition="'$(Configuration)|$(Platform)'=='RelWithDebInfo|x64'">C:\TeamCity\work\938b0bdf6727d1ad\build\lib.win-amd64-cpython-313\quasardb\pybind11\CMakeFiles\generate.stamp</Outputs>
|
|
164
|
+
<LinkObjects Condition="'$(Configuration)|$(Platform)'=='RelWithDebInfo|x64'">false</LinkObjects>
|
|
165
|
+
</CustomBuild>
|
|
166
|
+
</ItemGroup>
|
|
167
|
+
<ItemGroup>
|
|
168
|
+
</ItemGroup>
|
|
169
|
+
<ItemGroup />
|
|
170
|
+
<ItemGroup>
|
|
171
|
+
<ProjectReference Include="C:\TeamCity\work\938b0bdf6727d1ad\build\temp.win-amd64-cpython-313\Release\ZERO_CHECK.vcxproj">
|
|
172
|
+
<Project>{DCDD4C7B-49CB-3251-AE6D-94B94E787D36}</Project>
|
|
173
|
+
<Name>ZERO_CHECK</Name>
|
|
174
|
+
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
|
175
|
+
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
|
|
176
|
+
</ProjectReference>
|
|
177
|
+
</ItemGroup>
|
|
178
|
+
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
|
179
|
+
<ImportGroup Label="ExtensionTargets">
|
|
180
|
+
</ImportGroup>
|
|
181
|
+
</Project>
|
|
@@ -0,0 +1,8 @@
|
|
|
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\thirdparty\pybind11\CMakeLists.txt" />
|
|
5
|
+
</ItemGroup>
|
|
6
|
+
<ItemGroup>
|
|
7
|
+
</ItemGroup>
|
|
8
|
+
</Project>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
# CMake generation timestamp file for this directory.
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
# CMake generation dependency list for this directory.
|
|
2
|
+
C:/TeamCity/temp/buildTmp/build-env-sm6ds8_q/Lib/site-packages/cmake/data/share/cmake-3.31/Modules/CMakeCheckCompilerFlagCommonPatterns.cmake
|
|
3
|
+
C:/TeamCity/temp/buildTmp/build-env-sm6ds8_q/Lib/site-packages/cmake/data/share/cmake-3.31/Modules/CMakeDependentOption.cmake
|
|
4
|
+
C:/TeamCity/temp/buildTmp/build-env-sm6ds8_q/Lib/site-packages/cmake/data/share/cmake-3.31/Modules/CMakePackageConfigHelpers.cmake
|
|
5
|
+
C:/TeamCity/temp/buildTmp/build-env-sm6ds8_q/Lib/site-packages/cmake/data/share/cmake-3.31/Modules/CMakeParseArguments.cmake
|
|
6
|
+
C:/TeamCity/temp/buildTmp/build-env-sm6ds8_q/Lib/site-packages/cmake/data/share/cmake-3.31/Modules/CheckCXXCompilerFlag.cmake
|
|
7
|
+
C:/TeamCity/temp/buildTmp/build-env-sm6ds8_q/Lib/site-packages/cmake/data/share/cmake-3.31/Modules/CheckCXXSourceCompiles.cmake
|
|
8
|
+
C:/TeamCity/temp/buildTmp/build-env-sm6ds8_q/Lib/site-packages/cmake/data/share/cmake-3.31/Modules/FindPackageHandleStandardArgs.cmake
|
|
9
|
+
C:/TeamCity/temp/buildTmp/build-env-sm6ds8_q/Lib/site-packages/cmake/data/share/cmake-3.31/Modules/FindPackageMessage.cmake
|
|
10
|
+
C:/TeamCity/temp/buildTmp/build-env-sm6ds8_q/Lib/site-packages/cmake/data/share/cmake-3.31/Modules/FindPythonInterp.cmake
|
|
11
|
+
C:/TeamCity/temp/buildTmp/build-env-sm6ds8_q/Lib/site-packages/cmake/data/share/cmake-3.31/Modules/GNUInstallDirs.cmake
|
|
12
|
+
C:/TeamCity/temp/buildTmp/build-env-sm6ds8_q/Lib/site-packages/cmake/data/share/cmake-3.31/Modules/Internal/CheckCompilerFlag.cmake
|
|
13
|
+
C:/TeamCity/temp/buildTmp/build-env-sm6ds8_q/Lib/site-packages/cmake/data/share/cmake-3.31/Modules/Internal/CheckFlagCommonConfig.cmake
|
|
14
|
+
C:/TeamCity/temp/buildTmp/build-env-sm6ds8_q/Lib/site-packages/cmake/data/share/cmake-3.31/Modules/Internal/CheckSourceCompiles.cmake
|
|
15
|
+
C:/TeamCity/temp/buildTmp/build-env-sm6ds8_q/Lib/site-packages/cmake/data/share/cmake-3.31/Modules/WriteBasicConfigVersionFile.cmake
|
|
16
|
+
C:/TeamCity/work/938b0bdf6727d1ad/thirdparty/pybind11/CMakeLists.txt
|
|
17
|
+
C:/TeamCity/work/938b0bdf6727d1ad/thirdparty/pybind11/tools/FindPythonLibsNew.cmake
|
|
18
|
+
C:/TeamCity/work/938b0bdf6727d1ad/thirdparty/pybind11/tools/JoinPaths.cmake
|
|
19
|
+
C:/TeamCity/work/938b0bdf6727d1ad/thirdparty/pybind11/tools/pybind11Common.cmake
|
|
20
|
+
C:/TeamCity/work/938b0bdf6727d1ad/thirdparty/pybind11/tools/pybind11Tools.cmake
|