diff --git a/Hw6/.idea/codeStyles/codeStyleConfig.xml b/Hw6/.idea/codeStyles/codeStyleConfig.xml
index 8f1a3b7..a55e7a1 100644
--- a/Hw6/.idea/codeStyles/codeStyleConfig.xml
+++ b/Hw6/.idea/codeStyles/codeStyleConfig.xml
@@ -1,5 +1,5 @@
-
+
\ No newline at end of file
diff --git a/Hw6/CMakeLists.txt b/Hw6/CMakeLists.txt
index e558c9e..5d4aebd 100644
--- a/Hw6/CMakeLists.txt
+++ b/Hw6/CMakeLists.txt
@@ -15,7 +15,8 @@ set(HEADER_FILES
PatternGosperGliderGun.hpp
LifeSimulator.hpp
Renderer.hpp
- RendererConsole.hpp)
+ RendererConsole.hpp
+ rlutil.h)
set(SOURCE_FILES
PatternAcorn.cpp
diff --git a/Hw6/LifeSimulator.cpp b/Hw6/LifeSimulator.cpp
index 54d183f..5491368 100644
--- a/Hw6/LifeSimulator.cpp
+++ b/Hw6/LifeSimulator.cpp
@@ -1,9 +1,96 @@
-//
-// Created by Brady Bodily on 11/5/19.
-//
#include "LifeSimulator.hpp"
LifeSimulator::LifeSimulator(std::uint8_t sizeX, std::uint8_t sizeY) :
-sizeX(sizeX), sizeY(sizeY) {
+ sizeX(sizeX), sizeY(sizeY)
+{
+ // Initializing vectors with padding for easy searches
+ for (std::uint8_t i = 0; i < sizeY + 2; i++)
+ {
+ currentScreen.push_back(std::vector());
+ nextScreen.push_back(std::vector());
+ for (std::uint8_t j = 0; j < sizeX + 2; j++)
+ {
+ currentScreen[i].push_back(false);
+ nextScreen[i].push_back(false);
+ }
+ }
+}
+void LifeSimulator::insertPattern(const Pattern& pattern, std::uint8_t startX, std::uint8_t startY)
+{
+ // Adding offset for padded borders
+ startX += 1;
+ startY += 1;
+
+ if ((pattern.getSizeY() + startY) <= (currentScreen.size() - 1) && (pattern.getSizeX() + startX) <= (currentScreen[0].size() - 1))
+ {
+ for (int y = 0; y < pattern.getSizeY(); y++)
+ {
+ for (int x = 0; x < pattern.getSizeX(); x++)
+ {
+ if (pattern.getCell(x, y))
+ {
+ currentScreen[y + startY][x + startX] = true;
+ }
+ }
+ }
+ }
+ else
+ {
+ std::cout << "Screen size is not big enough." << std::endl;
+ }
+}
+
+void LifeSimulator::update()
+{
+ // Temp vector to update day
+ for (std::uint8_t i = 0; i < unsigned(sizeY) + 2; i++)
+ {
+ for (std::uint8_t j = 0; j < unsigned(sizeX) + 2; j++)
+ {
+ nextScreen[i][j] = false;
+ }
+ }
+ // For loop to update nextScreen vector
+ for (int i = 1; i < currentScreen.size() - 1; i++)
+ {
+ for (int j = 1; j < currentScreen[0].size() - 1; j++)
+ {
+ // Checking each pixel
+ int count = 0;
+ for (int y = -1; y < 2; y++)
+ {
+ for (int x = -1; x < 2; x++)
+ {
+ if (y == 0 && x == 0)
+ ;
+ else
+ {
+ if (currentScreen[i + y][j + x])
+ count++;
+ }
+ }
+ }
+ /*
+ * Any live cell with two or three live neighbours lives on to the next generation.
+ * Any live cell with more than three live neighbours dies, as if by overpopulation.
+ * Any dead cell with exactly three live neighbours becomes a live cell, as if by reproduction.
+ */
+ if (count > 1 && count < 4)
+ {
+ if (currentScreen[i][j])
+ {
+ nextScreen[i][j] = true;
+ }
+ else
+ {
+ if (count == 3)
+ {
+ nextScreen[i][j] = true;
+ }
+ }
+ }
+ }
+ }
+ currentScreen = nextScreen;
}
\ No newline at end of file
diff --git a/Hw6/LifeSimulator.hpp b/Hw6/LifeSimulator.hpp
index 6fc4ed0..ae8e112 100644
--- a/Hw6/LifeSimulator.hpp
+++ b/Hw6/LifeSimulator.hpp
@@ -5,20 +5,26 @@
#ifndef CS3460_CPP_LIFESIMULATOR_HPP
#define CS3460_CPP_LIFESIMULATOR_HPP
-#include
#include "Pattern.hpp"
class LifeSimulator
{
-public:
+ private:
+ std::uint8_t sizeX;
+ std::uint8_t sizeY;
+ std::vector> nextScreen;
+ std::vector> currentScreen;
+
+ public:
LifeSimulator(std::uint8_t sizeX, std::uint8_t sizeY);
void insertPattern(const Pattern& pattern, std::uint8_t startX, std::uint8_t startY);
void update();
- std::uint8_t getSizeX() const;
- std::uint8_t getSizeY() const;
- bool getCell(std::uint8_t x, std::uint8_t y) const;
+ std::uint8_t getSizeX() const { return sizeX; };
+ std::uint8_t getSizeY() const { return sizeY; };
+ bool getCell(std::uint8_t x, std::uint8_t y) const { return currentScreen[y + 1][x + 1]; };
+ ;
};
#endif //CS3460_CPP_LIFESIMULATOR_HPP
diff --git a/Hw6/Pattern.hpp b/Hw6/Pattern.hpp
index 546595a..4320751 100644
--- a/Hw6/Pattern.hpp
+++ b/Hw6/Pattern.hpp
@@ -5,11 +5,16 @@
#ifndef CS3460_CPP_PATTERN_HPP
#define CS3460_CPP_PATTERN_HPP
+#include "rlutil.h"
+
+#include
#include
+#include
+#include
class Pattern
{
-public:
+ public:
virtual std::uint8_t getSizeX() const = 0;
virtual std::uint8_t getSizeY() const = 0;
virtual bool getCell(std::uint8_t x, std::uint8_t y) const = 0;
diff --git a/Hw6/PatternAcorn.cpp b/Hw6/PatternAcorn.cpp
index 70596f4..2ad6f06 100644
--- a/Hw6/PatternAcorn.cpp
+++ b/Hw6/PatternAcorn.cpp
@@ -3,3 +3,24 @@
//
#include "PatternAcorn.hpp"
+
+PatternAcorn::PatternAcorn() :
+ X(9), Y(5)
+{
+ for (int i = 0; i < Y; i++)
+ {
+ for (int j = 0; j < X; j++)
+ {
+ cells[i][j] = false;
+ }
+ }
+
+ cells[3][2] = true;
+ cells[3][5] = true;
+ cells[3][6] = true;
+ cells[3][7] = true;
+
+ cells[1][2] = true;
+ cells[2][4] = true;
+ cells[3][1] = true;
+}
\ No newline at end of file
diff --git a/Hw6/PatternAcorn.hpp b/Hw6/PatternAcorn.hpp
index d7c4c02..59c1058 100644
--- a/Hw6/PatternAcorn.hpp
+++ b/Hw6/PatternAcorn.hpp
@@ -5,4 +5,29 @@
#ifndef CS3460_CPP_PATTERNACORN_HPP
#define CS3460_CPP_PATTERNACORN_HPP
+#include "Pattern.hpp"
+
+class PatternAcorn : public Pattern
+{
+ private:
+ std::uint8_t X;
+ std::uint8_t Y;
+ std::array, 4> cells;
+
+ public:
+ PatternAcorn();
+ std::uint8_t getSizeX() const
+ {
+ return X;
+ };
+ std::uint8_t getSizeY() const
+ {
+ return Y;
+ };
+ bool getCell(std::uint8_t x, std::uint8_t y) const
+ {
+ return cells[x][y];
+ };
+};
+
#endif //CS3460_CPP_PATTERNACORN_HPP
diff --git a/Hw6/PatternBlinker.cpp b/Hw6/PatternBlinker.cpp
index 97a1de8..e343668 100644
--- a/Hw6/PatternBlinker.cpp
+++ b/Hw6/PatternBlinker.cpp
@@ -3,3 +3,18 @@
//
#include "PatternBlinker.hpp"
+
+PatternBlinker::PatternBlinker() :
+ X(5), Y(5)
+{
+ for (int i = 0; i < Y; i++)
+ {
+ for (int j = 0; j < X; j++)
+ {
+ cells[i][j] = false;
+ }
+ }
+ cells[2][1] = true;
+ cells[2][2] = true;
+ cells[2][3] = true;
+}
\ No newline at end of file
diff --git a/Hw6/PatternBlinker.hpp b/Hw6/PatternBlinker.hpp
index 2a8a41d..68a7b31 100644
--- a/Hw6/PatternBlinker.hpp
+++ b/Hw6/PatternBlinker.hpp
@@ -5,4 +5,23 @@
#ifndef CS3460_CPP_PATTERNBLINKER_HPP
#define CS3460_CPP_PATTERNBLINKER_HPP
+#include "Pattern.hpp"
+
+class PatternBlinker : public Pattern
+{
+ private:
+ uint8_t X;
+ uint8_t Y;
+ std::array, 5> cells;
+
+ public:
+ PatternBlinker();
+
+ std::uint8_t getSizeX() const { return X; };
+
+ std::uint8_t getSizeY() const { return Y; };
+
+ bool getCell(std::uint8_t x, std::uint8_t y) const { return cells[y][x]; };
+};
+
#endif //CS3460_CPP_PATTERNBLINKER_HPP
diff --git a/Hw6/PatternBlock.cpp b/Hw6/PatternBlock.cpp
index d437649..6707649 100644
--- a/Hw6/PatternBlock.cpp
+++ b/Hw6/PatternBlock.cpp
@@ -3,3 +3,20 @@
//
#include "PatternBlock.hpp"
+
+PatternBlock::PatternBlock() :
+ X(4), Y(4)
+{
+ for (int i = 0; i < Y; i++)
+ {
+ for (int j = 0; j < X; j++)
+ {
+ cells[i][j] = false;
+ }
+ }
+
+ cells[1][1] = true;
+ cells[1][2] = true;
+ cells[2][1] = true;
+ cells[2][2] = true;
+}
\ No newline at end of file
diff --git a/Hw6/PatternBlock.hpp b/Hw6/PatternBlock.hpp
index 33617aa..68ea41f 100644
--- a/Hw6/PatternBlock.hpp
+++ b/Hw6/PatternBlock.hpp
@@ -4,5 +4,29 @@
#ifndef CS3460_CPP_PATTERNBLOCK_HPP
#define CS3460_CPP_PATTERNBLOCK_HPP
+#include "Pattern.hpp"
+
+class PatternBlock : public Pattern
+{
+ private:
+ std::uint8_t X;
+ std::uint8_t Y;
+ std::array, 4> cells;
+
+ public:
+ PatternBlock();
+ std::uint8_t getSizeX() const
+ {
+ return X;
+ };
+ std::uint8_t getSizeY() const
+ {
+ return Y;
+ };
+ bool getCell(std::uint8_t x, std::uint8_t y) const
+ {
+ return cells[x][y];
+ };
+};
#endif //CS3460_CPP_PATTERNBLOCK_HPP
diff --git a/Hw6/PatternGlider.cpp b/Hw6/PatternGlider.cpp
index caa30c7..5423781 100644
--- a/Hw6/PatternGlider.cpp
+++ b/Hw6/PatternGlider.cpp
@@ -4,12 +4,20 @@
#include "PatternGlider.hpp"
-PatternGlider::PatternGlider() : X(5), Y(5)
+PatternGlider::PatternGlider() :
+ X(5), Y(5)
{
+ for (int i = 0; i < Y; i++)
+ {
+ for (int j = 0; j < X; j++)
+ {
+ cells[i][j] = false;
+ }
+ }
+
cells[3][1];
cells[3][2];
cells[3][3];
cells[2][3];
cells[1][2];
-
}
\ No newline at end of file
diff --git a/Hw6/PatternGlider.hpp b/Hw6/PatternGlider.hpp
index cc59b4a..eafc179 100644
--- a/Hw6/PatternGlider.hpp
+++ b/Hw6/PatternGlider.hpp
@@ -5,28 +5,31 @@
#ifndef CS3460_CPP_PATTERNGLIDER_HPP
#define CS3460_CPP_PATTERNGLIDER_HPP
-#include
#include "Pattern.hpp"
+#include
+
class PatternGlider : public Pattern
{
-private:
- int X;
- int Y;
+ private:
+ std::uint8_t X;
+ std::uint8_t Y;
std::array, 5> cells;
-public:
+
+ public:
PatternGlider();
- int getSizeX()
+ std::uint8_t getSizeX() const
{
return X;
};
- int getSizeY(){
+ std::uint8_t getSizeY() const
+ {
return Y;
};
- bool getCell(int x, int y){
+ bool getCell(std::uint8_t x, std::uint8_t y) const
+ {
return cells[x][y];
};
-
};
#endif //CS3460_CPP_PATTERNGLIDER_HPP
diff --git a/Hw6/PatternGosperGliderGun.cpp b/Hw6/PatternGosperGliderGun.cpp
index f7cd0cb..0cc9244 100644
--- a/Hw6/PatternGosperGliderGun.cpp
+++ b/Hw6/PatternGosperGliderGun.cpp
@@ -3,3 +3,58 @@
//
#include "PatternGosperGliderGun.hpp"
+
+PatternGosperGliderGun::PatternGosperGliderGun() :
+ X(38), Y(11)
+{
+ for (int i = 0; i < Y; i++)
+ {
+ for (int j = 0; j < X; j++)
+ {
+ cells[i][j] = false;
+ }
+ }
+
+ //Guns
+ cells[3][35] = true;
+ cells[3][36] = true;
+ cells[4][35] = true;
+ cells[4][36] = true;
+
+ cells[5][1] = true;
+ cells[5][2] = true;
+ cells[6][1] = true;
+ cells[6][2] = true;
+
+ // Queen Bee
+ cells[1][25] = true;
+ cells[2][23] = true;
+ cells[2][25] = true;
+ cells[3][21] = true;
+ cells[3][22] = true;
+ cells[4][21] = true;
+ cells[4][22] = true;
+ cells[5][21] = true;
+ cells[5][22] = true;
+ cells[6][23] = true;
+ cells[6][25] = true;
+ cells[7][25] = true;
+
+ // Glider
+ cells[3][13] = true;
+ cells[3][14] = true;
+ cells[4][12] = true;
+ cells[4][16] = true;
+ cells[5][11] = true;
+ cells[5][17] = true;
+ cells[6][11] = true;
+ cells[6][15] = true;
+ cells[6][17] = true;
+ cells[6][18] = true;
+ cells[7][11] = true;
+ cells[7][17] = true;
+ cells[8][12] = true;
+ cells[8][16] = true;
+ cells[9][13] = true;
+ cells[9][14] = true;
+}
\ No newline at end of file
diff --git a/Hw6/PatternGosperGliderGun.hpp b/Hw6/PatternGosperGliderGun.hpp
index 214bc69..8a6885b 100644
--- a/Hw6/PatternGosperGliderGun.hpp
+++ b/Hw6/PatternGosperGliderGun.hpp
@@ -5,4 +5,29 @@
#ifndef CS3460_CPP_PATTERNGOSPERGLIDERGUN_HPP
#define CS3460_CPP_PATTERNGOSPERGLIDERGUN_HPP
+#include "Pattern.hpp"
+
+class PatternGosperGliderGun : public Pattern
+{
+ private:
+ std::uint8_t X;
+ std::uint8_t Y;
+ std::array, 11> cells;
+
+ public:
+ PatternGosperGliderGun();
+ std::uint8_t getSizeX() const
+ {
+ return X;
+ };
+ std::uint8_t getSizeY() const
+ {
+ return Y;
+ };
+ bool getCell(std::uint8_t x, std::uint8_t y) const
+ {
+ return cells[x][y];
+ };
+};
+
#endif //CS3460_CPP_PATTERNGOSPERGLIDERGUN_HPP
diff --git a/Hw6/Renderer.hpp b/Hw6/Renderer.hpp
index cea847a..7a435ba 100644
--- a/Hw6/Renderer.hpp
+++ b/Hw6/Renderer.hpp
@@ -9,7 +9,7 @@
class Renderer
{
-public:
+ public:
virtual void render(const LifeSimulator& simulation) = 0;
};
diff --git a/Hw6/RendererConsole.cpp b/Hw6/RendererConsole.cpp
index 563db2f..429c3ca 100644
--- a/Hw6/RendererConsole.cpp
+++ b/Hw6/RendererConsole.cpp
@@ -3,3 +3,24 @@
//
#include "RendererConsole.hpp"
+
+void RendererConsole::render(const LifeSimulator& simulation)
+{
+ rlutil::hidecursor();
+ rlutil::cls();
+ std::uint8_t y = simulation.getSizeY();
+ std::uint8_t x = simulation.getSizeX();
+
+ for (std::uint8_t i = 0; i < y; i++)
+ {
+ for (std::uint8_t j = 0; j < x; j++)
+ {
+ if (simulation.getCell(j, i))
+ {
+ rlutil::locate(j + 1, i + 1);
+ rlutil::setChar('X');
+ }
+ }
+ }
+ rlutil::showcursor();
+}
\ No newline at end of file
diff --git a/Hw6/RendererConsole.hpp b/Hw6/RendererConsole.hpp
index 6707e29..af14193 100644
--- a/Hw6/RendererConsole.hpp
+++ b/Hw6/RendererConsole.hpp
@@ -5,4 +5,12 @@
#ifndef CS3460_CPP_RENDERERCONSOLE_HPP
#define CS3460_CPP_RENDERERCONSOLE_HPP
+#include "Renderer.hpp"
+#include "rlutil.h"
+
+class RendererConsole : public Renderer
+{
+ public:
+ void render(const LifeSimulator& simulation);
+};
#endif //CS3460_CPP_RENDERERCONSOLE_HPP
diff --git a/Hw6/cmake-build-debug/CMakeCache.txt b/Hw6/cmake-build-debug/CMakeCache.txt
index 07ea176..5f905d2 100644
--- a/Hw6/cmake-build-debug/CMakeCache.txt
+++ b/Hw6/cmake-build-debug/CMakeCache.txt
@@ -1,5 +1,5 @@
# This is the CMakeCache file.
-# For build in directory: /Users/brady/CLionProjects/CS3460-CPP/Hw6/cmake-build-debug
+# For build in directory: /Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug
# It was generated by CMake: /Applications/CLion.app/Contents/bin/cmake/mac/bin/cmake
# You can edit this file to change values found and used by cmake.
# If you do not want to change any of the values, simply exit the editor.
@@ -15,10 +15,10 @@
########################
//Path to a program.
-CLANG_FORMAT:FILEPATH=CLANG_FORMAT-NOTFOUND
+CLANG_FORMAT:FILEPATH=/usr/local/bin/clang-format
//Path to a program.
-CMAKE_AR:FILEPATH=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ar
+CMAKE_AR:FILEPATH=/Library/Developer/CommandLineTools/usr/bin/ar
//Choose the type of build, options are: None Debug Release RelWithDebInfo
// MinSizeRel ...
@@ -33,13 +33,13 @@ CMAKE_CODEBLOCKS_EXECUTABLE:FILEPATH=CMAKE_CODEBLOCKS_EXECUTABLE-NOTFOUND
//Additional command line arguments when CodeBlocks invokes make.
// Enter e.g. -j to get parallel builds
-CMAKE_CODEBLOCKS_MAKE_ARGUMENTS:STRING=-j8
+CMAKE_CODEBLOCKS_MAKE_ARGUMENTS:STRING=-j4
//Enable/Disable color output during build.
CMAKE_COLOR_MAKEFILE:BOOL=ON
//CXX compiler
-CMAKE_CXX_COMPILER:FILEPATH=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++
+CMAKE_CXX_COMPILER:FILEPATH=/Library/Developer/CommandLineTools/usr/bin/c++
//Flags used by the CXX compiler during all build types.
CMAKE_CXX_FLAGS:STRING=
@@ -57,7 +57,7 @@ CMAKE_CXX_FLAGS_RELEASE:STRING=-O3 -DNDEBUG
CMAKE_CXX_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG
//C compiler
-CMAKE_C_COMPILER:FILEPATH=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc
+CMAKE_C_COMPILER:FILEPATH=/Library/Developer/CommandLineTools/usr/bin/cc
//Flags used by the C compiler during all build types.
CMAKE_C_FLAGS:STRING=
@@ -102,7 +102,7 @@ CMAKE_INSTALL_NAME_TOOL:FILEPATH=/usr/bin/install_name_tool
CMAKE_INSTALL_PREFIX:PATH=/usr/local
//Path to a program.
-CMAKE_LINKER:FILEPATH=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ld
+CMAKE_LINKER:FILEPATH=/Library/Developer/CommandLineTools/usr/bin/ld
//Path to a program.
CMAKE_MAKE_PROGRAM:FILEPATH=/usr/bin/make
@@ -128,13 +128,13 @@ CMAKE_MODULE_LINKER_FLAGS_RELEASE:STRING=
CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO:STRING=
//Path to a program.
-CMAKE_NM:FILEPATH=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/nm
+CMAKE_NM:FILEPATH=/Library/Developer/CommandLineTools/usr/bin/nm
//Path to a program.
CMAKE_OBJCOPY:FILEPATH=CMAKE_OBJCOPY-NOTFOUND
//Path to a program.
-CMAKE_OBJDUMP:FILEPATH=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/objdump
+CMAKE_OBJDUMP:FILEPATH=/Library/Developer/CommandLineTools/usr/bin/objdump
//Build architectures for OSX
CMAKE_OSX_ARCHITECTURES:STRING=
@@ -145,7 +145,7 @@ CMAKE_OSX_DEPLOYMENT_TARGET:STRING=
//The product will be built against the headers and libraries located
// inside the indicated SDK.
-CMAKE_OSX_SYSROOT:PATH=/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk
+CMAKE_OSX_SYSROOT:PATH=/Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk
//Value Computed by CMake
CMAKE_PROJECT_DESCRIPTION:STATIC=
@@ -157,7 +157,7 @@ CMAKE_PROJECT_HOMEPAGE_URL:STATIC=
CMAKE_PROJECT_NAME:STATIC=Hw6
//Path to a program.
-CMAKE_RANLIB:FILEPATH=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib
+CMAKE_RANLIB:FILEPATH=/Library/Developer/CommandLineTools/usr/bin/ranlib
//Flags used by the linker during the creation of shared libraries
// during all build types.
@@ -207,7 +207,7 @@ CMAKE_STATIC_LINKER_FLAGS_RELEASE:STRING=
CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO:STRING=
//Path to a program.
-CMAKE_STRIP:FILEPATH=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/strip
+CMAKE_STRIP:FILEPATH=/Library/Developer/CommandLineTools/usr/bin/strip
//If this value is on, makefiles will be generated without the
// .SILENT directive, and all commands will be echoed to the console
@@ -216,10 +216,10 @@ CMAKE_STRIP:FILEPATH=/Applications/Xcode.app/Contents/Developer/Toolchains/Xcode
CMAKE_VERBOSE_MAKEFILE:BOOL=FALSE
//Value Computed by CMake
-Hw6_BINARY_DIR:STATIC=/Users/brady/CLionProjects/CS3460-CPP/Hw6/cmake-build-debug
+Hw6_BINARY_DIR:STATIC=/Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug
//Value Computed by CMake
-Hw6_SOURCE_DIR:STATIC=/Users/brady/CLionProjects/CS3460-CPP/Hw6
+Hw6_SOURCE_DIR:STATIC=/Users/bradybodily/Repositories/CS3460/Hw6
//Path to a program.
ProcessorCount_cmd_sysctl:FILEPATH=/usr/sbin/sysctl
@@ -232,13 +232,13 @@ ProcessorCount_cmd_sysctl:FILEPATH=/usr/sbin/sysctl
//ADVANCED property for variable: CMAKE_AR
CMAKE_AR-ADVANCED:INTERNAL=1
//This is the directory where this CMakeCache.txt was created
-CMAKE_CACHEFILE_DIR:INTERNAL=/Users/brady/CLionProjects/CS3460-CPP/Hw6/cmake-build-debug
+CMAKE_CACHEFILE_DIR:INTERNAL=/Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug
//Major version of cmake used to create the current loaded cache
CMAKE_CACHE_MAJOR_VERSION:INTERNAL=3
//Minor version of cmake used to create the current loaded cache
-CMAKE_CACHE_MINOR_VERSION:INTERNAL=15
+CMAKE_CACHE_MINOR_VERSION:INTERNAL=14
//Patch version of cmake used to create the current loaded cache
-CMAKE_CACHE_PATCH_VERSION:INTERNAL=3
+CMAKE_CACHE_PATCH_VERSION:INTERNAL=5
//ADVANCED property for variable: CMAKE_COLOR_MAKEFILE
CMAKE_COLOR_MAKEFILE-ADVANCED:INTERNAL=1
//Path to CMake executable.
@@ -286,13 +286,13 @@ CMAKE_EXPORT_COMPILE_COMMANDS-ADVANCED:INTERNAL=1
//Name of external makefile project generator.
CMAKE_EXTRA_GENERATOR:INTERNAL=CodeBlocks
//CXX compiler system defined macros
-CMAKE_EXTRA_GENERATOR_CXX_SYSTEM_DEFINED_MACROS:INTERNAL=__llvm__;1;__clang__;1;__clang_major__;10;__clang_minor__;0;__clang_patchlevel__;1;__clang_version__;"10.0.1 (clang-1001.0.46.4)";__GNUC_MINOR__;2;__GNUC_PATCHLEVEL__;1;__GNUC__;4;__GXX_ABI_VERSION;1002;__ATOMIC_RELAXED;0;__ATOMIC_CONSUME;1;__ATOMIC_ACQUIRE;2;__ATOMIC_RELEASE;3;__ATOMIC_ACQ_REL;4;__ATOMIC_SEQ_CST;5;__OPENCL_MEMORY_SCOPE_WORK_ITEM;0;__OPENCL_MEMORY_SCOPE_WORK_GROUP;1;__OPENCL_MEMORY_SCOPE_DEVICE;2;__OPENCL_MEMORY_SCOPE_ALL_SVM_DEVICES;3;__OPENCL_MEMORY_SCOPE_SUB_GROUP;4;__PRAGMA_REDEFINE_EXTNAME;1;__VERSION__;"4.2.1 Compatible Apple LLVM 10.0.1 (clang-1001.0.46.4)";__OBJC_BOOL_IS_BOOL;0;__CONSTANT_CFSTRINGS__;1;__block;__attribute__((__blocks__(byref)));__BLOCKS__;1;__ORDER_LITTLE_ENDIAN__;1234;__ORDER_BIG_ENDIAN__;4321;__ORDER_PDP_ENDIAN__;3412;__BYTE_ORDER__;__ORDER_LITTLE_ENDIAN__;__LITTLE_ENDIAN__;1;_LP64;1;__LP64__;1;__CHAR_BIT__;8;__SCHAR_MAX__;127;__SHRT_MAX__;32767;__INT_MAX__;2147483647;__LONG_MAX__;9223372036854775807L;__LONG_LONG_MAX__;9223372036854775807LL;__WCHAR_MAX__;2147483647;__WINT_MAX__;2147483647;__INTMAX_MAX__;9223372036854775807L;__SIZE_MAX__;18446744073709551615UL;__UINTMAX_MAX__;18446744073709551615UL;__PTRDIFF_MAX__;9223372036854775807L;__INTPTR_MAX__;9223372036854775807L;__UINTPTR_MAX__;18446744073709551615UL;__SIZEOF_DOUBLE__;8;__SIZEOF_FLOAT__;4;__SIZEOF_INT__;4;__SIZEOF_LONG__;8;__SIZEOF_LONG_DOUBLE__;16;__SIZEOF_LONG_LONG__;8;__SIZEOF_POINTER__;8;__SIZEOF_SHORT__;2;__SIZEOF_PTRDIFF_T__;8;__SIZEOF_SIZE_T__;8;__SIZEOF_WCHAR_T__;4;__SIZEOF_WINT_T__;4;__SIZEOF_INT128__;16;__INTMAX_TYPE__;long int;__INTMAX_FMTd__;"ld";__INTMAX_FMTi__;"li";__INTMAX_C_SUFFIX__;L;__UINTMAX_TYPE__;long unsigned int;__UINTMAX_FMTo__;"lo";__UINTMAX_FMTu__;"lu";__UINTMAX_FMTx__;"lx";__UINTMAX_FMTX__;"lX";__UINTMAX_C_SUFFIX__;UL;__INTMAX_WIDTH__;64;__PTRDIFF_TYPE__;long int;__PTRDIFF_FMTd__;"ld";__PTRDIFF_FMTi__;"li";__PTRDIFF_WIDTH__;64;__INTPTR_TYPE__;long int;__INTPTR_FMTd__;"ld";__INTPTR_FMTi__;"li";__INTPTR_WIDTH__;64;__SIZE_TYPE__;long unsigned int;__SIZE_FMTo__;"lo";__SIZE_FMTu__;"lu";__SIZE_FMTx__;"lx";__SIZE_FMTX__;"lX";__SIZE_WIDTH__;64;__WCHAR_TYPE__;int;__WCHAR_WIDTH__;32;__WINT_TYPE__;int;__WINT_WIDTH__;32;__SIG_ATOMIC_WIDTH__;32;__SIG_ATOMIC_MAX__;2147483647;__CHAR16_TYPE__;unsigned short;__CHAR32_TYPE__;unsigned int;__UINTMAX_WIDTH__;64;__UINTPTR_TYPE__;long unsigned int;__UINTPTR_FMTo__;"lo";__UINTPTR_FMTu__;"lu";__UINTPTR_FMTx__;"lx";__UINTPTR_FMTX__;"lX";__UINTPTR_WIDTH__;64;__FLT16_DENORM_MIN__;5.9604644775390625e-8F16;__FLT16_HAS_DENORM__;1;__FLT16_DIG__;3;__FLT16_DECIMAL_DIG__;5;__FLT16_EPSILON__;9.765625e-4F16;__FLT16_HAS_INFINITY__;1;__FLT16_HAS_QUIET_NAN__;1;__FLT16_MANT_DIG__;11;__FLT16_MAX_10_EXP__;4;__FLT16_MAX_EXP__;15;__FLT16_MAX__;6.5504e+4F16;__FLT16_MIN_10_EXP__;(-13);__FLT16_MIN_EXP__;(-14);__FLT16_MIN__;6.103515625e-5F16;__FLT_DENORM_MIN__;1.40129846e-45F;__FLT_HAS_DENORM__;1;__FLT_DIG__;6;__FLT_DECIMAL_DIG__;9;__FLT_EPSILON__;1.19209290e-7F;__FLT_HAS_INFINITY__;1;__FLT_HAS_QUIET_NAN__;1;__FLT_MANT_DIG__;24;__FLT_MAX_10_EXP__;38;__FLT_MAX_EXP__;128;__FLT_MAX__;3.40282347e+38F;__FLT_MIN_10_EXP__;(-37);__FLT_MIN_EXP__;(-125);__FLT_MIN__;1.17549435e-38F;__DBL_DENORM_MIN__;4.9406564584124654e-324;__DBL_HAS_DENORM__;1;__DBL_DIG__;15;__DBL_DECIMAL_DIG__;17;__DBL_EPSILON__;2.2204460492503131e-16;__DBL_HAS_INFINITY__;1;__DBL_HAS_QUIET_NAN__;1;__DBL_MANT_DIG__;53;__DBL_MAX_10_EXP__;308;__DBL_MAX_EXP__;1024;__DBL_MAX__;1.7976931348623157e+308;__DBL_MIN_10_EXP__;(-307);__DBL_MIN_EXP__;(-1021);__DBL_MIN__;2.2250738585072014e-308;__LDBL_DENORM_MIN__;3.64519953188247460253e-4951L;__LDBL_HAS_DENORM__;1;__LDBL_DIG__;18;__LDBL_DECIMAL_DIG__;21;__LDBL_EPSILON__;1.08420217248550443401e-19L;__LDBL_HAS_INFINITY__;1;__LDBL_HAS_QUIET_NAN__;1;__LDBL_MANT_DIG__;64;__LDBL_MAX_10_EXP__;4932;__LDBL_MAX_EXP__;16384;__LDBL_MAX__;1.18973149535723176502e+4932L;__LDBL_MIN_10_EXP__;(-4931);__LDBL_MIN_EXP__;(-16381);__LDBL_MIN__;3.36210314311209350626e-4932L;__POINTER_WIDTH__;64;__BIGGEST_ALIGNMENT__;16;__INT8_TYPE__;signed char;__INT8_FMTd__;"hhd";__INT8_FMTi__;"hhi";__INT8_C_SUFFIX__; ;__INT16_TYPE__;short;__INT16_FMTd__;"hd";__INT16_FMTi__;"hi";__INT16_C_SUFFIX__; ;__INT32_TYPE__;int;__INT32_FMTd__;"d";__INT32_FMTi__;"i";__INT32_C_SUFFIX__; ;__INT64_TYPE__;long long int;__INT64_FMTd__;"lld";__INT64_FMTi__;"lli";__INT64_C_SUFFIX__;LL;__UINT8_TYPE__;unsigned char;__UINT8_FMTo__;"hho";__UINT8_FMTu__;"hhu";__UINT8_FMTx__;"hhx";__UINT8_FMTX__;"hhX";__UINT8_C_SUFFIX__; ;__UINT8_MAX__;255;__INT8_MAX__;127;__UINT16_TYPE__;unsigned short;__UINT16_FMTo__;"ho";__UINT16_FMTu__;"hu";__UINT16_FMTx__;"hx";__UINT16_FMTX__;"hX";__UINT16_C_SUFFIX__; ;__UINT16_MAX__;65535;__INT16_MAX__;32767;__UINT32_TYPE__;unsigned int;__UINT32_FMTo__;"o";__UINT32_FMTu__;"u";__UINT32_FMTx__;"x";__UINT32_FMTX__;"X";__UINT32_C_SUFFIX__;U;__UINT32_MAX__;4294967295U;__INT32_MAX__;2147483647;__UINT64_TYPE__;long long unsigned int;__UINT64_FMTo__;"llo";__UINT64_FMTu__;"llu";__UINT64_FMTx__;"llx";__UINT64_FMTX__;"llX";__UINT64_C_SUFFIX__;ULL;__UINT64_MAX__;18446744073709551615ULL;__INT64_MAX__;9223372036854775807LL;__INT_LEAST8_TYPE__;signed char;__INT_LEAST8_MAX__;127;__INT_LEAST8_FMTd__;"hhd";__INT_LEAST8_FMTi__;"hhi";__UINT_LEAST8_TYPE__;unsigned char;__UINT_LEAST8_MAX__;255;__UINT_LEAST8_FMTo__;"hho";__UINT_LEAST8_FMTu__;"hhu";__UINT_LEAST8_FMTx__;"hhx";__UINT_LEAST8_FMTX__;"hhX";__INT_LEAST16_TYPE__;short;__INT_LEAST16_MAX__;32767;__INT_LEAST16_FMTd__;"hd";__INT_LEAST16_FMTi__;"hi";__UINT_LEAST16_TYPE__;unsigned short;__UINT_LEAST16_MAX__;65535;__UINT_LEAST16_FMTo__;"ho";__UINT_LEAST16_FMTu__;"hu";__UINT_LEAST16_FMTx__;"hx";__UINT_LEAST16_FMTX__;"hX";__INT_LEAST32_TYPE__;int;__INT_LEAST32_MAX__;2147483647;__INT_LEAST32_FMTd__;"d";__INT_LEAST32_FMTi__;"i";__UINT_LEAST32_TYPE__;unsigned int;__UINT_LEAST32_MAX__;4294967295U;__UINT_LEAST32_FMTo__;"o";__UINT_LEAST32_FMTu__;"u";__UINT_LEAST32_FMTx__;"x";__UINT_LEAST32_FMTX__;"X";__INT_LEAST64_TYPE__;long int;__INT_LEAST64_MAX__;9223372036854775807L;__INT_LEAST64_FMTd__;"ld";__INT_LEAST64_FMTi__;"li";__UINT_LEAST64_TYPE__;long unsigned int;__UINT_LEAST64_MAX__;18446744073709551615UL;__UINT_LEAST64_FMTo__;"lo";__UINT_LEAST64_FMTu__;"lu";__UINT_LEAST64_FMTx__;"lx";__UINT_LEAST64_FMTX__;"lX";__INT_FAST8_TYPE__;signed char;__INT_FAST8_MAX__;127;__INT_FAST8_FMTd__;"hhd";__INT_FAST8_FMTi__;"hhi";__UINT_FAST8_TYPE__;unsigned char;__UINT_FAST8_MAX__;255;__UINT_FAST8_FMTo__;"hho";__UINT_FAST8_FMTu__;"hhu";__UINT_FAST8_FMTx__;"hhx";__UINT_FAST8_FMTX__;"hhX";__INT_FAST16_TYPE__;short;__INT_FAST16_MAX__;32767;__INT_FAST16_FMTd__;"hd";__INT_FAST16_FMTi__;"hi";__UINT_FAST16_TYPE__;unsigned short;__UINT_FAST16_MAX__;65535;__UINT_FAST16_FMTo__;"ho";__UINT_FAST16_FMTu__;"hu";__UINT_FAST16_FMTx__;"hx";__UINT_FAST16_FMTX__;"hX";__INT_FAST32_TYPE__;int;__INT_FAST32_MAX__;2147483647;__INT_FAST32_FMTd__;"d";__INT_FAST32_FMTi__;"i";__UINT_FAST32_TYPE__;unsigned int;__UINT_FAST32_MAX__;4294967295U;__UINT_FAST32_FMTo__;"o";__UINT_FAST32_FMTu__;"u";__UINT_FAST32_FMTx__;"x";__UINT_FAST32_FMTX__;"X";__INT_FAST64_TYPE__;long int;__INT_FAST64_MAX__;9223372036854775807L;__INT_FAST64_FMTd__;"ld";__INT_FAST64_FMTi__;"li";__UINT_FAST64_TYPE__;long unsigned int;__UINT_FAST64_MAX__;18446744073709551615UL;__UINT_FAST64_FMTo__;"lo";__UINT_FAST64_FMTu__;"lu";__UINT_FAST64_FMTx__;"lx";__UINT_FAST64_FMTX__;"lX";__USER_LABEL_PREFIX__;_;__FINITE_MATH_ONLY__;0;__GNUC_STDC_INLINE__;1;__GCC_ATOMIC_TEST_AND_SET_TRUEVAL;1;__CLANG_ATOMIC_BOOL_LOCK_FREE;2;__CLANG_ATOMIC_CHAR_LOCK_FREE;2;__CLANG_ATOMIC_CHAR16_T_LOCK_FREE;2;__CLANG_ATOMIC_CHAR32_T_LOCK_FREE;2;__CLANG_ATOMIC_WCHAR_T_LOCK_FREE;2;__CLANG_ATOMIC_SHORT_LOCK_FREE;2;__CLANG_ATOMIC_INT_LOCK_FREE;2;__CLANG_ATOMIC_LONG_LOCK_FREE;2;__CLANG_ATOMIC_LLONG_LOCK_FREE;2;__CLANG_ATOMIC_POINTER_LOCK_FREE;2;__GCC_ATOMIC_BOOL_LOCK_FREE;2;__GCC_ATOMIC_CHAR_LOCK_FREE;2;__GCC_ATOMIC_CHAR16_T_LOCK_FREE;2;__GCC_ATOMIC_CHAR32_T_LOCK_FREE;2;__GCC_ATOMIC_WCHAR_T_LOCK_FREE;2;__GCC_ATOMIC_SHORT_LOCK_FREE;2;__GCC_ATOMIC_INT_LOCK_FREE;2;__GCC_ATOMIC_LONG_LOCK_FREE;2;__GCC_ATOMIC_LLONG_LOCK_FREE;2;__GCC_ATOMIC_POINTER_LOCK_FREE;2;__NO_INLINE__;1;__PIC__;2;__pic__;2;__FLT_EVAL_METHOD__;0;__FLT_RADIX__;2;__DECIMAL_DIG__;__LDBL_DECIMAL_DIG__;__SSP__;1;__nonnull;_Nonnull;__null_unspecified;_Null_unspecified;__nullable;_Nullable;__amd64__;1;__amd64;1;__x86_64;1;__x86_64__;1;__core2;1;__core2__;1;__tune_core2__;1;__REGISTER_PREFIX__; ;__NO_MATH_INLINES;1;__FXSR__;1;__SSE4_1__;1;__SSSE3__;1;__SSE3__;1;__SSE2__;1;__SSE2_MATH__;1;__SSE__;1;__SSE_MATH__;1;__MMX__;1;__GCC_HAVE_SYNC_COMPARE_AND_SWAP_1;1;__GCC_HAVE_SYNC_COMPARE_AND_SWAP_2;1;__GCC_HAVE_SYNC_COMPARE_AND_SWAP_4;1;__GCC_HAVE_SYNC_COMPARE_AND_SWAP_8;1;__GCC_HAVE_SYNC_COMPARE_AND_SWAP_16;1;__APPLE_CC__;6000;__APPLE__;1;__STDC_NO_THREADS__;1;OBJC_NEW_PROPERTIES;1;__apple_build_version__;10010046;__weak;__attribute__((objc_gc(weak)));__strong; ;__unsafe_unretained; ;__DYNAMIC__;1;__ENVIRONMENT_MAC_OS_X_VERSION_MIN_REQUIRED__;101500;__MACH__;1;__STDC__;1;__STDC_HOSTED__;1;__STDC_VERSION__;201112L;__STDC_UTF_16__;1;__STDC_UTF_32__;1;__llvm__;1;__clang__;1;__clang_major__;10;__clang_minor__;0;__clang_patchlevel__;1;__clang_version__;"10.0.1 (clang-1001.0.46.4)";__GNUC_MINOR__;2;__GNUC_PATCHLEVEL__;1;__GNUC__;4;__GXX_ABI_VERSION;1002;__ATOMIC_RELAXED;0;__ATOMIC_CONSUME;1;__ATOMIC_ACQUIRE;2;__ATOMIC_RELEASE;3;__ATOMIC_ACQ_REL;4;__ATOMIC_SEQ_CST;5;__OPENCL_MEMORY_SCOPE_WORK_ITEM;0;__OPENCL_MEMORY_SCOPE_WORK_GROUP;1;__OPENCL_MEMORY_SCOPE_DEVICE;2;__OPENCL_MEMORY_SCOPE_ALL_SVM_DEVICES;3;__OPENCL_MEMORY_SCOPE_SUB_GROUP;4;__PRAGMA_REDEFINE_EXTNAME;1;__VERSION__;"4.2.1 Compatible Apple LLVM 10.0.1 (clang-1001.0.46.4)";__OBJC_BOOL_IS_BOOL;0;__cpp_rtti;199711L;__cpp_exceptions;199711L;__cpp_threadsafe_static_init;200806L;__CONSTANT_CFSTRINGS__;1;__block;__attribute__((__blocks__(byref)));__BLOCKS__;1;__EXCEPTIONS;1;__GXX_RTTI;1;__DEPRECATED;1;__GNUG__;4;__GXX_WEAK__;1;__private_extern__;extern;__ORDER_LITTLE_ENDIAN__;1234;__ORDER_BIG_ENDIAN__;4321;__ORDER_PDP_ENDIAN__;3412;__BYTE_ORDER__;__ORDER_LITTLE_ENDIAN__;__LITTLE_ENDIAN__;1;_LP64;1;__LP64__;1;__CHAR_BIT__;8;__SCHAR_MAX__;127;__SHRT_MAX__;32767;__INT_MAX__;2147483647;__LONG_MAX__;9223372036854775807L;__LONG_LONG_MAX__;9223372036854775807LL;__WCHAR_MAX__;2147483647;__WINT_MAX__;2147483647;__INTMAX_MAX__;9223372036854775807L;__SIZE_MAX__;18446744073709551615UL;__UINTMAX_MAX__;18446744073709551615UL;__PTRDIFF_MAX__;9223372036854775807L;__INTPTR_MAX__;9223372036854775807L;__UINTPTR_MAX__;18446744073709551615UL;__SIZEOF_DOUBLE__;8;__SIZEOF_FLOAT__;4;__SIZEOF_INT__;4;__SIZEOF_LONG__;8;__SIZEOF_LONG_DOUBLE__;16;__SIZEOF_LONG_LONG__;8;__SIZEOF_POINTER__;8;__SIZEOF_SHORT__;2;__SIZEOF_PTRDIFF_T__;8;__SIZEOF_SIZE_T__;8;__SIZEOF_WCHAR_T__;4;__SIZEOF_WINT_T__;4;__SIZEOF_INT128__;16;__INTMAX_TYPE__;long int;__INTMAX_FMTd__;"ld";__INTMAX_FMTi__;"li";__INTMAX_C_SUFFIX__;L;__UINTMAX_TYPE__;long unsigned int;__UINTMAX_FMTo__;"lo";__UINTMAX_FMTu__;"lu";__UINTMAX_FMTx__;"lx";__UINTMAX_FMTX__;"lX";__UINTMAX_C_SUFFIX__;UL;__INTMAX_WIDTH__;64;__PTRDIFF_TYPE__;long int;__PTRDIFF_FMTd__;"ld";__PTRDIFF_FMTi__;"li";__PTRDIFF_WIDTH__;64;__INTPTR_TYPE__;long int;__INTPTR_FMTd__;"ld";__INTPTR_FMTi__;"li";__INTPTR_WIDTH__;64;__SIZE_TYPE__;long unsigned int;__SIZE_FMTo__;"lo";__SIZE_FMTu__;"lu";__SIZE_FMTx__;"lx";__SIZE_FMTX__;"lX";__SIZE_WIDTH__;64;__WCHAR_TYPE__;int;__WCHAR_WIDTH__;32;__WINT_TYPE__;int;__WINT_WIDTH__;32;__SIG_ATOMIC_WIDTH__;32;__SIG_ATOMIC_MAX__;2147483647;__CHAR16_TYPE__;unsigned short;__CHAR32_TYPE__;unsigned int;__UINTMAX_WIDTH__;64;__UINTPTR_TYPE__;long unsigned int;__UINTPTR_FMTo__;"lo";__UINTPTR_FMTu__;"lu";__UINTPTR_FMTx__;"lx";__UINTPTR_FMTX__;"lX";__UINTPTR_WIDTH__;64;__FLT16_DENORM_MIN__;5.9604644775390625e-8F16;__FLT16_HAS_DENORM__;1;__FLT16_DIG__;3;__FLT16_DECIMAL_DIG__;5;__FLT16_EPSILON__;9.765625e-4F16;__FLT16_HAS_INFINITY__;1;__FLT16_HAS_QUIET_NAN__;1;__FLT16_MANT_DIG__;11;__FLT16_MAX_10_EXP__;4;__FLT16_MAX_EXP__;15;__FLT16_MAX__;6.5504e+4F16;__FLT16_MIN_10_EXP__;(-13);__FLT16_MIN_EXP__;(-14);__FLT16_MIN__;6.103515625e-5F16;__FLT_DENORM_MIN__;1.40129846e-45F;__FLT_HAS_DENORM__;1;__FLT_DIG__;6;__FLT_DECIMAL_DIG__;9;__FLT_EPSILON__;1.19209290e-7F;__FLT_HAS_INFINITY__;1;__FLT_HAS_QUIET_NAN__;1;__FLT_MANT_DIG__;24;__FLT_MAX_10_EXP__;38;__FLT_MAX_EXP__;128;__FLT_MAX__;3.40282347e+38F;__FLT_MIN_10_EXP__;(-37);__FLT_MIN_EXP__;(-125);__FLT_MIN__;1.17549435e-38F;__DBL_DENORM_MIN__;4.9406564584124654e-324;__DBL_HAS_DENORM__;1;__DBL_DIG__;15;__DBL_DECIMAL_DIG__;17;__DBL_EPSILON__;2.2204460492503131e-16;__DBL_HAS_INFINITY__;1;__DBL_HAS_QUIET_NAN__;1;__DBL_MANT_DIG__;53;__DBL_MAX_10_EXP__;308;__DBL_MAX_EXP__;1024;__DBL_MAX__;1.7976931348623157e+308;__DBL_MIN_10_EXP__;(-307);__DBL_MIN_EXP__;(-1021);__DBL_MIN__;2.2250738585072014e-308;__LDBL_DENORM_MIN__;3.64519953188247460253e-4951L;__LDBL_HAS_DENORM__;1;__LDBL_DIG__;18;__LDBL_DECIMAL_DIG__;21;__LDBL_EPSILON__;1.08420217248550443401e-19L;__LDBL_HAS_INFINITY__;1;__LDBL_HAS_QUIET_NAN__;1;__LDBL_MANT_DIG__;64;__LDBL_MAX_10_EXP__;4932;__LDBL_MAX_EXP__;16384;__LDBL_MAX__;1.18973149535723176502e+4932L;__LDBL_MIN_10_EXP__;(-4931);__LDBL_MIN_EXP__;(-16381);__LDBL_MIN__;3.36210314311209350626e-4932L;__POINTER_WIDTH__;64;__BIGGEST_ALIGNMENT__;16;__INT8_TYPE__;signed char;__INT8_FMTd__;"hhd";__INT8_FMTi__;"hhi";__INT8_C_SUFFIX__; ;__INT16_TYPE__;short;__INT16_FMTd__;"hd";__INT16_FMTi__;"hi";__INT16_C_SUFFIX__; ;__INT32_TYPE__;int;__INT32_FMTd__;"d";__INT32_FMTi__;"i";__INT32_C_SUFFIX__; ;__INT64_TYPE__;long long int;__INT64_FMTd__;"lld";__INT64_FMTi__;"lli";__INT64_C_SUFFIX__;LL;__UINT8_TYPE__;unsigned char;__UINT8_FMTo__;"hho";__UINT8_FMTu__;"hhu";__UINT8_FMTx__;"hhx";__UINT8_FMTX__;"hhX";__UINT8_C_SUFFIX__; ;__UINT8_MAX__;255;__INT8_MAX__;127;__UINT16_TYPE__;unsigned short;__UINT16_FMTo__;"ho";__UINT16_FMTu__;"hu";__UINT16_FMTx__;"hx";__UINT16_FMTX__;"hX";__UINT16_C_SUFFIX__; ;__UINT16_MAX__;65535;__INT16_MAX__;32767;__UINT32_TYPE__;unsigned int;__UINT32_FMTo__;"o";__UINT32_FMTu__;"u";__UINT32_FMTx__;"x";__UINT32_FMTX__;"X";__UINT32_C_SUFFIX__;U;__UINT32_MAX__;4294967295U;__INT32_MAX__;2147483647;__UINT64_TYPE__;long long unsigned int;__UINT64_FMTo__;"llo";__UINT64_FMTu__;"llu";__UINT64_FMTx__;"llx";__UINT64_FMTX__;"llX";__UINT64_C_SUFFIX__;ULL;__UINT64_MAX__;18446744073709551615ULL;__INT64_MAX__;9223372036854775807LL;__INT_LEAST8_TYPE__;signed char;__INT_LEAST8_MAX__;127;__INT_LEAST8_FMTd__;"hhd";__INT_LEAST8_FMTi__;"hhi";__UINT_LEAST8_TYPE__;unsigned char;__UINT_LEAST8_MAX__;255;__UINT_LEAST8_FMTo__;"hho";__UINT_LEAST8_FMTu__;"hhu";__UINT_LEAST8_FMTx__;"hhx";__UINT_LEAST8_FMTX__;"hhX";__INT_LEAST16_TYPE__;short;__INT_LEAST16_MAX__;32767;__INT_LEAST16_FMTd__;"hd";__INT_LEAST16_FMTi__;"hi";__UINT_LEAST16_TYPE__;unsigned short;__UINT_LEAST16_MAX__;65535;__UINT_LEAST16_FMTo__;"ho";__UINT_LEAST16_FMTu__;"hu";__UINT_LEAST16_FMTx__;"hx";__UINT_LEAST16_FMTX__;"hX";__INT_LEAST32_TYPE__;int;__INT_LEAST32_MAX__;2147483647;__INT_LEAST32_FMTd__;"d";__INT_LEAST32_FMTi__;"i";__UINT_LEAST32_TYPE__;unsigned int;__UINT_LEAST32_MAX__;4294967295U;__UINT_LEAST32_FMTo__;"o";__UINT_LEAST32_FMTu__;"u";__UINT_LEAST32_FMTx__;"x";__UINT_LEAST32_FMTX__;"X";__INT_LEAST64_TYPE__;long int;__INT_LEAST64_MAX__;9223372036854775807L;__INT_LEAST64_FMTd__;"ld";__INT_LEAST64_FMTi__;"li";__UINT_LEAST64_TYPE__;long unsigned int;__UINT_LEAST64_MAX__;18446744073709551615UL;__UINT_LEAST64_FMTo__;"lo";__UINT_LEAST64_FMTu__;"lu";__UINT_LEAST64_FMTx__;"lx";__UINT_LEAST64_FMTX__;"lX";__INT_FAST8_TYPE__;signed char;__INT_FAST8_MAX__;127;__INT_FAST8_FMTd__;"hhd";__INT_FAST8_FMTi__;"hhi";__UINT_FAST8_TYPE__;unsigned char;__UINT_FAST8_MAX__;255;__UINT_FAST8_FMTo__;"hho";__UINT_FAST8_FMTu__;"hhu";__UINT_FAST8_FMTx__;"hhx";__UINT_FAST8_FMTX__;"hhX";__INT_FAST16_TYPE__;short;__INT_FAST16_MAX__;32767;__INT_FAST16_FMTd__;"hd";__INT_FAST16_FMTi__;"hi";__UINT_FAST16_TYPE__;unsigned short;__UINT_FAST16_MAX__;65535;__UINT_FAST16_FMTo__;"ho";__UINT_FAST16_FMTu__;"hu";__UINT_FAST16_FMTx__;"hx";__UINT_FAST16_FMTX__;"hX";__INT_FAST32_TYPE__;int;__INT_FAST32_MAX__;2147483647;__INT_FAST32_FMTd__;"d";__INT_FAST32_FMTi__;"i";__UINT_FAST32_TYPE__;unsigned int;__UINT_FAST32_MAX__;4294967295U;__UINT_FAST32_FMTo__;"o";__UINT_FAST32_FMTu__;"u";__UINT_FAST32_FMTx__;"x";__UINT_FAST32_FMTX__;"X";__INT_FAST64_TYPE__;long int;__INT_FAST64_MAX__;9223372036854775807L;__INT_FAST64_FMTd__;"ld";__INT_FAST64_FMTi__;"li";__UINT_FAST64_TYPE__;long unsigned int;__UINT_FAST64_MAX__;18446744073709551615UL;__UINT_FAST64_FMTo__;"lo";__UINT_FAST64_FMTu__;"lu";__UINT_FAST64_FMTx__;"lx";__UINT_FAST64_FMTX__;"lX";__USER_LABEL_PREFIX__;_;__FINITE_MATH_ONLY__;0;__GNUC_GNU_INLINE__;1;__GCC_ATOMIC_TEST_AND_SET_TRUEVAL;1;__CLANG_ATOMIC_BOOL_LOCK_FREE;2;__CLANG_ATOMIC_CHAR_LOCK_FREE;2;__CLANG_ATOMIC_CHAR16_T_LOCK_FREE;2;__CLANG_ATOMIC_CHAR32_T_LOCK_FREE;2;__CLANG_ATOMIC_WCHAR_T_LOCK_FREE;2;__CLANG_ATOMIC_SHORT_LOCK_FREE;2;__CLANG_ATOMIC_INT_LOCK_FREE;2;__CLANG_ATOMIC_LONG_LOCK_FREE;2;__CLANG_ATOMIC_LLONG_LOCK_FREE;2;__CLANG_ATOMIC_POINTER_LOCK_FREE;2;__GCC_ATOMIC_BOOL_LOCK_FREE;2;__GCC_ATOMIC_CHAR_LOCK_FREE;2;__GCC_ATOMIC_CHAR16_T_LOCK_FREE;2;__GCC_ATOMIC_CHAR32_T_LOCK_FREE;2;__GCC_ATOMIC_WCHAR_T_LOCK_FREE;2;__GCC_ATOMIC_SHORT_LOCK_FREE;2;__GCC_ATOMIC_INT_LOCK_FREE;2;__GCC_ATOMIC_LONG_LOCK_FREE;2;__GCC_ATOMIC_LLONG_LOCK_FREE;2;__GCC_ATOMIC_POINTER_LOCK_FREE;2;__NO_INLINE__;1;__PIC__;2;__pic__;2;__FLT_EVAL_METHOD__;0;__FLT_RADIX__;2;__DECIMAL_DIG__;__LDBL_DECIMAL_DIG__;__SSP__;1;__nonnull;_Nonnull;__null_unspecified;_Null_unspecified;__nullable;_Nullable;__GLIBCXX_TYPE_INT_N_0;__int128;__GLIBCXX_BITSIZE_INT_N_0;128;__amd64__;1;__amd64;1;__x86_64;1;__x86_64__;1;__core2;1;__core2__;1;__tune_core2__;1;__REGISTER_PREFIX__; ;__NO_MATH_INLINES;1;__FXSR__;1;__SSE4_1__;1;__SSSE3__;1;__SSE3__;1;__SSE2__;1;__SSE2_MATH__;1;__SSE__;1;__SSE_MATH__;1;__MMX__;1;__GCC_HAVE_SYNC_COMPARE_AND_SWAP_1;1;__GCC_HAVE_SYNC_COMPARE_AND_SWAP_2;1;__GCC_HAVE_SYNC_COMPARE_AND_SWAP_4;1;__GCC_HAVE_SYNC_COMPARE_AND_SWAP_8;1;__GCC_HAVE_SYNC_COMPARE_AND_SWAP_16;1;__APPLE_CC__;6000;__APPLE__;1;__STDC_NO_THREADS__;1;OBJC_NEW_PROPERTIES;1;__apple_build_version__;10010046;__weak;__attribute__((objc_gc(weak)));__strong; ;__unsafe_unretained; ;__DYNAMIC__;1;__ENVIRONMENT_MAC_OS_X_VERSION_MIN_REQUIRED__;101500;__MACH__;1;__STDC__;1;__STDC_HOSTED__;1;__cplusplus;199711L;__STDCPP_DEFAULT_NEW_ALIGNMENT__;16UL;__STDC_UTF_16__;1;__STDC_UTF_32__;1
+CMAKE_EXTRA_GENERATOR_CXX_SYSTEM_DEFINED_MACROS:INTERNAL=__llvm__;1;__clang__;1;__clang_major__;11;__clang_minor__;0;__clang_patchlevel__;0;__clang_version__;"11.0.0 (clang-1100.0.33.8)";__GNUC_MINOR__;2;__GNUC_PATCHLEVEL__;1;__GNUC__;4;__GXX_ABI_VERSION;1002;__ATOMIC_RELAXED;0;__ATOMIC_CONSUME;1;__ATOMIC_ACQUIRE;2;__ATOMIC_RELEASE;3;__ATOMIC_ACQ_REL;4;__ATOMIC_SEQ_CST;5;__OPENCL_MEMORY_SCOPE_WORK_ITEM;0;__OPENCL_MEMORY_SCOPE_WORK_GROUP;1;__OPENCL_MEMORY_SCOPE_DEVICE;2;__OPENCL_MEMORY_SCOPE_ALL_SVM_DEVICES;3;__OPENCL_MEMORY_SCOPE_SUB_GROUP;4;__PRAGMA_REDEFINE_EXTNAME;1;__VERSION__;"4.2.1 Compatible Apple LLVM 11.0.0 (clang-1100.0.33.8)";__OBJC_BOOL_IS_BOOL;0;__CONSTANT_CFSTRINGS__;1;__block;__attribute__((__blocks__(byref)));__BLOCKS__;1;__ORDER_LITTLE_ENDIAN__;1234;__ORDER_BIG_ENDIAN__;4321;__ORDER_PDP_ENDIAN__;3412;__BYTE_ORDER__;__ORDER_LITTLE_ENDIAN__;__LITTLE_ENDIAN__;1;_LP64;1;__LP64__;1;__CHAR_BIT__;8;__SCHAR_MAX__;127;__SHRT_MAX__;32767;__INT_MAX__;2147483647;__LONG_MAX__;9223372036854775807L;__LONG_LONG_MAX__;9223372036854775807LL;__WCHAR_MAX__;2147483647;__WINT_MAX__;2147483647;__INTMAX_MAX__;9223372036854775807L;__SIZE_MAX__;18446744073709551615UL;__UINTMAX_MAX__;18446744073709551615UL;__PTRDIFF_MAX__;9223372036854775807L;__INTPTR_MAX__;9223372036854775807L;__UINTPTR_MAX__;18446744073709551615UL;__SIZEOF_DOUBLE__;8;__SIZEOF_FLOAT__;4;__SIZEOF_INT__;4;__SIZEOF_LONG__;8;__SIZEOF_LONG_DOUBLE__;16;__SIZEOF_LONG_LONG__;8;__SIZEOF_POINTER__;8;__SIZEOF_SHORT__;2;__SIZEOF_PTRDIFF_T__;8;__SIZEOF_SIZE_T__;8;__SIZEOF_WCHAR_T__;4;__SIZEOF_WINT_T__;4;__SIZEOF_INT128__;16;__INTMAX_TYPE__;long int;__INTMAX_FMTd__;"ld";__INTMAX_FMTi__;"li";__INTMAX_C_SUFFIX__;L;__UINTMAX_TYPE__;long unsigned int;__UINTMAX_FMTo__;"lo";__UINTMAX_FMTu__;"lu";__UINTMAX_FMTx__;"lx";__UINTMAX_FMTX__;"lX";__UINTMAX_C_SUFFIX__;UL;__INTMAX_WIDTH__;64;__PTRDIFF_TYPE__;long int;__PTRDIFF_FMTd__;"ld";__PTRDIFF_FMTi__;"li";__PTRDIFF_WIDTH__;64;__INTPTR_TYPE__;long int;__INTPTR_FMTd__;"ld";__INTPTR_FMTi__;"li";__INTPTR_WIDTH__;64;__SIZE_TYPE__;long unsigned int;__SIZE_FMTo__;"lo";__SIZE_FMTu__;"lu";__SIZE_FMTx__;"lx";__SIZE_FMTX__;"lX";__SIZE_WIDTH__;64;__WCHAR_TYPE__;int;__WCHAR_WIDTH__;32;__WINT_TYPE__;int;__WINT_WIDTH__;32;__SIG_ATOMIC_WIDTH__;32;__SIG_ATOMIC_MAX__;2147483647;__CHAR16_TYPE__;unsigned short;__CHAR32_TYPE__;unsigned int;__UINTMAX_WIDTH__;64;__UINTPTR_TYPE__;long unsigned int;__UINTPTR_FMTo__;"lo";__UINTPTR_FMTu__;"lu";__UINTPTR_FMTx__;"lx";__UINTPTR_FMTX__;"lX";__UINTPTR_WIDTH__;64;__FLT16_DENORM_MIN__;5.9604644775390625e-8F16;__FLT16_HAS_DENORM__;1;__FLT16_DIG__;3;__FLT16_DECIMAL_DIG__;5;__FLT16_EPSILON__;9.765625e-4F16;__FLT16_HAS_INFINITY__;1;__FLT16_HAS_QUIET_NAN__;1;__FLT16_MANT_DIG__;11;__FLT16_MAX_10_EXP__;4;__FLT16_MAX_EXP__;15;__FLT16_MAX__;6.5504e+4F16;__FLT16_MIN_10_EXP__;(-13);__FLT16_MIN_EXP__;(-14);__FLT16_MIN__;6.103515625e-5F16;__FLT_DENORM_MIN__;1.40129846e-45F;__FLT_HAS_DENORM__;1;__FLT_DIG__;6;__FLT_DECIMAL_DIG__;9;__FLT_EPSILON__;1.19209290e-7F;__FLT_HAS_INFINITY__;1;__FLT_HAS_QUIET_NAN__;1;__FLT_MANT_DIG__;24;__FLT_MAX_10_EXP__;38;__FLT_MAX_EXP__;128;__FLT_MAX__;3.40282347e+38F;__FLT_MIN_10_EXP__;(-37);__FLT_MIN_EXP__;(-125);__FLT_MIN__;1.17549435e-38F;__DBL_DENORM_MIN__;4.9406564584124654e-324;__DBL_HAS_DENORM__;1;__DBL_DIG__;15;__DBL_DECIMAL_DIG__;17;__DBL_EPSILON__;2.2204460492503131e-16;__DBL_HAS_INFINITY__;1;__DBL_HAS_QUIET_NAN__;1;__DBL_MANT_DIG__;53;__DBL_MAX_10_EXP__;308;__DBL_MAX_EXP__;1024;__DBL_MAX__;1.7976931348623157e+308;__DBL_MIN_10_EXP__;(-307);__DBL_MIN_EXP__;(-1021);__DBL_MIN__;2.2250738585072014e-308;__LDBL_DENORM_MIN__;3.64519953188247460253e-4951L;__LDBL_HAS_DENORM__;1;__LDBL_DIG__;18;__LDBL_DECIMAL_DIG__;21;__LDBL_EPSILON__;1.08420217248550443401e-19L;__LDBL_HAS_INFINITY__;1;__LDBL_HAS_QUIET_NAN__;1;__LDBL_MANT_DIG__;64;__LDBL_MAX_10_EXP__;4932;__LDBL_MAX_EXP__;16384;__LDBL_MAX__;1.18973149535723176502e+4932L;__LDBL_MIN_10_EXP__;(-4931);__LDBL_MIN_EXP__;(-16381);__LDBL_MIN__;3.36210314311209350626e-4932L;__POINTER_WIDTH__;64;__BIGGEST_ALIGNMENT__;16;__INT8_TYPE__;signed char;__INT8_FMTd__;"hhd";__INT8_FMTi__;"hhi";__INT8_C_SUFFIX__; ;__INT16_TYPE__;short;__INT16_FMTd__;"hd";__INT16_FMTi__;"hi";__INT16_C_SUFFIX__; ;__INT32_TYPE__;int;__INT32_FMTd__;"d";__INT32_FMTi__;"i";__INT32_C_SUFFIX__; ;__INT64_TYPE__;long long int;__INT64_FMTd__;"lld";__INT64_FMTi__;"lli";__INT64_C_SUFFIX__;LL;__UINT8_TYPE__;unsigned char;__UINT8_FMTo__;"hho";__UINT8_FMTu__;"hhu";__UINT8_FMTx__;"hhx";__UINT8_FMTX__;"hhX";__UINT8_C_SUFFIX__; ;__UINT8_MAX__;255;__INT8_MAX__;127;__UINT16_TYPE__;unsigned short;__UINT16_FMTo__;"ho";__UINT16_FMTu__;"hu";__UINT16_FMTx__;"hx";__UINT16_FMTX__;"hX";__UINT16_C_SUFFIX__; ;__UINT16_MAX__;65535;__INT16_MAX__;32767;__UINT32_TYPE__;unsigned int;__UINT32_FMTo__;"o";__UINT32_FMTu__;"u";__UINT32_FMTx__;"x";__UINT32_FMTX__;"X";__UINT32_C_SUFFIX__;U;__UINT32_MAX__;4294967295U;__INT32_MAX__;2147483647;__UINT64_TYPE__;long long unsigned int;__UINT64_FMTo__;"llo";__UINT64_FMTu__;"llu";__UINT64_FMTx__;"llx";__UINT64_FMTX__;"llX";__UINT64_C_SUFFIX__;ULL;__UINT64_MAX__;18446744073709551615ULL;__INT64_MAX__;9223372036854775807LL;__INT_LEAST8_TYPE__;signed char;__INT_LEAST8_MAX__;127;__INT_LEAST8_FMTd__;"hhd";__INT_LEAST8_FMTi__;"hhi";__UINT_LEAST8_TYPE__;unsigned char;__UINT_LEAST8_MAX__;255;__UINT_LEAST8_FMTo__;"hho";__UINT_LEAST8_FMTu__;"hhu";__UINT_LEAST8_FMTx__;"hhx";__UINT_LEAST8_FMTX__;"hhX";__INT_LEAST16_TYPE__;short;__INT_LEAST16_MAX__;32767;__INT_LEAST16_FMTd__;"hd";__INT_LEAST16_FMTi__;"hi";__UINT_LEAST16_TYPE__;unsigned short;__UINT_LEAST16_MAX__;65535;__UINT_LEAST16_FMTo__;"ho";__UINT_LEAST16_FMTu__;"hu";__UINT_LEAST16_FMTx__;"hx";__UINT_LEAST16_FMTX__;"hX";__INT_LEAST32_TYPE__;int;__INT_LEAST32_MAX__;2147483647;__INT_LEAST32_FMTd__;"d";__INT_LEAST32_FMTi__;"i";__UINT_LEAST32_TYPE__;unsigned int;__UINT_LEAST32_MAX__;4294967295U;__UINT_LEAST32_FMTo__;"o";__UINT_LEAST32_FMTu__;"u";__UINT_LEAST32_FMTx__;"x";__UINT_LEAST32_FMTX__;"X";__INT_LEAST64_TYPE__;long long int;__INT_LEAST64_MAX__;9223372036854775807LL;__INT_LEAST64_FMTd__;"lld";__INT_LEAST64_FMTi__;"lli";__UINT_LEAST64_TYPE__;long long unsigned int;__UINT_LEAST64_MAX__;18446744073709551615ULL;__UINT_LEAST64_FMTo__;"llo";__UINT_LEAST64_FMTu__;"llu";__UINT_LEAST64_FMTx__;"llx";__UINT_LEAST64_FMTX__;"llX";__INT_FAST8_TYPE__;signed char;__INT_FAST8_MAX__;127;__INT_FAST8_FMTd__;"hhd";__INT_FAST8_FMTi__;"hhi";__UINT_FAST8_TYPE__;unsigned char;__UINT_FAST8_MAX__;255;__UINT_FAST8_FMTo__;"hho";__UINT_FAST8_FMTu__;"hhu";__UINT_FAST8_FMTx__;"hhx";__UINT_FAST8_FMTX__;"hhX";__INT_FAST16_TYPE__;short;__INT_FAST16_MAX__;32767;__INT_FAST16_FMTd__;"hd";__INT_FAST16_FMTi__;"hi";__UINT_FAST16_TYPE__;unsigned short;__UINT_FAST16_MAX__;65535;__UINT_FAST16_FMTo__;"ho";__UINT_FAST16_FMTu__;"hu";__UINT_FAST16_FMTx__;"hx";__UINT_FAST16_FMTX__;"hX";__INT_FAST32_TYPE__;int;__INT_FAST32_MAX__;2147483647;__INT_FAST32_FMTd__;"d";__INT_FAST32_FMTi__;"i";__UINT_FAST32_TYPE__;unsigned int;__UINT_FAST32_MAX__;4294967295U;__UINT_FAST32_FMTo__;"o";__UINT_FAST32_FMTu__;"u";__UINT_FAST32_FMTx__;"x";__UINT_FAST32_FMTX__;"X";__INT_FAST64_TYPE__;long long int;__INT_FAST64_MAX__;9223372036854775807LL;__INT_FAST64_FMTd__;"lld";__INT_FAST64_FMTi__;"lli";__UINT_FAST64_TYPE__;long long unsigned int;__UINT_FAST64_MAX__;18446744073709551615ULL;__UINT_FAST64_FMTo__;"llo";__UINT_FAST64_FMTu__;"llu";__UINT_FAST64_FMTx__;"llx";__UINT_FAST64_FMTX__;"llX";__USER_LABEL_PREFIX__;_;__FINITE_MATH_ONLY__;0;__GNUC_STDC_INLINE__;1;__GCC_ATOMIC_TEST_AND_SET_TRUEVAL;1;__CLANG_ATOMIC_BOOL_LOCK_FREE;2;__CLANG_ATOMIC_CHAR_LOCK_FREE;2;__CLANG_ATOMIC_CHAR16_T_LOCK_FREE;2;__CLANG_ATOMIC_CHAR32_T_LOCK_FREE;2;__CLANG_ATOMIC_WCHAR_T_LOCK_FREE;2;__CLANG_ATOMIC_SHORT_LOCK_FREE;2;__CLANG_ATOMIC_INT_LOCK_FREE;2;__CLANG_ATOMIC_LONG_LOCK_FREE;2;__CLANG_ATOMIC_LLONG_LOCK_FREE;2;__CLANG_ATOMIC_POINTER_LOCK_FREE;2;__GCC_ATOMIC_BOOL_LOCK_FREE;2;__GCC_ATOMIC_CHAR_LOCK_FREE;2;__GCC_ATOMIC_CHAR16_T_LOCK_FREE;2;__GCC_ATOMIC_CHAR32_T_LOCK_FREE;2;__GCC_ATOMIC_WCHAR_T_LOCK_FREE;2;__GCC_ATOMIC_SHORT_LOCK_FREE;2;__GCC_ATOMIC_INT_LOCK_FREE;2;__GCC_ATOMIC_LONG_LOCK_FREE;2;__GCC_ATOMIC_LLONG_LOCK_FREE;2;__GCC_ATOMIC_POINTER_LOCK_FREE;2;__NO_INLINE__;1;__PIC__;2;__pic__;2;__FLT_EVAL_METHOD__;0;__FLT_RADIX__;2;__DECIMAL_DIG__;__LDBL_DECIMAL_DIG__;__SSP__;1;__nonnull;_Nonnull;__null_unspecified;_Null_unspecified;__nullable;_Nullable;__code_model_small_;1;__amd64__;1;__amd64;1;__x86_64;1;__x86_64__;1;__core2;1;__core2__;1;__tune_core2__;1;__REGISTER_PREFIX__; ;__NO_MATH_INLINES;1;__FXSR__;1;__SSE4_1__;1;__SSSE3__;1;__SSE3__;1;__SSE2__;1;__SSE2_MATH__;1;__SSE__;1;__SSE_MATH__;1;__MMX__;1;__GCC_HAVE_SYNC_COMPARE_AND_SWAP_1;1;__GCC_HAVE_SYNC_COMPARE_AND_SWAP_2;1;__GCC_HAVE_SYNC_COMPARE_AND_SWAP_4;1;__GCC_HAVE_SYNC_COMPARE_AND_SWAP_8;1;__GCC_HAVE_SYNC_COMPARE_AND_SWAP_16;1;__APPLE_CC__;6000;__APPLE__;1;__STDC_NO_THREADS__;1;OBJC_NEW_PROPERTIES;1;__apple_build_version__;11000033;__weak;__attribute__((objc_gc(weak)));__strong; ;__unsafe_unretained; ;__DYNAMIC__;1;__ENVIRONMENT_MAC_OS_X_VERSION_MIN_REQUIRED__;101500;__MACH__;1;__STDC__;1;__STDC_HOSTED__;1;__STDC_VERSION__;201112L;__STDC_UTF_16__;1;__STDC_UTF_32__;1;__llvm__;1;__clang__;1;__clang_major__;11;__clang_minor__;0;__clang_patchlevel__;0;__clang_version__;"11.0.0 (clang-1100.0.33.8)";__GNUC_MINOR__;2;__GNUC_PATCHLEVEL__;1;__GNUC__;4;__GXX_ABI_VERSION;1002;__ATOMIC_RELAXED;0;__ATOMIC_CONSUME;1;__ATOMIC_ACQUIRE;2;__ATOMIC_RELEASE;3;__ATOMIC_ACQ_REL;4;__ATOMIC_SEQ_CST;5;__OPENCL_MEMORY_SCOPE_WORK_ITEM;0;__OPENCL_MEMORY_SCOPE_WORK_GROUP;1;__OPENCL_MEMORY_SCOPE_DEVICE;2;__OPENCL_MEMORY_SCOPE_ALL_SVM_DEVICES;3;__OPENCL_MEMORY_SCOPE_SUB_GROUP;4;__PRAGMA_REDEFINE_EXTNAME;1;__VERSION__;"4.2.1 Compatible Apple LLVM 11.0.0 (clang-1100.0.33.8)";__OBJC_BOOL_IS_BOOL;0;__cpp_rtti;199711L;__cpp_exceptions;199711L;__cpp_threadsafe_static_init;200806L;__CONSTANT_CFSTRINGS__;1;__block;__attribute__((__blocks__(byref)));__BLOCKS__;1;__EXCEPTIONS;1;__GXX_RTTI;1;__DEPRECATED;1;__GNUG__;4;__GXX_WEAK__;1;__private_extern__;extern;__ORDER_LITTLE_ENDIAN__;1234;__ORDER_BIG_ENDIAN__;4321;__ORDER_PDP_ENDIAN__;3412;__BYTE_ORDER__;__ORDER_LITTLE_ENDIAN__;__LITTLE_ENDIAN__;1;_LP64;1;__LP64__;1;__CHAR_BIT__;8;__SCHAR_MAX__;127;__SHRT_MAX__;32767;__INT_MAX__;2147483647;__LONG_MAX__;9223372036854775807L;__LONG_LONG_MAX__;9223372036854775807LL;__WCHAR_MAX__;2147483647;__WINT_MAX__;2147483647;__INTMAX_MAX__;9223372036854775807L;__SIZE_MAX__;18446744073709551615UL;__UINTMAX_MAX__;18446744073709551615UL;__PTRDIFF_MAX__;9223372036854775807L;__INTPTR_MAX__;9223372036854775807L;__UINTPTR_MAX__;18446744073709551615UL;__SIZEOF_DOUBLE__;8;__SIZEOF_FLOAT__;4;__SIZEOF_INT__;4;__SIZEOF_LONG__;8;__SIZEOF_LONG_DOUBLE__;16;__SIZEOF_LONG_LONG__;8;__SIZEOF_POINTER__;8;__SIZEOF_SHORT__;2;__SIZEOF_PTRDIFF_T__;8;__SIZEOF_SIZE_T__;8;__SIZEOF_WCHAR_T__;4;__SIZEOF_WINT_T__;4;__SIZEOF_INT128__;16;__INTMAX_TYPE__;long int;__INTMAX_FMTd__;"ld";__INTMAX_FMTi__;"li";__INTMAX_C_SUFFIX__;L;__UINTMAX_TYPE__;long unsigned int;__UINTMAX_FMTo__;"lo";__UINTMAX_FMTu__;"lu";__UINTMAX_FMTx__;"lx";__UINTMAX_FMTX__;"lX";__UINTMAX_C_SUFFIX__;UL;__INTMAX_WIDTH__;64;__PTRDIFF_TYPE__;long int;__PTRDIFF_FMTd__;"ld";__PTRDIFF_FMTi__;"li";__PTRDIFF_WIDTH__;64;__INTPTR_TYPE__;long int;__INTPTR_FMTd__;"ld";__INTPTR_FMTi__;"li";__INTPTR_WIDTH__;64;__SIZE_TYPE__;long unsigned int;__SIZE_FMTo__;"lo";__SIZE_FMTu__;"lu";__SIZE_FMTx__;"lx";__SIZE_FMTX__;"lX";__SIZE_WIDTH__;64;__WCHAR_TYPE__;int;__WCHAR_WIDTH__;32;__WINT_TYPE__;int;__WINT_WIDTH__;32;__SIG_ATOMIC_WIDTH__;32;__SIG_ATOMIC_MAX__;2147483647;__CHAR16_TYPE__;unsigned short;__CHAR32_TYPE__;unsigned int;__UINTMAX_WIDTH__;64;__UINTPTR_TYPE__;long unsigned int;__UINTPTR_FMTo__;"lo";__UINTPTR_FMTu__;"lu";__UINTPTR_FMTx__;"lx";__UINTPTR_FMTX__;"lX";__UINTPTR_WIDTH__;64;__FLT16_DENORM_MIN__;5.9604644775390625e-8F16;__FLT16_HAS_DENORM__;1;__FLT16_DIG__;3;__FLT16_DECIMAL_DIG__;5;__FLT16_EPSILON__;9.765625e-4F16;__FLT16_HAS_INFINITY__;1;__FLT16_HAS_QUIET_NAN__;1;__FLT16_MANT_DIG__;11;__FLT16_MAX_10_EXP__;4;__FLT16_MAX_EXP__;15;__FLT16_MAX__;6.5504e+4F16;__FLT16_MIN_10_EXP__;(-13);__FLT16_MIN_EXP__;(-14);__FLT16_MIN__;6.103515625e-5F16;__FLT_DENORM_MIN__;1.40129846e-45F;__FLT_HAS_DENORM__;1;__FLT_DIG__;6;__FLT_DECIMAL_DIG__;9;__FLT_EPSILON__;1.19209290e-7F;__FLT_HAS_INFINITY__;1;__FLT_HAS_QUIET_NAN__;1;__FLT_MANT_DIG__;24;__FLT_MAX_10_EXP__;38;__FLT_MAX_EXP__;128;__FLT_MAX__;3.40282347e+38F;__FLT_MIN_10_EXP__;(-37);__FLT_MIN_EXP__;(-125);__FLT_MIN__;1.17549435e-38F;__DBL_DENORM_MIN__;4.9406564584124654e-324;__DBL_HAS_DENORM__;1;__DBL_DIG__;15;__DBL_DECIMAL_DIG__;17;__DBL_EPSILON__;2.2204460492503131e-16;__DBL_HAS_INFINITY__;1;__DBL_HAS_QUIET_NAN__;1;__DBL_MANT_DIG__;53;__DBL_MAX_10_EXP__;308;__DBL_MAX_EXP__;1024;__DBL_MAX__;1.7976931348623157e+308;__DBL_MIN_10_EXP__;(-307);__DBL_MIN_EXP__;(-1021);__DBL_MIN__;2.2250738585072014e-308;__LDBL_DENORM_MIN__;3.64519953188247460253e-4951L;__LDBL_HAS_DENORM__;1;__LDBL_DIG__;18;__LDBL_DECIMAL_DIG__;21;__LDBL_EPSILON__;1.08420217248550443401e-19L;__LDBL_HAS_INFINITY__;1;__LDBL_HAS_QUIET_NAN__;1;__LDBL_MANT_DIG__;64;__LDBL_MAX_10_EXP__;4932;__LDBL_MAX_EXP__;16384;__LDBL_MAX__;1.18973149535723176502e+4932L;__LDBL_MIN_10_EXP__;(-4931);__LDBL_MIN_EXP__;(-16381);__LDBL_MIN__;3.36210314311209350626e-4932L;__POINTER_WIDTH__;64;__BIGGEST_ALIGNMENT__;16;__INT8_TYPE__;signed char;__INT8_FMTd__;"hhd";__INT8_FMTi__;"hhi";__INT8_C_SUFFIX__; ;__INT16_TYPE__;short;__INT16_FMTd__;"hd";__INT16_FMTi__;"hi";__INT16_C_SUFFIX__; ;__INT32_TYPE__;int;__INT32_FMTd__;"d";__INT32_FMTi__;"i";__INT32_C_SUFFIX__; ;__INT64_TYPE__;long long int;__INT64_FMTd__;"lld";__INT64_FMTi__;"lli";__INT64_C_SUFFIX__;LL;__UINT8_TYPE__;unsigned char;__UINT8_FMTo__;"hho";__UINT8_FMTu__;"hhu";__UINT8_FMTx__;"hhx";__UINT8_FMTX__;"hhX";__UINT8_C_SUFFIX__; ;__UINT8_MAX__;255;__INT8_MAX__;127;__UINT16_TYPE__;unsigned short;__UINT16_FMTo__;"ho";__UINT16_FMTu__;"hu";__UINT16_FMTx__;"hx";__UINT16_FMTX__;"hX";__UINT16_C_SUFFIX__; ;__UINT16_MAX__;65535;__INT16_MAX__;32767;__UINT32_TYPE__;unsigned int;__UINT32_FMTo__;"o";__UINT32_FMTu__;"u";__UINT32_FMTx__;"x";__UINT32_FMTX__;"X";__UINT32_C_SUFFIX__;U;__UINT32_MAX__;4294967295U;__INT32_MAX__;2147483647;__UINT64_TYPE__;long long unsigned int;__UINT64_FMTo__;"llo";__UINT64_FMTu__;"llu";__UINT64_FMTx__;"llx";__UINT64_FMTX__;"llX";__UINT64_C_SUFFIX__;ULL;__UINT64_MAX__;18446744073709551615ULL;__INT64_MAX__;9223372036854775807LL;__INT_LEAST8_TYPE__;signed char;__INT_LEAST8_MAX__;127;__INT_LEAST8_FMTd__;"hhd";__INT_LEAST8_FMTi__;"hhi";__UINT_LEAST8_TYPE__;unsigned char;__UINT_LEAST8_MAX__;255;__UINT_LEAST8_FMTo__;"hho";__UINT_LEAST8_FMTu__;"hhu";__UINT_LEAST8_FMTx__;"hhx";__UINT_LEAST8_FMTX__;"hhX";__INT_LEAST16_TYPE__;short;__INT_LEAST16_MAX__;32767;__INT_LEAST16_FMTd__;"hd";__INT_LEAST16_FMTi__;"hi";__UINT_LEAST16_TYPE__;unsigned short;__UINT_LEAST16_MAX__;65535;__UINT_LEAST16_FMTo__;"ho";__UINT_LEAST16_FMTu__;"hu";__UINT_LEAST16_FMTx__;"hx";__UINT_LEAST16_FMTX__;"hX";__INT_LEAST32_TYPE__;int;__INT_LEAST32_MAX__;2147483647;__INT_LEAST32_FMTd__;"d";__INT_LEAST32_FMTi__;"i";__UINT_LEAST32_TYPE__;unsigned int;__UINT_LEAST32_MAX__;4294967295U;__UINT_LEAST32_FMTo__;"o";__UINT_LEAST32_FMTu__;"u";__UINT_LEAST32_FMTx__;"x";__UINT_LEAST32_FMTX__;"X";__INT_LEAST64_TYPE__;long long int;__INT_LEAST64_MAX__;9223372036854775807LL;__INT_LEAST64_FMTd__;"lld";__INT_LEAST64_FMTi__;"lli";__UINT_LEAST64_TYPE__;long long unsigned int;__UINT_LEAST64_MAX__;18446744073709551615ULL;__UINT_LEAST64_FMTo__;"llo";__UINT_LEAST64_FMTu__;"llu";__UINT_LEAST64_FMTx__;"llx";__UINT_LEAST64_FMTX__;"llX";__INT_FAST8_TYPE__;signed char;__INT_FAST8_MAX__;127;__INT_FAST8_FMTd__;"hhd";__INT_FAST8_FMTi__;"hhi";__UINT_FAST8_TYPE__;unsigned char;__UINT_FAST8_MAX__;255;__UINT_FAST8_FMTo__;"hho";__UINT_FAST8_FMTu__;"hhu";__UINT_FAST8_FMTx__;"hhx";__UINT_FAST8_FMTX__;"hhX";__INT_FAST16_TYPE__;short;__INT_FAST16_MAX__;32767;__INT_FAST16_FMTd__;"hd";__INT_FAST16_FMTi__;"hi";__UINT_FAST16_TYPE__;unsigned short;__UINT_FAST16_MAX__;65535;__UINT_FAST16_FMTo__;"ho";__UINT_FAST16_FMTu__;"hu";__UINT_FAST16_FMTx__;"hx";__UINT_FAST16_FMTX__;"hX";__INT_FAST32_TYPE__;int;__INT_FAST32_MAX__;2147483647;__INT_FAST32_FMTd__;"d";__INT_FAST32_FMTi__;"i";__UINT_FAST32_TYPE__;unsigned int;__UINT_FAST32_MAX__;4294967295U;__UINT_FAST32_FMTo__;"o";__UINT_FAST32_FMTu__;"u";__UINT_FAST32_FMTx__;"x";__UINT_FAST32_FMTX__;"X";__INT_FAST64_TYPE__;long long int;__INT_FAST64_MAX__;9223372036854775807LL;__INT_FAST64_FMTd__;"lld";__INT_FAST64_FMTi__;"lli";__UINT_FAST64_TYPE__;long long unsigned int;__UINT_FAST64_MAX__;18446744073709551615ULL;__UINT_FAST64_FMTo__;"llo";__UINT_FAST64_FMTu__;"llu";__UINT_FAST64_FMTx__;"llx";__UINT_FAST64_FMTX__;"llX";__USER_LABEL_PREFIX__;_;__FINITE_MATH_ONLY__;0;__GNUC_GNU_INLINE__;1;__GCC_ATOMIC_TEST_AND_SET_TRUEVAL;1;__CLANG_ATOMIC_BOOL_LOCK_FREE;2;__CLANG_ATOMIC_CHAR_LOCK_FREE;2;__CLANG_ATOMIC_CHAR16_T_LOCK_FREE;2;__CLANG_ATOMIC_CHAR32_T_LOCK_FREE;2;__CLANG_ATOMIC_WCHAR_T_LOCK_FREE;2;__CLANG_ATOMIC_SHORT_LOCK_FREE;2;__CLANG_ATOMIC_INT_LOCK_FREE;2;__CLANG_ATOMIC_LONG_LOCK_FREE;2;__CLANG_ATOMIC_LLONG_LOCK_FREE;2;__CLANG_ATOMIC_POINTER_LOCK_FREE;2;__GCC_ATOMIC_BOOL_LOCK_FREE;2;__GCC_ATOMIC_CHAR_LOCK_FREE;2;__GCC_ATOMIC_CHAR16_T_LOCK_FREE;2;__GCC_ATOMIC_CHAR32_T_LOCK_FREE;2;__GCC_ATOMIC_WCHAR_T_LOCK_FREE;2;__GCC_ATOMIC_SHORT_LOCK_FREE;2;__GCC_ATOMIC_INT_LOCK_FREE;2;__GCC_ATOMIC_LONG_LOCK_FREE;2;__GCC_ATOMIC_LLONG_LOCK_FREE;2;__GCC_ATOMIC_POINTER_LOCK_FREE;2;__NO_INLINE__;1;__PIC__;2;__pic__;2;__FLT_EVAL_METHOD__;0;__FLT_RADIX__;2;__DECIMAL_DIG__;__LDBL_DECIMAL_DIG__;__SSP__;1;__nonnull;_Nonnull;__null_unspecified;_Null_unspecified;__nullable;_Nullable;__GLIBCXX_TYPE_INT_N_0;__int128;__GLIBCXX_BITSIZE_INT_N_0;128;__code_model_small_;1;__amd64__;1;__amd64;1;__x86_64;1;__x86_64__;1;__core2;1;__core2__;1;__tune_core2__;1;__REGISTER_PREFIX__; ;__NO_MATH_INLINES;1;__FXSR__;1;__SSE4_1__;1;__SSSE3__;1;__SSE3__;1;__SSE2__;1;__SSE2_MATH__;1;__SSE__;1;__SSE_MATH__;1;__MMX__;1;__GCC_HAVE_SYNC_COMPARE_AND_SWAP_1;1;__GCC_HAVE_SYNC_COMPARE_AND_SWAP_2;1;__GCC_HAVE_SYNC_COMPARE_AND_SWAP_4;1;__GCC_HAVE_SYNC_COMPARE_AND_SWAP_8;1;__GCC_HAVE_SYNC_COMPARE_AND_SWAP_16;1;__APPLE_CC__;6000;__APPLE__;1;__STDC_NO_THREADS__;1;OBJC_NEW_PROPERTIES;1;__apple_build_version__;11000033;__weak;__attribute__((objc_gc(weak)));__strong; ;__unsafe_unretained; ;__DYNAMIC__;1;__ENVIRONMENT_MAC_OS_X_VERSION_MIN_REQUIRED__;101500;__MACH__;1;__STDC__;1;__STDC_HOSTED__;1;__cplusplus;199711L;__STDCPP_DEFAULT_NEW_ALIGNMENT__;16UL;__STDC_UTF_16__;1;__STDC_UTF_32__;1
//CXX compiler system include directories
-CMAKE_EXTRA_GENERATOR_CXX_SYSTEM_INCLUDE_DIRS:INTERNAL=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include/c++/v1;/usr/local/include;/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/10.0.1/include;/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include;/System/Library/Frameworks;/Library/Frameworks
+CMAKE_EXTRA_GENERATOR_CXX_SYSTEM_INCLUDE_DIRS:INTERNAL=/Library/Developer/CommandLineTools/usr/bin/../include/c++/v1;/usr/local/include;/Library/Developer/CommandLineTools/usr/lib/clang/11.0.0/include;/Library/Developer/CommandLineTools/usr/include;/System/Library/Frameworks;/Library/Frameworks
//C compiler system defined macros
-CMAKE_EXTRA_GENERATOR_C_SYSTEM_DEFINED_MACROS:INTERNAL=__llvm__;1;__clang__;1;__clang_major__;10;__clang_minor__;0;__clang_patchlevel__;1;__clang_version__;"10.0.1 (clang-1001.0.46.4)";__GNUC_MINOR__;2;__GNUC_PATCHLEVEL__;1;__GNUC__;4;__GXX_ABI_VERSION;1002;__ATOMIC_RELAXED;0;__ATOMIC_CONSUME;1;__ATOMIC_ACQUIRE;2;__ATOMIC_RELEASE;3;__ATOMIC_ACQ_REL;4;__ATOMIC_SEQ_CST;5;__OPENCL_MEMORY_SCOPE_WORK_ITEM;0;__OPENCL_MEMORY_SCOPE_WORK_GROUP;1;__OPENCL_MEMORY_SCOPE_DEVICE;2;__OPENCL_MEMORY_SCOPE_ALL_SVM_DEVICES;3;__OPENCL_MEMORY_SCOPE_SUB_GROUP;4;__PRAGMA_REDEFINE_EXTNAME;1;__VERSION__;"4.2.1 Compatible Apple LLVM 10.0.1 (clang-1001.0.46.4)";__OBJC_BOOL_IS_BOOL;0;__CONSTANT_CFSTRINGS__;1;__block;__attribute__((__blocks__(byref)));__BLOCKS__;1;__ORDER_LITTLE_ENDIAN__;1234;__ORDER_BIG_ENDIAN__;4321;__ORDER_PDP_ENDIAN__;3412;__BYTE_ORDER__;__ORDER_LITTLE_ENDIAN__;__LITTLE_ENDIAN__;1;_LP64;1;__LP64__;1;__CHAR_BIT__;8;__SCHAR_MAX__;127;__SHRT_MAX__;32767;__INT_MAX__;2147483647;__LONG_MAX__;9223372036854775807L;__LONG_LONG_MAX__;9223372036854775807LL;__WCHAR_MAX__;2147483647;__WINT_MAX__;2147483647;__INTMAX_MAX__;9223372036854775807L;__SIZE_MAX__;18446744073709551615UL;__UINTMAX_MAX__;18446744073709551615UL;__PTRDIFF_MAX__;9223372036854775807L;__INTPTR_MAX__;9223372036854775807L;__UINTPTR_MAX__;18446744073709551615UL;__SIZEOF_DOUBLE__;8;__SIZEOF_FLOAT__;4;__SIZEOF_INT__;4;__SIZEOF_LONG__;8;__SIZEOF_LONG_DOUBLE__;16;__SIZEOF_LONG_LONG__;8;__SIZEOF_POINTER__;8;__SIZEOF_SHORT__;2;__SIZEOF_PTRDIFF_T__;8;__SIZEOF_SIZE_T__;8;__SIZEOF_WCHAR_T__;4;__SIZEOF_WINT_T__;4;__SIZEOF_INT128__;16;__INTMAX_TYPE__;long int;__INTMAX_FMTd__;"ld";__INTMAX_FMTi__;"li";__INTMAX_C_SUFFIX__;L;__UINTMAX_TYPE__;long unsigned int;__UINTMAX_FMTo__;"lo";__UINTMAX_FMTu__;"lu";__UINTMAX_FMTx__;"lx";__UINTMAX_FMTX__;"lX";__UINTMAX_C_SUFFIX__;UL;__INTMAX_WIDTH__;64;__PTRDIFF_TYPE__;long int;__PTRDIFF_FMTd__;"ld";__PTRDIFF_FMTi__;"li";__PTRDIFF_WIDTH__;64;__INTPTR_TYPE__;long int;__INTPTR_FMTd__;"ld";__INTPTR_FMTi__;"li";__INTPTR_WIDTH__;64;__SIZE_TYPE__;long unsigned int;__SIZE_FMTo__;"lo";__SIZE_FMTu__;"lu";__SIZE_FMTx__;"lx";__SIZE_FMTX__;"lX";__SIZE_WIDTH__;64;__WCHAR_TYPE__;int;__WCHAR_WIDTH__;32;__WINT_TYPE__;int;__WINT_WIDTH__;32;__SIG_ATOMIC_WIDTH__;32;__SIG_ATOMIC_MAX__;2147483647;__CHAR16_TYPE__;unsigned short;__CHAR32_TYPE__;unsigned int;__UINTMAX_WIDTH__;64;__UINTPTR_TYPE__;long unsigned int;__UINTPTR_FMTo__;"lo";__UINTPTR_FMTu__;"lu";__UINTPTR_FMTx__;"lx";__UINTPTR_FMTX__;"lX";__UINTPTR_WIDTH__;64;__FLT16_DENORM_MIN__;5.9604644775390625e-8F16;__FLT16_HAS_DENORM__;1;__FLT16_DIG__;3;__FLT16_DECIMAL_DIG__;5;__FLT16_EPSILON__;9.765625e-4F16;__FLT16_HAS_INFINITY__;1;__FLT16_HAS_QUIET_NAN__;1;__FLT16_MANT_DIG__;11;__FLT16_MAX_10_EXP__;4;__FLT16_MAX_EXP__;15;__FLT16_MAX__;6.5504e+4F16;__FLT16_MIN_10_EXP__;(-13);__FLT16_MIN_EXP__;(-14);__FLT16_MIN__;6.103515625e-5F16;__FLT_DENORM_MIN__;1.40129846e-45F;__FLT_HAS_DENORM__;1;__FLT_DIG__;6;__FLT_DECIMAL_DIG__;9;__FLT_EPSILON__;1.19209290e-7F;__FLT_HAS_INFINITY__;1;__FLT_HAS_QUIET_NAN__;1;__FLT_MANT_DIG__;24;__FLT_MAX_10_EXP__;38;__FLT_MAX_EXP__;128;__FLT_MAX__;3.40282347e+38F;__FLT_MIN_10_EXP__;(-37);__FLT_MIN_EXP__;(-125);__FLT_MIN__;1.17549435e-38F;__DBL_DENORM_MIN__;4.9406564584124654e-324;__DBL_HAS_DENORM__;1;__DBL_DIG__;15;__DBL_DECIMAL_DIG__;17;__DBL_EPSILON__;2.2204460492503131e-16;__DBL_HAS_INFINITY__;1;__DBL_HAS_QUIET_NAN__;1;__DBL_MANT_DIG__;53;__DBL_MAX_10_EXP__;308;__DBL_MAX_EXP__;1024;__DBL_MAX__;1.7976931348623157e+308;__DBL_MIN_10_EXP__;(-307);__DBL_MIN_EXP__;(-1021);__DBL_MIN__;2.2250738585072014e-308;__LDBL_DENORM_MIN__;3.64519953188247460253e-4951L;__LDBL_HAS_DENORM__;1;__LDBL_DIG__;18;__LDBL_DECIMAL_DIG__;21;__LDBL_EPSILON__;1.08420217248550443401e-19L;__LDBL_HAS_INFINITY__;1;__LDBL_HAS_QUIET_NAN__;1;__LDBL_MANT_DIG__;64;__LDBL_MAX_10_EXP__;4932;__LDBL_MAX_EXP__;16384;__LDBL_MAX__;1.18973149535723176502e+4932L;__LDBL_MIN_10_EXP__;(-4931);__LDBL_MIN_EXP__;(-16381);__LDBL_MIN__;3.36210314311209350626e-4932L;__POINTER_WIDTH__;64;__BIGGEST_ALIGNMENT__;16;__INT8_TYPE__;signed char;__INT8_FMTd__;"hhd";__INT8_FMTi__;"hhi";__INT8_C_SUFFIX__; ;__INT16_TYPE__;short;__INT16_FMTd__;"hd";__INT16_FMTi__;"hi";__INT16_C_SUFFIX__; ;__INT32_TYPE__;int;__INT32_FMTd__;"d";__INT32_FMTi__;"i";__INT32_C_SUFFIX__; ;__INT64_TYPE__;long long int;__INT64_FMTd__;"lld";__INT64_FMTi__;"lli";__INT64_C_SUFFIX__;LL;__UINT8_TYPE__;unsigned char;__UINT8_FMTo__;"hho";__UINT8_FMTu__;"hhu";__UINT8_FMTx__;"hhx";__UINT8_FMTX__;"hhX";__UINT8_C_SUFFIX__; ;__UINT8_MAX__;255;__INT8_MAX__;127;__UINT16_TYPE__;unsigned short;__UINT16_FMTo__;"ho";__UINT16_FMTu__;"hu";__UINT16_FMTx__;"hx";__UINT16_FMTX__;"hX";__UINT16_C_SUFFIX__; ;__UINT16_MAX__;65535;__INT16_MAX__;32767;__UINT32_TYPE__;unsigned int;__UINT32_FMTo__;"o";__UINT32_FMTu__;"u";__UINT32_FMTx__;"x";__UINT32_FMTX__;"X";__UINT32_C_SUFFIX__;U;__UINT32_MAX__;4294967295U;__INT32_MAX__;2147483647;__UINT64_TYPE__;long long unsigned int;__UINT64_FMTo__;"llo";__UINT64_FMTu__;"llu";__UINT64_FMTx__;"llx";__UINT64_FMTX__;"llX";__UINT64_C_SUFFIX__;ULL;__UINT64_MAX__;18446744073709551615ULL;__INT64_MAX__;9223372036854775807LL;__INT_LEAST8_TYPE__;signed char;__INT_LEAST8_MAX__;127;__INT_LEAST8_FMTd__;"hhd";__INT_LEAST8_FMTi__;"hhi";__UINT_LEAST8_TYPE__;unsigned char;__UINT_LEAST8_MAX__;255;__UINT_LEAST8_FMTo__;"hho";__UINT_LEAST8_FMTu__;"hhu";__UINT_LEAST8_FMTx__;"hhx";__UINT_LEAST8_FMTX__;"hhX";__INT_LEAST16_TYPE__;short;__INT_LEAST16_MAX__;32767;__INT_LEAST16_FMTd__;"hd";__INT_LEAST16_FMTi__;"hi";__UINT_LEAST16_TYPE__;unsigned short;__UINT_LEAST16_MAX__;65535;__UINT_LEAST16_FMTo__;"ho";__UINT_LEAST16_FMTu__;"hu";__UINT_LEAST16_FMTx__;"hx";__UINT_LEAST16_FMTX__;"hX";__INT_LEAST32_TYPE__;int;__INT_LEAST32_MAX__;2147483647;__INT_LEAST32_FMTd__;"d";__INT_LEAST32_FMTi__;"i";__UINT_LEAST32_TYPE__;unsigned int;__UINT_LEAST32_MAX__;4294967295U;__UINT_LEAST32_FMTo__;"o";__UINT_LEAST32_FMTu__;"u";__UINT_LEAST32_FMTx__;"x";__UINT_LEAST32_FMTX__;"X";__INT_LEAST64_TYPE__;long int;__INT_LEAST64_MAX__;9223372036854775807L;__INT_LEAST64_FMTd__;"ld";__INT_LEAST64_FMTi__;"li";__UINT_LEAST64_TYPE__;long unsigned int;__UINT_LEAST64_MAX__;18446744073709551615UL;__UINT_LEAST64_FMTo__;"lo";__UINT_LEAST64_FMTu__;"lu";__UINT_LEAST64_FMTx__;"lx";__UINT_LEAST64_FMTX__;"lX";__INT_FAST8_TYPE__;signed char;__INT_FAST8_MAX__;127;__INT_FAST8_FMTd__;"hhd";__INT_FAST8_FMTi__;"hhi";__UINT_FAST8_TYPE__;unsigned char;__UINT_FAST8_MAX__;255;__UINT_FAST8_FMTo__;"hho";__UINT_FAST8_FMTu__;"hhu";__UINT_FAST8_FMTx__;"hhx";__UINT_FAST8_FMTX__;"hhX";__INT_FAST16_TYPE__;short;__INT_FAST16_MAX__;32767;__INT_FAST16_FMTd__;"hd";__INT_FAST16_FMTi__;"hi";__UINT_FAST16_TYPE__;unsigned short;__UINT_FAST16_MAX__;65535;__UINT_FAST16_FMTo__;"ho";__UINT_FAST16_FMTu__;"hu";__UINT_FAST16_FMTx__;"hx";__UINT_FAST16_FMTX__;"hX";__INT_FAST32_TYPE__;int;__INT_FAST32_MAX__;2147483647;__INT_FAST32_FMTd__;"d";__INT_FAST32_FMTi__;"i";__UINT_FAST32_TYPE__;unsigned int;__UINT_FAST32_MAX__;4294967295U;__UINT_FAST32_FMTo__;"o";__UINT_FAST32_FMTu__;"u";__UINT_FAST32_FMTx__;"x";__UINT_FAST32_FMTX__;"X";__INT_FAST64_TYPE__;long int;__INT_FAST64_MAX__;9223372036854775807L;__INT_FAST64_FMTd__;"ld";__INT_FAST64_FMTi__;"li";__UINT_FAST64_TYPE__;long unsigned int;__UINT_FAST64_MAX__;18446744073709551615UL;__UINT_FAST64_FMTo__;"lo";__UINT_FAST64_FMTu__;"lu";__UINT_FAST64_FMTx__;"lx";__UINT_FAST64_FMTX__;"lX";__USER_LABEL_PREFIX__;_;__FINITE_MATH_ONLY__;0;__GNUC_STDC_INLINE__;1;__GCC_ATOMIC_TEST_AND_SET_TRUEVAL;1;__CLANG_ATOMIC_BOOL_LOCK_FREE;2;__CLANG_ATOMIC_CHAR_LOCK_FREE;2;__CLANG_ATOMIC_CHAR16_T_LOCK_FREE;2;__CLANG_ATOMIC_CHAR32_T_LOCK_FREE;2;__CLANG_ATOMIC_WCHAR_T_LOCK_FREE;2;__CLANG_ATOMIC_SHORT_LOCK_FREE;2;__CLANG_ATOMIC_INT_LOCK_FREE;2;__CLANG_ATOMIC_LONG_LOCK_FREE;2;__CLANG_ATOMIC_LLONG_LOCK_FREE;2;__CLANG_ATOMIC_POINTER_LOCK_FREE;2;__GCC_ATOMIC_BOOL_LOCK_FREE;2;__GCC_ATOMIC_CHAR_LOCK_FREE;2;__GCC_ATOMIC_CHAR16_T_LOCK_FREE;2;__GCC_ATOMIC_CHAR32_T_LOCK_FREE;2;__GCC_ATOMIC_WCHAR_T_LOCK_FREE;2;__GCC_ATOMIC_SHORT_LOCK_FREE;2;__GCC_ATOMIC_INT_LOCK_FREE;2;__GCC_ATOMIC_LONG_LOCK_FREE;2;__GCC_ATOMIC_LLONG_LOCK_FREE;2;__GCC_ATOMIC_POINTER_LOCK_FREE;2;__NO_INLINE__;1;__PIC__;2;__pic__;2;__FLT_EVAL_METHOD__;0;__FLT_RADIX__;2;__DECIMAL_DIG__;__LDBL_DECIMAL_DIG__;__SSP__;1;__nonnull;_Nonnull;__null_unspecified;_Null_unspecified;__nullable;_Nullable;__amd64__;1;__amd64;1;__x86_64;1;__x86_64__;1;__core2;1;__core2__;1;__tune_core2__;1;__REGISTER_PREFIX__; ;__NO_MATH_INLINES;1;__FXSR__;1;__SSE4_1__;1;__SSSE3__;1;__SSE3__;1;__SSE2__;1;__SSE2_MATH__;1;__SSE__;1;__SSE_MATH__;1;__MMX__;1;__GCC_HAVE_SYNC_COMPARE_AND_SWAP_1;1;__GCC_HAVE_SYNC_COMPARE_AND_SWAP_2;1;__GCC_HAVE_SYNC_COMPARE_AND_SWAP_4;1;__GCC_HAVE_SYNC_COMPARE_AND_SWAP_8;1;__GCC_HAVE_SYNC_COMPARE_AND_SWAP_16;1;__APPLE_CC__;6000;__APPLE__;1;__STDC_NO_THREADS__;1;OBJC_NEW_PROPERTIES;1;__apple_build_version__;10010046;__weak;__attribute__((objc_gc(weak)));__strong; ;__unsafe_unretained; ;__DYNAMIC__;1;__ENVIRONMENT_MAC_OS_X_VERSION_MIN_REQUIRED__;101500;__MACH__;1;__STDC__;1;__STDC_HOSTED__;1;__STDC_VERSION__;201112L;__STDC_UTF_16__;1;__STDC_UTF_32__;1
+CMAKE_EXTRA_GENERATOR_C_SYSTEM_DEFINED_MACROS:INTERNAL=__llvm__;1;__clang__;1;__clang_major__;11;__clang_minor__;0;__clang_patchlevel__;0;__clang_version__;"11.0.0 (clang-1100.0.33.8)";__GNUC_MINOR__;2;__GNUC_PATCHLEVEL__;1;__GNUC__;4;__GXX_ABI_VERSION;1002;__ATOMIC_RELAXED;0;__ATOMIC_CONSUME;1;__ATOMIC_ACQUIRE;2;__ATOMIC_RELEASE;3;__ATOMIC_ACQ_REL;4;__ATOMIC_SEQ_CST;5;__OPENCL_MEMORY_SCOPE_WORK_ITEM;0;__OPENCL_MEMORY_SCOPE_WORK_GROUP;1;__OPENCL_MEMORY_SCOPE_DEVICE;2;__OPENCL_MEMORY_SCOPE_ALL_SVM_DEVICES;3;__OPENCL_MEMORY_SCOPE_SUB_GROUP;4;__PRAGMA_REDEFINE_EXTNAME;1;__VERSION__;"4.2.1 Compatible Apple LLVM 11.0.0 (clang-1100.0.33.8)";__OBJC_BOOL_IS_BOOL;0;__CONSTANT_CFSTRINGS__;1;__block;__attribute__((__blocks__(byref)));__BLOCKS__;1;__ORDER_LITTLE_ENDIAN__;1234;__ORDER_BIG_ENDIAN__;4321;__ORDER_PDP_ENDIAN__;3412;__BYTE_ORDER__;__ORDER_LITTLE_ENDIAN__;__LITTLE_ENDIAN__;1;_LP64;1;__LP64__;1;__CHAR_BIT__;8;__SCHAR_MAX__;127;__SHRT_MAX__;32767;__INT_MAX__;2147483647;__LONG_MAX__;9223372036854775807L;__LONG_LONG_MAX__;9223372036854775807LL;__WCHAR_MAX__;2147483647;__WINT_MAX__;2147483647;__INTMAX_MAX__;9223372036854775807L;__SIZE_MAX__;18446744073709551615UL;__UINTMAX_MAX__;18446744073709551615UL;__PTRDIFF_MAX__;9223372036854775807L;__INTPTR_MAX__;9223372036854775807L;__UINTPTR_MAX__;18446744073709551615UL;__SIZEOF_DOUBLE__;8;__SIZEOF_FLOAT__;4;__SIZEOF_INT__;4;__SIZEOF_LONG__;8;__SIZEOF_LONG_DOUBLE__;16;__SIZEOF_LONG_LONG__;8;__SIZEOF_POINTER__;8;__SIZEOF_SHORT__;2;__SIZEOF_PTRDIFF_T__;8;__SIZEOF_SIZE_T__;8;__SIZEOF_WCHAR_T__;4;__SIZEOF_WINT_T__;4;__SIZEOF_INT128__;16;__INTMAX_TYPE__;long int;__INTMAX_FMTd__;"ld";__INTMAX_FMTi__;"li";__INTMAX_C_SUFFIX__;L;__UINTMAX_TYPE__;long unsigned int;__UINTMAX_FMTo__;"lo";__UINTMAX_FMTu__;"lu";__UINTMAX_FMTx__;"lx";__UINTMAX_FMTX__;"lX";__UINTMAX_C_SUFFIX__;UL;__INTMAX_WIDTH__;64;__PTRDIFF_TYPE__;long int;__PTRDIFF_FMTd__;"ld";__PTRDIFF_FMTi__;"li";__PTRDIFF_WIDTH__;64;__INTPTR_TYPE__;long int;__INTPTR_FMTd__;"ld";__INTPTR_FMTi__;"li";__INTPTR_WIDTH__;64;__SIZE_TYPE__;long unsigned int;__SIZE_FMTo__;"lo";__SIZE_FMTu__;"lu";__SIZE_FMTx__;"lx";__SIZE_FMTX__;"lX";__SIZE_WIDTH__;64;__WCHAR_TYPE__;int;__WCHAR_WIDTH__;32;__WINT_TYPE__;int;__WINT_WIDTH__;32;__SIG_ATOMIC_WIDTH__;32;__SIG_ATOMIC_MAX__;2147483647;__CHAR16_TYPE__;unsigned short;__CHAR32_TYPE__;unsigned int;__UINTMAX_WIDTH__;64;__UINTPTR_TYPE__;long unsigned int;__UINTPTR_FMTo__;"lo";__UINTPTR_FMTu__;"lu";__UINTPTR_FMTx__;"lx";__UINTPTR_FMTX__;"lX";__UINTPTR_WIDTH__;64;__FLT16_DENORM_MIN__;5.9604644775390625e-8F16;__FLT16_HAS_DENORM__;1;__FLT16_DIG__;3;__FLT16_DECIMAL_DIG__;5;__FLT16_EPSILON__;9.765625e-4F16;__FLT16_HAS_INFINITY__;1;__FLT16_HAS_QUIET_NAN__;1;__FLT16_MANT_DIG__;11;__FLT16_MAX_10_EXP__;4;__FLT16_MAX_EXP__;15;__FLT16_MAX__;6.5504e+4F16;__FLT16_MIN_10_EXP__;(-13);__FLT16_MIN_EXP__;(-14);__FLT16_MIN__;6.103515625e-5F16;__FLT_DENORM_MIN__;1.40129846e-45F;__FLT_HAS_DENORM__;1;__FLT_DIG__;6;__FLT_DECIMAL_DIG__;9;__FLT_EPSILON__;1.19209290e-7F;__FLT_HAS_INFINITY__;1;__FLT_HAS_QUIET_NAN__;1;__FLT_MANT_DIG__;24;__FLT_MAX_10_EXP__;38;__FLT_MAX_EXP__;128;__FLT_MAX__;3.40282347e+38F;__FLT_MIN_10_EXP__;(-37);__FLT_MIN_EXP__;(-125);__FLT_MIN__;1.17549435e-38F;__DBL_DENORM_MIN__;4.9406564584124654e-324;__DBL_HAS_DENORM__;1;__DBL_DIG__;15;__DBL_DECIMAL_DIG__;17;__DBL_EPSILON__;2.2204460492503131e-16;__DBL_HAS_INFINITY__;1;__DBL_HAS_QUIET_NAN__;1;__DBL_MANT_DIG__;53;__DBL_MAX_10_EXP__;308;__DBL_MAX_EXP__;1024;__DBL_MAX__;1.7976931348623157e+308;__DBL_MIN_10_EXP__;(-307);__DBL_MIN_EXP__;(-1021);__DBL_MIN__;2.2250738585072014e-308;__LDBL_DENORM_MIN__;3.64519953188247460253e-4951L;__LDBL_HAS_DENORM__;1;__LDBL_DIG__;18;__LDBL_DECIMAL_DIG__;21;__LDBL_EPSILON__;1.08420217248550443401e-19L;__LDBL_HAS_INFINITY__;1;__LDBL_HAS_QUIET_NAN__;1;__LDBL_MANT_DIG__;64;__LDBL_MAX_10_EXP__;4932;__LDBL_MAX_EXP__;16384;__LDBL_MAX__;1.18973149535723176502e+4932L;__LDBL_MIN_10_EXP__;(-4931);__LDBL_MIN_EXP__;(-16381);__LDBL_MIN__;3.36210314311209350626e-4932L;__POINTER_WIDTH__;64;__BIGGEST_ALIGNMENT__;16;__INT8_TYPE__;signed char;__INT8_FMTd__;"hhd";__INT8_FMTi__;"hhi";__INT8_C_SUFFIX__; ;__INT16_TYPE__;short;__INT16_FMTd__;"hd";__INT16_FMTi__;"hi";__INT16_C_SUFFIX__; ;__INT32_TYPE__;int;__INT32_FMTd__;"d";__INT32_FMTi__;"i";__INT32_C_SUFFIX__; ;__INT64_TYPE__;long long int;__INT64_FMTd__;"lld";__INT64_FMTi__;"lli";__INT64_C_SUFFIX__;LL;__UINT8_TYPE__;unsigned char;__UINT8_FMTo__;"hho";__UINT8_FMTu__;"hhu";__UINT8_FMTx__;"hhx";__UINT8_FMTX__;"hhX";__UINT8_C_SUFFIX__; ;__UINT8_MAX__;255;__INT8_MAX__;127;__UINT16_TYPE__;unsigned short;__UINT16_FMTo__;"ho";__UINT16_FMTu__;"hu";__UINT16_FMTx__;"hx";__UINT16_FMTX__;"hX";__UINT16_C_SUFFIX__; ;__UINT16_MAX__;65535;__INT16_MAX__;32767;__UINT32_TYPE__;unsigned int;__UINT32_FMTo__;"o";__UINT32_FMTu__;"u";__UINT32_FMTx__;"x";__UINT32_FMTX__;"X";__UINT32_C_SUFFIX__;U;__UINT32_MAX__;4294967295U;__INT32_MAX__;2147483647;__UINT64_TYPE__;long long unsigned int;__UINT64_FMTo__;"llo";__UINT64_FMTu__;"llu";__UINT64_FMTx__;"llx";__UINT64_FMTX__;"llX";__UINT64_C_SUFFIX__;ULL;__UINT64_MAX__;18446744073709551615ULL;__INT64_MAX__;9223372036854775807LL;__INT_LEAST8_TYPE__;signed char;__INT_LEAST8_MAX__;127;__INT_LEAST8_FMTd__;"hhd";__INT_LEAST8_FMTi__;"hhi";__UINT_LEAST8_TYPE__;unsigned char;__UINT_LEAST8_MAX__;255;__UINT_LEAST8_FMTo__;"hho";__UINT_LEAST8_FMTu__;"hhu";__UINT_LEAST8_FMTx__;"hhx";__UINT_LEAST8_FMTX__;"hhX";__INT_LEAST16_TYPE__;short;__INT_LEAST16_MAX__;32767;__INT_LEAST16_FMTd__;"hd";__INT_LEAST16_FMTi__;"hi";__UINT_LEAST16_TYPE__;unsigned short;__UINT_LEAST16_MAX__;65535;__UINT_LEAST16_FMTo__;"ho";__UINT_LEAST16_FMTu__;"hu";__UINT_LEAST16_FMTx__;"hx";__UINT_LEAST16_FMTX__;"hX";__INT_LEAST32_TYPE__;int;__INT_LEAST32_MAX__;2147483647;__INT_LEAST32_FMTd__;"d";__INT_LEAST32_FMTi__;"i";__UINT_LEAST32_TYPE__;unsigned int;__UINT_LEAST32_MAX__;4294967295U;__UINT_LEAST32_FMTo__;"o";__UINT_LEAST32_FMTu__;"u";__UINT_LEAST32_FMTx__;"x";__UINT_LEAST32_FMTX__;"X";__INT_LEAST64_TYPE__;long long int;__INT_LEAST64_MAX__;9223372036854775807LL;__INT_LEAST64_FMTd__;"lld";__INT_LEAST64_FMTi__;"lli";__UINT_LEAST64_TYPE__;long long unsigned int;__UINT_LEAST64_MAX__;18446744073709551615ULL;__UINT_LEAST64_FMTo__;"llo";__UINT_LEAST64_FMTu__;"llu";__UINT_LEAST64_FMTx__;"llx";__UINT_LEAST64_FMTX__;"llX";__INT_FAST8_TYPE__;signed char;__INT_FAST8_MAX__;127;__INT_FAST8_FMTd__;"hhd";__INT_FAST8_FMTi__;"hhi";__UINT_FAST8_TYPE__;unsigned char;__UINT_FAST8_MAX__;255;__UINT_FAST8_FMTo__;"hho";__UINT_FAST8_FMTu__;"hhu";__UINT_FAST8_FMTx__;"hhx";__UINT_FAST8_FMTX__;"hhX";__INT_FAST16_TYPE__;short;__INT_FAST16_MAX__;32767;__INT_FAST16_FMTd__;"hd";__INT_FAST16_FMTi__;"hi";__UINT_FAST16_TYPE__;unsigned short;__UINT_FAST16_MAX__;65535;__UINT_FAST16_FMTo__;"ho";__UINT_FAST16_FMTu__;"hu";__UINT_FAST16_FMTx__;"hx";__UINT_FAST16_FMTX__;"hX";__INT_FAST32_TYPE__;int;__INT_FAST32_MAX__;2147483647;__INT_FAST32_FMTd__;"d";__INT_FAST32_FMTi__;"i";__UINT_FAST32_TYPE__;unsigned int;__UINT_FAST32_MAX__;4294967295U;__UINT_FAST32_FMTo__;"o";__UINT_FAST32_FMTu__;"u";__UINT_FAST32_FMTx__;"x";__UINT_FAST32_FMTX__;"X";__INT_FAST64_TYPE__;long long int;__INT_FAST64_MAX__;9223372036854775807LL;__INT_FAST64_FMTd__;"lld";__INT_FAST64_FMTi__;"lli";__UINT_FAST64_TYPE__;long long unsigned int;__UINT_FAST64_MAX__;18446744073709551615ULL;__UINT_FAST64_FMTo__;"llo";__UINT_FAST64_FMTu__;"llu";__UINT_FAST64_FMTx__;"llx";__UINT_FAST64_FMTX__;"llX";__USER_LABEL_PREFIX__;_;__FINITE_MATH_ONLY__;0;__GNUC_STDC_INLINE__;1;__GCC_ATOMIC_TEST_AND_SET_TRUEVAL;1;__CLANG_ATOMIC_BOOL_LOCK_FREE;2;__CLANG_ATOMIC_CHAR_LOCK_FREE;2;__CLANG_ATOMIC_CHAR16_T_LOCK_FREE;2;__CLANG_ATOMIC_CHAR32_T_LOCK_FREE;2;__CLANG_ATOMIC_WCHAR_T_LOCK_FREE;2;__CLANG_ATOMIC_SHORT_LOCK_FREE;2;__CLANG_ATOMIC_INT_LOCK_FREE;2;__CLANG_ATOMIC_LONG_LOCK_FREE;2;__CLANG_ATOMIC_LLONG_LOCK_FREE;2;__CLANG_ATOMIC_POINTER_LOCK_FREE;2;__GCC_ATOMIC_BOOL_LOCK_FREE;2;__GCC_ATOMIC_CHAR_LOCK_FREE;2;__GCC_ATOMIC_CHAR16_T_LOCK_FREE;2;__GCC_ATOMIC_CHAR32_T_LOCK_FREE;2;__GCC_ATOMIC_WCHAR_T_LOCK_FREE;2;__GCC_ATOMIC_SHORT_LOCK_FREE;2;__GCC_ATOMIC_INT_LOCK_FREE;2;__GCC_ATOMIC_LONG_LOCK_FREE;2;__GCC_ATOMIC_LLONG_LOCK_FREE;2;__GCC_ATOMIC_POINTER_LOCK_FREE;2;__NO_INLINE__;1;__PIC__;2;__pic__;2;__FLT_EVAL_METHOD__;0;__FLT_RADIX__;2;__DECIMAL_DIG__;__LDBL_DECIMAL_DIG__;__SSP__;1;__nonnull;_Nonnull;__null_unspecified;_Null_unspecified;__nullable;_Nullable;__code_model_small_;1;__amd64__;1;__amd64;1;__x86_64;1;__x86_64__;1;__core2;1;__core2__;1;__tune_core2__;1;__REGISTER_PREFIX__; ;__NO_MATH_INLINES;1;__FXSR__;1;__SSE4_1__;1;__SSSE3__;1;__SSE3__;1;__SSE2__;1;__SSE2_MATH__;1;__SSE__;1;__SSE_MATH__;1;__MMX__;1;__GCC_HAVE_SYNC_COMPARE_AND_SWAP_1;1;__GCC_HAVE_SYNC_COMPARE_AND_SWAP_2;1;__GCC_HAVE_SYNC_COMPARE_AND_SWAP_4;1;__GCC_HAVE_SYNC_COMPARE_AND_SWAP_8;1;__GCC_HAVE_SYNC_COMPARE_AND_SWAP_16;1;__APPLE_CC__;6000;__APPLE__;1;__STDC_NO_THREADS__;1;OBJC_NEW_PROPERTIES;1;__apple_build_version__;11000033;__weak;__attribute__((objc_gc(weak)));__strong; ;__unsafe_unretained; ;__DYNAMIC__;1;__ENVIRONMENT_MAC_OS_X_VERSION_MIN_REQUIRED__;101500;__MACH__;1;__STDC__;1;__STDC_HOSTED__;1;__STDC_VERSION__;201112L;__STDC_UTF_16__;1;__STDC_UTF_32__;1
//C compiler system include directories
-CMAKE_EXTRA_GENERATOR_C_SYSTEM_INCLUDE_DIRS:INTERNAL=/usr/local/include;/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/10.0.1/include;/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include;/System/Library/Frameworks;/Library/Frameworks
+CMAKE_EXTRA_GENERATOR_C_SYSTEM_INCLUDE_DIRS:INTERNAL=/usr/local/include;/Library/Developer/CommandLineTools/usr/lib/clang/11.0.0/include;/Library/Developer/CommandLineTools/usr/include;/System/Library/Frameworks;/Library/Frameworks
//Name of generator.
CMAKE_GENERATOR:INTERNAL=Unix Makefiles
//Generator instance identifier.
@@ -303,7 +303,7 @@ CMAKE_GENERATOR_PLATFORM:INTERNAL=
CMAKE_GENERATOR_TOOLSET:INTERNAL=
//Source directory with the top level CMakeLists.txt file for this
// project
-CMAKE_HOME_DIRECTORY:INTERNAL=/Users/brady/CLionProjects/CS3460-CPP/Hw6
+CMAKE_HOME_DIRECTORY:INTERNAL=/Users/bradybodily/Repositories/CS3460/Hw6
//ADVANCED property for variable: CMAKE_INSTALL_NAME_TOOL
CMAKE_INSTALL_NAME_TOOL-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_LINKER
@@ -333,7 +333,7 @@ CMAKE_PLATFORM_INFO_INITIALIZED:INTERNAL=1
//ADVANCED property for variable: CMAKE_RANLIB
CMAKE_RANLIB-ADVANCED:INTERNAL=1
//Path to CMake installation.
-CMAKE_ROOT:INTERNAL=/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.15
+CMAKE_ROOT:INTERNAL=/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.14
//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS
CMAKE_SHARED_LINKER_FLAGS-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_DEBUG
diff --git a/Hw6/cmake-build-debug/CMakeFiles/3.15.3/CMakeCCompiler.cmake b/Hw6/cmake-build-debug/CMakeFiles/3.14.5/CMakeCCompiler.cmake
similarity index 59%
rename from Hw6/cmake-build-debug/CMakeFiles/3.15.3/CMakeCCompiler.cmake
rename to Hw6/cmake-build-debug/CMakeFiles/3.14.5/CMakeCCompiler.cmake
index bf31a67..208b824 100644
--- a/Hw6/cmake-build-debug/CMakeFiles/3.15.3/CMakeCCompiler.cmake
+++ b/Hw6/cmake-build-debug/CMakeFiles/3.14.5/CMakeCCompiler.cmake
@@ -1,7 +1,7 @@
-set(CMAKE_C_COMPILER "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc")
+set(CMAKE_C_COMPILER "/Library/Developer/CommandLineTools/usr/bin/cc")
set(CMAKE_C_COMPILER_ARG1 "")
set(CMAKE_C_COMPILER_ID "AppleClang")
-set(CMAKE_C_COMPILER_VERSION "10.0.1.10010046")
+set(CMAKE_C_COMPILER_VERSION "11.0.0.11000033")
set(CMAKE_C_COMPILER_VERSION_INTERNAL "")
set(CMAKE_C_COMPILER_WRAPPER "")
set(CMAKE_C_STANDARD_COMPUTED_DEFAULT "11")
@@ -12,16 +12,15 @@ set(CMAKE_C11_COMPILE_FEATURES "c_std_11;c_static_assert")
set(CMAKE_C_PLATFORM_ID "Darwin")
set(CMAKE_C_SIMULATE_ID "")
-set(CMAKE_C_COMPILER_FRONTEND_VARIANT "")
set(CMAKE_C_SIMULATE_VERSION "")
-set(CMAKE_AR "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ar")
+set(CMAKE_AR "/Library/Developer/CommandLineTools/usr/bin/ar")
set(CMAKE_C_COMPILER_AR "")
-set(CMAKE_RANLIB "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib")
+set(CMAKE_RANLIB "/Library/Developer/CommandLineTools/usr/bin/ranlib")
set(CMAKE_C_COMPILER_RANLIB "")
-set(CMAKE_LINKER "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ld")
+set(CMAKE_LINKER "/Library/Developer/CommandLineTools/usr/bin/ld")
set(CMAKE_MT "")
set(CMAKE_COMPILER_IS_GNUCC )
set(CMAKE_C_COMPILER_LOADED 1)
@@ -70,7 +69,7 @@ endif()
-set(CMAKE_C_IMPLICIT_INCLUDE_DIRECTORIES "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/10.0.1/include;/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include;/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/usr/include")
+set(CMAKE_C_IMPLICIT_INCLUDE_DIRECTORIES "/Library/Developer/CommandLineTools/usr/lib/clang/11.0.0/include;/Library/Developer/CommandLineTools/usr/include;/Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk/usr/include")
set(CMAKE_C_IMPLICIT_LINK_LIBRARIES "")
-set(CMAKE_C_IMPLICIT_LINK_DIRECTORIES "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/usr/lib")
-set(CMAKE_C_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/System/Library/Frameworks")
+set(CMAKE_C_IMPLICIT_LINK_DIRECTORIES "/Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk/usr/lib")
+set(CMAKE_C_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "/Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk/System/Library/Frameworks")
diff --git a/Hw6/cmake-build-debug/CMakeFiles/3.15.3/CMakeCXXCompiler.cmake b/Hw6/cmake-build-debug/CMakeFiles/3.14.5/CMakeCXXCompiler.cmake
similarity index 75%
rename from Hw6/cmake-build-debug/CMakeFiles/3.15.3/CMakeCXXCompiler.cmake
rename to Hw6/cmake-build-debug/CMakeFiles/3.14.5/CMakeCXXCompiler.cmake
index 39f8180..819ca71 100644
--- a/Hw6/cmake-build-debug/CMakeFiles/3.15.3/CMakeCXXCompiler.cmake
+++ b/Hw6/cmake-build-debug/CMakeFiles/3.14.5/CMakeCXXCompiler.cmake
@@ -1,29 +1,28 @@
-set(CMAKE_CXX_COMPILER "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++")
+set(CMAKE_CXX_COMPILER "/Library/Developer/CommandLineTools/usr/bin/c++")
set(CMAKE_CXX_COMPILER_ARG1 "")
set(CMAKE_CXX_COMPILER_ID "AppleClang")
-set(CMAKE_CXX_COMPILER_VERSION "10.0.1.10010046")
+set(CMAKE_CXX_COMPILER_VERSION "11.0.0.11000033")
set(CMAKE_CXX_COMPILER_VERSION_INTERNAL "")
set(CMAKE_CXX_COMPILER_WRAPPER "")
set(CMAKE_CXX_STANDARD_COMPUTED_DEFAULT "98")
-set(CMAKE_CXX_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters;cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates;cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates;cxx_std_17;cxx_std_20")
+set(CMAKE_CXX_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters;cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates;cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates;cxx_std_17")
set(CMAKE_CXX98_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters")
set(CMAKE_CXX11_COMPILE_FEATURES "cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates")
set(CMAKE_CXX14_COMPILE_FEATURES "cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates")
set(CMAKE_CXX17_COMPILE_FEATURES "cxx_std_17")
-set(CMAKE_CXX20_COMPILE_FEATURES "cxx_std_20")
+set(CMAKE_CXX20_COMPILE_FEATURES "")
set(CMAKE_CXX_PLATFORM_ID "Darwin")
set(CMAKE_CXX_SIMULATE_ID "")
-set(CMAKE_CXX_COMPILER_FRONTEND_VARIANT "")
set(CMAKE_CXX_SIMULATE_VERSION "")
-set(CMAKE_AR "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ar")
+set(CMAKE_AR "/Library/Developer/CommandLineTools/usr/bin/ar")
set(CMAKE_CXX_COMPILER_AR "")
-set(CMAKE_RANLIB "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib")
+set(CMAKE_RANLIB "/Library/Developer/CommandLineTools/usr/bin/ranlib")
set(CMAKE_CXX_COMPILER_RANLIB "")
-set(CMAKE_LINKER "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ld")
+set(CMAKE_LINKER "/Library/Developer/CommandLineTools/usr/bin/ld")
set(CMAKE_MT "")
set(CMAKE_COMPILER_IS_GNUCXX )
set(CMAKE_CXX_COMPILER_LOADED 1)
@@ -73,7 +72,7 @@ endif()
-set(CMAKE_CXX_IMPLICIT_INCLUDE_DIRECTORIES "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include/c++/v1;/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/10.0.1/include;/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include;/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/usr/include")
+set(CMAKE_CXX_IMPLICIT_INCLUDE_DIRECTORIES "/Library/Developer/CommandLineTools/usr/include/c++/v1;/Library/Developer/CommandLineTools/usr/lib/clang/11.0.0/include;/Library/Developer/CommandLineTools/usr/include;/Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk/usr/include")
set(CMAKE_CXX_IMPLICIT_LINK_LIBRARIES "c++")
-set(CMAKE_CXX_IMPLICIT_LINK_DIRECTORIES "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/usr/lib")
-set(CMAKE_CXX_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/System/Library/Frameworks")
+set(CMAKE_CXX_IMPLICIT_LINK_DIRECTORIES "/Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk/usr/lib")
+set(CMAKE_CXX_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "/Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk/System/Library/Frameworks")
diff --git a/Hw6/cmake-build-debug/CMakeFiles/3.15.3/CMakeDetermineCompilerABI_C.bin b/Hw6/cmake-build-debug/CMakeFiles/3.14.5/CMakeDetermineCompilerABI_C.bin
similarity index 92%
rename from Hw6/cmake-build-debug/CMakeFiles/3.15.3/CMakeDetermineCompilerABI_C.bin
rename to Hw6/cmake-build-debug/CMakeFiles/3.14.5/CMakeDetermineCompilerABI_C.bin
index b921f42..314dfd3 100755
Binary files a/Hw6/cmake-build-debug/CMakeFiles/3.15.3/CMakeDetermineCompilerABI_C.bin and b/Hw6/cmake-build-debug/CMakeFiles/3.14.5/CMakeDetermineCompilerABI_C.bin differ
diff --git a/Hw6/cmake-build-debug/CMakeFiles/3.15.3/CMakeDetermineCompilerABI_CXX.bin b/Hw6/cmake-build-debug/CMakeFiles/3.14.5/CMakeDetermineCompilerABI_CXX.bin
similarity index 92%
rename from Hw6/cmake-build-debug/CMakeFiles/3.15.3/CMakeDetermineCompilerABI_CXX.bin
rename to Hw6/cmake-build-debug/CMakeFiles/3.14.5/CMakeDetermineCompilerABI_CXX.bin
index 9e1ac45..5a2c285 100755
Binary files a/Hw6/cmake-build-debug/CMakeFiles/3.15.3/CMakeDetermineCompilerABI_CXX.bin and b/Hw6/cmake-build-debug/CMakeFiles/3.14.5/CMakeDetermineCompilerABI_CXX.bin differ
diff --git a/Hw6/cmake-build-debug/CMakeFiles/3.15.3/CMakeSystem.cmake b/Hw6/cmake-build-debug/CMakeFiles/3.14.5/CMakeSystem.cmake
similarity index 100%
rename from Hw6/cmake-build-debug/CMakeFiles/3.15.3/CMakeSystem.cmake
rename to Hw6/cmake-build-debug/CMakeFiles/3.14.5/CMakeSystem.cmake
diff --git a/Hw6/cmake-build-debug/CMakeFiles/3.15.3/CompilerIdC/CMakeCCompilerId.c b/Hw6/cmake-build-debug/CMakeFiles/3.14.5/CompilerIdC/CMakeCCompilerId.c
similarity index 89%
rename from Hw6/cmake-build-debug/CMakeFiles/3.15.3/CompilerIdC/CMakeCCompilerId.c
rename to Hw6/cmake-build-debug/CMakeFiles/3.14.5/CompilerIdC/CMakeCCompilerId.c
index 917e8b9..e712b0d 100644
--- a/Hw6/cmake-build-debug/CMakeFiles/3.15.3/CompilerIdC/CMakeCCompilerId.c
+++ b/Hw6/cmake-build-debug/CMakeFiles/3.14.5/CompilerIdC/CMakeCCompilerId.c
@@ -19,9 +19,6 @@
# define COMPILER_ID "Intel"
# if defined(_MSC_VER)
# define SIMULATE_ID "MSVC"
-# endif
-# if defined(__GNUC__)
-# define SIMULATE_ID "GNU"
# endif
/* __INTEL_COMPILER = VRP */
# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER/100)
@@ -40,17 +37,6 @@
# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100)
# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100)
# endif
-# if defined(__GNUC__)
-# define SIMULATE_VERSION_MAJOR DEC(__GNUC__)
-# elif defined(__GNUG__)
-# define SIMULATE_VERSION_MAJOR DEC(__GNUG__)
-# endif
-# if defined(__GNUC_MINOR__)
-# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__)
-# endif
-# if defined(__GNUC_PATCHLEVEL__)
-# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__)
-# endif
#elif defined(__PATHCC__)
# define COMPILER_ID "PathScale"
@@ -120,32 +106,48 @@
#elif defined(__IBMC__) && defined(__COMPILER_VER__)
# define COMPILER_ID "zOS"
- /* __IBMC__ = VRP */
-# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100)
-# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10)
-# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10)
-
-#elif defined(__ibmxl__) && defined(__clang__)
-# define COMPILER_ID "XLClang"
-# define COMPILER_VERSION_MAJOR DEC(__ibmxl_version__)
-# define COMPILER_VERSION_MINOR DEC(__ibmxl_release__)
-# define COMPILER_VERSION_PATCH DEC(__ibmxl_modification__)
-# define COMPILER_VERSION_TWEAK DEC(__ibmxl_ptf_fix_level__)
+# if defined(__ibmxl__)
+# define COMPILER_VERSION_MAJOR DEC(__ibmxl_version__)
+# define COMPILER_VERSION_MINOR DEC(__ibmxl_release__)
+# define COMPILER_VERSION_PATCH DEC(__ibmxl_modification__)
+# define COMPILER_VERSION_TWEAK DEC(__ibmxl_ptf_fix_level__)
+# else
+ /* __IBMC__ = VRP */
+# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100)
+# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10)
+# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10)
+# endif
-#elif defined(__IBMC__) && !defined(__COMPILER_VER__) && __IBMC__ >= 800
+#elif defined(__ibmxl__) || (defined(__IBMC__) && !defined(__COMPILER_VER__) && __IBMC__ >= 800)
# define COMPILER_ID "XL"
- /* __IBMC__ = VRP */
-# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100)
-# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10)
-# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10)
+# if defined(__ibmxl__)
+# define COMPILER_VERSION_MAJOR DEC(__ibmxl_version__)
+# define COMPILER_VERSION_MINOR DEC(__ibmxl_release__)
+# define COMPILER_VERSION_PATCH DEC(__ibmxl_modification__)
+# define COMPILER_VERSION_TWEAK DEC(__ibmxl_ptf_fix_level__)
+# else
+ /* __IBMC__ = VRP */
+# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100)
+# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10)
+# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10)
+# endif
+
#elif defined(__IBMC__) && !defined(__COMPILER_VER__) && __IBMC__ < 800
# define COMPILER_ID "VisualAge"
- /* __IBMC__ = VRP */
-# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100)
-# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10)
-# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10)
+# if defined(__ibmxl__)
+# define COMPILER_VERSION_MAJOR DEC(__ibmxl_version__)
+# define COMPILER_VERSION_MINOR DEC(__ibmxl_release__)
+# define COMPILER_VERSION_PATCH DEC(__ibmxl_modification__)
+# define COMPILER_VERSION_TWEAK DEC(__ibmxl_ptf_fix_level__)
+# else
+ /* __IBMC__ = VRP */
+# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100)
+# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10)
+# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10)
+# endif
+
#elif defined(__PGI)
# define COMPILER_ID "PGI"
@@ -218,13 +220,6 @@
# endif
# define COMPILER_VERSION_TWEAK DEC(__apple_build_version__)
-#elif defined(__clang__) && defined(__ARMCOMPILER_VERSION)
-# define COMPILER_ID "ARMClang"
- # define COMPILER_VERSION_MAJOR DEC(__ARMCOMPILER_VERSION/1000000)
- # define COMPILER_VERSION_MINOR DEC(__ARMCOMPILER_VERSION/10000 % 100)
- # define COMPILER_VERSION_PATCH DEC(__ARMCOMPILER_VERSION % 10000)
-# define COMPILER_VERSION_INTERNAL DEC(__ARMCOMPILER_VERSION)
-
#elif defined(__clang__)
# define COMPILER_ID "Clang"
# if defined(_MSC_VER)
@@ -283,7 +278,7 @@
# define COMPILER_VERSION_MINOR DEC(((__VER__) / 1000) % 1000)
# define COMPILER_VERSION_PATCH DEC((__VER__) % 1000)
# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__)
-# elif defined(__VER__) && (defined(__ICCAVR__) || defined(__ICCRX__) || defined(__ICCRH850__) || defined(__ICCRL78__) || defined(__ICC430__) || defined(__ICCRISCV__))
+# elif defined(__VER__) && defined(__ICCAVR__)
# define COMPILER_VERSION_MAJOR DEC((__VER__) / 100)
# define COMPILER_VERSION_MINOR DEC((__VER__) - (((__VER__) / 100)*100))
# define COMPILER_VERSION_PATCH DEC(__SUBVERSION__)
@@ -303,6 +298,20 @@
# define COMPILER_VERSION_PATCH DEC(SDCC % 10)
# endif
+#elif defined(_SGI_COMPILER_VERSION) || defined(_COMPILER_VERSION)
+# define COMPILER_ID "MIPSpro"
+# if defined(_SGI_COMPILER_VERSION)
+ /* _SGI_COMPILER_VERSION = VRP */
+# define COMPILER_VERSION_MAJOR DEC(_SGI_COMPILER_VERSION/100)
+# define COMPILER_VERSION_MINOR DEC(_SGI_COMPILER_VERSION/10 % 10)
+# define COMPILER_VERSION_PATCH DEC(_SGI_COMPILER_VERSION % 10)
+# else
+ /* _COMPILER_VERSION = VRP */
+# define COMPILER_VERSION_MAJOR DEC(_COMPILER_VERSION/100)
+# define COMPILER_VERSION_MINOR DEC(_COMPILER_VERSION/10 % 10)
+# define COMPILER_VERSION_PATCH DEC(_COMPILER_VERSION % 10)
+# endif
+
/* These compilers are either not known or too old to define an
identification macro. Try to identify the platform and guess that
@@ -489,24 +498,9 @@ char const *info_cray = "INFO" ":" "compiler_wrapper[CrayPrgEnv]";
# if defined(__ICCARM__)
# define ARCHITECTURE_ID "ARM"
-# elif defined(__ICCRX__)
-# define ARCHITECTURE_ID "RX"
-
-# elif defined(__ICCRH850__)
-# define ARCHITECTURE_ID "RH850"
-
-# elif defined(__ICCRL78__)
-# define ARCHITECTURE_ID "RL78"
-
-# elif defined(__ICCRISCV__)
-# define ARCHITECTURE_ID "RISCV"
-
# elif defined(__ICCAVR__)
# define ARCHITECTURE_ID "AVR"
-# elif defined(__ICC430__)
-# define ARCHITECTURE_ID "MSP430"
-
# else /* unknown architecture */
# define ARCHITECTURE_ID ""
# endif
diff --git a/Hw6/cmake-build-debug/CMakeFiles/3.15.3/CompilerIdC/a.out b/Hw6/cmake-build-debug/CMakeFiles/3.14.5/CompilerIdC/a.out
similarity index 95%
rename from Hw6/cmake-build-debug/CMakeFiles/3.15.3/CompilerIdC/a.out
rename to Hw6/cmake-build-debug/CMakeFiles/3.14.5/CompilerIdC/a.out
index 0bfa880..7890058 100755
Binary files a/Hw6/cmake-build-debug/CMakeFiles/3.15.3/CompilerIdC/a.out and b/Hw6/cmake-build-debug/CMakeFiles/3.14.5/CompilerIdC/a.out differ
diff --git a/Hw6/cmake-build-debug/CMakeFiles/3.15.3/CompilerIdCXX/CMakeCXXCompilerId.cpp b/Hw6/cmake-build-debug/CMakeFiles/3.14.5/CompilerIdCXX/CMakeCXXCompilerId.cpp
similarity index 88%
rename from Hw6/cmake-build-debug/CMakeFiles/3.15.3/CompilerIdCXX/CMakeCXXCompilerId.cpp
rename to Hw6/cmake-build-debug/CMakeFiles/3.14.5/CompilerIdCXX/CMakeCXXCompilerId.cpp
index 4761ea2..76fc006 100644
--- a/Hw6/cmake-build-debug/CMakeFiles/3.15.3/CompilerIdCXX/CMakeCXXCompilerId.cpp
+++ b/Hw6/cmake-build-debug/CMakeFiles/3.14.5/CompilerIdCXX/CMakeCXXCompilerId.cpp
@@ -19,9 +19,6 @@
# define COMPILER_ID "Intel"
# if defined(_MSC_VER)
# define SIMULATE_ID "MSVC"
-# endif
-# if defined(__GNUC__)
-# define SIMULATE_ID "GNU"
# endif
/* __INTEL_COMPILER = VRP */
# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER/100)
@@ -40,17 +37,6 @@
# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100)
# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100)
# endif
-# if defined(__GNUC__)
-# define SIMULATE_VERSION_MAJOR DEC(__GNUC__)
-# elif defined(__GNUG__)
-# define SIMULATE_VERSION_MAJOR DEC(__GNUG__)
-# endif
-# if defined(__GNUC_MINOR__)
-# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__)
-# endif
-# if defined(__GNUC_PATCHLEVEL__)
-# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__)
-# endif
#elif defined(__PATHCC__)
# define COMPILER_ID "PathScale"
@@ -120,32 +106,48 @@
#elif defined(__IBMCPP__) && defined(__COMPILER_VER__)
# define COMPILER_ID "zOS"
- /* __IBMCPP__ = VRP */
-# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100)
-# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10)
-# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10)
-
-#elif defined(__ibmxl__) && defined(__clang__)
-# define COMPILER_ID "XLClang"
-# define COMPILER_VERSION_MAJOR DEC(__ibmxl_version__)
-# define COMPILER_VERSION_MINOR DEC(__ibmxl_release__)
-# define COMPILER_VERSION_PATCH DEC(__ibmxl_modification__)
-# define COMPILER_VERSION_TWEAK DEC(__ibmxl_ptf_fix_level__)
+# if defined(__ibmxl__)
+# define COMPILER_VERSION_MAJOR DEC(__ibmxl_version__)
+# define COMPILER_VERSION_MINOR DEC(__ibmxl_release__)
+# define COMPILER_VERSION_PATCH DEC(__ibmxl_modification__)
+# define COMPILER_VERSION_TWEAK DEC(__ibmxl_ptf_fix_level__)
+# else
+ /* __IBMCPP__ = VRP */
+# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100)
+# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10)
+# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10)
+# endif
-#elif defined(__IBMCPP__) && !defined(__COMPILER_VER__) && __IBMCPP__ >= 800
+#elif defined(__ibmxl__) || (defined(__IBMCPP__) && !defined(__COMPILER_VER__) && __IBMCPP__ >= 800)
# define COMPILER_ID "XL"
- /* __IBMCPP__ = VRP */
-# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100)
-# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10)
-# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10)
+# if defined(__ibmxl__)
+# define COMPILER_VERSION_MAJOR DEC(__ibmxl_version__)
+# define COMPILER_VERSION_MINOR DEC(__ibmxl_release__)
+# define COMPILER_VERSION_PATCH DEC(__ibmxl_modification__)
+# define COMPILER_VERSION_TWEAK DEC(__ibmxl_ptf_fix_level__)
+# else
+ /* __IBMCPP__ = VRP */
+# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100)
+# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10)
+# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10)
+# endif
+
#elif defined(__IBMCPP__) && !defined(__COMPILER_VER__) && __IBMCPP__ < 800
# define COMPILER_ID "VisualAge"
- /* __IBMCPP__ = VRP */
-# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100)
-# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10)
-# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10)
+# if defined(__ibmxl__)
+# define COMPILER_VERSION_MAJOR DEC(__ibmxl_version__)
+# define COMPILER_VERSION_MINOR DEC(__ibmxl_release__)
+# define COMPILER_VERSION_PATCH DEC(__ibmxl_modification__)
+# define COMPILER_VERSION_TWEAK DEC(__ibmxl_ptf_fix_level__)
+# else
+ /* __IBMCPP__ = VRP */
+# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100)
+# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10)
+# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10)
+# endif
+
#elif defined(__PGI)
# define COMPILER_ID "PGI"
@@ -212,13 +214,6 @@
# endif
# define COMPILER_VERSION_TWEAK DEC(__apple_build_version__)
-#elif defined(__clang__) && defined(__ARMCOMPILER_VERSION)
-# define COMPILER_ID "ARMClang"
- # define COMPILER_VERSION_MAJOR DEC(__ARMCOMPILER_VERSION/1000000)
- # define COMPILER_VERSION_MINOR DEC(__ARMCOMPILER_VERSION/10000 % 100)
- # define COMPILER_VERSION_PATCH DEC(__ARMCOMPILER_VERSION % 10000)
-# define COMPILER_VERSION_INTERNAL DEC(__ARMCOMPILER_VERSION)
-
#elif defined(__clang__)
# define COMPILER_ID "Clang"
# if defined(_MSC_VER)
@@ -281,13 +276,27 @@
# define COMPILER_VERSION_MINOR DEC(((__VER__) / 1000) % 1000)
# define COMPILER_VERSION_PATCH DEC((__VER__) % 1000)
# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__)
-# elif defined(__VER__) && (defined(__ICCAVR__) || defined(__ICCRX__) || defined(__ICCRH850__) || defined(__ICCRL78__) || defined(__ICC430__) || defined(__ICCRISCV__))
+# elif defined(__VER__) && defined(__ICCAVR__)
# define COMPILER_VERSION_MAJOR DEC((__VER__) / 100)
# define COMPILER_VERSION_MINOR DEC((__VER__) - (((__VER__) / 100)*100))
# define COMPILER_VERSION_PATCH DEC(__SUBVERSION__)
# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__)
# endif
+#elif defined(_SGI_COMPILER_VERSION) || defined(_COMPILER_VERSION)
+# define COMPILER_ID "MIPSpro"
+# if defined(_SGI_COMPILER_VERSION)
+ /* _SGI_COMPILER_VERSION = VRP */
+# define COMPILER_VERSION_MAJOR DEC(_SGI_COMPILER_VERSION/100)
+# define COMPILER_VERSION_MINOR DEC(_SGI_COMPILER_VERSION/10 % 10)
+# define COMPILER_VERSION_PATCH DEC(_SGI_COMPILER_VERSION % 10)
+# else
+ /* _COMPILER_VERSION = VRP */
+# define COMPILER_VERSION_MAJOR DEC(_COMPILER_VERSION/100)
+# define COMPILER_VERSION_MINOR DEC(_COMPILER_VERSION/10 % 10)
+# define COMPILER_VERSION_PATCH DEC(_COMPILER_VERSION % 10)
+# endif
+
/* These compilers are either not known or too old to define an
identification macro. Try to identify the platform and guess that
@@ -474,24 +483,9 @@ char const *info_cray = "INFO" ":" "compiler_wrapper[CrayPrgEnv]";
# if defined(__ICCARM__)
# define ARCHITECTURE_ID "ARM"
-# elif defined(__ICCRX__)
-# define ARCHITECTURE_ID "RX"
-
-# elif defined(__ICCRH850__)
-# define ARCHITECTURE_ID "RH850"
-
-# elif defined(__ICCRL78__)
-# define ARCHITECTURE_ID "RL78"
-
-# elif defined(__ICCRISCV__)
-# define ARCHITECTURE_ID "RISCV"
-
# elif defined(__ICCAVR__)
# define ARCHITECTURE_ID "AVR"
-# elif defined(__ICC430__)
-# define ARCHITECTURE_ID "MSP430"
-
# else /* unknown architecture */
# define ARCHITECTURE_ID ""
# endif
diff --git a/Hw6/cmake-build-debug/CMakeFiles/3.15.3/CompilerIdCXX/a.out b/Hw6/cmake-build-debug/CMakeFiles/3.14.5/CompilerIdCXX/a.out
similarity index 95%
rename from Hw6/cmake-build-debug/CMakeFiles/3.15.3/CompilerIdCXX/a.out
rename to Hw6/cmake-build-debug/CMakeFiles/3.14.5/CompilerIdCXX/a.out
index ea2da77..5f2871b 100755
Binary files a/Hw6/cmake-build-debug/CMakeFiles/3.15.3/CompilerIdCXX/a.out and b/Hw6/cmake-build-debug/CMakeFiles/3.14.5/CompilerIdCXX/a.out differ
diff --git a/Hw6/cmake-build-debug/CMakeFiles/CMakeDirectoryInformation.cmake b/Hw6/cmake-build-debug/CMakeFiles/CMakeDirectoryInformation.cmake
index 37d4b04..20684c4 100644
--- a/Hw6/cmake-build-debug/CMakeFiles/CMakeDirectoryInformation.cmake
+++ b/Hw6/cmake-build-debug/CMakeFiles/CMakeDirectoryInformation.cmake
@@ -1,9 +1,9 @@
# CMAKE generated file: DO NOT EDIT!
-# Generated by "Unix Makefiles" Generator, CMake Version 3.15
+# Generated by "Unix Makefiles" Generator, CMake Version 3.14
# Relative path conversion top directories.
-set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/Users/brady/CLionProjects/CS3460-CPP/Hw6")
-set(CMAKE_RELATIVE_PATH_TOP_BINARY "/Users/brady/CLionProjects/CS3460-CPP/Hw6/cmake-build-debug")
+set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/Users/bradybodily/Repositories/CS3460/Hw6")
+set(CMAKE_RELATIVE_PATH_TOP_BINARY "/Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug")
# Force unix paths in dependencies.
set(CMAKE_FORCE_UNIX_PATHS 1)
diff --git a/Hw6/cmake-build-debug/CMakeFiles/CMakeOutput.log b/Hw6/cmake-build-debug/CMakeFiles/CMakeOutput.log
index 381eeb4..b2202c3 100644
--- a/Hw6/cmake-build-debug/CMakeFiles/CMakeOutput.log
+++ b/Hw6/cmake-build-debug/CMakeFiles/CMakeOutput.log
@@ -1,6 +1,6 @@
The system is: Darwin - 19.0.0 - x86_64
Compiling the C compiler identification source file "CMakeCCompilerId.c" succeeded.
-Compiler: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc
+Compiler: /Library/Developer/CommandLineTools/usr/bin/cc
Build flags:
Id flags:
@@ -10,10 +10,10 @@ The output was:
Compilation of the C compiler identification source "CMakeCCompilerId.c" produced "a.out"
-The C compiler identification is AppleClang, found in "/Users/brady/CLionProjects/CS3460-CPP/Hw6/cmake-build-debug/CMakeFiles/3.15.3/CompilerIdC/a.out"
+The C compiler identification is AppleClang, found in "/Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/CMakeFiles/3.14.5/CompilerIdC/a.out"
Compiling the CXX compiler identification source file "CMakeCXXCompilerId.cpp" succeeded.
-Compiler: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++
+Compiler: /Library/Developer/CommandLineTools/usr/bin/c++
Build flags:
Id flags:
@@ -23,264 +23,604 @@ The output was:
Compilation of the CXX compiler identification source "CMakeCXXCompilerId.cpp" produced "a.out"
-The CXX compiler identification is AppleClang, found in "/Users/brady/CLionProjects/CS3460-CPP/Hw6/cmake-build-debug/CMakeFiles/3.15.3/CompilerIdCXX/a.out"
+The CXX compiler identification is AppleClang, found in "/Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/CMakeFiles/3.14.5/CompilerIdCXX/a.out"
Determining if the C compiler works passed with the following output:
-Change Dir: /Users/brady/CLionProjects/CS3460-CPP/Hw6/cmake-build-debug/CMakeFiles/CMakeTmp
-
-Run Build Command(s):/usr/bin/make cmTC_656fc/fast && /Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_656fc.dir/build.make CMakeFiles/cmTC_656fc.dir/build
-Building C object CMakeFiles/cmTC_656fc.dir/testCCompiler.c.o
-/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk -o CMakeFiles/cmTC_656fc.dir/testCCompiler.c.o -c /Users/brady/CLionProjects/CS3460-CPP/Hw6/cmake-build-debug/CMakeFiles/CMakeTmp/testCCompiler.c
-Linking C executable cmTC_656fc
-/Applications/CLion.app/Contents/bin/cmake/mac/bin/cmake -E cmake_link_script CMakeFiles/cmTC_656fc.dir/link.txt --verbose=1
-/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk -Wl,-search_paths_first -Wl,-headerpad_max_install_names CMakeFiles/cmTC_656fc.dir/testCCompiler.c.o -o cmTC_656fc
+Change Dir: /Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/CMakeFiles/CMakeTmp
+Run Build Command(s):/usr/bin/make cmTC_33881/fast
+/Library/Developer/CommandLineTools/usr/bin/make -f CMakeFiles/cmTC_33881.dir/build.make CMakeFiles/cmTC_33881.dir/build
+Building C object CMakeFiles/cmTC_33881.dir/testCCompiler.c.o
+/Library/Developer/CommandLineTools/usr/bin/cc -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk -o CMakeFiles/cmTC_33881.dir/testCCompiler.c.o -c /Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/CMakeFiles/CMakeTmp/testCCompiler.c
+Linking C executable cmTC_33881
+/Applications/CLion.app/Contents/bin/cmake/mac/bin/cmake -E cmake_link_script CMakeFiles/cmTC_33881.dir/link.txt --verbose=1
+/Library/Developer/CommandLineTools/usr/bin/cc -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk -Wl,-search_paths_first -Wl,-headerpad_max_install_names CMakeFiles/cmTC_33881.dir/testCCompiler.c.o -o cmTC_33881
Detecting C compiler ABI info compiled with the following output:
-Change Dir: /Users/brady/CLionProjects/CS3460-CPP/Hw6/cmake-build-debug/CMakeFiles/CMakeTmp
+Change Dir: /Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/CMakeFiles/CMakeTmp
-Run Build Command(s):/usr/bin/make cmTC_f9596/fast && /Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_f9596.dir/build.make CMakeFiles/cmTC_f9596.dir/build
-Building C object CMakeFiles/cmTC_f9596.dir/CMakeCCompilerABI.c.o
-/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk -v -Wl,-v -o CMakeFiles/cmTC_f9596.dir/CMakeCCompilerABI.c.o -c /Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.15/Modules/CMakeCCompilerABI.c
-Apple LLVM version 10.0.1 (clang-1001.0.46.4)
+Run Build Command(s):/usr/bin/make cmTC_3fbf7/fast
+/Library/Developer/CommandLineTools/usr/bin/make -f CMakeFiles/cmTC_3fbf7.dir/build.make CMakeFiles/cmTC_3fbf7.dir/build
+Building C object CMakeFiles/cmTC_3fbf7.dir/CMakeCCompilerABI.c.o
+/Library/Developer/CommandLineTools/usr/bin/cc -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk -v -Wl,-v -o CMakeFiles/cmTC_3fbf7.dir/CMakeCCompilerABI.c.o -c /Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.14/Modules/CMakeCCompilerABI.c
+Apple clang version 11.0.0 (clang-1100.0.33.8)
Target: x86_64-apple-darwin19.0.0
Thread model: posix
-InstalledDir: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin
+InstalledDir: /Library/Developer/CommandLineTools/usr/bin
clang: warning: -Wl,-v: 'linker' input unused [-Wunused-command-line-argument]
- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang" -cc1 -triple x86_64-apple-macosx10.14.0 -Wdeprecated-objc-isa-usage -Werror=deprecated-objc-isa-usage -emit-obj -mrelax-all -disable-free -disable-llvm-verifier -discard-value-names -main-file-name CMakeCCompilerABI.c -mrelocation-model pic -pic-level 2 -mthread-model posix -mdisable-fp-elim -fno-strict-return -masm-verbose -munwind-tables -target-sdk-version=10.14 -target-cpu penryn -dwarf-column-info -debugger-tuning=lldb -target-linker-version 450.3 -v -coverage-notes-file /Users/brady/CLionProjects/CS3460-CPP/Hw6/cmake-build-debug/CMakeFiles/CMakeTmp/CMakeFiles/cmTC_f9596.dir/CMakeCCompilerABI.c.gcno -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/10.0.1 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk -Wno-atomic-implicit-seq-cst -Wno-framework-include-private-from-public -Wno-atimport-in-framework-header -Wno-quoted-include-in-framework-header -fdebug-compilation-dir /Users/brady/CLionProjects/CS3460-CPP/Hw6/cmake-build-debug/CMakeFiles/CMakeTmp -ferror-limit 19 -fmessage-length 0 -stack-protector 1 -fblocks -fencode-extended-block-signature -fregister-global-dtors-with-atexit -fobjc-runtime=macosx-10.14.0 -fmax-type-align=16 -fdiagnostics-show-option -o CMakeFiles/cmTC_f9596.dir/CMakeCCompilerABI.c.o -x c /Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.15/Modules/CMakeCCompilerABI.c
-clang -cc1 version 10.0.1 (clang-1001.0.46.4) default target x86_64-apple-darwin19.0.0
-ignoring nonexistent directory "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/usr/local/include"
-ignoring nonexistent directory "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/Library/Frameworks"
+ "/Library/Developer/CommandLineTools/usr/bin/clang" -cc1 -triple x86_64-apple-macosx10.15.0 -Wdeprecated-objc-isa-usage -Werror=deprecated-objc-isa-usage -emit-obj -mrelax-all -disable-free -disable-llvm-verifier -discard-value-names -main-file-name CMakeCCompilerABI.c -mrelocation-model pic -pic-level 2 -mthread-model posix -mdisable-fp-elim -fno-strict-return -masm-verbose -munwind-tables -target-sdk-version=10.15 -target-cpu penryn -dwarf-column-info -debugger-tuning=lldb -ggnu-pubnames -target-linker-version 512.4 -v -coverage-notes-file /Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/CMakeFiles/CMakeTmp/CMakeFiles/cmTC_3fbf7.dir/CMakeCCompilerABI.c.gcno -resource-dir /Library/Developer/CommandLineTools/usr/lib/clang/11.0.0 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk -Wno-framework-include-private-from-public -Wno-atimport-in-framework-header -Wno-extra-semi-stmt -Wno-quoted-include-in-framework-header -fdebug-compilation-dir /Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/CMakeFiles/CMakeTmp -ferror-limit 19 -fmessage-length 0 -stack-protector 1 -fstack-check -mdarwin-stkchk-strong-link -fblocks -fencode-extended-block-signature -fregister-global-dtors-with-atexit -fobjc-runtime=macosx-10.15.0 -fmax-type-align=16 -fdiagnostics-show-option -o CMakeFiles/cmTC_3fbf7.dir/CMakeCCompilerABI.c.o -x c /Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.14/Modules/CMakeCCompilerABI.c
+clang -cc1 version 11.0.0 (clang-1100.0.33.8) default target x86_64-apple-darwin19.0.0
+ignoring nonexistent directory "/Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk/usr/local/include"
+ignoring nonexistent directory "/Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk/Library/Frameworks"
#include "..." search starts here:
#include <...> search starts here:
- /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/10.0.1/include
- /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include
- /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/usr/include
- /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/System/Library/Frameworks (framework directory)
+ /Library/Developer/CommandLineTools/usr/lib/clang/11.0.0/include
+ /Library/Developer/CommandLineTools/usr/include
+ /Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk/usr/include
+ /Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk/System/Library/Frameworks (framework directory)
End of search list.
-Linking C executable cmTC_f9596
-/Applications/CLion.app/Contents/bin/cmake/mac/bin/cmake -E cmake_link_script CMakeFiles/cmTC_f9596.dir/link.txt --verbose=1
-/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk -Wl,-search_paths_first -Wl,-headerpad_max_install_names -v -Wl,-v CMakeFiles/cmTC_f9596.dir/CMakeCCompilerABI.c.o -o cmTC_f9596
-Apple LLVM version 10.0.1 (clang-1001.0.46.4)
+Linking C executable cmTC_3fbf7
+/Applications/CLion.app/Contents/bin/cmake/mac/bin/cmake -E cmake_link_script CMakeFiles/cmTC_3fbf7.dir/link.txt --verbose=1
+/Library/Developer/CommandLineTools/usr/bin/cc -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk -Wl,-search_paths_first -Wl,-headerpad_max_install_names -v -Wl,-v CMakeFiles/cmTC_3fbf7.dir/CMakeCCompilerABI.c.o -o cmTC_3fbf7
+Apple clang version 11.0.0 (clang-1100.0.33.8)
Target: x86_64-apple-darwin19.0.0
Thread model: posix
-InstalledDir: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin
- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ld" -demangle -lto_library /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/libLTO.dylib -dynamic -arch x86_64 -macosx_version_min 10.14.0 -syslibroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk -o cmTC_f9596 -search_paths_first -headerpad_max_install_names -v CMakeFiles/cmTC_f9596.dir/CMakeCCompilerABI.c.o -lSystem /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/10.0.1/lib/darwin/libclang_rt.osx.a
-@(#)PROGRAM:ld PROJECT:ld64-450.3
-BUILD 18:16:53 Apr 5 2019
+InstalledDir: /Library/Developer/CommandLineTools/usr/bin
+ "/Library/Developer/CommandLineTools/usr/bin/ld" -demangle -lto_library /Library/Developer/CommandLineTools/usr/lib/libLTO.dylib -dynamic -arch x86_64 -macosx_version_min 10.15.0 -syslibroot /Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk -o cmTC_3fbf7 -search_paths_first -headerpad_max_install_names -v CMakeFiles/cmTC_3fbf7.dir/CMakeCCompilerABI.c.o -lSystem /Library/Developer/CommandLineTools/usr/lib/clang/11.0.0/lib/darwin/libclang_rt.osx.a
+@(#)PROGRAM:ld PROJECT:ld64-512.4
+BUILD 05:06:53 Aug 16 2019
configured to support archs: armv6 armv7 armv7s arm64 arm64e arm64_32 i386 x86_64 x86_64h armv6m armv7k armv7m armv7em
Library search paths:
- /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/usr/lib
+ /Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk/usr/lib
Framework search paths:
- /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/System/Library/Frameworks/
-
+ /Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk/System/Library/Frameworks/
Parsed C implicit include dir info from above output: rv=done
found start of include info
found start of implicit include info
- add: [/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/10.0.1/include]
- add: [/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include]
- add: [/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/usr/include]
+ add: [/Library/Developer/CommandLineTools/usr/lib/clang/11.0.0/include]
+ add: [/Library/Developer/CommandLineTools/usr/include]
+ add: [/Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk/usr/include]
end of search list found
- collapse include dir [/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/10.0.1/include] ==> [/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/10.0.1/include]
- collapse include dir [/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include] ==> [/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include]
- collapse include dir [/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/usr/include] ==> [/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/usr/include]
- implicit include dirs: [/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/10.0.1/include;/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include;/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/usr/include]
+ collapse include dir [/Library/Developer/CommandLineTools/usr/lib/clang/11.0.0/include] ==> [/Library/Developer/CommandLineTools/usr/lib/clang/11.0.0/include]
+ collapse include dir [/Library/Developer/CommandLineTools/usr/include] ==> [/Library/Developer/CommandLineTools/usr/include]
+ collapse include dir [/Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk/usr/include] ==> [/Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk/usr/include]
+ implicit include dirs: [/Library/Developer/CommandLineTools/usr/lib/clang/11.0.0/include;/Library/Developer/CommandLineTools/usr/include;/Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk/usr/include]
Parsed C implicit link information from above output:
link line regex: [^( *|.*[/\])(ld|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\]+-)?ld|collect2)[^/\]*( |$)]
- ignore line: [Change Dir: /Users/brady/CLionProjects/CS3460-CPP/Hw6/cmake-build-debug/CMakeFiles/CMakeTmp]
+ ignore line: [Change Dir: /Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/CMakeFiles/CMakeTmp]
ignore line: []
- ignore line: [Run Build Command(s):/usr/bin/make cmTC_f9596/fast && /Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_f9596.dir/build.make CMakeFiles/cmTC_f9596.dir/build]
- ignore line: [Building C object CMakeFiles/cmTC_f9596.dir/CMakeCCompilerABI.c.o]
- ignore line: [/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk -v -Wl,-v -o CMakeFiles/cmTC_f9596.dir/CMakeCCompilerABI.c.o -c /Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.15/Modules/CMakeCCompilerABI.c]
- ignore line: [Apple LLVM version 10.0.1 (clang-1001.0.46.4)]
+ ignore line: [Run Build Command(s):/usr/bin/make cmTC_3fbf7/fast ]
+ ignore line: [/Library/Developer/CommandLineTools/usr/bin/make -f CMakeFiles/cmTC_3fbf7.dir/build.make CMakeFiles/cmTC_3fbf7.dir/build]
+ ignore line: [Building C object CMakeFiles/cmTC_3fbf7.dir/CMakeCCompilerABI.c.o]
+ ignore line: [/Library/Developer/CommandLineTools/usr/bin/cc -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk -v -Wl,-v -o CMakeFiles/cmTC_3fbf7.dir/CMakeCCompilerABI.c.o -c /Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.14/Modules/CMakeCCompilerABI.c]
+ ignore line: [Apple clang version 11.0.0 (clang-1100.0.33.8)]
ignore line: [Target: x86_64-apple-darwin19.0.0]
ignore line: [Thread model: posix]
- ignore line: [InstalledDir: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin]
+ ignore line: [InstalledDir: /Library/Developer/CommandLineTools/usr/bin]
ignore line: [clang: warning: -Wl,-v: 'linker' input unused [-Wunused-command-line-argument]]
- ignore line: [ "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang" -cc1 -triple x86_64-apple-macosx10.14.0 -Wdeprecated-objc-isa-usage -Werror=deprecated-objc-isa-usage -emit-obj -mrelax-all -disable-free -disable-llvm-verifier -discard-value-names -main-file-name CMakeCCompilerABI.c -mrelocation-model pic -pic-level 2 -mthread-model posix -mdisable-fp-elim -fno-strict-return -masm-verbose -munwind-tables -target-sdk-version=10.14 -target-cpu penryn -dwarf-column-info -debugger-tuning=lldb -target-linker-version 450.3 -v -coverage-notes-file /Users/brady/CLionProjects/CS3460-CPP/Hw6/cmake-build-debug/CMakeFiles/CMakeTmp/CMakeFiles/cmTC_f9596.dir/CMakeCCompilerABI.c.gcno -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/10.0.1 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk -Wno-atomic-implicit-seq-cst -Wno-framework-include-private-from-public -Wno-atimport-in-framework-header -Wno-quoted-include-in-framework-header -fdebug-compilation-dir /Users/brady/CLionProjects/CS3460-CPP/Hw6/cmake-build-debug/CMakeFiles/CMakeTmp -ferror-limit 19 -fmessage-length 0 -stack-protector 1 -fblocks -fencode-extended-block-signature -fregister-global-dtors-with-atexit -fobjc-runtime=macosx-10.14.0 -fmax-type-align=16 -fdiagnostics-show-option -o CMakeFiles/cmTC_f9596.dir/CMakeCCompilerABI.c.o -x c /Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.15/Modules/CMakeCCompilerABI.c]
- ignore line: [clang -cc1 version 10.0.1 (clang-1001.0.46.4) default target x86_64-apple-darwin19.0.0]
- ignore line: [ignoring nonexistent directory "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/usr/local/include"]
- ignore line: [ignoring nonexistent directory "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/Library/Frameworks"]
+ ignore line: [ "/Library/Developer/CommandLineTools/usr/bin/clang" -cc1 -triple x86_64-apple-macosx10.15.0 -Wdeprecated-objc-isa-usage -Werror=deprecated-objc-isa-usage -emit-obj -mrelax-all -disable-free -disable-llvm-verifier -discard-value-names -main-file-name CMakeCCompilerABI.c -mrelocation-model pic -pic-level 2 -mthread-model posix -mdisable-fp-elim -fno-strict-return -masm-verbose -munwind-tables -target-sdk-version=10.15 -target-cpu penryn -dwarf-column-info -debugger-tuning=lldb -ggnu-pubnames -target-linker-version 512.4 -v -coverage-notes-file /Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/CMakeFiles/CMakeTmp/CMakeFiles/cmTC_3fbf7.dir/CMakeCCompilerABI.c.gcno -resource-dir /Library/Developer/CommandLineTools/usr/lib/clang/11.0.0 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk -Wno-framework-include-private-from-public -Wno-atimport-in-framework-header -Wno-extra-semi-stmt -Wno-quoted-include-in-framework-header -fdebug-compilation-dir /Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/CMakeFiles/CMakeTmp -ferror-limit 19 -fmessage-length 0 -stack-protector 1 -fstack-check -mdarwin-stkchk-strong-link -fblocks -fencode-extended-block-signature -fregister-global-dtors-with-atexit -fobjc-runtime=macosx-10.15.0 -fmax-type-align=16 -fdiagnostics-show-option -o CMakeFiles/cmTC_3fbf7.dir/CMakeCCompilerABI.c.o -x c /Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.14/Modules/CMakeCCompilerABI.c]
+ ignore line: [clang -cc1 version 11.0.0 (clang-1100.0.33.8) default target x86_64-apple-darwin19.0.0]
+ ignore line: [ignoring nonexistent directory "/Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk/usr/local/include"]
+ ignore line: [ignoring nonexistent directory "/Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk/Library/Frameworks"]
ignore line: [#include "..." search starts here:]
ignore line: [#include <...> search starts here:]
- ignore line: [ /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/10.0.1/include]
- ignore line: [ /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include]
- ignore line: [ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/usr/include]
- ignore line: [ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/System/Library/Frameworks (framework directory)]
+ ignore line: [ /Library/Developer/CommandLineTools/usr/lib/clang/11.0.0/include]
+ ignore line: [ /Library/Developer/CommandLineTools/usr/include]
+ ignore line: [ /Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk/usr/include]
+ ignore line: [ /Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk/System/Library/Frameworks (framework directory)]
ignore line: [End of search list.]
- ignore line: [Linking C executable cmTC_f9596]
- ignore line: [/Applications/CLion.app/Contents/bin/cmake/mac/bin/cmake -E cmake_link_script CMakeFiles/cmTC_f9596.dir/link.txt --verbose=1]
- ignore line: [/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk -Wl,-search_paths_first -Wl,-headerpad_max_install_names -v -Wl,-v CMakeFiles/cmTC_f9596.dir/CMakeCCompilerABI.c.o -o cmTC_f9596 ]
- ignore line: [Apple LLVM version 10.0.1 (clang-1001.0.46.4)]
+ ignore line: [Linking C executable cmTC_3fbf7]
+ ignore line: [/Applications/CLion.app/Contents/bin/cmake/mac/bin/cmake -E cmake_link_script CMakeFiles/cmTC_3fbf7.dir/link.txt --verbose=1]
+ ignore line: [/Library/Developer/CommandLineTools/usr/bin/cc -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk -Wl,-search_paths_first -Wl,-headerpad_max_install_names -v -Wl,-v CMakeFiles/cmTC_3fbf7.dir/CMakeCCompilerABI.c.o -o cmTC_3fbf7 ]
+ ignore line: [Apple clang version 11.0.0 (clang-1100.0.33.8)]
ignore line: [Target: x86_64-apple-darwin19.0.0]
ignore line: [Thread model: posix]
- ignore line: [InstalledDir: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin]
- link line: [ "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ld" -demangle -lto_library /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/libLTO.dylib -dynamic -arch x86_64 -macosx_version_min 10.14.0 -syslibroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk -o cmTC_f9596 -search_paths_first -headerpad_max_install_names -v CMakeFiles/cmTC_f9596.dir/CMakeCCompilerABI.c.o -lSystem /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/10.0.1/lib/darwin/libclang_rt.osx.a]
- arg [/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ld] ==> ignore
+ ignore line: [InstalledDir: /Library/Developer/CommandLineTools/usr/bin]
+ link line: [ "/Library/Developer/CommandLineTools/usr/bin/ld" -demangle -lto_library /Library/Developer/CommandLineTools/usr/lib/libLTO.dylib -dynamic -arch x86_64 -macosx_version_min 10.15.0 -syslibroot /Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk -o cmTC_3fbf7 -search_paths_first -headerpad_max_install_names -v CMakeFiles/cmTC_3fbf7.dir/CMakeCCompilerABI.c.o -lSystem /Library/Developer/CommandLineTools/usr/lib/clang/11.0.0/lib/darwin/libclang_rt.osx.a]
+ arg [/Library/Developer/CommandLineTools/usr/bin/ld] ==> ignore
arg [-demangle] ==> ignore
arg [-lto_library] ==> ignore, skip following value
- arg [/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/libLTO.dylib] ==> skip value of -lto_library
+ arg [/Library/Developer/CommandLineTools/usr/lib/libLTO.dylib] ==> skip value of -lto_library
arg [-dynamic] ==> ignore
arg [-arch] ==> ignore
arg [x86_64] ==> ignore
arg [-macosx_version_min] ==> ignore
- arg [10.14.0] ==> ignore
+ arg [10.15.0] ==> ignore
arg [-syslibroot] ==> ignore
- arg [/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk] ==> ignore
+ arg [/Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk] ==> ignore
arg [-o] ==> ignore
- arg [cmTC_f9596] ==> ignore
+ arg [cmTC_3fbf7] ==> ignore
arg [-search_paths_first] ==> ignore
arg [-headerpad_max_install_names] ==> ignore
arg [-v] ==> ignore
- arg [CMakeFiles/cmTC_f9596.dir/CMakeCCompilerABI.c.o] ==> ignore
+ arg [CMakeFiles/cmTC_3fbf7.dir/CMakeCCompilerABI.c.o] ==> ignore
arg [-lSystem] ==> lib [System]
- arg [/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/10.0.1/lib/darwin/libclang_rt.osx.a] ==> lib [/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/10.0.1/lib/darwin/libclang_rt.osx.a]
- Library search paths: [;/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/usr/lib]
- Framework search paths: [;/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/System/Library/Frameworks/]
+ arg [/Library/Developer/CommandLineTools/usr/lib/clang/11.0.0/lib/darwin/libclang_rt.osx.a] ==> lib [/Library/Developer/CommandLineTools/usr/lib/clang/11.0.0/lib/darwin/libclang_rt.osx.a]
+ Library search paths: [;/Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk/usr/lib]
+ Framework search paths: [;/Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk/System/Library/Frameworks/]
remove lib [System]
- remove lib [/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/10.0.1/lib/darwin/libclang_rt.osx.a]
- collapse library dir [/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/usr/lib] ==> [/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/usr/lib]
- collapse framework dir [/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/System/Library/Frameworks/] ==> [/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/System/Library/Frameworks]
+ remove lib [/Library/Developer/CommandLineTools/usr/lib/clang/11.0.0/lib/darwin/libclang_rt.osx.a]
+ collapse library dir [/Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk/usr/lib] ==> [/Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk/usr/lib]
+ collapse framework dir [/Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk/System/Library/Frameworks/] ==> [/Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk/System/Library/Frameworks]
implicit libs: []
- implicit dirs: [/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/usr/lib]
- implicit fwks: [/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/System/Library/Frameworks]
+ implicit dirs: [/Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk/usr/lib]
+ implicit fwks: [/Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk/System/Library/Frameworks]
+
+
+Detecting C [-std=c11] compiler features compiled with the following output:
+Change Dir: /Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/CMakeFiles/CMakeTmp
+
+Run Build Command(s):/usr/bin/make cmTC_11316/fast
+/Library/Developer/CommandLineTools/usr/bin/make -f CMakeFiles/cmTC_11316.dir/build.make CMakeFiles/cmTC_11316.dir/build
+Building C object CMakeFiles/cmTC_11316.dir/feature_tests.c.o
+/Library/Developer/CommandLineTools/usr/bin/cc -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk -std=c11 -o CMakeFiles/cmTC_11316.dir/feature_tests.c.o -c /Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/CMakeFiles/feature_tests.c
+Linking C executable cmTC_11316
+/Applications/CLion.app/Contents/bin/cmake/mac/bin/cmake -E cmake_link_script CMakeFiles/cmTC_11316.dir/link.txt --verbose=1
+/Library/Developer/CommandLineTools/usr/bin/cc -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk -Wl,-search_paths_first -Wl,-headerpad_max_install_names CMakeFiles/cmTC_11316.dir/feature_tests.c.o -o cmTC_11316
+
+
+ Feature record: C_FEATURE:1c_function_prototypes
+ Feature record: C_FEATURE:1c_restrict
+ Feature record: C_FEATURE:1c_static_assert
+ Feature record: C_FEATURE:1c_variadic_macros
+
+
+Detecting C [-std=c99] compiler features compiled with the following output:
+Change Dir: /Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/CMakeFiles/CMakeTmp
+
+Run Build Command(s):/usr/bin/make cmTC_01072/fast
+/Library/Developer/CommandLineTools/usr/bin/make -f CMakeFiles/cmTC_01072.dir/build.make CMakeFiles/cmTC_01072.dir/build
+Building C object CMakeFiles/cmTC_01072.dir/feature_tests.c.o
+/Library/Developer/CommandLineTools/usr/bin/cc -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk -std=c99 -o CMakeFiles/cmTC_01072.dir/feature_tests.c.o -c /Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/CMakeFiles/feature_tests.c
+Linking C executable cmTC_01072
+/Applications/CLion.app/Contents/bin/cmake/mac/bin/cmake -E cmake_link_script CMakeFiles/cmTC_01072.dir/link.txt --verbose=1
+/Library/Developer/CommandLineTools/usr/bin/cc -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk -Wl,-search_paths_first -Wl,-headerpad_max_install_names CMakeFiles/cmTC_01072.dir/feature_tests.c.o -o cmTC_01072
+
+
+ Feature record: C_FEATURE:1c_function_prototypes
+ Feature record: C_FEATURE:1c_restrict
+ Feature record: C_FEATURE:0c_static_assert
+ Feature record: C_FEATURE:1c_variadic_macros
+
+
+Detecting C [-std=c90] compiler features compiled with the following output:
+Change Dir: /Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/CMakeFiles/CMakeTmp
+
+Run Build Command(s):/usr/bin/make cmTC_a2c31/fast
+/Library/Developer/CommandLineTools/usr/bin/make -f CMakeFiles/cmTC_a2c31.dir/build.make CMakeFiles/cmTC_a2c31.dir/build
+Building C object CMakeFiles/cmTC_a2c31.dir/feature_tests.c.o
+/Library/Developer/CommandLineTools/usr/bin/cc -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk -std=c90 -o CMakeFiles/cmTC_a2c31.dir/feature_tests.c.o -c /Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/CMakeFiles/feature_tests.c
+Linking C executable cmTC_a2c31
+/Applications/CLion.app/Contents/bin/cmake/mac/bin/cmake -E cmake_link_script CMakeFiles/cmTC_a2c31.dir/link.txt --verbose=1
+/Library/Developer/CommandLineTools/usr/bin/cc -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk -Wl,-search_paths_first -Wl,-headerpad_max_install_names CMakeFiles/cmTC_a2c31.dir/feature_tests.c.o -o cmTC_a2c31
+
+
+ Feature record: C_FEATURE:1c_function_prototypes
+ Feature record: C_FEATURE:0c_restrict
+ Feature record: C_FEATURE:0c_static_assert
+ Feature record: C_FEATURE:0c_variadic_macros
Determining if the CXX compiler works passed with the following output:
-Change Dir: /Users/brady/CLionProjects/CS3460-CPP/Hw6/cmake-build-debug/CMakeFiles/CMakeTmp
-
-Run Build Command(s):/usr/bin/make cmTC_ac750/fast && /Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_ac750.dir/build.make CMakeFiles/cmTC_ac750.dir/build
-Building CXX object CMakeFiles/cmTC_ac750.dir/testCXXCompiler.cxx.o
-/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk -o CMakeFiles/cmTC_ac750.dir/testCXXCompiler.cxx.o -c /Users/brady/CLionProjects/CS3460-CPP/Hw6/cmake-build-debug/CMakeFiles/CMakeTmp/testCXXCompiler.cxx
-Linking CXX executable cmTC_ac750
-/Applications/CLion.app/Contents/bin/cmake/mac/bin/cmake -E cmake_link_script CMakeFiles/cmTC_ac750.dir/link.txt --verbose=1
-/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk -Wl,-search_paths_first -Wl,-headerpad_max_install_names CMakeFiles/cmTC_ac750.dir/testCXXCompiler.cxx.o -o cmTC_ac750
+Change Dir: /Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/CMakeFiles/CMakeTmp
+Run Build Command(s):/usr/bin/make cmTC_d7bfe/fast
+/Library/Developer/CommandLineTools/usr/bin/make -f CMakeFiles/cmTC_d7bfe.dir/build.make CMakeFiles/cmTC_d7bfe.dir/build
+Building CXX object CMakeFiles/cmTC_d7bfe.dir/testCXXCompiler.cxx.o
+/Library/Developer/CommandLineTools/usr/bin/c++ -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk -o CMakeFiles/cmTC_d7bfe.dir/testCXXCompiler.cxx.o -c /Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/CMakeFiles/CMakeTmp/testCXXCompiler.cxx
+Linking CXX executable cmTC_d7bfe
+/Applications/CLion.app/Contents/bin/cmake/mac/bin/cmake -E cmake_link_script CMakeFiles/cmTC_d7bfe.dir/link.txt --verbose=1
+/Library/Developer/CommandLineTools/usr/bin/c++ -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk -Wl,-search_paths_first -Wl,-headerpad_max_install_names CMakeFiles/cmTC_d7bfe.dir/testCXXCompiler.cxx.o -o cmTC_d7bfe
Detecting CXX compiler ABI info compiled with the following output:
-Change Dir: /Users/brady/CLionProjects/CS3460-CPP/Hw6/cmake-build-debug/CMakeFiles/CMakeTmp
+Change Dir: /Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/CMakeFiles/CMakeTmp
-Run Build Command(s):/usr/bin/make cmTC_f1d95/fast && /Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_f1d95.dir/build.make CMakeFiles/cmTC_f1d95.dir/build
-Building CXX object CMakeFiles/cmTC_f1d95.dir/CMakeCXXCompilerABI.cpp.o
-/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk -v -Wl,-v -o CMakeFiles/cmTC_f1d95.dir/CMakeCXXCompilerABI.cpp.o -c /Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.15/Modules/CMakeCXXCompilerABI.cpp
-Apple LLVM version 10.0.1 (clang-1001.0.46.4)
+Run Build Command(s):/usr/bin/make cmTC_6cbf6/fast
+/Library/Developer/CommandLineTools/usr/bin/make -f CMakeFiles/cmTC_6cbf6.dir/build.make CMakeFiles/cmTC_6cbf6.dir/build
+Building CXX object CMakeFiles/cmTC_6cbf6.dir/CMakeCXXCompilerABI.cpp.o
+/Library/Developer/CommandLineTools/usr/bin/c++ -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk -v -Wl,-v -o CMakeFiles/cmTC_6cbf6.dir/CMakeCXXCompilerABI.cpp.o -c /Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.14/Modules/CMakeCXXCompilerABI.cpp
+Apple clang version 11.0.0 (clang-1100.0.33.8)
Target: x86_64-apple-darwin19.0.0
Thread model: posix
-InstalledDir: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin
+InstalledDir: /Library/Developer/CommandLineTools/usr/bin
clang: warning: -Wl,-v: 'linker' input unused [-Wunused-command-line-argument]
- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang" -cc1 -triple x86_64-apple-macosx10.14.0 -Wdeprecated-objc-isa-usage -Werror=deprecated-objc-isa-usage -emit-obj -mrelax-all -disable-free -disable-llvm-verifier -discard-value-names -main-file-name CMakeCXXCompilerABI.cpp -mrelocation-model pic -pic-level 2 -mthread-model posix -mdisable-fp-elim -fno-strict-return -masm-verbose -munwind-tables -target-sdk-version=10.14 -target-cpu penryn -dwarf-column-info -debugger-tuning=lldb -target-linker-version 450.3 -v -coverage-notes-file /Users/brady/CLionProjects/CS3460-CPP/Hw6/cmake-build-debug/CMakeFiles/CMakeTmp/CMakeFiles/cmTC_f1d95.dir/CMakeCXXCompilerABI.cpp.gcno -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/10.0.1 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk -stdlib=libc++ -Wno-atomic-implicit-seq-cst -Wno-framework-include-private-from-public -Wno-atimport-in-framework-header -Wno-quoted-include-in-framework-header -fdeprecated-macro -fdebug-compilation-dir /Users/brady/CLionProjects/CS3460-CPP/Hw6/cmake-build-debug/CMakeFiles/CMakeTmp -ferror-limit 19 -fmessage-length 0 -stack-protector 1 -fblocks -fencode-extended-block-signature -fregister-global-dtors-with-atexit -fobjc-runtime=macosx-10.14.0 -fcxx-exceptions -fexceptions -fmax-type-align=16 -fdiagnostics-show-option -o CMakeFiles/cmTC_f1d95.dir/CMakeCXXCompilerABI.cpp.o -x c++ /Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.15/Modules/CMakeCXXCompilerABI.cpp
-clang -cc1 version 10.0.1 (clang-1001.0.46.4) default target x86_64-apple-darwin19.0.0
-ignoring nonexistent directory "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/usr/include/c++/v1"
-ignoring nonexistent directory "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/usr/local/include"
-ignoring nonexistent directory "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/Library/Frameworks"
+ "/Library/Developer/CommandLineTools/usr/bin/clang" -cc1 -triple x86_64-apple-macosx10.15.0 -Wdeprecated-objc-isa-usage -Werror=deprecated-objc-isa-usage -emit-obj -mrelax-all -disable-free -disable-llvm-verifier -discard-value-names -main-file-name CMakeCXXCompilerABI.cpp -mrelocation-model pic -pic-level 2 -mthread-model posix -mdisable-fp-elim -fno-strict-return -masm-verbose -munwind-tables -target-sdk-version=10.15 -target-cpu penryn -dwarf-column-info -debugger-tuning=lldb -ggnu-pubnames -target-linker-version 512.4 -v -coverage-notes-file /Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/CMakeFiles/CMakeTmp/CMakeFiles/cmTC_6cbf6.dir/CMakeCXXCompilerABI.cpp.gcno -resource-dir /Library/Developer/CommandLineTools/usr/lib/clang/11.0.0 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk -stdlib=libc++ -internal-isystem /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1 -Wno-framework-include-private-from-public -Wno-atimport-in-framework-header -Wno-extra-semi-stmt -Wno-quoted-include-in-framework-header -fdeprecated-macro -fdebug-compilation-dir /Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/CMakeFiles/CMakeTmp -ferror-limit 19 -fmessage-length 0 -stack-protector 1 -fstack-check -mdarwin-stkchk-strong-link -fblocks -fencode-extended-block-signature -fregister-global-dtors-with-atexit -fobjc-runtime=macosx-10.15.0 -fcxx-exceptions -fexceptions -fmax-type-align=16 -fdiagnostics-show-option -o CMakeFiles/cmTC_6cbf6.dir/CMakeCXXCompilerABI.cpp.o -x c++ /Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.14/Modules/CMakeCXXCompilerABI.cpp
+clang -cc1 version 11.0.0 (clang-1100.0.33.8) default target x86_64-apple-darwin19.0.0
+ignoring nonexistent directory "/Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk/usr/include/c++/v1"
+ignoring nonexistent directory "/Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk/usr/local/include"
+ignoring nonexistent directory "/Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk/Library/Frameworks"
#include "..." search starts here:
#include <...> search starts here:
- /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include/c++/v1
- /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/10.0.1/include
- /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include
- /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/usr/include
- /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/System/Library/Frameworks (framework directory)
+ /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1
+ /Library/Developer/CommandLineTools/usr/lib/clang/11.0.0/include
+ /Library/Developer/CommandLineTools/usr/include
+ /Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk/usr/include
+ /Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk/System/Library/Frameworks (framework directory)
End of search list.
-Linking CXX executable cmTC_f1d95
-/Applications/CLion.app/Contents/bin/cmake/mac/bin/cmake -E cmake_link_script CMakeFiles/cmTC_f1d95.dir/link.txt --verbose=1
-/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk -Wl,-search_paths_first -Wl,-headerpad_max_install_names -v -Wl,-v CMakeFiles/cmTC_f1d95.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_f1d95
-Apple LLVM version 10.0.1 (clang-1001.0.46.4)
+Linking CXX executable cmTC_6cbf6
+/Applications/CLion.app/Contents/bin/cmake/mac/bin/cmake -E cmake_link_script CMakeFiles/cmTC_6cbf6.dir/link.txt --verbose=1
+/Library/Developer/CommandLineTools/usr/bin/c++ -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk -Wl,-search_paths_first -Wl,-headerpad_max_install_names -v -Wl,-v CMakeFiles/cmTC_6cbf6.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_6cbf6
+Apple clang version 11.0.0 (clang-1100.0.33.8)
Target: x86_64-apple-darwin19.0.0
Thread model: posix
-InstalledDir: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin
- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ld" -demangle -lto_library /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/libLTO.dylib -dynamic -arch x86_64 -macosx_version_min 10.14.0 -syslibroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk -o cmTC_f1d95 -search_paths_first -headerpad_max_install_names -v CMakeFiles/cmTC_f1d95.dir/CMakeCXXCompilerABI.cpp.o -lc++ -lSystem /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/10.0.1/lib/darwin/libclang_rt.osx.a
-@(#)PROGRAM:ld PROJECT:ld64-450.3
-BUILD 18:16:53 Apr 5 2019
+InstalledDir: /Library/Developer/CommandLineTools/usr/bin
+ "/Library/Developer/CommandLineTools/usr/bin/ld" -demangle -lto_library /Library/Developer/CommandLineTools/usr/lib/libLTO.dylib -dynamic -arch x86_64 -macosx_version_min 10.15.0 -syslibroot /Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk -o cmTC_6cbf6 -search_paths_first -headerpad_max_install_names -v CMakeFiles/cmTC_6cbf6.dir/CMakeCXXCompilerABI.cpp.o -lc++ -lSystem /Library/Developer/CommandLineTools/usr/lib/clang/11.0.0/lib/darwin/libclang_rt.osx.a
+@(#)PROGRAM:ld PROJECT:ld64-512.4
+BUILD 05:06:53 Aug 16 2019
configured to support archs: armv6 armv7 armv7s arm64 arm64e arm64_32 i386 x86_64 x86_64h armv6m armv7k armv7m armv7em
Library search paths:
- /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/usr/lib
+ /Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk/usr/lib
Framework search paths:
- /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/System/Library/Frameworks/
-
+ /Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk/System/Library/Frameworks/
Parsed CXX implicit include dir info from above output: rv=done
found start of include info
found start of implicit include info
- add: [/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include/c++/v1]
- add: [/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/10.0.1/include]
- add: [/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include]
- add: [/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/usr/include]
+ add: [/Library/Developer/CommandLineTools/usr/bin/../include/c++/v1]
+ add: [/Library/Developer/CommandLineTools/usr/lib/clang/11.0.0/include]
+ add: [/Library/Developer/CommandLineTools/usr/include]
+ add: [/Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk/usr/include]
end of search list found
- collapse include dir [/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include/c++/v1] ==> [/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include/c++/v1]
- collapse include dir [/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/10.0.1/include] ==> [/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/10.0.1/include]
- collapse include dir [/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include] ==> [/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include]
- collapse include dir [/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/usr/include] ==> [/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/usr/include]
- implicit include dirs: [/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include/c++/v1;/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/10.0.1/include;/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include;/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/usr/include]
+ collapse include dir [/Library/Developer/CommandLineTools/usr/bin/../include/c++/v1] ==> [/Library/Developer/CommandLineTools/usr/include/c++/v1]
+ collapse include dir [/Library/Developer/CommandLineTools/usr/lib/clang/11.0.0/include] ==> [/Library/Developer/CommandLineTools/usr/lib/clang/11.0.0/include]
+ collapse include dir [/Library/Developer/CommandLineTools/usr/include] ==> [/Library/Developer/CommandLineTools/usr/include]
+ collapse include dir [/Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk/usr/include] ==> [/Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk/usr/include]
+ implicit include dirs: [/Library/Developer/CommandLineTools/usr/include/c++/v1;/Library/Developer/CommandLineTools/usr/lib/clang/11.0.0/include;/Library/Developer/CommandLineTools/usr/include;/Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk/usr/include]
Parsed CXX implicit link information from above output:
link line regex: [^( *|.*[/\])(ld|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\]+-)?ld|collect2)[^/\]*( |$)]
- ignore line: [Change Dir: /Users/brady/CLionProjects/CS3460-CPP/Hw6/cmake-build-debug/CMakeFiles/CMakeTmp]
+ ignore line: [Change Dir: /Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/CMakeFiles/CMakeTmp]
ignore line: []
- ignore line: [Run Build Command(s):/usr/bin/make cmTC_f1d95/fast && /Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_f1d95.dir/build.make CMakeFiles/cmTC_f1d95.dir/build]
- ignore line: [Building CXX object CMakeFiles/cmTC_f1d95.dir/CMakeCXXCompilerABI.cpp.o]
- ignore line: [/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk -v -Wl,-v -o CMakeFiles/cmTC_f1d95.dir/CMakeCXXCompilerABI.cpp.o -c /Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.15/Modules/CMakeCXXCompilerABI.cpp]
- ignore line: [Apple LLVM version 10.0.1 (clang-1001.0.46.4)]
+ ignore line: [Run Build Command(s):/usr/bin/make cmTC_6cbf6/fast ]
+ ignore line: [/Library/Developer/CommandLineTools/usr/bin/make -f CMakeFiles/cmTC_6cbf6.dir/build.make CMakeFiles/cmTC_6cbf6.dir/build]
+ ignore line: [Building CXX object CMakeFiles/cmTC_6cbf6.dir/CMakeCXXCompilerABI.cpp.o]
+ ignore line: [/Library/Developer/CommandLineTools/usr/bin/c++ -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk -v -Wl,-v -o CMakeFiles/cmTC_6cbf6.dir/CMakeCXXCompilerABI.cpp.o -c /Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.14/Modules/CMakeCXXCompilerABI.cpp]
+ ignore line: [Apple clang version 11.0.0 (clang-1100.0.33.8)]
ignore line: [Target: x86_64-apple-darwin19.0.0]
ignore line: [Thread model: posix]
- ignore line: [InstalledDir: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin]
+ ignore line: [InstalledDir: /Library/Developer/CommandLineTools/usr/bin]
ignore line: [clang: warning: -Wl,-v: 'linker' input unused [-Wunused-command-line-argument]]
- ignore line: [ "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang" -cc1 -triple x86_64-apple-macosx10.14.0 -Wdeprecated-objc-isa-usage -Werror=deprecated-objc-isa-usage -emit-obj -mrelax-all -disable-free -disable-llvm-verifier -discard-value-names -main-file-name CMakeCXXCompilerABI.cpp -mrelocation-model pic -pic-level 2 -mthread-model posix -mdisable-fp-elim -fno-strict-return -masm-verbose -munwind-tables -target-sdk-version=10.14 -target-cpu penryn -dwarf-column-info -debugger-tuning=lldb -target-linker-version 450.3 -v -coverage-notes-file /Users/brady/CLionProjects/CS3460-CPP/Hw6/cmake-build-debug/CMakeFiles/CMakeTmp/CMakeFiles/cmTC_f1d95.dir/CMakeCXXCompilerABI.cpp.gcno -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/10.0.1 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk -stdlib=libc++ -Wno-atomic-implicit-seq-cst -Wno-framework-include-private-from-public -Wno-atimport-in-framework-header -Wno-quoted-include-in-framework-header -fdeprecated-macro -fdebug-compilation-dir /Users/brady/CLionProjects/CS3460-CPP/Hw6/cmake-build-debug/CMakeFiles/CMakeTmp -ferror-limit 19 -fmessage-length 0 -stack-protector 1 -fblocks -fencode-extended-block-signature -fregister-global-dtors-with-atexit -fobjc-runtime=macosx-10.14.0 -fcxx-exceptions -fexceptions -fmax-type-align=16 -fdiagnostics-show-option -o CMakeFiles/cmTC_f1d95.dir/CMakeCXXCompilerABI.cpp.o -x c++ /Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.15/Modules/CMakeCXXCompilerABI.cpp]
- ignore line: [clang -cc1 version 10.0.1 (clang-1001.0.46.4) default target x86_64-apple-darwin19.0.0]
- ignore line: [ignoring nonexistent directory "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/usr/include/c++/v1"]
- ignore line: [ignoring nonexistent directory "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/usr/local/include"]
- ignore line: [ignoring nonexistent directory "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/Library/Frameworks"]
+ ignore line: [ "/Library/Developer/CommandLineTools/usr/bin/clang" -cc1 -triple x86_64-apple-macosx10.15.0 -Wdeprecated-objc-isa-usage -Werror=deprecated-objc-isa-usage -emit-obj -mrelax-all -disable-free -disable-llvm-verifier -discard-value-names -main-file-name CMakeCXXCompilerABI.cpp -mrelocation-model pic -pic-level 2 -mthread-model posix -mdisable-fp-elim -fno-strict-return -masm-verbose -munwind-tables -target-sdk-version=10.15 -target-cpu penryn -dwarf-column-info -debugger-tuning=lldb -ggnu-pubnames -target-linker-version 512.4 -v -coverage-notes-file /Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/CMakeFiles/CMakeTmp/CMakeFiles/cmTC_6cbf6.dir/CMakeCXXCompilerABI.cpp.gcno -resource-dir /Library/Developer/CommandLineTools/usr/lib/clang/11.0.0 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk -stdlib=libc++ -internal-isystem /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1 -Wno-framework-include-private-from-public -Wno-atimport-in-framework-header -Wno-extra-semi-stmt -Wno-quoted-include-in-framework-header -fdeprecated-macro -fdebug-compilation-dir /Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/CMakeFiles/CMakeTmp -ferror-limit 19 -fmessage-length 0 -stack-protector 1 -fstack-check -mdarwin-stkchk-strong-link -fblocks -fencode-extended-block-signature -fregister-global-dtors-with-atexit -fobjc-runtime=macosx-10.15.0 -fcxx-exceptions -fexceptions -fmax-type-align=16 -fdiagnostics-show-option -o CMakeFiles/cmTC_6cbf6.dir/CMakeCXXCompilerABI.cpp.o -x c++ /Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.14/Modules/CMakeCXXCompilerABI.cpp]
+ ignore line: [clang -cc1 version 11.0.0 (clang-1100.0.33.8) default target x86_64-apple-darwin19.0.0]
+ ignore line: [ignoring nonexistent directory "/Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk/usr/include/c++/v1"]
+ ignore line: [ignoring nonexistent directory "/Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk/usr/local/include"]
+ ignore line: [ignoring nonexistent directory "/Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk/Library/Frameworks"]
ignore line: [#include "..." search starts here:]
ignore line: [#include <...> search starts here:]
- ignore line: [ /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include/c++/v1]
- ignore line: [ /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/10.0.1/include]
- ignore line: [ /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include]
- ignore line: [ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/usr/include]
- ignore line: [ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/System/Library/Frameworks (framework directory)]
+ ignore line: [ /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1]
+ ignore line: [ /Library/Developer/CommandLineTools/usr/lib/clang/11.0.0/include]
+ ignore line: [ /Library/Developer/CommandLineTools/usr/include]
+ ignore line: [ /Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk/usr/include]
+ ignore line: [ /Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk/System/Library/Frameworks (framework directory)]
ignore line: [End of search list.]
- ignore line: [Linking CXX executable cmTC_f1d95]
- ignore line: [/Applications/CLion.app/Contents/bin/cmake/mac/bin/cmake -E cmake_link_script CMakeFiles/cmTC_f1d95.dir/link.txt --verbose=1]
- ignore line: [/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk -Wl,-search_paths_first -Wl,-headerpad_max_install_names -v -Wl,-v CMakeFiles/cmTC_f1d95.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_f1d95 ]
- ignore line: [Apple LLVM version 10.0.1 (clang-1001.0.46.4)]
+ ignore line: [Linking CXX executable cmTC_6cbf6]
+ ignore line: [/Applications/CLion.app/Contents/bin/cmake/mac/bin/cmake -E cmake_link_script CMakeFiles/cmTC_6cbf6.dir/link.txt --verbose=1]
+ ignore line: [/Library/Developer/CommandLineTools/usr/bin/c++ -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk -Wl,-search_paths_first -Wl,-headerpad_max_install_names -v -Wl,-v CMakeFiles/cmTC_6cbf6.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_6cbf6 ]
+ ignore line: [Apple clang version 11.0.0 (clang-1100.0.33.8)]
ignore line: [Target: x86_64-apple-darwin19.0.0]
ignore line: [Thread model: posix]
- ignore line: [InstalledDir: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin]
- link line: [ "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ld" -demangle -lto_library /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/libLTO.dylib -dynamic -arch x86_64 -macosx_version_min 10.14.0 -syslibroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk -o cmTC_f1d95 -search_paths_first -headerpad_max_install_names -v CMakeFiles/cmTC_f1d95.dir/CMakeCXXCompilerABI.cpp.o -lc++ -lSystem /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/10.0.1/lib/darwin/libclang_rt.osx.a]
- arg [/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ld] ==> ignore
+ ignore line: [InstalledDir: /Library/Developer/CommandLineTools/usr/bin]
+ link line: [ "/Library/Developer/CommandLineTools/usr/bin/ld" -demangle -lto_library /Library/Developer/CommandLineTools/usr/lib/libLTO.dylib -dynamic -arch x86_64 -macosx_version_min 10.15.0 -syslibroot /Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk -o cmTC_6cbf6 -search_paths_first -headerpad_max_install_names -v CMakeFiles/cmTC_6cbf6.dir/CMakeCXXCompilerABI.cpp.o -lc++ -lSystem /Library/Developer/CommandLineTools/usr/lib/clang/11.0.0/lib/darwin/libclang_rt.osx.a]
+ arg [/Library/Developer/CommandLineTools/usr/bin/ld] ==> ignore
arg [-demangle] ==> ignore
arg [-lto_library] ==> ignore, skip following value
- arg [/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/libLTO.dylib] ==> skip value of -lto_library
+ arg [/Library/Developer/CommandLineTools/usr/lib/libLTO.dylib] ==> skip value of -lto_library
arg [-dynamic] ==> ignore
arg [-arch] ==> ignore
arg [x86_64] ==> ignore
arg [-macosx_version_min] ==> ignore
- arg [10.14.0] ==> ignore
+ arg [10.15.0] ==> ignore
arg [-syslibroot] ==> ignore
- arg [/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk] ==> ignore
+ arg [/Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk] ==> ignore
arg [-o] ==> ignore
- arg [cmTC_f1d95] ==> ignore
+ arg [cmTC_6cbf6] ==> ignore
arg [-search_paths_first] ==> ignore
arg [-headerpad_max_install_names] ==> ignore
arg [-v] ==> ignore
- arg [CMakeFiles/cmTC_f1d95.dir/CMakeCXXCompilerABI.cpp.o] ==> ignore
+ arg [CMakeFiles/cmTC_6cbf6.dir/CMakeCXXCompilerABI.cpp.o] ==> ignore
arg [-lc++] ==> lib [c++]
arg [-lSystem] ==> lib [System]
- arg [/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/10.0.1/lib/darwin/libclang_rt.osx.a] ==> lib [/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/10.0.1/lib/darwin/libclang_rt.osx.a]
- Library search paths: [;/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/usr/lib]
- Framework search paths: [;/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/System/Library/Frameworks/]
+ arg [/Library/Developer/CommandLineTools/usr/lib/clang/11.0.0/lib/darwin/libclang_rt.osx.a] ==> lib [/Library/Developer/CommandLineTools/usr/lib/clang/11.0.0/lib/darwin/libclang_rt.osx.a]
+ Library search paths: [;/Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk/usr/lib]
+ Framework search paths: [;/Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk/System/Library/Frameworks/]
remove lib [System]
- remove lib [/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/10.0.1/lib/darwin/libclang_rt.osx.a]
- collapse library dir [/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/usr/lib] ==> [/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/usr/lib]
- collapse framework dir [/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/System/Library/Frameworks/] ==> [/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/System/Library/Frameworks]
+ remove lib [/Library/Developer/CommandLineTools/usr/lib/clang/11.0.0/lib/darwin/libclang_rt.osx.a]
+ collapse library dir [/Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk/usr/lib] ==> [/Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk/usr/lib]
+ collapse framework dir [/Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk/System/Library/Frameworks/] ==> [/Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk/System/Library/Frameworks]
implicit libs: [c++]
- implicit dirs: [/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/usr/lib]
- implicit fwks: [/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/System/Library/Frameworks]
+ implicit dirs: [/Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk/usr/lib]
+ implicit fwks: [/Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk/System/Library/Frameworks]
+
+
+Detecting CXX [-std=c++1z] compiler features compiled with the following output:
+Change Dir: /Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/CMakeFiles/CMakeTmp
+
+Run Build Command(s):/usr/bin/make cmTC_d070e/fast
+/Library/Developer/CommandLineTools/usr/bin/make -f CMakeFiles/cmTC_d070e.dir/build.make CMakeFiles/cmTC_d070e.dir/build
+Building CXX object CMakeFiles/cmTC_d070e.dir/feature_tests.cxx.o
+/Library/Developer/CommandLineTools/usr/bin/c++ -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk -std=c++1z -o CMakeFiles/cmTC_d070e.dir/feature_tests.cxx.o -c /Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/CMakeFiles/feature_tests.cxx
+Linking CXX executable cmTC_d070e
+/Applications/CLion.app/Contents/bin/cmake/mac/bin/cmake -E cmake_link_script CMakeFiles/cmTC_d070e.dir/link.txt --verbose=1
+/Library/Developer/CommandLineTools/usr/bin/c++ -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk -Wl,-search_paths_first -Wl,-headerpad_max_install_names CMakeFiles/cmTC_d070e.dir/feature_tests.cxx.o -o cmTC_d070e
+
+
+ Feature record: CXX_FEATURE:1cxx_aggregate_default_initializers
+ Feature record: CXX_FEATURE:1cxx_alias_templates
+ Feature record: CXX_FEATURE:1cxx_alignas
+ Feature record: CXX_FEATURE:1cxx_alignof
+ Feature record: CXX_FEATURE:1cxx_attributes
+ Feature record: CXX_FEATURE:1cxx_attribute_deprecated
+ Feature record: CXX_FEATURE:1cxx_auto_type
+ Feature record: CXX_FEATURE:1cxx_binary_literals
+ Feature record: CXX_FEATURE:1cxx_constexpr
+ Feature record: CXX_FEATURE:1cxx_contextual_conversions
+ Feature record: CXX_FEATURE:1cxx_decltype
+ Feature record: CXX_FEATURE:1cxx_decltype_auto
+ Feature record: CXX_FEATURE:1cxx_decltype_incomplete_return_types
+ Feature record: CXX_FEATURE:1cxx_default_function_template_args
+ Feature record: CXX_FEATURE:1cxx_defaulted_functions
+ Feature record: CXX_FEATURE:1cxx_defaulted_move_initializers
+ Feature record: CXX_FEATURE:1cxx_delegating_constructors
+ Feature record: CXX_FEATURE:1cxx_deleted_functions
+ Feature record: CXX_FEATURE:1cxx_digit_separators
+ Feature record: CXX_FEATURE:1cxx_enum_forward_declarations
+ Feature record: CXX_FEATURE:1cxx_explicit_conversions
+ Feature record: CXX_FEATURE:1cxx_extended_friend_declarations
+ Feature record: CXX_FEATURE:1cxx_extern_templates
+ Feature record: CXX_FEATURE:1cxx_final
+ Feature record: CXX_FEATURE:1cxx_func_identifier
+ Feature record: CXX_FEATURE:1cxx_generalized_initializers
+ Feature record: CXX_FEATURE:1cxx_generic_lambdas
+ Feature record: CXX_FEATURE:1cxx_inheriting_constructors
+ Feature record: CXX_FEATURE:1cxx_inline_namespaces
+ Feature record: CXX_FEATURE:1cxx_lambdas
+ Feature record: CXX_FEATURE:1cxx_lambda_init_captures
+ Feature record: CXX_FEATURE:1cxx_local_type_template_args
+ Feature record: CXX_FEATURE:1cxx_long_long_type
+ Feature record: CXX_FEATURE:1cxx_noexcept
+ Feature record: CXX_FEATURE:1cxx_nonstatic_member_init
+ Feature record: CXX_FEATURE:1cxx_nullptr
+ Feature record: CXX_FEATURE:1cxx_override
+ Feature record: CXX_FEATURE:1cxx_range_for
+ Feature record: CXX_FEATURE:1cxx_raw_string_literals
+ Feature record: CXX_FEATURE:1cxx_reference_qualified_functions
+ Feature record: CXX_FEATURE:1cxx_relaxed_constexpr
+ Feature record: CXX_FEATURE:1cxx_return_type_deduction
+ Feature record: CXX_FEATURE:1cxx_right_angle_brackets
+ Feature record: CXX_FEATURE:1cxx_rvalue_references
+ Feature record: CXX_FEATURE:1cxx_sizeof_member
+ Feature record: CXX_FEATURE:1cxx_static_assert
+ Feature record: CXX_FEATURE:1cxx_strong_enums
+ Feature record: CXX_FEATURE:1cxx_template_template_parameters
+ Feature record: CXX_FEATURE:1cxx_thread_local
+ Feature record: CXX_FEATURE:1cxx_trailing_return_types
+ Feature record: CXX_FEATURE:1cxx_unicode_literals
+ Feature record: CXX_FEATURE:1cxx_uniform_initialization
+ Feature record: CXX_FEATURE:1cxx_unrestricted_unions
+ Feature record: CXX_FEATURE:1cxx_user_literals
+ Feature record: CXX_FEATURE:1cxx_variable_templates
+ Feature record: CXX_FEATURE:1cxx_variadic_macros
+ Feature record: CXX_FEATURE:1cxx_variadic_templates
+
+
+Detecting CXX [-std=c++14] compiler features compiled with the following output:
+Change Dir: /Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/CMakeFiles/CMakeTmp
+
+Run Build Command(s):/usr/bin/make cmTC_b5512/fast
+/Library/Developer/CommandLineTools/usr/bin/make -f CMakeFiles/cmTC_b5512.dir/build.make CMakeFiles/cmTC_b5512.dir/build
+Building CXX object CMakeFiles/cmTC_b5512.dir/feature_tests.cxx.o
+/Library/Developer/CommandLineTools/usr/bin/c++ -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk -std=c++14 -o CMakeFiles/cmTC_b5512.dir/feature_tests.cxx.o -c /Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/CMakeFiles/feature_tests.cxx
+Linking CXX executable cmTC_b5512
+/Applications/CLion.app/Contents/bin/cmake/mac/bin/cmake -E cmake_link_script CMakeFiles/cmTC_b5512.dir/link.txt --verbose=1
+/Library/Developer/CommandLineTools/usr/bin/c++ -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk -Wl,-search_paths_first -Wl,-headerpad_max_install_names CMakeFiles/cmTC_b5512.dir/feature_tests.cxx.o -o cmTC_b5512
+
+
+ Feature record: CXX_FEATURE:1cxx_aggregate_default_initializers
+ Feature record: CXX_FEATURE:1cxx_alias_templates
+ Feature record: CXX_FEATURE:1cxx_alignas
+ Feature record: CXX_FEATURE:1cxx_alignof
+ Feature record: CXX_FEATURE:1cxx_attributes
+ Feature record: CXX_FEATURE:1cxx_attribute_deprecated
+ Feature record: CXX_FEATURE:1cxx_auto_type
+ Feature record: CXX_FEATURE:1cxx_binary_literals
+ Feature record: CXX_FEATURE:1cxx_constexpr
+ Feature record: CXX_FEATURE:1cxx_contextual_conversions
+ Feature record: CXX_FEATURE:1cxx_decltype
+ Feature record: CXX_FEATURE:1cxx_decltype_auto
+ Feature record: CXX_FEATURE:1cxx_decltype_incomplete_return_types
+ Feature record: CXX_FEATURE:1cxx_default_function_template_args
+ Feature record: CXX_FEATURE:1cxx_defaulted_functions
+ Feature record: CXX_FEATURE:1cxx_defaulted_move_initializers
+ Feature record: CXX_FEATURE:1cxx_delegating_constructors
+ Feature record: CXX_FEATURE:1cxx_deleted_functions
+ Feature record: CXX_FEATURE:1cxx_digit_separators
+ Feature record: CXX_FEATURE:1cxx_enum_forward_declarations
+ Feature record: CXX_FEATURE:1cxx_explicit_conversions
+ Feature record: CXX_FEATURE:1cxx_extended_friend_declarations
+ Feature record: CXX_FEATURE:1cxx_extern_templates
+ Feature record: CXX_FEATURE:1cxx_final
+ Feature record: CXX_FEATURE:1cxx_func_identifier
+ Feature record: CXX_FEATURE:1cxx_generalized_initializers
+ Feature record: CXX_FEATURE:1cxx_generic_lambdas
+ Feature record: CXX_FEATURE:1cxx_inheriting_constructors
+ Feature record: CXX_FEATURE:1cxx_inline_namespaces
+ Feature record: CXX_FEATURE:1cxx_lambdas
+ Feature record: CXX_FEATURE:1cxx_lambda_init_captures
+ Feature record: CXX_FEATURE:1cxx_local_type_template_args
+ Feature record: CXX_FEATURE:1cxx_long_long_type
+ Feature record: CXX_FEATURE:1cxx_noexcept
+ Feature record: CXX_FEATURE:1cxx_nonstatic_member_init
+ Feature record: CXX_FEATURE:1cxx_nullptr
+ Feature record: CXX_FEATURE:1cxx_override
+ Feature record: CXX_FEATURE:1cxx_range_for
+ Feature record: CXX_FEATURE:1cxx_raw_string_literals
+ Feature record: CXX_FEATURE:1cxx_reference_qualified_functions
+ Feature record: CXX_FEATURE:1cxx_relaxed_constexpr
+ Feature record: CXX_FEATURE:1cxx_return_type_deduction
+ Feature record: CXX_FEATURE:1cxx_right_angle_brackets
+ Feature record: CXX_FEATURE:1cxx_rvalue_references
+ Feature record: CXX_FEATURE:1cxx_sizeof_member
+ Feature record: CXX_FEATURE:1cxx_static_assert
+ Feature record: CXX_FEATURE:1cxx_strong_enums
+ Feature record: CXX_FEATURE:1cxx_template_template_parameters
+ Feature record: CXX_FEATURE:1cxx_thread_local
+ Feature record: CXX_FEATURE:1cxx_trailing_return_types
+ Feature record: CXX_FEATURE:1cxx_unicode_literals
+ Feature record: CXX_FEATURE:1cxx_uniform_initialization
+ Feature record: CXX_FEATURE:1cxx_unrestricted_unions
+ Feature record: CXX_FEATURE:1cxx_user_literals
+ Feature record: CXX_FEATURE:1cxx_variable_templates
+ Feature record: CXX_FEATURE:1cxx_variadic_macros
+ Feature record: CXX_FEATURE:1cxx_variadic_templates
+
+
+Detecting CXX [-std=c++11] compiler features compiled with the following output:
+Change Dir: /Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/CMakeFiles/CMakeTmp
+
+Run Build Command(s):/usr/bin/make cmTC_f28e2/fast
+/Library/Developer/CommandLineTools/usr/bin/make -f CMakeFiles/cmTC_f28e2.dir/build.make CMakeFiles/cmTC_f28e2.dir/build
+Building CXX object CMakeFiles/cmTC_f28e2.dir/feature_tests.cxx.o
+/Library/Developer/CommandLineTools/usr/bin/c++ -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk -std=c++11 -o CMakeFiles/cmTC_f28e2.dir/feature_tests.cxx.o -c /Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/CMakeFiles/feature_tests.cxx
+Linking CXX executable cmTC_f28e2
+/Applications/CLion.app/Contents/bin/cmake/mac/bin/cmake -E cmake_link_script CMakeFiles/cmTC_f28e2.dir/link.txt --verbose=1
+/Library/Developer/CommandLineTools/usr/bin/c++ -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk -Wl,-search_paths_first -Wl,-headerpad_max_install_names CMakeFiles/cmTC_f28e2.dir/feature_tests.cxx.o -o cmTC_f28e2
+
+
+ Feature record: CXX_FEATURE:0cxx_aggregate_default_initializers
+ Feature record: CXX_FEATURE:1cxx_alias_templates
+ Feature record: CXX_FEATURE:1cxx_alignas
+ Feature record: CXX_FEATURE:1cxx_alignof
+ Feature record: CXX_FEATURE:1cxx_attributes
+ Feature record: CXX_FEATURE:0cxx_attribute_deprecated
+ Feature record: CXX_FEATURE:1cxx_auto_type
+ Feature record: CXX_FEATURE:0cxx_binary_literals
+ Feature record: CXX_FEATURE:1cxx_constexpr
+ Feature record: CXX_FEATURE:0cxx_contextual_conversions
+ Feature record: CXX_FEATURE:1cxx_decltype
+ Feature record: CXX_FEATURE:0cxx_decltype_auto
+ Feature record: CXX_FEATURE:1cxx_decltype_incomplete_return_types
+ Feature record: CXX_FEATURE:1cxx_default_function_template_args
+ Feature record: CXX_FEATURE:1cxx_defaulted_functions
+ Feature record: CXX_FEATURE:1cxx_defaulted_move_initializers
+ Feature record: CXX_FEATURE:1cxx_delegating_constructors
+ Feature record: CXX_FEATURE:1cxx_deleted_functions
+ Feature record: CXX_FEATURE:0cxx_digit_separators
+ Feature record: CXX_FEATURE:1cxx_enum_forward_declarations
+ Feature record: CXX_FEATURE:1cxx_explicit_conversions
+ Feature record: CXX_FEATURE:1cxx_extended_friend_declarations
+ Feature record: CXX_FEATURE:1cxx_extern_templates
+ Feature record: CXX_FEATURE:1cxx_final
+ Feature record: CXX_FEATURE:1cxx_func_identifier
+ Feature record: CXX_FEATURE:1cxx_generalized_initializers
+ Feature record: CXX_FEATURE:0cxx_generic_lambdas
+ Feature record: CXX_FEATURE:1cxx_inheriting_constructors
+ Feature record: CXX_FEATURE:1cxx_inline_namespaces
+ Feature record: CXX_FEATURE:1cxx_lambdas
+ Feature record: CXX_FEATURE:0cxx_lambda_init_captures
+ Feature record: CXX_FEATURE:1cxx_local_type_template_args
+ Feature record: CXX_FEATURE:1cxx_long_long_type
+ Feature record: CXX_FEATURE:1cxx_noexcept
+ Feature record: CXX_FEATURE:1cxx_nonstatic_member_init
+ Feature record: CXX_FEATURE:1cxx_nullptr
+ Feature record: CXX_FEATURE:1cxx_override
+ Feature record: CXX_FEATURE:1cxx_range_for
+ Feature record: CXX_FEATURE:1cxx_raw_string_literals
+ Feature record: CXX_FEATURE:1cxx_reference_qualified_functions
+ Feature record: CXX_FEATURE:0cxx_relaxed_constexpr
+ Feature record: CXX_FEATURE:0cxx_return_type_deduction
+ Feature record: CXX_FEATURE:1cxx_right_angle_brackets
+ Feature record: CXX_FEATURE:1cxx_rvalue_references
+ Feature record: CXX_FEATURE:1cxx_sizeof_member
+ Feature record: CXX_FEATURE:1cxx_static_assert
+ Feature record: CXX_FEATURE:1cxx_strong_enums
+ Feature record: CXX_FEATURE:1cxx_template_template_parameters
+ Feature record: CXX_FEATURE:1cxx_thread_local
+ Feature record: CXX_FEATURE:1cxx_trailing_return_types
+ Feature record: CXX_FEATURE:1cxx_unicode_literals
+ Feature record: CXX_FEATURE:1cxx_uniform_initialization
+ Feature record: CXX_FEATURE:1cxx_unrestricted_unions
+ Feature record: CXX_FEATURE:1cxx_user_literals
+ Feature record: CXX_FEATURE:0cxx_variable_templates
+ Feature record: CXX_FEATURE:1cxx_variadic_macros
+ Feature record: CXX_FEATURE:1cxx_variadic_templates
+
+
+Detecting CXX [-std=c++98] compiler features compiled with the following output:
+Change Dir: /Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/CMakeFiles/CMakeTmp
+
+Run Build Command(s):/usr/bin/make cmTC_a4b09/fast
+/Library/Developer/CommandLineTools/usr/bin/make -f CMakeFiles/cmTC_a4b09.dir/build.make CMakeFiles/cmTC_a4b09.dir/build
+Building CXX object CMakeFiles/cmTC_a4b09.dir/feature_tests.cxx.o
+/Library/Developer/CommandLineTools/usr/bin/c++ -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk -std=c++98 -o CMakeFiles/cmTC_a4b09.dir/feature_tests.cxx.o -c /Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/CMakeFiles/feature_tests.cxx
+Linking CXX executable cmTC_a4b09
+/Applications/CLion.app/Contents/bin/cmake/mac/bin/cmake -E cmake_link_script CMakeFiles/cmTC_a4b09.dir/link.txt --verbose=1
+/Library/Developer/CommandLineTools/usr/bin/c++ -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk -Wl,-search_paths_first -Wl,-headerpad_max_install_names CMakeFiles/cmTC_a4b09.dir/feature_tests.cxx.o -o cmTC_a4b09
+
+
+ Feature record: CXX_FEATURE:0cxx_aggregate_default_initializers
+ Feature record: CXX_FEATURE:0cxx_alias_templates
+ Feature record: CXX_FEATURE:0cxx_alignas
+ Feature record: CXX_FEATURE:0cxx_alignof
+ Feature record: CXX_FEATURE:0cxx_attributes
+ Feature record: CXX_FEATURE:0cxx_attribute_deprecated
+ Feature record: CXX_FEATURE:0cxx_auto_type
+ Feature record: CXX_FEATURE:0cxx_binary_literals
+ Feature record: CXX_FEATURE:0cxx_constexpr
+ Feature record: CXX_FEATURE:0cxx_contextual_conversions
+ Feature record: CXX_FEATURE:0cxx_decltype
+ Feature record: CXX_FEATURE:0cxx_decltype_auto
+ Feature record: CXX_FEATURE:0cxx_decltype_incomplete_return_types
+ Feature record: CXX_FEATURE:0cxx_default_function_template_args
+ Feature record: CXX_FEATURE:0cxx_defaulted_functions
+ Feature record: CXX_FEATURE:0cxx_defaulted_move_initializers
+ Feature record: CXX_FEATURE:0cxx_delegating_constructors
+ Feature record: CXX_FEATURE:0cxx_deleted_functions
+ Feature record: CXX_FEATURE:0cxx_digit_separators
+ Feature record: CXX_FEATURE:0cxx_enum_forward_declarations
+ Feature record: CXX_FEATURE:0cxx_explicit_conversions
+ Feature record: CXX_FEATURE:0cxx_extended_friend_declarations
+ Feature record: CXX_FEATURE:0cxx_extern_templates
+ Feature record: CXX_FEATURE:0cxx_final
+ Feature record: CXX_FEATURE:0cxx_func_identifier
+ Feature record: CXX_FEATURE:0cxx_generalized_initializers
+ Feature record: CXX_FEATURE:0cxx_generic_lambdas
+ Feature record: CXX_FEATURE:0cxx_inheriting_constructors
+ Feature record: CXX_FEATURE:0cxx_inline_namespaces
+ Feature record: CXX_FEATURE:0cxx_lambdas
+ Feature record: CXX_FEATURE:0cxx_lambda_init_captures
+ Feature record: CXX_FEATURE:0cxx_local_type_template_args
+ Feature record: CXX_FEATURE:0cxx_long_long_type
+ Feature record: CXX_FEATURE:0cxx_noexcept
+ Feature record: CXX_FEATURE:0cxx_nonstatic_member_init
+ Feature record: CXX_FEATURE:0cxx_nullptr
+ Feature record: CXX_FEATURE:0cxx_override
+ Feature record: CXX_FEATURE:0cxx_range_for
+ Feature record: CXX_FEATURE:0cxx_raw_string_literals
+ Feature record: CXX_FEATURE:0cxx_reference_qualified_functions
+ Feature record: CXX_FEATURE:0cxx_relaxed_constexpr
+ Feature record: CXX_FEATURE:0cxx_return_type_deduction
+ Feature record: CXX_FEATURE:0cxx_right_angle_brackets
+ Feature record: CXX_FEATURE:0cxx_rvalue_references
+ Feature record: CXX_FEATURE:0cxx_sizeof_member
+ Feature record: CXX_FEATURE:0cxx_static_assert
+ Feature record: CXX_FEATURE:0cxx_strong_enums
+ Feature record: CXX_FEATURE:1cxx_template_template_parameters
+ Feature record: CXX_FEATURE:0cxx_thread_local
+ Feature record: CXX_FEATURE:0cxx_trailing_return_types
+ Feature record: CXX_FEATURE:0cxx_unicode_literals
+ Feature record: CXX_FEATURE:0cxx_uniform_initialization
+ Feature record: CXX_FEATURE:0cxx_unrestricted_unions
+ Feature record: CXX_FEATURE:0cxx_user_literals
+ Feature record: CXX_FEATURE:0cxx_variable_templates
+ Feature record: CXX_FEATURE:0cxx_variadic_macros
+ Feature record: CXX_FEATURE:0cxx_variadic_templates
diff --git a/Hw6/cmake-build-debug/CMakeFiles/CMakeRuleHashes.txt b/Hw6/cmake-build-debug/CMakeFiles/CMakeRuleHashes.txt
new file mode 100644
index 0000000..556622f
--- /dev/null
+++ b/Hw6/cmake-build-debug/CMakeFiles/CMakeRuleHashes.txt
@@ -0,0 +1,2 @@
+# Hashes of file build rules.
+5d0f61531e7b65bc3a166be8f46d91de CMakeFiles/ClangFormat
diff --git a/Hw6/cmake-build-debug/CMakeFiles/ClangFormat.dir/DependInfo.cmake b/Hw6/cmake-build-debug/CMakeFiles/ClangFormat.dir/DependInfo.cmake
new file mode 100644
index 0000000..19fab21
--- /dev/null
+++ b/Hw6/cmake-build-debug/CMakeFiles/ClangFormat.dir/DependInfo.cmake
@@ -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 "")
diff --git a/Hw6/cmake-build-debug/CMakeFiles/ClangFormat.dir/build.make b/Hw6/cmake-build-debug/CMakeFiles/ClangFormat.dir/build.make
new file mode 100644
index 0000000..fa0d1ce
--- /dev/null
+++ b/Hw6/cmake-build-debug/CMakeFiles/ClangFormat.dir/build.make
@@ -0,0 +1,76 @@
+# CMAKE generated file: DO NOT EDIT!
+# Generated by "Unix 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.
+
+# The shell in which to execute make rules.
+SHELL = /bin/sh
+
+# The CMake executable.
+CMAKE_COMMAND = /Applications/CLion.app/Contents/bin/cmake/mac/bin/cmake
+
+# The command to remove a file.
+RM = /Applications/CLion.app/Contents/bin/cmake/mac/bin/cmake -E remove -f
+
+# Escaping for special characters.
+EQUALS = =
+
+# The top-level source directory on which CMake was run.
+CMAKE_SOURCE_DIR = /Users/bradybodily/Repositories/CS3460/Hw6
+
+# The top-level build directory on which CMake was run.
+CMAKE_BINARY_DIR = /Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug
+
+# Utility rule file for ClangFormat.
+
+# Include the progress variables for this target.
+include CMakeFiles/ClangFormat.dir/progress.make
+
+CMakeFiles/ClangFormat:
+ /usr/local/bin/clang-format -i -style=file /Users/bradybodily/Repositories/CS3460/Hw6/Pattern.hpp /Users/bradybodily/Repositories/CS3460/Hw6/PatternAcorn.hpp /Users/bradybodily/Repositories/CS3460/Hw6/PatternBlinker.hpp /Users/bradybodily/Repositories/CS3460/Hw6/PatternBlock.hpp /Users/bradybodily/Repositories/CS3460/Hw6/PatternGlider.hpp /Users/bradybodily/Repositories/CS3460/Hw6/PatternGosperGliderGun.hpp /Users/bradybodily/Repositories/CS3460/Hw6/LifeSimulator.hpp /Users/bradybodily/Repositories/CS3460/Hw6/Renderer.hpp /Users/bradybodily/Repositories/CS3460/Hw6/RendererConsole.hpp /Users/bradybodily/Repositories/CS3460/Hw6/rlutil.h /Users/bradybodily/Repositories/CS3460/Hw6/PatternAcorn.cpp /Users/bradybodily/Repositories/CS3460/Hw6/PatternBlinker.cpp /Users/bradybodily/Repositories/CS3460/Hw6/PatternBlock.cpp /Users/bradybodily/Repositories/CS3460/Hw6/PatternGlider.cpp /Users/bradybodily/Repositories/CS3460/Hw6/PatternGosperGliderGun.cpp /Users/bradybodily/Repositories/CS3460/Hw6/LifeSimulator.cpp /Users/bradybodily/Repositories/CS3460/Hw6/RendererConsole.cpp /Users/bradybodily/Repositories/CS3460/Hw6/main.cpp
+
+ClangFormat: CMakeFiles/ClangFormat
+ClangFormat: CMakeFiles/ClangFormat.dir/build.make
+
+.PHONY : ClangFormat
+
+# Rule to build all files generated by this target.
+CMakeFiles/ClangFormat.dir/build: ClangFormat
+
+.PHONY : CMakeFiles/ClangFormat.dir/build
+
+CMakeFiles/ClangFormat.dir/clean:
+ $(CMAKE_COMMAND) -P CMakeFiles/ClangFormat.dir/cmake_clean.cmake
+.PHONY : CMakeFiles/ClangFormat.dir/clean
+
+CMakeFiles/ClangFormat.dir/depend:
+ cd /Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/bradybodily/Repositories/CS3460/Hw6 /Users/bradybodily/Repositories/CS3460/Hw6 /Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug /Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug /Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/CMakeFiles/ClangFormat.dir/DependInfo.cmake --color=$(COLOR)
+.PHONY : CMakeFiles/ClangFormat.dir/depend
+
diff --git a/Hw6/cmake-build-debug/CMakeFiles/ClangFormat.dir/cmake_clean.cmake b/Hw6/cmake-build-debug/CMakeFiles/ClangFormat.dir/cmake_clean.cmake
new file mode 100644
index 0000000..09ed027
--- /dev/null
+++ b/Hw6/cmake-build-debug/CMakeFiles/ClangFormat.dir/cmake_clean.cmake
@@ -0,0 +1,8 @@
+file(REMOVE_RECURSE
+ "CMakeFiles/ClangFormat"
+)
+
+# Per-language clean rules from dependency scanning.
+foreach(lang )
+ include(CMakeFiles/ClangFormat.dir/cmake_clean_${lang}.cmake OPTIONAL)
+endforeach()
diff --git a/Hw6/cmake-build-debug/CMakeFiles/ClangFormat.dir/depend.internal b/Hw6/cmake-build-debug/CMakeFiles/ClangFormat.dir/depend.internal
new file mode 100644
index 0000000..3285e6b
--- /dev/null
+++ b/Hw6/cmake-build-debug/CMakeFiles/ClangFormat.dir/depend.internal
@@ -0,0 +1,3 @@
+# CMAKE generated file: DO NOT EDIT!
+# Generated by "Unix Makefiles" Generator, CMake Version 3.14
+
diff --git a/Hw6/cmake-build-debug/CMakeFiles/ClangFormat.dir/depend.make b/Hw6/cmake-build-debug/CMakeFiles/ClangFormat.dir/depend.make
new file mode 100644
index 0000000..3285e6b
--- /dev/null
+++ b/Hw6/cmake-build-debug/CMakeFiles/ClangFormat.dir/depend.make
@@ -0,0 +1,3 @@
+# CMAKE generated file: DO NOT EDIT!
+# Generated by "Unix Makefiles" Generator, CMake Version 3.14
+
diff --git a/Hw6/cmake-build-debug/CMakeFiles/ClangFormat.dir/progress.make b/Hw6/cmake-build-debug/CMakeFiles/ClangFormat.dir/progress.make
new file mode 100644
index 0000000..8b13789
--- /dev/null
+++ b/Hw6/cmake-build-debug/CMakeFiles/ClangFormat.dir/progress.make
@@ -0,0 +1 @@
+
diff --git a/Hw6/cmake-build-debug/CMakeFiles/ConwaysLife.dir/CXX.includecache b/Hw6/cmake-build-debug/CMakeFiles/ConwaysLife.dir/CXX.includecache
index 92f24c3..2686d45 100644
--- a/Hw6/cmake-build-debug/CMakeFiles/ConwaysLife.dir/CXX.includecache
+++ b/Hw6/cmake-build-debug/CMakeFiles/ConwaysLife.dir/CXX.includecache
@@ -6,17 +6,125 @@
#IncludeRegexTransform:
-/Users/brady/CLionProjects/CS3460-CPP/Hw6/Pattern.hpp
-cstdint
--
+/Users/bradybodily/Repositories/CS3460/Hw6/LifeSimulator.cpp
+LifeSimulator.hpp
+/Users/bradybodily/Repositories/CS3460/Hw6/LifeSimulator.hpp
-/Users/brady/CLionProjects/CS3460-CPP/Hw6/PatternGlider.cpp
-PatternGlider.hpp
-/Users/brady/CLionProjects/CS3460-CPP/Hw6/PatternGlider.hpp
+/Users/bradybodily/Repositories/CS3460/Hw6/LifeSimulator.hpp
+Pattern.hpp
+/Users/bradybodily/Repositories/CS3460/Hw6/Pattern.hpp
-/Users/brady/CLionProjects/CS3460-CPP/Hw6/PatternGlider.hpp
+/Users/bradybodily/Repositories/CS3460/Hw6/Pattern.hpp
+rlutil.h
+/Users/bradybodily/Repositories/CS3460/Hw6/rlutil.h
array
-
-Pattern.hpp
-/Users/brady/CLionProjects/CS3460-CPP/Hw6/Pattern.hpp
+cstdint
+-
+iostream
+-
+vector
+-
+
+/Users/bradybodily/Repositories/CS3460/Hw6/PatternAcorn.cpp
+PatternAcorn.hpp
+/Users/bradybodily/Repositories/CS3460/Hw6/PatternAcorn.hpp
+
+/Users/bradybodily/Repositories/CS3460/Hw6/PatternAcorn.hpp
+Pattern.hpp
+/Users/bradybodily/Repositories/CS3460/Hw6/Pattern.hpp
+
+/Users/bradybodily/Repositories/CS3460/Hw6/PatternBlinker.cpp
+PatternBlinker.hpp
+/Users/bradybodily/Repositories/CS3460/Hw6/PatternBlinker.hpp
+
+/Users/bradybodily/Repositories/CS3460/Hw6/PatternBlinker.hpp
+Pattern.hpp
+/Users/bradybodily/Repositories/CS3460/Hw6/Pattern.hpp
+
+/Users/bradybodily/Repositories/CS3460/Hw6/PatternBlock.cpp
+PatternBlock.hpp
+/Users/bradybodily/Repositories/CS3460/Hw6/PatternBlock.hpp
+
+/Users/bradybodily/Repositories/CS3460/Hw6/PatternBlock.hpp
+Pattern.hpp
+/Users/bradybodily/Repositories/CS3460/Hw6/Pattern.hpp
+
+/Users/bradybodily/Repositories/CS3460/Hw6/PatternGlider.cpp
+PatternGlider.hpp
+/Users/bradybodily/Repositories/CS3460/Hw6/PatternGlider.hpp
+
+/Users/bradybodily/Repositories/CS3460/Hw6/PatternGlider.hpp
+Pattern.hpp
+/Users/bradybodily/Repositories/CS3460/Hw6/Pattern.hpp
+array
+-
+
+/Users/bradybodily/Repositories/CS3460/Hw6/PatternGosperGliderGun.cpp
+PatternGosperGliderGun.hpp
+/Users/bradybodily/Repositories/CS3460/Hw6/PatternGosperGliderGun.hpp
+
+/Users/bradybodily/Repositories/CS3460/Hw6/PatternGosperGliderGun.hpp
+Pattern.hpp
+/Users/bradybodily/Repositories/CS3460/Hw6/Pattern.hpp
+
+/Users/bradybodily/Repositories/CS3460/Hw6/Renderer.hpp
+LifeSimulator.hpp
+/Users/bradybodily/Repositories/CS3460/Hw6/LifeSimulator.hpp
+
+/Users/bradybodily/Repositories/CS3460/Hw6/RendererConsole.cpp
+RendererConsole.hpp
+/Users/bradybodily/Repositories/CS3460/Hw6/RendererConsole.hpp
+
+/Users/bradybodily/Repositories/CS3460/Hw6/RendererConsole.hpp
+Renderer.hpp
+/Users/bradybodily/Repositories/CS3460/Hw6/Renderer.hpp
+rlutil.h
+/Users/bradybodily/Repositories/CS3460/Hw6/rlutil.h
+
+/Users/bradybodily/Repositories/CS3460/Hw6/main.cpp
+LifeSimulator.hpp
+/Users/bradybodily/Repositories/CS3460/Hw6/LifeSimulator.hpp
+PatternAcorn.hpp
+/Users/bradybodily/Repositories/CS3460/Hw6/PatternAcorn.hpp
+PatternBlinker.hpp
+/Users/bradybodily/Repositories/CS3460/Hw6/PatternBlinker.hpp
+PatternBlock.hpp
+/Users/bradybodily/Repositories/CS3460/Hw6/PatternBlock.hpp
+PatternGlider.hpp
+/Users/bradybodily/Repositories/CS3460/Hw6/PatternGlider.hpp
+PatternGosperGliderGun.hpp
+/Users/bradybodily/Repositories/CS3460/Hw6/PatternGosperGliderGun.hpp
+RendererConsole.hpp
+/Users/bradybodily/Repositories/CS3460/Hw6/RendererConsole.hpp
+iostream
+-
+thread
+-
+
+/Users/bradybodily/Repositories/CS3460/Hw6/rlutil.h
+cstdio
+-
+iostream
+-
+string
+-
+stdio.h
+-
+string.h
+-
+windows.h
+-
+conio.h
+-
+sys/ioctl.h
+-
+sys/time.h
+-
+sys/types.h
+-
+termios.h
+-
+unistd.h
+-
diff --git a/Hw6/cmake-build-debug/CMakeFiles/ConwaysLife.dir/DependInfo.cmake b/Hw6/cmake-build-debug/CMakeFiles/ConwaysLife.dir/DependInfo.cmake
index 543ab80..eda0702 100644
--- a/Hw6/cmake-build-debug/CMakeFiles/ConwaysLife.dir/DependInfo.cmake
+++ b/Hw6/cmake-build-debug/CMakeFiles/ConwaysLife.dir/DependInfo.cmake
@@ -4,14 +4,14 @@ set(CMAKE_DEPENDS_LANGUAGES
)
# The set of files for implicit dependencies of each language:
set(CMAKE_DEPENDS_CHECK_CXX
- "/Users/brady/CLionProjects/CS3460-CPP/Hw6/LifeSimulator.cpp" "/Users/brady/CLionProjects/CS3460-CPP/Hw6/cmake-build-debug/CMakeFiles/ConwaysLife.dir/LifeSimulator.cpp.o"
- "/Users/brady/CLionProjects/CS3460-CPP/Hw6/PatternAcorn.cpp" "/Users/brady/CLionProjects/CS3460-CPP/Hw6/cmake-build-debug/CMakeFiles/ConwaysLife.dir/PatternAcorn.cpp.o"
- "/Users/brady/CLionProjects/CS3460-CPP/Hw6/PatternBlinker.cpp" "/Users/brady/CLionProjects/CS3460-CPP/Hw6/cmake-build-debug/CMakeFiles/ConwaysLife.dir/PatternBlinker.cpp.o"
- "/Users/brady/CLionProjects/CS3460-CPP/Hw6/PatternBlock.cpp" "/Users/brady/CLionProjects/CS3460-CPP/Hw6/cmake-build-debug/CMakeFiles/ConwaysLife.dir/PatternBlock.cpp.o"
- "/Users/brady/CLionProjects/CS3460-CPP/Hw6/PatternGlider.cpp" "/Users/brady/CLionProjects/CS3460-CPP/Hw6/cmake-build-debug/CMakeFiles/ConwaysLife.dir/PatternGlider.cpp.o"
- "/Users/brady/CLionProjects/CS3460-CPP/Hw6/PatternGosperGliderGun.cpp" "/Users/brady/CLionProjects/CS3460-CPP/Hw6/cmake-build-debug/CMakeFiles/ConwaysLife.dir/PatternGosperGliderGun.cpp.o"
- "/Users/brady/CLionProjects/CS3460-CPP/Hw6/RendererConsole.cpp" "/Users/brady/CLionProjects/CS3460-CPP/Hw6/cmake-build-debug/CMakeFiles/ConwaysLife.dir/RendererConsole.cpp.o"
- "/Users/brady/CLionProjects/CS3460-CPP/Hw6/main.cpp" "/Users/brady/CLionProjects/CS3460-CPP/Hw6/cmake-build-debug/CMakeFiles/ConwaysLife.dir/main.cpp.o"
+ "/Users/bradybodily/Repositories/CS3460/Hw6/LifeSimulator.cpp" "/Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/CMakeFiles/ConwaysLife.dir/LifeSimulator.cpp.o"
+ "/Users/bradybodily/Repositories/CS3460/Hw6/PatternAcorn.cpp" "/Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/CMakeFiles/ConwaysLife.dir/PatternAcorn.cpp.o"
+ "/Users/bradybodily/Repositories/CS3460/Hw6/PatternBlinker.cpp" "/Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/CMakeFiles/ConwaysLife.dir/PatternBlinker.cpp.o"
+ "/Users/bradybodily/Repositories/CS3460/Hw6/PatternBlock.cpp" "/Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/CMakeFiles/ConwaysLife.dir/PatternBlock.cpp.o"
+ "/Users/bradybodily/Repositories/CS3460/Hw6/PatternGlider.cpp" "/Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/CMakeFiles/ConwaysLife.dir/PatternGlider.cpp.o"
+ "/Users/bradybodily/Repositories/CS3460/Hw6/PatternGosperGliderGun.cpp" "/Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/CMakeFiles/ConwaysLife.dir/PatternGosperGliderGun.cpp.o"
+ "/Users/bradybodily/Repositories/CS3460/Hw6/RendererConsole.cpp" "/Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/CMakeFiles/ConwaysLife.dir/RendererConsole.cpp.o"
+ "/Users/bradybodily/Repositories/CS3460/Hw6/main.cpp" "/Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/CMakeFiles/ConwaysLife.dir/main.cpp.o"
)
set(CMAKE_CXX_COMPILER_ID "AppleClang")
diff --git a/Hw6/cmake-build-debug/CMakeFiles/ConwaysLife.dir/LifeSimulator.cpp.o b/Hw6/cmake-build-debug/CMakeFiles/ConwaysLife.dir/LifeSimulator.cpp.o
index b648750..f653f85 100644
Binary files a/Hw6/cmake-build-debug/CMakeFiles/ConwaysLife.dir/LifeSimulator.cpp.o and b/Hw6/cmake-build-debug/CMakeFiles/ConwaysLife.dir/LifeSimulator.cpp.o differ
diff --git a/Hw6/cmake-build-debug/CMakeFiles/ConwaysLife.dir/PatternAcorn.cpp.o b/Hw6/cmake-build-debug/CMakeFiles/ConwaysLife.dir/PatternAcorn.cpp.o
index b648750..f421087 100644
Binary files a/Hw6/cmake-build-debug/CMakeFiles/ConwaysLife.dir/PatternAcorn.cpp.o and b/Hw6/cmake-build-debug/CMakeFiles/ConwaysLife.dir/PatternAcorn.cpp.o differ
diff --git a/Hw6/cmake-build-debug/CMakeFiles/ConwaysLife.dir/PatternBlinker.cpp.o b/Hw6/cmake-build-debug/CMakeFiles/ConwaysLife.dir/PatternBlinker.cpp.o
index b648750..163c89b 100644
Binary files a/Hw6/cmake-build-debug/CMakeFiles/ConwaysLife.dir/PatternBlinker.cpp.o and b/Hw6/cmake-build-debug/CMakeFiles/ConwaysLife.dir/PatternBlinker.cpp.o differ
diff --git a/Hw6/cmake-build-debug/CMakeFiles/ConwaysLife.dir/PatternBlock.cpp.o b/Hw6/cmake-build-debug/CMakeFiles/ConwaysLife.dir/PatternBlock.cpp.o
index b648750..c2f19ba 100644
Binary files a/Hw6/cmake-build-debug/CMakeFiles/ConwaysLife.dir/PatternBlock.cpp.o and b/Hw6/cmake-build-debug/CMakeFiles/ConwaysLife.dir/PatternBlock.cpp.o differ
diff --git a/Hw6/cmake-build-debug/CMakeFiles/ConwaysLife.dir/PatternGlider.cpp.o b/Hw6/cmake-build-debug/CMakeFiles/ConwaysLife.dir/PatternGlider.cpp.o
index 31afda0..74cc668 100644
Binary files a/Hw6/cmake-build-debug/CMakeFiles/ConwaysLife.dir/PatternGlider.cpp.o and b/Hw6/cmake-build-debug/CMakeFiles/ConwaysLife.dir/PatternGlider.cpp.o differ
diff --git a/Hw6/cmake-build-debug/CMakeFiles/ConwaysLife.dir/PatternGosperGliderGun.cpp.o b/Hw6/cmake-build-debug/CMakeFiles/ConwaysLife.dir/PatternGosperGliderGun.cpp.o
index b648750..42d3427 100644
Binary files a/Hw6/cmake-build-debug/CMakeFiles/ConwaysLife.dir/PatternGosperGliderGun.cpp.o and b/Hw6/cmake-build-debug/CMakeFiles/ConwaysLife.dir/PatternGosperGliderGun.cpp.o differ
diff --git a/Hw6/cmake-build-debug/CMakeFiles/ConwaysLife.dir/RendererConsole.cpp.o b/Hw6/cmake-build-debug/CMakeFiles/ConwaysLife.dir/RendererConsole.cpp.o
index b648750..2d36b8f 100644
Binary files a/Hw6/cmake-build-debug/CMakeFiles/ConwaysLife.dir/RendererConsole.cpp.o and b/Hw6/cmake-build-debug/CMakeFiles/ConwaysLife.dir/RendererConsole.cpp.o differ
diff --git a/Hw6/cmake-build-debug/CMakeFiles/ConwaysLife.dir/build.make b/Hw6/cmake-build-debug/CMakeFiles/ConwaysLife.dir/build.make
index b67b348..3403182 100644
--- a/Hw6/cmake-build-debug/CMakeFiles/ConwaysLife.dir/build.make
+++ b/Hw6/cmake-build-debug/CMakeFiles/ConwaysLife.dir/build.make
@@ -1,5 +1,5 @@
# CMAKE generated file: DO NOT EDIT!
-# Generated by "Unix Makefiles" Generator, CMake Version 3.15
+# Generated by "Unix Makefiles" Generator, CMake Version 3.14
# Delete rule output on recipe failure.
.DELETE_ON_ERROR:
@@ -43,10 +43,10 @@ RM = /Applications/CLion.app/Contents/bin/cmake/mac/bin/cmake -E remove -f
EQUALS = =
# The top-level source directory on which CMake was run.
-CMAKE_SOURCE_DIR = /Users/brady/CLionProjects/CS3460-CPP/Hw6
+CMAKE_SOURCE_DIR = /Users/bradybodily/Repositories/CS3460/Hw6
# The top-level build directory on which CMake was run.
-CMAKE_BINARY_DIR = /Users/brady/CLionProjects/CS3460-CPP/Hw6/cmake-build-debug
+CMAKE_BINARY_DIR = /Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug
# Include any dependencies generated for this target.
include CMakeFiles/ConwaysLife.dir/depend.make
@@ -59,107 +59,107 @@ include CMakeFiles/ConwaysLife.dir/flags.make
CMakeFiles/ConwaysLife.dir/PatternAcorn.cpp.o: CMakeFiles/ConwaysLife.dir/flags.make
CMakeFiles/ConwaysLife.dir/PatternAcorn.cpp.o: ../PatternAcorn.cpp
- @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/Users/brady/CLionProjects/CS3460-CPP/Hw6/cmake-build-debug/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object CMakeFiles/ConwaysLife.dir/PatternAcorn.cpp.o"
- /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -o CMakeFiles/ConwaysLife.dir/PatternAcorn.cpp.o -c /Users/brady/CLionProjects/CS3460-CPP/Hw6/PatternAcorn.cpp
+ @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object CMakeFiles/ConwaysLife.dir/PatternAcorn.cpp.o"
+ /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -o CMakeFiles/ConwaysLife.dir/PatternAcorn.cpp.o -c /Users/bradybodily/Repositories/CS3460/Hw6/PatternAcorn.cpp
CMakeFiles/ConwaysLife.dir/PatternAcorn.cpp.i: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/ConwaysLife.dir/PatternAcorn.cpp.i"
- /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/brady/CLionProjects/CS3460-CPP/Hw6/PatternAcorn.cpp > CMakeFiles/ConwaysLife.dir/PatternAcorn.cpp.i
+ /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/bradybodily/Repositories/CS3460/Hw6/PatternAcorn.cpp > CMakeFiles/ConwaysLife.dir/PatternAcorn.cpp.i
CMakeFiles/ConwaysLife.dir/PatternAcorn.cpp.s: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/ConwaysLife.dir/PatternAcorn.cpp.s"
- /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/brady/CLionProjects/CS3460-CPP/Hw6/PatternAcorn.cpp -o CMakeFiles/ConwaysLife.dir/PatternAcorn.cpp.s
+ /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/bradybodily/Repositories/CS3460/Hw6/PatternAcorn.cpp -o CMakeFiles/ConwaysLife.dir/PatternAcorn.cpp.s
CMakeFiles/ConwaysLife.dir/PatternBlinker.cpp.o: CMakeFiles/ConwaysLife.dir/flags.make
CMakeFiles/ConwaysLife.dir/PatternBlinker.cpp.o: ../PatternBlinker.cpp
- @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/Users/brady/CLionProjects/CS3460-CPP/Hw6/cmake-build-debug/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building CXX object CMakeFiles/ConwaysLife.dir/PatternBlinker.cpp.o"
- /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -o CMakeFiles/ConwaysLife.dir/PatternBlinker.cpp.o -c /Users/brady/CLionProjects/CS3460-CPP/Hw6/PatternBlinker.cpp
+ @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building CXX object CMakeFiles/ConwaysLife.dir/PatternBlinker.cpp.o"
+ /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -o CMakeFiles/ConwaysLife.dir/PatternBlinker.cpp.o -c /Users/bradybodily/Repositories/CS3460/Hw6/PatternBlinker.cpp
CMakeFiles/ConwaysLife.dir/PatternBlinker.cpp.i: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/ConwaysLife.dir/PatternBlinker.cpp.i"
- /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/brady/CLionProjects/CS3460-CPP/Hw6/PatternBlinker.cpp > CMakeFiles/ConwaysLife.dir/PatternBlinker.cpp.i
+ /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/bradybodily/Repositories/CS3460/Hw6/PatternBlinker.cpp > CMakeFiles/ConwaysLife.dir/PatternBlinker.cpp.i
CMakeFiles/ConwaysLife.dir/PatternBlinker.cpp.s: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/ConwaysLife.dir/PatternBlinker.cpp.s"
- /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/brady/CLionProjects/CS3460-CPP/Hw6/PatternBlinker.cpp -o CMakeFiles/ConwaysLife.dir/PatternBlinker.cpp.s
+ /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/bradybodily/Repositories/CS3460/Hw6/PatternBlinker.cpp -o CMakeFiles/ConwaysLife.dir/PatternBlinker.cpp.s
CMakeFiles/ConwaysLife.dir/PatternBlock.cpp.o: CMakeFiles/ConwaysLife.dir/flags.make
CMakeFiles/ConwaysLife.dir/PatternBlock.cpp.o: ../PatternBlock.cpp
- @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/Users/brady/CLionProjects/CS3460-CPP/Hw6/cmake-build-debug/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Building CXX object CMakeFiles/ConwaysLife.dir/PatternBlock.cpp.o"
- /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -o CMakeFiles/ConwaysLife.dir/PatternBlock.cpp.o -c /Users/brady/CLionProjects/CS3460-CPP/Hw6/PatternBlock.cpp
+ @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Building CXX object CMakeFiles/ConwaysLife.dir/PatternBlock.cpp.o"
+ /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -o CMakeFiles/ConwaysLife.dir/PatternBlock.cpp.o -c /Users/bradybodily/Repositories/CS3460/Hw6/PatternBlock.cpp
CMakeFiles/ConwaysLife.dir/PatternBlock.cpp.i: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/ConwaysLife.dir/PatternBlock.cpp.i"
- /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/brady/CLionProjects/CS3460-CPP/Hw6/PatternBlock.cpp > CMakeFiles/ConwaysLife.dir/PatternBlock.cpp.i
+ /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/bradybodily/Repositories/CS3460/Hw6/PatternBlock.cpp > CMakeFiles/ConwaysLife.dir/PatternBlock.cpp.i
CMakeFiles/ConwaysLife.dir/PatternBlock.cpp.s: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/ConwaysLife.dir/PatternBlock.cpp.s"
- /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/brady/CLionProjects/CS3460-CPP/Hw6/PatternBlock.cpp -o CMakeFiles/ConwaysLife.dir/PatternBlock.cpp.s
+ /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/bradybodily/Repositories/CS3460/Hw6/PatternBlock.cpp -o CMakeFiles/ConwaysLife.dir/PatternBlock.cpp.s
CMakeFiles/ConwaysLife.dir/PatternGlider.cpp.o: CMakeFiles/ConwaysLife.dir/flags.make
CMakeFiles/ConwaysLife.dir/PatternGlider.cpp.o: ../PatternGlider.cpp
- @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/Users/brady/CLionProjects/CS3460-CPP/Hw6/cmake-build-debug/CMakeFiles --progress-num=$(CMAKE_PROGRESS_4) "Building CXX object CMakeFiles/ConwaysLife.dir/PatternGlider.cpp.o"
- /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -o CMakeFiles/ConwaysLife.dir/PatternGlider.cpp.o -c /Users/brady/CLionProjects/CS3460-CPP/Hw6/PatternGlider.cpp
+ @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/CMakeFiles --progress-num=$(CMAKE_PROGRESS_4) "Building CXX object CMakeFiles/ConwaysLife.dir/PatternGlider.cpp.o"
+ /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -o CMakeFiles/ConwaysLife.dir/PatternGlider.cpp.o -c /Users/bradybodily/Repositories/CS3460/Hw6/PatternGlider.cpp
CMakeFiles/ConwaysLife.dir/PatternGlider.cpp.i: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/ConwaysLife.dir/PatternGlider.cpp.i"
- /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/brady/CLionProjects/CS3460-CPP/Hw6/PatternGlider.cpp > CMakeFiles/ConwaysLife.dir/PatternGlider.cpp.i
+ /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/bradybodily/Repositories/CS3460/Hw6/PatternGlider.cpp > CMakeFiles/ConwaysLife.dir/PatternGlider.cpp.i
CMakeFiles/ConwaysLife.dir/PatternGlider.cpp.s: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/ConwaysLife.dir/PatternGlider.cpp.s"
- /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/brady/CLionProjects/CS3460-CPP/Hw6/PatternGlider.cpp -o CMakeFiles/ConwaysLife.dir/PatternGlider.cpp.s
+ /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/bradybodily/Repositories/CS3460/Hw6/PatternGlider.cpp -o CMakeFiles/ConwaysLife.dir/PatternGlider.cpp.s
CMakeFiles/ConwaysLife.dir/PatternGosperGliderGun.cpp.o: CMakeFiles/ConwaysLife.dir/flags.make
CMakeFiles/ConwaysLife.dir/PatternGosperGliderGun.cpp.o: ../PatternGosperGliderGun.cpp
- @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/Users/brady/CLionProjects/CS3460-CPP/Hw6/cmake-build-debug/CMakeFiles --progress-num=$(CMAKE_PROGRESS_5) "Building CXX object CMakeFiles/ConwaysLife.dir/PatternGosperGliderGun.cpp.o"
- /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -o CMakeFiles/ConwaysLife.dir/PatternGosperGliderGun.cpp.o -c /Users/brady/CLionProjects/CS3460-CPP/Hw6/PatternGosperGliderGun.cpp
+ @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/CMakeFiles --progress-num=$(CMAKE_PROGRESS_5) "Building CXX object CMakeFiles/ConwaysLife.dir/PatternGosperGliderGun.cpp.o"
+ /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -o CMakeFiles/ConwaysLife.dir/PatternGosperGliderGun.cpp.o -c /Users/bradybodily/Repositories/CS3460/Hw6/PatternGosperGliderGun.cpp
CMakeFiles/ConwaysLife.dir/PatternGosperGliderGun.cpp.i: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/ConwaysLife.dir/PatternGosperGliderGun.cpp.i"
- /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/brady/CLionProjects/CS3460-CPP/Hw6/PatternGosperGliderGun.cpp > CMakeFiles/ConwaysLife.dir/PatternGosperGliderGun.cpp.i
+ /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/bradybodily/Repositories/CS3460/Hw6/PatternGosperGliderGun.cpp > CMakeFiles/ConwaysLife.dir/PatternGosperGliderGun.cpp.i
CMakeFiles/ConwaysLife.dir/PatternGosperGliderGun.cpp.s: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/ConwaysLife.dir/PatternGosperGliderGun.cpp.s"
- /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/brady/CLionProjects/CS3460-CPP/Hw6/PatternGosperGliderGun.cpp -o CMakeFiles/ConwaysLife.dir/PatternGosperGliderGun.cpp.s
+ /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/bradybodily/Repositories/CS3460/Hw6/PatternGosperGliderGun.cpp -o CMakeFiles/ConwaysLife.dir/PatternGosperGliderGun.cpp.s
CMakeFiles/ConwaysLife.dir/LifeSimulator.cpp.o: CMakeFiles/ConwaysLife.dir/flags.make
CMakeFiles/ConwaysLife.dir/LifeSimulator.cpp.o: ../LifeSimulator.cpp
- @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/Users/brady/CLionProjects/CS3460-CPP/Hw6/cmake-build-debug/CMakeFiles --progress-num=$(CMAKE_PROGRESS_6) "Building CXX object CMakeFiles/ConwaysLife.dir/LifeSimulator.cpp.o"
- /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -o CMakeFiles/ConwaysLife.dir/LifeSimulator.cpp.o -c /Users/brady/CLionProjects/CS3460-CPP/Hw6/LifeSimulator.cpp
+ @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/CMakeFiles --progress-num=$(CMAKE_PROGRESS_6) "Building CXX object CMakeFiles/ConwaysLife.dir/LifeSimulator.cpp.o"
+ /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -o CMakeFiles/ConwaysLife.dir/LifeSimulator.cpp.o -c /Users/bradybodily/Repositories/CS3460/Hw6/LifeSimulator.cpp
CMakeFiles/ConwaysLife.dir/LifeSimulator.cpp.i: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/ConwaysLife.dir/LifeSimulator.cpp.i"
- /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/brady/CLionProjects/CS3460-CPP/Hw6/LifeSimulator.cpp > CMakeFiles/ConwaysLife.dir/LifeSimulator.cpp.i
+ /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/bradybodily/Repositories/CS3460/Hw6/LifeSimulator.cpp > CMakeFiles/ConwaysLife.dir/LifeSimulator.cpp.i
CMakeFiles/ConwaysLife.dir/LifeSimulator.cpp.s: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/ConwaysLife.dir/LifeSimulator.cpp.s"
- /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/brady/CLionProjects/CS3460-CPP/Hw6/LifeSimulator.cpp -o CMakeFiles/ConwaysLife.dir/LifeSimulator.cpp.s
+ /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/bradybodily/Repositories/CS3460/Hw6/LifeSimulator.cpp -o CMakeFiles/ConwaysLife.dir/LifeSimulator.cpp.s
CMakeFiles/ConwaysLife.dir/RendererConsole.cpp.o: CMakeFiles/ConwaysLife.dir/flags.make
CMakeFiles/ConwaysLife.dir/RendererConsole.cpp.o: ../RendererConsole.cpp
- @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/Users/brady/CLionProjects/CS3460-CPP/Hw6/cmake-build-debug/CMakeFiles --progress-num=$(CMAKE_PROGRESS_7) "Building CXX object CMakeFiles/ConwaysLife.dir/RendererConsole.cpp.o"
- /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -o CMakeFiles/ConwaysLife.dir/RendererConsole.cpp.o -c /Users/brady/CLionProjects/CS3460-CPP/Hw6/RendererConsole.cpp
+ @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/CMakeFiles --progress-num=$(CMAKE_PROGRESS_7) "Building CXX object CMakeFiles/ConwaysLife.dir/RendererConsole.cpp.o"
+ /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -o CMakeFiles/ConwaysLife.dir/RendererConsole.cpp.o -c /Users/bradybodily/Repositories/CS3460/Hw6/RendererConsole.cpp
CMakeFiles/ConwaysLife.dir/RendererConsole.cpp.i: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/ConwaysLife.dir/RendererConsole.cpp.i"
- /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/brady/CLionProjects/CS3460-CPP/Hw6/RendererConsole.cpp > CMakeFiles/ConwaysLife.dir/RendererConsole.cpp.i
+ /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/bradybodily/Repositories/CS3460/Hw6/RendererConsole.cpp > CMakeFiles/ConwaysLife.dir/RendererConsole.cpp.i
CMakeFiles/ConwaysLife.dir/RendererConsole.cpp.s: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/ConwaysLife.dir/RendererConsole.cpp.s"
- /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/brady/CLionProjects/CS3460-CPP/Hw6/RendererConsole.cpp -o CMakeFiles/ConwaysLife.dir/RendererConsole.cpp.s
+ /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/bradybodily/Repositories/CS3460/Hw6/RendererConsole.cpp -o CMakeFiles/ConwaysLife.dir/RendererConsole.cpp.s
CMakeFiles/ConwaysLife.dir/main.cpp.o: CMakeFiles/ConwaysLife.dir/flags.make
CMakeFiles/ConwaysLife.dir/main.cpp.o: ../main.cpp
- @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/Users/brady/CLionProjects/CS3460-CPP/Hw6/cmake-build-debug/CMakeFiles --progress-num=$(CMAKE_PROGRESS_8) "Building CXX object CMakeFiles/ConwaysLife.dir/main.cpp.o"
- /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -o CMakeFiles/ConwaysLife.dir/main.cpp.o -c /Users/brady/CLionProjects/CS3460-CPP/Hw6/main.cpp
+ @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/CMakeFiles --progress-num=$(CMAKE_PROGRESS_8) "Building CXX object CMakeFiles/ConwaysLife.dir/main.cpp.o"
+ /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -o CMakeFiles/ConwaysLife.dir/main.cpp.o -c /Users/bradybodily/Repositories/CS3460/Hw6/main.cpp
CMakeFiles/ConwaysLife.dir/main.cpp.i: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/ConwaysLife.dir/main.cpp.i"
- /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/brady/CLionProjects/CS3460-CPP/Hw6/main.cpp > CMakeFiles/ConwaysLife.dir/main.cpp.i
+ /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Users/bradybodily/Repositories/CS3460/Hw6/main.cpp > CMakeFiles/ConwaysLife.dir/main.cpp.i
CMakeFiles/ConwaysLife.dir/main.cpp.s: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/ConwaysLife.dir/main.cpp.s"
- /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/brady/CLionProjects/CS3460-CPP/Hw6/main.cpp -o CMakeFiles/ConwaysLife.dir/main.cpp.s
+ /Library/Developer/CommandLineTools/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Users/bradybodily/Repositories/CS3460/Hw6/main.cpp -o CMakeFiles/ConwaysLife.dir/main.cpp.s
# Object files for target ConwaysLife
ConwaysLife_OBJECTS = \
@@ -185,7 +185,7 @@ ConwaysLife: CMakeFiles/ConwaysLife.dir/RendererConsole.cpp.o
ConwaysLife: CMakeFiles/ConwaysLife.dir/main.cpp.o
ConwaysLife: CMakeFiles/ConwaysLife.dir/build.make
ConwaysLife: CMakeFiles/ConwaysLife.dir/link.txt
- @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --bold --progress-dir=/Users/brady/CLionProjects/CS3460-CPP/Hw6/cmake-build-debug/CMakeFiles --progress-num=$(CMAKE_PROGRESS_9) "Linking CXX executable ConwaysLife"
+ @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --bold --progress-dir=/Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/CMakeFiles --progress-num=$(CMAKE_PROGRESS_9) "Linking CXX executable ConwaysLife"
$(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/ConwaysLife.dir/link.txt --verbose=$(VERBOSE)
# Rule to build all files generated by this target.
@@ -198,6 +198,6 @@ CMakeFiles/ConwaysLife.dir/clean:
.PHONY : CMakeFiles/ConwaysLife.dir/clean
CMakeFiles/ConwaysLife.dir/depend:
- cd /Users/brady/CLionProjects/CS3460-CPP/Hw6/cmake-build-debug && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/brady/CLionProjects/CS3460-CPP/Hw6 /Users/brady/CLionProjects/CS3460-CPP/Hw6 /Users/brady/CLionProjects/CS3460-CPP/Hw6/cmake-build-debug /Users/brady/CLionProjects/CS3460-CPP/Hw6/cmake-build-debug /Users/brady/CLionProjects/CS3460-CPP/Hw6/cmake-build-debug/CMakeFiles/ConwaysLife.dir/DependInfo.cmake --color=$(COLOR)
+ cd /Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/bradybodily/Repositories/CS3460/Hw6 /Users/bradybodily/Repositories/CS3460/Hw6 /Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug /Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug /Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/CMakeFiles/ConwaysLife.dir/DependInfo.cmake --color=$(COLOR)
.PHONY : CMakeFiles/ConwaysLife.dir/depend
diff --git a/Hw6/cmake-build-debug/CMakeFiles/ConwaysLife.dir/cmake_clean.cmake b/Hw6/cmake-build-debug/CMakeFiles/ConwaysLife.dir/cmake_clean.cmake
index 6a9d4d5..69dddb0 100644
--- a/Hw6/cmake-build-debug/CMakeFiles/ConwaysLife.dir/cmake_clean.cmake
+++ b/Hw6/cmake-build-debug/CMakeFiles/ConwaysLife.dir/cmake_clean.cmake
@@ -1,14 +1,14 @@
file(REMOVE_RECURSE
- "CMakeFiles/ConwaysLife.dir/LifeSimulator.cpp.o"
"CMakeFiles/ConwaysLife.dir/PatternAcorn.cpp.o"
"CMakeFiles/ConwaysLife.dir/PatternBlinker.cpp.o"
"CMakeFiles/ConwaysLife.dir/PatternBlock.cpp.o"
"CMakeFiles/ConwaysLife.dir/PatternGlider.cpp.o"
"CMakeFiles/ConwaysLife.dir/PatternGosperGliderGun.cpp.o"
+ "CMakeFiles/ConwaysLife.dir/LifeSimulator.cpp.o"
"CMakeFiles/ConwaysLife.dir/RendererConsole.cpp.o"
"CMakeFiles/ConwaysLife.dir/main.cpp.o"
- "ConwaysLife"
"ConwaysLife.pdb"
+ "ConwaysLife"
)
# Per-language clean rules from dependency scanning.
diff --git a/Hw6/cmake-build-debug/CMakeFiles/ConwaysLife.dir/depend.internal b/Hw6/cmake-build-debug/CMakeFiles/ConwaysLife.dir/depend.internal
index cf5b776..91435e5 100644
--- a/Hw6/cmake-build-debug/CMakeFiles/ConwaysLife.dir/depend.internal
+++ b/Hw6/cmake-build-debug/CMakeFiles/ConwaysLife.dir/depend.internal
@@ -1,26 +1,52 @@
# CMAKE generated file: DO NOT EDIT!
-# Generated by "Unix Makefiles" Generator, CMake Version 3.15
+# Generated by "Unix Makefiles" Generator, CMake Version 3.14
CMakeFiles/ConwaysLife.dir/LifeSimulator.cpp.o
- /Users/brady/CLionProjects/CS3460-CPP/Hw6/LifeSimulator.cpp
+ /Users/bradybodily/Repositories/CS3460/Hw6/LifeSimulator.cpp
+ /Users/bradybodily/Repositories/CS3460/Hw6/LifeSimulator.hpp
+ /Users/bradybodily/Repositories/CS3460/Hw6/Pattern.hpp
+ /Users/bradybodily/Repositories/CS3460/Hw6/rlutil.h
CMakeFiles/ConwaysLife.dir/PatternAcorn.cpp.o
- /Users/brady/CLionProjects/CS3460-CPP/Hw6/PatternAcorn.cpp
- /Users/brady/CLionProjects/CS3460-CPP/Hw6/PatternAcorn.hpp
+ /Users/bradybodily/Repositories/CS3460/Hw6/Pattern.hpp
+ /Users/bradybodily/Repositories/CS3460/Hw6/PatternAcorn.cpp
+ /Users/bradybodily/Repositories/CS3460/Hw6/PatternAcorn.hpp
+ /Users/bradybodily/Repositories/CS3460/Hw6/rlutil.h
CMakeFiles/ConwaysLife.dir/PatternBlinker.cpp.o
- /Users/brady/CLionProjects/CS3460-CPP/Hw6/PatternBlinker.cpp
- /Users/brady/CLionProjects/CS3460-CPP/Hw6/PatternBlinker.hpp
+ /Users/bradybodily/Repositories/CS3460/Hw6/Pattern.hpp
+ /Users/bradybodily/Repositories/CS3460/Hw6/PatternBlinker.cpp
+ /Users/bradybodily/Repositories/CS3460/Hw6/PatternBlinker.hpp
+ /Users/bradybodily/Repositories/CS3460/Hw6/rlutil.h
CMakeFiles/ConwaysLife.dir/PatternBlock.cpp.o
- /Users/brady/CLionProjects/CS3460-CPP/Hw6/PatternBlock.cpp
- /Users/brady/CLionProjects/CS3460-CPP/Hw6/PatternBlock.hpp
+ /Users/bradybodily/Repositories/CS3460/Hw6/Pattern.hpp
+ /Users/bradybodily/Repositories/CS3460/Hw6/PatternBlock.cpp
+ /Users/bradybodily/Repositories/CS3460/Hw6/PatternBlock.hpp
+ /Users/bradybodily/Repositories/CS3460/Hw6/rlutil.h
CMakeFiles/ConwaysLife.dir/PatternGlider.cpp.o
- /Users/brady/CLionProjects/CS3460-CPP/Hw6/Pattern.hpp
- /Users/brady/CLionProjects/CS3460-CPP/Hw6/PatternGlider.cpp
- /Users/brady/CLionProjects/CS3460-CPP/Hw6/PatternGlider.hpp
+ /Users/bradybodily/Repositories/CS3460/Hw6/Pattern.hpp
+ /Users/bradybodily/Repositories/CS3460/Hw6/PatternGlider.cpp
+ /Users/bradybodily/Repositories/CS3460/Hw6/PatternGlider.hpp
+ /Users/bradybodily/Repositories/CS3460/Hw6/rlutil.h
CMakeFiles/ConwaysLife.dir/PatternGosperGliderGun.cpp.o
- /Users/brady/CLionProjects/CS3460-CPP/Hw6/PatternGosperGliderGun.cpp
- /Users/brady/CLionProjects/CS3460-CPP/Hw6/PatternGosperGliderGun.hpp
+ /Users/bradybodily/Repositories/CS3460/Hw6/Pattern.hpp
+ /Users/bradybodily/Repositories/CS3460/Hw6/PatternGosperGliderGun.cpp
+ /Users/bradybodily/Repositories/CS3460/Hw6/PatternGosperGliderGun.hpp
+ /Users/bradybodily/Repositories/CS3460/Hw6/rlutil.h
CMakeFiles/ConwaysLife.dir/RendererConsole.cpp.o
- /Users/brady/CLionProjects/CS3460-CPP/Hw6/RendererConsole.cpp
- /Users/brady/CLionProjects/CS3460-CPP/Hw6/RendererConsole.hpp
+ /Users/bradybodily/Repositories/CS3460/Hw6/LifeSimulator.hpp
+ /Users/bradybodily/Repositories/CS3460/Hw6/Pattern.hpp
+ /Users/bradybodily/Repositories/CS3460/Hw6/Renderer.hpp
+ /Users/bradybodily/Repositories/CS3460/Hw6/RendererConsole.cpp
+ /Users/bradybodily/Repositories/CS3460/Hw6/RendererConsole.hpp
+ /Users/bradybodily/Repositories/CS3460/Hw6/rlutil.h
CMakeFiles/ConwaysLife.dir/main.cpp.o
- /Users/brady/CLionProjects/CS3460-CPP/Hw6/main.cpp
+ /Users/bradybodily/Repositories/CS3460/Hw6/LifeSimulator.hpp
+ /Users/bradybodily/Repositories/CS3460/Hw6/Pattern.hpp
+ /Users/bradybodily/Repositories/CS3460/Hw6/PatternAcorn.hpp
+ /Users/bradybodily/Repositories/CS3460/Hw6/PatternBlinker.hpp
+ /Users/bradybodily/Repositories/CS3460/Hw6/PatternBlock.hpp
+ /Users/bradybodily/Repositories/CS3460/Hw6/PatternGlider.hpp
+ /Users/bradybodily/Repositories/CS3460/Hw6/PatternGosperGliderGun.hpp
+ /Users/bradybodily/Repositories/CS3460/Hw6/Renderer.hpp
+ /Users/bradybodily/Repositories/CS3460/Hw6/RendererConsole.hpp
+ /Users/bradybodily/Repositories/CS3460/Hw6/main.cpp
+ /Users/bradybodily/Repositories/CS3460/Hw6/rlutil.h
diff --git a/Hw6/cmake-build-debug/CMakeFiles/ConwaysLife.dir/depend.make b/Hw6/cmake-build-debug/CMakeFiles/ConwaysLife.dir/depend.make
index 5638c15..4ad004e 100644
--- a/Hw6/cmake-build-debug/CMakeFiles/ConwaysLife.dir/depend.make
+++ b/Hw6/cmake-build-debug/CMakeFiles/ConwaysLife.dir/depend.make
@@ -1,26 +1,52 @@
# CMAKE generated file: DO NOT EDIT!
-# Generated by "Unix Makefiles" Generator, CMake Version 3.15
+# Generated by "Unix Makefiles" Generator, CMake Version 3.14
CMakeFiles/ConwaysLife.dir/LifeSimulator.cpp.o: ../LifeSimulator.cpp
+CMakeFiles/ConwaysLife.dir/LifeSimulator.cpp.o: ../LifeSimulator.hpp
+CMakeFiles/ConwaysLife.dir/LifeSimulator.cpp.o: ../Pattern.hpp
+CMakeFiles/ConwaysLife.dir/LifeSimulator.cpp.o: ../rlutil.h
+CMakeFiles/ConwaysLife.dir/PatternAcorn.cpp.o: ../Pattern.hpp
CMakeFiles/ConwaysLife.dir/PatternAcorn.cpp.o: ../PatternAcorn.cpp
CMakeFiles/ConwaysLife.dir/PatternAcorn.cpp.o: ../PatternAcorn.hpp
+CMakeFiles/ConwaysLife.dir/PatternAcorn.cpp.o: ../rlutil.h
+CMakeFiles/ConwaysLife.dir/PatternBlinker.cpp.o: ../Pattern.hpp
CMakeFiles/ConwaysLife.dir/PatternBlinker.cpp.o: ../PatternBlinker.cpp
CMakeFiles/ConwaysLife.dir/PatternBlinker.cpp.o: ../PatternBlinker.hpp
+CMakeFiles/ConwaysLife.dir/PatternBlinker.cpp.o: ../rlutil.h
+CMakeFiles/ConwaysLife.dir/PatternBlock.cpp.o: ../Pattern.hpp
CMakeFiles/ConwaysLife.dir/PatternBlock.cpp.o: ../PatternBlock.cpp
CMakeFiles/ConwaysLife.dir/PatternBlock.cpp.o: ../PatternBlock.hpp
+CMakeFiles/ConwaysLife.dir/PatternBlock.cpp.o: ../rlutil.h
CMakeFiles/ConwaysLife.dir/PatternGlider.cpp.o: ../Pattern.hpp
CMakeFiles/ConwaysLife.dir/PatternGlider.cpp.o: ../PatternGlider.cpp
CMakeFiles/ConwaysLife.dir/PatternGlider.cpp.o: ../PatternGlider.hpp
+CMakeFiles/ConwaysLife.dir/PatternGlider.cpp.o: ../rlutil.h
+CMakeFiles/ConwaysLife.dir/PatternGosperGliderGun.cpp.o: ../Pattern.hpp
CMakeFiles/ConwaysLife.dir/PatternGosperGliderGun.cpp.o: ../PatternGosperGliderGun.cpp
CMakeFiles/ConwaysLife.dir/PatternGosperGliderGun.cpp.o: ../PatternGosperGliderGun.hpp
+CMakeFiles/ConwaysLife.dir/PatternGosperGliderGun.cpp.o: ../rlutil.h
+CMakeFiles/ConwaysLife.dir/RendererConsole.cpp.o: ../LifeSimulator.hpp
+CMakeFiles/ConwaysLife.dir/RendererConsole.cpp.o: ../Pattern.hpp
+CMakeFiles/ConwaysLife.dir/RendererConsole.cpp.o: ../Renderer.hpp
CMakeFiles/ConwaysLife.dir/RendererConsole.cpp.o: ../RendererConsole.cpp
CMakeFiles/ConwaysLife.dir/RendererConsole.cpp.o: ../RendererConsole.hpp
+CMakeFiles/ConwaysLife.dir/RendererConsole.cpp.o: ../rlutil.h
+CMakeFiles/ConwaysLife.dir/main.cpp.o: ../LifeSimulator.hpp
+CMakeFiles/ConwaysLife.dir/main.cpp.o: ../Pattern.hpp
+CMakeFiles/ConwaysLife.dir/main.cpp.o: ../PatternAcorn.hpp
+CMakeFiles/ConwaysLife.dir/main.cpp.o: ../PatternBlinker.hpp
+CMakeFiles/ConwaysLife.dir/main.cpp.o: ../PatternBlock.hpp
+CMakeFiles/ConwaysLife.dir/main.cpp.o: ../PatternGlider.hpp
+CMakeFiles/ConwaysLife.dir/main.cpp.o: ../PatternGosperGliderGun.hpp
+CMakeFiles/ConwaysLife.dir/main.cpp.o: ../Renderer.hpp
+CMakeFiles/ConwaysLife.dir/main.cpp.o: ../RendererConsole.hpp
CMakeFiles/ConwaysLife.dir/main.cpp.o: ../main.cpp
+CMakeFiles/ConwaysLife.dir/main.cpp.o: ../rlutil.h
diff --git a/Hw6/cmake-build-debug/CMakeFiles/ConwaysLife.dir/flags.make b/Hw6/cmake-build-debug/CMakeFiles/ConwaysLife.dir/flags.make
index 0c6c54c..53cc6e0 100644
--- a/Hw6/cmake-build-debug/CMakeFiles/ConwaysLife.dir/flags.make
+++ b/Hw6/cmake-build-debug/CMakeFiles/ConwaysLife.dir/flags.make
@@ -1,8 +1,8 @@
# CMAKE generated file: DO NOT EDIT!
-# Generated by "Unix Makefiles" Generator, CMake Version 3.15
+# Generated by "Unix Makefiles" Generator, CMake Version 3.14
-# compile CXX with /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++
-CXX_FLAGS = -g -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk -std=gnu++1z
+# compile CXX with /Library/Developer/CommandLineTools/usr/bin/c++
+CXX_FLAGS = -g -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk -std=gnu++1z
CXX_DEFINES =
diff --git a/Hw6/cmake-build-debug/CMakeFiles/ConwaysLife.dir/link.txt b/Hw6/cmake-build-debug/CMakeFiles/ConwaysLife.dir/link.txt
index fc88343..ec34bb3 100644
--- a/Hw6/cmake-build-debug/CMakeFiles/ConwaysLife.dir/link.txt
+++ b/Hw6/cmake-build-debug/CMakeFiles/ConwaysLife.dir/link.txt
@@ -1 +1 @@
-/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ -g -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk -Wl,-search_paths_first -Wl,-headerpad_max_install_names CMakeFiles/ConwaysLife.dir/PatternAcorn.cpp.o CMakeFiles/ConwaysLife.dir/PatternBlinker.cpp.o CMakeFiles/ConwaysLife.dir/PatternBlock.cpp.o CMakeFiles/ConwaysLife.dir/PatternGlider.cpp.o CMakeFiles/ConwaysLife.dir/PatternGosperGliderGun.cpp.o CMakeFiles/ConwaysLife.dir/LifeSimulator.cpp.o CMakeFiles/ConwaysLife.dir/RendererConsole.cpp.o CMakeFiles/ConwaysLife.dir/main.cpp.o -o ConwaysLife
+/Library/Developer/CommandLineTools/usr/bin/c++ -g -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk -Wl,-search_paths_first -Wl,-headerpad_max_install_names CMakeFiles/ConwaysLife.dir/PatternAcorn.cpp.o CMakeFiles/ConwaysLife.dir/PatternBlinker.cpp.o CMakeFiles/ConwaysLife.dir/PatternBlock.cpp.o CMakeFiles/ConwaysLife.dir/PatternGlider.cpp.o CMakeFiles/ConwaysLife.dir/PatternGosperGliderGun.cpp.o CMakeFiles/ConwaysLife.dir/LifeSimulator.cpp.o CMakeFiles/ConwaysLife.dir/RendererConsole.cpp.o CMakeFiles/ConwaysLife.dir/main.cpp.o -o ConwaysLife
diff --git a/Hw6/cmake-build-debug/CMakeFiles/ConwaysLife.dir/main.cpp.o b/Hw6/cmake-build-debug/CMakeFiles/ConwaysLife.dir/main.cpp.o
index a8a20b8..308d73f 100644
Binary files a/Hw6/cmake-build-debug/CMakeFiles/ConwaysLife.dir/main.cpp.o and b/Hw6/cmake-build-debug/CMakeFiles/ConwaysLife.dir/main.cpp.o differ
diff --git a/Hw6/cmake-build-debug/CMakeFiles/Makefile.cmake b/Hw6/cmake-build-debug/CMakeFiles/Makefile.cmake
index e2d7de1..d981dfe 100644
--- a/Hw6/cmake-build-debug/CMakeFiles/Makefile.cmake
+++ b/Hw6/cmake-build-debug/CMakeFiles/Makefile.cmake
@@ -1,5 +1,5 @@
# CMAKE generated file: DO NOT EDIT!
-# Generated by "Unix Makefiles" Generator, CMake Version 3.15
+# Generated by "Unix Makefiles" Generator, CMake Version 3.14
# The generator used is:
set(CMAKE_DEPENDS_GENERATOR "Unix Makefiles")
@@ -7,36 +7,104 @@ set(CMAKE_DEPENDS_GENERATOR "Unix Makefiles")
# The top level Makefile was generated from the following files:
set(CMAKE_MAKEFILE_DEPENDS
"CMakeCache.txt"
- "/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.15/Modules/CMakeCInformation.cmake"
- "/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.15/Modules/CMakeCXXInformation.cmake"
- "/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.15/Modules/CMakeCheckCompilerFlagCommonPatterns.cmake"
- "/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.15/Modules/CMakeCommonLanguageInclude.cmake"
- "/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.15/Modules/CMakeExtraGeneratorDetermineCompilerMacrosAndIncludeDirs.cmake"
- "/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.15/Modules/CMakeFindCodeBlocks.cmake"
- "/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.15/Modules/CMakeGenericSystem.cmake"
- "/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.15/Modules/CMakeInitializeConfigs.cmake"
- "/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.15/Modules/CMakeLanguageInformation.cmake"
- "/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.15/Modules/CMakeSystemSpecificInformation.cmake"
- "/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.15/Modules/CMakeSystemSpecificInitialize.cmake"
- "/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.15/Modules/Compiler/AppleClang-C.cmake"
- "/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.15/Modules/Compiler/AppleClang-CXX.cmake"
- "/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.15/Modules/Compiler/CMakeCommonCompilerMacros.cmake"
- "/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.15/Modules/Compiler/Clang.cmake"
- "/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.15/Modules/Compiler/GNU.cmake"
- "/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.15/Modules/Internal/CMakeCheckCompilerFlag.cmake"
- "/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.15/Modules/Platform/Apple-AppleClang-C.cmake"
- "/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.15/Modules/Platform/Apple-AppleClang-CXX.cmake"
- "/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.15/Modules/Platform/Apple-Clang-C.cmake"
- "/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.15/Modules/Platform/Apple-Clang-CXX.cmake"
- "/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.15/Modules/Platform/Apple-Clang.cmake"
- "/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.15/Modules/Platform/Darwin-Initialize.cmake"
- "/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.15/Modules/Platform/Darwin.cmake"
- "/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.15/Modules/Platform/UnixPaths.cmake"
- "/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.15/Modules/ProcessorCount.cmake"
+ "/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.14/Modules/CMakeCCompiler.cmake.in"
+ "/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.14/Modules/CMakeCCompilerABI.c"
+ "/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.14/Modules/CMakeCInformation.cmake"
+ "/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.14/Modules/CMakeCXXCompiler.cmake.in"
+ "/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.14/Modules/CMakeCXXCompilerABI.cpp"
+ "/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.14/Modules/CMakeCXXInformation.cmake"
+ "/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.14/Modules/CMakeCheckCompilerFlagCommonPatterns.cmake"
+ "/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.14/Modules/CMakeCommonLanguageInclude.cmake"
+ "/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.14/Modules/CMakeCompilerIdDetection.cmake"
+ "/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.14/Modules/CMakeDetermineCCompiler.cmake"
+ "/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.14/Modules/CMakeDetermineCXXCompiler.cmake"
+ "/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.14/Modules/CMakeDetermineCompileFeatures.cmake"
+ "/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.14/Modules/CMakeDetermineCompiler.cmake"
+ "/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.14/Modules/CMakeDetermineCompilerABI.cmake"
+ "/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.14/Modules/CMakeDetermineCompilerId.cmake"
+ "/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.14/Modules/CMakeDetermineSystem.cmake"
+ "/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.14/Modules/CMakeExtraGeneratorDetermineCompilerMacrosAndIncludeDirs.cmake"
+ "/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.14/Modules/CMakeFindBinUtils.cmake"
+ "/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.14/Modules/CMakeFindCodeBlocks.cmake"
+ "/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.14/Modules/CMakeGenericSystem.cmake"
+ "/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.14/Modules/CMakeInitializeConfigs.cmake"
+ "/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.14/Modules/CMakeLanguageInformation.cmake"
+ "/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.14/Modules/CMakeParseImplicitIncludeInfo.cmake"
+ "/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.14/Modules/CMakeParseImplicitLinkInfo.cmake"
+ "/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.14/Modules/CMakeSystem.cmake.in"
+ "/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.14/Modules/CMakeSystemSpecificInformation.cmake"
+ "/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.14/Modules/CMakeSystemSpecificInitialize.cmake"
+ "/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.14/Modules/CMakeTestCCompiler.cmake"
+ "/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.14/Modules/CMakeTestCXXCompiler.cmake"
+ "/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.14/Modules/CMakeTestCompilerCommon.cmake"
+ "/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.14/Modules/CMakeUnixFindMake.cmake"
+ "/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.14/Modules/Compiler/ADSP-DetermineCompiler.cmake"
+ "/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.14/Modules/Compiler/ARMCC-DetermineCompiler.cmake"
+ "/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.14/Modules/Compiler/AppleClang-C-FeatureTests.cmake"
+ "/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.14/Modules/Compiler/AppleClang-C.cmake"
+ "/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.14/Modules/Compiler/AppleClang-CXX-FeatureTests.cmake"
+ "/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.14/Modules/Compiler/AppleClang-CXX.cmake"
+ "/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.14/Modules/Compiler/AppleClang-DetermineCompiler.cmake"
+ "/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.14/Modules/Compiler/Borland-DetermineCompiler.cmake"
+ "/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.14/Modules/Compiler/Bruce-C-DetermineCompiler.cmake"
+ "/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.14/Modules/Compiler/CMakeCommonCompilerMacros.cmake"
+ "/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.14/Modules/Compiler/Clang-CXX-TestableFeatures.cmake"
+ "/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.14/Modules/Compiler/Clang-DetermineCompiler.cmake"
+ "/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.14/Modules/Compiler/Clang-DetermineCompilerInternal.cmake"
+ "/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.14/Modules/Compiler/Clang.cmake"
+ "/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.14/Modules/Compiler/Comeau-CXX-DetermineCompiler.cmake"
+ "/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.14/Modules/Compiler/Compaq-C-DetermineCompiler.cmake"
+ "/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.14/Modules/Compiler/Compaq-CXX-DetermineCompiler.cmake"
+ "/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.14/Modules/Compiler/Cray-DetermineCompiler.cmake"
+ "/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.14/Modules/Compiler/Embarcadero-DetermineCompiler.cmake"
+ "/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.14/Modules/Compiler/Fujitsu-DetermineCompiler.cmake"
+ "/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.14/Modules/Compiler/GHS-DetermineCompiler.cmake"
+ "/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.14/Modules/Compiler/GNU-C-DetermineCompiler.cmake"
+ "/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.14/Modules/Compiler/GNU-CXX-DetermineCompiler.cmake"
+ "/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.14/Modules/Compiler/GNU.cmake"
+ "/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.14/Modules/Compiler/HP-C-DetermineCompiler.cmake"
+ "/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.14/Modules/Compiler/HP-CXX-DetermineCompiler.cmake"
+ "/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.14/Modules/Compiler/IAR-DetermineCompiler.cmake"
+ "/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.14/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake"
+ "/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.14/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake"
+ "/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.14/Modules/Compiler/Intel-DetermineCompiler.cmake"
+ "/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.14/Modules/Compiler/MIPSpro-DetermineCompiler.cmake"
+ "/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.14/Modules/Compiler/MSVC-DetermineCompiler.cmake"
+ "/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.14/Modules/Compiler/NVIDIA-DetermineCompiler.cmake"
+ "/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.14/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake"
+ "/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.14/Modules/Compiler/PGI-DetermineCompiler.cmake"
+ "/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.14/Modules/Compiler/PathScale-DetermineCompiler.cmake"
+ "/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.14/Modules/Compiler/SCO-DetermineCompiler.cmake"
+ "/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.14/Modules/Compiler/SDCC-C-DetermineCompiler.cmake"
+ "/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.14/Modules/Compiler/SunPro-C-DetermineCompiler.cmake"
+ "/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.14/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake"
+ "/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.14/Modules/Compiler/TI-DetermineCompiler.cmake"
+ "/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.14/Modules/Compiler/TinyCC-C-DetermineCompiler.cmake"
+ "/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.14/Modules/Compiler/VisualAge-C-DetermineCompiler.cmake"
+ "/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.14/Modules/Compiler/VisualAge-CXX-DetermineCompiler.cmake"
+ "/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.14/Modules/Compiler/Watcom-DetermineCompiler.cmake"
+ "/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.14/Modules/Compiler/XL-C-DetermineCompiler.cmake"
+ "/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.14/Modules/Compiler/XL-CXX-DetermineCompiler.cmake"
+ "/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.14/Modules/Compiler/zOS-C-DetermineCompiler.cmake"
+ "/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.14/Modules/Compiler/zOS-CXX-DetermineCompiler.cmake"
+ "/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.14/Modules/Internal/CMakeCheckCompilerFlag.cmake"
+ "/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.14/Modules/Internal/FeatureTesting.cmake"
+ "/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.14/Modules/Platform/Apple-AppleClang-C.cmake"
+ "/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.14/Modules/Platform/Apple-AppleClang-CXX.cmake"
+ "/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.14/Modules/Platform/Apple-Clang-C.cmake"
+ "/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.14/Modules/Platform/Apple-Clang-CXX.cmake"
+ "/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.14/Modules/Platform/Apple-Clang.cmake"
+ "/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.14/Modules/Platform/Darwin-Determine-CXX.cmake"
+ "/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.14/Modules/Platform/Darwin-Initialize.cmake"
+ "/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.14/Modules/Platform/Darwin.cmake"
+ "/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.14/Modules/Platform/UnixPaths.cmake"
+ "/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.14/Modules/ProcessorCount.cmake"
"../CMakeLists.txt"
- "CMakeFiles/3.15.3/CMakeCCompiler.cmake"
- "CMakeFiles/3.15.3/CMakeCXXCompiler.cmake"
- "CMakeFiles/3.15.3/CMakeSystem.cmake"
+ "CMakeFiles/3.14.5/CMakeCCompiler.cmake"
+ "CMakeFiles/3.14.5/CMakeCXXCompiler.cmake"
+ "CMakeFiles/3.14.5/CMakeSystem.cmake"
+ "CMakeFiles/feature_tests.c"
+ "CMakeFiles/feature_tests.cxx"
)
# The corresponding makefile is:
@@ -47,10 +115,16 @@ set(CMAKE_MAKEFILE_OUTPUTS
# Byproducts of CMake generate step:
set(CMAKE_MAKEFILE_PRODUCTS
+ "CMakeFiles/3.14.5/CMakeSystem.cmake"
+ "CMakeFiles/3.14.5/CMakeCCompiler.cmake"
+ "CMakeFiles/3.14.5/CMakeCXXCompiler.cmake"
+ "CMakeFiles/3.14.5/CMakeCCompiler.cmake"
+ "CMakeFiles/3.14.5/CMakeCXXCompiler.cmake"
"CMakeFiles/CMakeDirectoryInformation.cmake"
)
# Dependency information for all targets:
set(CMAKE_DEPEND_INFO_FILES
+ "CMakeFiles/ClangFormat.dir/DependInfo.cmake"
"CMakeFiles/ConwaysLife.dir/DependInfo.cmake"
)
diff --git a/Hw6/cmake-build-debug/CMakeFiles/Makefile2 b/Hw6/cmake-build-debug/CMakeFiles/Makefile2
index dbf87ec..6d3ae9d 100644
--- a/Hw6/cmake-build-debug/CMakeFiles/Makefile2
+++ b/Hw6/cmake-build-debug/CMakeFiles/Makefile2
@@ -1,11 +1,26 @@
# CMAKE generated file: DO NOT EDIT!
-# Generated by "Unix Makefiles" Generator, CMake Version 3.15
+# Generated by "Unix Makefiles" Generator, CMake Version 3.14
# Default target executed when no arguments are given to make.
default_target: all
.PHONY : default_target
+# The main recursive all target
+all:
+
+.PHONY : all
+
+# The main recursive preinstall target
+preinstall:
+
+.PHONY : preinstall
+
+# The main recursive clean target
+clean:
+
+.PHONY : clean
+
#=============================================================================
# Special targets provided by cmake.
@@ -44,44 +59,63 @@ RM = /Applications/CLion.app/Contents/bin/cmake/mac/bin/cmake -E remove -f
EQUALS = =
# The top-level source directory on which CMake was run.
-CMAKE_SOURCE_DIR = /Users/brady/CLionProjects/CS3460-CPP/Hw6
+CMAKE_SOURCE_DIR = /Users/bradybodily/Repositories/CS3460/Hw6
# The top-level build directory on which CMake was run.
-CMAKE_BINARY_DIR = /Users/brady/CLionProjects/CS3460-CPP/Hw6/cmake-build-debug
+CMAKE_BINARY_DIR = /Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug
#=============================================================================
-# Directory level rules for the build root directory
+# Target rules for target CMakeFiles/ClangFormat.dir
-# The main recursive "all" target.
-all: CMakeFiles/ConwaysLife.dir/all
+# All Build rule for target.
+CMakeFiles/ClangFormat.dir/all:
+ $(MAKE) -f CMakeFiles/ClangFormat.dir/build.make CMakeFiles/ClangFormat.dir/depend
+ $(MAKE) -f CMakeFiles/ClangFormat.dir/build.make CMakeFiles/ClangFormat.dir/build
+ @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/CMakeFiles --progress-num= "Built target ClangFormat"
+.PHONY : CMakeFiles/ClangFormat.dir/all
-.PHONY : all
+# Build rule for subdir invocation for target.
+CMakeFiles/ClangFormat.dir/rule: cmake_check_build_system
+ $(CMAKE_COMMAND) -E cmake_progress_start /Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/CMakeFiles 0
+ $(MAKE) -f CMakeFiles/Makefile2 CMakeFiles/ClangFormat.dir/all
+ $(CMAKE_COMMAND) -E cmake_progress_start /Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/CMakeFiles 0
+.PHONY : CMakeFiles/ClangFormat.dir/rule
-# The main recursive "clean" target.
-clean: CMakeFiles/ConwaysLife.dir/clean
+# Convenience name for target.
+ClangFormat: CMakeFiles/ClangFormat.dir/rule
+
+.PHONY : ClangFormat
+
+# clean rule for target.
+CMakeFiles/ClangFormat.dir/clean:
+ $(MAKE) -f CMakeFiles/ClangFormat.dir/build.make CMakeFiles/ClangFormat.dir/clean
+.PHONY : CMakeFiles/ClangFormat.dir/clean
+
+# clean rule for target.
+clean: CMakeFiles/ClangFormat.dir/clean
.PHONY : clean
-# The main recursive "preinstall" target.
-preinstall:
-
-.PHONY : preinstall
-
#=============================================================================
# Target rules for target CMakeFiles/ConwaysLife.dir
# All Build rule for target.
-CMakeFiles/ConwaysLife.dir/all:
+CMakeFiles/ConwaysLife.dir/all: CMakeFiles/ClangFormat.dir/all
$(MAKE) -f CMakeFiles/ConwaysLife.dir/build.make CMakeFiles/ConwaysLife.dir/depend
$(MAKE) -f CMakeFiles/ConwaysLife.dir/build.make CMakeFiles/ConwaysLife.dir/build
- @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/Users/brady/CLionProjects/CS3460-CPP/Hw6/cmake-build-debug/CMakeFiles --progress-num=1,2,3,4,5,6,7,8,9 "Built target ConwaysLife"
+ @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/CMakeFiles --progress-num=1,2,3,4,5,6,7,8,9 "Built target ConwaysLife"
.PHONY : CMakeFiles/ConwaysLife.dir/all
+# Include target in all.
+all: CMakeFiles/ConwaysLife.dir/all
+
+.PHONY : all
+
# Build rule for subdir invocation for target.
CMakeFiles/ConwaysLife.dir/rule: cmake_check_build_system
- $(CMAKE_COMMAND) -E cmake_progress_start /Users/brady/CLionProjects/CS3460-CPP/Hw6/cmake-build-debug/CMakeFiles 9
+ $(CMAKE_COMMAND) -E cmake_progress_start /Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/CMakeFiles 9
$(MAKE) -f CMakeFiles/Makefile2 CMakeFiles/ConwaysLife.dir/all
- $(CMAKE_COMMAND) -E cmake_progress_start /Users/brady/CLionProjects/CS3460-CPP/Hw6/cmake-build-debug/CMakeFiles 0
+ $(CMAKE_COMMAND) -E cmake_progress_start /Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/CMakeFiles 0
.PHONY : CMakeFiles/ConwaysLife.dir/rule
# Convenience name for target.
@@ -94,6 +128,11 @@ CMakeFiles/ConwaysLife.dir/clean:
$(MAKE) -f CMakeFiles/ConwaysLife.dir/build.make CMakeFiles/ConwaysLife.dir/clean
.PHONY : CMakeFiles/ConwaysLife.dir/clean
+# clean rule for target.
+clean: CMakeFiles/ConwaysLife.dir/clean
+
+.PHONY : clean
+
#=============================================================================
# Special targets to cleanup operation of make.
diff --git a/Hw6/cmake-build-debug/CMakeFiles/TargetDirectories.txt b/Hw6/cmake-build-debug/CMakeFiles/TargetDirectories.txt
index 69e8cfb..3a112ee 100644
--- a/Hw6/cmake-build-debug/CMakeFiles/TargetDirectories.txt
+++ b/Hw6/cmake-build-debug/CMakeFiles/TargetDirectories.txt
@@ -1,3 +1,4 @@
-/Users/brady/CLionProjects/CS3460-CPP/Hw6/cmake-build-debug/CMakeFiles/rebuild_cache.dir
-/Users/brady/CLionProjects/CS3460-CPP/Hw6/cmake-build-debug/CMakeFiles/edit_cache.dir
-/Users/brady/CLionProjects/CS3460-CPP/Hw6/cmake-build-debug/CMakeFiles/ConwaysLife.dir
+/Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/CMakeFiles/rebuild_cache.dir
+/Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/CMakeFiles/edit_cache.dir
+/Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/CMakeFiles/ClangFormat.dir
+/Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/CMakeFiles/ConwaysLife.dir
diff --git a/Hw6/cmake-build-debug/CMakeFiles/clion-log.txt b/Hw6/cmake-build-debug/CMakeFiles/clion-log.txt
index f6034b9..9f0b2a1 100644
--- a/Hw6/cmake-build-debug/CMakeFiles/clion-log.txt
+++ b/Hw6/cmake-build-debug/CMakeFiles/clion-log.txt
@@ -1,5 +1,18 @@
-/Applications/CLion.app/Contents/bin/cmake/mac/bin/cmake -DCMAKE_BUILD_TYPE=Debug -G "CodeBlocks - Unix Makefiles" /Users/brady/CLionProjects/CS3460-CPP/Hw6
-Unable to find clang-format
+/Applications/CLion.app/Contents/bin/cmake/mac/bin/cmake -DCMAKE_BUILD_TYPE=Debug -G "CodeBlocks - Unix Makefiles" /Users/bradybodily/Repositories/CS3460/Hw6
+-- The C compiler identification is AppleClang 11.0.0.11000033
+-- The CXX compiler identification is AppleClang 11.0.0.11000033
+-- Check for working C compiler: /Library/Developer/CommandLineTools/usr/bin/cc
+-- Check for working C compiler: /Library/Developer/CommandLineTools/usr/bin/cc -- works
+-- Detecting C compiler ABI info
+-- Detecting C compiler ABI info - done
+-- Detecting C compile features
+-- Detecting C compile features - done
+-- Check for working CXX compiler: /Library/Developer/CommandLineTools/usr/bin/c++
+-- Check for working CXX compiler: /Library/Developer/CommandLineTools/usr/bin/c++ -- works
+-- Detecting CXX compiler ABI info
+-- Detecting CXX compiler ABI info - done
+-- Detecting CXX compile features
+-- Detecting CXX compile features - done
-- Configuring done
-- Generating done
--- Build files have been written to: /Users/brady/CLionProjects/CS3460-CPP/Hw6/cmake-build-debug
+-- Build files have been written to: /Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug
diff --git a/Hw6/cmake-build-debug/CMakeFiles/feature_tests.bin b/Hw6/cmake-build-debug/CMakeFiles/feature_tests.bin
new file mode 100755
index 0000000..a18889d
Binary files /dev/null and b/Hw6/cmake-build-debug/CMakeFiles/feature_tests.bin differ
diff --git a/Hw6/cmake-build-debug/CMakeFiles/feature_tests.c b/Hw6/cmake-build-debug/CMakeFiles/feature_tests.c
new file mode 100644
index 0000000..afbc86d
--- /dev/null
+++ b/Hw6/cmake-build-debug/CMakeFiles/feature_tests.c
@@ -0,0 +1,34 @@
+
+ const char features[] = {"\n"
+"C_FEATURE:"
+#if ((__clang_major__ * 100) + __clang_minor__) >= 400
+"1"
+#else
+"0"
+#endif
+"c_function_prototypes\n"
+"C_FEATURE:"
+#if ((__clang_major__ * 100) + __clang_minor__) >= 400 && defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901L
+"1"
+#else
+"0"
+#endif
+"c_restrict\n"
+"C_FEATURE:"
+#if ((__clang_major__ * 100) + __clang_minor__) >= 400 && defined(__STDC_VERSION__) && __STDC_VERSION__ >= 201112L
+"1"
+#else
+"0"
+#endif
+"c_static_assert\n"
+"C_FEATURE:"
+#if ((__clang_major__ * 100) + __clang_minor__) >= 400 && defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901L
+"1"
+#else
+"0"
+#endif
+"c_variadic_macros\n"
+
+};
+
+int main(int argc, char** argv) { (void)argv; return features[argc]; }
diff --git a/Hw6/cmake-build-debug/CMakeFiles/feature_tests.cxx b/Hw6/cmake-build-debug/CMakeFiles/feature_tests.cxx
new file mode 100644
index 0000000..34d2e8c
--- /dev/null
+++ b/Hw6/cmake-build-debug/CMakeFiles/feature_tests.cxx
@@ -0,0 +1,405 @@
+
+ const char features[] = {"\n"
+"CXX_FEATURE:"
+#if ((__clang_major__ * 100) + __clang_minor__) >= 400 && __has_feature(cxx_aggregate_nsdmi)
+"1"
+#else
+"0"
+#endif
+"cxx_aggregate_default_initializers\n"
+"CXX_FEATURE:"
+#if ((__clang_major__ * 100) + __clang_minor__) >= 400 && __has_feature(cxx_alias_templates)
+"1"
+#else
+"0"
+#endif
+"cxx_alias_templates\n"
+"CXX_FEATURE:"
+#if ((__clang_major__ * 100) + __clang_minor__) >= 400 && __has_feature(cxx_alignas)
+"1"
+#else
+"0"
+#endif
+"cxx_alignas\n"
+"CXX_FEATURE:"
+#if ((__clang_major__ * 100) + __clang_minor__) >= 400 && __has_feature(cxx_alignas)
+"1"
+#else
+"0"
+#endif
+"cxx_alignof\n"
+"CXX_FEATURE:"
+#if ((__clang_major__ * 100) + __clang_minor__) >= 400 && __has_feature(cxx_attributes)
+"1"
+#else
+"0"
+#endif
+"cxx_attributes\n"
+"CXX_FEATURE:"
+#if ((__clang_major__ * 100) + __clang_minor__) >= 501 && __cplusplus > 201103L
+"1"
+#else
+"0"
+#endif
+"cxx_attribute_deprecated\n"
+"CXX_FEATURE:"
+#if ((__clang_major__ * 100) + __clang_minor__) >= 400 && __has_feature(cxx_auto_type)
+"1"
+#else
+"0"
+#endif
+"cxx_auto_type\n"
+"CXX_FEATURE:"
+#if ((__clang_major__ * 100) + __clang_minor__) >= 400 && __has_feature(cxx_binary_literals)
+"1"
+#else
+"0"
+#endif
+"cxx_binary_literals\n"
+"CXX_FEATURE:"
+#if ((__clang_major__ * 100) + __clang_minor__) >= 400 && __has_feature(cxx_constexpr)
+"1"
+#else
+"0"
+#endif
+"cxx_constexpr\n"
+"CXX_FEATURE:"
+#if ((__clang_major__ * 100) + __clang_minor__) >= 400 && __has_feature(cxx_contextual_conversions)
+"1"
+#else
+"0"
+#endif
+"cxx_contextual_conversions\n"
+"CXX_FEATURE:"
+#if ((__clang_major__ * 100) + __clang_minor__) >= 400 && __has_feature(cxx_decltype)
+"1"
+#else
+"0"
+#endif
+"cxx_decltype\n"
+"CXX_FEATURE:"
+#if ((__clang_major__ * 100) + __clang_minor__) >= 501 && __cplusplus > 201103L
+"1"
+#else
+"0"
+#endif
+"cxx_decltype_auto\n"
+"CXX_FEATURE:"
+#if ((__clang_major__ * 100) + __clang_minor__) >= 400 && __has_feature(cxx_decltype_incomplete_return_types)
+"1"
+#else
+"0"
+#endif
+"cxx_decltype_incomplete_return_types\n"
+"CXX_FEATURE:"
+#if ((__clang_major__ * 100) + __clang_minor__) >= 400 && __has_feature(cxx_default_function_template_args)
+"1"
+#else
+"0"
+#endif
+"cxx_default_function_template_args\n"
+"CXX_FEATURE:"
+#if ((__clang_major__ * 100) + __clang_minor__) >= 400 && __has_feature(cxx_defaulted_functions)
+"1"
+#else
+"0"
+#endif
+"cxx_defaulted_functions\n"
+"CXX_FEATURE:"
+#if ((__clang_major__ * 100) + __clang_minor__) >= 400 && __has_feature(cxx_defaulted_functions)
+"1"
+#else
+"0"
+#endif
+"cxx_defaulted_move_initializers\n"
+"CXX_FEATURE:"
+#if ((__clang_major__ * 100) + __clang_minor__) >= 400 && __has_feature(cxx_delegating_constructors)
+"1"
+#else
+"0"
+#endif
+"cxx_delegating_constructors\n"
+"CXX_FEATURE:"
+#if ((__clang_major__ * 100) + __clang_minor__) >= 400 && __has_feature(cxx_deleted_functions)
+"1"
+#else
+"0"
+#endif
+"cxx_deleted_functions\n"
+"CXX_FEATURE:"
+#if ((__clang_major__ * 100) + __clang_minor__) >= 501 && __cplusplus > 201103L
+"1"
+#else
+"0"
+#endif
+"cxx_digit_separators\n"
+"CXX_FEATURE:"
+#if ((__clang_major__ * 100) + __clang_minor__) >= 400 && __cplusplus >= 201103L
+"1"
+#else
+"0"
+#endif
+"cxx_enum_forward_declarations\n"
+"CXX_FEATURE:"
+#if ((__clang_major__ * 100) + __clang_minor__) >= 400 && __has_feature(cxx_explicit_conversions)
+"1"
+#else
+"0"
+#endif
+"cxx_explicit_conversions\n"
+"CXX_FEATURE:"
+#if ((__clang_major__ * 100) + __clang_minor__) >= 400 && __cplusplus >= 201103L
+"1"
+#else
+"0"
+#endif
+"cxx_extended_friend_declarations\n"
+"CXX_FEATURE:"
+#if ((__clang_major__ * 100) + __clang_minor__) >= 400 && __cplusplus >= 201103L
+"1"
+#else
+"0"
+#endif
+"cxx_extern_templates\n"
+"CXX_FEATURE:"
+#if ((__clang_major__ * 100) + __clang_minor__) >= 400 && __has_feature(cxx_override_control)
+"1"
+#else
+"0"
+#endif
+"cxx_final\n"
+"CXX_FEATURE:"
+#if ((__clang_major__ * 100) + __clang_minor__) >= 400 && __cplusplus >= 201103L
+"1"
+#else
+"0"
+#endif
+"cxx_func_identifier\n"
+"CXX_FEATURE:"
+#if ((__clang_major__ * 100) + __clang_minor__) >= 400 && __has_feature(cxx_generalized_initializers)
+"1"
+#else
+"0"
+#endif
+"cxx_generalized_initializers\n"
+"CXX_FEATURE:"
+#if ((__clang_major__ * 100) + __clang_minor__) >= 501 && __cplusplus > 201103L
+"1"
+#else
+"0"
+#endif
+"cxx_generic_lambdas\n"
+"CXX_FEATURE:"
+#if ((__clang_major__ * 100) + __clang_minor__) >= 400 && __has_feature(cxx_inheriting_constructors)
+"1"
+#else
+"0"
+#endif
+"cxx_inheriting_constructors\n"
+"CXX_FEATURE:"
+#if ((__clang_major__ * 100) + __clang_minor__) >= 400 && __cplusplus >= 201103L
+"1"
+#else
+"0"
+#endif
+"cxx_inline_namespaces\n"
+"CXX_FEATURE:"
+#if ((__clang_major__ * 100) + __clang_minor__) >= 400 && __has_feature(cxx_lambdas)
+"1"
+#else
+"0"
+#endif
+"cxx_lambdas\n"
+"CXX_FEATURE:"
+#if ((__clang_major__ * 100) + __clang_minor__) >= 400 && __has_feature(cxx_init_captures)
+"1"
+#else
+"0"
+#endif
+"cxx_lambda_init_captures\n"
+"CXX_FEATURE:"
+#if ((__clang_major__ * 100) + __clang_minor__) >= 400 && __has_feature(cxx_local_type_template_args)
+"1"
+#else
+"0"
+#endif
+"cxx_local_type_template_args\n"
+"CXX_FEATURE:"
+#if ((__clang_major__ * 100) + __clang_minor__) >= 400 && __cplusplus >= 201103L
+"1"
+#else
+"0"
+#endif
+"cxx_long_long_type\n"
+"CXX_FEATURE:"
+#if ((__clang_major__ * 100) + __clang_minor__) >= 400 && __has_feature(cxx_noexcept)
+"1"
+#else
+"0"
+#endif
+"cxx_noexcept\n"
+"CXX_FEATURE:"
+#if ((__clang_major__ * 100) + __clang_minor__) >= 400 && __has_feature(cxx_nonstatic_member_init)
+"1"
+#else
+"0"
+#endif
+"cxx_nonstatic_member_init\n"
+"CXX_FEATURE:"
+#if ((__clang_major__ * 100) + __clang_minor__) >= 400 && __has_feature(cxx_nullptr)
+"1"
+#else
+"0"
+#endif
+"cxx_nullptr\n"
+"CXX_FEATURE:"
+#if ((__clang_major__ * 100) + __clang_minor__) >= 400 && __has_feature(cxx_override_control)
+"1"
+#else
+"0"
+#endif
+"cxx_override\n"
+"CXX_FEATURE:"
+#if ((__clang_major__ * 100) + __clang_minor__) >= 400 && __has_feature(cxx_range_for)
+"1"
+#else
+"0"
+#endif
+"cxx_range_for\n"
+"CXX_FEATURE:"
+#if ((__clang_major__ * 100) + __clang_minor__) >= 400 && __has_feature(cxx_raw_string_literals)
+"1"
+#else
+"0"
+#endif
+"cxx_raw_string_literals\n"
+"CXX_FEATURE:"
+#if ((__clang_major__ * 100) + __clang_minor__) >= 400 && __has_feature(cxx_reference_qualified_functions)
+"1"
+#else
+"0"
+#endif
+"cxx_reference_qualified_functions\n"
+"CXX_FEATURE:"
+#if ((__clang_major__ * 100) + __clang_minor__) >= 400 && __has_feature(cxx_relaxed_constexpr)
+"1"
+#else
+"0"
+#endif
+"cxx_relaxed_constexpr\n"
+"CXX_FEATURE:"
+#if ((__clang_major__ * 100) + __clang_minor__) >= 400 && __has_feature(cxx_return_type_deduction)
+"1"
+#else
+"0"
+#endif
+"cxx_return_type_deduction\n"
+"CXX_FEATURE:"
+#if ((__clang_major__ * 100) + __clang_minor__) >= 400 && __cplusplus >= 201103L
+"1"
+#else
+"0"
+#endif
+"cxx_right_angle_brackets\n"
+"CXX_FEATURE:"
+#if ((__clang_major__ * 100) + __clang_minor__) >= 400 && __has_feature(cxx_rvalue_references)
+"1"
+#else
+"0"
+#endif
+"cxx_rvalue_references\n"
+"CXX_FEATURE:"
+#if ((__clang_major__ * 100) + __clang_minor__) >= 400 && __cplusplus >= 201103L
+"1"
+#else
+"0"
+#endif
+"cxx_sizeof_member\n"
+"CXX_FEATURE:"
+#if ((__clang_major__ * 100) + __clang_minor__) >= 400 && __has_feature(cxx_static_assert)
+"1"
+#else
+"0"
+#endif
+"cxx_static_assert\n"
+"CXX_FEATURE:"
+#if ((__clang_major__ * 100) + __clang_minor__) >= 400 && __has_feature(cxx_strong_enums)
+"1"
+#else
+"0"
+#endif
+"cxx_strong_enums\n"
+"CXX_FEATURE:"
+#if ((__clang_major__ * 100) + __clang_minor__) >= 400 && __cplusplus >= 199711L
+"1"
+#else
+"0"
+#endif
+"cxx_template_template_parameters\n"
+"CXX_FEATURE:"
+#if ((__clang_major__ * 100) + __clang_minor__) >= 400 && __has_feature(cxx_thread_local)
+"1"
+#else
+"0"
+#endif
+"cxx_thread_local\n"
+"CXX_FEATURE:"
+#if ((__clang_major__ * 100) + __clang_minor__) >= 400 && __has_feature(cxx_trailing_return)
+"1"
+#else
+"0"
+#endif
+"cxx_trailing_return_types\n"
+"CXX_FEATURE:"
+#if ((__clang_major__ * 100) + __clang_minor__) >= 400 && __has_feature(cxx_unicode_literals)
+"1"
+#else
+"0"
+#endif
+"cxx_unicode_literals\n"
+"CXX_FEATURE:"
+#if ((__clang_major__ * 100) + __clang_minor__) >= 400 && __has_feature(cxx_generalized_initializers)
+"1"
+#else
+"0"
+#endif
+"cxx_uniform_initialization\n"
+"CXX_FEATURE:"
+#if ((__clang_major__ * 100) + __clang_minor__) >= 400 && __has_feature(cxx_unrestricted_unions)
+"1"
+#else
+"0"
+#endif
+"cxx_unrestricted_unions\n"
+"CXX_FEATURE:"
+#if ((__clang_major__ * 100) + __clang_minor__) >= 400 && __has_feature(cxx_user_literals)
+"1"
+#else
+"0"
+#endif
+"cxx_user_literals\n"
+"CXX_FEATURE:"
+#if ((__clang_major__ * 100) + __clang_minor__) >= 400 && __has_feature(cxx_variable_templates)
+"1"
+#else
+"0"
+#endif
+"cxx_variable_templates\n"
+"CXX_FEATURE:"
+#if ((__clang_major__ * 100) + __clang_minor__) >= 400 && __cplusplus >= 201103L
+"1"
+#else
+"0"
+#endif
+"cxx_variadic_macros\n"
+"CXX_FEATURE:"
+#if ((__clang_major__ * 100) + __clang_minor__) >= 400 && __has_feature(cxx_variadic_templates)
+"1"
+#else
+"0"
+#endif
+"cxx_variadic_templates\n"
+
+};
+
+int main(int argc, char** argv) { (void)argv; return features[argc]; }
diff --git a/Hw6/cmake-build-debug/ConwaysLife b/Hw6/cmake-build-debug/ConwaysLife
index 07d12ec..2bae8c8 100755
Binary files a/Hw6/cmake-build-debug/ConwaysLife and b/Hw6/cmake-build-debug/ConwaysLife differ
diff --git a/Hw6/cmake-build-debug/Hw6.cbp b/Hw6/cmake-build-debug/Hw6.cbp
index 1afcbc4..622573d 100644
--- a/Hw6/cmake-build-debug/Hw6.cbp
+++ b/Hw6/cmake-build-debug/Hw6.cbp
@@ -8,130 +8,143 @@
-
+
-
-
-
-
+
+
+
+
-
+
-
-
-
-
+
+
+
+
-
+
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
+
+
-
+
-
-
+
+
-
-
-
-
+
+
+
+
-
-
+
+
-
+
-
-
+
+
-
-
-
-
+
+
+
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
+
+
+
diff --git a/Hw6/cmake-build-debug/Makefile b/Hw6/cmake-build-debug/Makefile
index f316ea6..d55e01f 100644
--- a/Hw6/cmake-build-debug/Makefile
+++ b/Hw6/cmake-build-debug/Makefile
@@ -1,5 +1,5 @@
# CMAKE generated file: DO NOT EDIT!
-# Generated by "Unix Makefiles" Generator, CMake Version 3.15
+# Generated by "Unix Makefiles" Generator, CMake Version 3.14
# Default target executed when no arguments are given to make.
default_target: all
@@ -48,10 +48,10 @@ RM = /Applications/CLion.app/Contents/bin/cmake/mac/bin/cmake -E remove -f
EQUALS = =
# The top-level source directory on which CMake was run.
-CMAKE_SOURCE_DIR = /Users/brady/CLionProjects/CS3460-CPP/Hw6
+CMAKE_SOURCE_DIR = /Users/bradybodily/Repositories/CS3460/Hw6
# The top-level build directory on which CMake was run.
-CMAKE_BINARY_DIR = /Users/brady/CLionProjects/CS3460-CPP/Hw6/cmake-build-debug
+CMAKE_BINARY_DIR = /Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug
#=============================================================================
# Targets provided globally by CMake.
@@ -80,9 +80,9 @@ edit_cache/fast: edit_cache
# The main all target
all: cmake_check_build_system
- $(CMAKE_COMMAND) -E cmake_progress_start /Users/brady/CLionProjects/CS3460-CPP/Hw6/cmake-build-debug/CMakeFiles /Users/brady/CLionProjects/CS3460-CPP/Hw6/cmake-build-debug/CMakeFiles/progress.marks
+ $(CMAKE_COMMAND) -E cmake_progress_start /Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/CMakeFiles /Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/CMakeFiles/progress.marks
$(MAKE) -f CMakeFiles/Makefile2 all
- $(CMAKE_COMMAND) -E cmake_progress_start /Users/brady/CLionProjects/CS3460-CPP/Hw6/cmake-build-debug/CMakeFiles 0
+ $(CMAKE_COMMAND) -E cmake_progress_start /Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/CMakeFiles 0
.PHONY : all
# The main clean target
@@ -110,6 +110,19 @@ depend:
$(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1
.PHONY : depend
+#=============================================================================
+# Target rules for targets named ClangFormat
+
+# Build rule for target.
+ClangFormat: cmake_check_build_system
+ $(MAKE) -f CMakeFiles/Makefile2 ClangFormat
+.PHONY : ClangFormat
+
+# fast build rule for target.
+ClangFormat/fast:
+ $(MAKE) -f CMakeFiles/ClangFormat.dir/build.make CMakeFiles/ClangFormat.dir/build
+.PHONY : ClangFormat/fast
+
#=============================================================================
# Target rules for targets named ConwaysLife
@@ -347,6 +360,7 @@ help:
@echo "... depend"
@echo "... rebuild_cache"
@echo "... edit_cache"
+ @echo "... ClangFormat"
@echo "... ConwaysLife"
@echo "... LifeSimulator.o"
@echo "... LifeSimulator.i"
diff --git a/Hw6/cmake-build-debug/cmake_install.cmake b/Hw6/cmake-build-debug/cmake_install.cmake
index 9e5dd83..094203a 100644
--- a/Hw6/cmake-build-debug/cmake_install.cmake
+++ b/Hw6/cmake-build-debug/cmake_install.cmake
@@ -1,4 +1,4 @@
-# Install script for directory: /Users/brady/CLionProjects/CS3460-CPP/Hw6
+# Install script for directory: /Users/bradybodily/Repositories/CS3460/Hw6
# Set the install prefix
if(NOT DEFINED CMAKE_INSTALL_PREFIX)
@@ -40,5 +40,5 @@ endif()
string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT
"${CMAKE_INSTALL_MANIFEST_FILES}")
-file(WRITE "/Users/brady/CLionProjects/CS3460-CPP/Hw6/cmake-build-debug/${CMAKE_INSTALL_MANIFEST}"
+file(WRITE "/Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/${CMAKE_INSTALL_MANIFEST}"
"${CMAKE_INSTALL_MANIFEST_CONTENT}")
diff --git a/Hw6/cmake-build-debug/googletest-build/googletest/generated/GTestConfig.cmake b/Hw6/cmake-build-debug/googletest-build/googletest/generated/GTestConfig.cmake
new file mode 100644
index 0000000..771cb7e
--- /dev/null
+++ b/Hw6/cmake-build-debug/googletest-build/googletest/generated/GTestConfig.cmake
@@ -0,0 +1,33 @@
+
+####### Expanded from @PACKAGE_INIT@ by configure_package_config_file() #######
+####### Any changes to this file will be overwritten by the next CMake run ####
+####### The input file was Config.cmake.in ########
+
+get_filename_component(PACKAGE_PREFIX_DIR "${CMAKE_CURRENT_LIST_DIR}/../../../" ABSOLUTE)
+
+macro(set_and_check _var _file)
+ set(${_var} "${_file}")
+ if(NOT EXISTS "${_file}")
+ message(FATAL_ERROR "File or directory ${_file} referenced by variable ${_var} does not exist !")
+ endif()
+endmacro()
+
+macro(check_required_components _NAME)
+ foreach(comp ${${_NAME}_FIND_COMPONENTS})
+ if(NOT ${_NAME}_${comp}_FOUND)
+ if(${_NAME}_FIND_REQUIRED_${comp})
+ set(${_NAME}_FOUND FALSE)
+ endif()
+ endif()
+ endforeach()
+endmacro()
+
+####################################################################################
+include(CMakeFindDependencyMacro)
+if (ON)
+ set(THREADS_PREFER_PTHREAD_FLAG )
+ find_dependency(Threads)
+endif()
+
+include("${CMAKE_CURRENT_LIST_DIR}/GTestTargets.cmake")
+check_required_components("")
diff --git a/Hw6/cmake-build-debug/googletest-build/googletest/generated/GTestConfigVersion.cmake b/Hw6/cmake-build-debug/googletest-build/googletest/generated/GTestConfigVersion.cmake
new file mode 100644
index 0000000..90e89ef
--- /dev/null
+++ b/Hw6/cmake-build-debug/googletest-build/googletest/generated/GTestConfigVersion.cmake
@@ -0,0 +1,37 @@
+# This is a basic version file for the Config-mode of find_package().
+# It is used by write_basic_package_version_file() as input file for configure_file()
+# to create a version-file which can be installed along a config.cmake file.
+#
+# The created file sets PACKAGE_VERSION_EXACT if the current version string and
+# the requested version string are exactly the same and it sets
+# PACKAGE_VERSION_COMPATIBLE if the current version is >= requested version.
+# The variable CVF_VERSION must be set before calling configure_file().
+
+set(PACKAGE_VERSION "1.10.0")
+
+if(PACKAGE_VERSION VERSION_LESS PACKAGE_FIND_VERSION)
+ set(PACKAGE_VERSION_COMPATIBLE FALSE)
+else()
+ set(PACKAGE_VERSION_COMPATIBLE TRUE)
+ if(PACKAGE_FIND_VERSION STREQUAL PACKAGE_VERSION)
+ set(PACKAGE_VERSION_EXACT TRUE)
+ endif()
+endif()
+
+
+# if the installed project requested no architecture check, don't perform the check
+if("FALSE")
+ return()
+endif()
+
+# if the installed or the using project don't have CMAKE_SIZEOF_VOID_P set, ignore it:
+if("${CMAKE_SIZEOF_VOID_P}" STREQUAL "" OR "8" STREQUAL "")
+ return()
+endif()
+
+# check that the installed version has the same 32/64bit-ness as the one which is currently searching:
+if(NOT CMAKE_SIZEOF_VOID_P STREQUAL "8")
+ math(EXPR installedBits "8 * 8")
+ set(PACKAGE_VERSION "${PACKAGE_VERSION} (${installedBits}bit)")
+ set(PACKAGE_VERSION_UNSUITABLE TRUE)
+endif()
diff --git a/Hw6/cmake-build-debug/googletest-build/googletest/generated/gmock.pc b/Hw6/cmake-build-debug/googletest-build/googletest/generated/gmock.pc
new file mode 100644
index 0000000..15d4971
--- /dev/null
+++ b/Hw6/cmake-build-debug/googletest-build/googletest/generated/gmock.pc
@@ -0,0 +1,10 @@
+libdir=/usr/local/lib
+includedir=/usr/local/include
+
+Name: gmock
+Description: GoogleMock (without main() function)
+Version: 1.10.0
+URL: https://github.com/google/googletest
+Requires: gtest
+Libs: -L${libdir} -lgmock
+Cflags: -I${includedir} -DGTEST_HAS_PTHREAD=1
diff --git a/Hw6/cmake-build-debug/googletest-build/googletest/generated/gmock_main.pc b/Hw6/cmake-build-debug/googletest-build/googletest/generated/gmock_main.pc
new file mode 100644
index 0000000..32c88cc
--- /dev/null
+++ b/Hw6/cmake-build-debug/googletest-build/googletest/generated/gmock_main.pc
@@ -0,0 +1,10 @@
+libdir=/usr/local/lib
+includedir=/usr/local/include
+
+Name: gmock_main
+Description: GoogleMock (with main() function)
+Version: 1.10.0
+URL: https://github.com/google/googletest
+Requires: gmock
+Libs: -L${libdir} -lgmock_main
+Cflags: -I${includedir} -DGTEST_HAS_PTHREAD=1
diff --git a/Hw6/cmake-build-debug/googletest-build/googletest/generated/gtest.pc b/Hw6/cmake-build-debug/googletest-build/googletest/generated/gtest.pc
new file mode 100644
index 0000000..7748e23
--- /dev/null
+++ b/Hw6/cmake-build-debug/googletest-build/googletest/generated/gtest.pc
@@ -0,0 +1,9 @@
+libdir=/usr/local/lib
+includedir=/usr/local/include
+
+Name: gtest
+Description: GoogleTest (without main() function)
+Version: 1.10.0
+URL: https://github.com/google/googletest
+Libs: -L${libdir} -lgtest
+Cflags: -I${includedir} -DGTEST_HAS_PTHREAD=1
diff --git a/Hw6/cmake-build-debug/googletest-build/googletest/generated/gtest_main.pc b/Hw6/cmake-build-debug/googletest-build/googletest/generated/gtest_main.pc
new file mode 100644
index 0000000..3a055f6
--- /dev/null
+++ b/Hw6/cmake-build-debug/googletest-build/googletest/generated/gtest_main.pc
@@ -0,0 +1,10 @@
+libdir=/usr/local/lib
+includedir=/usr/local/include
+
+Name: gtest_main
+Description: GoogleTest (with main() function)
+Version: 1.10.0
+URL: https://github.com/google/googletest
+Requires: gtest
+Libs: -L${libdir} -lgtest_main
+Cflags: -I${includedir} -DGTEST_HAS_PTHREAD=1
diff --git a/Hw6/cmake-build-debug/googletest-download/CMakeCache.txt b/Hw6/cmake-build-debug/googletest-download/CMakeCache.txt
new file mode 100644
index 0000000..230138c
--- /dev/null
+++ b/Hw6/cmake-build-debug/googletest-download/CMakeCache.txt
@@ -0,0 +1,132 @@
+# This is the CMakeCache file.
+# For build in directory: /Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/googletest-download
+# It was generated by CMake: /Applications/CLion.app/Contents/bin/cmake/mac/bin/cmake
+# You can edit this file to change values found and used by cmake.
+# If you do not want to change any of the values, simply exit the editor.
+# If you do want to change a value, simply edit, save, and exit the editor.
+# The syntax for the file is as follows:
+# KEY:TYPE=VALUE
+# KEY is the name of a variable in the cache.
+# TYPE is a hint to GUIs for the type of VALUE, DO NOT EDIT TYPE!.
+# VALUE is the current value for the KEY.
+
+########################
+# EXTERNAL cache entries
+########################
+
+//Enable/Disable color output during build.
+CMAKE_COLOR_MAKEFILE:BOOL=ON
+
+//Enable/Disable output of compile commands during generation.
+CMAKE_EXPORT_COMPILE_COMMANDS:BOOL=OFF
+
+//Path to a program.
+CMAKE_INSTALL_NAME_TOOL:FILEPATH=/usr/bin/install_name_tool
+
+//Install path prefix, prepended onto install directories.
+CMAKE_INSTALL_PREFIX:PATH=/usr/local
+
+//Path to a program.
+CMAKE_MAKE_PROGRAM:FILEPATH=/usr/bin/make
+
+//Build architectures for OSX
+CMAKE_OSX_ARCHITECTURES:STRING=
+
+//Minimum OS X version to target for deployment (at runtime); newer
+// APIs weak linked. Set to empty string for default value.
+CMAKE_OSX_DEPLOYMENT_TARGET:STRING=
+
+//The product will be built against the headers and libraries located
+// inside the indicated SDK.
+CMAKE_OSX_SYSROOT:PATH=/Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk
+
+//Value Computed by CMake
+CMAKE_PROJECT_DESCRIPTION:STATIC=
+
+//Value Computed by CMake
+CMAKE_PROJECT_HOMEPAGE_URL:STATIC=
+
+//Value Computed by CMake
+CMAKE_PROJECT_NAME:STATIC=googletest-download
+
+//If set, runtime paths are not added when installing shared libraries,
+// but are added when building.
+CMAKE_SKIP_INSTALL_RPATH:BOOL=NO
+
+//If set, runtime paths are not added when using shared libraries.
+CMAKE_SKIP_RPATH:BOOL=NO
+
+//If this value is on, makefiles will be generated without the
+// .SILENT directive, and all commands will be echoed to the console
+// during the make. This is useful for debugging only. With Visual
+// Studio IDE projects all commands are done without /nologo.
+CMAKE_VERBOSE_MAKEFILE:BOOL=FALSE
+
+//Git command line client
+GIT_EXECUTABLE:FILEPATH=/usr/local/bin/git
+
+//Value Computed by CMake
+googletest-download_BINARY_DIR:STATIC=/Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/googletest-download
+
+//Value Computed by CMake
+googletest-download_SOURCE_DIR:STATIC=/Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/googletest-download
+
+
+########################
+# INTERNAL cache entries
+########################
+
+//This is the directory where this CMakeCache.txt was created
+CMAKE_CACHEFILE_DIR:INTERNAL=/Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/googletest-download
+//Major version of cmake used to create the current loaded cache
+CMAKE_CACHE_MAJOR_VERSION:INTERNAL=3
+//Minor version of cmake used to create the current loaded cache
+CMAKE_CACHE_MINOR_VERSION:INTERNAL=14
+//Patch version of cmake used to create the current loaded cache
+CMAKE_CACHE_PATCH_VERSION:INTERNAL=5
+//ADVANCED property for variable: CMAKE_COLOR_MAKEFILE
+CMAKE_COLOR_MAKEFILE-ADVANCED:INTERNAL=1
+//Path to CMake executable.
+CMAKE_COMMAND:INTERNAL=/Applications/CLion.app/Contents/bin/cmake/mac/bin/cmake
+//Path to cpack program executable.
+CMAKE_CPACK_COMMAND:INTERNAL=/Applications/CLion.app/Contents/bin/cmake/mac/bin/cpack
+//Path to ctest program executable.
+CMAKE_CTEST_COMMAND:INTERNAL=/Applications/CLion.app/Contents/bin/cmake/mac/bin/ctest
+//Path to cache edit program executable.
+CMAKE_EDIT_COMMAND:INTERNAL=/Applications/CLion.app/Contents/bin/cmake/mac/bin/ccmake
+//ADVANCED property for variable: CMAKE_EXPORT_COMPILE_COMMANDS
+CMAKE_EXPORT_COMPILE_COMMANDS-ADVANCED:INTERNAL=1
+//Name of external makefile project generator.
+CMAKE_EXTRA_GENERATOR:INTERNAL=
+//Name of generator.
+CMAKE_GENERATOR:INTERNAL=Unix Makefiles
+//Generator instance identifier.
+CMAKE_GENERATOR_INSTANCE:INTERNAL=
+//Name of generator platform.
+CMAKE_GENERATOR_PLATFORM:INTERNAL=
+//Name of generator toolset.
+CMAKE_GENERATOR_TOOLSET:INTERNAL=
+//Source directory with the top level CMakeLists.txt file for this
+// project
+CMAKE_HOME_DIRECTORY:INTERNAL=/Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/googletest-download
+//ADVANCED property for variable: CMAKE_INSTALL_NAME_TOOL
+CMAKE_INSTALL_NAME_TOOL-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_MAKE_PROGRAM
+CMAKE_MAKE_PROGRAM-ADVANCED:INTERNAL=1
+//number of local generators
+CMAKE_NUMBER_OF_MAKEFILES:INTERNAL=1
+//Platform information initialized
+CMAKE_PLATFORM_INFO_INITIALIZED:INTERNAL=1
+//Path to CMake installation.
+CMAKE_ROOT:INTERNAL=/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.14
+//ADVANCED property for variable: CMAKE_SKIP_INSTALL_RPATH
+CMAKE_SKIP_INSTALL_RPATH-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_SKIP_RPATH
+CMAKE_SKIP_RPATH-ADVANCED:INTERNAL=1
+//uname command
+CMAKE_UNAME:INTERNAL=/usr/bin/uname
+//ADVANCED property for variable: CMAKE_VERBOSE_MAKEFILE
+CMAKE_VERBOSE_MAKEFILE-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: GIT_EXECUTABLE
+GIT_EXECUTABLE-ADVANCED:INTERNAL=1
+
diff --git a/Hw6/cmake-build-debug/googletest-download/CMakeFiles/3.14.5/CMakeSystem.cmake b/Hw6/cmake-build-debug/googletest-download/CMakeFiles/3.14.5/CMakeSystem.cmake
new file mode 100644
index 0000000..1ce45c3
--- /dev/null
+++ b/Hw6/cmake-build-debug/googletest-download/CMakeFiles/3.14.5/CMakeSystem.cmake
@@ -0,0 +1,15 @@
+set(CMAKE_HOST_SYSTEM "Darwin-19.0.0")
+set(CMAKE_HOST_SYSTEM_NAME "Darwin")
+set(CMAKE_HOST_SYSTEM_VERSION "19.0.0")
+set(CMAKE_HOST_SYSTEM_PROCESSOR "x86_64")
+
+
+
+set(CMAKE_SYSTEM "Darwin-19.0.0")
+set(CMAKE_SYSTEM_NAME "Darwin")
+set(CMAKE_SYSTEM_VERSION "19.0.0")
+set(CMAKE_SYSTEM_PROCESSOR "x86_64")
+
+set(CMAKE_CROSSCOMPILING "FALSE")
+
+set(CMAKE_SYSTEM_LOADED 1)
diff --git a/Hw6/cmake-build-debug/googletest-download/CMakeFiles/CMakeDirectoryInformation.cmake b/Hw6/cmake-build-debug/googletest-download/CMakeFiles/CMakeDirectoryInformation.cmake
new file mode 100644
index 0000000..f15db20
--- /dev/null
+++ b/Hw6/cmake-build-debug/googletest-download/CMakeFiles/CMakeDirectoryInformation.cmake
@@ -0,0 +1,16 @@
+# CMAKE generated file: DO NOT EDIT!
+# Generated by "Unix Makefiles" Generator, CMake Version 3.14
+
+# Relative path conversion top directories.
+set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/googletest-download")
+set(CMAKE_RELATIVE_PATH_TOP_BINARY "/Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/googletest-download")
+
+# 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})
diff --git a/Hw6/cmake-build-debug/googletest-download/CMakeFiles/CMakeOutput.log b/Hw6/cmake-build-debug/googletest-download/CMakeFiles/CMakeOutput.log
new file mode 100644
index 0000000..3b53db7
--- /dev/null
+++ b/Hw6/cmake-build-debug/googletest-download/CMakeFiles/CMakeOutput.log
@@ -0,0 +1 @@
+The system is: Darwin - 19.0.0 - x86_64
diff --git a/Hw6/cmake-build-debug/googletest-download/CMakeFiles/CMakeRuleHashes.txt b/Hw6/cmake-build-debug/googletest-download/CMakeFiles/CMakeRuleHashes.txt
new file mode 100644
index 0000000..6fe5ba1
--- /dev/null
+++ b/Hw6/cmake-build-debug/googletest-download/CMakeFiles/CMakeRuleHashes.txt
@@ -0,0 +1,11 @@
+# Hashes of file build rules.
+23f9b1cb0107964ee462667e3cd9fb4e CMakeFiles/googletest
+c7eb360005729b38cdc0cbcea6b5d011 CMakeFiles/googletest-complete
+ca09c9d7d0c3da94a7db6370fabd9b26 googletest-prefix/src/googletest-stamp/googletest-build
+d9485d3f32a96f3cdd69185e48894864 googletest-prefix/src/googletest-stamp/googletest-configure
+d064f4f81ce9d90e2df4abfb990a34eb googletest-prefix/src/googletest-stamp/googletest-download
+71d6ad51d27296983e814138a2564ba8 googletest-prefix/src/googletest-stamp/googletest-install
+50222fc301dd52c00960edc36cc80623 googletest-prefix/src/googletest-stamp/googletest-mkdir
+88902ed27915607a513da6d9c8ac6edc googletest-prefix/src/googletest-stamp/googletest-patch
+11d7c0c64915b8e11ec50f7b138ca557 googletest-prefix/src/googletest-stamp/googletest-test
+764c89214c500dc149fa111bd774b848 googletest-prefix/src/googletest-stamp/googletest-update
diff --git a/Hw6/cmake-build-debug/googletest-download/CMakeFiles/Makefile.cmake b/Hw6/cmake-build-debug/googletest-download/CMakeFiles/Makefile.cmake
new file mode 100644
index 0000000..632fe4d
--- /dev/null
+++ b/Hw6/cmake-build-debug/googletest-download/CMakeFiles/Makefile.cmake
@@ -0,0 +1,47 @@
+# CMAKE generated file: DO NOT EDIT!
+# Generated by "Unix Makefiles" Generator, CMake Version 3.14
+
+# The generator used is:
+set(CMAKE_DEPENDS_GENERATOR "Unix Makefiles")
+
+# The top level Makefile was generated from the following files:
+set(CMAKE_MAKEFILE_DEPENDS
+ "CMakeCache.txt"
+ "/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.14/Modules/CMakeDetermineSystem.cmake"
+ "/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.14/Modules/CMakeGenericSystem.cmake"
+ "/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.14/Modules/CMakeInitializeConfigs.cmake"
+ "/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.14/Modules/CMakeSystem.cmake.in"
+ "/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.14/Modules/CMakeSystemSpecificInformation.cmake"
+ "/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.14/Modules/CMakeSystemSpecificInitialize.cmake"
+ "/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.14/Modules/CMakeUnixFindMake.cmake"
+ "/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.14/Modules/ExternalProject.cmake"
+ "/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.14/Modules/FindGit.cmake"
+ "/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.14/Modules/FindPackageHandleStandardArgs.cmake"
+ "/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.14/Modules/FindPackageMessage.cmake"
+ "/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.14/Modules/Platform/Darwin-Initialize.cmake"
+ "/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.14/Modules/Platform/Darwin.cmake"
+ "/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.14/Modules/Platform/UnixPaths.cmake"
+ "/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.14/Modules/RepositoryInfo.txt.in"
+ "CMakeFiles/3.14.5/CMakeSystem.cmake"
+ "CMakeLists.txt"
+ "googletest-prefix/tmp/googletest-cfgcmd.txt.in"
+ )
+
+# The corresponding makefile is:
+set(CMAKE_MAKEFILE_OUTPUTS
+ "Makefile"
+ "CMakeFiles/cmake.check_cache"
+ )
+
+# Byproducts of CMake generate step:
+set(CMAKE_MAKEFILE_PRODUCTS
+ "CMakeFiles/3.14.5/CMakeSystem.cmake"
+ "googletest-prefix/src/googletest-stamp/googletest-gitinfo.txt"
+ "googletest-prefix/tmp/googletest-cfgcmd.txt"
+ "CMakeFiles/CMakeDirectoryInformation.cmake"
+ )
+
+# Dependency information for all targets:
+set(CMAKE_DEPEND_INFO_FILES
+ "CMakeFiles/googletest.dir/DependInfo.cmake"
+ )
diff --git a/Hw6/cmake-build-debug/googletest-download/CMakeFiles/Makefile2 b/Hw6/cmake-build-debug/googletest-download/CMakeFiles/Makefile2
new file mode 100644
index 0000000..a34b1c5
--- /dev/null
+++ b/Hw6/cmake-build-debug/googletest-download/CMakeFiles/Makefile2
@@ -0,0 +1,113 @@
+# CMAKE generated file: DO NOT EDIT!
+# Generated by "Unix Makefiles" Generator, CMake Version 3.14
+
+# Default target executed when no arguments are given to make.
+default_target: all
+
+.PHONY : default_target
+
+# The main recursive all target
+all:
+
+.PHONY : all
+
+# The main recursive preinstall target
+preinstall:
+
+.PHONY : preinstall
+
+# The main recursive clean target
+clean:
+
+.PHONY : clean
+
+#=============================================================================
+# 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.
+
+# The shell in which to execute make rules.
+SHELL = /bin/sh
+
+# The CMake executable.
+CMAKE_COMMAND = /Applications/CLion.app/Contents/bin/cmake/mac/bin/cmake
+
+# The command to remove a file.
+RM = /Applications/CLion.app/Contents/bin/cmake/mac/bin/cmake -E remove -f
+
+# Escaping for special characters.
+EQUALS = =
+
+# The top-level source directory on which CMake was run.
+CMAKE_SOURCE_DIR = /Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/googletest-download
+
+# The top-level build directory on which CMake was run.
+CMAKE_BINARY_DIR = /Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/googletest-download
+
+#=============================================================================
+# Target rules for target CMakeFiles/googletest.dir
+
+# All Build rule for target.
+CMakeFiles/googletest.dir/all:
+ $(MAKE) -f CMakeFiles/googletest.dir/build.make CMakeFiles/googletest.dir/depend
+ $(MAKE) -f CMakeFiles/googletest.dir/build.make CMakeFiles/googletest.dir/build
+ @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/googletest-download/CMakeFiles --progress-num=1,2,3,4,5,6,7,8,9 "Built target googletest"
+.PHONY : CMakeFiles/googletest.dir/all
+
+# Include target in all.
+all: CMakeFiles/googletest.dir/all
+
+.PHONY : all
+
+# Build rule for subdir invocation for target.
+CMakeFiles/googletest.dir/rule: cmake_check_build_system
+ $(CMAKE_COMMAND) -E cmake_progress_start /Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/googletest-download/CMakeFiles 9
+ $(MAKE) -f CMakeFiles/Makefile2 CMakeFiles/googletest.dir/all
+ $(CMAKE_COMMAND) -E cmake_progress_start /Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/googletest-download/CMakeFiles 0
+.PHONY : CMakeFiles/googletest.dir/rule
+
+# Convenience name for target.
+googletest: CMakeFiles/googletest.dir/rule
+
+.PHONY : googletest
+
+# clean rule for target.
+CMakeFiles/googletest.dir/clean:
+ $(MAKE) -f CMakeFiles/googletest.dir/build.make CMakeFiles/googletest.dir/clean
+.PHONY : CMakeFiles/googletest.dir/clean
+
+# clean rule for target.
+clean: CMakeFiles/googletest.dir/clean
+
+.PHONY : clean
+
+#=============================================================================
+# Special targets to cleanup operation of make.
+
+# Special rule to run CMake to check the build system integrity.
+# No rule that depends on this can have commands that come from listfiles
+# because they might be regenerated.
+cmake_check_build_system:
+ $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0
+.PHONY : cmake_check_build_system
+
diff --git a/Hw6/cmake-build-debug/googletest-download/CMakeFiles/TargetDirectories.txt b/Hw6/cmake-build-debug/googletest-download/CMakeFiles/TargetDirectories.txt
new file mode 100644
index 0000000..0010216
--- /dev/null
+++ b/Hw6/cmake-build-debug/googletest-download/CMakeFiles/TargetDirectories.txt
@@ -0,0 +1,3 @@
+/Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/googletest-download/CMakeFiles/rebuild_cache.dir
+/Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/googletest-download/CMakeFiles/edit_cache.dir
+/Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/googletest-download/CMakeFiles/googletest.dir
diff --git a/Hw6/cmake-build-debug/googletest-download/CMakeFiles/cmake.check_cache b/Hw6/cmake-build-debug/googletest-download/CMakeFiles/cmake.check_cache
new file mode 100644
index 0000000..3dccd73
--- /dev/null
+++ b/Hw6/cmake-build-debug/googletest-download/CMakeFiles/cmake.check_cache
@@ -0,0 +1 @@
+# This file is generated by cmake for dependency checking of the CMakeCache.txt file
diff --git a/Hw6/cmake-build-debug/googletest-download/CMakeFiles/googletest-complete b/Hw6/cmake-build-debug/googletest-download/CMakeFiles/googletest-complete
new file mode 100644
index 0000000..e69de29
diff --git a/Hw6/cmake-build-debug/googletest-download/CMakeFiles/googletest.dir/DependInfo.cmake b/Hw6/cmake-build-debug/googletest-download/CMakeFiles/googletest.dir/DependInfo.cmake
new file mode 100644
index 0000000..19fab21
--- /dev/null
+++ b/Hw6/cmake-build-debug/googletest-download/CMakeFiles/googletest.dir/DependInfo.cmake
@@ -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 "")
diff --git a/Hw6/cmake-build-debug/googletest-download/CMakeFiles/googletest.dir/Labels.json b/Hw6/cmake-build-debug/googletest-download/CMakeFiles/googletest.dir/Labels.json
new file mode 100644
index 0000000..c17f632
--- /dev/null
+++ b/Hw6/cmake-build-debug/googletest-download/CMakeFiles/googletest.dir/Labels.json
@@ -0,0 +1,46 @@
+{
+ "sources" :
+ [
+ {
+ "file" : "/Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/googletest-download/CMakeFiles/googletest"
+ },
+ {
+ "file" : "/Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/googletest-download/CMakeFiles/googletest.rule"
+ },
+ {
+ "file" : "/Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/googletest-download/CMakeFiles/googletest-complete.rule"
+ },
+ {
+ "file" : "/Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/googletest-download/googletest-prefix/src/googletest-stamp/googletest-install.rule"
+ },
+ {
+ "file" : "/Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/googletest-download/googletest-prefix/src/googletest-stamp/googletest-mkdir.rule"
+ },
+ {
+ "file" : "/Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/googletest-download/googletest-prefix/src/googletest-stamp/googletest-download.rule"
+ },
+ {
+ "file" : "/Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/googletest-download/googletest-prefix/src/googletest-stamp/googletest-update.rule"
+ },
+ {
+ "file" : "/Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/googletest-download/googletest-prefix/src/googletest-stamp/googletest-patch.rule"
+ },
+ {
+ "file" : "/Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/googletest-download/googletest-prefix/src/googletest-stamp/googletest-configure.rule"
+ },
+ {
+ "file" : "/Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/googletest-download/googletest-prefix/src/googletest-stamp/googletest-build.rule"
+ },
+ {
+ "file" : "/Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/googletest-download/googletest-prefix/src/googletest-stamp/googletest-test.rule"
+ }
+ ],
+ "target" :
+ {
+ "labels" :
+ [
+ "googletest"
+ ],
+ "name" : "googletest"
+ }
+}
\ No newline at end of file
diff --git a/Hw6/cmake-build-debug/googletest-download/CMakeFiles/googletest.dir/Labels.txt b/Hw6/cmake-build-debug/googletest-download/CMakeFiles/googletest.dir/Labels.txt
new file mode 100644
index 0000000..6a0fa6d
--- /dev/null
+++ b/Hw6/cmake-build-debug/googletest-download/CMakeFiles/googletest.dir/Labels.txt
@@ -0,0 +1,14 @@
+# Target labels
+ googletest
+# Source files and their labels
+/Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/googletest-download/CMakeFiles/googletest
+/Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/googletest-download/CMakeFiles/googletest.rule
+/Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/googletest-download/CMakeFiles/googletest-complete.rule
+/Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/googletest-download/googletest-prefix/src/googletest-stamp/googletest-install.rule
+/Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/googletest-download/googletest-prefix/src/googletest-stamp/googletest-mkdir.rule
+/Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/googletest-download/googletest-prefix/src/googletest-stamp/googletest-download.rule
+/Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/googletest-download/googletest-prefix/src/googletest-stamp/googletest-update.rule
+/Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/googletest-download/googletest-prefix/src/googletest-stamp/googletest-patch.rule
+/Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/googletest-download/googletest-prefix/src/googletest-stamp/googletest-configure.rule
+/Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/googletest-download/googletest-prefix/src/googletest-stamp/googletest-build.rule
+/Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/googletest-download/googletest-prefix/src/googletest-stamp/googletest-test.rule
diff --git a/Hw6/cmake-build-debug/googletest-download/CMakeFiles/googletest.dir/build.make b/Hw6/cmake-build-debug/googletest-download/CMakeFiles/googletest.dir/build.make
new file mode 100644
index 0000000..b270c88
--- /dev/null
+++ b/Hw6/cmake-build-debug/googletest-download/CMakeFiles/googletest.dir/build.make
@@ -0,0 +1,147 @@
+# CMAKE generated file: DO NOT EDIT!
+# Generated by "Unix 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.
+
+# The shell in which to execute make rules.
+SHELL = /bin/sh
+
+# The CMake executable.
+CMAKE_COMMAND = /Applications/CLion.app/Contents/bin/cmake/mac/bin/cmake
+
+# The command to remove a file.
+RM = /Applications/CLion.app/Contents/bin/cmake/mac/bin/cmake -E remove -f
+
+# Escaping for special characters.
+EQUALS = =
+
+# The top-level source directory on which CMake was run.
+CMAKE_SOURCE_DIR = /Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/googletest-download
+
+# The top-level build directory on which CMake was run.
+CMAKE_BINARY_DIR = /Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/googletest-download
+
+# Utility rule file for googletest.
+
+# Include the progress variables for this target.
+include CMakeFiles/googletest.dir/progress.make
+
+CMakeFiles/googletest: CMakeFiles/googletest-complete
+
+
+CMakeFiles/googletest-complete: googletest-prefix/src/googletest-stamp/googletest-install
+CMakeFiles/googletest-complete: googletest-prefix/src/googletest-stamp/googletest-mkdir
+CMakeFiles/googletest-complete: googletest-prefix/src/googletest-stamp/googletest-download
+CMakeFiles/googletest-complete: googletest-prefix/src/googletest-stamp/googletest-update
+CMakeFiles/googletest-complete: googletest-prefix/src/googletest-stamp/googletest-patch
+CMakeFiles/googletest-complete: googletest-prefix/src/googletest-stamp/googletest-configure
+CMakeFiles/googletest-complete: googletest-prefix/src/googletest-stamp/googletest-build
+CMakeFiles/googletest-complete: googletest-prefix/src/googletest-stamp/googletest-install
+CMakeFiles/googletest-complete: googletest-prefix/src/googletest-stamp/googletest-test
+ @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --blue --bold --progress-dir=/Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/googletest-download/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Completed 'googletest'"
+ /Applications/CLion.app/Contents/bin/cmake/mac/bin/cmake -E make_directory /Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/googletest-download/CMakeFiles
+ /Applications/CLion.app/Contents/bin/cmake/mac/bin/cmake -E touch /Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/googletest-download/CMakeFiles/googletest-complete
+ /Applications/CLion.app/Contents/bin/cmake/mac/bin/cmake -E touch /Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/googletest-download/googletest-prefix/src/googletest-stamp/googletest-done
+
+googletest-prefix/src/googletest-stamp/googletest-install: googletest-prefix/src/googletest-stamp/googletest-build
+ @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --blue --bold --progress-dir=/Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/googletest-download/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "No install step for 'googletest'"
+ cd /Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/googletest-build && /Applications/CLion.app/Contents/bin/cmake/mac/bin/cmake -E echo_append
+ cd /Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/googletest-build && /Applications/CLion.app/Contents/bin/cmake/mac/bin/cmake -E touch /Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/googletest-download/googletest-prefix/src/googletest-stamp/googletest-install
+
+googletest-prefix/src/googletest-stamp/googletest-mkdir:
+ @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --blue --bold --progress-dir=/Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/googletest-download/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Creating directories for 'googletest'"
+ /Applications/CLion.app/Contents/bin/cmake/mac/bin/cmake -E make_directory /Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/googletest-src
+ /Applications/CLion.app/Contents/bin/cmake/mac/bin/cmake -E make_directory /Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/googletest-build
+ /Applications/CLion.app/Contents/bin/cmake/mac/bin/cmake -E make_directory /Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/googletest-download/googletest-prefix
+ /Applications/CLion.app/Contents/bin/cmake/mac/bin/cmake -E make_directory /Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/googletest-download/googletest-prefix/tmp
+ /Applications/CLion.app/Contents/bin/cmake/mac/bin/cmake -E make_directory /Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/googletest-download/googletest-prefix/src/googletest-stamp
+ /Applications/CLion.app/Contents/bin/cmake/mac/bin/cmake -E make_directory /Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/googletest-download/googletest-prefix/src
+ /Applications/CLion.app/Contents/bin/cmake/mac/bin/cmake -E make_directory /Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/googletest-download/googletest-prefix/src/googletest-stamp
+ /Applications/CLion.app/Contents/bin/cmake/mac/bin/cmake -E touch /Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/googletest-download/googletest-prefix/src/googletest-stamp/googletest-mkdir
+
+googletest-prefix/src/googletest-stamp/googletest-download: googletest-prefix/src/googletest-stamp/googletest-gitinfo.txt
+googletest-prefix/src/googletest-stamp/googletest-download: googletest-prefix/src/googletest-stamp/googletest-mkdir
+ @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --blue --bold --progress-dir=/Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/googletest-download/CMakeFiles --progress-num=$(CMAKE_PROGRESS_4) "Performing download step (git clone) for 'googletest'"
+ cd /Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug && /Applications/CLion.app/Contents/bin/cmake/mac/bin/cmake -P /Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/googletest-download/googletest-prefix/tmp/googletest-gitclone.cmake
+ cd /Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug && /Applications/CLion.app/Contents/bin/cmake/mac/bin/cmake -E touch /Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/googletest-download/googletest-prefix/src/googletest-stamp/googletest-download
+
+googletest-prefix/src/googletest-stamp/googletest-update: googletest-prefix/src/googletest-stamp/googletest-download
+ @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --blue --bold --progress-dir=/Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/googletest-download/CMakeFiles --progress-num=$(CMAKE_PROGRESS_5) "Performing update step for 'googletest'"
+ cd /Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/googletest-src && /Applications/CLion.app/Contents/bin/cmake/mac/bin/cmake -P /Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/googletest-download/googletest-prefix/tmp/googletest-gitupdate.cmake
+
+googletest-prefix/src/googletest-stamp/googletest-patch: googletest-prefix/src/googletest-stamp/googletest-download
+ @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --blue --bold --progress-dir=/Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/googletest-download/CMakeFiles --progress-num=$(CMAKE_PROGRESS_6) "No patch step for 'googletest'"
+ /Applications/CLion.app/Contents/bin/cmake/mac/bin/cmake -E echo_append
+ /Applications/CLion.app/Contents/bin/cmake/mac/bin/cmake -E touch /Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/googletest-download/googletest-prefix/src/googletest-stamp/googletest-patch
+
+googletest-prefix/src/googletest-stamp/googletest-configure: googletest-prefix/tmp/googletest-cfgcmd.txt
+googletest-prefix/src/googletest-stamp/googletest-configure: googletest-prefix/src/googletest-stamp/googletest-update
+googletest-prefix/src/googletest-stamp/googletest-configure: googletest-prefix/src/googletest-stamp/googletest-patch
+ @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --blue --bold --progress-dir=/Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/googletest-download/CMakeFiles --progress-num=$(CMAKE_PROGRESS_7) "No configure step for 'googletest'"
+ cd /Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/googletest-build && /Applications/CLion.app/Contents/bin/cmake/mac/bin/cmake -E echo_append
+ cd /Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/googletest-build && /Applications/CLion.app/Contents/bin/cmake/mac/bin/cmake -E touch /Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/googletest-download/googletest-prefix/src/googletest-stamp/googletest-configure
+
+googletest-prefix/src/googletest-stamp/googletest-build: googletest-prefix/src/googletest-stamp/googletest-configure
+ @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --blue --bold --progress-dir=/Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/googletest-download/CMakeFiles --progress-num=$(CMAKE_PROGRESS_8) "No build step for 'googletest'"
+ cd /Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/googletest-build && /Applications/CLion.app/Contents/bin/cmake/mac/bin/cmake -E echo_append
+ cd /Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/googletest-build && /Applications/CLion.app/Contents/bin/cmake/mac/bin/cmake -E touch /Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/googletest-download/googletest-prefix/src/googletest-stamp/googletest-build
+
+googletest-prefix/src/googletest-stamp/googletest-test: googletest-prefix/src/googletest-stamp/googletest-install
+ @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --blue --bold --progress-dir=/Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/googletest-download/CMakeFiles --progress-num=$(CMAKE_PROGRESS_9) "No test step for 'googletest'"
+ cd /Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/googletest-build && /Applications/CLion.app/Contents/bin/cmake/mac/bin/cmake -E echo_append
+ cd /Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/googletest-build && /Applications/CLion.app/Contents/bin/cmake/mac/bin/cmake -E touch /Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/googletest-download/googletest-prefix/src/googletest-stamp/googletest-test
+
+googletest: CMakeFiles/googletest
+googletest: CMakeFiles/googletest-complete
+googletest: googletest-prefix/src/googletest-stamp/googletest-install
+googletest: googletest-prefix/src/googletest-stamp/googletest-mkdir
+googletest: googletest-prefix/src/googletest-stamp/googletest-download
+googletest: googletest-prefix/src/googletest-stamp/googletest-update
+googletest: googletest-prefix/src/googletest-stamp/googletest-patch
+googletest: googletest-prefix/src/googletest-stamp/googletest-configure
+googletest: googletest-prefix/src/googletest-stamp/googletest-build
+googletest: googletest-prefix/src/googletest-stamp/googletest-test
+googletest: CMakeFiles/googletest.dir/build.make
+
+.PHONY : googletest
+
+# Rule to build all files generated by this target.
+CMakeFiles/googletest.dir/build: googletest
+
+.PHONY : CMakeFiles/googletest.dir/build
+
+CMakeFiles/googletest.dir/clean:
+ $(CMAKE_COMMAND) -P CMakeFiles/googletest.dir/cmake_clean.cmake
+.PHONY : CMakeFiles/googletest.dir/clean
+
+CMakeFiles/googletest.dir/depend:
+ cd /Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/googletest-download && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/googletest-download /Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/googletest-download /Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/googletest-download /Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/googletest-download /Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/googletest-download/CMakeFiles/googletest.dir/DependInfo.cmake --color=$(COLOR)
+.PHONY : CMakeFiles/googletest.dir/depend
+
diff --git a/Hw6/cmake-build-debug/googletest-download/CMakeFiles/googletest.dir/cmake_clean.cmake b/Hw6/cmake-build-debug/googletest-download/CMakeFiles/googletest.dir/cmake_clean.cmake
new file mode 100644
index 0000000..46d5865
--- /dev/null
+++ b/Hw6/cmake-build-debug/googletest-download/CMakeFiles/googletest.dir/cmake_clean.cmake
@@ -0,0 +1,17 @@
+file(REMOVE_RECURSE
+ "CMakeFiles/googletest"
+ "CMakeFiles/googletest-complete"
+ "googletest-prefix/src/googletest-stamp/googletest-install"
+ "googletest-prefix/src/googletest-stamp/googletest-mkdir"
+ "googletest-prefix/src/googletest-stamp/googletest-download"
+ "googletest-prefix/src/googletest-stamp/googletest-update"
+ "googletest-prefix/src/googletest-stamp/googletest-patch"
+ "googletest-prefix/src/googletest-stamp/googletest-configure"
+ "googletest-prefix/src/googletest-stamp/googletest-build"
+ "googletest-prefix/src/googletest-stamp/googletest-test"
+)
+
+# Per-language clean rules from dependency scanning.
+foreach(lang )
+ include(CMakeFiles/googletest.dir/cmake_clean_${lang}.cmake OPTIONAL)
+endforeach()
diff --git a/Hw6/cmake-build-debug/googletest-download/CMakeFiles/googletest.dir/depend.internal b/Hw6/cmake-build-debug/googletest-download/CMakeFiles/googletest.dir/depend.internal
new file mode 100644
index 0000000..3285e6b
--- /dev/null
+++ b/Hw6/cmake-build-debug/googletest-download/CMakeFiles/googletest.dir/depend.internal
@@ -0,0 +1,3 @@
+# CMAKE generated file: DO NOT EDIT!
+# Generated by "Unix Makefiles" Generator, CMake Version 3.14
+
diff --git a/Hw6/cmake-build-debug/googletest-download/CMakeFiles/googletest.dir/depend.make b/Hw6/cmake-build-debug/googletest-download/CMakeFiles/googletest.dir/depend.make
new file mode 100644
index 0000000..3285e6b
--- /dev/null
+++ b/Hw6/cmake-build-debug/googletest-download/CMakeFiles/googletest.dir/depend.make
@@ -0,0 +1,3 @@
+# CMAKE generated file: DO NOT EDIT!
+# Generated by "Unix Makefiles" Generator, CMake Version 3.14
+
diff --git a/Hw6/cmake-build-debug/googletest-download/CMakeFiles/googletest.dir/progress.make b/Hw6/cmake-build-debug/googletest-download/CMakeFiles/googletest.dir/progress.make
new file mode 100644
index 0000000..d4f6ce3
--- /dev/null
+++ b/Hw6/cmake-build-debug/googletest-download/CMakeFiles/googletest.dir/progress.make
@@ -0,0 +1,10 @@
+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
+CMAKE_PROGRESS_8 = 8
+CMAKE_PROGRESS_9 = 9
+
diff --git a/Hw6/cmake-build-debug/googletest-download/CMakeFiles/progress.marks b/Hw6/cmake-build-debug/googletest-download/CMakeFiles/progress.marks
new file mode 100644
index 0000000..ec63514
--- /dev/null
+++ b/Hw6/cmake-build-debug/googletest-download/CMakeFiles/progress.marks
@@ -0,0 +1 @@
+9
diff --git a/Hw6/cmake-build-debug/googletest-download/CMakeLists.txt b/Hw6/cmake-build-debug/googletest-download/CMakeLists.txt
new file mode 100755
index 0000000..8c333e3
--- /dev/null
+++ b/Hw6/cmake-build-debug/googletest-download/CMakeLists.txt
@@ -0,0 +1,15 @@
+cmake_minimum_required(VERSION 3.10)
+
+project(googletest-download NONE)
+
+include(ExternalProject)
+ExternalProject_Add(googletest
+ GIT_REPOSITORY https://github.com/google/googletest.git
+ GIT_TAG master
+ SOURCE_DIR "/Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/googletest-src"
+ BINARY_DIR "/Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/googletest-build"
+ CONFIGURE_COMMAND ""
+ BUILD_COMMAND ""
+ INSTALL_COMMAND ""
+ TEST_COMMAND ""
+)
diff --git a/Hw6/cmake-build-debug/googletest-download/Makefile b/Hw6/cmake-build-debug/googletest-download/Makefile
new file mode 100644
index 0000000..dd191be
--- /dev/null
+++ b/Hw6/cmake-build-debug/googletest-download/Makefile
@@ -0,0 +1,148 @@
+# CMAKE generated file: DO NOT EDIT!
+# Generated by "Unix Makefiles" Generator, CMake Version 3.14
+
+# Default target executed when no arguments are given to make.
+default_target: all
+
+.PHONY : default_target
+
+# Allow only one "make -f Makefile2" at a time, but pass parallelism.
+.NOTPARALLEL:
+
+
+#=============================================================================
+# 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.
+
+# The shell in which to execute make rules.
+SHELL = /bin/sh
+
+# The CMake executable.
+CMAKE_COMMAND = /Applications/CLion.app/Contents/bin/cmake/mac/bin/cmake
+
+# The command to remove a file.
+RM = /Applications/CLion.app/Contents/bin/cmake/mac/bin/cmake -E remove -f
+
+# Escaping for special characters.
+EQUALS = =
+
+# The top-level source directory on which CMake was run.
+CMAKE_SOURCE_DIR = /Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/googletest-download
+
+# The top-level build directory on which CMake was run.
+CMAKE_BINARY_DIR = /Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/googletest-download
+
+#=============================================================================
+# Targets provided globally by CMake.
+
+# Special rule for the target rebuild_cache
+rebuild_cache:
+ @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running CMake to regenerate build system..."
+ /Applications/CLion.app/Contents/bin/cmake/mac/bin/cmake -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR)
+.PHONY : rebuild_cache
+
+# Special rule for the target rebuild_cache
+rebuild_cache/fast: rebuild_cache
+
+.PHONY : rebuild_cache/fast
+
+# Special rule for the target edit_cache
+edit_cache:
+ @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running CMake cache editor..."
+ /Applications/CLion.app/Contents/bin/cmake/mac/bin/ccmake -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR)
+.PHONY : edit_cache
+
+# Special rule for the target edit_cache
+edit_cache/fast: edit_cache
+
+.PHONY : edit_cache/fast
+
+# The main all target
+all: cmake_check_build_system
+ $(CMAKE_COMMAND) -E cmake_progress_start /Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/googletest-download/CMakeFiles /Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/googletest-download/CMakeFiles/progress.marks
+ $(MAKE) -f CMakeFiles/Makefile2 all
+ $(CMAKE_COMMAND) -E cmake_progress_start /Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/googletest-download/CMakeFiles 0
+.PHONY : all
+
+# The main clean target
+clean:
+ $(MAKE) -f CMakeFiles/Makefile2 clean
+.PHONY : clean
+
+# The main clean target
+clean/fast: clean
+
+.PHONY : clean/fast
+
+# Prepare targets for installation.
+preinstall: all
+ $(MAKE) -f CMakeFiles/Makefile2 preinstall
+.PHONY : preinstall
+
+# Prepare targets for installation.
+preinstall/fast:
+ $(MAKE) -f CMakeFiles/Makefile2 preinstall
+.PHONY : preinstall/fast
+
+# clear depends
+depend:
+ $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1
+.PHONY : depend
+
+#=============================================================================
+# Target rules for targets named googletest
+
+# Build rule for target.
+googletest: cmake_check_build_system
+ $(MAKE) -f CMakeFiles/Makefile2 googletest
+.PHONY : googletest
+
+# fast build rule for target.
+googletest/fast:
+ $(MAKE) -f CMakeFiles/googletest.dir/build.make CMakeFiles/googletest.dir/build
+.PHONY : googletest/fast
+
+# Help Target
+help:
+ @echo "The following are some of the valid targets for this Makefile:"
+ @echo "... all (the default if no target is provided)"
+ @echo "... clean"
+ @echo "... depend"
+ @echo "... rebuild_cache"
+ @echo "... edit_cache"
+ @echo "... googletest"
+.PHONY : help
+
+
+
+#=============================================================================
+# Special targets to cleanup operation of make.
+
+# Special rule to run CMake to check the build system integrity.
+# No rule that depends on this can have commands that come from listfiles
+# because they might be regenerated.
+cmake_check_build_system:
+ $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0
+.PHONY : cmake_check_build_system
+
diff --git a/Hw6/cmake-build-debug/googletest-download/cmake_install.cmake b/Hw6/cmake-build-debug/googletest-download/cmake_install.cmake
new file mode 100644
index 0000000..7852932
--- /dev/null
+++ b/Hw6/cmake-build-debug/googletest-download/cmake_install.cmake
@@ -0,0 +1,44 @@
+# Install script for directory: /Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/googletest-download
+
+# Set the install prefix
+if(NOT DEFINED CMAKE_INSTALL_PREFIX)
+ set(CMAKE_INSTALL_PREFIX "/usr/local")
+endif()
+string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")
+
+# Set the install configuration name.
+if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
+ if(BUILD_TYPE)
+ string(REGEX REPLACE "^[^A-Za-z0-9_]+" ""
+ CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}")
+ else()
+ set(CMAKE_INSTALL_CONFIG_NAME "")
+ endif()
+ message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
+endif()
+
+# Set the component getting installed.
+if(NOT CMAKE_INSTALL_COMPONENT)
+ if(COMPONENT)
+ message(STATUS "Install component: \"${COMPONENT}\"")
+ set(CMAKE_INSTALL_COMPONENT "${COMPONENT}")
+ else()
+ set(CMAKE_INSTALL_COMPONENT)
+ endif()
+endif()
+
+# Is this installation the result of a crosscompile?
+if(NOT DEFINED CMAKE_CROSSCOMPILING)
+ set(CMAKE_CROSSCOMPILING "FALSE")
+endif()
+
+if(CMAKE_INSTALL_COMPONENT)
+ set(CMAKE_INSTALL_MANIFEST "install_manifest_${CMAKE_INSTALL_COMPONENT}.txt")
+else()
+ set(CMAKE_INSTALL_MANIFEST "install_manifest.txt")
+endif()
+
+string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT
+ "${CMAKE_INSTALL_MANIFEST_FILES}")
+file(WRITE "/Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/googletest-download/${CMAKE_INSTALL_MANIFEST}"
+ "${CMAKE_INSTALL_MANIFEST_CONTENT}")
diff --git a/Hw6/cmake-build-debug/googletest-download/googletest-prefix/src/googletest-stamp/googletest-build b/Hw6/cmake-build-debug/googletest-download/googletest-prefix/src/googletest-stamp/googletest-build
new file mode 100644
index 0000000..e69de29
diff --git a/Hw6/cmake-build-debug/googletest-download/googletest-prefix/src/googletest-stamp/googletest-configure b/Hw6/cmake-build-debug/googletest-download/googletest-prefix/src/googletest-stamp/googletest-configure
new file mode 100644
index 0000000..e69de29
diff --git a/Hw6/cmake-build-debug/googletest-download/googletest-prefix/src/googletest-stamp/googletest-done b/Hw6/cmake-build-debug/googletest-download/googletest-prefix/src/googletest-stamp/googletest-done
new file mode 100644
index 0000000..e69de29
diff --git a/Hw6/cmake-build-debug/googletest-download/googletest-prefix/src/googletest-stamp/googletest-download b/Hw6/cmake-build-debug/googletest-download/googletest-prefix/src/googletest-stamp/googletest-download
new file mode 100644
index 0000000..e69de29
diff --git a/Hw6/cmake-build-debug/googletest-download/googletest-prefix/src/googletest-stamp/googletest-gitclone-lastrun.txt b/Hw6/cmake-build-debug/googletest-download/googletest-prefix/src/googletest-stamp/googletest-gitclone-lastrun.txt
new file mode 100644
index 0000000..72001df
--- /dev/null
+++ b/Hw6/cmake-build-debug/googletest-download/googletest-prefix/src/googletest-stamp/googletest-gitclone-lastrun.txt
@@ -0,0 +1,3 @@
+repository='https://github.com/google/googletest.git'
+module=''
+tag=''
diff --git a/Hw6/cmake-build-debug/googletest-download/googletest-prefix/src/googletest-stamp/googletest-gitinfo.txt b/Hw6/cmake-build-debug/googletest-download/googletest-prefix/src/googletest-stamp/googletest-gitinfo.txt
new file mode 100644
index 0000000..72001df
--- /dev/null
+++ b/Hw6/cmake-build-debug/googletest-download/googletest-prefix/src/googletest-stamp/googletest-gitinfo.txt
@@ -0,0 +1,3 @@
+repository='https://github.com/google/googletest.git'
+module=''
+tag=''
diff --git a/Hw6/cmake-build-debug/googletest-download/googletest-prefix/src/googletest-stamp/googletest-install b/Hw6/cmake-build-debug/googletest-download/googletest-prefix/src/googletest-stamp/googletest-install
new file mode 100644
index 0000000..e69de29
diff --git a/Hw6/cmake-build-debug/googletest-download/googletest-prefix/src/googletest-stamp/googletest-mkdir b/Hw6/cmake-build-debug/googletest-download/googletest-prefix/src/googletest-stamp/googletest-mkdir
new file mode 100644
index 0000000..e69de29
diff --git a/Hw6/cmake-build-debug/googletest-download/googletest-prefix/src/googletest-stamp/googletest-patch b/Hw6/cmake-build-debug/googletest-download/googletest-prefix/src/googletest-stamp/googletest-patch
new file mode 100644
index 0000000..e69de29
diff --git a/Hw6/cmake-build-debug/googletest-download/googletest-prefix/src/googletest-stamp/googletest-test b/Hw6/cmake-build-debug/googletest-download/googletest-prefix/src/googletest-stamp/googletest-test
new file mode 100644
index 0000000..e69de29
diff --git a/Hw6/cmake-build-debug/googletest-download/googletest-prefix/tmp/googletest-cfgcmd.txt b/Hw6/cmake-build-debug/googletest-download/googletest-prefix/tmp/googletest-cfgcmd.txt
new file mode 100644
index 0000000..6a6ed5f
--- /dev/null
+++ b/Hw6/cmake-build-debug/googletest-download/googletest-prefix/tmp/googletest-cfgcmd.txt
@@ -0,0 +1 @@
+cmd=''
diff --git a/Hw6/cmake-build-debug/googletest-download/googletest-prefix/tmp/googletest-cfgcmd.txt.in b/Hw6/cmake-build-debug/googletest-download/googletest-prefix/tmp/googletest-cfgcmd.txt.in
new file mode 100644
index 0000000..b3f09ef
--- /dev/null
+++ b/Hw6/cmake-build-debug/googletest-download/googletest-prefix/tmp/googletest-cfgcmd.txt.in
@@ -0,0 +1 @@
+cmd='@cmd@'
diff --git a/Hw6/cmake-build-debug/googletest-download/googletest-prefix/tmp/googletest-gitclone.cmake b/Hw6/cmake-build-debug/googletest-download/googletest-prefix/tmp/googletest-gitclone.cmake
new file mode 100644
index 0000000..3c62724
--- /dev/null
+++ b/Hw6/cmake-build-debug/googletest-download/googletest-prefix/tmp/googletest-gitclone.cmake
@@ -0,0 +1,108 @@
+if("master" STREQUAL "")
+ message(FATAL_ERROR "Tag for git checkout should not be empty.")
+endif()
+
+set(run 0)
+
+if("/Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/googletest-download/googletest-prefix/src/googletest-stamp/googletest-gitinfo.txt" IS_NEWER_THAN "/Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/googletest-download/googletest-prefix/src/googletest-stamp/googletest-gitclone-lastrun.txt")
+ set(run 1)
+endif()
+
+if(NOT run)
+ message(STATUS "Avoiding repeated git clone, stamp file is up to date: '/Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/googletest-download/googletest-prefix/src/googletest-stamp/googletest-gitclone-lastrun.txt'")
+ return()
+endif()
+
+execute_process(
+ COMMAND ${CMAKE_COMMAND} -E remove_directory "/Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/googletest-src"
+ RESULT_VARIABLE error_code
+ )
+if(error_code)
+ message(FATAL_ERROR "Failed to remove directory: '/Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/googletest-src'")
+endif()
+
+set(git_options)
+
+# disable cert checking if explicitly told not to do it
+set(tls_verify "")
+if(NOT "x" STREQUAL "x" AND NOT tls_verify)
+ list(APPEND git_options
+ -c http.sslVerify=false)
+endif()
+
+set(git_clone_options)
+
+set(git_shallow "")
+if(git_shallow)
+ list(APPEND git_clone_options --depth 1 --no-single-branch)
+endif()
+
+set(git_progress "")
+if(git_progress)
+ list(APPEND git_clone_options --progress)
+endif()
+
+set(git_config "")
+foreach(config IN LISTS git_config)
+ list(APPEND git_clone_options --config ${config})
+endforeach()
+
+# try the clone 3 times in case there is an odd git clone issue
+set(error_code 1)
+set(number_of_tries 0)
+while(error_code AND number_of_tries LESS 3)
+ execute_process(
+ COMMAND "/usr/local/bin/git" ${git_options} clone ${git_clone_options} --origin "origin" "https://github.com/google/googletest.git" "googletest-src"
+ WORKING_DIRECTORY "/Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug"
+ RESULT_VARIABLE error_code
+ )
+ math(EXPR number_of_tries "${number_of_tries} + 1")
+endwhile()
+if(number_of_tries GREATER 1)
+ message(STATUS "Had to git clone more than once:
+ ${number_of_tries} times.")
+endif()
+if(error_code)
+ message(FATAL_ERROR "Failed to clone repository: 'https://github.com/google/googletest.git'")
+endif()
+
+execute_process(
+ COMMAND "/usr/local/bin/git" ${git_options} checkout master --
+ WORKING_DIRECTORY "/Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/googletest-src"
+ RESULT_VARIABLE error_code
+ )
+if(error_code)
+ message(FATAL_ERROR "Failed to checkout tag: 'master'")
+endif()
+
+execute_process(
+ COMMAND "/usr/local/bin/git" ${git_options} submodule init
+ WORKING_DIRECTORY "/Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/googletest-src"
+ RESULT_VARIABLE error_code
+ )
+if(error_code)
+ message(FATAL_ERROR "Failed to init submodules in: '/Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/googletest-src'")
+endif()
+
+execute_process(
+ COMMAND "/usr/local/bin/git" ${git_options} submodule update --recursive --init
+ WORKING_DIRECTORY "/Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/googletest-src"
+ RESULT_VARIABLE error_code
+ )
+if(error_code)
+ message(FATAL_ERROR "Failed to update submodules in: '/Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/googletest-src'")
+endif()
+
+# Complete success, update the script-last-run stamp file:
+#
+execute_process(
+ COMMAND ${CMAKE_COMMAND} -E copy
+ "/Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/googletest-download/googletest-prefix/src/googletest-stamp/googletest-gitinfo.txt"
+ "/Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/googletest-download/googletest-prefix/src/googletest-stamp/googletest-gitclone-lastrun.txt"
+ WORKING_DIRECTORY "/Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/googletest-src"
+ RESULT_VARIABLE error_code
+ )
+if(error_code)
+ message(FATAL_ERROR "Failed to copy script-last-run stamp file: '/Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/googletest-download/googletest-prefix/src/googletest-stamp/googletest-gitclone-lastrun.txt'")
+endif()
+
diff --git a/Hw6/cmake-build-debug/googletest-download/googletest-prefix/tmp/googletest-gitupdate.cmake b/Hw6/cmake-build-debug/googletest-download/googletest-prefix/tmp/googletest-gitupdate.cmake
new file mode 100644
index 0000000..df56839
--- /dev/null
+++ b/Hw6/cmake-build-debug/googletest-download/googletest-prefix/tmp/googletest-gitupdate.cmake
@@ -0,0 +1,160 @@
+if("master" STREQUAL "")
+ message(FATAL_ERROR "Tag for git checkout should not be empty.")
+endif()
+
+execute_process(
+ COMMAND "/usr/local/bin/git" rev-list --max-count=1 HEAD
+ WORKING_DIRECTORY "/Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/googletest-src"
+ RESULT_VARIABLE error_code
+ OUTPUT_VARIABLE head_sha
+ OUTPUT_STRIP_TRAILING_WHITESPACE
+ )
+if(error_code)
+ message(FATAL_ERROR "Failed to get the hash for HEAD")
+endif()
+
+execute_process(
+ COMMAND "/usr/local/bin/git" show-ref master
+ WORKING_DIRECTORY "/Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/googletest-src"
+ OUTPUT_VARIABLE show_ref_output
+ )
+# If a remote ref is asked for, which can possibly move around,
+# we must always do a fetch and checkout.
+if("${show_ref_output}" MATCHES "remotes")
+ set(is_remote_ref 1)
+else()
+ set(is_remote_ref 0)
+endif()
+
+# Tag is in the form / (i.e. origin/master) we must strip
+# the remote from the tag.
+if("${show_ref_output}" MATCHES "refs/remotes/master")
+ string(REGEX MATCH "^([^/]+)/(.+)$" _unused "master")
+ set(git_remote "${CMAKE_MATCH_1}")
+ set(git_tag "${CMAKE_MATCH_2}")
+else()
+ set(git_remote "origin")
+ set(git_tag "master")
+endif()
+
+# This will fail if the tag does not exist (it probably has not been fetched
+# yet).
+execute_process(
+ COMMAND "/usr/local/bin/git" rev-list --max-count=1 master
+ WORKING_DIRECTORY "/Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/googletest-src"
+ RESULT_VARIABLE error_code
+ OUTPUT_VARIABLE tag_sha
+ OUTPUT_STRIP_TRAILING_WHITESPACE
+ )
+
+# Is the hash checkout out that we want?
+if(error_code OR is_remote_ref OR NOT ("${tag_sha}" STREQUAL "${head_sha}"))
+ execute_process(
+ COMMAND "/usr/local/bin/git" fetch
+ WORKING_DIRECTORY "/Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/googletest-src"
+ RESULT_VARIABLE error_code
+ )
+ if(error_code)
+ message(FATAL_ERROR "Failed to fetch repository 'https://github.com/google/googletest.git'")
+ endif()
+
+ if(is_remote_ref)
+ # Check if stash is needed
+ execute_process(
+ COMMAND "/usr/local/bin/git" status --porcelain
+ WORKING_DIRECTORY "/Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/googletest-src"
+ RESULT_VARIABLE error_code
+ OUTPUT_VARIABLE repo_status
+ )
+ if(error_code)
+ message(FATAL_ERROR "Failed to get the status")
+ endif()
+ string(LENGTH "${repo_status}" need_stash)
+
+ # If not in clean state, stash changes in order to be able to be able to
+ # perform git pull --rebase
+ if(need_stash)
+ execute_process(
+ COMMAND "/usr/local/bin/git" stash save --all;--quiet
+ WORKING_DIRECTORY "/Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/googletest-src"
+ RESULT_VARIABLE error_code
+ )
+ if(error_code)
+ message(FATAL_ERROR "Failed to stash changes")
+ endif()
+ endif()
+
+ # Pull changes from the remote branch
+ execute_process(
+ COMMAND "/usr/local/bin/git" rebase ${git_remote}/${git_tag}
+ WORKING_DIRECTORY "/Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/googletest-src"
+ RESULT_VARIABLE error_code
+ )
+ if(error_code)
+ # Rebase failed: Restore previous state.
+ execute_process(
+ COMMAND "/usr/local/bin/git" rebase --abort
+ WORKING_DIRECTORY "/Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/googletest-src"
+ )
+ if(need_stash)
+ execute_process(
+ COMMAND "/usr/local/bin/git" stash pop --index --quiet
+ WORKING_DIRECTORY "/Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/googletest-src"
+ )
+ endif()
+ message(FATAL_ERROR "\nFailed to rebase in: '/Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/googletest-src/'.\nYou will have to resolve the conflicts manually")
+ endif()
+
+ if(need_stash)
+ execute_process(
+ COMMAND "/usr/local/bin/git" stash pop --index --quiet
+ WORKING_DIRECTORY "/Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/googletest-src"
+ RESULT_VARIABLE error_code
+ )
+ if(error_code)
+ # Stash pop --index failed: Try again dropping the index
+ execute_process(
+ COMMAND "/usr/local/bin/git" reset --hard --quiet
+ WORKING_DIRECTORY "/Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/googletest-src"
+ RESULT_VARIABLE error_code
+ )
+ execute_process(
+ COMMAND "/usr/local/bin/git" stash pop --quiet
+ WORKING_DIRECTORY "/Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/googletest-src"
+ RESULT_VARIABLE error_code
+ )
+ if(error_code)
+ # Stash pop failed: Restore previous state.
+ execute_process(
+ COMMAND "/usr/local/bin/git" reset --hard --quiet ${head_sha}
+ WORKING_DIRECTORY "/Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/googletest-src"
+ )
+ execute_process(
+ COMMAND "/usr/local/bin/git" stash pop --index --quiet
+ WORKING_DIRECTORY "/Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/googletest-src"
+ )
+ message(FATAL_ERROR "\nFailed to unstash changes in: '/Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/googletest-src/'.\nYou will have to resolve the conflicts manually")
+ endif()
+ endif()
+ endif()
+ else()
+ execute_process(
+ COMMAND "/usr/local/bin/git" checkout master
+ WORKING_DIRECTORY "/Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/googletest-src"
+ RESULT_VARIABLE error_code
+ )
+ if(error_code)
+ message(FATAL_ERROR "Failed to checkout tag: 'master'")
+ endif()
+ endif()
+
+ execute_process(
+ COMMAND "/usr/local/bin/git" submodule update --recursive --init
+ WORKING_DIRECTORY "/Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/googletest-src/"
+ RESULT_VARIABLE error_code
+ )
+ if(error_code)
+ message(FATAL_ERROR "Failed to update submodules in: '/Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/googletest-src/'")
+ endif()
+endif()
+
diff --git a/Hw6/cmake-build-debug/googletest-src b/Hw6/cmake-build-debug/googletest-src
new file mode 160000
index 0000000..e08a460
--- /dev/null
+++ b/Hw6/cmake-build-debug/googletest-src
@@ -0,0 +1 @@
+Subproject commit e08a4602778b3cbea36dbd53724db0f18840e274
diff --git a/Hw6/main.cpp b/Hw6/main.cpp
index 5db58b0..f163d47 100644
--- a/Hw6/main.cpp
+++ b/Hw6/main.cpp
@@ -1,8 +1,45 @@
//
// Created by Brady Bodily on 11/5/19.
//
+#include "LifeSimulator.hpp"
+#include "PatternAcorn.hpp"
+#include "PatternBlinker.hpp"
+#include "PatternBlock.hpp"
+#include "PatternGlider.hpp"
+#include "PatternGosperGliderGun.hpp"
+#include "RendererConsole.hpp"
-int main(){
+#include
+#include
+int main()
+{
+ // Renderer and Simulator
+ RendererConsole rendererConsole = RendererConsole();
+ LifeSimulator lifeSimulator = LifeSimulator(100, 40);
+ // Objects
+ PatternGosperGliderGun patternGosperGliderGun = PatternGosperGliderGun();
+ PatternBlock patternBlock = PatternBlock();
+ PatternGlider patternGlider = PatternGlider();
+ PatternBlinker patternBlinker = PatternBlinker();
+ PatternAcorn patternAcorn = PatternAcorn();
+
+ // Adding objects to simulator
+ lifeSimulator.insertPattern(patternGosperGliderGun, 20, 20);
+ lifeSimulator.insertPattern(patternBlock, 0, 10);
+ lifeSimulator.insertPattern(patternGlider, 5, 10);
+ lifeSimulator.insertPattern(patternBlinker, 50, 10);
+ lifeSimulator.insertPattern(patternAcorn, 0, 23);
+
+ // Animation Demonstration
+ int x = 0;
+ while (x < 200)
+ {
+ rendererConsole.render(lifeSimulator);
+ lifeSimulator.update();
+ std::cout << std::endl;
+ std::this_thread::sleep_for(std::chrono::milliseconds(10));
+ x++;
+ }
return 0;
}
\ No newline at end of file
diff --git a/Hw6/rlutil.h b/Hw6/rlutil.h
new file mode 100644
index 0000000..aab7ec0
--- /dev/null
+++ b/Hw6/rlutil.h
@@ -0,0 +1,870 @@
+#pragma once
+/**
+ * File: rlutil.h
+ *
+ * About: Description
+ * This file provides some useful utilities for console mode
+ * roguelike game development with C and C++. It is aimed to
+ * be cross-platform (at least Windows and Linux).
+ *
+ * About: Copyright
+ * (C) 2010 Tapio Vierros
+ *
+ * About: Licensing
+ * See
+ */
+
+/// Define: RLUTIL_USE_ANSI
+/// Define this to use ANSI escape sequences also on Windows
+/// (defaults to using WinAPI instead).
+#if 0
+#define RLUTIL_USE_ANSI
+#endif
+
+/// Define: RLUTIL_STRING_T
+/// Define/typedef this to your preference to override rlutil's string type.
+///
+/// Defaults to std::string with C++ and char* with C.
+#if 0
+#define RLUTIL_STRING_T char*
+#endif
+
+#ifndef RLUTIL_INLINE
+#ifdef _MSC_VER
+#define RLUTIL_INLINE __inline
+#else
+#define RLUTIL_INLINE static __inline__
+#endif
+#endif
+
+#ifdef __cplusplus
+/// Common C++ headers
+#include // for getch()
+#include
+#include
+/// Namespace forward declarations
+namespace rlutil
+{
+ RLUTIL_INLINE void locate(int x, int y);
+}
+#else
+#include // for getch() / printf()
+#include // for strlen()
+RLUTIL_INLINE void locate(int x,
+ int y); // Forward declare for C to avoid warnings
+#endif // __cplusplus
+
+#ifdef _WIN32
+#include // for WinAPI and Sleep()
+#define _NO_OLDNAMES // for MinGW compatibility
+#include // for getch() and kbhit()
+#define getch _getch
+#define kbhit _kbhit
+#else
+#include // for getkey()
+#include // for kbhit()
+#include // for kbhit()
+#include // for getch() and kbhit()
+#include // for getch(), kbhit() and (u)sleep()
+
+/// Function: getch
+/// Get character without waiting for Return to be pressed.
+/// Windows has this in conio.h
+RLUTIL_INLINE int getch(void)
+{
+ // Here be magic.
+ struct termios oldt, newt;
+ int ch;
+ tcgetattr(STDIN_FILENO, &oldt);
+ newt = oldt;
+ newt.c_lflag &= ~(ICANON | ECHO);
+ tcsetattr(STDIN_FILENO, TCSANOW, &newt);
+ ch = getchar();
+ tcsetattr(STDIN_FILENO, TCSANOW, &oldt);
+ return ch;
+}
+
+/// Function: kbhit
+/// Determines if keyboard has been hit.
+/// Windows has this in conio.h
+RLUTIL_INLINE int kbhit(void)
+{
+ // Here be dragons.
+ static struct termios oldt, newt;
+ int cnt = 0;
+ tcgetattr(STDIN_FILENO, &oldt);
+ newt = oldt;
+ newt.c_lflag &= ~(ICANON | ECHO);
+ newt.c_iflag = 0; // input mode
+ newt.c_oflag = 0; // output mode
+ newt.c_cc[VMIN] = 1; // minimum time to wait
+ newt.c_cc[VTIME] = 1; // minimum characters to wait for
+ tcsetattr(STDIN_FILENO, TCSANOW, &newt);
+ ioctl(0, FIONREAD, &cnt); // Read count
+ struct timeval tv;
+ tv.tv_sec = 0;
+ tv.tv_usec = 100;
+ select(STDIN_FILENO + 1, NULL, NULL, NULL, &tv); // A small time delay
+ tcsetattr(STDIN_FILENO, TCSANOW, &oldt);
+ return cnt; // Return number of characters
+}
+#endif // _WIN32
+
+#ifndef gotoxy
+/// Function: gotoxy
+/// Same as .
+RLUTIL_INLINE void gotoxy(int x, int y)
+{
+#ifdef __cplusplus
+ rlutil::
+#endif
+ locate(x, y);
+}
+#endif // gotoxy
+
+#ifdef __cplusplus
+/// Namespace: rlutil
+/// In C++ all functions except , and are arranged
+/// under namespace rlutil. That is because some platforms have them defined
+/// outside of rlutil.
+namespace rlutil
+{
+#endif
+
+ /**
+ * Defs: Internal typedefs and macros
+ * RLUTIL_STRING_T - String type depending on which one of C or C++ is used
+ * RLUTIL_PRINT(str) - Printing macro independent of C/C++
+ */
+
+#ifdef __cplusplus
+#ifndef RLUTIL_STRING_T
+ typedef std::string RLUTIL_STRING_T;
+#endif // RLUTIL_STRING_T
+
+#define RLUTIL_PRINT(st) \
+ do \
+ { \
+ std::cout << st; \
+ } while (false)
+#else // __cplusplus
+#ifndef RLUTIL_STRING_T
+typedef const char* RLUTIL_STRING_T;
+#endif // RLUTIL_STRING_T
+
+#define RLUTIL_PRINT(st) printf("%s", st)
+#endif // __cplusplus
+
+ /**
+ * Enums: Color codes
+ *
+ * BLACK - Black
+ * BLUE - Blue
+ * GREEN - Green
+ * CYAN - Cyan
+ * RED - Red
+ * MAGENTA - Magenta / purple
+ * BROWN - Brown / dark yellow
+ * GREY - Grey / dark white
+ * DARKGREY - Dark grey / light black
+ * LIGHTBLUE - Light blue
+ * LIGHTGREEN - Light green
+ * LIGHTCYAN - Light cyan
+ * LIGHTRED - Light red
+ * LIGHTMAGENTA - Light magenta / light purple
+ * YELLOW - Yellow (bright)
+ * WHITE - White (bright)
+ */
+ enum
+ {
+ BLACK,
+ BLUE,
+ GREEN,
+ CYAN,
+ RED,
+ MAGENTA,
+ BROWN,
+ GREY,
+ DARKGREY,
+ LIGHTBLUE,
+ LIGHTGREEN,
+ LIGHTCYAN,
+ LIGHTRED,
+ LIGHTMAGENTA,
+ YELLOW,
+ WHITE
+ };
+
+ /**
+ * Consts: ANSI escape strings
+ *
+ * ANSI_CLS - Clears screen
+ * ANSI_CONSOLE_TITLE_PRE - Prefix for changing the window title, print the
+ * window title in between ANSI_CONSOLE_TITLE_POST - Suffix for changing the
+ * window title, print the window title in between ANSI_ATTRIBUTE_RESET -
+ * Resets all attributes ANSI_CURSOR_HIDE - Hides the cursor
+ * ANSI_CURSOR_SHOW - Shows the cursor
+ * ANSI_CURSOR_HOME - Moves the cursor home (0,0)
+ * ANSI_BLACK - Black
+ * ANSI_RED - Red
+ * ANSI_GREEN - Green
+ * ANSI_BROWN - Brown / dark yellow
+ * ANSI_BLUE - Blue
+ * ANSI_MAGENTA - Magenta / purple
+ * ANSI_CYAN - Cyan
+ * ANSI_GREY - Grey / dark white
+ * ANSI_DARKGREY - Dark grey / light black
+ * ANSI_LIGHTRED - Light red
+ * ANSI_LIGHTGREEN - Light green
+ * ANSI_YELLOW - Yellow (bright)
+ * ANSI_LIGHTBLUE - Light blue
+ * ANSI_LIGHTMAGENTA - Light magenta / light purple
+ * ANSI_LIGHTCYAN - Light cyan
+ * ANSI_WHITE - White (bright)
+ * ANSI_BACKGROUND_BLACK - Black background
+ * ANSI_BACKGROUND_RED - Red background
+ * ANSI_BACKGROUND_GREEN - Green background
+ * ANSI_BACKGROUND_YELLOW - Yellow background
+ * ANSI_BACKGROUND_BLUE - Blue background
+ * ANSI_BACKGROUND_MAGENTA - Magenta / purple background
+ * ANSI_BACKGROUND_CYAN - Cyan background
+ * ANSI_BACKGROUND_WHITE - White background
+ */
+ const RLUTIL_STRING_T ANSI_CLS = "\033[2J\033[3J";
+ const RLUTIL_STRING_T ANSI_CONSOLE_TITLE_PRE = "\033]0;";
+ const RLUTIL_STRING_T ANSI_CONSOLE_TITLE_POST = "\007";
+ const RLUTIL_STRING_T ANSI_ATTRIBUTE_RESET = "\033[0m";
+ const RLUTIL_STRING_T ANSI_CURSOR_HIDE = "\033[?25l";
+ const RLUTIL_STRING_T ANSI_CURSOR_SHOW = "\033[?25h";
+ const RLUTIL_STRING_T ANSI_CURSOR_HOME = "\033[H";
+ const RLUTIL_STRING_T ANSI_BLACK = "\033[22;30m";
+ const RLUTIL_STRING_T ANSI_RED = "\033[22;31m";
+ const RLUTIL_STRING_T ANSI_GREEN = "\033[22;32m";
+ const RLUTIL_STRING_T ANSI_BROWN = "\033[22;33m";
+ const RLUTIL_STRING_T ANSI_BLUE = "\033[22;34m";
+ const RLUTIL_STRING_T ANSI_MAGENTA = "\033[22;35m";
+ const RLUTIL_STRING_T ANSI_CYAN = "\033[22;36m";
+ const RLUTIL_STRING_T ANSI_GREY = "\033[22;37m";
+ const RLUTIL_STRING_T ANSI_DARKGREY = "\033[01;30m";
+ const RLUTIL_STRING_T ANSI_LIGHTRED = "\033[01;31m";
+ const RLUTIL_STRING_T ANSI_LIGHTGREEN = "\033[01;32m";
+ const RLUTIL_STRING_T ANSI_YELLOW = "\033[01;33m";
+ const RLUTIL_STRING_T ANSI_LIGHTBLUE = "\033[01;34m";
+ const RLUTIL_STRING_T ANSI_LIGHTMAGENTA = "\033[01;35m";
+ const RLUTIL_STRING_T ANSI_LIGHTCYAN = "\033[01;36m";
+ const RLUTIL_STRING_T ANSI_WHITE = "\033[01;37m";
+ const RLUTIL_STRING_T ANSI_BACKGROUND_BLACK = "\033[40m";
+ const RLUTIL_STRING_T ANSI_BACKGROUND_RED = "\033[41m";
+ const RLUTIL_STRING_T ANSI_BACKGROUND_GREEN = "\033[42m";
+ const RLUTIL_STRING_T ANSI_BACKGROUND_YELLOW = "\033[43m";
+ const RLUTIL_STRING_T ANSI_BACKGROUND_BLUE = "\033[44m";
+ const RLUTIL_STRING_T ANSI_BACKGROUND_MAGENTA = "\033[45m";
+ const RLUTIL_STRING_T ANSI_BACKGROUND_CYAN = "\033[46m";
+ const RLUTIL_STRING_T ANSI_BACKGROUND_WHITE = "\033[47m";
+ // Remaining colors not supported as background colors
+
+ /**
+ * Enums: Key codes for keyhit()
+ *
+ * KEY_ESCAPE - Escape
+ * KEY_ENTER - Enter
+ * KEY_SPACE - Space
+ * KEY_INSERT - Insert
+ * KEY_HOME - Home
+ * KEY_END - End
+ * KEY_DELETE - Delete
+ * KEY_PGUP - PageUp
+ * KEY_PGDOWN - PageDown
+ * KEY_UP - Up arrow
+ * KEY_DOWN - Down arrow
+ * KEY_LEFT - Left arrow
+ * KEY_RIGHT - Right arrow
+ * KEY_F1 - F1
+ * KEY_F2 - F2
+ * KEY_F3 - F3
+ * KEY_F4 - F4
+ * KEY_F5 - F5
+ * KEY_F6 - F6
+ * KEY_F7 - F7
+ * KEY_F8 - F8
+ * KEY_F9 - F9
+ * KEY_F10 - F10
+ * KEY_F11 - F11
+ * KEY_F12 - F12
+ * KEY_NUMDEL - Numpad del
+ * KEY_NUMPAD0 - Numpad 0
+ * KEY_NUMPAD1 - Numpad 1
+ * KEY_NUMPAD2 - Numpad 2
+ * KEY_NUMPAD3 - Numpad 3
+ * KEY_NUMPAD4 - Numpad 4
+ * KEY_NUMPAD5 - Numpad 5
+ * KEY_NUMPAD6 - Numpad 6
+ * KEY_NUMPAD7 - Numpad 7
+ * KEY_NUMPAD8 - Numpad 8
+ * KEY_NUMPAD9 - Numpad 9
+ */
+ enum
+ {
+ KEY_ESCAPE = 0,
+ KEY_ENTER = 1,
+ KEY_SPACE = 32,
+
+ KEY_INSERT = 2,
+ KEY_HOME = 3,
+ KEY_PGUP = 4,
+ KEY_DELETE = 5,
+ KEY_END = 6,
+ KEY_PGDOWN = 7,
+#ifndef _WIN32
+ KEY_BACKSPACE = 127,
+#else
+ KEY_BACKSPACE = 8,
+#endif
+
+ KEY_UP = 14,
+ KEY_DOWN = 15,
+ KEY_LEFT = 16,
+ KEY_RIGHT = 17,
+
+ KEY_F1 = 18,
+ KEY_F2 = 19,
+ KEY_F3 = 20,
+ KEY_F4 = 21,
+ KEY_F5 = 22,
+ KEY_F6 = 23,
+ KEY_F7 = 24,
+ KEY_F8 = 25,
+ KEY_F9 = 26,
+ KEY_F10 = 27,
+ KEY_F11 = 28,
+ KEY_F12 = 29,
+
+ KEY_NUMDEL = 30,
+ KEY_NUMPAD0 = 31,
+ KEY_NUMPAD1 = 127,
+ KEY_NUMPAD2 = 128,
+ KEY_NUMPAD3 = 129,
+ KEY_NUMPAD4 = 130,
+ KEY_NUMPAD5 = 131,
+ KEY_NUMPAD6 = 132,
+ KEY_NUMPAD7 = 133,
+ KEY_NUMPAD8 = 134,
+ KEY_NUMPAD9 = 135
+ };
+
+ /// Function: getkey
+ /// Reads a key press (blocking) and returns a key code.
+ ///
+ /// See
+ ///
+ /// Note:
+ /// Only Arrows, Esc, Enter and Space are currently working properly.
+ RLUTIL_INLINE int getkey(void)
+ {
+#ifndef _WIN32
+ int cnt = kbhit(); // for ANSI escapes processing
+#endif
+ int k = getch();
+ switch (k)
+ {
+ case 0:
+ {
+ int kk;
+ switch (kk = getch())
+ {
+ case 71:
+ return KEY_NUMPAD7;
+ case 72:
+ return KEY_NUMPAD8;
+ case 73:
+ return KEY_NUMPAD9;
+ case 75:
+ return KEY_NUMPAD4;
+ case 77:
+ return KEY_NUMPAD6;
+ case 79:
+ return KEY_NUMPAD1;
+ case 80:
+ return KEY_NUMPAD2;
+ case 81:
+ return KEY_NUMPAD3;
+ case 82:
+ return KEY_NUMPAD0;
+ case 83:
+ return KEY_NUMDEL;
+ default:
+ return kk - 59 + KEY_F1; // Function keys
+ }
+ }
+ case 224:
+ {
+ int kk;
+ switch (kk = getch())
+ {
+ case 71:
+ return KEY_HOME;
+ case 72:
+ return KEY_UP;
+ case 73:
+ return KEY_PGUP;
+ case 75:
+ return KEY_LEFT;
+ case 77:
+ return KEY_RIGHT;
+ case 79:
+ return KEY_END;
+ case 80:
+ return KEY_DOWN;
+ case 81:
+ return KEY_PGDOWN;
+ case 82:
+ return KEY_INSERT;
+ case 83:
+ return KEY_DELETE;
+ default:
+ return kk - 123 + KEY_F1; // Function keys
+ }
+ }
+ case 13:
+ return KEY_ENTER;
+#ifdef _WIN32
+ case 27:
+ return KEY_ESCAPE;
+#else // _WIN32
+ case 155: // single-character CSI
+ case 27:
+ {
+ // Process ANSI escape sequences
+ if (cnt >= 3 && getch() == '[')
+ {
+ switch (k = getch())
+ {
+ case 'A':
+ return KEY_UP;
+ case 'B':
+ return KEY_DOWN;
+ case 'C':
+ return KEY_RIGHT;
+ case 'D':
+ return KEY_LEFT;
+ }
+ }
+ else
+ return KEY_ESCAPE;
+ [[fallthrough]];
+ }
+#endif // _WIN32
+ default:
+ return k;
+ }
+ }
+
+ /// Function: nb_getch
+ /// Non-blocking getch(). Returns 0 if no key was pressed.
+ RLUTIL_INLINE int nb_getch(void)
+ {
+ if (kbhit())
+ return getch();
+ else
+ return 0;
+ }
+
+ /// Function: getANSIColor
+ /// Return ANSI color escape sequence for specified number 0-15.
+ ///
+ /// See
+ RLUTIL_INLINE RLUTIL_STRING_T getANSIColor(const int c)
+ {
+ switch (c)
+ {
+ case BLACK:
+ return ANSI_BLACK;
+ case BLUE:
+ return ANSI_BLUE; // non-ANSI
+ case GREEN:
+ return ANSI_GREEN;
+ case CYAN:
+ return ANSI_CYAN; // non-ANSI
+ case RED:
+ return ANSI_RED; // non-ANSI
+ case MAGENTA:
+ return ANSI_MAGENTA;
+ case BROWN:
+ return ANSI_BROWN;
+ case GREY:
+ return ANSI_GREY;
+ case DARKGREY:
+ return ANSI_DARKGREY;
+ case LIGHTBLUE:
+ return ANSI_LIGHTBLUE; // non-ANSI
+ case LIGHTGREEN:
+ return ANSI_LIGHTGREEN;
+ case LIGHTCYAN:
+ return ANSI_LIGHTCYAN; // non-ANSI;
+ case LIGHTRED:
+ return ANSI_LIGHTRED; // non-ANSI;
+ case LIGHTMAGENTA:
+ return ANSI_LIGHTMAGENTA;
+ case YELLOW:
+ return ANSI_YELLOW; // non-ANSI
+ case WHITE:
+ return ANSI_WHITE;
+ default:
+ return "";
+ }
+ }
+
+ /// Function: getANSIBackgroundColor
+ /// Return ANSI background color escape sequence for specified number 0-15.
+ ///
+ /// See
+ RLUTIL_INLINE RLUTIL_STRING_T getANSIBackgroundColor(const int c)
+ {
+ switch (c)
+ {
+ case BLACK:
+ return ANSI_BACKGROUND_BLACK;
+ case BLUE:
+ return ANSI_BACKGROUND_BLUE;
+ case GREEN:
+ return ANSI_BACKGROUND_GREEN;
+ case CYAN:
+ return ANSI_BACKGROUND_CYAN;
+ case RED:
+ return ANSI_BACKGROUND_RED;
+ case MAGENTA:
+ return ANSI_BACKGROUND_MAGENTA;
+ case BROWN:
+ return ANSI_BACKGROUND_YELLOW;
+ case GREY:
+ return ANSI_BACKGROUND_WHITE;
+ default:
+ return "";
+ }
+ }
+
+ /// Function: setColor
+ /// Change color specified by number (Windows / QBasic colors).
+ /// Don't change the background color
+ ///
+ /// See
+ RLUTIL_INLINE void setColor(int c)
+ {
+#if defined(_WIN32) && !defined(RLUTIL_USE_ANSI)
+ HANDLE hConsole = GetStdHandle(STD_OUTPUT_HANDLE);
+ CONSOLE_SCREEN_BUFFER_INFO csbi;
+
+ GetConsoleScreenBufferInfo(hConsole, &csbi);
+
+ SetConsoleTextAttribute(
+ hConsole,
+ (csbi.wAttributes & 0xFFF0) |
+ (WORD)c); // Foreground colors take up the least significant byte
+#else
+ RLUTIL_PRINT(getANSIColor(c));
+#endif
+ }
+
+ /// Function: setBackgroundColor
+ /// Change background color specified by number (Windows / QBasic colors).
+ /// Don't change the foreground color
+ ///
+ /// See
+ RLUTIL_INLINE void setBackgroundColor(int c)
+ {
+#if defined(_WIN32) && !defined(RLUTIL_USE_ANSI)
+ HANDLE hConsole = GetStdHandle(STD_OUTPUT_HANDLE);
+ CONSOLE_SCREEN_BUFFER_INFO csbi;
+
+ GetConsoleScreenBufferInfo(hConsole, &csbi);
+
+ SetConsoleTextAttribute(
+ hConsole, (csbi.wAttributes & 0xFF0F) |
+ (((WORD)c) << 4)); // Background colors take up the
+ // second-least significant byte
+#else
+ RLUTIL_PRINT(getANSIBackgroundColor(c));
+#endif
+ }
+
+ /// Function: saveDefaultColor
+ /// Call once to preserve colors for use in resetColor()
+ /// on Windows without ANSI, no-op otherwise
+ ///
+ /// See
+ /// See
+ RLUTIL_INLINE int saveDefaultColor(void)
+ {
+#if defined(_WIN32) && !defined(RLUTIL_USE_ANSI)
+ static char initialized = 0; // bool
+ static WORD attributes;
+
+ if (!initialized)
+ {
+ CONSOLE_SCREEN_BUFFER_INFO csbi;
+ GetConsoleScreenBufferInfo(GetStdHandle(STD_OUTPUT_HANDLE), &csbi);
+ attributes = csbi.wAttributes;
+ initialized = 1;
+ }
+ return (int)attributes;
+#else
+ return -1;
+#endif
+ }
+
+ /// Function: resetColor
+ /// Reset color to default
+ /// Requires a call to saveDefaultColor() to set the defaults
+ ///
+ /// See
+ /// See
+ /// See
+ RLUTIL_INLINE void resetColor(void)
+ {
+#if defined(_WIN32) && !defined(RLUTIL_USE_ANSI)
+ SetConsoleTextAttribute(GetStdHandle(STD_OUTPUT_HANDLE),
+ (WORD)saveDefaultColor());
+#else
+ RLUTIL_PRINT(ANSI_ATTRIBUTE_RESET);
+#endif
+ }
+
+ /// Function: cls
+ /// Clears screen, resets all attributes and moves cursor home.
+ RLUTIL_INLINE void cls(void)
+ {
+#if defined(_WIN32) && !defined(RLUTIL_USE_ANSI)
+ // Based on
+ // https://msdn.microsoft.com/en-us/library/windows/desktop/ms682022%28v=vs.85%29.aspx
+ const HANDLE hConsole = GetStdHandle(STD_OUTPUT_HANDLE);
+ const COORD coordScreen = {0, 0};
+ DWORD cCharsWritten;
+ CONSOLE_SCREEN_BUFFER_INFO csbi;
+
+ GetConsoleScreenBufferInfo(hConsole, &csbi);
+ const DWORD dwConSize = csbi.dwSize.X * csbi.dwSize.Y;
+ FillConsoleOutputCharacter(hConsole, (TCHAR)' ', dwConSize, coordScreen,
+ &cCharsWritten);
+
+ GetConsoleScreenBufferInfo(hConsole, &csbi);
+ FillConsoleOutputAttribute(hConsole, csbi.wAttributes, dwConSize, coordScreen,
+ &cCharsWritten);
+
+ SetConsoleCursorPosition(hConsole, coordScreen);
+#else
+ RLUTIL_PRINT(ANSI_CLS);
+ RLUTIL_PRINT(ANSI_CURSOR_HOME);
+#endif
+ }
+
+ /// Function: locate
+ /// Sets the cursor position to 1-based x,y.
+ RLUTIL_INLINE void locate(int x, int y)
+ {
+#if defined(_WIN32) && !defined(RLUTIL_USE_ANSI)
+ COORD coord;
+ // TODO: clamping/assert for x/y <= 0?
+ coord.X = (SHORT)(x - 1);
+ coord.Y = (SHORT)(y - 1); // Windows uses 0-based coordinates
+ SetConsoleCursorPosition(GetStdHandle(STD_OUTPUT_HANDLE), coord);
+#else // _WIN32 || USE_ANSI
+#ifdef __cplusplus
+ RLUTIL_PRINT("\033[" << y << ";" << x << "H");
+#else // __cplusplus
+ char buf[32];
+ sprintf(buf, "\033[%d;%df", y, x);
+ RLUTIL_PRINT(buf);
+#endif // __cplusplus
+#endif // _WIN32 || USE_ANSI
+ }
+
+/// Function: setString
+/// Prints the supplied string without advancing the cursor
+#ifdef __cplusplus
+ RLUTIL_INLINE void setString(const RLUTIL_STRING_T& str_)
+ {
+ const char* const str = str_.data();
+ std::size_t len = str_.size();
+#else // __cplusplus
+RLUTIL_INLINE void setString(RLUTIL_STRING_T str)
+{
+ unsigned int len = strlen(str);
+#endif // __cplusplus
+#if defined(_WIN32) && !defined(RLUTIL_USE_ANSI)
+ HANDLE hConsoleOutput = GetStdHandle(STD_OUTPUT_HANDLE);
+ DWORD numberOfCharsWritten;
+ CONSOLE_SCREEN_BUFFER_INFO csbi;
+
+ GetConsoleScreenBufferInfo(hConsoleOutput, &csbi);
+ WriteConsoleOutputCharacter(hConsoleOutput, str, (DWORD)len,
+ csbi.dwCursorPosition, &numberOfCharsWritten);
+#else // _WIN32 || USE_ANSI
+ RLUTIL_PRINT(str);
+#ifdef __cplusplus
+ RLUTIL_PRINT("\033[" << len << 'D');
+#else // __cplusplus
+ char buf[3 + 20 +
+ 1]; // 20 = max length of 64-bit unsigned int when printed as dec
+ sprintf(buf, "\033[%uD", len);
+ RLUTIL_PRINT(buf);
+#endif // __cplusplus
+#endif // _WIN32 || USE_ANSI
+ }
+
+ /// Function: setChar
+ /// Sets the character at the cursor without advancing the cursor
+ RLUTIL_INLINE void setChar(char ch)
+ {
+ const char buf[] = {ch, 0};
+ setString(buf);
+ }
+
+ /// Function: setCursorVisibility
+ /// Shows/hides the cursor.
+ RLUTIL_INLINE void setCursorVisibility(char visible)
+ {
+#if defined(_WIN32) && !defined(RLUTIL_USE_ANSI)
+ HANDLE hConsoleOutput = GetStdHandle(STD_OUTPUT_HANDLE);
+ CONSOLE_CURSOR_INFO structCursorInfo;
+ GetConsoleCursorInfo(hConsoleOutput,
+ &structCursorInfo); // Get current cursor size
+ structCursorInfo.bVisible = (visible ? TRUE : FALSE);
+ SetConsoleCursorInfo(hConsoleOutput, &structCursorInfo);
+#else // _WIN32 || USE_ANSI
+ RLUTIL_PRINT((visible ? ANSI_CURSOR_SHOW : ANSI_CURSOR_HIDE));
+#endif // _WIN32 || USE_ANSI
+ }
+
+ /// Function: hidecursor
+ /// Hides the cursor.
+ RLUTIL_INLINE void hidecursor(void) { setCursorVisibility(0); }
+
+ /// Function: showcursor
+ /// Shows the cursor.
+ RLUTIL_INLINE void showcursor(void) { setCursorVisibility(1); }
+
+ /// Function: msleep
+ /// Waits given number of milliseconds before continuing.
+ RLUTIL_INLINE void msleep(unsigned int ms)
+ {
+#ifdef _WIN32
+ Sleep(ms);
+#else
+ // usleep argument must be under 1 000 000
+ if (ms > 1000)
+ sleep(ms / 1000000);
+ usleep((ms % 1000000) * 1000);
+#endif
+ }
+
+ /// Function: trows
+ /// Get the number of rows in the terminal window or -1 on error.
+ RLUTIL_INLINE int trows(void)
+ {
+#ifdef _WIN32
+ CONSOLE_SCREEN_BUFFER_INFO csbi;
+ if (!GetConsoleScreenBufferInfo(GetStdHandle(STD_OUTPUT_HANDLE), &csbi))
+ return -1;
+ else
+ return csbi.srWindow.Bottom - csbi.srWindow.Top + 1; // Window height
+ // return csbi.dwSize.Y; // Buffer height
+#else
+#ifdef TIOCGSIZE
+ struct ttysize ts;
+ ioctl(STDIN_FILENO, TIOCGSIZE, &ts);
+ return ts.ts_lines;
+#elif defined(TIOCGWINSZ)
+ struct winsize ts;
+ ioctl(STDIN_FILENO, TIOCGWINSZ, &ts);
+ return ts.ws_row;
+#else // TIOCGSIZE
+ return -1;
+#endif // TIOCGSIZE
+#endif // _WIN32
+ }
+
+ /// Function: tcols
+ /// Get the number of columns in the terminal window or -1 on error.
+ RLUTIL_INLINE int tcols(void)
+ {
+#ifdef _WIN32
+ CONSOLE_SCREEN_BUFFER_INFO csbi;
+ if (!GetConsoleScreenBufferInfo(GetStdHandle(STD_OUTPUT_HANDLE), &csbi))
+ return -1;
+ else
+ return csbi.srWindow.Right - csbi.srWindow.Left + 1; // Window width
+ // return csbi.dwSize.X; // Buffer width
+#else
+#ifdef TIOCGSIZE
+ struct ttysize ts;
+ ioctl(STDIN_FILENO, TIOCGSIZE, &ts);
+ return ts.ts_cols;
+#elif defined(TIOCGWINSZ)
+ struct winsize ts;
+ ioctl(STDIN_FILENO, TIOCGWINSZ, &ts);
+ return ts.ws_col;
+#else // TIOCGSIZE
+ return -1;
+#endif // TIOCGSIZE
+#endif // _WIN32
+ }
+
+/// Function: anykey
+/// Waits until a key is pressed.
+/// In C++, it either takes no arguments
+/// or a template-type-argument-deduced
+/// argument.
+/// In C, it takes a const char* representing
+/// the message to be displayed, or NULL
+/// for no message.
+#ifdef __cplusplus
+ RLUTIL_INLINE void anykey()
+ {
+ getch();
+ }
+
+ template
+ void anykey(const T& msg)
+ {
+ RLUTIL_PRINT(msg);
+#else
+RLUTIL_INLINE void anykey(RLUTIL_STRING_T msg)
+{
+ if (msg)
+ RLUTIL_PRINT(msg);
+#endif // __cplusplus
+ getch();
+ }
+
+ RLUTIL_INLINE void setConsoleTitle(RLUTIL_STRING_T title)
+ {
+ const char* true_title =
+#ifdef __cplusplus
+ title.c_str();
+#else // __cplusplus
+ title;
+#endif // __cplusplus
+#if defined(_WIN32) && !defined(RLUTIL_USE_ANSI)
+ SetConsoleTitleA(true_title);
+#else
+ RLUTIL_PRINT(ANSI_CONSOLE_TITLE_PRE);
+ RLUTIL_PRINT(true_title);
+ RLUTIL_PRINT(ANSI_CONSOLE_TITLE_POST);
+#endif // defined(_WIN32) && !defined(RLUTIL_USE_ANSI)
+ }
+
+ // Classes are here at the end so that documentation is pretty.
+
+#ifdef __cplusplus
+ /// Class: CursorHider
+ /// RAII OOP wrapper for .
+ /// Hides the cursor and shows it again
+ /// when the object goes out of scope.
+ struct CursorHider
+ {
+ CursorHider() { hidecursor(); }
+ ~CursorHider() { showcursor(); }
+ };
+
+} // namespace rlutil
+#endif