This commit is contained in:
2024-10-16 10:15:43 +02:00
parent 1269b8dce7
commit 18845abe1c
97 changed files with 10609 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
# CMake generated Testfile for
# Source directory: C:/Users/Bram/School/Graphics Programming 1/GP1_Raytracer_Bram_Verhulst_2DAE11/cmake-build-release/_deps/gtest-src
# Build directory: C:/Users/Bram/School/Graphics Programming 1/GP1_Raytracer_Bram_Verhulst_2DAE11/cmake-build-release/_deps/gtest-build
#
# This file includes the relevant testing commands required for
# testing this directory and lists subdirectories to be tested as well.
subdirs("googletest")

View File

@@ -0,0 +1,45 @@
# Install script for directory: C:/Users/Bram/School/Graphics Programming 1/GP1_Raytracer_Bram_Verhulst_2DAE11/cmake-build-release/_deps/gtest-src
# Set the install prefix
if(NOT DEFINED CMAKE_INSTALL_PREFIX)
set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/GP1_Raytracer")
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 "Release")
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()
# Set default install directory permissions.
if(NOT DEFINED CMAKE_OBJDUMP)
set(CMAKE_OBJDUMP "C:/Users/Bram/AppData/Local/Programs/CLion/bin/mingw/bin/objdump.exe")
endif()
if(NOT CMAKE_INSTALL_LOCAL_ONLY)
# Include the install script for each subdirectory.
include("C:/Users/Bram/School/Graphics Programming 1/GP1_Raytracer_Bram_Verhulst_2DAE11/cmake-build-release/_deps/gtest-build/googletest/cmake_install.cmake")
endif()

View File

@@ -0,0 +1,29 @@
#----------------------------------------------------------------
# Generated CMake target import file for configuration "Release".
#----------------------------------------------------------------
# Commands may need to know the format version.
set(CMAKE_IMPORT_FILE_VERSION 1)
# Import target "GTest::gtest" for configuration "Release"
set_property(TARGET GTest::gtest APPEND PROPERTY IMPORTED_CONFIGURATIONS RELEASE)
set_target_properties(GTest::gtest PROPERTIES
IMPORTED_LINK_INTERFACE_LANGUAGES_RELEASE "CXX"
IMPORTED_LOCATION_RELEASE "${_IMPORT_PREFIX}/lib/libgtest.a"
)
list(APPEND _cmake_import_check_targets GTest::gtest )
list(APPEND _cmake_import_check_files_for_GTest::gtest "${_IMPORT_PREFIX}/lib/libgtest.a" )
# Import target "GTest::gtest_main" for configuration "Release"
set_property(TARGET GTest::gtest_main APPEND PROPERTY IMPORTED_CONFIGURATIONS RELEASE)
set_target_properties(GTest::gtest_main PROPERTIES
IMPORTED_LINK_INTERFACE_LANGUAGES_RELEASE "CXX"
IMPORTED_LOCATION_RELEASE "${_IMPORT_PREFIX}/lib/libgtest_main.a"
)
list(APPEND _cmake_import_check_targets GTest::gtest_main )
list(APPEND _cmake_import_check_files_for_GTest::gtest_main "${_IMPORT_PREFIX}/lib/libgtest_main.a" )
# Commands beyond this point should not need to know the version.
set(CMAKE_IMPORT_FILE_VERSION)

View File

@@ -0,0 +1,118 @@
# Generated by CMake
if("${CMAKE_MAJOR_VERSION}.${CMAKE_MINOR_VERSION}" LESS 2.8)
message(FATAL_ERROR "CMake >= 2.8.0 required")
endif()
if(CMAKE_VERSION VERSION_LESS "2.8.12")
message(FATAL_ERROR "CMake >= 2.8.12 required")
endif()
cmake_policy(PUSH)
cmake_policy(VERSION 2.8.12...3.27)
#----------------------------------------------------------------
# Generated CMake target import file.
#----------------------------------------------------------------
# Commands may need to know the format version.
set(CMAKE_IMPORT_FILE_VERSION 1)
# Protect against multiple inclusion, which would fail when already imported targets are added once more.
set(_cmake_targets_defined "")
set(_cmake_targets_not_defined "")
set(_cmake_expected_targets "")
foreach(_cmake_expected_target IN ITEMS GTest::gtest GTest::gtest_main)
list(APPEND _cmake_expected_targets "${_cmake_expected_target}")
if(TARGET "${_cmake_expected_target}")
list(APPEND _cmake_targets_defined "${_cmake_expected_target}")
else()
list(APPEND _cmake_targets_not_defined "${_cmake_expected_target}")
endif()
endforeach()
unset(_cmake_expected_target)
if(_cmake_targets_defined STREQUAL _cmake_expected_targets)
unset(_cmake_targets_defined)
unset(_cmake_targets_not_defined)
unset(_cmake_expected_targets)
unset(CMAKE_IMPORT_FILE_VERSION)
cmake_policy(POP)
return()
endif()
if(NOT _cmake_targets_defined STREQUAL "")
string(REPLACE ";" ", " _cmake_targets_defined_text "${_cmake_targets_defined}")
string(REPLACE ";" ", " _cmake_targets_not_defined_text "${_cmake_targets_not_defined}")
message(FATAL_ERROR "Some (but not all) targets in this export set were already defined.\nTargets Defined: ${_cmake_targets_defined_text}\nTargets not yet defined: ${_cmake_targets_not_defined_text}\n")
endif()
unset(_cmake_targets_defined)
unset(_cmake_targets_not_defined)
unset(_cmake_expected_targets)
# Compute the installation prefix relative to this file.
get_filename_component(_IMPORT_PREFIX "${CMAKE_CURRENT_LIST_FILE}" PATH)
get_filename_component(_IMPORT_PREFIX "${_IMPORT_PREFIX}" PATH)
get_filename_component(_IMPORT_PREFIX "${_IMPORT_PREFIX}" PATH)
get_filename_component(_IMPORT_PREFIX "${_IMPORT_PREFIX}" PATH)
if(_IMPORT_PREFIX STREQUAL "/")
set(_IMPORT_PREFIX "")
endif()
# Create imported target GTest::gtest
add_library(GTest::gtest STATIC IMPORTED)
set_target_properties(GTest::gtest PROPERTIES
INTERFACE_COMPILE_FEATURES "cxx_std_14"
INTERFACE_INCLUDE_DIRECTORIES "${_IMPORT_PREFIX}/include"
INTERFACE_SYSTEM_INCLUDE_DIRECTORIES "${_IMPORT_PREFIX}/include"
)
# Create imported target GTest::gtest_main
add_library(GTest::gtest_main STATIC IMPORTED)
set_target_properties(GTest::gtest_main PROPERTIES
INTERFACE_COMPILE_FEATURES "cxx_std_14"
INTERFACE_INCLUDE_DIRECTORIES "${_IMPORT_PREFIX}/include"
INTERFACE_LINK_LIBRARIES "GTest::gtest"
INTERFACE_SYSTEM_INCLUDE_DIRECTORIES "${_IMPORT_PREFIX}/include"
)
# Load information for each installed configuration.
file(GLOB _cmake_config_files "${CMAKE_CURRENT_LIST_DIR}/GTestTargets-*.cmake")
foreach(_cmake_config_file IN LISTS _cmake_config_files)
include("${_cmake_config_file}")
endforeach()
unset(_cmake_config_file)
unset(_cmake_config_files)
# Cleanup temporary variables.
set(_IMPORT_PREFIX)
# Loop over all imported files and verify that they actually exist
foreach(_cmake_target IN LISTS _cmake_import_check_targets)
if(CMAKE_VERSION VERSION_LESS "3.28"
OR NOT DEFINED _cmake_import_check_xcframework_for_${_cmake_target}
OR NOT IS_DIRECTORY "${_cmake_import_check_xcframework_for_${_cmake_target}}")
foreach(_cmake_file IN LISTS "_cmake_import_check_files_for_${_cmake_target}")
if(NOT EXISTS "${_cmake_file}")
message(FATAL_ERROR "The imported target \"${_cmake_target}\" references the file
\"${_cmake_file}\"
but this file does not exist. Possible reasons include:
* The file was deleted, renamed, or moved to another location.
* An install or uninstall procedure did not complete successfully.
* The installation package was faulty and contained
\"${CMAKE_CURRENT_LIST_FILE}\"
but not all the files it references.
")
endif()
endforeach()
endif()
unset(_cmake_file)
unset("_cmake_import_check_files_for_${_cmake_target}")
endforeach()
unset(_cmake_target)
unset(_cmake_import_check_targets)
# This file does not depend on other imported targets which have
# been exported from the same project but in a separate export set.
# Commands beyond this point should not need to know the version.
set(CMAKE_IMPORT_FILE_VERSION)
cmake_policy(POP)

View File

@@ -0,0 +1,6 @@
# CMake generated Testfile for
# Source directory: C:/Users/Bram/School/Graphics Programming 1/GP1_Raytracer_Bram_Verhulst_2DAE11/cmake-build-release/_deps/gtest-src/googletest
# Build directory: C:/Users/Bram/School/Graphics Programming 1/GP1_Raytracer_Bram_Verhulst_2DAE11/cmake-build-release/_deps/gtest-build/googletest
#
# This file includes the relevant testing commands required for
# testing this directory and lists subdirectories to be tested as well.

View File

@@ -0,0 +1,89 @@
# Install script for directory: C:/Users/Bram/School/Graphics Programming 1/GP1_Raytracer_Bram_Verhulst_2DAE11/cmake-build-release/_deps/gtest-src/googletest
# Set the install prefix
if(NOT DEFINED CMAKE_INSTALL_PREFIX)
set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/GP1_Raytracer")
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 "Release")
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()
# Set default install directory permissions.
if(NOT DEFINED CMAKE_OBJDUMP)
set(CMAKE_OBJDUMP "C:/Users/Bram/AppData/Local/Programs/CLion/bin/mingw/bin/objdump.exe")
endif()
if(CMAKE_INSTALL_COMPONENT STREQUAL "gtest" OR NOT CMAKE_INSTALL_COMPONENT)
if(EXISTS "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/cmake/GTest/GTestTargets.cmake")
file(DIFFERENT _cmake_export_file_changed FILES
"$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/cmake/GTest/GTestTargets.cmake"
"C:/Users/Bram/School/Graphics Programming 1/GP1_Raytracer_Bram_Verhulst_2DAE11/cmake-build-release/_deps/gtest-build/googletest/CMakeFiles/Export/0c08b8e77dd885bfe55a19a9659d9fc1/GTestTargets.cmake")
if(_cmake_export_file_changed)
file(GLOB _cmake_old_config_files "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/cmake/GTest/GTestTargets-*.cmake")
if(_cmake_old_config_files)
string(REPLACE ";" ", " _cmake_old_config_files_text "${_cmake_old_config_files}")
message(STATUS "Old export file \"$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/cmake/GTest/GTestTargets.cmake\" will be replaced. Removing files [${_cmake_old_config_files_text}].")
unset(_cmake_old_config_files_text)
file(REMOVE ${_cmake_old_config_files})
endif()
unset(_cmake_old_config_files)
endif()
unset(_cmake_export_file_changed)
endif()
file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/lib/cmake/GTest" TYPE FILE FILES "C:/Users/Bram/School/Graphics Programming 1/GP1_Raytracer_Bram_Verhulst_2DAE11/cmake-build-release/_deps/gtest-build/googletest/CMakeFiles/Export/0c08b8e77dd885bfe55a19a9659d9fc1/GTestTargets.cmake")
if(CMAKE_INSTALL_CONFIG_NAME MATCHES "^([Rr][Ee][Ll][Ee][Aa][Ss][Ee])$")
file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/lib/cmake/GTest" TYPE FILE FILES "C:/Users/Bram/School/Graphics Programming 1/GP1_Raytracer_Bram_Verhulst_2DAE11/cmake-build-release/_deps/gtest-build/googletest/CMakeFiles/Export/0c08b8e77dd885bfe55a19a9659d9fc1/GTestTargets-release.cmake")
endif()
endif()
if(CMAKE_INSTALL_COMPONENT STREQUAL "gtest" OR NOT CMAKE_INSTALL_COMPONENT)
file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/lib/cmake/GTest" TYPE FILE FILES
"C:/Users/Bram/School/Graphics Programming 1/GP1_Raytracer_Bram_Verhulst_2DAE11/cmake-build-release/_deps/gtest-build/googletest/generated/GTestConfigVersion.cmake"
"C:/Users/Bram/School/Graphics Programming 1/GP1_Raytracer_Bram_Verhulst_2DAE11/cmake-build-release/_deps/gtest-build/googletest/generated/GTestConfig.cmake"
)
endif()
if(CMAKE_INSTALL_COMPONENT STREQUAL "gtest" OR NOT CMAKE_INSTALL_COMPONENT)
file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/include" TYPE DIRECTORY FILES "C:/Users/Bram/School/Graphics Programming 1/GP1_Raytracer_Bram_Verhulst_2DAE11/cmake-build-release/_deps/gtest-src/googletest/include/")
endif()
if(CMAKE_INSTALL_COMPONENT STREQUAL "gtest" OR NOT CMAKE_INSTALL_COMPONENT)
file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/lib" TYPE STATIC_LIBRARY FILES "C:/Users/Bram/School/Graphics Programming 1/GP1_Raytracer_Bram_Verhulst_2DAE11/cmake-build-release/lib/libgtest.a")
endif()
if(CMAKE_INSTALL_COMPONENT STREQUAL "gtest" OR NOT CMAKE_INSTALL_COMPONENT)
file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/lib" TYPE STATIC_LIBRARY FILES "C:/Users/Bram/School/Graphics Programming 1/GP1_Raytracer_Bram_Verhulst_2DAE11/cmake-build-release/lib/libgtest_main.a")
endif()
if(CMAKE_INSTALL_COMPONENT STREQUAL "gtest" OR NOT CMAKE_INSTALL_COMPONENT)
file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/lib/pkgconfig" TYPE FILE FILES "C:/Users/Bram/School/Graphics Programming 1/GP1_Raytracer_Bram_Verhulst_2DAE11/cmake-build-release/_deps/gtest-build/googletest/generated/gtest.pc")
endif()
if(CMAKE_INSTALL_COMPONENT STREQUAL "gtest" OR NOT CMAKE_INSTALL_COMPONENT)
file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/lib/pkgconfig" TYPE FILE FILES "C:/Users/Bram/School/Graphics Programming 1/GP1_Raytracer_Bram_Verhulst_2DAE11/cmake-build-release/_deps/gtest-build/googletest/generated/gtest_main.pc")
endif()

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 ()
set(THREADS_PREFER_PTHREAD_FLAG )
find_dependency(Threads)
endif()
include("${CMAKE_CURRENT_LIST_DIR}/GTestTargets.cmake")
check_required_components("")

View File

@@ -0,0 +1,43 @@
# 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.14.0")
if (PACKAGE_FIND_VERSION_RANGE)
# Package version must be in the requested version range
if ((PACKAGE_FIND_VERSION_RANGE_MIN STREQUAL "INCLUDE" AND PACKAGE_VERSION VERSION_LESS PACKAGE_FIND_VERSION_MIN)
OR ((PACKAGE_FIND_VERSION_RANGE_MAX STREQUAL "INCLUDE" AND PACKAGE_VERSION VERSION_GREATER PACKAGE_FIND_VERSION_MAX)
OR (PACKAGE_FIND_VERSION_RANGE_MAX STREQUAL "EXCLUDE" AND PACKAGE_VERSION VERSION_GREATER_EQUAL PACKAGE_FIND_VERSION_MAX)))
set(PACKAGE_VERSION_COMPATIBLE FALSE)
else()
set(PACKAGE_VERSION_COMPATIBLE TRUE)
endif()
else()
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()
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,9 @@
libdir=C:/Program Files (x86)/GP1_Raytracer/lib
includedir=C:/Program Files (x86)/GP1_Raytracer/include
Name: gtest
Description: GoogleTest (without main() function)
Version: 1.14.0
URL: https://github.com/google/googletest
Libs: -L${libdir} -lgtest
Cflags: -I${includedir} -DGTEST_HAS_PTHREAD=0

View File

@@ -0,0 +1,10 @@
libdir=C:/Program Files (x86)/GP1_Raytracer/lib
includedir=C:/Program Files (x86)/GP1_Raytracer/include
Name: gtest_main
Description: GoogleTest (with main() function)
Version: 1.14.0
URL: https://github.com/google/googletest
Requires: gtest = 1.14.0
Libs: -L${libdir} -lgtest_main
Cflags: -I${includedir} -DGTEST_HAS_PTHREAD=0

Submodule cmake-build-release/_deps/gtest-src added at f8d7d77c06

View File

@@ -0,0 +1,21 @@
# ninja log v6
2 46 7502538672063682 gtest-populate-prefix/src/gtest-populate-stamp/gtest-populate-mkdir 1df8b8a00abbaefb
2 46 7502538672063682 C:/Users/Bram/School/Graphics Programming 1/GP1_Raytracer_Bram_Verhulst_2DAE11/cmake-build-release/_deps/gtest-subbuild/gtest-populate-prefix/src/gtest-populate-stamp/gtest-populate-mkdir 1df8b8a00abbaefb
46 2981 7502538701400642 gtest-populate-prefix/src/gtest-populate-stamp/gtest-populate-download c3de9c4e838ff95b
46 2981 7502538701400642 C:/Users/Bram/School/Graphics Programming 1/GP1_Raytracer_Bram_Verhulst_2DAE11/cmake-build-release/_deps/gtest-subbuild/gtest-populate-prefix/src/gtest-populate-stamp/gtest-populate-download c3de9c4e838ff95b
2982 3132 7502538701460824 gtest-populate-prefix/src/gtest-populate-stamp/gtest-populate-update 6586f6ff8393d36
2982 3132 7502538701460824 C:/Users/Bram/School/Graphics Programming 1/GP1_Raytracer_Bram_Verhulst_2DAE11/cmake-build-release/_deps/gtest-subbuild/gtest-populate-prefix/src/gtest-populate-stamp/gtest-populate-update 6586f6ff8393d36
3133 3182 7502538703423458 gtest-populate-prefix/src/gtest-populate-stamp/gtest-populate-patch f90666172599301e
3133 3182 7502538703423458 C:/Users/Bram/School/Graphics Programming 1/GP1_Raytracer_Bram_Verhulst_2DAE11/cmake-build-release/_deps/gtest-subbuild/gtest-populate-prefix/src/gtest-populate-stamp/gtest-populate-patch f90666172599301e
3182 3226 7502538703862480 gtest-populate-prefix/src/gtest-populate-stamp/gtest-populate-configure fbe9d8005e71941e
3182 3226 7502538703862480 C:/Users/Bram/School/Graphics Programming 1/GP1_Raytracer_Bram_Verhulst_2DAE11/cmake-build-release/_deps/gtest-subbuild/gtest-populate-prefix/src/gtest-populate-stamp/gtest-populate-configure fbe9d8005e71941e
3227 3270 7502538704292662 gtest-populate-prefix/src/gtest-populate-stamp/gtest-populate-build dc047aa3617366e6
3227 3270 7502538704292662 C:/Users/Bram/School/Graphics Programming 1/GP1_Raytracer_Bram_Verhulst_2DAE11/cmake-build-release/_deps/gtest-subbuild/gtest-populate-prefix/src/gtest-populate-stamp/gtest-populate-build dc047aa3617366e6
3270 3319 7502538704784645 gtest-populate-prefix/src/gtest-populate-stamp/gtest-populate-install 4cbdd4de4079f72e
3270 3319 7502538704784645 C:/Users/Bram/School/Graphics Programming 1/GP1_Raytracer_Bram_Verhulst_2DAE11/cmake-build-release/_deps/gtest-subbuild/gtest-populate-prefix/src/gtest-populate-stamp/gtest-populate-install 4cbdd4de4079f72e
3319 3359 7502538705194644 gtest-populate-prefix/src/gtest-populate-stamp/gtest-populate-test ab015c8ec59af74d
3319 3359 7502538705194644 C:/Users/Bram/School/Graphics Programming 1/GP1_Raytracer_Bram_Verhulst_2DAE11/cmake-build-release/_deps/gtest-subbuild/gtest-populate-prefix/src/gtest-populate-stamp/gtest-populate-test ab015c8ec59af74d
3359 3418 7502538705774643 CMakeFiles/gtest-populate-complete f62be8893f96185e
3359 3418 7502538705774643 gtest-populate-prefix/src/gtest-populate-stamp/gtest-populate-done f62be8893f96185e
3359 3418 7502538705774643 C:/Users/Bram/School/Graphics Programming 1/GP1_Raytracer_Bram_Verhulst_2DAE11/cmake-build-release/_deps/gtest-subbuild/CMakeFiles/gtest-populate-complete f62be8893f96185e
3359 3418 7502538705774643 C:/Users/Bram/School/Graphics Programming 1/GP1_Raytracer_Bram_Verhulst_2DAE11/cmake-build-release/_deps/gtest-subbuild/gtest-populate-prefix/src/gtest-populate-stamp/gtest-populate-done f62be8893f96185e

View File

@@ -0,0 +1,109 @@
# This is the CMakeCache file.
# For build in directory: c:/Users/Bram/School/Graphics Programming 1/GP1_Raytracer_Bram_Verhulst_2DAE11/cmake-build-release/_deps/gtest-subbuild
# It was generated by CMake: C:/Users/Bram/AppData/Local/Programs/CLion/bin/cmake/win/x64/bin/cmake.exe
# 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 colored diagnostics throughout.
CMAKE_COLOR_DIAGNOSTICS:BOOL=ON
//Enable/Disable output of compile commands during generation.
CMAKE_EXPORT_COMPILE_COMMANDS:BOOL=
//Value Computed by CMake.
CMAKE_FIND_PACKAGE_REDIRECTS_DIR:STATIC=C:/Users/Bram/School/Graphics Programming 1/GP1_Raytracer_Bram_Verhulst_2DAE11/cmake-build-release/_deps/gtest-subbuild/CMakeFiles/pkgRedirects
//Install path prefix, prepended onto install directories.
CMAKE_INSTALL_PREFIX:PATH=C:/Program Files (x86)/gtest-populate
//No help, variable specified on the command line.
CMAKE_MAKE_PROGRAM:FILEPATH=C:/Users/Bram/AppData/Local/Programs/CLion/bin/ninja/win/x64/ninja.exe
//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=gtest-populate
//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
//Value Computed by CMake
gtest-populate_BINARY_DIR:STATIC=C:/Users/Bram/School/Graphics Programming 1/GP1_Raytracer_Bram_Verhulst_2DAE11/cmake-build-release/_deps/gtest-subbuild
//Value Computed by CMake
gtest-populate_IS_TOP_LEVEL:STATIC=ON
//Value Computed by CMake
gtest-populate_SOURCE_DIR:STATIC=C:/Users/Bram/School/Graphics Programming 1/GP1_Raytracer_Bram_Verhulst_2DAE11/cmake-build-release/_deps/gtest-subbuild
########################
# INTERNAL cache entries
########################
//This is the directory where this CMakeCache.txt was created
CMAKE_CACHEFILE_DIR:INTERNAL=c:/Users/Bram/School/Graphics Programming 1/GP1_Raytracer_Bram_Verhulst_2DAE11/cmake-build-release/_deps/gtest-subbuild
//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=29
//Patch version of cmake used to create the current loaded cache
CMAKE_CACHE_PATCH_VERSION:INTERNAL=6
//Path to CMake executable.
CMAKE_COMMAND:INTERNAL=C:/Users/Bram/AppData/Local/Programs/CLion/bin/cmake/win/x64/bin/cmake.exe
//Path to cpack program executable.
CMAKE_CPACK_COMMAND:INTERNAL=C:/Users/Bram/AppData/Local/Programs/CLion/bin/cmake/win/x64/bin/cpack.exe
//Path to ctest program executable.
CMAKE_CTEST_COMMAND:INTERNAL=C:/Users/Bram/AppData/Local/Programs/CLion/bin/cmake/win/x64/bin/ctest.exe
//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=Ninja
//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=C:/Users/Bram/School/Graphics Programming 1/GP1_Raytracer_Bram_Verhulst_2DAE11/cmake-build-release/_deps/gtest-subbuild
//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=C:/Users/Bram/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.29
//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
//ADVANCED property for variable: CMAKE_VERBOSE_MAKEFILE
CMAKE_VERBOSE_MAKEFILE-ADVANCED:INTERNAL=1

View File

@@ -0,0 +1,15 @@
set(CMAKE_HOST_SYSTEM "Windows-10.0.19045")
set(CMAKE_HOST_SYSTEM_NAME "Windows")
set(CMAKE_HOST_SYSTEM_VERSION "10.0.19045")
set(CMAKE_HOST_SYSTEM_PROCESSOR "AMD64")
set(CMAKE_SYSTEM "Windows-10.0.19045")
set(CMAKE_SYSTEM_NAME "Windows")
set(CMAKE_SYSTEM_VERSION "10.0.19045")
set(CMAKE_SYSTEM_PROCESSOR "AMD64")
set(CMAKE_CROSSCOMPILING "FALSE")
set(CMAKE_SYSTEM_LOADED 1)

View File

@@ -0,0 +1,11 @@
---
events:
-
kind: "message-v1"
backtrace:
- "C:/Users/Bram/AppData/Local/Programs/CLion/bin/cmake/win/x64/share/cmake-3.29/Modules/CMakeDetermineSystem.cmake:205 (message)"
- "CMakeLists.txt:16 (project)"
message: |
The system is: Windows - 10.0.19045 - AMD64
...

View File

@@ -0,0 +1,3 @@
C:/Users/Bram/School/Graphics Programming 1/GP1_Raytracer_Bram_Verhulst_2DAE11/cmake-build-release/_deps/gtest-subbuild/CMakeFiles/gtest-populate.dir
C:/Users/Bram/School/Graphics Programming 1/GP1_Raytracer_Bram_Verhulst_2DAE11/cmake-build-release/_deps/gtest-subbuild/CMakeFiles/edit_cache.dir
C:/Users/Bram/School/Graphics Programming 1/GP1_Raytracer_Bram_Verhulst_2DAE11/cmake-build-release/_deps/gtest-subbuild/CMakeFiles/rebuild_cache.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,46 @@
{
"sources" :
[
{
"file" : "C:/Users/Bram/School/Graphics Programming 1/GP1_Raytracer_Bram_Verhulst_2DAE11/cmake-build-release/_deps/gtest-subbuild/CMakeFiles/gtest-populate"
},
{
"file" : "C:/Users/Bram/School/Graphics Programming 1/GP1_Raytracer_Bram_Verhulst_2DAE11/cmake-build-release/_deps/gtest-subbuild/CMakeFiles/gtest-populate.rule"
},
{
"file" : "C:/Users/Bram/School/Graphics Programming 1/GP1_Raytracer_Bram_Verhulst_2DAE11/cmake-build-release/_deps/gtest-subbuild/CMakeFiles/gtest-populate-complete.rule"
},
{
"file" : "C:/Users/Bram/School/Graphics Programming 1/GP1_Raytracer_Bram_Verhulst_2DAE11/cmake-build-release/_deps/gtest-subbuild/gtest-populate-prefix/src/gtest-populate-stamp/gtest-populate-build.rule"
},
{
"file" : "C:/Users/Bram/School/Graphics Programming 1/GP1_Raytracer_Bram_Verhulst_2DAE11/cmake-build-release/_deps/gtest-subbuild/gtest-populate-prefix/src/gtest-populate-stamp/gtest-populate-configure.rule"
},
{
"file" : "C:/Users/Bram/School/Graphics Programming 1/GP1_Raytracer_Bram_Verhulst_2DAE11/cmake-build-release/_deps/gtest-subbuild/gtest-populate-prefix/src/gtest-populate-stamp/gtest-populate-download.rule"
},
{
"file" : "C:/Users/Bram/School/Graphics Programming 1/GP1_Raytracer_Bram_Verhulst_2DAE11/cmake-build-release/_deps/gtest-subbuild/gtest-populate-prefix/src/gtest-populate-stamp/gtest-populate-install.rule"
},
{
"file" : "C:/Users/Bram/School/Graphics Programming 1/GP1_Raytracer_Bram_Verhulst_2DAE11/cmake-build-release/_deps/gtest-subbuild/gtest-populate-prefix/src/gtest-populate-stamp/gtest-populate-mkdir.rule"
},
{
"file" : "C:/Users/Bram/School/Graphics Programming 1/GP1_Raytracer_Bram_Verhulst_2DAE11/cmake-build-release/_deps/gtest-subbuild/gtest-populate-prefix/src/gtest-populate-stamp/gtest-populate-patch.rule"
},
{
"file" : "C:/Users/Bram/School/Graphics Programming 1/GP1_Raytracer_Bram_Verhulst_2DAE11/cmake-build-release/_deps/gtest-subbuild/gtest-populate-prefix/src/gtest-populate-stamp/gtest-populate-test.rule"
},
{
"file" : "C:/Users/Bram/School/Graphics Programming 1/GP1_Raytracer_Bram_Verhulst_2DAE11/cmake-build-release/_deps/gtest-subbuild/gtest-populate-prefix/src/gtest-populate-stamp/gtest-populate-update.rule"
}
],
"target" :
{
"labels" :
[
"gtest-populate"
],
"name" : "gtest-populate"
}
}

View File

@@ -0,0 +1,14 @@
# Target labels
gtest-populate
# Source files and their labels
C:/Users/Bram/School/Graphics Programming 1/GP1_Raytracer_Bram_Verhulst_2DAE11/cmake-build-release/_deps/gtest-subbuild/CMakeFiles/gtest-populate
C:/Users/Bram/School/Graphics Programming 1/GP1_Raytracer_Bram_Verhulst_2DAE11/cmake-build-release/_deps/gtest-subbuild/CMakeFiles/gtest-populate.rule
C:/Users/Bram/School/Graphics Programming 1/GP1_Raytracer_Bram_Verhulst_2DAE11/cmake-build-release/_deps/gtest-subbuild/CMakeFiles/gtest-populate-complete.rule
C:/Users/Bram/School/Graphics Programming 1/GP1_Raytracer_Bram_Verhulst_2DAE11/cmake-build-release/_deps/gtest-subbuild/gtest-populate-prefix/src/gtest-populate-stamp/gtest-populate-build.rule
C:/Users/Bram/School/Graphics Programming 1/GP1_Raytracer_Bram_Verhulst_2DAE11/cmake-build-release/_deps/gtest-subbuild/gtest-populate-prefix/src/gtest-populate-stamp/gtest-populate-configure.rule
C:/Users/Bram/School/Graphics Programming 1/GP1_Raytracer_Bram_Verhulst_2DAE11/cmake-build-release/_deps/gtest-subbuild/gtest-populate-prefix/src/gtest-populate-stamp/gtest-populate-download.rule
C:/Users/Bram/School/Graphics Programming 1/GP1_Raytracer_Bram_Verhulst_2DAE11/cmake-build-release/_deps/gtest-subbuild/gtest-populate-prefix/src/gtest-populate-stamp/gtest-populate-install.rule
C:/Users/Bram/School/Graphics Programming 1/GP1_Raytracer_Bram_Verhulst_2DAE11/cmake-build-release/_deps/gtest-subbuild/gtest-populate-prefix/src/gtest-populate-stamp/gtest-populate-mkdir.rule
C:/Users/Bram/School/Graphics Programming 1/GP1_Raytracer_Bram_Verhulst_2DAE11/cmake-build-release/_deps/gtest-subbuild/gtest-populate-prefix/src/gtest-populate-stamp/gtest-populate-patch.rule
C:/Users/Bram/School/Graphics Programming 1/GP1_Raytracer_Bram_Verhulst_2DAE11/cmake-build-release/_deps/gtest-subbuild/gtest-populate-prefix/src/gtest-populate-stamp/gtest-populate-test.rule
C:/Users/Bram/School/Graphics Programming 1/GP1_Raytracer_Bram_Verhulst_2DAE11/cmake-build-release/_deps/gtest-subbuild/gtest-populate-prefix/src/gtest-populate-stamp/gtest-populate-update.rule

View File

@@ -0,0 +1,45 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "Ninja" Generator, CMake Version 3.29
# This file contains all the rules used to get the outputs files
# built from the input files.
# It is included in the main 'build.ninja'.
# =============================================================================
# Project: gtest-populate
# Configurations:
# =============================================================================
# =============================================================================
#############################################
# Rule for running custom commands.
rule CUSTOM_COMMAND
command = $COMMAND
description = $DESC
#############################################
# Rule for re-running cmake.
rule RERUN_CMAKE
command = C:\Users\Bram\AppData\Local\Programs\CLion\bin\cmake\win\x64\bin\cmake.exe --regenerate-during-build -S"C:\Users\Bram\School\Graphics Programming 1\GP1_Raytracer_Bram_Verhulst_2DAE11\cmake-build-release\_deps\gtest-subbuild" -B"C:\Users\Bram\School\Graphics Programming 1\GP1_Raytracer_Bram_Verhulst_2DAE11\cmake-build-release\_deps\gtest-subbuild"
description = Re-running CMake...
generator = 1
#############################################
# Rule for cleaning all built files.
rule CLEAN
command = C:\Users\Bram\AppData\Local\Programs\CLion\bin\ninja\win\x64\ninja.exe $FILE_ARG -t clean $TARGETS
description = Cleaning all built files...
#############################################
# Rule for printing all primary targets available.
rule HELP
command = C:\Users\Bram\AppData\Local\Programs\CLion\bin\ninja\win\x64\ninja.exe -t targets
description = All primary targets available:

View File

@@ -0,0 +1,42 @@
# Distributed under the OSI-approved BSD 3-Clause License. See accompanying
# file Copyright.txt or https://cmake.org/licensing for details.
cmake_minimum_required(VERSION 3.29.6)
# Reject any attempt to use a toolchain file. We must not use one because
# we could be downloading it here. If the CMAKE_TOOLCHAIN_FILE environment
# variable is set, the cache variable will have been initialized from it.
unset(CMAKE_TOOLCHAIN_FILE CACHE)
unset(ENV{CMAKE_TOOLCHAIN_FILE})
# We name the project and the target for the ExternalProject_Add() call
# to something that will highlight to the user what we are working on if
# something goes wrong and an error message is produced.
project(gtest-populate NONE)
# Pass through things we've already detected in the main project to avoid
# paying the cost of redetecting them again in ExternalProject_Add()
set(GIT_EXECUTABLE [==[C:/devkitPro/msys2/usr/bin/git.exe]==])
set(GIT_VERSION_STRING [==[2.44.0]==])
set_property(GLOBAL PROPERTY _CMAKE_FindGit_GIT_EXECUTABLE_VERSION
[==[C:/devkitPro/msys2/usr/bin/git.exe;2.44.0]==]
)
include(ExternalProject)
ExternalProject_Add(gtest-populate
"UPDATE_DISCONNECTED" "False" "GIT_REPOSITORY" "https://github.com/google/googletest.git" "EXTERNALPROJECT_INTERNAL_ARGUMENT_SEPARATOR" "GIT_TAG" "v1.14.0" "GIT_SHALLOW" "TRUE" "GIT_PROGRESS" "TRUE"
SOURCE_DIR "C:/Users/Bram/School/Graphics Programming 1/GP1_Raytracer_Bram_Verhulst_2DAE11/cmake-build-release/_deps/gtest-src"
BINARY_DIR "C:/Users/Bram/School/Graphics Programming 1/GP1_Raytracer_Bram_Verhulst_2DAE11/cmake-build-release/_deps/gtest-build"
CONFIGURE_COMMAND ""
BUILD_COMMAND ""
INSTALL_COMMAND ""
TEST_COMMAND ""
USES_TERMINAL_DOWNLOAD YES
USES_TERMINAL_UPDATE YES
USES_TERMINAL_PATCH YES
)

View File

@@ -0,0 +1,201 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "Ninja" Generator, CMake Version 3.29
# This file contains all the build statements describing the
# compilation DAG.
# =============================================================================
# Write statements declared in CMakeLists.txt:
#
# Which is the root file.
# =============================================================================
# =============================================================================
# Project: gtest-populate
# Configurations:
# =============================================================================
#############################################
# Minimal version of Ninja required by this file
ninja_required_version = 1.5
# =============================================================================
# Include auxiliary files.
#############################################
# Include rules file.
include CMakeFiles\rules.ninja
# =============================================================================
#############################################
# Logical path to working directory; prefix for absolute paths.
cmake_ninja_workdir = C$:\Users\Bram\School\Graphics$ Programming$ 1\GP1_Raytracer_Bram_Verhulst_2DAE11\cmake-build-release\_deps\gtest-subbuild\
#############################################
# Utility command for gtest-populate
build gtest-populate: phony CMakeFiles\gtest-populate CMakeFiles\gtest-populate-complete gtest-populate-prefix\src\gtest-populate-stamp\gtest-populate-done gtest-populate-prefix\src\gtest-populate-stamp\gtest-populate-build gtest-populate-prefix\src\gtest-populate-stamp\gtest-populate-configure gtest-populate-prefix\src\gtest-populate-stamp\gtest-populate-download gtest-populate-prefix\src\gtest-populate-stamp\gtest-populate-install gtest-populate-prefix\src\gtest-populate-stamp\gtest-populate-mkdir gtest-populate-prefix\src\gtest-populate-stamp\gtest-populate-patch gtest-populate-prefix\src\gtest-populate-stamp\gtest-populate-test gtest-populate-prefix\src\gtest-populate-stamp\gtest-populate-update
#############################################
# Utility command for edit_cache
build CMakeFiles\edit_cache.util: CUSTOM_COMMAND
COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D "C:\Users\Bram\School\Graphics Programming 1\GP1_Raytracer_Bram_Verhulst_2DAE11\cmake-build-release\_deps\gtest-subbuild" && C:\Users\Bram\AppData\Local\Programs\CLion\bin\cmake\win\x64\bin\cmake.exe -E echo "No interactive CMake dialog available.""
DESC = No interactive CMake dialog available...
restat = 1
build edit_cache: phony CMakeFiles\edit_cache.util
#############################################
# Utility command for rebuild_cache
build CMakeFiles\rebuild_cache.util: CUSTOM_COMMAND
COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D "C:\Users\Bram\School\Graphics Programming 1\GP1_Raytracer_Bram_Verhulst_2DAE11\cmake-build-release\_deps\gtest-subbuild" && C:\Users\Bram\AppData\Local\Programs\CLion\bin\cmake\win\x64\bin\cmake.exe --regenerate-during-build -S"C:\Users\Bram\School\Graphics Programming 1\GP1_Raytracer_Bram_Verhulst_2DAE11\cmake-build-release\_deps\gtest-subbuild" -B"C:\Users\Bram\School\Graphics Programming 1\GP1_Raytracer_Bram_Verhulst_2DAE11\cmake-build-release\_deps\gtest-subbuild""
DESC = Running CMake to regenerate build system...
pool = console
restat = 1
build rebuild_cache: phony CMakeFiles\rebuild_cache.util
#############################################
# Phony custom command for CMakeFiles\gtest-populate
build CMakeFiles\gtest-populate | ${cmake_ninja_workdir}CMakeFiles\gtest-populate: phony CMakeFiles\gtest-populate-complete
#############################################
# Custom command for CMakeFiles\gtest-populate-complete
build CMakeFiles\gtest-populate-complete gtest-populate-prefix\src\gtest-populate-stamp\gtest-populate-done | ${cmake_ninja_workdir}CMakeFiles\gtest-populate-complete ${cmake_ninja_workdir}gtest-populate-prefix\src\gtest-populate-stamp\gtest-populate-done: CUSTOM_COMMAND gtest-populate-prefix\src\gtest-populate-stamp\gtest-populate-install gtest-populate-prefix\src\gtest-populate-stamp\gtest-populate-mkdir gtest-populate-prefix\src\gtest-populate-stamp\gtest-populate-download gtest-populate-prefix\src\gtest-populate-stamp\gtest-populate-update gtest-populate-prefix\src\gtest-populate-stamp\gtest-populate-patch gtest-populate-prefix\src\gtest-populate-stamp\gtest-populate-configure gtest-populate-prefix\src\gtest-populate-stamp\gtest-populate-build gtest-populate-prefix\src\gtest-populate-stamp\gtest-populate-install gtest-populate-prefix\src\gtest-populate-stamp\gtest-populate-test
COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D "C:\Users\Bram\School\Graphics Programming 1\GP1_Raytracer_Bram_Verhulst_2DAE11\cmake-build-release\_deps\gtest-subbuild" && C:\Users\Bram\AppData\Local\Programs\CLion\bin\cmake\win\x64\bin\cmake.exe -E make_directory "C:/Users/Bram/School/Graphics Programming 1/GP1_Raytracer_Bram_Verhulst_2DAE11/cmake-build-release/_deps/gtest-subbuild/CMakeFiles" && C:\Users\Bram\AppData\Local\Programs\CLion\bin\cmake\win\x64\bin\cmake.exe -E touch "C:/Users/Bram/School/Graphics Programming 1/GP1_Raytracer_Bram_Verhulst_2DAE11/cmake-build-release/_deps/gtest-subbuild/CMakeFiles/gtest-populate-complete" && C:\Users\Bram\AppData\Local\Programs\CLion\bin\cmake\win\x64\bin\cmake.exe -E touch "C:/Users/Bram/School/Graphics Programming 1/GP1_Raytracer_Bram_Verhulst_2DAE11/cmake-build-release/_deps/gtest-subbuild/gtest-populate-prefix/src/gtest-populate-stamp/gtest-populate-done""
DESC = Completed 'gtest-populate'
restat = 1
#############################################
# Custom command for gtest-populate-prefix\src\gtest-populate-stamp\gtest-populate-build
build gtest-populate-prefix\src\gtest-populate-stamp\gtest-populate-build | ${cmake_ninja_workdir}gtest-populate-prefix\src\gtest-populate-stamp\gtest-populate-build: CUSTOM_COMMAND gtest-populate-prefix\src\gtest-populate-stamp\gtest-populate-configure
COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D "C:\Users\Bram\School\Graphics Programming 1\GP1_Raytracer_Bram_Verhulst_2DAE11\cmake-build-release\_deps\gtest-build" && C:\Users\Bram\AppData\Local\Programs\CLion\bin\cmake\win\x64\bin\cmake.exe -E echo_append && C:\Users\Bram\AppData\Local\Programs\CLion\bin\cmake\win\x64\bin\cmake.exe -E touch "C:/Users/Bram/School/Graphics Programming 1/GP1_Raytracer_Bram_Verhulst_2DAE11/cmake-build-release/_deps/gtest-subbuild/gtest-populate-prefix/src/gtest-populate-stamp/gtest-populate-build""
DESC = No build step for 'gtest-populate'
restat = 1
#############################################
# Custom command for gtest-populate-prefix\src\gtest-populate-stamp\gtest-populate-configure
build gtest-populate-prefix\src\gtest-populate-stamp\gtest-populate-configure | ${cmake_ninja_workdir}gtest-populate-prefix\src\gtest-populate-stamp\gtest-populate-configure: CUSTOM_COMMAND gtest-populate-prefix\tmp\gtest-populate-cfgcmd.txt gtest-populate-prefix\src\gtest-populate-stamp\gtest-populate-patch
COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D "C:\Users\Bram\School\Graphics Programming 1\GP1_Raytracer_Bram_Verhulst_2DAE11\cmake-build-release\_deps\gtest-build" && C:\Users\Bram\AppData\Local\Programs\CLion\bin\cmake\win\x64\bin\cmake.exe -E echo_append && C:\Users\Bram\AppData\Local\Programs\CLion\bin\cmake\win\x64\bin\cmake.exe -E touch "C:/Users/Bram/School/Graphics Programming 1/GP1_Raytracer_Bram_Verhulst_2DAE11/cmake-build-release/_deps/gtest-subbuild/gtest-populate-prefix/src/gtest-populate-stamp/gtest-populate-configure""
DESC = No configure step for 'gtest-populate'
restat = 1
#############################################
# Custom command for gtest-populate-prefix\src\gtest-populate-stamp\gtest-populate-download
build gtest-populate-prefix\src\gtest-populate-stamp\gtest-populate-download | ${cmake_ninja_workdir}gtest-populate-prefix\src\gtest-populate-stamp\gtest-populate-download: CUSTOM_COMMAND gtest-populate-prefix\src\gtest-populate-stamp\gtest-populate-gitinfo.txt gtest-populate-prefix\src\gtest-populate-stamp\gtest-populate-mkdir
COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D "C:\Users\Bram\School\Graphics Programming 1\GP1_Raytracer_Bram_Verhulst_2DAE11\cmake-build-release\_deps" && C:\Users\Bram\AppData\Local\Programs\CLion\bin\cmake\win\x64\bin\cmake.exe -P "C:/Users/Bram/School/Graphics Programming 1/GP1_Raytracer_Bram_Verhulst_2DAE11/cmake-build-release/_deps/gtest-subbuild/gtest-populate-prefix/tmp/gtest-populate-gitclone.cmake" && C:\Users\Bram\AppData\Local\Programs\CLion\bin\cmake\win\x64\bin\cmake.exe -E touch "C:/Users/Bram/School/Graphics Programming 1/GP1_Raytracer_Bram_Verhulst_2DAE11/cmake-build-release/_deps/gtest-subbuild/gtest-populate-prefix/src/gtest-populate-stamp/gtest-populate-download""
DESC = Performing download step (git clone) for 'gtest-populate'
pool = console
restat = 1
#############################################
# Custom command for gtest-populate-prefix\src\gtest-populate-stamp\gtest-populate-install
build gtest-populate-prefix\src\gtest-populate-stamp\gtest-populate-install | ${cmake_ninja_workdir}gtest-populate-prefix\src\gtest-populate-stamp\gtest-populate-install: CUSTOM_COMMAND gtest-populate-prefix\src\gtest-populate-stamp\gtest-populate-build
COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D "C:\Users\Bram\School\Graphics Programming 1\GP1_Raytracer_Bram_Verhulst_2DAE11\cmake-build-release\_deps\gtest-build" && C:\Users\Bram\AppData\Local\Programs\CLion\bin\cmake\win\x64\bin\cmake.exe -E echo_append && C:\Users\Bram\AppData\Local\Programs\CLion\bin\cmake\win\x64\bin\cmake.exe -E touch "C:/Users/Bram/School/Graphics Programming 1/GP1_Raytracer_Bram_Verhulst_2DAE11/cmake-build-release/_deps/gtest-subbuild/gtest-populate-prefix/src/gtest-populate-stamp/gtest-populate-install""
DESC = No install step for 'gtest-populate'
restat = 1
#############################################
# Custom command for gtest-populate-prefix\src\gtest-populate-stamp\gtest-populate-mkdir
build gtest-populate-prefix\src\gtest-populate-stamp\gtest-populate-mkdir | ${cmake_ninja_workdir}gtest-populate-prefix\src\gtest-populate-stamp\gtest-populate-mkdir: CUSTOM_COMMAND
COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D "C:\Users\Bram\School\Graphics Programming 1\GP1_Raytracer_Bram_Verhulst_2DAE11\cmake-build-release\_deps\gtest-subbuild" && C:\Users\Bram\AppData\Local\Programs\CLion\bin\cmake\win\x64\bin\cmake.exe -Dcfgdir= -P "C:/Users/Bram/School/Graphics Programming 1/GP1_Raytracer_Bram_Verhulst_2DAE11/cmake-build-release/_deps/gtest-subbuild/gtest-populate-prefix/tmp/gtest-populate-mkdirs.cmake" && C:\Users\Bram\AppData\Local\Programs\CLion\bin\cmake\win\x64\bin\cmake.exe -E touch "C:/Users/Bram/School/Graphics Programming 1/GP1_Raytracer_Bram_Verhulst_2DAE11/cmake-build-release/_deps/gtest-subbuild/gtest-populate-prefix/src/gtest-populate-stamp/gtest-populate-mkdir""
DESC = Creating directories for 'gtest-populate'
restat = 1
#############################################
# Custom command for gtest-populate-prefix\src\gtest-populate-stamp\gtest-populate-patch
build gtest-populate-prefix\src\gtest-populate-stamp\gtest-populate-patch | ${cmake_ninja_workdir}gtest-populate-prefix\src\gtest-populate-stamp\gtest-populate-patch: CUSTOM_COMMAND gtest-populate-prefix\src\gtest-populate-stamp\gtest-populate-patch-info.txt gtest-populate-prefix\src\gtest-populate-stamp\gtest-populate-update
COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D "C:\Users\Bram\School\Graphics Programming 1\GP1_Raytracer_Bram_Verhulst_2DAE11\cmake-build-release\_deps\gtest-subbuild" && C:\Users\Bram\AppData\Local\Programs\CLion\bin\cmake\win\x64\bin\cmake.exe -E echo_append && C:\Users\Bram\AppData\Local\Programs\CLion\bin\cmake\win\x64\bin\cmake.exe -E touch "C:/Users/Bram/School/Graphics Programming 1/GP1_Raytracer_Bram_Verhulst_2DAE11/cmake-build-release/_deps/gtest-subbuild/gtest-populate-prefix/src/gtest-populate-stamp/gtest-populate-patch""
DESC = No patch step for 'gtest-populate'
pool = console
restat = 1
#############################################
# Custom command for gtest-populate-prefix\src\gtest-populate-stamp\gtest-populate-test
build gtest-populate-prefix\src\gtest-populate-stamp\gtest-populate-test | ${cmake_ninja_workdir}gtest-populate-prefix\src\gtest-populate-stamp\gtest-populate-test: CUSTOM_COMMAND gtest-populate-prefix\src\gtest-populate-stamp\gtest-populate-install
COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D "C:\Users\Bram\School\Graphics Programming 1\GP1_Raytracer_Bram_Verhulst_2DAE11\cmake-build-release\_deps\gtest-build" && C:\Users\Bram\AppData\Local\Programs\CLion\bin\cmake\win\x64\bin\cmake.exe -E echo_append && C:\Users\Bram\AppData\Local\Programs\CLion\bin\cmake\win\x64\bin\cmake.exe -E touch "C:/Users/Bram/School/Graphics Programming 1/GP1_Raytracer_Bram_Verhulst_2DAE11/cmake-build-release/_deps/gtest-subbuild/gtest-populate-prefix/src/gtest-populate-stamp/gtest-populate-test""
DESC = No test step for 'gtest-populate'
restat = 1
#############################################
# Custom command for gtest-populate-prefix\src\gtest-populate-stamp\gtest-populate-update
build gtest-populate-prefix\src\gtest-populate-stamp\gtest-populate-update | ${cmake_ninja_workdir}gtest-populate-prefix\src\gtest-populate-stamp\gtest-populate-update: CUSTOM_COMMAND gtest-populate-prefix\tmp\gtest-populate-gitupdate.cmake gtest-populate-prefix\src\gtest-populate-stamp\gtest-populate-update-info.txt gtest-populate-prefix\src\gtest-populate-stamp\gtest-populate-download
COMMAND = C:\WINDOWS\system32\cmd.exe /C "cd /D "C:\Users\Bram\School\Graphics Programming 1\GP1_Raytracer_Bram_Verhulst_2DAE11\cmake-build-release\_deps\gtest-src" && C:\Users\Bram\AppData\Local\Programs\CLion\bin\cmake\win\x64\bin\cmake.exe -Dcan_fetch=YES -P "C:/Users/Bram/School/Graphics Programming 1/GP1_Raytracer_Bram_Verhulst_2DAE11/cmake-build-release/_deps/gtest-subbuild/gtest-populate-prefix/tmp/gtest-populate-gitupdate.cmake""
DESC = Performing update step for 'gtest-populate'
pool = console
# =============================================================================
# Target aliases.
# =============================================================================
# Folder targets.
# =============================================================================
#############################################
# Folder: C:/Users/Bram/School/Graphics Programming 1/GP1_Raytracer_Bram_Verhulst_2DAE11/cmake-build-release/_deps/gtest-subbuild
build all: phony gtest-populate
# =============================================================================
# Built-in targets
#############################################
# Re-run CMake if any of its inputs changed.
build build.ninja: RERUN_CMAKE | C$:\Users\Bram\AppData\Local\Programs\CLion\bin\cmake\win\x64\share\cmake-3.29\Modules\CMakeDetermineSystem.cmake C$:\Users\Bram\AppData\Local\Programs\CLion\bin\cmake\win\x64\share\cmake-3.29\Modules\CMakeGenericSystem.cmake C$:\Users\Bram\AppData\Local\Programs\CLion\bin\cmake\win\x64\share\cmake-3.29\Modules\CMakeInitializeConfigs.cmake C$:\Users\Bram\AppData\Local\Programs\CLion\bin\cmake\win\x64\share\cmake-3.29\Modules\CMakeSystem.cmake.in C$:\Users\Bram\AppData\Local\Programs\CLion\bin\cmake\win\x64\share\cmake-3.29\Modules\CMakeSystemSpecificInformation.cmake C$:\Users\Bram\AppData\Local\Programs\CLion\bin\cmake\win\x64\share\cmake-3.29\Modules\CMakeSystemSpecificInitialize.cmake C$:\Users\Bram\AppData\Local\Programs\CLion\bin\cmake\win\x64\share\cmake-3.29\Modules\ExternalProject.cmake C$:\Users\Bram\AppData\Local\Programs\CLion\bin\cmake\win\x64\share\cmake-3.29\Modules\ExternalProject\PatchInfo.txt.in C$:\Users\Bram\AppData\Local\Programs\CLion\bin\cmake\win\x64\share\cmake-3.29\Modules\ExternalProject\RepositoryInfo.txt.in C$:\Users\Bram\AppData\Local\Programs\CLion\bin\cmake\win\x64\share\cmake-3.29\Modules\ExternalProject\UpdateInfo.txt.in C$:\Users\Bram\AppData\Local\Programs\CLion\bin\cmake\win\x64\share\cmake-3.29\Modules\ExternalProject\cfgcmd.txt.in C$:\Users\Bram\AppData\Local\Programs\CLion\bin\cmake\win\x64\share\cmake-3.29\Modules\ExternalProject\gitclone.cmake.in C$:\Users\Bram\AppData\Local\Programs\CLion\bin\cmake\win\x64\share\cmake-3.29\Modules\ExternalProject\gitupdate.cmake.in C$:\Users\Bram\AppData\Local\Programs\CLion\bin\cmake\win\x64\share\cmake-3.29\Modules\ExternalProject\mkdirs.cmake.in C$:\Users\Bram\AppData\Local\Programs\CLion\bin\cmake\win\x64\share\cmake-3.29\Modules\ExternalProject\shared_internal_commands.cmake C$:\Users\Bram\AppData\Local\Programs\CLion\bin\cmake\win\x64\share\cmake-3.29\Modules\Platform\Windows-Initialize.cmake C$:\Users\Bram\AppData\Local\Programs\CLion\bin\cmake\win\x64\share\cmake-3.29\Modules\Platform\Windows.cmake C$:\Users\Bram\AppData\Local\Programs\CLion\bin\cmake\win\x64\share\cmake-3.29\Modules\Platform\WindowsPaths.cmake CMakeCache.txt CMakeFiles\3.29.6\CMakeSystem.cmake CMakeLists.txt gtest-populate-prefix\tmp\gtest-populate-mkdirs.cmake
pool = console
#############################################
# A missing CMake input file is not an error.
build C$:\Users\Bram\AppData\Local\Programs\CLion\bin\cmake\win\x64\share\cmake-3.29\Modules\CMakeDetermineSystem.cmake C$:\Users\Bram\AppData\Local\Programs\CLion\bin\cmake\win\x64\share\cmake-3.29\Modules\CMakeGenericSystem.cmake C$:\Users\Bram\AppData\Local\Programs\CLion\bin\cmake\win\x64\share\cmake-3.29\Modules\CMakeInitializeConfigs.cmake C$:\Users\Bram\AppData\Local\Programs\CLion\bin\cmake\win\x64\share\cmake-3.29\Modules\CMakeSystem.cmake.in C$:\Users\Bram\AppData\Local\Programs\CLion\bin\cmake\win\x64\share\cmake-3.29\Modules\CMakeSystemSpecificInformation.cmake C$:\Users\Bram\AppData\Local\Programs\CLion\bin\cmake\win\x64\share\cmake-3.29\Modules\CMakeSystemSpecificInitialize.cmake C$:\Users\Bram\AppData\Local\Programs\CLion\bin\cmake\win\x64\share\cmake-3.29\Modules\ExternalProject.cmake C$:\Users\Bram\AppData\Local\Programs\CLion\bin\cmake\win\x64\share\cmake-3.29\Modules\ExternalProject\PatchInfo.txt.in C$:\Users\Bram\AppData\Local\Programs\CLion\bin\cmake\win\x64\share\cmake-3.29\Modules\ExternalProject\RepositoryInfo.txt.in C$:\Users\Bram\AppData\Local\Programs\CLion\bin\cmake\win\x64\share\cmake-3.29\Modules\ExternalProject\UpdateInfo.txt.in C$:\Users\Bram\AppData\Local\Programs\CLion\bin\cmake\win\x64\share\cmake-3.29\Modules\ExternalProject\cfgcmd.txt.in C$:\Users\Bram\AppData\Local\Programs\CLion\bin\cmake\win\x64\share\cmake-3.29\Modules\ExternalProject\gitclone.cmake.in C$:\Users\Bram\AppData\Local\Programs\CLion\bin\cmake\win\x64\share\cmake-3.29\Modules\ExternalProject\gitupdate.cmake.in C$:\Users\Bram\AppData\Local\Programs\CLion\bin\cmake\win\x64\share\cmake-3.29\Modules\ExternalProject\mkdirs.cmake.in C$:\Users\Bram\AppData\Local\Programs\CLion\bin\cmake\win\x64\share\cmake-3.29\Modules\ExternalProject\shared_internal_commands.cmake C$:\Users\Bram\AppData\Local\Programs\CLion\bin\cmake\win\x64\share\cmake-3.29\Modules\Platform\Windows-Initialize.cmake C$:\Users\Bram\AppData\Local\Programs\CLion\bin\cmake\win\x64\share\cmake-3.29\Modules\Platform\Windows.cmake C$:\Users\Bram\AppData\Local\Programs\CLion\bin\cmake\win\x64\share\cmake-3.29\Modules\Platform\WindowsPaths.cmake CMakeCache.txt CMakeFiles\3.29.6\CMakeSystem.cmake CMakeLists.txt gtest-populate-prefix\tmp\gtest-populate-mkdirs.cmake: phony
#############################################
# Clean all the built files.
build clean: CLEAN
#############################################
# Print all primary targets available.
build help: HELP
#############################################
# Make the all target the default.
default all

View File

@@ -0,0 +1,44 @@
# Install script for directory: C:/Users/Bram/School/Graphics Programming 1/GP1_Raytracer_Bram_Verhulst_2DAE11/cmake-build-release/_deps/gtest-subbuild
# Set the install prefix
if(NOT DEFINED CMAKE_INSTALL_PREFIX)
set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/gtest-populate")
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 "C:/Users/Bram/School/Graphics Programming 1/GP1_Raytracer_Bram_Verhulst_2DAE11/cmake-build-release/_deps/gtest-subbuild/${CMAKE_INSTALL_MANIFEST}"
"${CMAKE_INSTALL_MANIFEST_CONTENT}")

View File

@@ -0,0 +1,15 @@
# This is a generated file and its contents are an internal implementation detail.
# The download step will be re-executed if anything in this file changes.
# No other meaning or use of this file is supported.
method=git
command=C:/Users/Bram/AppData/Local/Programs/CLion/bin/cmake/win/x64/bin/cmake.exe;-P;C:/Users/Bram/School/Graphics Programming 1/GP1_Raytracer_Bram_Verhulst_2DAE11/cmake-build-release/_deps/gtest-subbuild/gtest-populate-prefix/tmp/gtest-populate-gitclone.cmake
source_dir=C:/Users/Bram/School/Graphics Programming 1/GP1_Raytracer_Bram_Verhulst_2DAE11/cmake-build-release/_deps/gtest-src
work_dir=C:/Users/Bram/School/Graphics Programming 1/GP1_Raytracer_Bram_Verhulst_2DAE11/cmake-build-release/_deps
repository=https://github.com/google/googletest.git
remote=origin
init_submodules=TRUE
recurse_submodules=--recursive
submodules=
CMP0097=NEW

View File

@@ -0,0 +1,15 @@
# This is a generated file and its contents are an internal implementation detail.
# The download step will be re-executed if anything in this file changes.
# No other meaning or use of this file is supported.
method=git
command=C:/Users/Bram/AppData/Local/Programs/CLion/bin/cmake/win/x64/bin/cmake.exe;-P;C:/Users/Bram/School/Graphics Programming 1/GP1_Raytracer_Bram_Verhulst_2DAE11/cmake-build-release/_deps/gtest-subbuild/gtest-populate-prefix/tmp/gtest-populate-gitclone.cmake
source_dir=C:/Users/Bram/School/Graphics Programming 1/GP1_Raytracer_Bram_Verhulst_2DAE11/cmake-build-release/_deps/gtest-src
work_dir=C:/Users/Bram/School/Graphics Programming 1/GP1_Raytracer_Bram_Verhulst_2DAE11/cmake-build-release/_deps
repository=https://github.com/google/googletest.git
remote=origin
init_submodules=TRUE
recurse_submodules=--recursive
submodules=
CMP0097=NEW

View File

@@ -0,0 +1,6 @@
# This is a generated file and its contents are an internal implementation detail.
# The update step will be re-executed if anything in this file changes.
# No other meaning or use of this file is supported.
command=
work_dir=

View File

@@ -0,0 +1,7 @@
# This is a generated file and its contents are an internal implementation detail.
# The patch step will be re-executed if anything in this file changes.
# No other meaning or use of this file is supported.
command (connected)=C:/Users/Bram/AppData/Local/Programs/CLion/bin/cmake/win/x64/bin/cmake.exe;-Dcan_fetch=YES;-P;C:/Users/Bram/School/Graphics Programming 1/GP1_Raytracer_Bram_Verhulst_2DAE11/cmake-build-release/_deps/gtest-subbuild/gtest-populate-prefix/tmp/gtest-populate-gitupdate.cmake
command (disconnected)=C:/Users/Bram/AppData/Local/Programs/CLion/bin/cmake/win/x64/bin/cmake.exe;-Dcan_fetch=NO;-P;C:/Users/Bram/School/Graphics Programming 1/GP1_Raytracer_Bram_Verhulst_2DAE11/cmake-build-release/_deps/gtest-subbuild/gtest-populate-prefix/tmp/gtest-populate-gitupdate.cmake
work_dir=C:/Users/Bram/School/Graphics Programming 1/GP1_Raytracer_Bram_Verhulst_2DAE11/cmake-build-release/_deps/gtest-src

View File

@@ -0,0 +1,73 @@
# Distributed under the OSI-approved BSD 3-Clause License. See accompanying
# file Copyright.txt or https://cmake.org/licensing for details.
cmake_minimum_required(VERSION 3.5)
if(EXISTS "C:/Users/Bram/School/Graphics Programming 1/GP1_Raytracer_Bram_Verhulst_2DAE11/cmake-build-release/_deps/gtest-subbuild/gtest-populate-prefix/src/gtest-populate-stamp/gtest-populate-gitclone-lastrun.txt" AND EXISTS "C:/Users/Bram/School/Graphics Programming 1/GP1_Raytracer_Bram_Verhulst_2DAE11/cmake-build-release/_deps/gtest-subbuild/gtest-populate-prefix/src/gtest-populate-stamp/gtest-populate-gitinfo.txt" AND
"C:/Users/Bram/School/Graphics Programming 1/GP1_Raytracer_Bram_Verhulst_2DAE11/cmake-build-release/_deps/gtest-subbuild/gtest-populate-prefix/src/gtest-populate-stamp/gtest-populate-gitclone-lastrun.txt" IS_NEWER_THAN "C:/Users/Bram/School/Graphics Programming 1/GP1_Raytracer_Bram_Verhulst_2DAE11/cmake-build-release/_deps/gtest-subbuild/gtest-populate-prefix/src/gtest-populate-stamp/gtest-populate-gitinfo.txt")
message(STATUS
"Avoiding repeated git clone, stamp file is up to date: "
"'C:/Users/Bram/School/Graphics Programming 1/GP1_Raytracer_Bram_Verhulst_2DAE11/cmake-build-release/_deps/gtest-subbuild/gtest-populate-prefix/src/gtest-populate-stamp/gtest-populate-gitclone-lastrun.txt'"
)
return()
endif()
execute_process(
COMMAND ${CMAKE_COMMAND} -E rm -rf "C:/Users/Bram/School/Graphics Programming 1/GP1_Raytracer_Bram_Verhulst_2DAE11/cmake-build-release/_deps/gtest-src"
RESULT_VARIABLE error_code
)
if(error_code)
message(FATAL_ERROR "Failed to remove directory: 'C:/Users/Bram/School/Graphics Programming 1/GP1_Raytracer_Bram_Verhulst_2DAE11/cmake-build-release/_deps/gtest-src'")
endif()
# try the clone 3 times in case there is an odd git clone issue
set(error_code 1)
set(number_of_tries 0)
while(error_code AND number_of_tries LESS 3)
execute_process(
COMMAND "C:/devkitPro/msys2/usr/bin/git.exe"
clone --no-checkout --depth 1 --no-single-branch --progress --config "advice.detachedHead=false" "https://github.com/google/googletest.git" "gtest-src"
WORKING_DIRECTORY "C:/Users/Bram/School/Graphics Programming 1/GP1_Raytracer_Bram_Verhulst_2DAE11/cmake-build-release/_deps"
RESULT_VARIABLE error_code
)
math(EXPR number_of_tries "${number_of_tries} + 1")
endwhile()
if(number_of_tries GREATER 1)
message(STATUS "Had to git clone more than once: ${number_of_tries} times.")
endif()
if(error_code)
message(FATAL_ERROR "Failed to clone repository: 'https://github.com/google/googletest.git'")
endif()
execute_process(
COMMAND "C:/devkitPro/msys2/usr/bin/git.exe"
checkout "v1.14.0" --
WORKING_DIRECTORY "C:/Users/Bram/School/Graphics Programming 1/GP1_Raytracer_Bram_Verhulst_2DAE11/cmake-build-release/_deps/gtest-src"
RESULT_VARIABLE error_code
)
if(error_code)
message(FATAL_ERROR "Failed to checkout tag: 'v1.14.0'")
endif()
set(init_submodules TRUE)
if(init_submodules)
execute_process(
COMMAND "C:/devkitPro/msys2/usr/bin/git.exe"
submodule update --recursive --init
WORKING_DIRECTORY "C:/Users/Bram/School/Graphics Programming 1/GP1_Raytracer_Bram_Verhulst_2DAE11/cmake-build-release/_deps/gtest-src"
RESULT_VARIABLE error_code
)
endif()
if(error_code)
message(FATAL_ERROR "Failed to update submodules in: 'C:/Users/Bram/School/Graphics Programming 1/GP1_Raytracer_Bram_Verhulst_2DAE11/cmake-build-release/_deps/gtest-src'")
endif()
# Complete success, update the script-last-run stamp file:
#
execute_process(
COMMAND ${CMAKE_COMMAND} -E copy "C:/Users/Bram/School/Graphics Programming 1/GP1_Raytracer_Bram_Verhulst_2DAE11/cmake-build-release/_deps/gtest-subbuild/gtest-populate-prefix/src/gtest-populate-stamp/gtest-populate-gitinfo.txt" "C:/Users/Bram/School/Graphics Programming 1/GP1_Raytracer_Bram_Verhulst_2DAE11/cmake-build-release/_deps/gtest-subbuild/gtest-populate-prefix/src/gtest-populate-stamp/gtest-populate-gitclone-lastrun.txt"
RESULT_VARIABLE error_code
)
if(error_code)
message(FATAL_ERROR "Failed to copy script-last-run stamp file: 'C:/Users/Bram/School/Graphics Programming 1/GP1_Raytracer_Bram_Verhulst_2DAE11/cmake-build-release/_deps/gtest-subbuild/gtest-populate-prefix/src/gtest-populate-stamp/gtest-populate-gitclone-lastrun.txt'")
endif()

View File

@@ -0,0 +1,292 @@
# Distributed under the OSI-approved BSD 3-Clause License. See accompanying
# file Copyright.txt or https://cmake.org/licensing for details.
cmake_minimum_required(VERSION 3.5)
function(do_fetch)
message(VERBOSE "Fetching latest from the remote origin")
execute_process(
COMMAND "C:/devkitPro/msys2/usr/bin/git.exe" --git-dir=.git fetch --tags --force "origin"
WORKING_DIRECTORY "C:/Users/Bram/School/Graphics Programming 1/GP1_Raytracer_Bram_Verhulst_2DAE11/cmake-build-release/_deps/gtest-src"
COMMAND_ERROR_IS_FATAL LAST
)
endfunction()
function(get_hash_for_ref ref out_var err_var)
execute_process(
COMMAND "C:/devkitPro/msys2/usr/bin/git.exe" --git-dir=.git rev-parse "${ref}^0"
WORKING_DIRECTORY "C:/Users/Bram/School/Graphics Programming 1/GP1_Raytracer_Bram_Verhulst_2DAE11/cmake-build-release/_deps/gtest-src"
RESULT_VARIABLE error_code
OUTPUT_VARIABLE ref_hash
ERROR_VARIABLE error_msg
OUTPUT_STRIP_TRAILING_WHITESPACE
)
if(error_code)
set(${out_var} "" PARENT_SCOPE)
else()
set(${out_var} "${ref_hash}" PARENT_SCOPE)
endif()
set(${err_var} "${error_msg}" PARENT_SCOPE)
endfunction()
get_hash_for_ref(HEAD head_sha error_msg)
if(head_sha STREQUAL "")
message(FATAL_ERROR "Failed to get the hash for HEAD:\n${error_msg}")
endif()
execute_process(
COMMAND "C:/devkitPro/msys2/usr/bin/git.exe" --git-dir=.git show-ref "v1.14.0"
WORKING_DIRECTORY "C:/Users/Bram/School/Graphics Programming 1/GP1_Raytracer_Bram_Verhulst_2DAE11/cmake-build-release/_deps/gtest-src"
OUTPUT_VARIABLE show_ref_output
)
if(show_ref_output MATCHES "^[a-z0-9]+[ \\t]+refs/remotes/")
# Given a full remote/branch-name and we know about it already. Since
# branches can move around, we should always fetch, if permitted.
if(can_fetch)
do_fetch()
endif()
set(checkout_name "v1.14.0")
elseif(show_ref_output MATCHES "^[a-z0-9]+[ \\t]+refs/tags/")
# Given a tag name that we already know about. We don't know if the tag we
# have matches the remote though (tags can move), so we should fetch. As a
# special case to preserve backward compatibility, if we are already at the
# same commit as the tag we hold locally, don't do a fetch and assume the tag
# hasn't moved on the remote.
# FIXME: We should provide an option to always fetch for this case
get_hash_for_ref("v1.14.0" tag_sha error_msg)
if(tag_sha STREQUAL head_sha)
message(VERBOSE "Already at requested tag: ${tag_sha}")
return()
endif()
if(can_fetch)
do_fetch()
endif()
set(checkout_name "v1.14.0")
elseif(show_ref_output MATCHES "^[a-z0-9]+[ \\t]+refs/heads/")
# Given a branch name without any remote and we already have a branch by that
# name. We might already have that branch checked out or it might be a
# different branch. It isn't fully safe to use a bare branch name without the
# remote, so do a fetch (if allowed) and replace the ref with one that
# includes the remote.
if(can_fetch)
do_fetch()
endif()
set(checkout_name "origin/v1.14.0")
else()
get_hash_for_ref("v1.14.0" tag_sha error_msg)
if(tag_sha STREQUAL head_sha)
# Have the right commit checked out already
message(VERBOSE "Already at requested ref: ${tag_sha}")
return()
elseif(tag_sha STREQUAL "")
# We don't know about this ref yet, so we have no choice but to fetch.
if(NOT can_fetch)
message(FATAL_ERROR
"Requested git ref \"v1.14.0\" is not present locally, and not "
"allowed to contact remote due to UPDATE_DISCONNECTED setting."
)
endif()
# We deliberately swallow any error message at the default log level
# because it can be confusing for users to see a failed git command.
# That failure is being handled here, so it isn't an error.
if(NOT error_msg STREQUAL "")
message(VERBOSE "${error_msg}")
endif()
do_fetch()
set(checkout_name "v1.14.0")
else()
# We have the commit, so we know we were asked to find a commit hash
# (otherwise it would have been handled further above), but we don't
# have that commit checked out yet. We don't need to fetch from the remote.
set(checkout_name "v1.14.0")
if(NOT error_msg STREQUAL "")
message(WARNING "${error_msg}")
endif()
endif()
endif()
set(git_update_strategy "REBASE")
if(git_update_strategy STREQUAL "")
# Backward compatibility requires REBASE as the default behavior
set(git_update_strategy REBASE)
endif()
if(git_update_strategy MATCHES "^REBASE(_CHECKOUT)?$")
# Asked to potentially try to rebase first, maybe with fallback to checkout.
# We can't if we aren't already on a branch and we shouldn't if that local
# branch isn't tracking the one we want to checkout.
execute_process(
COMMAND "C:/devkitPro/msys2/usr/bin/git.exe" --git-dir=.git symbolic-ref -q HEAD
WORKING_DIRECTORY "C:/Users/Bram/School/Graphics Programming 1/GP1_Raytracer_Bram_Verhulst_2DAE11/cmake-build-release/_deps/gtest-src"
OUTPUT_VARIABLE current_branch
OUTPUT_STRIP_TRAILING_WHITESPACE
# Don't test for an error. If this isn't a branch, we get a non-zero error
# code but empty output.
)
if(current_branch STREQUAL "")
# Not on a branch, checkout is the only sensible option since any rebase
# would always fail (and backward compatibility requires us to checkout in
# this situation)
set(git_update_strategy CHECKOUT)
else()
execute_process(
COMMAND "C:/devkitPro/msys2/usr/bin/git.exe" --git-dir=.git for-each-ref "--format=%(upstream:short)" "${current_branch}"
WORKING_DIRECTORY "C:/Users/Bram/School/Graphics Programming 1/GP1_Raytracer_Bram_Verhulst_2DAE11/cmake-build-release/_deps/gtest-src"
OUTPUT_VARIABLE upstream_branch
OUTPUT_STRIP_TRAILING_WHITESPACE
COMMAND_ERROR_IS_FATAL ANY # There is no error if no upstream is set
)
if(NOT upstream_branch STREQUAL checkout_name)
# Not safe to rebase when asked to checkout a different branch to the one
# we are tracking. If we did rebase, we could end up with arbitrary
# commits added to the ref we were asked to checkout if the current local
# branch happens to be able to rebase onto the target branch. There would
# be no error message and the user wouldn't know this was occurring.
set(git_update_strategy CHECKOUT)
endif()
endif()
elseif(NOT git_update_strategy STREQUAL "CHECKOUT")
message(FATAL_ERROR "Unsupported git update strategy: ${git_update_strategy}")
endif()
# Check if stash is needed
execute_process(
COMMAND "C:/devkitPro/msys2/usr/bin/git.exe" --git-dir=.git status --porcelain
WORKING_DIRECTORY "C:/Users/Bram/School/Graphics Programming 1/GP1_Raytracer_Bram_Verhulst_2DAE11/cmake-build-release/_deps/gtest-src"
RESULT_VARIABLE error_code
OUTPUT_VARIABLE repo_status
)
if(error_code)
message(FATAL_ERROR "Failed to get the status")
endif()
string(LENGTH "${repo_status}" need_stash)
# If not in clean state, stash changes in order to be able to perform a
# rebase or checkout without losing those changes permanently
if(need_stash)
execute_process(
COMMAND "C:/devkitPro/msys2/usr/bin/git.exe" --git-dir=.git stash save --quiet;--include-untracked
WORKING_DIRECTORY "C:/Users/Bram/School/Graphics Programming 1/GP1_Raytracer_Bram_Verhulst_2DAE11/cmake-build-release/_deps/gtest-src"
COMMAND_ERROR_IS_FATAL ANY
)
endif()
if(git_update_strategy STREQUAL "CHECKOUT")
execute_process(
COMMAND "C:/devkitPro/msys2/usr/bin/git.exe" --git-dir=.git checkout "${checkout_name}"
WORKING_DIRECTORY "C:/Users/Bram/School/Graphics Programming 1/GP1_Raytracer_Bram_Verhulst_2DAE11/cmake-build-release/_deps/gtest-src"
COMMAND_ERROR_IS_FATAL ANY
)
else()
execute_process(
COMMAND "C:/devkitPro/msys2/usr/bin/git.exe" --git-dir=.git rebase "${checkout_name}"
WORKING_DIRECTORY "C:/Users/Bram/School/Graphics Programming 1/GP1_Raytracer_Bram_Verhulst_2DAE11/cmake-build-release/_deps/gtest-src"
RESULT_VARIABLE error_code
OUTPUT_VARIABLE rebase_output
ERROR_VARIABLE rebase_output
)
if(error_code)
# Rebase failed, undo the rebase attempt before continuing
execute_process(
COMMAND "C:/devkitPro/msys2/usr/bin/git.exe" --git-dir=.git rebase --abort
WORKING_DIRECTORY "C:/Users/Bram/School/Graphics Programming 1/GP1_Raytracer_Bram_Verhulst_2DAE11/cmake-build-release/_deps/gtest-src"
)
if(NOT git_update_strategy STREQUAL "REBASE_CHECKOUT")
# Not allowed to do a checkout as a fallback, so cannot proceed
if(need_stash)
execute_process(
COMMAND "C:/devkitPro/msys2/usr/bin/git.exe" --git-dir=.git stash pop --index --quiet
WORKING_DIRECTORY "C:/Users/Bram/School/Graphics Programming 1/GP1_Raytracer_Bram_Verhulst_2DAE11/cmake-build-release/_deps/gtest-src"
)
endif()
message(FATAL_ERROR "\nFailed to rebase in: 'C:/Users/Bram/School/Graphics Programming 1/GP1_Raytracer_Bram_Verhulst_2DAE11/cmake-build-release/_deps/gtest-src'."
"\nOutput from the attempted rebase follows:"
"\n${rebase_output}"
"\n\nYou will have to resolve the conflicts manually")
endif()
# Fall back to checkout. We create an annotated tag so that the user
# can manually inspect the situation and revert if required.
# We can't log the failed rebase output because MSVC sees it and
# intervenes, causing the build to fail even though it completes.
# Write it to a file instead.
string(TIMESTAMP tag_timestamp "%Y%m%dT%H%M%S" UTC)
set(tag_name _cmake_ExternalProject_moved_from_here_${tag_timestamp}Z)
set(error_log_file ${CMAKE_CURRENT_LIST_DIR}/rebase_error_${tag_timestamp}Z.log)
file(WRITE ${error_log_file} "${rebase_output}")
message(WARNING "Rebase failed, output has been saved to ${error_log_file}"
"\nFalling back to checkout, previous commit tagged as ${tag_name}")
execute_process(
COMMAND "C:/devkitPro/msys2/usr/bin/git.exe" --git-dir=.git tag -a
-m "ExternalProject attempting to move from here to ${checkout_name}"
${tag_name}
WORKING_DIRECTORY "C:/Users/Bram/School/Graphics Programming 1/GP1_Raytracer_Bram_Verhulst_2DAE11/cmake-build-release/_deps/gtest-src"
COMMAND_ERROR_IS_FATAL ANY
)
execute_process(
COMMAND "C:/devkitPro/msys2/usr/bin/git.exe" --git-dir=.git checkout "${checkout_name}"
WORKING_DIRECTORY "C:/Users/Bram/School/Graphics Programming 1/GP1_Raytracer_Bram_Verhulst_2DAE11/cmake-build-release/_deps/gtest-src"
COMMAND_ERROR_IS_FATAL ANY
)
endif()
endif()
if(need_stash)
# Put back the stashed changes
execute_process(
COMMAND "C:/devkitPro/msys2/usr/bin/git.exe" --git-dir=.git stash pop --index --quiet
WORKING_DIRECTORY "C:/Users/Bram/School/Graphics Programming 1/GP1_Raytracer_Bram_Verhulst_2DAE11/cmake-build-release/_deps/gtest-src"
RESULT_VARIABLE error_code
)
if(error_code)
# Stash pop --index failed: Try again dropping the index
execute_process(
COMMAND "C:/devkitPro/msys2/usr/bin/git.exe" --git-dir=.git reset --hard --quiet
WORKING_DIRECTORY "C:/Users/Bram/School/Graphics Programming 1/GP1_Raytracer_Bram_Verhulst_2DAE11/cmake-build-release/_deps/gtest-src"
)
execute_process(
COMMAND "C:/devkitPro/msys2/usr/bin/git.exe" --git-dir=.git stash pop --quiet
WORKING_DIRECTORY "C:/Users/Bram/School/Graphics Programming 1/GP1_Raytracer_Bram_Verhulst_2DAE11/cmake-build-release/_deps/gtest-src"
RESULT_VARIABLE error_code
)
if(error_code)
# Stash pop failed: Restore previous state.
execute_process(
COMMAND "C:/devkitPro/msys2/usr/bin/git.exe" --git-dir=.git reset --hard --quiet ${head_sha}
WORKING_DIRECTORY "C:/Users/Bram/School/Graphics Programming 1/GP1_Raytracer_Bram_Verhulst_2DAE11/cmake-build-release/_deps/gtest-src"
)
execute_process(
COMMAND "C:/devkitPro/msys2/usr/bin/git.exe" --git-dir=.git stash pop --index --quiet
WORKING_DIRECTORY "C:/Users/Bram/School/Graphics Programming 1/GP1_Raytracer_Bram_Verhulst_2DAE11/cmake-build-release/_deps/gtest-src"
)
message(FATAL_ERROR "\nFailed to unstash changes in: 'C:/Users/Bram/School/Graphics Programming 1/GP1_Raytracer_Bram_Verhulst_2DAE11/cmake-build-release/_deps/gtest-src'."
"\nYou will have to resolve the conflicts manually")
endif()
endif()
endif()
set(init_submodules "TRUE")
if(init_submodules)
execute_process(
COMMAND "C:/devkitPro/msys2/usr/bin/git.exe"
--git-dir=.git
submodule update --recursive --init
WORKING_DIRECTORY "C:/Users/Bram/School/Graphics Programming 1/GP1_Raytracer_Bram_Verhulst_2DAE11/cmake-build-release/_deps/gtest-src"
COMMAND_ERROR_IS_FATAL ANY
)
endif()

View File

@@ -0,0 +1,22 @@
# Distributed under the OSI-approved BSD 3-Clause License. See accompanying
# file Copyright.txt or https://cmake.org/licensing for details.
cmake_minimum_required(VERSION 3.5)
file(MAKE_DIRECTORY
"C:/Users/Bram/School/Graphics Programming 1/GP1_Raytracer_Bram_Verhulst_2DAE11/cmake-build-release/_deps/gtest-src"
"C:/Users/Bram/School/Graphics Programming 1/GP1_Raytracer_Bram_Verhulst_2DAE11/cmake-build-release/_deps/gtest-build"
"C:/Users/Bram/School/Graphics Programming 1/GP1_Raytracer_Bram_Verhulst_2DAE11/cmake-build-release/_deps/gtest-subbuild/gtest-populate-prefix"
"C:/Users/Bram/School/Graphics Programming 1/GP1_Raytracer_Bram_Verhulst_2DAE11/cmake-build-release/_deps/gtest-subbuild/gtest-populate-prefix/tmp"
"C:/Users/Bram/School/Graphics Programming 1/GP1_Raytracer_Bram_Verhulst_2DAE11/cmake-build-release/_deps/gtest-subbuild/gtest-populate-prefix/src/gtest-populate-stamp"
"C:/Users/Bram/School/Graphics Programming 1/GP1_Raytracer_Bram_Verhulst_2DAE11/cmake-build-release/_deps/gtest-subbuild/gtest-populate-prefix/src"
"C:/Users/Bram/School/Graphics Programming 1/GP1_Raytracer_Bram_Verhulst_2DAE11/cmake-build-release/_deps/gtest-subbuild/gtest-populate-prefix/src/gtest-populate-stamp"
)
set(configSubDirs )
foreach(subDir IN LISTS configSubDirs)
file(MAKE_DIRECTORY "C:/Users/Bram/School/Graphics Programming 1/GP1_Raytracer_Bram_Verhulst_2DAE11/cmake-build-release/_deps/gtest-subbuild/gtest-populate-prefix/src/gtest-populate-stamp/${subDir}")
endforeach()
if(cfgdir)
file(MAKE_DIRECTORY "C:/Users/Bram/School/Graphics Programming 1/GP1_Raytracer_Bram_Verhulst_2DAE11/cmake-build-release/_deps/gtest-subbuild/gtest-populate-prefix/src/gtest-populate-stamp${cfgdir}") # cfgdir has leading slash
endif()