diff --git a/Makefile b/Makefile
deleted file mode 100644
index 44108db..0000000
--- a/Makefile
+++ /dev/null
@@ -1,81 +0,0 @@
-
-### Options: ###
-
-# C++ compiler
-CXX = g++
-
-# flags for C++
-CXXFLAGS ?= -Wall -Wextra -pedantic -Weffc++ -Wformat-security -Winit-self -Wswitch-default -Wswitch-enum -Wfloat-equal -Wundef -Wshadow -Wcast-qual -Wconversion -Wlogical-op -Winline -Wsuggest-attribute=pure -Wsuggest-attribute=const -Wsuggest-attribute=noreturn
-
-# [Debug,Release]
-BUILD ?= Debug
-
-### Conditionally set variables: ###
-
-ifeq ($(BUILD),Debug)
-BUILD_FLAGS = -g3 -rdynamic -fstack-protector-all -fno-inline -O0 -D_DEBUG
-endif
-ifeq ($(BUILD),Release)
-BUILD_FLAGS = -O2 -DNDEBUG
-endif
-ifeq ($(BUILD),Debug)
-LINK_FLAGS = -g3 -rdynamic
-endif
-ifeq ($(BUILD),Release)
-LINK_FLAGS =
-endif
-
-### Variables: ###
-
-CPPDEPS = -MT $@ -MF`echo $@ | sed -e 's,\.o$$,.d,'` -MD -MP
-
-SQLITE_CXXFLAGS = $(BUILD_FLAGS) $(CXXFLAGS) -I include
-SQLITE_EXAMPLE1_OBJECTS = \
- $(BUILD)/main.o \
- $(BUILD)/Column.o \
- $(BUILD)/Database.o \
- $(BUILD)/Statement.o \
- $(BUILD)/Transaction.o \
-
-### Targets: ###
-
-all: $(BUILD) $(BUILD)/example1 cppcheck
-
-clean:
- rm -f $(BUILD)/*.o
- rm -f $(BUILD)/*.d
- rm -f $(BUILD)/example1
-
-$(BUILD): $(BUILD)/
- mkdir -p $(BUILD)
-
-
-$(BUILD)/example1: $(SQLITE_EXAMPLE1_OBJECTS)
- $(CXX) -o $@ $(SQLITE_EXAMPLE1_OBJECTS) $(LINK_FLAGS) -lsqlite3
-
-
-$(BUILD)/main.o: examples/example1/main.cpp
- $(CXX) -c -o $@ $(SQLITE_CXXFLAGS) $(CPPDEPS) $<
-
-$(BUILD)/Column.o: src/Column.cpp
- $(CXX) -c -o $@ $(SQLITE_CXXFLAGS) $(CPPDEPS) $<
-
-$(BUILD)/Database.o: src/Database.cpp
- $(CXX) -c -o $@ $(SQLITE_CXXFLAGS) $(CPPDEPS) $<
-
-$(BUILD)/Statement.o: src/Statement.cpp
- $(CXX) -c -o $@ $(SQLITE_CXXFLAGS) $(CPPDEPS) $<
-
-$(BUILD)/Transaction.o: src/Transaction.cpp
- $(CXX) -c -o $@ $(SQLITE_CXXFLAGS) $(CPPDEPS) $<
-
-cppcheck:
- cppcheck -j 4 cppcheck --enable=style --quiet --template='{file}:{line}: warning: cppcheck: {message} [{severity}/{id}]' src
-
-.PHONY: all clean cppcheck
-
-
-# Dependencies tracking:
--include $(BUILD)/*.d
-
-
diff --git a/examples/example1/msvc/example1.vcproj b/examples/example1/msvc/example1.vcproj
deleted file mode 100644
index 4961c58..0000000
--- a/examples/example1/msvc/example1.vcproj
+++ /dev/null
@@ -1,224 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/examples/example1/msvc/example1.vcxproj b/examples/example1/msvc/example1.vcxproj
deleted file mode 100644
index 582cede..0000000
--- a/examples/example1/msvc/example1.vcxproj
+++ /dev/null
@@ -1,112 +0,0 @@
-
-
-
-
- Debug
- Win32
-
-
- Release
- Win32
-
-
-
- {920BA937-3773-4404-8C20-F13F3DEDDC89}
- example1
- Win32Proj
-
-
-
- Application
- Unicode
- true
-
-
- Application
- Unicode
-
-
-
-
-
-
-
-
-
-
-
-
- <_ProjectFileVersion>10.0.30319.1
- $(SolutionDir)$(Configuration)\
- $(Configuration)\
- true
- $(SolutionDir)$(Configuration)\
- $(Configuration)\
- false
-
-
-
- Disabled
- ..\..\..\sqlite3;%(AdditionalIncludeDirectories)
- WIN32;_DEBUG;_CONSOLE;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)
- true
- EnableFastChecks
- MultiThreadedDebugDLL
-
-
- Level3
- EditAndContinue
-
-
- $(SolutionDir)$(Configuration)\sqlite3.lib;%(AdditionalDependencies)
- true
- Console
- MachineX86
-
-
-
-
- MaxSpeed
- true
- ..\..\..\sqlite3;%(AdditionalIncludeDirectories)
- WIN32;NDEBUG;_CONSOLE;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)
- MultiThreadedDLL
- true
-
-
- Level3
- ProgramDatabase
-
-
- true
- Console
- true
- true
- MachineX86
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- {f9bf2ec1-c5e7-43d8-944d-dc5e2df1f976}
- false
-
-
-
-
-
-
\ No newline at end of file
diff --git a/examples/example1/msvc/example1.vcxproj.filters b/examples/example1/msvc/example1.vcxproj.filters
deleted file mode 100644
index 5b4ef8a..0000000
--- a/examples/example1/msvc/example1.vcxproj.filters
+++ /dev/null
@@ -1,48 +0,0 @@
-
-
-
-
- {93995380-89BD-4b04-88EB-625FBE52EBFB}
-
-
- {67DA6AB6-F800-4c08-8B7A-83BB121AAD01}
-
-
-
-
- SQLiteC++
-
-
- SQLiteC++
-
-
- SQLiteC++
-
-
- SQLiteC++
-
-
- example1
-
-
-
-
- SQLiteC++
-
-
- SQLiteC++
-
-
- SQLiteC++
-
-
- SQLiteC++
-
-
- SQLiteC++
-
-
- SQLiteC++
-
-
-
\ No newline at end of file
diff --git a/msvc/SQLiteC++-vs2008.sln b/msvc/SQLiteC++-vs2008.sln
deleted file mode 100644
index 6652ead..0000000
--- a/msvc/SQLiteC++-vs2008.sln
+++ /dev/null
@@ -1,29 +0,0 @@
-
-Microsoft Visual Studio Solution File, Format Version 10.00
-# Visual C++ Express 2008
-Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "example1", "..\examples\example1\msvc\example1.vcproj", "{920BA937-3773-4404-8C20-F13F3DEDDC89}"
- ProjectSection(ProjectDependencies) = postProject
- {F9BF2EC1-C5E7-43D8-944D-DC5E2DF1F976} = {F9BF2EC1-C5E7-43D8-944D-DC5E2DF1F976}
- EndProjectSection
-EndProject
-Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "sqlite3", "..\sqlite3\msvc\sqlite3.vcproj", "{F9BF2EC1-C5E7-43D8-944D-DC5E2DF1F976}"
-EndProject
-Global
- GlobalSection(SolutionConfigurationPlatforms) = preSolution
- Debug|Win32 = Debug|Win32
- Release|Win32 = Release|Win32
- EndGlobalSection
- GlobalSection(ProjectConfigurationPlatforms) = postSolution
- {920BA937-3773-4404-8C20-F13F3DEDDC89}.Debug|Win32.ActiveCfg = Debug|Win32
- {920BA937-3773-4404-8C20-F13F3DEDDC89}.Debug|Win32.Build.0 = Debug|Win32
- {920BA937-3773-4404-8C20-F13F3DEDDC89}.Release|Win32.ActiveCfg = Release|Win32
- {920BA937-3773-4404-8C20-F13F3DEDDC89}.Release|Win32.Build.0 = Release|Win32
- {F9BF2EC1-C5E7-43D8-944D-DC5E2DF1F976}.Debug|Win32.ActiveCfg = Debug|Win32
- {F9BF2EC1-C5E7-43D8-944D-DC5E2DF1F976}.Debug|Win32.Build.0 = Debug|Win32
- {F9BF2EC1-C5E7-43D8-944D-DC5E2DF1F976}.Release|Win32.ActiveCfg = Release|Win32
- {F9BF2EC1-C5E7-43D8-944D-DC5E2DF1F976}.Release|Win32.Build.0 = Release|Win32
- EndGlobalSection
- GlobalSection(SolutionProperties) = preSolution
- HideSolutionNode = FALSE
- EndGlobalSection
-EndGlobal
diff --git a/msvc/SQLiteC++-vs2010.sln b/msvc/SQLiteC++-vs2010.sln
deleted file mode 100644
index 3a72d36..0000000
--- a/msvc/SQLiteC++-vs2010.sln
+++ /dev/null
@@ -1,26 +0,0 @@
-
-Microsoft Visual Studio Solution File, Format Version 11.00
-# Visual C++ Express 2010
-Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "example1", "..\examples\example1\msvc\example1.vcxproj", "{920BA937-3773-4404-8C20-F13F3DEDDC89}"
-EndProject
-Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "sqlite3", "..\sqlite3\msvc\sqlite3.vcxproj", "{F9BF2EC1-C5E7-43D8-944D-DC5E2DF1F976}"
-EndProject
-Global
- GlobalSection(SolutionConfigurationPlatforms) = preSolution
- Debug|Win32 = Debug|Win32
- Release|Win32 = Release|Win32
- EndGlobalSection
- GlobalSection(ProjectConfigurationPlatforms) = postSolution
- {920BA937-3773-4404-8C20-F13F3DEDDC89}.Debug|Win32.ActiveCfg = Debug|Win32
- {920BA937-3773-4404-8C20-F13F3DEDDC89}.Debug|Win32.Build.0 = Debug|Win32
- {920BA937-3773-4404-8C20-F13F3DEDDC89}.Release|Win32.ActiveCfg = Release|Win32
- {920BA937-3773-4404-8C20-F13F3DEDDC89}.Release|Win32.Build.0 = Release|Win32
- {F9BF2EC1-C5E7-43D8-944D-DC5E2DF1F976}.Debug|Win32.ActiveCfg = Debug|Win32
- {F9BF2EC1-C5E7-43D8-944D-DC5E2DF1F976}.Debug|Win32.Build.0 = Debug|Win32
- {F9BF2EC1-C5E7-43D8-944D-DC5E2DF1F976}.Release|Win32.ActiveCfg = Release|Win32
- {F9BF2EC1-C5E7-43D8-944D-DC5E2DF1F976}.Release|Win32.Build.0 = Release|Win32
- EndGlobalSection
- GlobalSection(SolutionProperties) = preSolution
- HideSolutionNode = FALSE
- EndGlobalSection
-EndGlobal
diff --git a/qtcreator/example1/example1.pro b/qtcreator/example1/example1.pro
deleted file mode 100644
index 6e0fad2..0000000
--- a/qtcreator/example1/example1.pro
+++ /dev/null
@@ -1,17 +0,0 @@
-
-TEMPLATE = app
-
-CONFIG += console
-CONFIG -= app_bundle
-CONFIG -= qt
-
-INCLUDEPATH += \
- ../../sqlite3
-
-LIBS += \
- -L../../libs \
- -lsqlitecpp-static
-
-SOURCES += \
- ../../examples/example1/main.cpp
-
diff --git a/qtcreator/sqlitecpp-shared/sqlitecpp-shared.pro b/qtcreator/sqlitecpp-shared/sqlitecpp-shared.pro
deleted file mode 100644
index ae8d27b..0000000
--- a/qtcreator/sqlitecpp-shared/sqlitecpp-shared.pro
+++ /dev/null
@@ -1,34 +0,0 @@
-
-TEMPLATE = lib
-
-CONFIG += console
-CONFIG += sharedlib
-
-CONFIG -= app_bundle
-CONFIG -= qt
-
-DESTDIR = \
- ../../libs
-
-QMAKE_CFLAGS += \
- -Wno-sign-compare
-
-INCLUDEPATH +=\
- ../../sqlite3
-
-SOURCES += \
- ../../sqlite3/sqlite3.c \
- ../../src/Transaction.cpp \
- ../../src/Statement.cpp \
- ../../src/Database.cpp \
- ../../src/Column.cpp
-
-HEADERS += \
- ../../sqlite3/sqlite3.h \
- ../../src/Transaction.h \
- ../../src/Statement.h \
- ../../src/SQLiteC++.h \
- ../../src/Exception.h \
- ../../src/Database.h \
- ../../src/Column.h \
- ../../src/Assertion.h
diff --git a/qtcreator/sqlitecpp-static/sqlitecpp-static.pro b/qtcreator/sqlitecpp-static/sqlitecpp-static.pro
deleted file mode 100644
index 3324b5b..0000000
--- a/qtcreator/sqlitecpp-static/sqlitecpp-static.pro
+++ /dev/null
@@ -1,34 +0,0 @@
-
-TEMPLATE = lib
-
-CONFIG += console
-CONFIG += staticlib
-
-CONFIG -= app_bundle
-CONFIG -= qt
-
-DESTDIR = \
- ../../libs
-
-QMAKE_CFLAGS += \
- -Wno-sign-compare
-
-INCLUDEPATH +=\
- ../../sqlite3
-
-SOURCES += \
- ../../sqlite3/sqlite3.c \
- ../../src/Transaction.cpp \
- ../../src/Statement.cpp \
- ../../src/Database.cpp \
- ../../src/Column.cpp
-
-HEADERS += \
- ../../sqlite3/sqlite3.h \
- ../../src/Transaction.h \
- ../../src/Statement.h \
- ../../src/SQLiteC++.h \
- ../../src/Exception.h \
- ../../src/Database.h \
- ../../src/Column.h \
- ../../src/Assertion.h
diff --git a/sqlite3/msvc/sqlite3.vcproj b/sqlite3/msvc/sqlite3.vcproj
deleted file mode 100644
index 5dc924a..0000000
--- a/sqlite3/msvc/sqlite3.vcproj
+++ /dev/null
@@ -1,167 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/sqlite3/msvc/sqlite3.vcxproj b/sqlite3/msvc/sqlite3.vcxproj
deleted file mode 100644
index fbc05b4..0000000
--- a/sqlite3/msvc/sqlite3.vcxproj
+++ /dev/null
@@ -1,80 +0,0 @@
-
-
-
-
- Debug
- Win32
-
-
- Release
- Win32
-
-
-
- {F9BF2EC1-C5E7-43D8-944D-DC5E2DF1F976}
- sqlite3
- Win32Proj
-
-
-
- StaticLibrary
- Unicode
- true
-
-
- StaticLibrary
- Unicode
-
-
-
-
-
-
-
-
-
-
-
-
- <_ProjectFileVersion>10.0.30319.1
- $(SolutionDir)$(Configuration)\
- $(Configuration)\
- $(SolutionDir)$(Configuration)\
- $(Configuration)\
-
-
-
- Disabled
- WIN32;_DEBUG;_LIB;%(PreprocessorDefinitions)
- true
- EnableFastChecks
- MultiThreadedDebugDLL
-
-
- Level3
- EditAndContinue
-
-
-
-
- MaxSpeed
- true
- WIN32;NDEBUG;_LIB;%(PreprocessorDefinitions)
- MultiThreadedDLL
- true
-
-
- Level3
- ProgramDatabase
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/sqlite3/msvc/sqlite3.vcxproj.filters b/sqlite3/msvc/sqlite3.vcxproj.filters
deleted file mode 100644
index c2f1630..0000000
--- a/sqlite3/msvc/sqlite3.vcxproj.filters
+++ /dev/null
@@ -1,21 +0,0 @@
-
-
-
-
- {4FC737F1-C7A5-4376-A066-2A32D752A2FF}
-
-
- {93995380-89BD-4b04-88EB-625FBE52EBFB}
-
-
-
-
- Source Files
-
-
-
-
- Header Files
-
-
-
\ No newline at end of file