Changeset 679
- Timestamp:
- 17/08/08 19:18:49 (5 months ago)
- Location:
- trunk
- Files:
-
- 3 modified
-
README.win32 (modified) (1 diff)
-
win32/modules/storage_mysql/storage_mysql.vcproj (modified) (1 diff)
-
win32/modules/storage_sqlite/storage_sqlite.vcproj (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/README.win32
r678 r679 67 67 sqlite-source-3.x.zip from SQLite downloads. 68 68 69 sqlite3 command present in PATH, needed for initial database. 70 69 71 9. http://tortoisesvn.tigris.org/ 70 72 71 TortoiseSVN with SubWCRev tool binary to generate version.h and version.wxi. 72 Put TortoiseSVN bin folder into the executable PATH. 73 (Done by default by TortoiseSVN installer) 73 SubWCRev command present in PATH to generate version.h and version.wxi. 74 Comes with TortoiseSVN bin folder, added to PATH by TortoiseSVN installer. 74 75 75 76 10. http://wix.sourceforge.net/releases/ -
trunk/win32/modules/storage_mysql/storage_mysql.vcproj
r677 r679 200 200 UniqueIdentifier="{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}" 201 201 > 202 <File 203 RelativePath="..\..\..\tools\db-setup.mysql" 204 > 205 <FileConfiguration 206 Name="Debug|Win32" 207 > 208 <Tool 209 Name="VCCustomBuildTool" 210 Description="Preparing SQL setup file: $(InputFileName)" 211 CommandLine="copy /y $(InputPath) $(TargetDir)..\$(InputFileName)" 212 Outputs="$(TargetDir)..\$(InputFileName)" 213 /> 214 </FileConfiguration> 215 <FileConfiguration 216 Name="Release|Win32" 217 > 218 <Tool 219 Name="VCCustomBuildTool" 220 Description="Preparing SQL setup file: $(InputFileName)" 221 CommandLine="copy /y $(InputPath) $(TargetDir)..\$(InputFileName)" 222 Outputs="$(TargetDir)..\$(InputFileName)" 223 /> 224 </FileConfiguration> 225 </File> 226 <File 227 RelativePath="..\..\..\tools\db-update.mysql" 228 > 229 <FileConfiguration 230 Name="Debug|Win32" 231 > 232 <Tool 233 Name="VCCustomBuildTool" 234 Description="Preparing SQL setup file: $(InputFileName)" 235 CommandLine="copy /y $(InputPath) $(TargetDir)..\$(InputFileName)" 236 Outputs="$(TargetDir)..\$(InputFileName)" 237 /> 238 </FileConfiguration> 239 <FileConfiguration 240 Name="Release|Win32" 241 > 242 <Tool 243 Name="VCCustomBuildTool" 244 Description="Preparing SQL setup file: $(InputFileName)" 245 CommandLine="copy /y $(InputPath) $(TargetDir)..\$(InputFileName)" 246 Outputs="$(TargetDir)..\$(InputFileName)" 247 /> 248 </FileConfiguration> 249 </File> 202 250 </Filter> 203 251 </Files> -
trunk/win32/modules/storage_sqlite/storage_sqlite.vcproj
r677 r679 200 200 UniqueIdentifier="{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}" 201 201 > 202 <File 203 RelativePath="..\..\..\tools\db-setup.sqlite" 204 > 205 <FileConfiguration 206 Name="Debug|Win32" 207 > 208 <Tool 209 Name="VCCustomBuildTool" 210 Description="Preparing initial database with: $(InputFileName)" 211 CommandLine="sqlite3 -bail $(TargetDir)..\sqlite.db < $(InputPath)
copy /y $(InputPath) $(TargetDir)..\$(InputFileName)
" 212 Outputs="$(TargetDir)..\$(InputFileName);$(TargetDir)..\sqlite.db" 213 /> 214 </FileConfiguration> 215 <FileConfiguration 216 Name="Release|Win32" 217 > 218 <Tool 219 Name="VCCustomBuildTool" 220 Description="Preparing initial database with: $(InputFileName)" 221 CommandLine="sqlite3 -bail $(TargetDir)..\sqlite.db < $(InputPath)
copy /y $(InputPath) $(TargetDir)..\$(InputFileName)
" 222 Outputs="$(TargetDir)..\$(InputFileName);$(TargetDir)..\sqlite.db" 223 /> 224 </FileConfiguration> 225 </File> 226 <File 227 RelativePath="..\..\..\tools\db-update.sqlite" 228 > 229 <FileConfiguration 230 Name="Debug|Win32" 231 > 232 <Tool 233 Name="VCCustomBuildTool" 234 Description="Preparing SQL setup file: $(InputFileName)" 235 CommandLine="copy /y $(InputPath) $(TargetDir)..\$(InputFileName)
" 236 Outputs="$(TargetDir)..\$(InputFileName)" 237 /> 238 </FileConfiguration> 239 <FileConfiguration 240 Name="Release|Win32" 241 > 242 <Tool 243 Name="VCCustomBuildTool" 244 Description="Preparing SQL setup file: $(InputFileName)" 245 CommandLine="copy /y $(InputPath) $(TargetDir)..\$(InputFileName)
" 246 Outputs="$(TargetDir)..\$(InputFileName)" 247 /> 248 </FileConfiguration> 249 </File> 202 250 </Filter> 203 251 </Files>
