8 Commits

37 changed files with 806 additions and 8 deletions

20
CMakeLists.txt Normal file
View File

@ -0,0 +1,20 @@
cmake_minimum_required(VERSION 3.14)
project(park)
set(CMAKE_CXX_STANDARD 11)
add_executable(park
main.cpp
Customer.cpp
headers/Customer.h
Park_spot.cpp
headers/Park_spot.h
Park_time.cpp
headers/Park_time.h
#[[
uncomment line 19 and comment line 20 when working on interfaces to include in compilation
]]
#interfaces.cpp)
)

View File

@ -1,24 +1,29 @@
#include "headers/Customer.h" #include "headers/Customer.h"
#include <iostream> #include <iostream>
Customer::Customer(int id_, string name_, string card_code_) // moet aangepast worden om een verhicle_type toe te voegen
Customer::Customer(int id_, string name_)
: id { id_ } : id { id_ }
, name { name_ } , name { name_ }
, card_code { card_code_ }
{ {
} }
/*
creert een park_time object met start time= nu, en voegt t toe aan een vector.
*/
void Customer::clock_in( int s_id) void Customer::clock_in( int s_id)
{ {
Park_time pt{id, s_id}; Park_time pt{id, s_id};
park_instances.push_back(pt); park_instances.push_back(pt);
} }
// edit de laatste park_time obj in de vector zodat de end_time = now.
void Customer::clock_out(int s_id){ void Customer::clock_out(int s_id){
park_instances[park_instances.size()-1].clock_out(id, s_id); park_instances[park_instances.size()-1].clock_out(id, s_id);
} }
// monthly report generation. moet nog een manier vinden om af te bakenen.
void Customer::gen_monthly(){ void Customer::gen_monthly(){
std::cout << "NAME: " << name << " card code: " << card_code << "\n"; std::cout << "NAME: " << name << " card code: " << card_code << "\n";
std::cout << "-------------------------------------------------\n"; std::cout << "-------------------------------------------------\n";

View File

@ -6,6 +6,7 @@ Park_spot::Park_spot(int id_){
taken = false; taken = false;
} }
// clock in en out, calls de juist(in/out) van de customer aan de hand van internal state van taken
void Park_spot::clock(Customer* c_customer){ void Park_spot::clock(Customer* c_customer){
if (!taken){ if (!taken){
parked = c_customer; parked = c_customer;

View File

@ -9,11 +9,24 @@
using std::vector; using std::vector;
using std::string; using std::string;
// enum type is basically een manier om categories te representen als een integer in the background, maar om t in code
// aan te geven als de actual category.
enum class Verhicle_type {
small = 1,
medium = 2,
large = 3,
};
/* /*
db repr of Customer db repr of Customer
int id (not null, auto increment) int id (not null, auto increment)
string name (not nulll) string name (not nulll)
string card_code (not null) string card_code (not null)
Dit moet nog verandert worden.
card code zou eigenlijk een randomly generated string moeten zijn, die je bv. op een ndf card zou opslaan en zo zou
authenticaten bij je parking spot. We kunnen dit ipv of samen met een password gebruiken.
clock in en out creeert en compleet een park_time object. Voegt het toe aan een vector.
*/ */
@ -26,9 +39,10 @@ public:
void clock_out(int s_id); void clock_out(int s_id);
// void gen_weekly(); TODO: this // void gen_weekly(); TODO: this
void gen_monthly(); void gen_monthly();
Customer(int id_, string name_, string card_code_); Customer(int id_, string name_);
private: private:
Verhicle_type verhicle;
vector<Park_time> park_instances; vector<Park_time> park_instances;
}; };

View File

@ -6,6 +6,8 @@ db representation:
int id not null int id not null
bool taken not null bool taken not null
int customer_id (null) (many to one, foreign key, whatever) int customer_id (null) (many to one, foreign key, whatever)
Dit representeert een parkeerplaats. Het heeft als internal state alleen dat t bezet is of niet.
*/ */
class Park_spot { class Park_spot {

View File

@ -16,6 +16,9 @@ int spot_id (not null, many to one or something like that)
int duration int duration
datetime start (not null) datetime start (not null)
datetime end datetime end
Dit is gewoon een record van hoe lang, wie en waar iemand parkeert. Basically, een component van
de internal state van customer.
*/ */
class Park_time { class Park_time {

13
interface notes.txt Normal file
View File

@ -0,0 +1,13 @@
Class ticket bevat de parameters:
- Naam (=customer indien customer)
-Ids
- Voertuig categorie
- Categorie multiplier
- Clock in
- aantal uren
- clock_multiplier {=1 als aantal_uren!=0, =1.2 of iets duurder als de persoon anytime uitklokt}
- Verwezen parkeervak
- Verwachtte clock uit
- Werkelijke clock uit= tijdkosten+laatboete
- Tijdkosten=categorie_multiplier*aantal_uren*uur_prijs*clock_multiplier, indien verwachtte aantal_uren=0, dan aantal_uren=clock out-in
- laat = (werkelijke-verwachtte)*categorie_multiplier*uur_prijs*laat_multiplier

70
interfaces.cpp Normal file
View File

@ -0,0 +1,70 @@
#include <cstdlib>
#include <iostream>
#include <string>
using std::cout;
void interface_customer(void);
void main_interface(void)
{
int selector=0;
cout<<"\nHello, There. Welcome to the Parking Area!";
cout<<"\nPlease select an applicable option:";
cout<<"\n[1]I am a Customer.";
cout<<"\n[2]I am a Member";
cout<<"\n[3]I am an employee";
cout<<"\n[4]Clock Out";
cout<<"\n[5]Log in as Admin";
std::cin>>selector;
switch(selector){
case 1:interface_customer();break;
case 2:interface_member();break;
case 3:interface_employee();break;
case 4:clock_out();break;
case 5:interface_admin();break;
}
}
void select_cartype(void)
{
cout<<"\nWhat type of vehicle do you want to park?";
cout<<"\n[1]Bicycle";
cout<<"\n[2]Motorbike/Motorcycle";
cout<<"\n[3]Small to Medium-sized car";
cout<<"\n[4]Large Car (gives you a bigger parking space)";
std::cin>>selector;
switch(selector){
case 1:;break;
case 2:;break;
case 3:;break;
case 4:;break;
}
void select_time(void)//tijd selecteren en omzetten in uren
{
int selector=0;
int duration_in_hours=0, m=0, x=0;
cout<<"\nHow long do you want to park?";
cout<<"\n[1]Clock out when leaving";
cout<<"\n[2]A couple hours";
cout<<"\n[3]A couple days";
cout<<"\n[4]A couple weeks";
cout<<"\n[5]A couple months";
cout<<"\n[6]A couple years";
std::cin>>selector;
switch(selector){
case 1:m=0;break;
case 2:m=1;break;
case 3:m=24;break;
case 4:m=168;break;
case 5:m=672;break;
case 6:m=8064;break;
cout<<"\nHow many?";
cin>>x;
duration_in_hours=x*m;
}
void interface_customer(void)
{
//constructors here
}

View File

@ -3,23 +3,42 @@
#include <thread> // to make pausing work, not sure if i need chrono, or this, or both #include <thread> // to make pausing work, not sure if i need chrono, or this, or both
#include <vector> #include <vector>
/*
Code strucure like this:
class declarations zijn in /headers/class_naam.h, en definitions van de member functs in /class_naam.cpp
elke klas in zn eigen file omdat ik incomplete class declarations wilt tegengaan, omdat ik ze niet goed begrijp.
En header/source split om multiple definition errors tegen te gaan.
Park_spot representeert een parkeermeter bij elke parkeer spot.
Een customer is een customer.
Park time is een object die reffereert naar parkspot en customer, basically een record die zegt dat
een customer voor x tijd geparkeert heeft bij spot x, enz.
De client clockt in en uit bij een spot.
*/
void Wait(int sec) void Wait(int sec)
/*
a wait function where 1 sec represents 1 hour irl.
*/
{ {
std::this_thread::sleep_for(seconds { sec }); std::this_thread::sleep_for(seconds { sec });
} }
using std::cout; using std::cout;
int main() int main()
{ {
std::vector<Park_spot> spots { std::vector<Park_spot> spots {
1, 2, 3, 4, 5 1, 2, 3, 4, 5
}; };
std::vector<Customer> customers { std::vector<Customer> customers {
{ 1, "Sagar Ram", "eddgh" }, { 1, "Sagar Ram" },
{ 2, "Shaq", "wsdfwefgv" }, { 2, "Shaq" },
{ 3, "Josh", "WDFGWEF" }, { 3, "Josh" },
{ 4, "Stefano", "EDGGERG" } { 4, "Stefano" }
}; };
spots[1].clock(&customers[3]); // stefano parks at spot 2 spots[1].clock(&customers[3]); // stefano parks at spot 2

View File

@ -0,0 +1,16 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "MinGW Makefiles" Generator, CMake Version 3.14
# Relative path conversion top directories.
set(CMAKE_RELATIVE_PATH_TOP_SOURCE "C:/Users/MassiveAtoms/Documents/C++/Parkmanne")
set(CMAKE_RELATIVE_PATH_TOP_BINARY "C:/Users/MassiveAtoms/Documents/C++/Parkmanne")
# Force unix paths in dependencies.
set(CMAKE_FORCE_UNIX_PATHS 1)
# The C and CXX include file regular expressions for this directory.
set(CMAKE_C_INCLUDE_REGEX_SCAN "^.*$")
set(CMAKE_C_INCLUDE_REGEX_COMPLAIN "^$")
set(CMAKE_CXX_INCLUDE_REGEX_SCAN ${CMAKE_C_INCLUDE_REGEX_SCAN})
set(CMAKE_CXX_INCLUDE_REGEX_COMPLAIN ${CMAKE_C_INCLUDE_REGEX_COMPLAIN})

View File

@ -0,0 +1,19 @@
#----------------------------------------------------------------
# Generated CMake target import file.
#----------------------------------------------------------------
# Commands may need to know the format version.
set(CMAKE_IMPORT_FILE_VERSION 1)
# Import target "SQLiteCpp" for configuration ""
set_property(TARGET SQLiteCpp APPEND PROPERTY IMPORTED_CONFIGURATIONS NOCONFIG)
set_target_properties(SQLiteCpp PROPERTIES
IMPORTED_LINK_INTERFACE_LANGUAGES_NOCONFIG "CXX"
IMPORTED_LOCATION_NOCONFIG "${_IMPORT_PREFIX}/lib/libSQLiteCpp.a"
)
list(APPEND _IMPORT_CHECK_TARGETS SQLiteCpp )
list(APPEND _IMPORT_CHECK_FILES_FOR_SQLiteCpp "${_IMPORT_PREFIX}/lib/libSQLiteCpp.a" )
# Commands beyond this point should not need to know the version.
set(CMAKE_IMPORT_FILE_VERSION)

View File

@ -0,0 +1,94 @@
# Generated by CMake
if("${CMAKE_MAJOR_VERSION}.${CMAKE_MINOR_VERSION}" LESS 2.5)
message(FATAL_ERROR "CMake >= 2.6.0 required")
endif()
cmake_policy(PUSH)
cmake_policy(VERSION 2.6)
#----------------------------------------------------------------
# Generated CMake target import file.
#----------------------------------------------------------------
# Commands may need to know the format version.
set(CMAKE_IMPORT_FILE_VERSION 1)
# Protect against multiple inclusion, which would fail when already imported targets are added once more.
set(_targetsDefined)
set(_targetsNotDefined)
set(_expectedTargets)
foreach(_expectedTarget SQLiteCpp)
list(APPEND _expectedTargets ${_expectedTarget})
if(NOT TARGET ${_expectedTarget})
list(APPEND _targetsNotDefined ${_expectedTarget})
endif()
if(TARGET ${_expectedTarget})
list(APPEND _targetsDefined ${_expectedTarget})
endif()
endforeach()
if("${_targetsDefined}" STREQUAL "${_expectedTargets}")
unset(_targetsDefined)
unset(_targetsNotDefined)
unset(_expectedTargets)
set(CMAKE_IMPORT_FILE_VERSION)
cmake_policy(POP)
return()
endif()
if(NOT "${_targetsDefined}" STREQUAL "")
message(FATAL_ERROR "Some (but not all) targets in this export set were already defined.\nTargets Defined: ${_targetsDefined}\nTargets not yet defined: ${_targetsNotDefined}\n")
endif()
unset(_targetsDefined)
unset(_targetsNotDefined)
unset(_expectedTargets)
# Compute the installation prefix relative to this file.
get_filename_component(_IMPORT_PREFIX "${CMAKE_CURRENT_LIST_FILE}" PATH)
get_filename_component(_IMPORT_PREFIX "${_IMPORT_PREFIX}" PATH)
get_filename_component(_IMPORT_PREFIX "${_IMPORT_PREFIX}" PATH)
get_filename_component(_IMPORT_PREFIX "${_IMPORT_PREFIX}" PATH)
if(_IMPORT_PREFIX STREQUAL "/")
set(_IMPORT_PREFIX "")
endif()
# Create imported target SQLiteCpp
add_library(SQLiteCpp STATIC IMPORTED)
set_target_properties(SQLiteCpp PROPERTIES
INTERFACE_INCLUDE_DIRECTORIES "${_IMPORT_PREFIX}/include/"
)
# Load information for each installed configuration.
get_filename_component(_DIR "${CMAKE_CURRENT_LIST_FILE}" PATH)
file(GLOB CONFIG_FILES "${_DIR}/SQLiteCppConfig-*.cmake")
foreach(f ${CONFIG_FILES})
include(${f})
endforeach()
# Cleanup temporary variables.
set(_IMPORT_PREFIX)
# Loop over all imported files and verify that they actually exist
foreach(target ${_IMPORT_CHECK_TARGETS} )
foreach(file ${_IMPORT_CHECK_FILES_FOR_${target}} )
if(NOT EXISTS "${file}" )
message(FATAL_ERROR "The imported target \"${target}\" references the file
\"${file}\"
but this file does not exist. Possible reasons include:
* The file was deleted, renamed, or moved to another location.
* An install or uninstall procedure did not complete successfully.
* The installation package was faulty and contained
\"${CMAKE_CURRENT_LIST_FILE}\"
but not all the files it references.
")
endif()
endforeach()
unset(_IMPORT_CHECK_FILES_FOR_${target})
endforeach()
unset(_IMPORT_CHECK_TARGETS)
# This file does not depend on other imported targets which have
# been exported from the same project but in a separate export set.
# Commands beyond this point should not need to know the version.
set(CMAKE_IMPORT_FILE_VERSION)
cmake_policy(POP)

View File

@ -0,0 +1,32 @@
# The set of languages for which implicit dependencies are needed:
set(CMAKE_DEPENDS_LANGUAGES
"CXX"
)
# The set of files for implicit dependencies of each language:
set(CMAKE_DEPENDS_CHECK_CXX
"C:/Users/MassiveAtoms/Documents/C++/Parkmanne/thirdparty/SQLiteCpp/src/Backup.cpp" "C:/Users/MassiveAtoms/Documents/C++/Parkmanne/thirdparty/SQLiteCpp/CMakeFiles/SQLiteCpp.dir/src/Backup.cpp.obj"
"C:/Users/MassiveAtoms/Documents/C++/Parkmanne/thirdparty/SQLiteCpp/src/Column.cpp" "C:/Users/MassiveAtoms/Documents/C++/Parkmanne/thirdparty/SQLiteCpp/CMakeFiles/SQLiteCpp.dir/src/Column.cpp.obj"
"C:/Users/MassiveAtoms/Documents/C++/Parkmanne/thirdparty/SQLiteCpp/src/Database.cpp" "C:/Users/MassiveAtoms/Documents/C++/Parkmanne/thirdparty/SQLiteCpp/CMakeFiles/SQLiteCpp.dir/src/Database.cpp.obj"
"C:/Users/MassiveAtoms/Documents/C++/Parkmanne/thirdparty/SQLiteCpp/src/Exception.cpp" "C:/Users/MassiveAtoms/Documents/C++/Parkmanne/thirdparty/SQLiteCpp/CMakeFiles/SQLiteCpp.dir/src/Exception.cpp.obj"
"C:/Users/MassiveAtoms/Documents/C++/Parkmanne/thirdparty/SQLiteCpp/src/Statement.cpp" "C:/Users/MassiveAtoms/Documents/C++/Parkmanne/thirdparty/SQLiteCpp/CMakeFiles/SQLiteCpp.dir/src/Statement.cpp.obj"
"C:/Users/MassiveAtoms/Documents/C++/Parkmanne/thirdparty/SQLiteCpp/src/Transaction.cpp" "C:/Users/MassiveAtoms/Documents/C++/Parkmanne/thirdparty/SQLiteCpp/CMakeFiles/SQLiteCpp.dir/src/Transaction.cpp.obj"
)
set(CMAKE_CXX_COMPILER_ID "GNU")
# Preprocessor definitions for this target.
set(CMAKE_TARGET_DEFINITIONS_CXX
"SQLITE_ENABLE_COLUMN_METADATA"
)
# The include file search paths:
set(CMAKE_CXX_TARGET_INCLUDE_PATH
"thirdparty/SQLiteCpp/include"
"thirdparty/SQLiteCpp/sqlite3"
)
# Targets to which this target links.
set(CMAKE_TARGET_LINKED_INFO_FILES
)
# Fortran module output directory.
set(CMAKE_Fortran_TARGET_MODULE_DIR "")

View File

@ -0,0 +1,179 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "MinGW Makefiles" Generator, CMake Version 3.14
# Delete rule output on recipe failure.
.DELETE_ON_ERROR:
#=============================================================================
# Special targets provided by cmake.
# Disable implicit rules so canonical targets will work.
.SUFFIXES:
# Remove some rules from gmake that .SUFFIXES does not remove.
SUFFIXES =
.SUFFIXES: .hpux_make_needs_suffix_list
# Suppress display of executed commands.
$(VERBOSE).SILENT:
# A target that is always out of date.
cmake_force:
.PHONY : cmake_force
#=============================================================================
# Set environment variables for the build.
SHELL = cmd.exe
# The CMake executable.
CMAKE_COMMAND = C:\MSYS\mingw64\bin\cmake.exe
# The command to remove a file.
RM = C:\MSYS\mingw64\bin\cmake.exe -E remove -f
# Escaping for special characters.
EQUALS = =
# The top-level source directory on which CMake was run.
CMAKE_SOURCE_DIR = C:\Users\MassiveAtoms\Documents\C++\Parkmanne
# The top-level build directory on which CMake was run.
CMAKE_BINARY_DIR = C:\Users\MassiveAtoms\Documents\C++\Parkmanne
# Include any dependencies generated for this target.
include thirdparty/SQLiteCpp/CMakeFiles/SQLiteCpp.dir/depend.make
# Include the progress variables for this target.
include thirdparty/SQLiteCpp/CMakeFiles/SQLiteCpp.dir/progress.make
# Include the compile flags for this target's objects.
include thirdparty/SQLiteCpp/CMakeFiles/SQLiteCpp.dir/flags.make
thirdparty/SQLiteCpp/CMakeFiles/SQLiteCpp.dir/src/Backup.cpp.obj: thirdparty/SQLiteCpp/CMakeFiles/SQLiteCpp.dir/flags.make
thirdparty/SQLiteCpp/CMakeFiles/SQLiteCpp.dir/src/Backup.cpp.obj: thirdparty/SQLiteCpp/CMakeFiles/SQLiteCpp.dir/includes_CXX.rsp
thirdparty/SQLiteCpp/CMakeFiles/SQLiteCpp.dir/src/Backup.cpp.obj: thirdparty/SQLiteCpp/src/Backup.cpp
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=C:\Users\MassiveAtoms\Documents\C++\Parkmanne\CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object thirdparty/SQLiteCpp/CMakeFiles/SQLiteCpp.dir/src/Backup.cpp.obj"
cd /d C:\Users\MassiveAtoms\Documents\C++\Parkmanne\thirdparty\SQLiteCpp && C:\MSYS\mingw64\bin\g++.exe $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -o CMakeFiles\SQLiteCpp.dir\src\Backup.cpp.obj -c C:\Users\MassiveAtoms\Documents\C++\Parkmanne\thirdparty\SQLiteCpp\src\Backup.cpp
thirdparty/SQLiteCpp/CMakeFiles/SQLiteCpp.dir/src/Backup.cpp.i: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/SQLiteCpp.dir/src/Backup.cpp.i"
cd /d C:\Users\MassiveAtoms\Documents\C++\Parkmanne\thirdparty\SQLiteCpp && C:\MSYS\mingw64\bin\g++.exe $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E C:\Users\MassiveAtoms\Documents\C++\Parkmanne\thirdparty\SQLiteCpp\src\Backup.cpp > CMakeFiles\SQLiteCpp.dir\src\Backup.cpp.i
thirdparty/SQLiteCpp/CMakeFiles/SQLiteCpp.dir/src/Backup.cpp.s: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/SQLiteCpp.dir/src/Backup.cpp.s"
cd /d C:\Users\MassiveAtoms\Documents\C++\Parkmanne\thirdparty\SQLiteCpp && C:\MSYS\mingw64\bin\g++.exe $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S C:\Users\MassiveAtoms\Documents\C++\Parkmanne\thirdparty\SQLiteCpp\src\Backup.cpp -o CMakeFiles\SQLiteCpp.dir\src\Backup.cpp.s
thirdparty/SQLiteCpp/CMakeFiles/SQLiteCpp.dir/src/Column.cpp.obj: thirdparty/SQLiteCpp/CMakeFiles/SQLiteCpp.dir/flags.make
thirdparty/SQLiteCpp/CMakeFiles/SQLiteCpp.dir/src/Column.cpp.obj: thirdparty/SQLiteCpp/CMakeFiles/SQLiteCpp.dir/includes_CXX.rsp
thirdparty/SQLiteCpp/CMakeFiles/SQLiteCpp.dir/src/Column.cpp.obj: thirdparty/SQLiteCpp/src/Column.cpp
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=C:\Users\MassiveAtoms\Documents\C++\Parkmanne\CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building CXX object thirdparty/SQLiteCpp/CMakeFiles/SQLiteCpp.dir/src/Column.cpp.obj"
cd /d C:\Users\MassiveAtoms\Documents\C++\Parkmanne\thirdparty\SQLiteCpp && C:\MSYS\mingw64\bin\g++.exe $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -o CMakeFiles\SQLiteCpp.dir\src\Column.cpp.obj -c C:\Users\MassiveAtoms\Documents\C++\Parkmanne\thirdparty\SQLiteCpp\src\Column.cpp
thirdparty/SQLiteCpp/CMakeFiles/SQLiteCpp.dir/src/Column.cpp.i: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/SQLiteCpp.dir/src/Column.cpp.i"
cd /d C:\Users\MassiveAtoms\Documents\C++\Parkmanne\thirdparty\SQLiteCpp && C:\MSYS\mingw64\bin\g++.exe $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E C:\Users\MassiveAtoms\Documents\C++\Parkmanne\thirdparty\SQLiteCpp\src\Column.cpp > CMakeFiles\SQLiteCpp.dir\src\Column.cpp.i
thirdparty/SQLiteCpp/CMakeFiles/SQLiteCpp.dir/src/Column.cpp.s: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/SQLiteCpp.dir/src/Column.cpp.s"
cd /d C:\Users\MassiveAtoms\Documents\C++\Parkmanne\thirdparty\SQLiteCpp && C:\MSYS\mingw64\bin\g++.exe $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S C:\Users\MassiveAtoms\Documents\C++\Parkmanne\thirdparty\SQLiteCpp\src\Column.cpp -o CMakeFiles\SQLiteCpp.dir\src\Column.cpp.s
thirdparty/SQLiteCpp/CMakeFiles/SQLiteCpp.dir/src/Database.cpp.obj: thirdparty/SQLiteCpp/CMakeFiles/SQLiteCpp.dir/flags.make
thirdparty/SQLiteCpp/CMakeFiles/SQLiteCpp.dir/src/Database.cpp.obj: thirdparty/SQLiteCpp/CMakeFiles/SQLiteCpp.dir/includes_CXX.rsp
thirdparty/SQLiteCpp/CMakeFiles/SQLiteCpp.dir/src/Database.cpp.obj: thirdparty/SQLiteCpp/src/Database.cpp
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=C:\Users\MassiveAtoms\Documents\C++\Parkmanne\CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Building CXX object thirdparty/SQLiteCpp/CMakeFiles/SQLiteCpp.dir/src/Database.cpp.obj"
cd /d C:\Users\MassiveAtoms\Documents\C++\Parkmanne\thirdparty\SQLiteCpp && C:\MSYS\mingw64\bin\g++.exe $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -o CMakeFiles\SQLiteCpp.dir\src\Database.cpp.obj -c C:\Users\MassiveAtoms\Documents\C++\Parkmanne\thirdparty\SQLiteCpp\src\Database.cpp
thirdparty/SQLiteCpp/CMakeFiles/SQLiteCpp.dir/src/Database.cpp.i: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/SQLiteCpp.dir/src/Database.cpp.i"
cd /d C:\Users\MassiveAtoms\Documents\C++\Parkmanne\thirdparty\SQLiteCpp && C:\MSYS\mingw64\bin\g++.exe $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E C:\Users\MassiveAtoms\Documents\C++\Parkmanne\thirdparty\SQLiteCpp\src\Database.cpp > CMakeFiles\SQLiteCpp.dir\src\Database.cpp.i
thirdparty/SQLiteCpp/CMakeFiles/SQLiteCpp.dir/src/Database.cpp.s: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/SQLiteCpp.dir/src/Database.cpp.s"
cd /d C:\Users\MassiveAtoms\Documents\C++\Parkmanne\thirdparty\SQLiteCpp && C:\MSYS\mingw64\bin\g++.exe $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S C:\Users\MassiveAtoms\Documents\C++\Parkmanne\thirdparty\SQLiteCpp\src\Database.cpp -o CMakeFiles\SQLiteCpp.dir\src\Database.cpp.s
thirdparty/SQLiteCpp/CMakeFiles/SQLiteCpp.dir/src/Exception.cpp.obj: thirdparty/SQLiteCpp/CMakeFiles/SQLiteCpp.dir/flags.make
thirdparty/SQLiteCpp/CMakeFiles/SQLiteCpp.dir/src/Exception.cpp.obj: thirdparty/SQLiteCpp/CMakeFiles/SQLiteCpp.dir/includes_CXX.rsp
thirdparty/SQLiteCpp/CMakeFiles/SQLiteCpp.dir/src/Exception.cpp.obj: thirdparty/SQLiteCpp/src/Exception.cpp
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=C:\Users\MassiveAtoms\Documents\C++\Parkmanne\CMakeFiles --progress-num=$(CMAKE_PROGRESS_4) "Building CXX object thirdparty/SQLiteCpp/CMakeFiles/SQLiteCpp.dir/src/Exception.cpp.obj"
cd /d C:\Users\MassiveAtoms\Documents\C++\Parkmanne\thirdparty\SQLiteCpp && C:\MSYS\mingw64\bin\g++.exe $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -o CMakeFiles\SQLiteCpp.dir\src\Exception.cpp.obj -c C:\Users\MassiveAtoms\Documents\C++\Parkmanne\thirdparty\SQLiteCpp\src\Exception.cpp
thirdparty/SQLiteCpp/CMakeFiles/SQLiteCpp.dir/src/Exception.cpp.i: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/SQLiteCpp.dir/src/Exception.cpp.i"
cd /d C:\Users\MassiveAtoms\Documents\C++\Parkmanne\thirdparty\SQLiteCpp && C:\MSYS\mingw64\bin\g++.exe $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E C:\Users\MassiveAtoms\Documents\C++\Parkmanne\thirdparty\SQLiteCpp\src\Exception.cpp > CMakeFiles\SQLiteCpp.dir\src\Exception.cpp.i
thirdparty/SQLiteCpp/CMakeFiles/SQLiteCpp.dir/src/Exception.cpp.s: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/SQLiteCpp.dir/src/Exception.cpp.s"
cd /d C:\Users\MassiveAtoms\Documents\C++\Parkmanne\thirdparty\SQLiteCpp && C:\MSYS\mingw64\bin\g++.exe $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S C:\Users\MassiveAtoms\Documents\C++\Parkmanne\thirdparty\SQLiteCpp\src\Exception.cpp -o CMakeFiles\SQLiteCpp.dir\src\Exception.cpp.s
thirdparty/SQLiteCpp/CMakeFiles/SQLiteCpp.dir/src/Statement.cpp.obj: thirdparty/SQLiteCpp/CMakeFiles/SQLiteCpp.dir/flags.make
thirdparty/SQLiteCpp/CMakeFiles/SQLiteCpp.dir/src/Statement.cpp.obj: thirdparty/SQLiteCpp/CMakeFiles/SQLiteCpp.dir/includes_CXX.rsp
thirdparty/SQLiteCpp/CMakeFiles/SQLiteCpp.dir/src/Statement.cpp.obj: thirdparty/SQLiteCpp/src/Statement.cpp
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=C:\Users\MassiveAtoms\Documents\C++\Parkmanne\CMakeFiles --progress-num=$(CMAKE_PROGRESS_5) "Building CXX object thirdparty/SQLiteCpp/CMakeFiles/SQLiteCpp.dir/src/Statement.cpp.obj"
cd /d C:\Users\MassiveAtoms\Documents\C++\Parkmanne\thirdparty\SQLiteCpp && C:\MSYS\mingw64\bin\g++.exe $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -o CMakeFiles\SQLiteCpp.dir\src\Statement.cpp.obj -c C:\Users\MassiveAtoms\Documents\C++\Parkmanne\thirdparty\SQLiteCpp\src\Statement.cpp
thirdparty/SQLiteCpp/CMakeFiles/SQLiteCpp.dir/src/Statement.cpp.i: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/SQLiteCpp.dir/src/Statement.cpp.i"
cd /d C:\Users\MassiveAtoms\Documents\C++\Parkmanne\thirdparty\SQLiteCpp && C:\MSYS\mingw64\bin\g++.exe $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E C:\Users\MassiveAtoms\Documents\C++\Parkmanne\thirdparty\SQLiteCpp\src\Statement.cpp > CMakeFiles\SQLiteCpp.dir\src\Statement.cpp.i
thirdparty/SQLiteCpp/CMakeFiles/SQLiteCpp.dir/src/Statement.cpp.s: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/SQLiteCpp.dir/src/Statement.cpp.s"
cd /d C:\Users\MassiveAtoms\Documents\C++\Parkmanne\thirdparty\SQLiteCpp && C:\MSYS\mingw64\bin\g++.exe $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S C:\Users\MassiveAtoms\Documents\C++\Parkmanne\thirdparty\SQLiteCpp\src\Statement.cpp -o CMakeFiles\SQLiteCpp.dir\src\Statement.cpp.s
thirdparty/SQLiteCpp/CMakeFiles/SQLiteCpp.dir/src/Transaction.cpp.obj: thirdparty/SQLiteCpp/CMakeFiles/SQLiteCpp.dir/flags.make
thirdparty/SQLiteCpp/CMakeFiles/SQLiteCpp.dir/src/Transaction.cpp.obj: thirdparty/SQLiteCpp/CMakeFiles/SQLiteCpp.dir/includes_CXX.rsp
thirdparty/SQLiteCpp/CMakeFiles/SQLiteCpp.dir/src/Transaction.cpp.obj: thirdparty/SQLiteCpp/src/Transaction.cpp
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=C:\Users\MassiveAtoms\Documents\C++\Parkmanne\CMakeFiles --progress-num=$(CMAKE_PROGRESS_6) "Building CXX object thirdparty/SQLiteCpp/CMakeFiles/SQLiteCpp.dir/src/Transaction.cpp.obj"
cd /d C:\Users\MassiveAtoms\Documents\C++\Parkmanne\thirdparty\SQLiteCpp && C:\MSYS\mingw64\bin\g++.exe $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -o CMakeFiles\SQLiteCpp.dir\src\Transaction.cpp.obj -c C:\Users\MassiveAtoms\Documents\C++\Parkmanne\thirdparty\SQLiteCpp\src\Transaction.cpp
thirdparty/SQLiteCpp/CMakeFiles/SQLiteCpp.dir/src/Transaction.cpp.i: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/SQLiteCpp.dir/src/Transaction.cpp.i"
cd /d C:\Users\MassiveAtoms\Documents\C++\Parkmanne\thirdparty\SQLiteCpp && C:\MSYS\mingw64\bin\g++.exe $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E C:\Users\MassiveAtoms\Documents\C++\Parkmanne\thirdparty\SQLiteCpp\src\Transaction.cpp > CMakeFiles\SQLiteCpp.dir\src\Transaction.cpp.i
thirdparty/SQLiteCpp/CMakeFiles/SQLiteCpp.dir/src/Transaction.cpp.s: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/SQLiteCpp.dir/src/Transaction.cpp.s"
cd /d C:\Users\MassiveAtoms\Documents\C++\Parkmanne\thirdparty\SQLiteCpp && C:\MSYS\mingw64\bin\g++.exe $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S C:\Users\MassiveAtoms\Documents\C++\Parkmanne\thirdparty\SQLiteCpp\src\Transaction.cpp -o CMakeFiles\SQLiteCpp.dir\src\Transaction.cpp.s
# Object files for target SQLiteCpp
SQLiteCpp_OBJECTS = \
"CMakeFiles/SQLiteCpp.dir/src/Backup.cpp.obj" \
"CMakeFiles/SQLiteCpp.dir/src/Column.cpp.obj" \
"CMakeFiles/SQLiteCpp.dir/src/Database.cpp.obj" \
"CMakeFiles/SQLiteCpp.dir/src/Exception.cpp.obj" \
"CMakeFiles/SQLiteCpp.dir/src/Statement.cpp.obj" \
"CMakeFiles/SQLiteCpp.dir/src/Transaction.cpp.obj"
# External object files for target SQLiteCpp
SQLiteCpp_EXTERNAL_OBJECTS =
thirdparty/SQLiteCpp/libSQLiteCpp.a: thirdparty/SQLiteCpp/CMakeFiles/SQLiteCpp.dir/src/Backup.cpp.obj
thirdparty/SQLiteCpp/libSQLiteCpp.a: thirdparty/SQLiteCpp/CMakeFiles/SQLiteCpp.dir/src/Column.cpp.obj
thirdparty/SQLiteCpp/libSQLiteCpp.a: thirdparty/SQLiteCpp/CMakeFiles/SQLiteCpp.dir/src/Database.cpp.obj
thirdparty/SQLiteCpp/libSQLiteCpp.a: thirdparty/SQLiteCpp/CMakeFiles/SQLiteCpp.dir/src/Exception.cpp.obj
thirdparty/SQLiteCpp/libSQLiteCpp.a: thirdparty/SQLiteCpp/CMakeFiles/SQLiteCpp.dir/src/Statement.cpp.obj
thirdparty/SQLiteCpp/libSQLiteCpp.a: thirdparty/SQLiteCpp/CMakeFiles/SQLiteCpp.dir/src/Transaction.cpp.obj
thirdparty/SQLiteCpp/libSQLiteCpp.a: thirdparty/SQLiteCpp/CMakeFiles/SQLiteCpp.dir/build.make
thirdparty/SQLiteCpp/libSQLiteCpp.a: thirdparty/SQLiteCpp/CMakeFiles/SQLiteCpp.dir/link.txt
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --bold --progress-dir=C:\Users\MassiveAtoms\Documents\C++\Parkmanne\CMakeFiles --progress-num=$(CMAKE_PROGRESS_7) "Linking CXX static library libSQLiteCpp.a"
cd /d C:\Users\MassiveAtoms\Documents\C++\Parkmanne\thirdparty\SQLiteCpp && $(CMAKE_COMMAND) -P CMakeFiles\SQLiteCpp.dir\cmake_clean_target.cmake
cd /d C:\Users\MassiveAtoms\Documents\C++\Parkmanne\thirdparty\SQLiteCpp && $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles\SQLiteCpp.dir\link.txt --verbose=$(VERBOSE)
# Rule to build all files generated by this target.
thirdparty/SQLiteCpp/CMakeFiles/SQLiteCpp.dir/build: thirdparty/SQLiteCpp/libSQLiteCpp.a
.PHONY : thirdparty/SQLiteCpp/CMakeFiles/SQLiteCpp.dir/build
thirdparty/SQLiteCpp/CMakeFiles/SQLiteCpp.dir/clean:
cd /d C:\Users\MassiveAtoms\Documents\C++\Parkmanne\thirdparty\SQLiteCpp && $(CMAKE_COMMAND) -P CMakeFiles\SQLiteCpp.dir\cmake_clean.cmake
.PHONY : thirdparty/SQLiteCpp/CMakeFiles/SQLiteCpp.dir/clean
thirdparty/SQLiteCpp/CMakeFiles/SQLiteCpp.dir/depend:
$(CMAKE_COMMAND) -E cmake_depends "MinGW Makefiles" C:\Users\MassiveAtoms\Documents\C++\Parkmanne C:\Users\MassiveAtoms\Documents\C++\Parkmanne\thirdparty\SQLiteCpp C:\Users\MassiveAtoms\Documents\C++\Parkmanne C:\Users\MassiveAtoms\Documents\C++\Parkmanne\thirdparty\SQLiteCpp C:\Users\MassiveAtoms\Documents\C++\Parkmanne\thirdparty\SQLiteCpp\CMakeFiles\SQLiteCpp.dir\DependInfo.cmake --color=$(COLOR)
.PHONY : thirdparty/SQLiteCpp/CMakeFiles/SQLiteCpp.dir/depend

View File

@ -0,0 +1,15 @@
file(REMOVE_RECURSE
"CMakeFiles/SQLiteCpp.dir/src/Backup.cpp.obj"
"CMakeFiles/SQLiteCpp.dir/src/Column.cpp.obj"
"CMakeFiles/SQLiteCpp.dir/src/Database.cpp.obj"
"CMakeFiles/SQLiteCpp.dir/src/Exception.cpp.obj"
"CMakeFiles/SQLiteCpp.dir/src/Statement.cpp.obj"
"CMakeFiles/SQLiteCpp.dir/src/Transaction.cpp.obj"
"libSQLiteCpp.pdb"
"libSQLiteCpp.a"
)
# Per-language clean rules from dependency scanning.
foreach(lang CXX)
include(CMakeFiles/SQLiteCpp.dir/cmake_clean_${lang}.cmake OPTIONAL)
endforeach()

View File

@ -0,0 +1,3 @@
file(REMOVE_RECURSE
"libSQLiteCpp.a"
)

View File

@ -0,0 +1,2 @@
# Empty dependencies file for SQLiteCpp.
# This may be replaced when dependencies are built.

View File

@ -0,0 +1,10 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "MinGW Makefiles" Generator, CMake Version 3.14
# compile CXX with C:/MSYS/mingw64/bin/g++.exe
CXX_FLAGS = -Wno-c++0x-compat -fstack-protector -Wall -Wextra -Wpedantic -Wno-long-long -Wswitch-enum -Wshadow -Winline -std=gnu++11
CXX_DEFINES = -DSQLITE_ENABLE_COLUMN_METADATA
CXX_INCLUDES = @CMakeFiles/SQLiteCpp.dir/includes_CXX.rsp

View File

@ -0,0 +1 @@
-IC:/Users/MassiveAtoms/Documents/C++/Parkmanne/thirdparty/SQLiteCpp/include -IC:/Users/MassiveAtoms/Documents/C++/Parkmanne/thirdparty/SQLiteCpp/sqlite3

View File

@ -0,0 +1,2 @@
C:\MSYS\mingw64\bin\ar.exe qc libSQLiteCpp.a CMakeFiles/SQLiteCpp.dir/src/Backup.cpp.obj CMakeFiles/SQLiteCpp.dir/src/Column.cpp.obj CMakeFiles/SQLiteCpp.dir/src/Database.cpp.obj CMakeFiles/SQLiteCpp.dir/src/Exception.cpp.obj CMakeFiles/SQLiteCpp.dir/src/Statement.cpp.obj CMakeFiles/SQLiteCpp.dir/src/Transaction.cpp.obj
C:\MSYS\mingw64\bin\ranlib.exe libSQLiteCpp.a

View File

@ -0,0 +1,8 @@
CMAKE_PROGRESS_1 = 1
CMAKE_PROGRESS_2 = 2
CMAKE_PROGRESS_3 = 3
CMAKE_PROGRESS_4 = 4
CMAKE_PROGRESS_5 = 5
CMAKE_PROGRESS_6 = 6
CMAKE_PROGRESS_7 = 7

View File

@ -0,0 +1,11 @@
# The set of languages for which implicit dependencies are needed:
set(CMAKE_DEPENDS_LANGUAGES
)
# The set of files for implicit dependencies of each language:
# Targets to which this target links.
set(CMAKE_TARGET_LINKED_INFO_FILES
)
# Fortran module output directory.
set(CMAKE_Fortran_TARGET_MODULE_DIR "")

View File

@ -0,0 +1,75 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "MinGW Makefiles" Generator, CMake Version 3.14
# Delete rule output on recipe failure.
.DELETE_ON_ERROR:
#=============================================================================
# Special targets provided by cmake.
# Disable implicit rules so canonical targets will work.
.SUFFIXES:
# Remove some rules from gmake that .SUFFIXES does not remove.
SUFFIXES =
.SUFFIXES: .hpux_make_needs_suffix_list
# Suppress display of executed commands.
$(VERBOSE).SILENT:
# A target that is always out of date.
cmake_force:
.PHONY : cmake_force
#=============================================================================
# Set environment variables for the build.
SHELL = cmd.exe
# The CMake executable.
CMAKE_COMMAND = C:\MSYS\mingw64\bin\cmake.exe
# The command to remove a file.
RM = C:\MSYS\mingw64\bin\cmake.exe -E remove -f
# Escaping for special characters.
EQUALS = =
# The top-level source directory on which CMake was run.
CMAKE_SOURCE_DIR = C:\Users\MassiveAtoms\Documents\C++\Parkmanne
# The top-level build directory on which CMake was run.
CMAKE_BINARY_DIR = C:\Users\MassiveAtoms\Documents\C++\Parkmanne
# Utility rule file for SQLiteCpp_cpplint.
# Include the progress variables for this target.
include thirdparty/SQLiteCpp/CMakeFiles/SQLiteCpp_cpplint.dir/progress.make
thirdparty/SQLiteCpp/CMakeFiles/SQLiteCpp_cpplint:
cd /d C:\Users\MassiveAtoms\Documents\C++\Parkmanne\thirdparty\SQLiteCpp && C:\Anaconda3\python.exe C:/Users/MassiveAtoms/Documents/C++/Parkmanne/thirdparty/SQLiteCpp/cpplint.py --output=eclipse --verbose=3 --linelength=120 C:/Users/MassiveAtoms/Documents/C++/Parkmanne/thirdparty/SQLiteCpp/src/Backup.cpp C:/Users/MassiveAtoms/Documents/C++/Parkmanne/thirdparty/SQLiteCpp/src/Column.cpp C:/Users/MassiveAtoms/Documents/C++/Parkmanne/thirdparty/SQLiteCpp/src/Database.cpp C:/Users/MassiveAtoms/Documents/C++/Parkmanne/thirdparty/SQLiteCpp/src/Exception.cpp C:/Users/MassiveAtoms/Documents/C++/Parkmanne/thirdparty/SQLiteCpp/src/Statement.cpp C:/Users/MassiveAtoms/Documents/C++/Parkmanne/thirdparty/SQLiteCpp/src/Transaction.cpp C:/Users/MassiveAtoms/Documents/C++/Parkmanne/thirdparty/SQLiteCpp/include/SQLiteCpp/SQLiteCpp.h C:/Users/MassiveAtoms/Documents/C++/Parkmanne/thirdparty/SQLiteCpp/include/SQLiteCpp/Assertion.h C:/Users/MassiveAtoms/Documents/C++/Parkmanne/thirdparty/SQLiteCpp/include/SQLiteCpp/Backup.h C:/Users/MassiveAtoms/Documents/C++/Parkmanne/thirdparty/SQLiteCpp/include/SQLiteCpp/Column.h C:/Users/MassiveAtoms/Documents/C++/Parkmanne/thirdparty/SQLiteCpp/include/SQLiteCpp/Database.h C:/Users/MassiveAtoms/Documents/C++/Parkmanne/thirdparty/SQLiteCpp/include/SQLiteCpp/Exception.h C:/Users/MassiveAtoms/Documents/C++/Parkmanne/thirdparty/SQLiteCpp/include/SQLiteCpp/Statement.h C:/Users/MassiveAtoms/Documents/C++/Parkmanne/thirdparty/SQLiteCpp/include/SQLiteCpp/Transaction.h C:/Users/MassiveAtoms/Documents/C++/Parkmanne/thirdparty/SQLiteCpp/include/SQLiteCpp/Utils.h C:/Users/MassiveAtoms/Documents/C++/Parkmanne/thirdparty/SQLiteCpp/include/SQLiteCpp/VariadicBind.h C:/Users/MassiveAtoms/Documents/C++/Parkmanne/thirdparty/SQLiteCpp/include/SQLiteCpp/ExecuteMany.h
SQLiteCpp_cpplint: thirdparty/SQLiteCpp/CMakeFiles/SQLiteCpp_cpplint
SQLiteCpp_cpplint: thirdparty/SQLiteCpp/CMakeFiles/SQLiteCpp_cpplint.dir/build.make
.PHONY : SQLiteCpp_cpplint
# Rule to build all files generated by this target.
thirdparty/SQLiteCpp/CMakeFiles/SQLiteCpp_cpplint.dir/build: SQLiteCpp_cpplint
.PHONY : thirdparty/SQLiteCpp/CMakeFiles/SQLiteCpp_cpplint.dir/build
thirdparty/SQLiteCpp/CMakeFiles/SQLiteCpp_cpplint.dir/clean:
cd /d C:\Users\MassiveAtoms\Documents\C++\Parkmanne\thirdparty\SQLiteCpp && $(CMAKE_COMMAND) -P CMakeFiles\SQLiteCpp_cpplint.dir\cmake_clean.cmake
.PHONY : thirdparty/SQLiteCpp/CMakeFiles/SQLiteCpp_cpplint.dir/clean
thirdparty/SQLiteCpp/CMakeFiles/SQLiteCpp_cpplint.dir/depend:
$(CMAKE_COMMAND) -E cmake_depends "MinGW Makefiles" C:\Users\MassiveAtoms\Documents\C++\Parkmanne C:\Users\MassiveAtoms\Documents\C++\Parkmanne\thirdparty\SQLiteCpp C:\Users\MassiveAtoms\Documents\C++\Parkmanne C:\Users\MassiveAtoms\Documents\C++\Parkmanne\thirdparty\SQLiteCpp C:\Users\MassiveAtoms\Documents\C++\Parkmanne\thirdparty\SQLiteCpp\CMakeFiles\SQLiteCpp_cpplint.dir\DependInfo.cmake --color=$(COLOR)
.PHONY : thirdparty/SQLiteCpp/CMakeFiles/SQLiteCpp_cpplint.dir/depend

View File

@ -0,0 +1,8 @@
file(REMOVE_RECURSE
"CMakeFiles/SQLiteCpp_cpplint"
)
# Per-language clean rules from dependency scanning.
foreach(lang )
include(CMakeFiles/SQLiteCpp_cpplint.dir/cmake_clean_${lang}.cmake OPTIONAL)
endforeach()

View File

@ -0,0 +1 @@

View File

@ -0,0 +1 @@
9

View File

@ -0,0 +1,16 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "MinGW Makefiles" Generator, CMake Version 3.14
# Relative path conversion top directories.
set(CMAKE_RELATIVE_PATH_TOP_SOURCE "C:/Users/MassiveAtoms/Documents/C++/Parkmanne")
set(CMAKE_RELATIVE_PATH_TOP_BINARY "C:/Users/MassiveAtoms/Documents/C++/Parkmanne")
# Force unix paths in dependencies.
set(CMAKE_FORCE_UNIX_PATHS 1)
# The C and CXX include file regular expressions for this directory.
set(CMAKE_C_INCLUDE_REGEX_SCAN "^.*$")
set(CMAKE_C_INCLUDE_REGEX_COMPLAIN "^$")
set(CMAKE_CXX_INCLUDE_REGEX_SCAN ${CMAKE_C_INCLUDE_REGEX_SCAN})
set(CMAKE_CXX_INCLUDE_REGEX_COMPLAIN ${CMAKE_C_INCLUDE_REGEX_COMPLAIN})

View File

@ -0,0 +1 @@
2

View File

@ -0,0 +1,27 @@
# The set of languages for which implicit dependencies are needed:
set(CMAKE_DEPENDS_LANGUAGES
"C"
)
# The set of files for implicit dependencies of each language:
set(CMAKE_DEPENDS_CHECK_C
"C:/Users/MassiveAtoms/Documents/C++/Parkmanne/thirdparty/SQLiteCpp/sqlite3/sqlite3.c" "C:/Users/MassiveAtoms/Documents/C++/Parkmanne/thirdparty/SQLiteCpp/sqlite3/CMakeFiles/sqlite3.dir/sqlite3.c.obj"
)
set(CMAKE_C_COMPILER_ID "GNU")
# Preprocessor definitions for this target.
set(CMAKE_TARGET_DEFINITIONS_C
"SQLITE_ENABLE_COLUMN_METADATA"
)
# The include file search paths:
set(CMAKE_C_TARGET_INCLUDE_PATH
"thirdparty/SQLiteCpp/include"
"thirdparty/SQLiteCpp/sqlite3"
)
# Targets to which this target links.
set(CMAKE_TARGET_LINKED_INFO_FILES
)
# Fortran module output directory.
set(CMAKE_Fortran_TARGET_MODULE_DIR "")

View File

@ -0,0 +1,99 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "MinGW Makefiles" Generator, CMake Version 3.14
# Delete rule output on recipe failure.
.DELETE_ON_ERROR:
#=============================================================================
# Special targets provided by cmake.
# Disable implicit rules so canonical targets will work.
.SUFFIXES:
# Remove some rules from gmake that .SUFFIXES does not remove.
SUFFIXES =
.SUFFIXES: .hpux_make_needs_suffix_list
# Suppress display of executed commands.
$(VERBOSE).SILENT:
# A target that is always out of date.
cmake_force:
.PHONY : cmake_force
#=============================================================================
# Set environment variables for the build.
SHELL = cmd.exe
# The CMake executable.
CMAKE_COMMAND = C:\MSYS\mingw64\bin\cmake.exe
# The command to remove a file.
RM = C:\MSYS\mingw64\bin\cmake.exe -E remove -f
# Escaping for special characters.
EQUALS = =
# The top-level source directory on which CMake was run.
CMAKE_SOURCE_DIR = C:\Users\MassiveAtoms\Documents\C++\Parkmanne
# The top-level build directory on which CMake was run.
CMAKE_BINARY_DIR = C:\Users\MassiveAtoms\Documents\C++\Parkmanne
# Include any dependencies generated for this target.
include thirdparty/SQLiteCpp/sqlite3/CMakeFiles/sqlite3.dir/depend.make
# Include the progress variables for this target.
include thirdparty/SQLiteCpp/sqlite3/CMakeFiles/sqlite3.dir/progress.make
# Include the compile flags for this target's objects.
include thirdparty/SQLiteCpp/sqlite3/CMakeFiles/sqlite3.dir/flags.make
thirdparty/SQLiteCpp/sqlite3/CMakeFiles/sqlite3.dir/sqlite3.c.obj: thirdparty/SQLiteCpp/sqlite3/CMakeFiles/sqlite3.dir/flags.make
thirdparty/SQLiteCpp/sqlite3/CMakeFiles/sqlite3.dir/sqlite3.c.obj: thirdparty/SQLiteCpp/sqlite3/CMakeFiles/sqlite3.dir/includes_C.rsp
thirdparty/SQLiteCpp/sqlite3/CMakeFiles/sqlite3.dir/sqlite3.c.obj: thirdparty/SQLiteCpp/sqlite3/sqlite3.c
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=C:\Users\MassiveAtoms\Documents\C++\Parkmanne\CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building C object thirdparty/SQLiteCpp/sqlite3/CMakeFiles/sqlite3.dir/sqlite3.c.obj"
cd /d C:\Users\MassiveAtoms\Documents\C++\Parkmanne\thirdparty\SQLiteCpp\sqlite3 && C:\MSYS\mingw64\bin\gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles\sqlite3.dir\sqlite3.c.obj -c C:\Users\MassiveAtoms\Documents\C++\Parkmanne\thirdparty\SQLiteCpp\sqlite3\sqlite3.c
thirdparty/SQLiteCpp/sqlite3/CMakeFiles/sqlite3.dir/sqlite3.c.i: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/sqlite3.dir/sqlite3.c.i"
cd /d C:\Users\MassiveAtoms\Documents\C++\Parkmanne\thirdparty\SQLiteCpp\sqlite3 && C:\MSYS\mingw64\bin\gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E C:\Users\MassiveAtoms\Documents\C++\Parkmanne\thirdparty\SQLiteCpp\sqlite3\sqlite3.c > CMakeFiles\sqlite3.dir\sqlite3.c.i
thirdparty/SQLiteCpp/sqlite3/CMakeFiles/sqlite3.dir/sqlite3.c.s: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/sqlite3.dir/sqlite3.c.s"
cd /d C:\Users\MassiveAtoms\Documents\C++\Parkmanne\thirdparty\SQLiteCpp\sqlite3 && C:\MSYS\mingw64\bin\gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S C:\Users\MassiveAtoms\Documents\C++\Parkmanne\thirdparty\SQLiteCpp\sqlite3\sqlite3.c -o CMakeFiles\sqlite3.dir\sqlite3.c.s
# Object files for target sqlite3
sqlite3_OBJECTS = \
"CMakeFiles/sqlite3.dir/sqlite3.c.obj"
# External object files for target sqlite3
sqlite3_EXTERNAL_OBJECTS =
thirdparty/SQLiteCpp/sqlite3/libsqlite3.a: thirdparty/SQLiteCpp/sqlite3/CMakeFiles/sqlite3.dir/sqlite3.c.obj
thirdparty/SQLiteCpp/sqlite3/libsqlite3.a: thirdparty/SQLiteCpp/sqlite3/CMakeFiles/sqlite3.dir/build.make
thirdparty/SQLiteCpp/sqlite3/libsqlite3.a: thirdparty/SQLiteCpp/sqlite3/CMakeFiles/sqlite3.dir/link.txt
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --bold --progress-dir=C:\Users\MassiveAtoms\Documents\C++\Parkmanne\CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Linking C static library libsqlite3.a"
cd /d C:\Users\MassiveAtoms\Documents\C++\Parkmanne\thirdparty\SQLiteCpp\sqlite3 && $(CMAKE_COMMAND) -P CMakeFiles\sqlite3.dir\cmake_clean_target.cmake
cd /d C:\Users\MassiveAtoms\Documents\C++\Parkmanne\thirdparty\SQLiteCpp\sqlite3 && $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles\sqlite3.dir\link.txt --verbose=$(VERBOSE)
# Rule to build all files generated by this target.
thirdparty/SQLiteCpp/sqlite3/CMakeFiles/sqlite3.dir/build: thirdparty/SQLiteCpp/sqlite3/libsqlite3.a
.PHONY : thirdparty/SQLiteCpp/sqlite3/CMakeFiles/sqlite3.dir/build
thirdparty/SQLiteCpp/sqlite3/CMakeFiles/sqlite3.dir/clean:
cd /d C:\Users\MassiveAtoms\Documents\C++\Parkmanne\thirdparty\SQLiteCpp\sqlite3 && $(CMAKE_COMMAND) -P CMakeFiles\sqlite3.dir\cmake_clean.cmake
.PHONY : thirdparty/SQLiteCpp/sqlite3/CMakeFiles/sqlite3.dir/clean
thirdparty/SQLiteCpp/sqlite3/CMakeFiles/sqlite3.dir/depend:
$(CMAKE_COMMAND) -E cmake_depends "MinGW Makefiles" C:\Users\MassiveAtoms\Documents\C++\Parkmanne C:\Users\MassiveAtoms\Documents\C++\Parkmanne\thirdparty\SQLiteCpp\sqlite3 C:\Users\MassiveAtoms\Documents\C++\Parkmanne C:\Users\MassiveAtoms\Documents\C++\Parkmanne\thirdparty\SQLiteCpp\sqlite3 C:\Users\MassiveAtoms\Documents\C++\Parkmanne\thirdparty\SQLiteCpp\sqlite3\CMakeFiles\sqlite3.dir\DependInfo.cmake --color=$(COLOR)
.PHONY : thirdparty/SQLiteCpp/sqlite3/CMakeFiles/sqlite3.dir/depend

View File

@ -0,0 +1,10 @@
file(REMOVE_RECURSE
"CMakeFiles/sqlite3.dir/sqlite3.c.obj"
"libsqlite3.pdb"
"libsqlite3.a"
)
# Per-language clean rules from dependency scanning.
foreach(lang C)
include(CMakeFiles/sqlite3.dir/cmake_clean_${lang}.cmake OPTIONAL)
endforeach()

View File

@ -0,0 +1,3 @@
file(REMOVE_RECURSE
"libsqlite3.a"
)

View File

@ -0,0 +1,2 @@
# Empty dependencies file for sqlite3.
# This may be replaced when dependencies are built.

View File

@ -0,0 +1,10 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "MinGW Makefiles" Generator, CMake Version 3.14
# compile C with C:/MSYS/mingw64/bin/gcc.exe
C_FLAGS = -fstack-protector -Wall -Wextra -Wpedantic -Wno-long-long -Wswitch-enum -Wshadow -Winline
C_DEFINES = -DSQLITE_ENABLE_COLUMN_METADATA
C_INCLUDES = @CMakeFiles/sqlite3.dir/includes_C.rsp

View File

@ -0,0 +1 @@
-IC:/Users/MassiveAtoms/Documents/C++/Parkmanne/thirdparty/SQLiteCpp/include -IC:/Users/MassiveAtoms/Documents/C++/Parkmanne/thirdparty/SQLiteCpp/sqlite3

View File

@ -0,0 +1,2 @@
C:\MSYS\mingw64\bin\ar.exe qc libsqlite3.a CMakeFiles/sqlite3.dir/sqlite3.c.obj
C:\MSYS\mingw64\bin\ranlib.exe libsqlite3.a

View File

@ -0,0 +1,3 @@
CMAKE_PROGRESS_1 = 14
CMAKE_PROGRESS_2 = 15