added rlutil.h

This commit is contained in:
2019-11-05 23:02:16 -07:00
parent 41c1116d22
commit 9204af78c9
109 changed files with 4146 additions and 532 deletions

View File

@@ -1,5 +1,5 @@
<component name="ProjectCodeStyleConfiguration"> <component name="ProjectCodeStyleConfiguration">
<state> <state>
<option name="PREFERRED_PROJECT_CODE_STYLE" value="Default (1)" /> <option name="PREFERRED_PROJECT_CODE_STYLE" value="Default" />
</state> </state>
</component> </component>

View File

@@ -15,7 +15,8 @@ set(HEADER_FILES
PatternGosperGliderGun.hpp PatternGosperGliderGun.hpp
LifeSimulator.hpp LifeSimulator.hpp
Renderer.hpp Renderer.hpp
RendererConsole.hpp) RendererConsole.hpp
rlutil.h)
set(SOURCE_FILES set(SOURCE_FILES
PatternAcorn.cpp PatternAcorn.cpp

View File

@@ -1,9 +1,96 @@
//
// Created by Brady Bodily on 11/5/19.
//
#include "LifeSimulator.hpp" #include "LifeSimulator.hpp"
LifeSimulator::LifeSimulator(std::uint8_t sizeX, std::uint8_t sizeY) : 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<bool>());
nextScreen.push_back(std::vector<bool>());
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;
} }

View File

@@ -5,20 +5,26 @@
#ifndef CS3460_CPP_LIFESIMULATOR_HPP #ifndef CS3460_CPP_LIFESIMULATOR_HPP
#define CS3460_CPP_LIFESIMULATOR_HPP #define CS3460_CPP_LIFESIMULATOR_HPP
#include <cstdint>
#include "Pattern.hpp" #include "Pattern.hpp"
class LifeSimulator class LifeSimulator
{ {
private:
std::uint8_t sizeX;
std::uint8_t sizeY;
std::vector<std::vector<bool>> nextScreen;
std::vector<std::vector<bool>> currentScreen;
public: public:
LifeSimulator(std::uint8_t sizeX, std::uint8_t sizeY); LifeSimulator(std::uint8_t sizeX, std::uint8_t sizeY);
void insertPattern(const Pattern& pattern, std::uint8_t startX, std::uint8_t startY); void insertPattern(const Pattern& pattern, std::uint8_t startX, std::uint8_t startY);
void update(); void update();
std::uint8_t getSizeX() const; std::uint8_t getSizeX() const { return sizeX; };
std::uint8_t getSizeY() const; std::uint8_t getSizeY() const { return sizeY; };
bool getCell(std::uint8_t x, std::uint8_t y) const; bool getCell(std::uint8_t x, std::uint8_t y) const { return currentScreen[y + 1][x + 1]; };
;
}; };
#endif //CS3460_CPP_LIFESIMULATOR_HPP #endif //CS3460_CPP_LIFESIMULATOR_HPP

View File

@@ -5,7 +5,12 @@
#ifndef CS3460_CPP_PATTERN_HPP #ifndef CS3460_CPP_PATTERN_HPP
#define CS3460_CPP_PATTERN_HPP #define CS3460_CPP_PATTERN_HPP
#include "rlutil.h"
#include <array>
#include <cstdint> #include <cstdint>
#include <iostream>
#include <vector>
class Pattern class Pattern
{ {

View File

@@ -3,3 +3,24 @@
// //
#include "PatternAcorn.hpp" #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;
}

View File

@@ -5,4 +5,29 @@
#ifndef CS3460_CPP_PATTERNACORN_HPP #ifndef CS3460_CPP_PATTERNACORN_HPP
#define 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<std::array<bool, 4>, 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 #endif //CS3460_CPP_PATTERNACORN_HPP

View File

@@ -3,3 +3,18 @@
// //
#include "PatternBlinker.hpp" #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;
}

View File

@@ -5,4 +5,23 @@
#ifndef CS3460_CPP_PATTERNBLINKER_HPP #ifndef CS3460_CPP_PATTERNBLINKER_HPP
#define 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<std::array<bool, 5>, 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 #endif //CS3460_CPP_PATTERNBLINKER_HPP

View File

@@ -3,3 +3,20 @@
// //
#include "PatternBlock.hpp" #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;
}

View File

@@ -4,5 +4,29 @@
#ifndef CS3460_CPP_PATTERNBLOCK_HPP #ifndef CS3460_CPP_PATTERNBLOCK_HPP
#define 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<std::array<bool, 4>, 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 #endif //CS3460_CPP_PATTERNBLOCK_HPP

View File

@@ -4,12 +4,20 @@
#include "PatternGlider.hpp" #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][1];
cells[3][2]; cells[3][2];
cells[3][3]; cells[3][3];
cells[2][3]; cells[2][3];
cells[1][2]; cells[1][2];
} }

View File

@@ -5,28 +5,31 @@
#ifndef CS3460_CPP_PATTERNGLIDER_HPP #ifndef CS3460_CPP_PATTERNGLIDER_HPP
#define CS3460_CPP_PATTERNGLIDER_HPP #define CS3460_CPP_PATTERNGLIDER_HPP
#include <array>
#include "Pattern.hpp" #include "Pattern.hpp"
#include <array>
class PatternGlider : public Pattern class PatternGlider : public Pattern
{ {
private: private:
int X; std::uint8_t X;
int Y; std::uint8_t Y;
std::array<std::array<bool, 5>, 5> cells; std::array<std::array<bool, 5>, 5> cells;
public: public:
PatternGlider(); PatternGlider();
int getSizeX() std::uint8_t getSizeX() const
{ {
return X; return X;
}; };
int getSizeY(){ std::uint8_t getSizeY() const
{
return Y; return Y;
}; };
bool getCell(int x, int y){ bool getCell(std::uint8_t x, std::uint8_t y) const
{
return cells[x][y]; return cells[x][y];
}; };
}; };
#endif //CS3460_CPP_PATTERNGLIDER_HPP #endif //CS3460_CPP_PATTERNGLIDER_HPP

View File

@@ -3,3 +3,58 @@
// //
#include "PatternGosperGliderGun.hpp" #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;
}

View File

@@ -5,4 +5,29 @@
#ifndef CS3460_CPP_PATTERNGOSPERGLIDERGUN_HPP #ifndef CS3460_CPP_PATTERNGOSPERGLIDERGUN_HPP
#define 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<std::array<bool, 38>, 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 #endif //CS3460_CPP_PATTERNGOSPERGLIDERGUN_HPP

View File

@@ -3,3 +3,24 @@
// //
#include "RendererConsole.hpp" #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();
}

View File

@@ -5,4 +5,12 @@
#ifndef CS3460_CPP_RENDERERCONSOLE_HPP #ifndef CS3460_CPP_RENDERERCONSOLE_HPP
#define 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 #endif //CS3460_CPP_RENDERERCONSOLE_HPP

File diff suppressed because one or more lines are too long

View File

@@ -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_ARG1 "")
set(CMAKE_C_COMPILER_ID "AppleClang") 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_VERSION_INTERNAL "")
set(CMAKE_C_COMPILER_WRAPPER "") set(CMAKE_C_COMPILER_WRAPPER "")
set(CMAKE_C_STANDARD_COMPUTED_DEFAULT "11") 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_PLATFORM_ID "Darwin")
set(CMAKE_C_SIMULATE_ID "") set(CMAKE_C_SIMULATE_ID "")
set(CMAKE_C_COMPILER_FRONTEND_VARIANT "")
set(CMAKE_C_SIMULATE_VERSION "") 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_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_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_MT "")
set(CMAKE_COMPILER_IS_GNUCC ) set(CMAKE_COMPILER_IS_GNUCC )
set(CMAKE_C_COMPILER_LOADED 1) 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_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_DIRECTORIES "/Library/Developer/CommandLineTools/SDKs/MacOSX10.15.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_FRAMEWORK_DIRECTORIES "/Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk/System/Library/Frameworks")

View File

@@ -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_ARG1 "")
set(CMAKE_CXX_COMPILER_ID "AppleClang") 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_VERSION_INTERNAL "")
set(CMAKE_CXX_COMPILER_WRAPPER "") set(CMAKE_CXX_COMPILER_WRAPPER "")
set(CMAKE_CXX_STANDARD_COMPUTED_DEFAULT "98") 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_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_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_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_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_PLATFORM_ID "Darwin")
set(CMAKE_CXX_SIMULATE_ID "") set(CMAKE_CXX_SIMULATE_ID "")
set(CMAKE_CXX_COMPILER_FRONTEND_VARIANT "")
set(CMAKE_CXX_SIMULATE_VERSION "") 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_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_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_MT "")
set(CMAKE_COMPILER_IS_GNUCXX ) set(CMAKE_COMPILER_IS_GNUCXX )
set(CMAKE_CXX_COMPILER_LOADED 1) 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_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_DIRECTORIES "/Library/Developer/CommandLineTools/SDKs/MacOSX10.15.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_FRAMEWORK_DIRECTORIES "/Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk/System/Library/Frameworks")

View File

@@ -19,9 +19,6 @@
# define COMPILER_ID "Intel" # define COMPILER_ID "Intel"
# if defined(_MSC_VER) # if defined(_MSC_VER)
# define SIMULATE_ID "MSVC" # define SIMULATE_ID "MSVC"
# endif
# if defined(__GNUC__)
# define SIMULATE_ID "GNU"
# endif # endif
/* __INTEL_COMPILER = VRP */ /* __INTEL_COMPILER = VRP */
# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER/100) # define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER/100)
@@ -40,17 +37,6 @@
# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) # define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100)
# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) # define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100)
# endif # 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__) #elif defined(__PATHCC__)
# define COMPILER_ID "PathScale" # define COMPILER_ID "PathScale"
@@ -120,32 +106,48 @@
#elif defined(__IBMC__) && defined(__COMPILER_VER__) #elif defined(__IBMC__) && defined(__COMPILER_VER__)
# define COMPILER_ID "zOS" # define COMPILER_ID "zOS"
/* __IBMC__ = VRP */ # if defined(__ibmxl__)
# 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_MAJOR DEC(__ibmxl_version__)
# define COMPILER_VERSION_MINOR DEC(__ibmxl_release__) # define COMPILER_VERSION_MINOR DEC(__ibmxl_release__)
# define COMPILER_VERSION_PATCH DEC(__ibmxl_modification__) # define COMPILER_VERSION_PATCH DEC(__ibmxl_modification__)
# define COMPILER_VERSION_TWEAK DEC(__ibmxl_ptf_fix_level__) # define COMPILER_VERSION_TWEAK DEC(__ibmxl_ptf_fix_level__)
# else
#elif defined(__IBMC__) && !defined(__COMPILER_VER__) && __IBMC__ >= 800
# define COMPILER_ID "XL"
/* __IBMC__ = VRP */ /* __IBMC__ = VRP */
# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100) # define COMPILER_VERSION_MAJOR DEC(__IBMC__/100)
# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10) # define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10)
# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10) # define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10)
# endif
#elif defined(__ibmxl__) || (defined(__IBMC__) && !defined(__COMPILER_VER__) && __IBMC__ >= 800)
# define COMPILER_ID "XL"
# 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(__IBMC__) && !defined(__COMPILER_VER__) && __IBMC__ < 800
# define COMPILER_ID "VisualAge" # define COMPILER_ID "VisualAge"
# 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 */ /* __IBMC__ = VRP */
# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100) # define COMPILER_VERSION_MAJOR DEC(__IBMC__/100)
# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10) # define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10)
# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10) # define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10)
# endif
#elif defined(__PGI) #elif defined(__PGI)
# define COMPILER_ID "PGI" # define COMPILER_ID "PGI"
@@ -218,13 +220,6 @@
# endif # endif
# define COMPILER_VERSION_TWEAK DEC(__apple_build_version__) # 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__) #elif defined(__clang__)
# define COMPILER_ID "Clang" # define COMPILER_ID "Clang"
# if defined(_MSC_VER) # if defined(_MSC_VER)
@@ -283,7 +278,7 @@
# define COMPILER_VERSION_MINOR DEC(((__VER__) / 1000) % 1000) # define COMPILER_VERSION_MINOR DEC(((__VER__) / 1000) % 1000)
# define COMPILER_VERSION_PATCH DEC((__VER__) % 1000) # define COMPILER_VERSION_PATCH DEC((__VER__) % 1000)
# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) # 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_MAJOR DEC((__VER__) / 100)
# define COMPILER_VERSION_MINOR DEC((__VER__) - (((__VER__) / 100)*100)) # define COMPILER_VERSION_MINOR DEC((__VER__) - (((__VER__) / 100)*100))
# define COMPILER_VERSION_PATCH DEC(__SUBVERSION__) # define COMPILER_VERSION_PATCH DEC(__SUBVERSION__)
@@ -303,6 +298,20 @@
# define COMPILER_VERSION_PATCH DEC(SDCC % 10) # define COMPILER_VERSION_PATCH DEC(SDCC % 10)
# endif # 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 /* These compilers are either not known or too old to define an
identification macro. Try to identify the platform and guess that 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__) # if defined(__ICCARM__)
# define ARCHITECTURE_ID "ARM" # 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__) # elif defined(__ICCAVR__)
# define ARCHITECTURE_ID "AVR" # define ARCHITECTURE_ID "AVR"
# elif defined(__ICC430__)
# define ARCHITECTURE_ID "MSP430"
# else /* unknown architecture */ # else /* unknown architecture */
# define ARCHITECTURE_ID "" # define ARCHITECTURE_ID ""
# endif # endif

View File

@@ -19,9 +19,6 @@
# define COMPILER_ID "Intel" # define COMPILER_ID "Intel"
# if defined(_MSC_VER) # if defined(_MSC_VER)
# define SIMULATE_ID "MSVC" # define SIMULATE_ID "MSVC"
# endif
# if defined(__GNUC__)
# define SIMULATE_ID "GNU"
# endif # endif
/* __INTEL_COMPILER = VRP */ /* __INTEL_COMPILER = VRP */
# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER/100) # define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER/100)
@@ -40,17 +37,6 @@
# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) # define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100)
# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) # define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100)
# endif # 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__) #elif defined(__PATHCC__)
# define COMPILER_ID "PathScale" # define COMPILER_ID "PathScale"
@@ -120,32 +106,48 @@
#elif defined(__IBMCPP__) && defined(__COMPILER_VER__) #elif defined(__IBMCPP__) && defined(__COMPILER_VER__)
# define COMPILER_ID "zOS" # define COMPILER_ID "zOS"
/* __IBMCPP__ = VRP */ # if defined(__ibmxl__)
# 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_MAJOR DEC(__ibmxl_version__)
# define COMPILER_VERSION_MINOR DEC(__ibmxl_release__) # define COMPILER_VERSION_MINOR DEC(__ibmxl_release__)
# define COMPILER_VERSION_PATCH DEC(__ibmxl_modification__) # define COMPILER_VERSION_PATCH DEC(__ibmxl_modification__)
# define COMPILER_VERSION_TWEAK DEC(__ibmxl_ptf_fix_level__) # define COMPILER_VERSION_TWEAK DEC(__ibmxl_ptf_fix_level__)
# else
#elif defined(__IBMCPP__) && !defined(__COMPILER_VER__) && __IBMCPP__ >= 800
# define COMPILER_ID "XL"
/* __IBMCPP__ = VRP */ /* __IBMCPP__ = VRP */
# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) # define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100)
# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) # define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10)
# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) # define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10)
# endif
#elif defined(__ibmxl__) || (defined(__IBMCPP__) && !defined(__COMPILER_VER__) && __IBMCPP__ >= 800)
# define COMPILER_ID "XL"
# 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(__IBMCPP__) && !defined(__COMPILER_VER__) && __IBMCPP__ < 800
# define COMPILER_ID "VisualAge" # define COMPILER_ID "VisualAge"
# 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 */ /* __IBMCPP__ = VRP */
# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) # define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100)
# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) # define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10)
# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) # define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10)
# endif
#elif defined(__PGI) #elif defined(__PGI)
# define COMPILER_ID "PGI" # define COMPILER_ID "PGI"
@@ -212,13 +214,6 @@
# endif # endif
# define COMPILER_VERSION_TWEAK DEC(__apple_build_version__) # 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__) #elif defined(__clang__)
# define COMPILER_ID "Clang" # define COMPILER_ID "Clang"
# if defined(_MSC_VER) # if defined(_MSC_VER)
@@ -281,13 +276,27 @@
# define COMPILER_VERSION_MINOR DEC(((__VER__) / 1000) % 1000) # define COMPILER_VERSION_MINOR DEC(((__VER__) / 1000) % 1000)
# define COMPILER_VERSION_PATCH DEC((__VER__) % 1000) # define COMPILER_VERSION_PATCH DEC((__VER__) % 1000)
# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) # 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_MAJOR DEC((__VER__) / 100)
# define COMPILER_VERSION_MINOR DEC((__VER__) - (((__VER__) / 100)*100)) # define COMPILER_VERSION_MINOR DEC((__VER__) - (((__VER__) / 100)*100))
# define COMPILER_VERSION_PATCH DEC(__SUBVERSION__) # define COMPILER_VERSION_PATCH DEC(__SUBVERSION__)
# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) # define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__)
# endif # 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 /* These compilers are either not known or too old to define an
identification macro. Try to identify the platform and guess that 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__) # if defined(__ICCARM__)
# define ARCHITECTURE_ID "ARM" # 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__) # elif defined(__ICCAVR__)
# define ARCHITECTURE_ID "AVR" # define ARCHITECTURE_ID "AVR"
# elif defined(__ICC430__)
# define ARCHITECTURE_ID "MSP430"
# else /* unknown architecture */ # else /* unknown architecture */
# define ARCHITECTURE_ID "" # define ARCHITECTURE_ID ""
# endif # endif

View File

@@ -1,9 +1,9 @@
# CMAKE generated file: DO NOT EDIT! # 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. # Relative path conversion top directories.
set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/Users/brady/CLionProjects/CS3460-CPP/Hw6") set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/Users/bradybodily/Repositories/CS3460/Hw6")
set(CMAKE_RELATIVE_PATH_TOP_BINARY "/Users/brady/CLionProjects/CS3460-CPP/Hw6/cmake-build-debug") set(CMAKE_RELATIVE_PATH_TOP_BINARY "/Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug")
# Force unix paths in dependencies. # Force unix paths in dependencies.
set(CMAKE_FORCE_UNIX_PATHS 1) set(CMAKE_FORCE_UNIX_PATHS 1)

View File

@@ -1,6 +1,6 @@
The system is: Darwin - 19.0.0 - x86_64 The system is: Darwin - 19.0.0 - x86_64
Compiling the C compiler identification source file "CMakeCCompilerId.c" succeeded. 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: Build flags:
Id flags: Id flags:
@@ -10,10 +10,10 @@ The output was:
Compilation of the C compiler identification source "CMakeCCompilerId.c" produced "a.out" 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. 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: Build flags:
Id flags: Id flags:
@@ -23,264 +23,604 @@ The output was:
Compilation of the CXX compiler identification source "CMakeCXXCompilerId.cpp" produced "a.out" 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: Determining if the C compiler works passed 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_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
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: 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 Run Build Command(s):/usr/bin/make cmTC_3fbf7/fast
Building C object CMakeFiles/cmTC_f9596.dir/CMakeCCompilerABI.c.o /Library/Developer/CommandLineTools/usr/bin/make -f CMakeFiles/cmTC_3fbf7.dir/build.make CMakeFiles/cmTC_3fbf7.dir/build
/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 Building C object CMakeFiles/cmTC_3fbf7.dir/CMakeCCompilerABI.c.o
Apple LLVM version 10.0.1 (clang-1001.0.46.4) /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 Target: x86_64-apple-darwin19.0.0
Thread model: posix 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] 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 "/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 10.0.1 (clang-1001.0.46.4) default target x86_64-apple-darwin19.0.0 clang -cc1 version 11.0.0 (clang-1100.0.33.8) 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 "/Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk/usr/local/include"
ignoring nonexistent directory "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/Library/Frameworks" ignoring nonexistent directory "/Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk/Library/Frameworks"
#include "..." search starts here: #include "..." search starts here:
#include <...> search starts here: #include <...> search starts here:
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/10.0.1/include /Library/Developer/CommandLineTools/usr/lib/clang/11.0.0/include
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include /Library/Developer/CommandLineTools/usr/include
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/usr/include /Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk/usr/include
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/System/Library/Frameworks (framework directory) /Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk/System/Library/Frameworks (framework directory)
End of search list. End of search list.
Linking C executable cmTC_f9596 Linking C executable cmTC_3fbf7
/Applications/CLion.app/Contents/bin/cmake/mac/bin/cmake -E cmake_link_script CMakeFiles/cmTC_f9596.dir/link.txt --verbose=1 /Applications/CLion.app/Contents/bin/cmake/mac/bin/cmake -E cmake_link_script CMakeFiles/cmTC_3fbf7.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 /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 LLVM version 10.0.1 (clang-1001.0.46.4) Apple clang version 11.0.0 (clang-1100.0.33.8)
Target: x86_64-apple-darwin19.0.0 Target: x86_64-apple-darwin19.0.0
Thread model: posix Thread model: posix
InstalledDir: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin InstalledDir: /Library/Developer/CommandLineTools/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 "/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-450.3 @(#)PROGRAM:ld PROJECT:ld64-512.4
BUILD 18:16:53 Apr 5 2019 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 configured to support archs: armv6 armv7 armv7s arm64 arm64e arm64_32 i386 x86_64 x86_64h armv6m armv7k armv7m armv7em
Library search paths: 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: 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 Parsed C implicit include dir info from above output: rv=done
found start of include info found start of include info
found start of implicit 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: [/Library/Developer/CommandLineTools/usr/lib/clang/11.0.0/include]
add: [/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include] add: [/Library/Developer/CommandLineTools/usr/include]
add: [/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/usr/include] add: [/Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk/usr/include]
end of search list found 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 [/Library/Developer/CommandLineTools/usr/lib/clang/11.0.0/include] ==> [/Library/Developer/CommandLineTools/usr/lib/clang/11.0.0/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 [/Library/Developer/CommandLineTools/usr/include] ==> [/Library/Developer/CommandLineTools/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] collapse include dir [/Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk/usr/include] ==> [/Library/Developer/CommandLineTools/SDKs/MacOSX10.15.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] 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: Parsed C implicit link information from above output:
link line regex: [^( *|.*[/\])(ld|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\]+-)?ld|collect2)[^/\]*( |$)] 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: []
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: [Run Build Command(s):/usr/bin/make cmTC_3fbf7/fast ]
ignore line: [Building C object CMakeFiles/cmTC_f9596.dir/CMakeCCompilerABI.c.o] ignore line: [/Library/Developer/CommandLineTools/usr/bin/make -f CMakeFiles/cmTC_3fbf7.dir/build.make CMakeFiles/cmTC_3fbf7.dir/build]
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: [Building C object CMakeFiles/cmTC_3fbf7.dir/CMakeCCompilerABI.c.o]
ignore line: [Apple LLVM version 10.0.1 (clang-1001.0.46.4)] 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: [Target: x86_64-apple-darwin19.0.0]
ignore line: [Thread model: posix] 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: [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: [ "/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 10.0.1 (clang-1001.0.46.4) default target x86_64-apple-darwin19.0.0] 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 "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/usr/local/include"] ignore line: [ignoring nonexistent directory "/Library/Developer/CommandLineTools/SDKs/MacOSX10.15.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: [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: [#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: [ /Library/Developer/CommandLineTools/usr/lib/clang/11.0.0/include]
ignore line: [ /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include] ignore line: [ /Library/Developer/CommandLineTools/usr/include]
ignore line: [ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/usr/include] ignore line: [ /Library/Developer/CommandLineTools/SDKs/MacOSX10.15.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/SDKs/MacOSX10.15.sdk/System/Library/Frameworks (framework directory)]
ignore line: [End of search list.] ignore line: [End of search list.]
ignore line: [Linking C executable cmTC_f9596] ignore line: [Linking C executable cmTC_3fbf7]
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/CLion.app/Contents/bin/cmake/mac/bin/cmake -E cmake_link_script CMakeFiles/cmTC_3fbf7.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: [/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 LLVM version 10.0.1 (clang-1001.0.46.4)] ignore line: [Apple clang version 11.0.0 (clang-1100.0.33.8)]
ignore line: [Target: x86_64-apple-darwin19.0.0] ignore line: [Target: x86_64-apple-darwin19.0.0]
ignore line: [Thread model: posix] 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]
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] 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 [/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ld] ==> ignore arg [/Library/Developer/CommandLineTools/usr/bin/ld] ==> ignore
arg [-demangle] ==> ignore arg [-demangle] ==> ignore
arg [-lto_library] ==> ignore, skip following value 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 [-dynamic] ==> ignore
arg [-arch] ==> ignore arg [-arch] ==> ignore
arg [x86_64] ==> ignore arg [x86_64] ==> ignore
arg [-macosx_version_min] ==> ignore arg [-macosx_version_min] ==> ignore
arg [10.14.0] ==> ignore arg [10.15.0] ==> ignore
arg [-syslibroot] ==> 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 [-o] ==> ignore
arg [cmTC_f9596] ==> ignore arg [cmTC_3fbf7] ==> ignore
arg [-search_paths_first] ==> ignore arg [-search_paths_first] ==> ignore
arg [-headerpad_max_install_names] ==> ignore arg [-headerpad_max_install_names] ==> ignore
arg [-v] ==> 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 [-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] 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: [;/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/usr/lib] Library search paths: [;/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/] Framework search paths: [;/Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk/System/Library/Frameworks/]
remove lib [System] 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] remove lib [/Library/Developer/CommandLineTools/usr/lib/clang/11.0.0/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 library dir [/Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk/usr/lib] ==> [/Library/Developer/CommandLineTools/SDKs/MacOSX10.15.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] 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 libs: []
implicit dirs: [/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/usr/lib] implicit dirs: [/Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk/usr/lib]
implicit fwks: [/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/System/Library/Frameworks] 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: Determining if the CXX compiler works passed 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_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
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: 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 Run Build Command(s):/usr/bin/make cmTC_6cbf6/fast
Building CXX object CMakeFiles/cmTC_f1d95.dir/CMakeCXXCompilerABI.cpp.o /Library/Developer/CommandLineTools/usr/bin/make -f CMakeFiles/cmTC_6cbf6.dir/build.make CMakeFiles/cmTC_6cbf6.dir/build
/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 Building CXX object CMakeFiles/cmTC_6cbf6.dir/CMakeCXXCompilerABI.cpp.o
Apple LLVM version 10.0.1 (clang-1001.0.46.4) /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 Target: x86_64-apple-darwin19.0.0
Thread model: posix 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] 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 "/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 10.0.1 (clang-1001.0.46.4) default target x86_64-apple-darwin19.0.0 clang -cc1 version 11.0.0 (clang-1100.0.33.8) 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 "/Library/Developer/CommandLineTools/SDKs/MacOSX10.15.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 "/Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk/usr/local/include"
ignoring nonexistent directory "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/Library/Frameworks" ignoring nonexistent directory "/Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk/Library/Frameworks"
#include "..." search starts here: #include "..." search starts here:
#include <...> search starts here: #include <...> search starts here:
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include/c++/v1 /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/10.0.1/include /Library/Developer/CommandLineTools/usr/lib/clang/11.0.0/include
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include /Library/Developer/CommandLineTools/usr/include
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/usr/include /Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk/usr/include
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/System/Library/Frameworks (framework directory) /Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk/System/Library/Frameworks (framework directory)
End of search list. End of search list.
Linking CXX executable cmTC_f1d95 Linking CXX executable cmTC_6cbf6
/Applications/CLion.app/Contents/bin/cmake/mac/bin/cmake -E cmake_link_script CMakeFiles/cmTC_f1d95.dir/link.txt --verbose=1 /Applications/CLion.app/Contents/bin/cmake/mac/bin/cmake -E cmake_link_script CMakeFiles/cmTC_6cbf6.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 /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 LLVM version 10.0.1 (clang-1001.0.46.4) Apple clang version 11.0.0 (clang-1100.0.33.8)
Target: x86_64-apple-darwin19.0.0 Target: x86_64-apple-darwin19.0.0
Thread model: posix Thread model: posix
InstalledDir: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin InstalledDir: /Library/Developer/CommandLineTools/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 "/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-450.3 @(#)PROGRAM:ld PROJECT:ld64-512.4
BUILD 18:16:53 Apr 5 2019 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 configured to support archs: armv6 armv7 armv7s arm64 arm64e arm64_32 i386 x86_64 x86_64h armv6m armv7k armv7m armv7em
Library search paths: 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: 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 Parsed CXX implicit include dir info from above output: rv=done
found start of include info found start of include info
found start of implicit include info found start of implicit include info
add: [/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include/c++/v1] add: [/Library/Developer/CommandLineTools/usr/bin/../include/c++/v1]
add: [/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/10.0.1/include] add: [/Library/Developer/CommandLineTools/usr/lib/clang/11.0.0/include]
add: [/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include] add: [/Library/Developer/CommandLineTools/usr/include]
add: [/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/usr/include] add: [/Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk/usr/include]
end of search list found 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 [/Library/Developer/CommandLineTools/usr/bin/../include/c++/v1] ==> [/Library/Developer/CommandLineTools/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 [/Library/Developer/CommandLineTools/usr/lib/clang/11.0.0/include] ==> [/Library/Developer/CommandLineTools/usr/lib/clang/11.0.0/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 [/Library/Developer/CommandLineTools/usr/include] ==> [/Library/Developer/CommandLineTools/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] collapse include dir [/Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk/usr/include] ==> [/Library/Developer/CommandLineTools/SDKs/MacOSX10.15.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] 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: Parsed CXX implicit link information from above output:
link line regex: [^( *|.*[/\])(ld|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\]+-)?ld|collect2)[^/\]*( |$)] 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: []
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: [Run Build Command(s):/usr/bin/make cmTC_6cbf6/fast ]
ignore line: [Building CXX object CMakeFiles/cmTC_f1d95.dir/CMakeCXXCompilerABI.cpp.o] ignore line: [/Library/Developer/CommandLineTools/usr/bin/make -f CMakeFiles/cmTC_6cbf6.dir/build.make CMakeFiles/cmTC_6cbf6.dir/build]
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: [Building CXX object CMakeFiles/cmTC_6cbf6.dir/CMakeCXXCompilerABI.cpp.o]
ignore line: [Apple LLVM version 10.0.1 (clang-1001.0.46.4)] 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: [Target: x86_64-apple-darwin19.0.0]
ignore line: [Thread model: posix] 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: [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: [ "/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 10.0.1 (clang-1001.0.46.4) default target x86_64-apple-darwin19.0.0] 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 "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/usr/include/c++/v1"] ignore line: [ignoring nonexistent directory "/Library/Developer/CommandLineTools/SDKs/MacOSX10.15.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 "/Library/Developer/CommandLineTools/SDKs/MacOSX10.15.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: [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: [#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: [ /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1]
ignore line: [ /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/10.0.1/include] ignore line: [ /Library/Developer/CommandLineTools/usr/lib/clang/11.0.0/include]
ignore line: [ /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include] ignore line: [ /Library/Developer/CommandLineTools/usr/include]
ignore line: [ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/usr/include] ignore line: [ /Library/Developer/CommandLineTools/SDKs/MacOSX10.15.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/SDKs/MacOSX10.15.sdk/System/Library/Frameworks (framework directory)]
ignore line: [End of search list.] ignore line: [End of search list.]
ignore line: [Linking CXX executable cmTC_f1d95] ignore line: [Linking CXX executable cmTC_6cbf6]
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/CLion.app/Contents/bin/cmake/mac/bin/cmake -E cmake_link_script CMakeFiles/cmTC_6cbf6.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: [/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 LLVM version 10.0.1 (clang-1001.0.46.4)] ignore line: [Apple clang version 11.0.0 (clang-1100.0.33.8)]
ignore line: [Target: x86_64-apple-darwin19.0.0] ignore line: [Target: x86_64-apple-darwin19.0.0]
ignore line: [Thread model: posix] 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]
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] 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 [/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ld] ==> ignore arg [/Library/Developer/CommandLineTools/usr/bin/ld] ==> ignore
arg [-demangle] ==> ignore arg [-demangle] ==> ignore
arg [-lto_library] ==> ignore, skip following value 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 [-dynamic] ==> ignore
arg [-arch] ==> ignore arg [-arch] ==> ignore
arg [x86_64] ==> ignore arg [x86_64] ==> ignore
arg [-macosx_version_min] ==> ignore arg [-macosx_version_min] ==> ignore
arg [10.14.0] ==> ignore arg [10.15.0] ==> ignore
arg [-syslibroot] ==> 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 [-o] ==> ignore
arg [cmTC_f1d95] ==> ignore arg [cmTC_6cbf6] ==> ignore
arg [-search_paths_first] ==> ignore arg [-search_paths_first] ==> ignore
arg [-headerpad_max_install_names] ==> ignore arg [-headerpad_max_install_names] ==> ignore
arg [-v] ==> 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 [-lc++] ==> lib [c++]
arg [-lSystem] ==> lib [System] 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] 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: [;/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/usr/lib] Library search paths: [;/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/] Framework search paths: [;/Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk/System/Library/Frameworks/]
remove lib [System] 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] remove lib [/Library/Developer/CommandLineTools/usr/lib/clang/11.0.0/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 library dir [/Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk/usr/lib] ==> [/Library/Developer/CommandLineTools/SDKs/MacOSX10.15.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] 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 libs: [c++]
implicit dirs: [/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/usr/lib] implicit dirs: [/Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk/usr/lib]
implicit fwks: [/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/System/Library/Frameworks] 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

View File

@@ -0,0 +1,2 @@
# Hashes of file build rules.
5d0f61531e7b65bc3a166be8f46d91de CMakeFiles/ClangFormat

View File

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

View File

@@ -0,0 +1,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

View File

@@ -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()

View File

@@ -0,0 +1,3 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 3.14

View File

@@ -0,0 +1,3 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 3.14

View File

@@ -6,17 +6,125 @@
#IncludeRegexTransform: #IncludeRegexTransform:
/Users/brady/CLionProjects/CS3460-CPP/Hw6/Pattern.hpp /Users/bradybodily/Repositories/CS3460/Hw6/LifeSimulator.cpp
cstdint LifeSimulator.hpp
- /Users/bradybodily/Repositories/CS3460/Hw6/LifeSimulator.hpp
/Users/brady/CLionProjects/CS3460-CPP/Hw6/PatternGlider.cpp /Users/bradybodily/Repositories/CS3460/Hw6/LifeSimulator.hpp
PatternGlider.hpp Pattern.hpp
/Users/brady/CLionProjects/CS3460-CPP/Hw6/PatternGlider.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 array
- -
Pattern.hpp cstdint
/Users/brady/CLionProjects/CS3460-CPP/Hw6/Pattern.hpp -
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
-

View File

@@ -4,14 +4,14 @@ set(CMAKE_DEPENDS_LANGUAGES
) )
# The set of files for implicit dependencies of each language: # The set of files for implicit dependencies of each language:
set(CMAKE_DEPENDS_CHECK_CXX 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/bradybodily/Repositories/CS3460/Hw6/LifeSimulator.cpp" "/Users/bradybodily/Repositories/CS3460/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/bradybodily/Repositories/CS3460/Hw6/PatternAcorn.cpp" "/Users/bradybodily/Repositories/CS3460/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/bradybodily/Repositories/CS3460/Hw6/PatternBlinker.cpp" "/Users/bradybodily/Repositories/CS3460/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/bradybodily/Repositories/CS3460/Hw6/PatternBlock.cpp" "/Users/bradybodily/Repositories/CS3460/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/bradybodily/Repositories/CS3460/Hw6/PatternGlider.cpp" "/Users/bradybodily/Repositories/CS3460/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/bradybodily/Repositories/CS3460/Hw6/PatternGosperGliderGun.cpp" "/Users/bradybodily/Repositories/CS3460/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/bradybodily/Repositories/CS3460/Hw6/RendererConsole.cpp" "/Users/bradybodily/Repositories/CS3460/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/main.cpp" "/Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/CMakeFiles/ConwaysLife.dir/main.cpp.o"
) )
set(CMAKE_CXX_COMPILER_ID "AppleClang") set(CMAKE_CXX_COMPILER_ID "AppleClang")

View File

@@ -1,5 +1,5 @@
# CMAKE generated file: DO NOT EDIT! # 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 rule output on recipe failure.
.DELETE_ON_ERROR: .DELETE_ON_ERROR:
@@ -43,10 +43,10 @@ RM = /Applications/CLion.app/Contents/bin/cmake/mac/bin/cmake -E remove -f
EQUALS = = EQUALS = =
# The top-level source directory on which CMake was run. # 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. # 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 any dependencies generated for this target.
include CMakeFiles/ConwaysLife.dir/depend.make 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: CMakeFiles/ConwaysLife.dir/flags.make
CMakeFiles/ConwaysLife.dir/PatternAcorn.cpp.o: ../PatternAcorn.cpp 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" @$(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"
/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 /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 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" @$(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 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" @$(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: CMakeFiles/ConwaysLife.dir/flags.make
CMakeFiles/ConwaysLife.dir/PatternBlinker.cpp.o: ../PatternBlinker.cpp 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" @$(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"
/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 /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 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" @$(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 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" @$(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: CMakeFiles/ConwaysLife.dir/flags.make
CMakeFiles/ConwaysLife.dir/PatternBlock.cpp.o: ../PatternBlock.cpp 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" @$(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"
/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 /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 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" @$(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 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" @$(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: CMakeFiles/ConwaysLife.dir/flags.make
CMakeFiles/ConwaysLife.dir/PatternGlider.cpp.o: ../PatternGlider.cpp 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" @$(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"
/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 /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 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" @$(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 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" @$(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: CMakeFiles/ConwaysLife.dir/flags.make
CMakeFiles/ConwaysLife.dir/PatternGosperGliderGun.cpp.o: ../PatternGosperGliderGun.cpp 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" @$(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"
/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 /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 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" @$(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 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" @$(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: CMakeFiles/ConwaysLife.dir/flags.make
CMakeFiles/ConwaysLife.dir/LifeSimulator.cpp.o: ../LifeSimulator.cpp 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" @$(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"
/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 /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 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" @$(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 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" @$(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: CMakeFiles/ConwaysLife.dir/flags.make
CMakeFiles/ConwaysLife.dir/RendererConsole.cpp.o: ../RendererConsole.cpp 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" @$(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"
/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 /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 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" @$(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 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" @$(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: CMakeFiles/ConwaysLife.dir/flags.make
CMakeFiles/ConwaysLife.dir/main.cpp.o: ../main.cpp 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" @$(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"
/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 /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 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" @$(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 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" @$(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 # Object files for target ConwaysLife
ConwaysLife_OBJECTS = \ ConwaysLife_OBJECTS = \
@@ -185,7 +185,7 @@ ConwaysLife: CMakeFiles/ConwaysLife.dir/RendererConsole.cpp.o
ConwaysLife: CMakeFiles/ConwaysLife.dir/main.cpp.o ConwaysLife: CMakeFiles/ConwaysLife.dir/main.cpp.o
ConwaysLife: CMakeFiles/ConwaysLife.dir/build.make ConwaysLife: CMakeFiles/ConwaysLife.dir/build.make
ConwaysLife: CMakeFiles/ConwaysLife.dir/link.txt 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) $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/ConwaysLife.dir/link.txt --verbose=$(VERBOSE)
# Rule to build all files generated by this target. # Rule to build all files generated by this target.
@@ -198,6 +198,6 @@ CMakeFiles/ConwaysLife.dir/clean:
.PHONY : CMakeFiles/ConwaysLife.dir/clean .PHONY : CMakeFiles/ConwaysLife.dir/clean
CMakeFiles/ConwaysLife.dir/depend: 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 .PHONY : CMakeFiles/ConwaysLife.dir/depend

View File

@@ -1,14 +1,14 @@
file(REMOVE_RECURSE file(REMOVE_RECURSE
"CMakeFiles/ConwaysLife.dir/LifeSimulator.cpp.o"
"CMakeFiles/ConwaysLife.dir/PatternAcorn.cpp.o" "CMakeFiles/ConwaysLife.dir/PatternAcorn.cpp.o"
"CMakeFiles/ConwaysLife.dir/PatternBlinker.cpp.o" "CMakeFiles/ConwaysLife.dir/PatternBlinker.cpp.o"
"CMakeFiles/ConwaysLife.dir/PatternBlock.cpp.o" "CMakeFiles/ConwaysLife.dir/PatternBlock.cpp.o"
"CMakeFiles/ConwaysLife.dir/PatternGlider.cpp.o" "CMakeFiles/ConwaysLife.dir/PatternGlider.cpp.o"
"CMakeFiles/ConwaysLife.dir/PatternGosperGliderGun.cpp.o" "CMakeFiles/ConwaysLife.dir/PatternGosperGliderGun.cpp.o"
"CMakeFiles/ConwaysLife.dir/LifeSimulator.cpp.o"
"CMakeFiles/ConwaysLife.dir/RendererConsole.cpp.o" "CMakeFiles/ConwaysLife.dir/RendererConsole.cpp.o"
"CMakeFiles/ConwaysLife.dir/main.cpp.o" "CMakeFiles/ConwaysLife.dir/main.cpp.o"
"ConwaysLife"
"ConwaysLife.pdb" "ConwaysLife.pdb"
"ConwaysLife"
) )
# Per-language clean rules from dependency scanning. # Per-language clean rules from dependency scanning.

View File

@@ -1,26 +1,52 @@
# CMAKE generated file: DO NOT EDIT! # 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 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 CMakeFiles/ConwaysLife.dir/PatternAcorn.cpp.o
/Users/brady/CLionProjects/CS3460-CPP/Hw6/PatternAcorn.cpp /Users/bradybodily/Repositories/CS3460/Hw6/Pattern.hpp
/Users/brady/CLionProjects/CS3460-CPP/Hw6/PatternAcorn.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 CMakeFiles/ConwaysLife.dir/PatternBlinker.cpp.o
/Users/brady/CLionProjects/CS3460-CPP/Hw6/PatternBlinker.cpp /Users/bradybodily/Repositories/CS3460/Hw6/Pattern.hpp
/Users/brady/CLionProjects/CS3460-CPP/Hw6/PatternBlinker.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 CMakeFiles/ConwaysLife.dir/PatternBlock.cpp.o
/Users/brady/CLionProjects/CS3460-CPP/Hw6/PatternBlock.cpp /Users/bradybodily/Repositories/CS3460/Hw6/Pattern.hpp
/Users/brady/CLionProjects/CS3460-CPP/Hw6/PatternBlock.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 CMakeFiles/ConwaysLife.dir/PatternGlider.cpp.o
/Users/brady/CLionProjects/CS3460-CPP/Hw6/Pattern.hpp /Users/bradybodily/Repositories/CS3460/Hw6/Pattern.hpp
/Users/brady/CLionProjects/CS3460-CPP/Hw6/PatternGlider.cpp /Users/bradybodily/Repositories/CS3460/Hw6/PatternGlider.cpp
/Users/brady/CLionProjects/CS3460-CPP/Hw6/PatternGlider.hpp /Users/bradybodily/Repositories/CS3460/Hw6/PatternGlider.hpp
/Users/bradybodily/Repositories/CS3460/Hw6/rlutil.h
CMakeFiles/ConwaysLife.dir/PatternGosperGliderGun.cpp.o CMakeFiles/ConwaysLife.dir/PatternGosperGliderGun.cpp.o
/Users/brady/CLionProjects/CS3460-CPP/Hw6/PatternGosperGliderGun.cpp /Users/bradybodily/Repositories/CS3460/Hw6/Pattern.hpp
/Users/brady/CLionProjects/CS3460-CPP/Hw6/PatternGosperGliderGun.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 CMakeFiles/ConwaysLife.dir/RendererConsole.cpp.o
/Users/brady/CLionProjects/CS3460-CPP/Hw6/RendererConsole.cpp /Users/bradybodily/Repositories/CS3460/Hw6/LifeSimulator.hpp
/Users/brady/CLionProjects/CS3460-CPP/Hw6/RendererConsole.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 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

View File

@@ -1,26 +1,52 @@
# CMAKE generated file: DO NOT EDIT! # 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.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.cpp
CMakeFiles/ConwaysLife.dir/PatternAcorn.cpp.o: ../PatternAcorn.hpp 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.cpp
CMakeFiles/ConwaysLife.dir/PatternBlinker.cpp.o: ../PatternBlinker.hpp 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.cpp
CMakeFiles/ConwaysLife.dir/PatternBlock.cpp.o: ../PatternBlock.hpp 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: ../Pattern.hpp
CMakeFiles/ConwaysLife.dir/PatternGlider.cpp.o: ../PatternGlider.cpp CMakeFiles/ConwaysLife.dir/PatternGlider.cpp.o: ../PatternGlider.cpp
CMakeFiles/ConwaysLife.dir/PatternGlider.cpp.o: ../PatternGlider.hpp 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.cpp
CMakeFiles/ConwaysLife.dir/PatternGosperGliderGun.cpp.o: ../PatternGosperGliderGun.hpp 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.cpp
CMakeFiles/ConwaysLife.dir/RendererConsole.cpp.o: ../RendererConsole.hpp 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: ../main.cpp
CMakeFiles/ConwaysLife.dir/main.cpp.o: ../rlutil.h

View File

@@ -1,8 +1,8 @@
# CMAKE generated file: DO NOT EDIT! # 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++ # compile CXX with /Library/Developer/CommandLineTools/usr/bin/c++
CXX_FLAGS = -g -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk -std=gnu++1z CXX_FLAGS = -g -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX10.15.sdk -std=gnu++1z
CXX_DEFINES = CXX_DEFINES =

View File

@@ -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

View File

@@ -1,5 +1,5 @@
# CMAKE generated file: DO NOT EDIT! # 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: # The generator used is:
set(CMAKE_DEPENDS_GENERATOR "Unix Makefiles") 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: # The top level Makefile was generated from the following files:
set(CMAKE_MAKEFILE_DEPENDS set(CMAKE_MAKEFILE_DEPENDS
"CMakeCache.txt" "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.14/Modules/CMakeCCompiler.cmake.in"
"/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.15/Modules/CMakeCXXInformation.cmake" "/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.14/Modules/CMakeCCompilerABI.c"
"/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.15/Modules/CMakeCheckCompilerFlagCommonPatterns.cmake" "/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.14/Modules/CMakeCInformation.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.14/Modules/CMakeCXXCompiler.cmake.in"
"/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.15/Modules/CMakeExtraGeneratorDetermineCompilerMacrosAndIncludeDirs.cmake" "/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.14/Modules/CMakeCXXCompilerABI.cpp"
"/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.15/Modules/CMakeFindCodeBlocks.cmake" "/Applications/CLion.app/Contents/bin/cmake/mac/share/cmake-3.14/Modules/CMakeCXXInformation.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.14/Modules/CMakeCheckCompilerFlagCommonPatterns.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.14/Modules/CMakeCommonLanguageInclude.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.14/Modules/CMakeCompilerIdDetection.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.14/Modules/CMakeDetermineCCompiler.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.14/Modules/CMakeDetermineCXXCompiler.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.14/Modules/CMakeDetermineCompileFeatures.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.14/Modules/CMakeDetermineCompiler.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.14/Modules/CMakeDetermineCompilerABI.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.14/Modules/CMakeDetermineCompilerId.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.14/Modules/CMakeDetermineSystem.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.14/Modules/CMakeExtraGeneratorDetermineCompilerMacrosAndIncludeDirs.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.14/Modules/CMakeFindBinUtils.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.14/Modules/CMakeFindCodeBlocks.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.14/Modules/CMakeGenericSystem.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.14/Modules/CMakeInitializeConfigs.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.14/Modules/CMakeLanguageInformation.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.14/Modules/CMakeParseImplicitIncludeInfo.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.14/Modules/CMakeParseImplicitLinkInfo.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.14/Modules/CMakeSystem.cmake.in"
"/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/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" "../CMakeLists.txt"
"CMakeFiles/3.15.3/CMakeCCompiler.cmake" "CMakeFiles/3.14.5/CMakeCCompiler.cmake"
"CMakeFiles/3.15.3/CMakeCXXCompiler.cmake" "CMakeFiles/3.14.5/CMakeCXXCompiler.cmake"
"CMakeFiles/3.15.3/CMakeSystem.cmake" "CMakeFiles/3.14.5/CMakeSystem.cmake"
"CMakeFiles/feature_tests.c"
"CMakeFiles/feature_tests.cxx"
) )
# The corresponding makefile is: # The corresponding makefile is:
@@ -47,10 +115,16 @@ set(CMAKE_MAKEFILE_OUTPUTS
# Byproducts of CMake generate step: # Byproducts of CMake generate step:
set(CMAKE_MAKEFILE_PRODUCTS 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" "CMakeFiles/CMakeDirectoryInformation.cmake"
) )
# Dependency information for all targets: # Dependency information for all targets:
set(CMAKE_DEPEND_INFO_FILES set(CMAKE_DEPEND_INFO_FILES
"CMakeFiles/ClangFormat.dir/DependInfo.cmake"
"CMakeFiles/ConwaysLife.dir/DependInfo.cmake" "CMakeFiles/ConwaysLife.dir/DependInfo.cmake"
) )

View File

@@ -1,11 +1,26 @@
# CMAKE generated file: DO NOT EDIT! # 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 executed when no arguments are given to make.
default_target: all default_target: all
.PHONY : default_target .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. # Special targets provided by cmake.
@@ -44,44 +59,63 @@ RM = /Applications/CLion.app/Contents/bin/cmake/mac/bin/cmake -E remove -f
EQUALS = = EQUALS = =
# The top-level source directory on which CMake was run. # 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. # 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 Build rule for target.
all: CMakeFiles/ConwaysLife.dir/all 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. # Convenience name for target.
clean: CMakeFiles/ConwaysLife.dir/clean 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 .PHONY : clean
# The main recursive "preinstall" target.
preinstall:
.PHONY : preinstall
#============================================================================= #=============================================================================
# Target rules for target CMakeFiles/ConwaysLife.dir # Target rules for target CMakeFiles/ConwaysLife.dir
# All Build rule for target. # 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/depend
$(MAKE) -f CMakeFiles/ConwaysLife.dir/build.make CMakeFiles/ConwaysLife.dir/build $(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 .PHONY : CMakeFiles/ConwaysLife.dir/all
# Include target in all.
all: CMakeFiles/ConwaysLife.dir/all
.PHONY : all
# Build rule for subdir invocation for target. # Build rule for subdir invocation for target.
CMakeFiles/ConwaysLife.dir/rule: cmake_check_build_system 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 $(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 .PHONY : CMakeFiles/ConwaysLife.dir/rule
# Convenience name for target. # Convenience name for target.
@@ -94,6 +128,11 @@ CMakeFiles/ConwaysLife.dir/clean:
$(MAKE) -f CMakeFiles/ConwaysLife.dir/build.make CMakeFiles/ConwaysLife.dir/clean $(MAKE) -f CMakeFiles/ConwaysLife.dir/build.make CMakeFiles/ConwaysLife.dir/clean
.PHONY : 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. # Special targets to cleanup operation of make.

View File

@@ -1,3 +1,4 @@
/Users/brady/CLionProjects/CS3460-CPP/Hw6/cmake-build-debug/CMakeFiles/rebuild_cache.dir /Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/CMakeFiles/rebuild_cache.dir
/Users/brady/CLionProjects/CS3460-CPP/Hw6/cmake-build-debug/CMakeFiles/edit_cache.dir /Users/bradybodily/Repositories/CS3460/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/ClangFormat.dir
/Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/CMakeFiles/ConwaysLife.dir

View File

@@ -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 /Applications/CLion.app/Contents/bin/cmake/mac/bin/cmake -DCMAKE_BUILD_TYPE=Debug -G "CodeBlocks - Unix Makefiles" /Users/bradybodily/Repositories/CS3460/Hw6
Unable to find clang-format -- 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 -- Configuring done
-- Generating 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

Binary file not shown.

View File

@@ -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]; }

View File

@@ -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]; }

Binary file not shown.

View File

@@ -8,130 +8,143 @@
<Option virtualFolders="CMake Files\;"/> <Option virtualFolders="CMake Files\;"/>
<Build> <Build>
<Target title="all"> <Target title="all">
<Option working_dir="/Users/brady/CLionProjects/CS3460-CPP/Hw6/cmake-build-debug"/> <Option working_dir="/Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug"/>
<Option type="4"/> <Option type="4"/>
<MakeCommands> <MakeCommands>
<Build command="/usr/bin/make -j8 -f &quot;/Users/brady/CLionProjects/CS3460-CPP/Hw6/cmake-build-debug/Makefile&quot; VERBOSE=1 all"/> <Build command="/usr/bin/make -j4 -f &quot;/Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/Makefile&quot; VERBOSE=1 all"/>
<CompileFile command="/usr/bin/make -j8 -f &quot;/Users/brady/CLionProjects/CS3460-CPP/Hw6/cmake-build-debug/Makefile&quot; VERBOSE=1 &quot;$file&quot;"/> <CompileFile command="/usr/bin/make -j4 -f &quot;/Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/Makefile&quot; VERBOSE=1 &quot;$file&quot;"/>
<Clean command="/usr/bin/make -j8 -f &quot;/Users/brady/CLionProjects/CS3460-CPP/Hw6/cmake-build-debug/Makefile&quot; VERBOSE=1 clean"/> <Clean command="/usr/bin/make -j4 -f &quot;/Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/Makefile&quot; VERBOSE=1 clean"/>
<DistClean command="/usr/bin/make -j8 -f &quot;/Users/brady/CLionProjects/CS3460-CPP/Hw6/cmake-build-debug/Makefile&quot; VERBOSE=1 clean"/> <DistClean command="/usr/bin/make -j4 -f &quot;/Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/Makefile&quot; VERBOSE=1 clean"/>
</MakeCommands> </MakeCommands>
</Target> </Target>
<Target title="rebuild_cache"> <Target title="rebuild_cache">
<Option working_dir="/Users/brady/CLionProjects/CS3460-CPP/Hw6/cmake-build-debug"/> <Option working_dir="/Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug"/>
<Option type="4"/> <Option type="4"/>
<MakeCommands> <MakeCommands>
<Build command="/usr/bin/make -j8 -f &quot;/Users/brady/CLionProjects/CS3460-CPP/Hw6/cmake-build-debug/Makefile&quot; VERBOSE=1 rebuild_cache"/> <Build command="/usr/bin/make -j4 -f &quot;/Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/Makefile&quot; VERBOSE=1 rebuild_cache"/>
<CompileFile command="/usr/bin/make -j8 -f &quot;/Users/brady/CLionProjects/CS3460-CPP/Hw6/cmake-build-debug/Makefile&quot; VERBOSE=1 &quot;$file&quot;"/> <CompileFile command="/usr/bin/make -j4 -f &quot;/Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/Makefile&quot; VERBOSE=1 &quot;$file&quot;"/>
<Clean command="/usr/bin/make -j8 -f &quot;/Users/brady/CLionProjects/CS3460-CPP/Hw6/cmake-build-debug/Makefile&quot; VERBOSE=1 clean"/> <Clean command="/usr/bin/make -j4 -f &quot;/Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/Makefile&quot; VERBOSE=1 clean"/>
<DistClean command="/usr/bin/make -j8 -f &quot;/Users/brady/CLionProjects/CS3460-CPP/Hw6/cmake-build-debug/Makefile&quot; VERBOSE=1 clean"/> <DistClean command="/usr/bin/make -j4 -f &quot;/Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/Makefile&quot; VERBOSE=1 clean"/>
</MakeCommands> </MakeCommands>
</Target> </Target>
<Target title="edit_cache"> <Target title="edit_cache">
<Option working_dir="/Users/brady/CLionProjects/CS3460-CPP/Hw6/cmake-build-debug"/> <Option working_dir="/Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug"/>
<Option type="4"/> <Option type="4"/>
<MakeCommands> <MakeCommands>
<Build command="/usr/bin/make -j8 -f &quot;/Users/brady/CLionProjects/CS3460-CPP/Hw6/cmake-build-debug/Makefile&quot; VERBOSE=1 edit_cache"/> <Build command="/usr/bin/make -j4 -f &quot;/Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/Makefile&quot; VERBOSE=1 edit_cache"/>
<CompileFile command="/usr/bin/make -j8 -f &quot;/Users/brady/CLionProjects/CS3460-CPP/Hw6/cmake-build-debug/Makefile&quot; VERBOSE=1 &quot;$file&quot;"/> <CompileFile command="/usr/bin/make -j4 -f &quot;/Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/Makefile&quot; VERBOSE=1 &quot;$file&quot;"/>
<Clean command="/usr/bin/make -j8 -f &quot;/Users/brady/CLionProjects/CS3460-CPP/Hw6/cmake-build-debug/Makefile&quot; VERBOSE=1 clean"/> <Clean command="/usr/bin/make -j4 -f &quot;/Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/Makefile&quot; VERBOSE=1 clean"/>
<DistClean command="/usr/bin/make -j8 -f &quot;/Users/brady/CLionProjects/CS3460-CPP/Hw6/cmake-build-debug/Makefile&quot; VERBOSE=1 clean"/> <DistClean command="/usr/bin/make -j4 -f &quot;/Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/Makefile&quot; VERBOSE=1 clean"/>
</MakeCommands>
</Target>
<Target title="ClangFormat">
<Option working_dir="/Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug"/>
<Option type="4"/>
<MakeCommands>
<Build command="/usr/bin/make -j4 -f &quot;/Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/Makefile&quot; VERBOSE=1 ClangFormat"/>
<CompileFile command="/usr/bin/make -j4 -f &quot;/Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/Makefile&quot; VERBOSE=1 &quot;$file&quot;"/>
<Clean command="/usr/bin/make -j4 -f &quot;/Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/Makefile&quot; VERBOSE=1 clean"/>
<DistClean command="/usr/bin/make -j4 -f &quot;/Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/Makefile&quot; VERBOSE=1 clean"/>
</MakeCommands> </MakeCommands>
</Target> </Target>
<Target title="ConwaysLife"> <Target title="ConwaysLife">
<Option output="/Users/brady/CLionProjects/CS3460-CPP/Hw6/cmake-build-debug/ConwaysLife" prefix_auto="0" extension_auto="0"/> <Option output="/Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/ConwaysLife" prefix_auto="0" extension_auto="0"/>
<Option working_dir="/Users/brady/CLionProjects/CS3460-CPP/Hw6/cmake-build-debug"/> <Option working_dir="/Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug"/>
<Option object_output="./"/> <Option object_output="./"/>
<Option type="1"/> <Option type="1"/>
<Option compiler="gcc"/> <Option compiler="gcc"/>
<Compiler> <Compiler>
<Add directory="/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include/c++/v1"/> <Add directory="/Library/Developer/CommandLineTools/usr/bin/../include/c++/v1"/>
<Add directory="/usr/local/include"/> <Add directory="/usr/local/include"/>
<Add directory="/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/10.0.1/include"/> <Add directory="/Library/Developer/CommandLineTools/usr/lib/clang/11.0.0/include"/>
<Add directory="/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include"/> <Add directory="/Library/Developer/CommandLineTools/usr/include"/>
<Add directory="/System/Library/Frameworks"/> <Add directory="/System/Library/Frameworks"/>
<Add directory="/Library/Frameworks"/> <Add directory="/Library/Frameworks"/>
</Compiler> </Compiler>
<MakeCommands> <MakeCommands>
<Build command="/usr/bin/make -j8 -f &quot;/Users/brady/CLionProjects/CS3460-CPP/Hw6/cmake-build-debug/Makefile&quot; VERBOSE=1 ConwaysLife"/> <Build command="/usr/bin/make -j4 -f &quot;/Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/Makefile&quot; VERBOSE=1 ConwaysLife"/>
<CompileFile command="/usr/bin/make -j8 -f &quot;/Users/brady/CLionProjects/CS3460-CPP/Hw6/cmake-build-debug/Makefile&quot; VERBOSE=1 &quot;$file&quot;"/> <CompileFile command="/usr/bin/make -j4 -f &quot;/Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/Makefile&quot; VERBOSE=1 &quot;$file&quot;"/>
<Clean command="/usr/bin/make -j8 -f &quot;/Users/brady/CLionProjects/CS3460-CPP/Hw6/cmake-build-debug/Makefile&quot; VERBOSE=1 clean"/> <Clean command="/usr/bin/make -j4 -f &quot;/Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/Makefile&quot; VERBOSE=1 clean"/>
<DistClean command="/usr/bin/make -j8 -f &quot;/Users/brady/CLionProjects/CS3460-CPP/Hw6/cmake-build-debug/Makefile&quot; VERBOSE=1 clean"/> <DistClean command="/usr/bin/make -j4 -f &quot;/Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/Makefile&quot; VERBOSE=1 clean"/>
</MakeCommands> </MakeCommands>
</Target> </Target>
<Target title="ConwaysLife/fast"> <Target title="ConwaysLife/fast">
<Option output="/Users/brady/CLionProjects/CS3460-CPP/Hw6/cmake-build-debug/ConwaysLife" prefix_auto="0" extension_auto="0"/> <Option output="/Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/ConwaysLife" prefix_auto="0" extension_auto="0"/>
<Option working_dir="/Users/brady/CLionProjects/CS3460-CPP/Hw6/cmake-build-debug"/> <Option working_dir="/Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug"/>
<Option object_output="./"/> <Option object_output="./"/>
<Option type="1"/> <Option type="1"/>
<Option compiler="gcc"/> <Option compiler="gcc"/>
<Compiler> <Compiler>
<Add directory="/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include/c++/v1"/> <Add directory="/Library/Developer/CommandLineTools/usr/bin/../include/c++/v1"/>
<Add directory="/usr/local/include"/> <Add directory="/usr/local/include"/>
<Add directory="/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/10.0.1/include"/> <Add directory="/Library/Developer/CommandLineTools/usr/lib/clang/11.0.0/include"/>
<Add directory="/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include"/> <Add directory="/Library/Developer/CommandLineTools/usr/include"/>
<Add directory="/System/Library/Frameworks"/> <Add directory="/System/Library/Frameworks"/>
<Add directory="/Library/Frameworks"/> <Add directory="/Library/Frameworks"/>
</Compiler> </Compiler>
<MakeCommands> <MakeCommands>
<Build command="/usr/bin/make -j8 -f &quot;/Users/brady/CLionProjects/CS3460-CPP/Hw6/cmake-build-debug/Makefile&quot; VERBOSE=1 ConwaysLife/fast"/> <Build command="/usr/bin/make -j4 -f &quot;/Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/Makefile&quot; VERBOSE=1 ConwaysLife/fast"/>
<CompileFile command="/usr/bin/make -j8 -f &quot;/Users/brady/CLionProjects/CS3460-CPP/Hw6/cmake-build-debug/Makefile&quot; VERBOSE=1 &quot;$file&quot;"/> <CompileFile command="/usr/bin/make -j4 -f &quot;/Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/Makefile&quot; VERBOSE=1 &quot;$file&quot;"/>
<Clean command="/usr/bin/make -j8 -f &quot;/Users/brady/CLionProjects/CS3460-CPP/Hw6/cmake-build-debug/Makefile&quot; VERBOSE=1 clean"/> <Clean command="/usr/bin/make -j4 -f &quot;/Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/Makefile&quot; VERBOSE=1 clean"/>
<DistClean command="/usr/bin/make -j8 -f &quot;/Users/brady/CLionProjects/CS3460-CPP/Hw6/cmake-build-debug/Makefile&quot; VERBOSE=1 clean"/> <DistClean command="/usr/bin/make -j4 -f &quot;/Users/bradybodily/Repositories/CS3460/Hw6/cmake-build-debug/Makefile&quot; VERBOSE=1 clean"/>
</MakeCommands> </MakeCommands>
</Target> </Target>
</Build> </Build>
<Unit filename="/Users/brady/CLionProjects/CS3460-CPP/Hw6/LifeSimulator.cpp"> <Unit filename="/Users/bradybodily/Repositories/CS3460/Hw6/LifeSimulator.cpp">
<Option target="ConwaysLife"/> <Option target="ConwaysLife"/>
</Unit> </Unit>
<Unit filename="/Users/brady/CLionProjects/CS3460-CPP/Hw6/LifeSimulator.hpp"> <Unit filename="/Users/bradybodily/Repositories/CS3460/Hw6/LifeSimulator.hpp">
<Option target="ConwaysLife"/> <Option target="ConwaysLife"/>
</Unit> </Unit>
<Unit filename="/Users/brady/CLionProjects/CS3460-CPP/Hw6/Pattern.hpp"> <Unit filename="/Users/bradybodily/Repositories/CS3460/Hw6/Pattern.hpp">
<Option target="ConwaysLife"/> <Option target="ConwaysLife"/>
</Unit> </Unit>
<Unit filename="/Users/brady/CLionProjects/CS3460-CPP/Hw6/PatternAcorn.cpp"> <Unit filename="/Users/bradybodily/Repositories/CS3460/Hw6/PatternAcorn.cpp">
<Option target="ConwaysLife"/> <Option target="ConwaysLife"/>
</Unit> </Unit>
<Unit filename="/Users/brady/CLionProjects/CS3460-CPP/Hw6/PatternAcorn.hpp"> <Unit filename="/Users/bradybodily/Repositories/CS3460/Hw6/PatternAcorn.hpp">
<Option target="ConwaysLife"/> <Option target="ConwaysLife"/>
</Unit> </Unit>
<Unit filename="/Users/brady/CLionProjects/CS3460-CPP/Hw6/PatternBlinker.cpp"> <Unit filename="/Users/bradybodily/Repositories/CS3460/Hw6/PatternBlinker.cpp">
<Option target="ConwaysLife"/> <Option target="ConwaysLife"/>
</Unit> </Unit>
<Unit filename="/Users/brady/CLionProjects/CS3460-CPP/Hw6/PatternBlinker.hpp"> <Unit filename="/Users/bradybodily/Repositories/CS3460/Hw6/PatternBlinker.hpp">
<Option target="ConwaysLife"/> <Option target="ConwaysLife"/>
</Unit> </Unit>
<Unit filename="/Users/brady/CLionProjects/CS3460-CPP/Hw6/PatternBlock.cpp"> <Unit filename="/Users/bradybodily/Repositories/CS3460/Hw6/PatternBlock.cpp">
<Option target="ConwaysLife"/> <Option target="ConwaysLife"/>
</Unit> </Unit>
<Unit filename="/Users/brady/CLionProjects/CS3460-CPP/Hw6/PatternBlock.hpp"> <Unit filename="/Users/bradybodily/Repositories/CS3460/Hw6/PatternBlock.hpp">
<Option target="ConwaysLife"/> <Option target="ConwaysLife"/>
</Unit> </Unit>
<Unit filename="/Users/brady/CLionProjects/CS3460-CPP/Hw6/PatternGlider.cpp"> <Unit filename="/Users/bradybodily/Repositories/CS3460/Hw6/PatternGlider.cpp">
<Option target="ConwaysLife"/> <Option target="ConwaysLife"/>
</Unit> </Unit>
<Unit filename="/Users/brady/CLionProjects/CS3460-CPP/Hw6/PatternGlider.hpp"> <Unit filename="/Users/bradybodily/Repositories/CS3460/Hw6/PatternGlider.hpp">
<Option target="ConwaysLife"/> <Option target="ConwaysLife"/>
</Unit> </Unit>
<Unit filename="/Users/brady/CLionProjects/CS3460-CPP/Hw6/PatternGosperGliderGun.cpp"> <Unit filename="/Users/bradybodily/Repositories/CS3460/Hw6/PatternGosperGliderGun.cpp">
<Option target="ConwaysLife"/> <Option target="ConwaysLife"/>
</Unit> </Unit>
<Unit filename="/Users/brady/CLionProjects/CS3460-CPP/Hw6/PatternGosperGliderGun.hpp"> <Unit filename="/Users/bradybodily/Repositories/CS3460/Hw6/PatternGosperGliderGun.hpp">
<Option target="ConwaysLife"/> <Option target="ConwaysLife"/>
</Unit> </Unit>
<Unit filename="/Users/brady/CLionProjects/CS3460-CPP/Hw6/Renderer.hpp"> <Unit filename="/Users/bradybodily/Repositories/CS3460/Hw6/Renderer.hpp">
<Option target="ConwaysLife"/> <Option target="ConwaysLife"/>
</Unit> </Unit>
<Unit filename="/Users/brady/CLionProjects/CS3460-CPP/Hw6/RendererConsole.cpp"> <Unit filename="/Users/bradybodily/Repositories/CS3460/Hw6/RendererConsole.cpp">
<Option target="ConwaysLife"/> <Option target="ConwaysLife"/>
</Unit> </Unit>
<Unit filename="/Users/brady/CLionProjects/CS3460-CPP/Hw6/RendererConsole.hpp"> <Unit filename="/Users/bradybodily/Repositories/CS3460/Hw6/RendererConsole.hpp">
<Option target="ConwaysLife"/> <Option target="ConwaysLife"/>
</Unit> </Unit>
<Unit filename="/Users/brady/CLionProjects/CS3460-CPP/Hw6/main.cpp"> <Unit filename="/Users/bradybodily/Repositories/CS3460/Hw6/main.cpp">
<Option target="ConwaysLife"/> <Option target="ConwaysLife"/>
</Unit> </Unit>
<Unit filename="/Users/brady/CLionProjects/CS3460-CPP/Hw6/CMakeLists.txt"> <Unit filename="/Users/bradybodily/Repositories/CS3460/Hw6/rlutil.h">
<Option target="ConwaysLife"/>
</Unit>
<Unit filename="/Users/bradybodily/Repositories/CS3460/Hw6/CMakeLists.txt">
<Option virtualFolder="CMake Files\"/> <Option virtualFolder="CMake Files\"/>
</Unit> </Unit>
</Project> </Project>

View File

@@ -1,5 +1,5 @@
# CMAKE generated file: DO NOT EDIT! # 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 executed when no arguments are given to make.
default_target: all default_target: all
@@ -48,10 +48,10 @@ RM = /Applications/CLion.app/Contents/bin/cmake/mac/bin/cmake -E remove -f
EQUALS = = EQUALS = =
# The top-level source directory on which CMake was run. # 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. # 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. # Targets provided globally by CMake.
@@ -80,9 +80,9 @@ edit_cache/fast: edit_cache
# The main all target # The main all target
all: cmake_check_build_system 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 $(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 .PHONY : all
# The main clean target # 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 $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1
.PHONY : depend .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 # Target rules for targets named ConwaysLife
@@ -347,6 +360,7 @@ help:
@echo "... depend" @echo "... depend"
@echo "... rebuild_cache" @echo "... rebuild_cache"
@echo "... edit_cache" @echo "... edit_cache"
@echo "... ClangFormat"
@echo "... ConwaysLife" @echo "... ConwaysLife"
@echo "... LifeSimulator.o" @echo "... LifeSimulator.o"
@echo "... LifeSimulator.i" @echo "... LifeSimulator.i"

View File

@@ -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 # Set the install prefix
if(NOT DEFINED CMAKE_INSTALL_PREFIX) if(NOT DEFINED CMAKE_INSTALL_PREFIX)
@@ -40,5 +40,5 @@ endif()
string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT
"${CMAKE_INSTALL_MANIFEST_FILES}") "${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}") "${CMAKE_INSTALL_MANIFEST_CONTENT}")

View File

@@ -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("")

View File

@@ -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()

View File

@@ -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

View File

@@ -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

View File

@@ -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

View File

@@ -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

View File

@@ -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

View File

@@ -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)

View File

@@ -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})

View File

@@ -0,0 +1 @@
The system is: Darwin - 19.0.0 - x86_64

View File

@@ -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

View File

@@ -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"
)

View File

@@ -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

View File

@@ -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

View File

@@ -0,0 +1 @@
# This file is generated by cmake for dependency checking of the CMakeCache.txt file

View File

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

View File

@@ -0,0 +1,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"
}
}

View File

@@ -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

View File

@@ -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

View File

@@ -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()

View File

@@ -0,0 +1,3 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 3.14

View File

@@ -0,0 +1,3 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 3.14

View File

@@ -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

View File

@@ -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 ""
)

View File

@@ -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

View File

@@ -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}")

View File

@@ -0,0 +1,3 @@
repository='https://github.com/google/googletest.git'
module=''
tag=''

View File

@@ -0,0 +1,3 @@
repository='https://github.com/google/googletest.git'
module=''
tag=''

Some files were not shown because too many files have changed in this diff Show More