SQLite

Check-in [3bf97c811a]
Login

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Overview
Comment:Preliminary changes to support building VSIX packages for Windows 8.0 and Windows Phone 8.0 using Visual Studio 2013.
Downloads: Tarball | ZIP archive
Timelines: family | ancestors | descendants | both | vsixWinPhone81
Files: files | file ages | folders
SHA1: 3bf97c811a25babf760f256245c756ed6710f8ba
User & Date: mistachkin 2014-04-21 18:00:11.146
Context
2014-05-05
17:49
Merge updates from trunk. (check-in: 6f07f20e41 user: mistachkin tags: vsixWinPhone81)
2014-04-21
18:00
Preliminary changes to support building VSIX packages for Windows 8.0 and Windows Phone 8.0 using Visual Studio 2013. (check-in: 3bf97c811a user: mistachkin tags: vsixWinPhone81)
2014-04-18
00:08
Preliminary changes to support building VSIX packages for Windows Phone 8.1. (check-in: a1b2f28ba8 user: mistachkin tags: vsixWinPhone81)
Changes
Side-by-Side Diff Ignore Whitespace Patch
Changes to tool/mkvsix.tcl.
258
259
260
261
262
263
264











265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283









284
285
286
287
288
289
290
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310







+
+
+
+
+
+
+
+
+
+
+



















+
+
+
+
+
+
+
+
+







  set targetPlatformVersion v8.0
  set minVsVersion [appendArgs \
      "\r\n    " {MinVSVersion="11.0"}]
  set extraSdkPath ""
  set extraFileListAttributes [appendArgs \
      "\r\n    " {AppliesTo="WindowsAppContainer"} \
      "\r\n    " {DependsOn="Microsoft.VCLibs, version=11.0"}]
} elseif {[string equal -nocase $packageFlavor WinRT_2013]} then {
  set shortName SQLite.WinRT.2013
  set displayName "SQLite for Windows Runtime (2013)"
  set targetPlatformIdentifier Windows
  set targetPlatformVersion v8.0
  set minVsVersion [appendArgs \
      "\r\n    " {MinVSVersion="12.0"}]
  set extraSdkPath ""
  set extraFileListAttributes [appendArgs \
      "\r\n    " {AppliesTo="WindowsAppContainer"} \
      "\r\n    " {DependsOn="Microsoft.VCLibs, version=12.0"}]
} elseif {[string equal -nocase $packageFlavor WinRT81]} then {
  set shortName SQLite.WinRT81
  set displayName "SQLite for Windows Runtime (Windows 8.1)"
  set targetPlatformIdentifier Windows
  set targetPlatformVersion v8.1
  set minVsVersion [appendArgs \
      "\r\n    " {MinVSVersion="12.0"}]
  set extraSdkPath ""
  set extraFileListAttributes [appendArgs \
      "\r\n    " {AppliesTo="WindowsAppContainer"} \
      "\r\n    " {DependsOn="Microsoft.VCLibs, version=12.0"}]
} elseif {[string equal -nocase $packageFlavor WP80]} then {
  set shortName SQLite.WP80
  set displayName "SQLite for Windows Phone"
  set targetPlatformIdentifier "Windows Phone"
  set targetPlatformVersion v8.0
  set minVsVersion [appendArgs \
      "\r\n    " {MinVSVersion="11.0"}]
  set extraSdkPath "\\..\\$targetPlatformIdentifier"
  set extraFileListAttributes ""
} elseif {[string equal -nocase $packageFlavor WP80_2013]} then {
  set shortName SQLite.WP80.2013
  set displayName "SQLite for Windows Phone (2013)"
  set targetPlatformIdentifier "Windows Phone"
  set targetPlatformVersion v8.0
  set minVsVersion [appendArgs \
      "\r\n    " {MinVSVersion="12.0"}]
  set extraSdkPath "\\..\\$targetPlatformIdentifier"
  set extraFileListAttributes ""
} elseif {[string equal -nocase $packageFlavor WP81]} then {
  set shortName SQLite.WP81
  set displayName "SQLite for Windows Phone 8.1"
  set targetPlatformIdentifier "WindowsPhoneApp"
  set targetPlatformVersion v8.1
  set minVsVersion [appendArgs \
301
302
303
304
305
306
307
308

309
310
311
312
313
314
315
321
322
323
324
325
326
327

328
329
330
331
332
333
334
335







-
+







  set extraSdkPath ""
  set extraFileListAttributes [appendArgs \
      "\r\n    " {AppliesTo="VisualC"} \
      "\r\n    " {DependsOn="Microsoft.VCLibs, version=11.0"}]
} else {
  fail [appendArgs \
      "unsupported package flavor, must be one of: " \
      "WinRT WinRT81 WP80 WP81 Win32"]
      "WinRT WinRT_2013 WinRT81 WP80 WP80_2013 WP81 Win32"]
}

if {$argc >= 4} then {
  set platformNames [list]

  foreach platformName [split [lindex $argv 3] ", "] {
    if {[string length $platformName] > 0} then {