6 Commits

34 changed files with 759 additions and 6 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

@ -2,10 +2,9 @@
#include <iostream> #include <iostream>
// moet aangepast worden om een verhicle_type toe te voegen // moet aangepast worden om een verhicle_type toe te voegen
Customer::Customer(int id_, string name_, string card_code_) Customer::Customer(int id_, string name_)
: id { id_ } : id { id_ }
, name { name_ } , name { name_ }
, card_code { card_code_ }
{ {
} }

View File

@ -12,9 +12,9 @@ using std::string;
// enum type is basically een manier om categories te representen als een integer in the background, maar om t in code // 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. // aan te geven als de actual category.
enum class Verhicle_type { enum class Verhicle_type {
"small" = 1, small = 1,
"medium" = 2, medium = 2,
"large" = 3, large = 3,
}; };
/* /*

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

@ -6,7 +6,7 @@
/* /*
Code strucure like this: Code strucure like this:
als class declarations in /headers/class_naam.h, en definitions van de member objects in /class_naam.cpp 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. 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. En header/source split om multiple definition errors tegen te gaan.

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