System.Data.SQLite

Check-in [b8b5a66015]
Login

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

Overview
Comment:Make it easier to test a subset of the supported Visual Studio versions.
Downloads: Tarball | ZIP archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: b8b5a66015348faf31af6eb57da3083f2d9f7485
User & Date: mistachkin 2015-01-20 15:45:22.647
Context
2015-01-20
18:45
Update SQLite core library to the 3.8.8.1 release. check-in: 08e48dbfa7 user: mistachkin tags: trunk
15:45
Make it easier to test a subset of the supported Visual Studio versions. check-in: b8b5a66015 user: mistachkin tags: trunk
2015-01-16
16:14
Also update the version history docs to reflect SQLite 3.8.8. check-in: f2f947aeb4 user: mistachkin tags: trunk
Changes
Unified Diff Ignore Whitespace Patch
Changes to Setup/build_ce_200x.bat.
26
27
28
29
30
31
32










33




34
35
36
























37
38
39
40
41
42
43
44
45




















46
47
48
49
50
51
52
)

SET TOOLS=%~dp0
SET TOOLS=%TOOLS:~0,-1%

%_VECHO% Tools = '%TOOLS%'











SET BUILD_CONFIGURATIONS=Debug Release




SET BASE_CONFIGURATIONSUFFIX=Compact
SET PLATFORMS="Pocket PC 2003 (ARMV4)"
SET YEARS=2005 2008

























CALL :fn_ResetErrorLevel

%__ECHO3% CALL "%TOOLS%\build_all.bat"

IF ERRORLEVEL 1 (
  ECHO Failed to build WinCE binaries.
  GOTO errors
)





















:fn_ResetErrorLevel
  VERIFY > NUL
  GOTO :EOF

:fn_SetErrorLevel
  VERIFY MAYBE 2> NUL







>
>
>
>
>
>
>
>
>
>
|
>
>
>
>


|
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>









>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>







26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
)

SET TOOLS=%~dp0
SET TOOLS=%TOOLS:~0,-1%

%_VECHO% Tools = '%TOOLS%'

CALL :fn_ResetErrorLevel

%__ECHO3% CALL "%TOOLS%\vsSp.bat"

IF ERRORLEVEL 1 (
  ECHO Could not detect Visual Studio.
  GOTO errors
)

IF DEFINED BUILD_DEBUG (
  SET BUILD_CONFIGURATIONS=Debug Release
) ELSE (
  SET BUILD_CONFIGURATIONS=Release
)

SET BASE_CONFIGURATIONSUFFIX=Compact
SET PLATFORMS="Pocket PC 2003 (ARMV4)"

REM
REM NOTE: The .NET Compact Framework is only supported by Visual Studio 2005
REM       and 2008, regardless of which versions of Visual Studio are installed
REM       on this machine; therefore, override the YEARS variable limiting it
REM       to 2005 and 2008 only.
REM
CALL :fn_UnsetVariable YEARS

IF NOT DEFINED NOVS2005 (
  IF DEFINED VS2005SP (
    CALL :fn_AppendVariable YEARS " 2005"
  )
)

IF NOT DEFINED NOVS2008 (
  IF DEFINED VS2008SP (
    CALL :fn_AppendVariable YEARS " 2008"
  )
)

%_VECHO% BuildConfigurations = '%BUILD_CONFIGURATIONS%'
%_VECHO% BaseConfigurationSuffix = '%BASE_CONFIGURATIONSUFFIX%'
%_VECHO% Platforms = '%PLATFORMS%'
%_VECHO% Years = '%YEARS%'

CALL :fn_ResetErrorLevel

%__ECHO3% CALL "%TOOLS%\build_all.bat"

IF ERRORLEVEL 1 (
  ECHO Failed to build WinCE binaries.
  GOTO errors
)

:fn_AppendVariable
  SET __ECHO_CMD=ECHO %%%1%%
  IF DEFINED %1 (
    FOR /F "delims=" %%V IN ('%__ECHO_CMD%') DO (
      SET %1=%%V%~2
    )
  ) ELSE (
    SET %1=%~2
  )
  SET __ECHO_CMD=
  CALL :fn_ResetErrorLevel
  GOTO :EOF

:fn_UnsetVariable
  IF NOT "%1" == "" (
    SET %1=
    CALL :fn_ResetErrorLevel
  )
  GOTO :EOF

:fn_ResetErrorLevel
  VERIFY > NUL
  GOTO :EOF

:fn_SetErrorLevel
  VERIFY MAYBE 2> NUL
Changes to Setup/set_common.bat.
77
78
79
80
81
82
83

84
85
86
87


88
89
90
91


92
93
94
95


96
97
98
99


100
101

102
103
104

IF NOT DEFINED FRAMEWORK2013 (
  SET FRAMEWORK2013=netFx451
)

IF DEFINED YEARS GOTO end_of_file


IF DEFINED VS2005SP (
  SET YEARS=%YEARS% 2005
)



IF DEFINED VS2008SP (
  SET YEARS=%YEARS% 2008
)



IF DEFINED VS2010SP (
  SET YEARS=%YEARS% 2010
)



IF DEFINED VS2012SP (
  SET YEARS=%YEARS% 2012
)



IF DEFINED VS2013SP (
  SET YEARS=%YEARS% 2013

)

:end_of_file







>
|
|
|
|
>
>
|
|
|
|
>
>
|
|
|
|
>
>
|
|
|
|
>
>
|
|
>



77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114

IF NOT DEFINED FRAMEWORK2013 (
  SET FRAMEWORK2013=netFx451
)

IF DEFINED YEARS GOTO end_of_file

IF NOT DEFINED NOVS2005 (
  IF DEFINED VS2005SP (
    SET YEARS=%YEARS% 2005
  )
)

IF NOT DEFINED NOVS2008 (
  IF DEFINED VS2008SP (
    SET YEARS=%YEARS% 2008
  )
)

IF NOT DEFINED NOVS2010 (
  IF DEFINED VS2010SP (
    SET YEARS=%YEARS% 2010
  )
)

IF NOT DEFINED NOVS2012 (
  IF DEFINED VS2012SP (
    SET YEARS=%YEARS% 2012
  )
)

IF NOT DEFINED NOVS2013 (
  IF DEFINED VS2013SP (
    SET YEARS=%YEARS% 2013
  )
)

:end_of_file