added cmake file for easier building
This commit is contained in:
		
							
								
								
									
										20
									
								
								CMakeLists.txt
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										20
									
								
								CMakeLists.txt
									
									
									
									
									
										Normal 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)
 | 
				
			||||||
 | 
					       )
 | 
				
			||||||
@@ -2,16 +2,19 @@
 | 
				
			|||||||
#include <iostream>
 | 
					#include <iostream>
 | 
				
			||||||
#include <string>
 | 
					#include <string>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					using std::cout;
 | 
				
			||||||
 | 
					void interface_customer(void);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
void main_interface(void)
 | 
					void main_interface(void)
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
    int selector=0;
 | 
					    int selector=0;
 | 
				
			||||||
    std::cout<<"\nHello, There. Welcome to the Parking Area!";
 | 
					    cout<<"\nHello, There. Welcome to the Parking Area!";
 | 
				
			||||||
    std::cout<<"\nPlease select an applicable option:";
 | 
					    cout<<"\nPlease select an applicable option:";
 | 
				
			||||||
    std::cout<<"\n[1]I am a Customer.";
 | 
					    cout<<"\n[1]I am a Customer.";
 | 
				
			||||||
    std::cout<<"\n[2]I am a Member";
 | 
					    cout<<"\n[2]I am a Member";
 | 
				
			||||||
    std::cout<<"\n[3]I am an employee";
 | 
					    cout<<"\n[3]I am an employee";
 | 
				
			||||||
    std::cout<<"\n[4]Clock Out";
 | 
					    cout<<"\n[4]Clock Out";
 | 
				
			||||||
    std::cout<<"\n[5]Log in as Admin";
 | 
					    cout<<"\n[5]Log in as Admin";
 | 
				
			||||||
    std::cin>>selector;
 | 
					    std::cin>>selector;
 | 
				
			||||||
    switch(selector){
 | 
					    switch(selector){
 | 
				
			||||||
        case 1:interface_customer();break;
 | 
					        case 1:interface_customer();break;
 | 
				
			||||||
@@ -24,11 +27,11 @@ void main_interface(void)
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
void select_cartype(void)
 | 
					void select_cartype(void)
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
     std::cout<<"\nWhat type of vehicle do you want to park?";
 | 
					     cout<<"\nWhat type of vehicle do you want to park?";
 | 
				
			||||||
    std::cout<<"\n[1]Bicycle";
 | 
					    cout<<"\n[1]Bicycle";
 | 
				
			||||||
    std::cout<<"\n[2]Motorbike/Motorcycle";
 | 
					    cout<<"\n[2]Motorbike/Motorcycle";
 | 
				
			||||||
    std::cout<<"\n[3]Small to Medium-sized car";
 | 
					    cout<<"\n[3]Small to Medium-sized car";
 | 
				
			||||||
    std::cout<<"\n[4]Large Car (gives you a bigger parking space)";
 | 
					    cout<<"\n[4]Large Car (gives you a bigger parking space)";
 | 
				
			||||||
    std::cin>>selector;
 | 
					    std::cin>>selector;
 | 
				
			||||||
    switch(selector){
 | 
					    switch(selector){
 | 
				
			||||||
        case 1:;break;
 | 
					        case 1:;break;
 | 
				
			||||||
@@ -41,13 +44,13 @@ void select_time(void)//tijd selecteren en omzetten in uren
 | 
				
			|||||||
{
 | 
					{
 | 
				
			||||||
    int selector=0;
 | 
					    int selector=0;
 | 
				
			||||||
    int duration_in_hours=0, m=0, x=0;
 | 
					    int duration_in_hours=0, m=0, x=0;
 | 
				
			||||||
    std::cout<<"\nHow long do you want to park?";
 | 
					    cout<<"\nHow long do you want to park?";
 | 
				
			||||||
    std::cout<<"\n[1]Clock out when leaving";
 | 
					    cout<<"\n[1]Clock out when leaving";
 | 
				
			||||||
    std::cout<<"\n[2]A couple hours";
 | 
					    cout<<"\n[2]A couple hours";
 | 
				
			||||||
    std::cout<<"\n[3]A couple days";
 | 
					    cout<<"\n[3]A couple days";
 | 
				
			||||||
    std::cout<<"\n[4]A couple weeks";
 | 
					    cout<<"\n[4]A couple weeks";
 | 
				
			||||||
    std::cout<<"\n[5]A couple months";
 | 
					    cout<<"\n[5]A couple months";
 | 
				
			||||||
    std::cout<<"\n[6]A couple years";
 | 
					    cout<<"\n[6]A couple years";
 | 
				
			||||||
    std::cin>>selector;
 | 
					    std::cin>>selector;
 | 
				
			||||||
    switch(selector){
 | 
					    switch(selector){
 | 
				
			||||||
        case 1:m=0;break;
 | 
					        case 1:m=0;break;
 | 
				
			||||||
 
 | 
				
			|||||||
							
								
								
									
										16
									
								
								thirdparty/SQLiteCpp/CMakeFiles/CMakeDirectoryInformation.cmake
									
									
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						
									
										16
									
								
								thirdparty/SQLiteCpp/CMakeFiles/CMakeDirectoryInformation.cmake
									
									
									
									
										vendored
									
									
										Normal 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})
 | 
				
			||||||
							
								
								
									
										19
									
								
								thirdparty/SQLiteCpp/CMakeFiles/Export/lib/cmake/SQLiteCpp/SQLiteCppConfig-noconfig.cmake
									
									
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						
									
										19
									
								
								thirdparty/SQLiteCpp/CMakeFiles/Export/lib/cmake/SQLiteCpp/SQLiteCppConfig-noconfig.cmake
									
									
									
									
										vendored
									
									
										Normal 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)
 | 
				
			||||||
							
								
								
									
										94
									
								
								thirdparty/SQLiteCpp/CMakeFiles/Export/lib/cmake/SQLiteCpp/SQLiteCppConfig.cmake
									
									
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						
									
										94
									
								
								thirdparty/SQLiteCpp/CMakeFiles/Export/lib/cmake/SQLiteCpp/SQLiteCppConfig.cmake
									
									
									
									
										vendored
									
									
										Normal 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)
 | 
				
			||||||
							
								
								
									
										32
									
								
								thirdparty/SQLiteCpp/CMakeFiles/SQLiteCpp.dir/DependInfo.cmake
									
									
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						
									
										32
									
								
								thirdparty/SQLiteCpp/CMakeFiles/SQLiteCpp.dir/DependInfo.cmake
									
									
									
									
										vendored
									
									
										Normal 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 "")
 | 
				
			||||||
							
								
								
									
										179
									
								
								thirdparty/SQLiteCpp/CMakeFiles/SQLiteCpp.dir/build.make
									
									
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						
									
										179
									
								
								thirdparty/SQLiteCpp/CMakeFiles/SQLiteCpp.dir/build.make
									
									
									
									
										vendored
									
									
										Normal 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
 | 
				
			||||||
 | 
					
 | 
				
			||||||
							
								
								
									
										15
									
								
								thirdparty/SQLiteCpp/CMakeFiles/SQLiteCpp.dir/cmake_clean.cmake
									
									
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						
									
										15
									
								
								thirdparty/SQLiteCpp/CMakeFiles/SQLiteCpp.dir/cmake_clean.cmake
									
									
									
									
										vendored
									
									
										Normal 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()
 | 
				
			||||||
							
								
								
									
										3
									
								
								thirdparty/SQLiteCpp/CMakeFiles/SQLiteCpp.dir/cmake_clean_target.cmake
									
									
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						
									
										3
									
								
								thirdparty/SQLiteCpp/CMakeFiles/SQLiteCpp.dir/cmake_clean_target.cmake
									
									
									
									
										vendored
									
									
										Normal file
									
								
							@@ -0,0 +1,3 @@
 | 
				
			|||||||
 | 
					file(REMOVE_RECURSE
 | 
				
			||||||
 | 
					  "libSQLiteCpp.a"
 | 
				
			||||||
 | 
					)
 | 
				
			||||||
							
								
								
									
										2
									
								
								thirdparty/SQLiteCpp/CMakeFiles/SQLiteCpp.dir/depend.make
									
									
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						
									
										2
									
								
								thirdparty/SQLiteCpp/CMakeFiles/SQLiteCpp.dir/depend.make
									
									
									
									
										vendored
									
									
										Normal file
									
								
							@@ -0,0 +1,2 @@
 | 
				
			|||||||
 | 
					# Empty dependencies file for SQLiteCpp.
 | 
				
			||||||
 | 
					# This may be replaced when dependencies are built.
 | 
				
			||||||
							
								
								
									
										10
									
								
								thirdparty/SQLiteCpp/CMakeFiles/SQLiteCpp.dir/flags.make
									
									
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						
									
										10
									
								
								thirdparty/SQLiteCpp/CMakeFiles/SQLiteCpp.dir/flags.make
									
									
									
									
										vendored
									
									
										Normal 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
 | 
				
			||||||
 | 
					
 | 
				
			||||||
							
								
								
									
										1
									
								
								thirdparty/SQLiteCpp/CMakeFiles/SQLiteCpp.dir/includes_CXX.rsp
									
									
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						
									
										1
									
								
								thirdparty/SQLiteCpp/CMakeFiles/SQLiteCpp.dir/includes_CXX.rsp
									
									
									
									
										vendored
									
									
										Normal file
									
								
							@@ -0,0 +1 @@
 | 
				
			|||||||
 | 
					-IC:/Users/MassiveAtoms/Documents/C++/Parkmanne/thirdparty/SQLiteCpp/include -IC:/Users/MassiveAtoms/Documents/C++/Parkmanne/thirdparty/SQLiteCpp/sqlite3 
 | 
				
			||||||
							
								
								
									
										2
									
								
								thirdparty/SQLiteCpp/CMakeFiles/SQLiteCpp.dir/link.txt
									
									
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						
									
										2
									
								
								thirdparty/SQLiteCpp/CMakeFiles/SQLiteCpp.dir/link.txt
									
									
									
									
										vendored
									
									
										Normal 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
 | 
				
			||||||
							
								
								
									
										8
									
								
								thirdparty/SQLiteCpp/CMakeFiles/SQLiteCpp.dir/progress.make
									
									
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						
									
										8
									
								
								thirdparty/SQLiteCpp/CMakeFiles/SQLiteCpp.dir/progress.make
									
									
									
									
										vendored
									
									
										Normal 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
 | 
				
			||||||
 | 
					
 | 
				
			||||||
							
								
								
									
										11
									
								
								thirdparty/SQLiteCpp/CMakeFiles/SQLiteCpp_cpplint.dir/DependInfo.cmake
									
									
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						
									
										11
									
								
								thirdparty/SQLiteCpp/CMakeFiles/SQLiteCpp_cpplint.dir/DependInfo.cmake
									
									
									
									
										vendored
									
									
										Normal 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 "")
 | 
				
			||||||
							
								
								
									
										75
									
								
								thirdparty/SQLiteCpp/CMakeFiles/SQLiteCpp_cpplint.dir/build.make
									
									
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						
									
										75
									
								
								thirdparty/SQLiteCpp/CMakeFiles/SQLiteCpp_cpplint.dir/build.make
									
									
									
									
										vendored
									
									
										Normal 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
 | 
				
			||||||
 | 
					
 | 
				
			||||||
							
								
								
									
										8
									
								
								thirdparty/SQLiteCpp/CMakeFiles/SQLiteCpp_cpplint.dir/cmake_clean.cmake
									
									
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						
									
										8
									
								
								thirdparty/SQLiteCpp/CMakeFiles/SQLiteCpp_cpplint.dir/cmake_clean.cmake
									
									
									
									
										vendored
									
									
										Normal 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()
 | 
				
			||||||
							
								
								
									
										1
									
								
								thirdparty/SQLiteCpp/CMakeFiles/SQLiteCpp_cpplint.dir/progress.make
									
									
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						
									
										1
									
								
								thirdparty/SQLiteCpp/CMakeFiles/SQLiteCpp_cpplint.dir/progress.make
									
									
									
									
										vendored
									
									
										Normal file
									
								
							@@ -0,0 +1 @@
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
							
								
								
									
										1
									
								
								thirdparty/SQLiteCpp/CMakeFiles/progress.marks
									
									
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						
									
										1
									
								
								thirdparty/SQLiteCpp/CMakeFiles/progress.marks
									
									
									
									
										vendored
									
									
										Normal file
									
								
							@@ -0,0 +1 @@
 | 
				
			|||||||
 | 
					9
 | 
				
			||||||
							
								
								
									
										16
									
								
								thirdparty/SQLiteCpp/sqlite3/CMakeFiles/CMakeDirectoryInformation.cmake
									
									
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						
									
										16
									
								
								thirdparty/SQLiteCpp/sqlite3/CMakeFiles/CMakeDirectoryInformation.cmake
									
									
									
									
										vendored
									
									
										Normal 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})
 | 
				
			||||||
							
								
								
									
										1
									
								
								thirdparty/SQLiteCpp/sqlite3/CMakeFiles/progress.marks
									
									
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						
									
										1
									
								
								thirdparty/SQLiteCpp/sqlite3/CMakeFiles/progress.marks
									
									
									
									
										vendored
									
									
										Normal file
									
								
							@@ -0,0 +1 @@
 | 
				
			|||||||
 | 
					2
 | 
				
			||||||
							
								
								
									
										27
									
								
								thirdparty/SQLiteCpp/sqlite3/CMakeFiles/sqlite3.dir/DependInfo.cmake
									
									
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						
									
										27
									
								
								thirdparty/SQLiteCpp/sqlite3/CMakeFiles/sqlite3.dir/DependInfo.cmake
									
									
									
									
										vendored
									
									
										Normal 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 "")
 | 
				
			||||||
							
								
								
									
										99
									
								
								thirdparty/SQLiteCpp/sqlite3/CMakeFiles/sqlite3.dir/build.make
									
									
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						
									
										99
									
								
								thirdparty/SQLiteCpp/sqlite3/CMakeFiles/sqlite3.dir/build.make
									
									
									
									
										vendored
									
									
										Normal 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
 | 
				
			||||||
 | 
					
 | 
				
			||||||
							
								
								
									
										10
									
								
								thirdparty/SQLiteCpp/sqlite3/CMakeFiles/sqlite3.dir/cmake_clean.cmake
									
									
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						
									
										10
									
								
								thirdparty/SQLiteCpp/sqlite3/CMakeFiles/sqlite3.dir/cmake_clean.cmake
									
									
									
									
										vendored
									
									
										Normal 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()
 | 
				
			||||||
							
								
								
									
										3
									
								
								thirdparty/SQLiteCpp/sqlite3/CMakeFiles/sqlite3.dir/cmake_clean_target.cmake
									
									
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						
									
										3
									
								
								thirdparty/SQLiteCpp/sqlite3/CMakeFiles/sqlite3.dir/cmake_clean_target.cmake
									
									
									
									
										vendored
									
									
										Normal file
									
								
							@@ -0,0 +1,3 @@
 | 
				
			|||||||
 | 
					file(REMOVE_RECURSE
 | 
				
			||||||
 | 
					  "libsqlite3.a"
 | 
				
			||||||
 | 
					)
 | 
				
			||||||
							
								
								
									
										2
									
								
								thirdparty/SQLiteCpp/sqlite3/CMakeFiles/sqlite3.dir/depend.make
									
									
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						
									
										2
									
								
								thirdparty/SQLiteCpp/sqlite3/CMakeFiles/sqlite3.dir/depend.make
									
									
									
									
										vendored
									
									
										Normal file
									
								
							@@ -0,0 +1,2 @@
 | 
				
			|||||||
 | 
					# Empty dependencies file for sqlite3.
 | 
				
			||||||
 | 
					# This may be replaced when dependencies are built.
 | 
				
			||||||
							
								
								
									
										10
									
								
								thirdparty/SQLiteCpp/sqlite3/CMakeFiles/sqlite3.dir/flags.make
									
									
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						
									
										10
									
								
								thirdparty/SQLiteCpp/sqlite3/CMakeFiles/sqlite3.dir/flags.make
									
									
									
									
										vendored
									
									
										Normal 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
 | 
				
			||||||
 | 
					
 | 
				
			||||||
							
								
								
									
										1
									
								
								thirdparty/SQLiteCpp/sqlite3/CMakeFiles/sqlite3.dir/includes_C.rsp
									
									
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						
									
										1
									
								
								thirdparty/SQLiteCpp/sqlite3/CMakeFiles/sqlite3.dir/includes_C.rsp
									
									
									
									
										vendored
									
									
										Normal file
									
								
							@@ -0,0 +1 @@
 | 
				
			|||||||
 | 
					-IC:/Users/MassiveAtoms/Documents/C++/Parkmanne/thirdparty/SQLiteCpp/include -IC:/Users/MassiveAtoms/Documents/C++/Parkmanne/thirdparty/SQLiteCpp/sqlite3 
 | 
				
			||||||
							
								
								
									
										2
									
								
								thirdparty/SQLiteCpp/sqlite3/CMakeFiles/sqlite3.dir/link.txt
									
									
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						
									
										2
									
								
								thirdparty/SQLiteCpp/sqlite3/CMakeFiles/sqlite3.dir/link.txt
									
									
									
									
										vendored
									
									
										Normal 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
 | 
				
			||||||
							
								
								
									
										3
									
								
								thirdparty/SQLiteCpp/sqlite3/CMakeFiles/sqlite3.dir/progress.make
									
									
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						
									
										3
									
								
								thirdparty/SQLiteCpp/sqlite3/CMakeFiles/sqlite3.dir/progress.make
									
									
									
									
										vendored
									
									
										Normal file
									
								
							@@ -0,0 +1,3 @@
 | 
				
			|||||||
 | 
					CMAKE_PROGRESS_1 = 14
 | 
				
			||||||
 | 
					CMAKE_PROGRESS_2 = 15
 | 
				
			||||||
 | 
					
 | 
				
			||||||
		Reference in New Issue
	
	Block a user