13 Commits

Author SHA1 Message Date
Michael Fabian Dirks f42856bbb7 Update 2016-10-03 17:12:28 +02:00
Michael Fabian Dirks e197fcbf5c Update repositories 2016-07-20 02:08:18 +02:00
Michael Fabain Dirks 363279db84 Update README.md and commits 2016-07-01 13:55:50 +02:00
Michael Fabain Dirks 26fb220bbe Update Commits 2016-06-29 20:32:23 +02:00
Michael Fabain Dirks b81ebfdd0c Update BlitzExtensions 2016-05-08 22:47:21 +02:00
Michael Fabian Dirks dcf98042fd Update 2016-03-19 14:22:19 +01:00
Michael Dirks 63d195b515 BlitzSteam update 2016-02-23 23:41:48 +01:00
Michael Dirks 0d770b135f Update submodules 2016-02-23 13:27:02 +01:00
Michael Dirks f3b74c1bf9 BlitzPointer: Latest Commit 2016-02-06 00:22:31 +01:00
Michael Dirks 51b828b3e4 Update 06.01.2016 2016-02-06 00:18:11 +01:00
Michael Dirks 9ead88d358 Remove Visual Studio user files. 2015-12-30 06:43:28 +01:00
Michael Dirks e58f985491 Upgrade to Visual Studio 2015 2015-12-30 06:41:59 +01:00
Michael Dirks 44c8254076 Latest changes from local 2015-12-17 00:19:36 +01:00
19 changed files with 1180 additions and 1132 deletions
+9 -1
View File
@@ -1,4 +1,12 @@
/#Build
/#Intermediate
# Visual Studio Files
*.sln
*.suo
*.v12.suo
*.sdf
*.opensdf
*.VC.db
*.vcxproj.user
/.vs
*.opendb
+2 -14
View File
@@ -1,12 +1,9 @@
Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 2013
VisualStudioVersion = 12.0.40418.0
# Visual Studio 14
VisualStudioVersion = 14.0.24720.0
MinimumVisualStudioVersion = 10.0.40219.1
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "BlitzSteam", "BlitzSteam\BlitzSteam.vcxproj", "{805CB1EB-82F0-405E-AC0B-03FBE82CC77D}"
ProjectSection(ProjectDependencies) = postProject
{AC8F52F4-9FE6-4CEF-B549-8180757020C8} = {AC8F52F4-9FE6-4CEF-B549-8180757020C8}
EndProjectSection
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "BlitzUtility", "BlitzUtility\BlitzUtility.vcxproj", "{C08C5F9A-0C63-4798-A93F-FE96C014074B}"
EndProject
@@ -14,11 +11,6 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "BlitzPointer", "BlitzPointe
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Template", "Template\Template.vcxproj", "{EE818249-9F1E-4FB5-A1E0-604BCD9AFF77}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "BlitzSQLite", "BlitzSQLite\BlitzSQLite.vcxproj", "{DA0440A3-4F72-44C0-BC27-57D9AA7B29C1}"
ProjectSection(ProjectDependencies) = postProject
{AC8F52F4-9FE6-4CEF-B549-8180757020C8} = {AC8F52F4-9FE6-4CEF-B549-8180757020C8}
EndProjectSection
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Win32 = Debug|Win32
@@ -39,10 +31,6 @@ Global
{AC8F52F4-9FE6-4CEF-B549-8180757020C8}.Release|Win32.Build.0 = Release|Win32
{EE818249-9F1E-4FB5-A1E0-604BCD9AFF77}.Debug|Win32.ActiveCfg = Debug|Win32
{EE818249-9F1E-4FB5-A1E0-604BCD9AFF77}.Release|Win32.ActiveCfg = Release|Win32
{DA0440A3-4F72-44C0-BC27-57D9AA7B29C1}.Debug|Win32.ActiveCfg = Debug|Win32
{DA0440A3-4F72-44C0-BC27-57D9AA7B29C1}.Debug|Win32.Build.0 = Debug|Win32
{DA0440A3-4F72-44C0-BC27-57D9AA7B29C1}.Release|Win32.ActiveCfg = Release|Win32
{DA0440A3-4F72-44C0-BC27-57D9AA7B29C1}.Release|Win32.Build.0 = Release|Win32
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
Binary file not shown.
Binary file not shown.
Submodule BlitzSQLite deleted from bb3a9e59f1
+24
View File
@@ -0,0 +1,24 @@
# BlitzExtensions - Really extending BlitzBasic!
A collection of Libraries used to stretch BlitzBasics abilities past the normal boundaries. Pointers, LinkedLists, Steam integration, Databases - it's probably all here.
# Building the Source
## Requirements
* Visual Studio 2015 (Express should work)
## Building
* Open the Solution in Visual Studio.
* Build the Solution.
* Binaries will be located in #Binaries/$(Project)/$(Configuration)/
# License
Copyright (C) 2015 Xaymar (Michael Fabian Dirks)
This program is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
You should have received a copy of the GNU Lesser General Public License along with this program. If not, see <http://www.gnu.org/licenses/>.
+1 -1
View File
@@ -1,5 +1,5 @@
; Template - Project Description
; Copyright (C) 2015 Project Kube (Michael Fabian Dirks)
; Copyright (C) 2015 Xaymar (Michael Fabian Dirks)
;
; This program is free software: you can redistribute it and/or modify
; it under the terms of the GNU Lesser General Public License as
+1 -1
View File
@@ -1,5 +1,5 @@
// Template - Project Description
// Copyright (C) 2015 Project Kube (Michael Fabian Dirks)
// Copyright (C) 2015 Xaymar (Michael Fabian Dirks)
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Lesser General Public License as
+1 -1
View File
@@ -1,5 +1,5 @@
; Template - Project Description
; Copyright (C) 2015 Project Kube (Michael Fabian Dirks)
; Copyright (C) 2015 Xaymar (Michael Fabian Dirks)
;
; This program is free software: you can redistribute it and/or modify
; it under the terms of the GNU Lesser General Public License as
+1 -1
View File
@@ -1,5 +1,5 @@
// Template - Project Description
// Copyright (C) 2015 Project Kube (Michael Fabian Dirks)
// Copyright (C) 2015 Xaymar (Michael Fabian Dirks)
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Lesser General Public License as
+54 -21
View File
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" ToolsVersion="12.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Project DefaultTargets="Build" ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ItemGroup Label="ProjectConfigurations">
<ProjectConfiguration Include="Debug|Win32">
<Configuration>Debug</Configuration>
@@ -13,18 +13,19 @@
<PropertyGroup Label="Globals">
<ProjectGuid>{EE818249-9F1E-4FB5-A1E0-604BCD9AFF77}</ProjectGuid>
<RootNamespace>BlitzSQLite</RootNamespace>
<WindowsTargetPlatformVersion>8.1</WindowsTargetPlatformVersion>
</PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
<ConfigurationType>DynamicLibrary</ConfigurationType>
<UseDebugLibraries>true</UseDebugLibraries>
<PlatformToolset>v120</PlatformToolset>
<PlatformToolset>v140</PlatformToolset>
<CharacterSet>Unicode</CharacterSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
<ConfigurationType>DynamicLibrary</ConfigurationType>
<UseDebugLibraries>false</UseDebugLibraries>
<PlatformToolset>v120</PlatformToolset>
<PlatformToolset>v140</PlatformToolset>
<WholeProgramOptimization>false</WholeProgramOptimization>
<CharacterSet>Unicode</CharacterSet>
</PropertyGroup>
@@ -39,22 +40,20 @@
</ImportGroup>
<PropertyGroup Label="UserMacros" />
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
<OutDir>$(SolutionDir)\#Build\$(ProjectName)\$(Configuration)\</OutDir>
<IntDir>$(SolutionDir)\#Intermediate\$(ProjectName)\$(Configuration)\</IntDir>
<OutDir>$(SolutionDir)#Build\$(ProjectName)\$(Configuration)\</OutDir>
<IntDir>$(SolutionDir)#Intermediate\$(ProjectName)\$(Configuration)\</IntDir>
<TargetExt>.dll</TargetExt>
<LinkIncremental>true</LinkIncremental>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
<OutDir>$(SolutionDir)\#Build\$(ProjectName)\$(Configuration)\</OutDir>
<IntDir>$(SolutionDir)\#Intermediate\$(ProjectName)\$(Configuration)\</IntDir>
<OutDir>$(SolutionDir)#Build\$(ProjectName)\$(Configuration)\</OutDir>
<IntDir>$(SolutionDir)#Intermediate\$(ProjectName)\$(Configuration)\</IntDir>
<TargetExt>.dll</TargetExt>
<LinkIncremental>false</LinkIncremental>
<LinkIncremental>true</LinkIncremental>
</PropertyGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
<ClCompile>
<WarningLevel>Level3</WarningLevel>
<Optimization>Disabled</Optimization>
<SDLCheck>false</SDLCheck>
<MultiProcessorCompilation>true</MultiProcessorCompilation>
<CompileAsManaged>false</CompileAsManaged>
<CompileAsWinRT>false</CompileAsWinRT>
@@ -63,15 +62,33 @@
<UseUnicodeForAssemblerListing>true</UseUnicodeForAssemblerListing>
<AdditionalIncludeDirectories>$(ProjectDir);%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
<MinimalRebuild>false</MinimalRebuild>
<StringPooling>true</StringPooling>
<RuntimeLibrary>MultiThreaded</RuntimeLibrary>
<StructMemberAlignment>4Bytes</StructMemberAlignment>
<BufferSecurityCheck>false</BufferSecurityCheck>
<FunctionLevelLinking>true</FunctionLevelLinking>
<EnableParallelCodeGeneration>true</EnableParallelCodeGeneration>
<FloatingPointExceptions>true</FloatingPointExceptions>
<CreateHotpatchableImage>true</CreateHotpatchableImage>
<RuntimeTypeInfo>true</RuntimeTypeInfo>
<OpenMPSupport>false</OpenMPSupport>
<ControlFlowGuard>false</ControlFlowGuard>
<EnforceTypeConversionRules>true</EnforceTypeConversionRules>
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
</ClCompile>
<Link>
<GenerateDebugInformation>true</GenerateDebugInformation>
<GenerateDebugInformation>Debug</GenerateDebugInformation>
<CreateHotPatchableImage>Enabled</CreateHotPatchableImage>
<EnableCOMDATFolding>false</EnableCOMDATFolding>
<LargeAddressAware>false</LargeAddressAware>
<OptimizeReferences>false</OptimizeReferences>
<LinkTimeCodeGeneration>
</LinkTimeCodeGeneration>
<FixedBaseAddress>false</FixedBaseAddress>
<ImageHasSafeExceptionHandlers>false</ImageHasSafeExceptionHandlers>
<FullProgramDatabaseFile>true</FullProgramDatabaseFile>
</Link>
<ProjectReference>
<LinkLibraryDependencies>false</LinkLibraryDependencies>
</ProjectReference>
<ProjectReference />
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
<ClCompile>
@@ -79,25 +96,41 @@
<Optimization>Full</Optimization>
<FunctionLevelLinking>true</FunctionLevelLinking>
<IntrinsicFunctions>true</IntrinsicFunctions>
<SDLCheck>false</SDLCheck>
<MultiProcessorCompilation>true</MultiProcessorCompilation>
<CompileAsManaged>false</CompileAsManaged>
<CompileAsWinRT>false</CompileAsWinRT>
<InlineFunctionExpansion>AnySuitable</InlineFunctionExpansion>
<InlineFunctionExpansion>Default</InlineFunctionExpansion>
<FavorSizeOrSpeed>Speed</FavorSizeOrSpeed>
<PreprocessorDefinitions>%(PreprocessorDefinitions)</PreprocessorDefinitions>
<UseUnicodeForAssemblerListing>true</UseUnicodeForAssemblerListing>
<AdditionalIncludeDirectories>$(ProjectDir);%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
<DebugInformationFormat>None</DebugInformationFormat>
<StringPooling>true</StringPooling>
<RuntimeLibrary>MultiThreaded</RuntimeLibrary>
<StructMemberAlignment>4Bytes</StructMemberAlignment>
<BufferSecurityCheck>false</BufferSecurityCheck>
<EnableParallelCodeGeneration>true</EnableParallelCodeGeneration>
<FloatingPointExceptions>true</FloatingPointExceptions>
<CreateHotpatchableImage>false</CreateHotpatchableImage>
<RuntimeTypeInfo>true</RuntimeTypeInfo>
<OpenMPSupport>false</OpenMPSupport>
<BasicRuntimeChecks>Default</BasicRuntimeChecks>
<ControlFlowGuard>false</ControlFlowGuard>
<EnforceTypeConversionRules>true</EnforceTypeConversionRules>
</ClCompile>
<Link>
<GenerateDebugInformation>true</GenerateDebugInformation>
<GenerateDebugInformation>No</GenerateDebugInformation>
<EnableCOMDATFolding>false</EnableCOMDATFolding>
<OptimizeReferences>true</OptimizeReferences>
<OptimizeReferences>false</OptimizeReferences>
<CreateHotPatchableImage>Enabled</CreateHotPatchableImage>
<LargeAddressAware>false</LargeAddressAware>
<LinkTimeCodeGeneration>
</LinkTimeCodeGeneration>
<FixedBaseAddress>false</FixedBaseAddress>
<ImageHasSafeExceptionHandlers>false</ImageHasSafeExceptionHandlers>
<FullProgramDatabaseFile>false</FullProgramDatabaseFile>
</Link>
<ProjectReference>
<LinkLibraryDependencies>false</LinkLibraryDependencies>
</ProjectReference>
<ProjectReference />
</ItemDefinitionGroup>
<ItemGroup>
<None Include="LICENSE" />
-4
View File
@@ -1,4 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="12.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup />
</Project>