glfw, glad. Working on basic window with emscriptem tests
parent
fadfdd3014
commit
1791bb4b9b
|
@ -1,37 +1,53 @@
|
||||||
cmake_minimum_required(VERSION 3.24)
|
cmake_minimum_required(VERSION 3.0)
|
||||||
project(Final_Project)
|
# emscriptem
|
||||||
|
cmake_policy(SET CMP0015 NEW)
|
||||||
|
project(FinalProject)
|
||||||
|
|
||||||
|
option(USE_EXTRAS "Use the extra stuff I've added to this project! (Basically emscriptem)" OFF)
|
||||||
|
|
||||||
set(CMAKE_CXX_STANDARD 17)
|
set(CMAKE_CXX_STANDARD 17)
|
||||||
|
|
||||||
|
if (USE_EXTRAS)
|
||||||
|
message("Using emscriptem linker and compile flags!")
|
||||||
|
add_definitions("-std=c++17")
|
||||||
|
set(CMAKE_VERBOSE_MAKEFILE on)
|
||||||
|
else()
|
||||||
|
# used to debug memory related issues
|
||||||
|
if ((CMAKE_BUILD_TYPE MATCHES Debug))
|
||||||
|
if (UNIX)
|
||||||
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fsanitize=address -g")
|
||||||
|
add_compile_options(-fsanitize=address)
|
||||||
|
add_link_options(-fsanitize=address)
|
||||||
|
endif ()
|
||||||
|
message("Building for Debug")
|
||||||
|
else ()
|
||||||
|
message("Building for Release")
|
||||||
|
endif ()
|
||||||
|
endif()
|
||||||
|
|
||||||
|
set(GLFW_BUILD_DOCS OFF CACHE BOOL "" FORCE)
|
||||||
|
set(GLFW_BUILD_TESTS OFF CACHE BOOL "" FORCE)
|
||||||
|
set(GLFW_BUILD_EXAMPLES OFF CACHE BOOL "" FORCE)
|
||||||
|
|
||||||
|
add_subdirectory(libraries/glfw-3.3.8)
|
||||||
|
|
||||||
# My Stuff
|
# My Stuff
|
||||||
file(GLOB_RECURSE CPP_FILES "src/*.cpp")
|
file(GLOB_RECURSE CPP_FILES "src/*.cpp")
|
||||||
|
|
||||||
include_directories(include/)
|
include_directories(include/)
|
||||||
|
|
||||||
add_subdirectory(libraries/BLT)
|
add_subdirectory(libraries/BLT)
|
||||||
# External Libraries
|
|
||||||
find_package(GLUT)
|
|
||||||
|
|
||||||
if(NOT ${GLUT_FOUND})
|
add_executable(FinalProject ${CPP_FILES})
|
||||||
message("WARNING -- If you are on linux please install the FreeGLUT lib")
|
target_link_libraries(FinalProject PRIVATE BLT)
|
||||||
set(GLUT_INCLUDE_DIRS "${CMAKE_CURRENT_SOURCE_DIR}/include/glut/include")
|
target_link_libraries(FinalProject PRIVATE glfw)
|
||||||
set(GLUT_LIBRARIES "${CMAKE_CURRENT_SOURCE_DIR}/include/glut/lib/freeglut.lib")
|
|
||||||
endif()
|
|
||||||
message("Using GLUT ${GLUT_INCLUDE_DIRS} and ${GLUT_LIBRARIES}")
|
|
||||||
|
|
||||||
find_library(FreeImage_LIBRARIES libfreeimage.so OR libfreeimage.a)
|
|
||||||
find_file(FreeImage_INCLUDE FreeImage.h)
|
|
||||||
message(${FreeImage_LIBRARIES})
|
|
||||||
if(NOT ${FreeImage_LIBRARIES} OR NOT ${FreeImage_INCLUDE})
|
|
||||||
message("WARNING -- If you are on linux please install the FreeImage lib")
|
|
||||||
#set(FreeImage_LIBRARIES "${CMAKE_CURRENT_SOURCE_DIR}/libraries/freeimage/lib/FreeImage.lib;${CMAKE_CURRENT_SOURCE_DIR}/libraries/freeimage/lib/FreeImaged.dll")
|
|
||||||
endif()
|
|
||||||
message("Using FreeImage ${FreeImage_LIBRARIES} and ${FreeImage_INCLUDE}")
|
|
||||||
|
|
||||||
include_directories(${GLUT_INCLUDE_DIRS})
|
|
||||||
include_directories(${FreeImage_INCLUDE})
|
|
||||||
|
|
||||||
add_executable(Final_Project ${CPP_FILES})
|
if (USE_EXTRAS)
|
||||||
target_link_libraries(Final_Project PRIVATE BLT)
|
#set_target_properties(FinalProject PROPERTIES LINK_FLAGS "-s DEMANGLE_SUPPORT=1 --preload-file ${CMAKE_SOURCE_DIR}/assets --bind")
|
||||||
target_link_libraries(Final_Project PRIVATE ${GLUT_LIBRARIES})
|
file(COPY ${CMAKE_CURRENT_SOURCE_DIR}/assets DESTINATION ${CMAKE_CURRENT_BINARY_DIR}/)
|
||||||
target_link_libraries(Final_Project PRIVATE ${FreeImage_LIBRARIES})
|
#set_target_properties(FinalProject PROPERTIES LINK_FLAGS "-s DEMANGLE_SUPPORT=1 --preload-file 'assets' --bind")
|
||||||
|
set_target_properties(FinalProject PROPERTIES LINK_FLAGS "--preload-file 'assets'")
|
||||||
|
#set_target_properties(FinalProject PROPERTIES COMPILE_FLAGS "-o index.html")
|
||||||
|
endif()
|
|
@ -0,0 +1,7 @@
|
||||||
|
hello this is a test of embedded files
|
||||||
|
this is a new line
|
||||||
|
hello world!
|
||||||
|
this is also a new line
|
||||||
|
second hello world!
|
||||||
|
|
||||||
|
NEW DATA
|
|
@ -0,0 +1,9 @@
|
||||||
|
#!/bin/bash
|
||||||
|
#mkdir cmake-build-emrelease
|
||||||
|
emcmake cmake -DCMAKE_BUILD_TYPE=Release -DUSE_EXTRAS=ON -S ./ -B ./cmake-build-emrelease
|
||||||
|
cd cmake-build-emrelease
|
||||||
|
emmake make -j 16
|
||||||
|
|
||||||
|
cp FinalProject.js /var/www/html/emscript/
|
||||||
|
cp FinalProject.data /var/www/html/emscript/
|
||||||
|
cp FinalProject.wasm /var/www/html/emscript/
|
File diff suppressed because it is too large
Load Diff
|
@ -0,0 +1,315 @@
|
||||||
|
{
|
||||||
|
"inputs" :
|
||||||
|
[
|
||||||
|
{
|
||||||
|
"path" : "CMakeLists.txt"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"isGenerated" : true,
|
||||||
|
"path" : "cmake-build-debug/CMakeFiles/3.24.2/CMakeSystem.cmake"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"isCMake" : true,
|
||||||
|
"isExternal" : true,
|
||||||
|
"path" : "/opt/netbrains/clion/clion-2022.1.3/bin/cmake/linux/share/cmake-3.24/Modules/CMakeSystemSpecificInitialize.cmake"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"isGenerated" : true,
|
||||||
|
"path" : "cmake-build-debug/CMakeFiles/3.24.2/CMakeCCompiler.cmake"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"isGenerated" : true,
|
||||||
|
"path" : "cmake-build-debug/CMakeFiles/3.24.2/CMakeCXXCompiler.cmake"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"isCMake" : true,
|
||||||
|
"isExternal" : true,
|
||||||
|
"path" : "/opt/netbrains/clion/clion-2022.1.3/bin/cmake/linux/share/cmake-3.24/Modules/CMakeSystemSpecificInformation.cmake"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"isCMake" : true,
|
||||||
|
"isExternal" : true,
|
||||||
|
"path" : "/opt/netbrains/clion/clion-2022.1.3/bin/cmake/linux/share/cmake-3.24/Modules/CMakeGenericSystem.cmake"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"isCMake" : true,
|
||||||
|
"isExternal" : true,
|
||||||
|
"path" : "/opt/netbrains/clion/clion-2022.1.3/bin/cmake/linux/share/cmake-3.24/Modules/CMakeInitializeConfigs.cmake"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"isCMake" : true,
|
||||||
|
"isExternal" : true,
|
||||||
|
"path" : "/opt/netbrains/clion/clion-2022.1.3/bin/cmake/linux/share/cmake-3.24/Modules/Platform/Linux.cmake"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"isCMake" : true,
|
||||||
|
"isExternal" : true,
|
||||||
|
"path" : "/opt/netbrains/clion/clion-2022.1.3/bin/cmake/linux/share/cmake-3.24/Modules/Platform/UnixPaths.cmake"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"isCMake" : true,
|
||||||
|
"isExternal" : true,
|
||||||
|
"path" : "/opt/netbrains/clion/clion-2022.1.3/bin/cmake/linux/share/cmake-3.24/Modules/CMakeCInformation.cmake"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"isCMake" : true,
|
||||||
|
"isExternal" : true,
|
||||||
|
"path" : "/opt/netbrains/clion/clion-2022.1.3/bin/cmake/linux/share/cmake-3.24/Modules/CMakeLanguageInformation.cmake"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"isCMake" : true,
|
||||||
|
"isExternal" : true,
|
||||||
|
"path" : "/opt/netbrains/clion/clion-2022.1.3/bin/cmake/linux/share/cmake-3.24/Modules/Compiler/GNU-C.cmake"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"isCMake" : true,
|
||||||
|
"isExternal" : true,
|
||||||
|
"path" : "/opt/netbrains/clion/clion-2022.1.3/bin/cmake/linux/share/cmake-3.24/Modules/Compiler/GNU.cmake"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"isCMake" : true,
|
||||||
|
"isExternal" : true,
|
||||||
|
"path" : "/opt/netbrains/clion/clion-2022.1.3/bin/cmake/linux/share/cmake-3.24/Modules/Compiler/CMakeCommonCompilerMacros.cmake"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"isCMake" : true,
|
||||||
|
"isExternal" : true,
|
||||||
|
"path" : "/opt/netbrains/clion/clion-2022.1.3/bin/cmake/linux/share/cmake-3.24/Modules/Platform/Linux-GNU-C.cmake"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"isCMake" : true,
|
||||||
|
"isExternal" : true,
|
||||||
|
"path" : "/opt/netbrains/clion/clion-2022.1.3/bin/cmake/linux/share/cmake-3.24/Modules/Platform/Linux-GNU.cmake"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"isCMake" : true,
|
||||||
|
"isExternal" : true,
|
||||||
|
"path" : "/opt/netbrains/clion/clion-2022.1.3/bin/cmake/linux/share/cmake-3.24/Modules/CMakeCommonLanguageInclude.cmake"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"isCMake" : true,
|
||||||
|
"isExternal" : true,
|
||||||
|
"path" : "/opt/netbrains/clion/clion-2022.1.3/bin/cmake/linux/share/cmake-3.24/Modules/CMakeCXXInformation.cmake"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"isCMake" : true,
|
||||||
|
"isExternal" : true,
|
||||||
|
"path" : "/opt/netbrains/clion/clion-2022.1.3/bin/cmake/linux/share/cmake-3.24/Modules/CMakeLanguageInformation.cmake"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"isCMake" : true,
|
||||||
|
"isExternal" : true,
|
||||||
|
"path" : "/opt/netbrains/clion/clion-2022.1.3/bin/cmake/linux/share/cmake-3.24/Modules/Compiler/GNU-CXX.cmake"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"isCMake" : true,
|
||||||
|
"isExternal" : true,
|
||||||
|
"path" : "/opt/netbrains/clion/clion-2022.1.3/bin/cmake/linux/share/cmake-3.24/Modules/Compiler/GNU.cmake"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"isCMake" : true,
|
||||||
|
"isExternal" : true,
|
||||||
|
"path" : "/opt/netbrains/clion/clion-2022.1.3/bin/cmake/linux/share/cmake-3.24/Modules/Platform/Linux-GNU-CXX.cmake"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"isCMake" : true,
|
||||||
|
"isExternal" : true,
|
||||||
|
"path" : "/opt/netbrains/clion/clion-2022.1.3/bin/cmake/linux/share/cmake-3.24/Modules/Platform/Linux-GNU.cmake"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"isCMake" : true,
|
||||||
|
"isExternal" : true,
|
||||||
|
"path" : "/opt/netbrains/clion/clion-2022.1.3/bin/cmake/linux/share/cmake-3.24/Modules/CMakeCommonLanguageInclude.cmake"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"path" : "libraries/glfw-3.3.8/CMakeLists.txt"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"isCMake" : true,
|
||||||
|
"isExternal" : true,
|
||||||
|
"path" : "/opt/netbrains/clion/clion-2022.1.3/bin/cmake/linux/share/cmake-3.24/Modules/GNUInstallDirs.cmake"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"isCMake" : true,
|
||||||
|
"isExternal" : true,
|
||||||
|
"path" : "/opt/netbrains/clion/clion-2022.1.3/bin/cmake/linux/share/cmake-3.24/Modules/CMakeDependentOption.cmake"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"isCMake" : true,
|
||||||
|
"isExternal" : true,
|
||||||
|
"path" : "/opt/netbrains/clion/clion-2022.1.3/bin/cmake/linux/share/cmake-3.24/Modules/FindThreads.cmake"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"isCMake" : true,
|
||||||
|
"isExternal" : true,
|
||||||
|
"path" : "/opt/netbrains/clion/clion-2022.1.3/bin/cmake/linux/share/cmake-3.24/Modules/CheckLibraryExists.cmake"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"isCMake" : true,
|
||||||
|
"isExternal" : true,
|
||||||
|
"path" : "/opt/netbrains/clion/clion-2022.1.3/bin/cmake/linux/share/cmake-3.24/Modules/CheckIncludeFile.cmake"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"isCMake" : true,
|
||||||
|
"isExternal" : true,
|
||||||
|
"path" : "/opt/netbrains/clion/clion-2022.1.3/bin/cmake/linux/share/cmake-3.24/Modules/CheckCSourceCompiles.cmake"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"isCMake" : true,
|
||||||
|
"isExternal" : true,
|
||||||
|
"path" : "/opt/netbrains/clion/clion-2022.1.3/bin/cmake/linux/share/cmake-3.24/Modules/Internal/CheckSourceCompiles.cmake"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"isCMake" : true,
|
||||||
|
"isExternal" : true,
|
||||||
|
"path" : "/opt/netbrains/clion/clion-2022.1.3/bin/cmake/linux/share/cmake-3.24/Modules/FindPackageHandleStandardArgs.cmake"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"isCMake" : true,
|
||||||
|
"isExternal" : true,
|
||||||
|
"path" : "/opt/netbrains/clion/clion-2022.1.3/bin/cmake/linux/share/cmake-3.24/Modules/FindPackageMessage.cmake"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"isCMake" : true,
|
||||||
|
"isExternal" : true,
|
||||||
|
"path" : "/opt/netbrains/clion/clion-2022.1.3/bin/cmake/linux/share/cmake-3.24/Modules/FindX11.cmake"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"isCMake" : true,
|
||||||
|
"isExternal" : true,
|
||||||
|
"path" : "/opt/netbrains/clion/clion-2022.1.3/bin/cmake/linux/share/cmake-3.24/Modules/FindFreetype.cmake"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"isCMake" : true,
|
||||||
|
"isExternal" : true,
|
||||||
|
"path" : "/opt/netbrains/clion/clion-2022.1.3/bin/cmake/linux/share/cmake-3.24/Modules/SelectLibraryConfigurations.cmake"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"isCMake" : true,
|
||||||
|
"isExternal" : true,
|
||||||
|
"path" : "/opt/netbrains/clion/clion-2022.1.3/bin/cmake/linux/share/cmake-3.24/Modules/FindPackageHandleStandardArgs.cmake"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"isCMake" : true,
|
||||||
|
"isExternal" : true,
|
||||||
|
"path" : "/opt/netbrains/clion/clion-2022.1.3/bin/cmake/linux/share/cmake-3.24/Modules/FindPackageMessage.cmake"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"isCMake" : true,
|
||||||
|
"isExternal" : true,
|
||||||
|
"path" : "/opt/netbrains/clion/clion-2022.1.3/bin/cmake/linux/share/cmake-3.24/Modules/FindFontconfig.cmake"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"isCMake" : true,
|
||||||
|
"isExternal" : true,
|
||||||
|
"path" : "/opt/netbrains/clion/clion-2022.1.3/bin/cmake/linux/share/cmake-3.24/Modules/FindPkgConfig.cmake"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"isCMake" : true,
|
||||||
|
"isExternal" : true,
|
||||||
|
"path" : "/opt/netbrains/clion/clion-2022.1.3/bin/cmake/linux/share/cmake-3.24/Modules/FindPackageHandleStandardArgs.cmake"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"isCMake" : true,
|
||||||
|
"isExternal" : true,
|
||||||
|
"path" : "/opt/netbrains/clion/clion-2022.1.3/bin/cmake/linux/share/cmake-3.24/Modules/FindPackageMessage.cmake"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"isCMake" : true,
|
||||||
|
"isExternal" : true,
|
||||||
|
"path" : "/opt/netbrains/clion/clion-2022.1.3/bin/cmake/linux/share/cmake-3.24/Modules/FindPackageHandleStandardArgs.cmake"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"isCMake" : true,
|
||||||
|
"isExternal" : true,
|
||||||
|
"path" : "/opt/netbrains/clion/clion-2022.1.3/bin/cmake/linux/share/cmake-3.24/Modules/FindPackageMessage.cmake"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"isCMake" : true,
|
||||||
|
"isExternal" : true,
|
||||||
|
"path" : "/opt/netbrains/clion/clion-2022.1.3/bin/cmake/linux/share/cmake-3.24/Modules/FindPackageHandleStandardArgs.cmake"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"isCMake" : true,
|
||||||
|
"isExternal" : true,
|
||||||
|
"path" : "/opt/netbrains/clion/clion-2022.1.3/bin/cmake/linux/share/cmake-3.24/Modules/FindPackageMessage.cmake"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"isCMake" : true,
|
||||||
|
"isExternal" : true,
|
||||||
|
"path" : "/opt/netbrains/clion/clion-2022.1.3/bin/cmake/linux/share/cmake-3.24/Modules/CheckFunctionExists.cmake"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"isCMake" : true,
|
||||||
|
"isExternal" : true,
|
||||||
|
"path" : "/opt/netbrains/clion/clion-2022.1.3/bin/cmake/linux/share/cmake-3.24/Modules/CheckLibraryExists.cmake"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"isCMake" : true,
|
||||||
|
"isExternal" : true,
|
||||||
|
"path" : "/opt/netbrains/clion/clion-2022.1.3/bin/cmake/linux/share/cmake-3.24/Modules/CMakePackageConfigHelpers.cmake"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"isCMake" : true,
|
||||||
|
"isExternal" : true,
|
||||||
|
"path" : "/opt/netbrains/clion/clion-2022.1.3/bin/cmake/linux/share/cmake-3.24/Modules/WriteBasicConfigVersionFile.cmake"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"path" : "libraries/glfw-3.3.8/src/glfw3Config.cmake.in"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"isCMake" : true,
|
||||||
|
"isExternal" : true,
|
||||||
|
"path" : "/opt/netbrains/clion/clion-2022.1.3/bin/cmake/linux/share/cmake-3.24/Modules/BasicConfigVersion-SameMajorVersion.cmake.in"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"path" : "libraries/glfw-3.3.8/src/glfw_config.h.in"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"path" : "libraries/glfw-3.3.8/src/glfw3.pc.in"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"path" : "libraries/glfw-3.3.8/cmake_uninstall.cmake.in"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"path" : "libraries/glfw-3.3.8/src/CMakeLists.txt"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"path" : "libraries/BLT/CMakeLists.txt"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"isCMake" : true,
|
||||||
|
"isExternal" : true,
|
||||||
|
"path" : "/opt/netbrains/clion/clion-2022.1.3/bin/cmake/linux/share/cmake-3.24/Modules/FindZLIB.cmake"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"isCMake" : true,
|
||||||
|
"isExternal" : true,
|
||||||
|
"path" : "/opt/netbrains/clion/clion-2022.1.3/bin/cmake/linux/share/cmake-3.24/Modules/SelectLibraryConfigurations.cmake"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"isCMake" : true,
|
||||||
|
"isExternal" : true,
|
||||||
|
"path" : "/opt/netbrains/clion/clion-2022.1.3/bin/cmake/linux/share/cmake-3.24/Modules/FindPackageHandleStandardArgs.cmake"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"isCMake" : true,
|
||||||
|
"isExternal" : true,
|
||||||
|
"path" : "/opt/netbrains/clion/clion-2022.1.3/bin/cmake/linux/share/cmake-3.24/Modules/FindPackageMessage.cmake"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"path" : "libraries/BLT/include/blt/config.h.in"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"kind" : "cmakeFiles",
|
||||||
|
"paths" :
|
||||||
|
{
|
||||||
|
"build" : "/home/brett/Documents/Brock/CS 3P98/Final Project/cmake-build-debug",
|
||||||
|
"source" : "/home/brett/Documents/Brock/CS 3P98/Final Project"
|
||||||
|
},
|
||||||
|
"version" :
|
||||||
|
{
|
||||||
|
"major" : 1,
|
||||||
|
"minor" : 0
|
||||||
|
}
|
||||||
|
}
|
|
@ -1,174 +0,0 @@
|
||||||
{
|
|
||||||
"inputs" :
|
|
||||||
[
|
|
||||||
{
|
|
||||||
"path" : "CMakeLists.txt"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"isGenerated" : true,
|
|
||||||
"path" : "cmake-build-debug/CMakeFiles/3.24.2/CMakeSystem.cmake"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"isCMake" : true,
|
|
||||||
"isExternal" : true,
|
|
||||||
"path" : "/home/laptop/Documents/clion/clion-2021.3.3/bin/cmake/linux/share/cmake-3.24/Modules/CMakeSystemSpecificInitialize.cmake"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"isGenerated" : true,
|
|
||||||
"path" : "cmake-build-debug/CMakeFiles/3.24.2/CMakeCCompiler.cmake"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"isGenerated" : true,
|
|
||||||
"path" : "cmake-build-debug/CMakeFiles/3.24.2/CMakeCXXCompiler.cmake"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"isCMake" : true,
|
|
||||||
"isExternal" : true,
|
|
||||||
"path" : "/home/laptop/Documents/clion/clion-2021.3.3/bin/cmake/linux/share/cmake-3.24/Modules/CMakeSystemSpecificInformation.cmake"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"isCMake" : true,
|
|
||||||
"isExternal" : true,
|
|
||||||
"path" : "/home/laptop/Documents/clion/clion-2021.3.3/bin/cmake/linux/share/cmake-3.24/Modules/CMakeGenericSystem.cmake"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"isCMake" : true,
|
|
||||||
"isExternal" : true,
|
|
||||||
"path" : "/home/laptop/Documents/clion/clion-2021.3.3/bin/cmake/linux/share/cmake-3.24/Modules/CMakeInitializeConfigs.cmake"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"isCMake" : true,
|
|
||||||
"isExternal" : true,
|
|
||||||
"path" : "/home/laptop/Documents/clion/clion-2021.3.3/bin/cmake/linux/share/cmake-3.24/Modules/Platform/Linux.cmake"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"isCMake" : true,
|
|
||||||
"isExternal" : true,
|
|
||||||
"path" : "/home/laptop/Documents/clion/clion-2021.3.3/bin/cmake/linux/share/cmake-3.24/Modules/Platform/UnixPaths.cmake"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"isCMake" : true,
|
|
||||||
"isExternal" : true,
|
|
||||||
"path" : "/home/laptop/Documents/clion/clion-2021.3.3/bin/cmake/linux/share/cmake-3.24/Modules/CMakeCInformation.cmake"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"isCMake" : true,
|
|
||||||
"isExternal" : true,
|
|
||||||
"path" : "/home/laptop/Documents/clion/clion-2021.3.3/bin/cmake/linux/share/cmake-3.24/Modules/CMakeLanguageInformation.cmake"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"isCMake" : true,
|
|
||||||
"isExternal" : true,
|
|
||||||
"path" : "/home/laptop/Documents/clion/clion-2021.3.3/bin/cmake/linux/share/cmake-3.24/Modules/Compiler/GNU-C.cmake"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"isCMake" : true,
|
|
||||||
"isExternal" : true,
|
|
||||||
"path" : "/home/laptop/Documents/clion/clion-2021.3.3/bin/cmake/linux/share/cmake-3.24/Modules/Compiler/GNU.cmake"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"isCMake" : true,
|
|
||||||
"isExternal" : true,
|
|
||||||
"path" : "/home/laptop/Documents/clion/clion-2021.3.3/bin/cmake/linux/share/cmake-3.24/Modules/Compiler/CMakeCommonCompilerMacros.cmake"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"isCMake" : true,
|
|
||||||
"isExternal" : true,
|
|
||||||
"path" : "/home/laptop/Documents/clion/clion-2021.3.3/bin/cmake/linux/share/cmake-3.24/Modules/Platform/Linux-GNU-C.cmake"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"isCMake" : true,
|
|
||||||
"isExternal" : true,
|
|
||||||
"path" : "/home/laptop/Documents/clion/clion-2021.3.3/bin/cmake/linux/share/cmake-3.24/Modules/Platform/Linux-GNU.cmake"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"isCMake" : true,
|
|
||||||
"isExternal" : true,
|
|
||||||
"path" : "/home/laptop/Documents/clion/clion-2021.3.3/bin/cmake/linux/share/cmake-3.24/Modules/CMakeCommonLanguageInclude.cmake"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"isCMake" : true,
|
|
||||||
"isExternal" : true,
|
|
||||||
"path" : "/home/laptop/Documents/clion/clion-2021.3.3/bin/cmake/linux/share/cmake-3.24/Modules/CMakeCXXInformation.cmake"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"isCMake" : true,
|
|
||||||
"isExternal" : true,
|
|
||||||
"path" : "/home/laptop/Documents/clion/clion-2021.3.3/bin/cmake/linux/share/cmake-3.24/Modules/CMakeLanguageInformation.cmake"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"isCMake" : true,
|
|
||||||
"isExternal" : true,
|
|
||||||
"path" : "/home/laptop/Documents/clion/clion-2021.3.3/bin/cmake/linux/share/cmake-3.24/Modules/Compiler/GNU-CXX.cmake"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"isCMake" : true,
|
|
||||||
"isExternal" : true,
|
|
||||||
"path" : "/home/laptop/Documents/clion/clion-2021.3.3/bin/cmake/linux/share/cmake-3.24/Modules/Compiler/GNU.cmake"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"isCMake" : true,
|
|
||||||
"isExternal" : true,
|
|
||||||
"path" : "/home/laptop/Documents/clion/clion-2021.3.3/bin/cmake/linux/share/cmake-3.24/Modules/Platform/Linux-GNU-CXX.cmake"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"isCMake" : true,
|
|
||||||
"isExternal" : true,
|
|
||||||
"path" : "/home/laptop/Documents/clion/clion-2021.3.3/bin/cmake/linux/share/cmake-3.24/Modules/Platform/Linux-GNU.cmake"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"isCMake" : true,
|
|
||||||
"isExternal" : true,
|
|
||||||
"path" : "/home/laptop/Documents/clion/clion-2021.3.3/bin/cmake/linux/share/cmake-3.24/Modules/CMakeCommonLanguageInclude.cmake"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"isCMake" : true,
|
|
||||||
"isExternal" : true,
|
|
||||||
"path" : "/home/laptop/Documents/clion/clion-2021.3.3/bin/cmake/linux/share/cmake-3.24/Modules/FindGLUT.cmake"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"isCMake" : true,
|
|
||||||
"isExternal" : true,
|
|
||||||
"path" : "/home/laptop/Documents/clion/clion-2021.3.3/bin/cmake/linux/share/cmake-3.24/Modules/SelectLibraryConfigurations.cmake"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"isCMake" : true,
|
|
||||||
"isExternal" : true,
|
|
||||||
"path" : "/home/laptop/Documents/clion/clion-2021.3.3/bin/cmake/linux/share/cmake-3.24/Modules/FindPackageHandleStandardArgs.cmake"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"isCMake" : true,
|
|
||||||
"isExternal" : true,
|
|
||||||
"path" : "/home/laptop/Documents/clion/clion-2021.3.3/bin/cmake/linux/share/cmake-3.24/Modules/FindPackageMessage.cmake"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"isCMake" : true,
|
|
||||||
"isExternal" : true,
|
|
||||||
"path" : "/home/laptop/Documents/clion/clion-2021.3.3/bin/cmake/linux/share/cmake-3.24/Modules/FindPkgConfig.cmake"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"isCMake" : true,
|
|
||||||
"isExternal" : true,
|
|
||||||
"path" : "/home/laptop/Documents/clion/clion-2021.3.3/bin/cmake/linux/share/cmake-3.24/Modules/FindPackageHandleStandardArgs.cmake"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"isCMake" : true,
|
|
||||||
"isExternal" : true,
|
|
||||||
"path" : "/home/laptop/Documents/clion/clion-2021.3.3/bin/cmake/linux/share/cmake-3.24/Modules/FindPackageMessage.cmake"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"path" : "libraries/BLT/CMakeLists.txt"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"kind" : "cmakeFiles",
|
|
||||||
"paths" :
|
|
||||||
{
|
|
||||||
"build" : "/home/laptop/Documents/Brock/CS 3P98/Final Project/cmake-build-debug",
|
|
||||||
"source" : "/home/laptop/Documents/Brock/CS 3P98/Final Project"
|
|
||||||
},
|
|
||||||
"version" :
|
|
||||||
{
|
|
||||||
"major" : 1,
|
|
||||||
"minor" : 0
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -0,0 +1,178 @@
|
||||||
|
{
|
||||||
|
"configurations" :
|
||||||
|
[
|
||||||
|
{
|
||||||
|
"directories" :
|
||||||
|
[
|
||||||
|
{
|
||||||
|
"build" : ".",
|
||||||
|
"childIndexes" :
|
||||||
|
[
|
||||||
|
1,
|
||||||
|
3
|
||||||
|
],
|
||||||
|
"hasInstallRule" : true,
|
||||||
|
"jsonFile" : "directory-.-Debug-f5ebdc15457944623624.json",
|
||||||
|
"minimumCMakeVersion" :
|
||||||
|
{
|
||||||
|
"string" : "3.0"
|
||||||
|
},
|
||||||
|
"projectIndex" : 0,
|
||||||
|
"source" : ".",
|
||||||
|
"targetIndexes" :
|
||||||
|
[
|
||||||
|
1
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"build" : "libraries/glfw-3.3.8",
|
||||||
|
"childIndexes" :
|
||||||
|
[
|
||||||
|
2
|
||||||
|
],
|
||||||
|
"hasInstallRule" : true,
|
||||||
|
"jsonFile" : "directory-libraries.glfw-3.3.8-Debug-c0bacfe2548f50b3220c.json",
|
||||||
|
"minimumCMakeVersion" :
|
||||||
|
{
|
||||||
|
"string" : "3.0"
|
||||||
|
},
|
||||||
|
"parentIndex" : 0,
|
||||||
|
"projectIndex" : 1,
|
||||||
|
"source" : "libraries/glfw-3.3.8",
|
||||||
|
"targetIndexes" :
|
||||||
|
[
|
||||||
|
3
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"build" : "libraries/glfw-3.3.8/src",
|
||||||
|
"hasInstallRule" : true,
|
||||||
|
"jsonFile" : "directory-libraries.glfw-3.3.8.src-Debug-c1d44fa4f9d046e07112.json",
|
||||||
|
"minimumCMakeVersion" :
|
||||||
|
{
|
||||||
|
"string" : "3.0"
|
||||||
|
},
|
||||||
|
"parentIndex" : 1,
|
||||||
|
"projectIndex" : 1,
|
||||||
|
"source" : "libraries/glfw-3.3.8/src",
|
||||||
|
"targetIndexes" :
|
||||||
|
[
|
||||||
|
2,
|
||||||
|
4
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"build" : "libraries/BLT",
|
||||||
|
"jsonFile" : "directory-libraries.BLT-Debug-5a66f6c7b7b59c5dbec1.json",
|
||||||
|
"minimumCMakeVersion" :
|
||||||
|
{
|
||||||
|
"string" : "3.24"
|
||||||
|
},
|
||||||
|
"parentIndex" : 0,
|
||||||
|
"projectIndex" : 2,
|
||||||
|
"source" : "libraries/BLT",
|
||||||
|
"targetIndexes" :
|
||||||
|
[
|
||||||
|
0
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"name" : "Debug",
|
||||||
|
"projects" :
|
||||||
|
[
|
||||||
|
{
|
||||||
|
"childIndexes" :
|
||||||
|
[
|
||||||
|
1,
|
||||||
|
2
|
||||||
|
],
|
||||||
|
"directoryIndexes" :
|
||||||
|
[
|
||||||
|
0
|
||||||
|
],
|
||||||
|
"name" : "FinalProject",
|
||||||
|
"targetIndexes" :
|
||||||
|
[
|
||||||
|
1
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"directoryIndexes" :
|
||||||
|
[
|
||||||
|
1,
|
||||||
|
2
|
||||||
|
],
|
||||||
|
"name" : "GLFW",
|
||||||
|
"parentIndex" : 0,
|
||||||
|
"targetIndexes" :
|
||||||
|
[
|
||||||
|
2,
|
||||||
|
3,
|
||||||
|
4
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"directoryIndexes" :
|
||||||
|
[
|
||||||
|
3
|
||||||
|
],
|
||||||
|
"name" : "BLT",
|
||||||
|
"parentIndex" : 0,
|
||||||
|
"targetIndexes" :
|
||||||
|
[
|
||||||
|
0
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"targets" :
|
||||||
|
[
|
||||||
|
{
|
||||||
|
"directoryIndex" : 3,
|
||||||
|
"id" : "BLT::@834776b52e80069b1648",
|
||||||
|
"jsonFile" : "target-BLT-Debug-87a56c6e33f60fd591cb.json",
|
||||||
|
"name" : "BLT",
|
||||||
|
"projectIndex" : 2
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"directoryIndex" : 0,
|
||||||
|
"id" : "FinalProject::@6890427a1f51a3e7e1df",
|
||||||
|
"jsonFile" : "target-FinalProject-Debug-3d53cdbc2c077ec2b9f4.json",
|
||||||
|
"name" : "FinalProject",
|
||||||
|
"projectIndex" : 0
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"directoryIndex" : 2,
|
||||||
|
"id" : "glfw::@be113d0d45276967d6fa",
|
||||||
|
"jsonFile" : "target-glfw-Debug-f7877125424a6727c0cb.json",
|
||||||
|
"name" : "glfw",
|
||||||
|
"projectIndex" : 1
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"directoryIndex" : 1,
|
||||||
|
"id" : "uninstall::@11100b5f569bbddc0ac5",
|
||||||
|
"jsonFile" : "target-uninstall-Debug-662a9b6c0afcf86a1642.json",
|
||||||
|
"name" : "uninstall",
|
||||||
|
"projectIndex" : 1
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"directoryIndex" : 2,
|
||||||
|
"id" : "update_mappings::@be113d0d45276967d6fa",
|
||||||
|
"jsonFile" : "target-update_mappings-Debug-9b243e89bb46df5ffe2c.json",
|
||||||
|
"name" : "update_mappings",
|
||||||
|
"projectIndex" : 1
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"kind" : "codemodel",
|
||||||
|
"paths" :
|
||||||
|
{
|
||||||
|
"build" : "/home/brett/Documents/Brock/CS 3P98/Final Project/cmake-build-debug",
|
||||||
|
"source" : "/home/brett/Documents/Brock/CS 3P98/Final Project"
|
||||||
|
},
|
||||||
|
"version" :
|
||||||
|
{
|
||||||
|
"major" : 2,
|
||||||
|
"minor" : 4
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,100 @@
|
||||||
|
{
|
||||||
|
"backtraceGraph" :
|
||||||
|
{
|
||||||
|
"commands" :
|
||||||
|
[
|
||||||
|
"install"
|
||||||
|
],
|
||||||
|
"files" :
|
||||||
|
[
|
||||||
|
"libraries/glfw-3.3.8/CMakeLists.txt"
|
||||||
|
],
|
||||||
|
"nodes" :
|
||||||
|
[
|
||||||
|
{
|
||||||
|
"file" : 0
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"command" : 0,
|
||||||
|
"file" : 0,
|
||||||
|
"line" : 361,
|
||||||
|
"parent" : 0
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"command" : 0,
|
||||||
|
"file" : 0,
|
||||||
|
"line" : 364,
|
||||||
|
"parent" : 0
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"command" : 0,
|
||||||
|
"file" : 0,
|
||||||
|
"line" : 368,
|
||||||
|
"parent" : 0
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"command" : 0,
|
||||||
|
"file" : 0,
|
||||||
|
"line" : 371,
|
||||||
|
"parent" : 0
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"installers" :
|
||||||
|
[
|
||||||
|
{
|
||||||
|
"backtrace" : 1,
|
||||||
|
"component" : "Unspecified",
|
||||||
|
"destination" : "include",
|
||||||
|
"paths" :
|
||||||
|
[
|
||||||
|
"libraries/glfw-3.3.8/include/GLFW"
|
||||||
|
],
|
||||||
|
"type" : "directory"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"backtrace" : 2,
|
||||||
|
"component" : "Unspecified",
|
||||||
|
"destination" : "lib/cmake/glfw3",
|
||||||
|
"paths" :
|
||||||
|
[
|
||||||
|
"cmake-build-debug/libraries/glfw-3.3.8/src/glfw3Config.cmake",
|
||||||
|
"cmake-build-debug/libraries/glfw-3.3.8/src/glfw3ConfigVersion.cmake"
|
||||||
|
],
|
||||||
|
"type" : "file"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"backtrace" : 3,
|
||||||
|
"component" : "Unspecified",
|
||||||
|
"destination" : "lib/cmake/glfw3",
|
||||||
|
"exportName" : "glfwTargets",
|
||||||
|
"exportTargets" :
|
||||||
|
[
|
||||||
|
{
|
||||||
|
"id" : "glfw::@be113d0d45276967d6fa",
|
||||||
|
"index" : 2
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"paths" :
|
||||||
|
[
|
||||||
|
"libraries/glfw-3.3.8/CMakeFiles/Export/f367bd07922f2ecfc14cf5547f1f7c4e/glfw3Targets.cmake"
|
||||||
|
],
|
||||||
|
"type" : "export"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"backtrace" : 4,
|
||||||
|
"component" : "Unspecified",
|
||||||
|
"destination" : "lib/pkgconfig",
|
||||||
|
"paths" :
|
||||||
|
[
|
||||||
|
"cmake-build-debug/libraries/glfw-3.3.8/src/glfw3.pc"
|
||||||
|
],
|
||||||
|
"type" : "file"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"paths" :
|
||||||
|
{
|
||||||
|
"build" : "libraries/glfw-3.3.8",
|
||||||
|
"source" : "libraries/glfw-3.3.8"
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,45 @@
|
||||||
|
{
|
||||||
|
"backtraceGraph" :
|
||||||
|
{
|
||||||
|
"commands" :
|
||||||
|
[
|
||||||
|
"install"
|
||||||
|
],
|
||||||
|
"files" :
|
||||||
|
[
|
||||||
|
"libraries/glfw-3.3.8/src/CMakeLists.txt"
|
||||||
|
],
|
||||||
|
"nodes" :
|
||||||
|
[
|
||||||
|
{
|
||||||
|
"file" : 0
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"command" : 0,
|
||||||
|
"file" : 0,
|
||||||
|
"line" : 189,
|
||||||
|
"parent" : 0
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"installers" :
|
||||||
|
[
|
||||||
|
{
|
||||||
|
"backtrace" : 1,
|
||||||
|
"component" : "Unspecified",
|
||||||
|
"destination" : "lib",
|
||||||
|
"paths" :
|
||||||
|
[
|
||||||
|
"libraries/glfw-3.3.8/src/libglfw3.a"
|
||||||
|
],
|
||||||
|
"targetId" : "glfw::@be113d0d45276967d6fa",
|
||||||
|
"targetIndex" : 2,
|
||||||
|
"type" : "target"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"paths" :
|
||||||
|
{
|
||||||
|
"build" : "libraries/glfw-3.3.8/src",
|
||||||
|
"source" : "libraries/glfw-3.3.8/src"
|
||||||
|
}
|
||||||
|
}
|
|
@ -8,10 +8,10 @@
|
||||||
},
|
},
|
||||||
"paths" :
|
"paths" :
|
||||||
{
|
{
|
||||||
"cmake" : "/home/laptop/Documents/clion/clion-2021.3.3/bin/cmake/linux/bin/cmake",
|
"cmake" : "/opt/netbrains/clion/clion-2022.1.3/bin/cmake/linux/bin/cmake",
|
||||||
"cpack" : "/home/laptop/Documents/clion/clion-2021.3.3/bin/cmake/linux/bin/cpack",
|
"cpack" : "/opt/netbrains/clion/clion-2022.1.3/bin/cmake/linux/bin/cpack",
|
||||||
"ctest" : "/home/laptop/Documents/clion/clion-2021.3.3/bin/cmake/linux/bin/ctest",
|
"ctest" : "/opt/netbrains/clion/clion-2022.1.3/bin/cmake/linux/bin/ctest",
|
||||||
"root" : "/home/laptop/Documents/clion/clion-2021.3.3/bin/cmake/linux/share/cmake-3.24"
|
"root" : "/opt/netbrains/clion/clion-2022.1.3/bin/cmake/linux/share/cmake-3.24"
|
||||||
},
|
},
|
||||||
"version" :
|
"version" :
|
||||||
{
|
{
|
||||||
|
@ -26,7 +26,7 @@
|
||||||
"objects" :
|
"objects" :
|
||||||
[
|
[
|
||||||
{
|
{
|
||||||
"jsonFile" : "codemodel-v2-9815ffeff720abbe266c.json",
|
"jsonFile" : "codemodel-v2-7fa3f0d11f2222209744.json",
|
||||||
"kind" : "codemodel",
|
"kind" : "codemodel",
|
||||||
"version" :
|
"version" :
|
||||||
{
|
{
|
||||||
|
@ -35,7 +35,7 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"jsonFile" : "cache-v2-16ee6a5c257cdca882d4.json",
|
"jsonFile" : "cache-v2-3d9d779d7353e0e119ee.json",
|
||||||
"kind" : "cache",
|
"kind" : "cache",
|
||||||
"version" :
|
"version" :
|
||||||
{
|
{
|
||||||
|
@ -44,7 +44,7 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"jsonFile" : "cmakeFiles-v1-2c011fba65a9adeb5821.json",
|
"jsonFile" : "cmakeFiles-v1-0f70ac7b8251bb16cb53.json",
|
||||||
"kind" : "cmakeFiles",
|
"kind" : "cmakeFiles",
|
||||||
"version" :
|
"version" :
|
||||||
{
|
{
|
||||||
|
@ -53,7 +53,7 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"jsonFile" : "toolchains-v1-f7556bbfc5e175d095d5.json",
|
"jsonFile" : "toolchains-v1-a68c232ca45b00aa6bba.json",
|
||||||
"kind" : "toolchains",
|
"kind" : "toolchains",
|
||||||
"version" :
|
"version" :
|
||||||
{
|
{
|
||||||
|
@ -66,7 +66,7 @@
|
||||||
{
|
{
|
||||||
"cache-v2" :
|
"cache-v2" :
|
||||||
{
|
{
|
||||||
"jsonFile" : "cache-v2-16ee6a5c257cdca882d4.json",
|
"jsonFile" : "cache-v2-3d9d779d7353e0e119ee.json",
|
||||||
"kind" : "cache",
|
"kind" : "cache",
|
||||||
"version" :
|
"version" :
|
||||||
{
|
{
|
||||||
|
@ -76,7 +76,7 @@
|
||||||
},
|
},
|
||||||
"cmakeFiles-v1" :
|
"cmakeFiles-v1" :
|
||||||
{
|
{
|
||||||
"jsonFile" : "cmakeFiles-v1-2c011fba65a9adeb5821.json",
|
"jsonFile" : "cmakeFiles-v1-0f70ac7b8251bb16cb53.json",
|
||||||
"kind" : "cmakeFiles",
|
"kind" : "cmakeFiles",
|
||||||
"version" :
|
"version" :
|
||||||
{
|
{
|
||||||
|
@ -86,7 +86,7 @@
|
||||||
},
|
},
|
||||||
"codemodel-v2" :
|
"codemodel-v2" :
|
||||||
{
|
{
|
||||||
"jsonFile" : "codemodel-v2-9815ffeff720abbe266c.json",
|
"jsonFile" : "codemodel-v2-7fa3f0d11f2222209744.json",
|
||||||
"kind" : "codemodel",
|
"kind" : "codemodel",
|
||||||
"version" :
|
"version" :
|
||||||
{
|
{
|
||||||
|
@ -96,7 +96,7 @@
|
||||||
},
|
},
|
||||||
"toolchains-v1" :
|
"toolchains-v1" :
|
||||||
{
|
{
|
||||||
"jsonFile" : "toolchains-v1-f7556bbfc5e175d095d5.json",
|
"jsonFile" : "toolchains-v1-a68c232ca45b00aa6bba.json",
|
||||||
"kind" : "toolchains",
|
"kind" : "toolchains",
|
||||||
"version" :
|
"version" :
|
||||||
{
|
{
|
|
@ -0,0 +1,183 @@
|
||||||
|
{
|
||||||
|
"archive" : {},
|
||||||
|
"artifacts" :
|
||||||
|
[
|
||||||
|
{
|
||||||
|
"path" : "libraries/BLT/libBLT.a"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"backtrace" : 1,
|
||||||
|
"backtraceGraph" :
|
||||||
|
{
|
||||||
|
"commands" :
|
||||||
|
[
|
||||||
|
"add_library",
|
||||||
|
"add_compile_options",
|
||||||
|
"include_directories",
|
||||||
|
"target_include_directories"
|
||||||
|
],
|
||||||
|
"files" :
|
||||||
|
[
|
||||||
|
"libraries/BLT/CMakeLists.txt",
|
||||||
|
"CMakeLists.txt"
|
||||||
|
],
|
||||||
|
"nodes" :
|
||||||
|
[
|
||||||
|
{
|
||||||
|
"file" : 0
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"command" : 0,
|
||||||
|
"file" : 0,
|
||||||
|
"line" : 47,
|
||||||
|
"parent" : 0
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"file" : 1
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"command" : 1,
|
||||||
|
"file" : 1,
|
||||||
|
"line" : 19,
|
||||||
|
"parent" : 2
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"command" : 2,
|
||||||
|
"file" : 1,
|
||||||
|
"line" : 37,
|
||||||
|
"parent" : 2
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"command" : 2,
|
||||||
|
"file" : 0,
|
||||||
|
"line" : 38,
|
||||||
|
"parent" : 0
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"command" : 3,
|
||||||
|
"file" : 0,
|
||||||
|
"line" : 50,
|
||||||
|
"parent" : 0
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"compileGroups" :
|
||||||
|
[
|
||||||
|
{
|
||||||
|
"compileCommandFragments" :
|
||||||
|
[
|
||||||
|
{
|
||||||
|
"fragment" : " -fsanitize=address -g -g -fdiagnostics-color=always"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"backtrace" : 3,
|
||||||
|
"fragment" : "-fsanitize=address"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"includes" :
|
||||||
|
[
|
||||||
|
{
|
||||||
|
"backtrace" : 4,
|
||||||
|
"path" : "/home/brett/Documents/Brock/CS 3P98/Final Project/include"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"backtrace" : 5,
|
||||||
|
"path" : "/home/brett/Documents/Brock/CS 3P98/Final Project/libraries/BLT/include"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"backtrace" : 6,
|
||||||
|
"path" : "/home/brett/Documents/Brock/CS 3P98/Final Project/cmake-build-debug/libraries/BLT/config"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"language" : "CXX",
|
||||||
|
"languageStandard" :
|
||||||
|
{
|
||||||
|
"backtraces" :
|
||||||
|
[
|
||||||
|
1
|
||||||
|
],
|
||||||
|
"standard" : "17"
|
||||||
|
},
|
||||||
|
"sourceIndexes" :
|
||||||
|
[
|
||||||
|
0,
|
||||||
|
1,
|
||||||
|
2,
|
||||||
|
3,
|
||||||
|
4,
|
||||||
|
5,
|
||||||
|
6
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"id" : "BLT::@834776b52e80069b1648",
|
||||||
|
"name" : "BLT",
|
||||||
|
"nameOnDisk" : "libBLT.a",
|
||||||
|
"paths" :
|
||||||
|
{
|
||||||
|
"build" : "libraries/BLT",
|
||||||
|
"source" : "libraries/BLT"
|
||||||
|
},
|
||||||
|
"sourceGroups" :
|
||||||
|
[
|
||||||
|
{
|
||||||
|
"name" : "Source Files",
|
||||||
|
"sourceIndexes" :
|
||||||
|
[
|
||||||
|
0,
|
||||||
|
1,
|
||||||
|
2,
|
||||||
|
3,
|
||||||
|
4,
|
||||||
|
5,
|
||||||
|
6
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"sources" :
|
||||||
|
[
|
||||||
|
{
|
||||||
|
"backtrace" : 1,
|
||||||
|
"compileGroupIndex" : 0,
|
||||||
|
"path" : "libraries/BLT/src/blt/std/filesystem.cpp",
|
||||||
|
"sourceGroupIndex" : 0
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"backtrace" : 1,
|
||||||
|
"compileGroupIndex" : 0,
|
||||||
|
"path" : "libraries/BLT/src/blt/std/format.cpp",
|
||||||
|
"sourceGroupIndex" : 0
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"backtrace" : 1,
|
||||||
|
"compileGroupIndex" : 0,
|
||||||
|
"path" : "libraries/BLT/src/blt/std/logging.cpp",
|
||||||
|
"sourceGroupIndex" : 0
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"backtrace" : 1,
|
||||||
|
"compileGroupIndex" : 0,
|
||||||
|
"path" : "libraries/BLT/src/blt/std/system.cpp",
|
||||||
|
"sourceGroupIndex" : 0
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"backtrace" : 1,
|
||||||
|
"compileGroupIndex" : 0,
|
||||||
|
"path" : "libraries/BLT/src/blt/profiling/profiler.cpp",
|
||||||
|
"sourceGroupIndex" : 0
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"backtrace" : 1,
|
||||||
|
"compileGroupIndex" : 0,
|
||||||
|
"path" : "libraries/BLT/src/blt/nbt/nbt.cpp",
|
||||||
|
"sourceGroupIndex" : 0
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"backtrace" : 1,
|
||||||
|
"compileGroupIndex" : 0,
|
||||||
|
"path" : "libraries/BLT/src/blt/nbt/nbt_block.cpp",
|
||||||
|
"sourceGroupIndex" : 0
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"type" : "STATIC_LIBRARY"
|
||||||
|
}
|
|
@ -0,0 +1,251 @@
|
||||||
|
{
|
||||||
|
"artifacts" :
|
||||||
|
[
|
||||||
|
{
|
||||||
|
"path" : "FinalProject"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"backtrace" : 1,
|
||||||
|
"backtraceGraph" :
|
||||||
|
{
|
||||||
|
"commands" :
|
||||||
|
[
|
||||||
|
"add_executable",
|
||||||
|
"add_link_options",
|
||||||
|
"target_link_libraries",
|
||||||
|
"add_compile_options",
|
||||||
|
"include_directories"
|
||||||
|
],
|
||||||
|
"files" :
|
||||||
|
[
|
||||||
|
"CMakeLists.txt",
|
||||||
|
"libraries/BLT/CMakeLists.txt",
|
||||||
|
"libraries/glfw-3.3.8/src/CMakeLists.txt"
|
||||||
|
],
|
||||||
|
"nodes" :
|
||||||
|
[
|
||||||
|
{
|
||||||
|
"file" : 0
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"command" : 0,
|
||||||
|
"file" : 0,
|
||||||
|
"line" : 41,
|
||||||
|
"parent" : 0
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"command" : 1,
|
||||||
|
"file" : 0,
|
||||||
|
"line" : 20,
|
||||||
|
"parent" : 0
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"command" : 2,
|
||||||
|
"file" : 0,
|
||||||
|
"line" : 42,
|
||||||
|
"parent" : 0
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"command" : 2,
|
||||||
|
"file" : 0,
|
||||||
|
"line" : 43,
|
||||||
|
"parent" : 0
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"file" : 1
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"command" : 2,
|
||||||
|
"file" : 1,
|
||||||
|
"line" : 52,
|
||||||
|
"parent" : 5
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"file" : 2
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"command" : 2,
|
||||||
|
"file" : 2,
|
||||||
|
"line" : 119,
|
||||||
|
"parent" : 7
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"command" : 3,
|
||||||
|
"file" : 0,
|
||||||
|
"line" : 19,
|
||||||
|
"parent" : 0
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"command" : 4,
|
||||||
|
"file" : 0,
|
||||||
|
"line" : 37,
|
||||||
|
"parent" : 0
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"compileGroups" :
|
||||||
|
[
|
||||||
|
{
|
||||||
|
"compileCommandFragments" :
|
||||||
|
[
|
||||||
|
{
|
||||||
|
"fragment" : " -fsanitize=address -g -g -fdiagnostics-color=always"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"backtrace" : 9,
|
||||||
|
"fragment" : "-fsanitize=address"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"fragment" : "-std=gnu++17"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"includes" :
|
||||||
|
[
|
||||||
|
{
|
||||||
|
"backtrace" : 10,
|
||||||
|
"path" : "/home/brett/Documents/Brock/CS 3P98/Final Project/include"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"backtrace" : 3,
|
||||||
|
"path" : "/home/brett/Documents/Brock/CS 3P98/Final Project/libraries/BLT/include"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"backtrace" : 3,
|
||||||
|
"path" : "/home/brett/Documents/Brock/CS 3P98/Final Project/cmake-build-debug/libraries/BLT/config"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"backtrace" : 4,
|
||||||
|
"path" : "/home/brett/Documents/Brock/CS 3P98/Final Project/libraries/glfw-3.3.8/include"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"language" : "CXX",
|
||||||
|
"languageStandard" :
|
||||||
|
{
|
||||||
|
"backtraces" :
|
||||||
|
[
|
||||||
|
1
|
||||||
|
],
|
||||||
|
"standard" : "17"
|
||||||
|
},
|
||||||
|
"sourceIndexes" :
|
||||||
|
[
|
||||||
|
0,
|
||||||
|
1,
|
||||||
|
2
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"dependencies" :
|
||||||
|
[
|
||||||
|
{
|
||||||
|
"backtrace" : 4,
|
||||||
|
"id" : "glfw::@be113d0d45276967d6fa"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"backtrace" : 3,
|
||||||
|
"id" : "BLT::@834776b52e80069b1648"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"id" : "FinalProject::@6890427a1f51a3e7e1df",
|
||||||
|
"link" :
|
||||||
|
{
|
||||||
|
"commandFragments" :
|
||||||
|
[
|
||||||
|
{
|
||||||
|
"fragment" : "-fsanitize=address -g -g",
|
||||||
|
"role" : "flags"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"fragment" : "-rdynamic",
|
||||||
|
"role" : "flags"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"backtrace" : 2,
|
||||||
|
"fragment" : "-fsanitize=address",
|
||||||
|
"role" : "flags"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"backtrace" : 3,
|
||||||
|
"fragment" : "libraries/BLT/libBLT.a",
|
||||||
|
"role" : "libraries"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"backtrace" : 4,
|
||||||
|
"fragment" : "libraries/glfw-3.3.8/src/libglfw3.a",
|
||||||
|
"role" : "libraries"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"backtrace" : 6,
|
||||||
|
"fragment" : "/usr/lib/x86_64-linux-gnu/libz.so",
|
||||||
|
"role" : "libraries"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"fragment" : "-Wl,-Bstatic",
|
||||||
|
"role" : "libraries"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"fragment" : "-lrt",
|
||||||
|
"role" : "libraries"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"fragment" : "-Wl,-Bdynamic",
|
||||||
|
"role" : "libraries"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"fragment" : "-lm",
|
||||||
|
"role" : "libraries"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"backtrace" : 8,
|
||||||
|
"fragment" : "-ldl",
|
||||||
|
"role" : "libraries"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"fragment" : "-lX11",
|
||||||
|
"role" : "libraries"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"language" : "CXX"
|
||||||
|
},
|
||||||
|
"name" : "FinalProject",
|
||||||
|
"nameOnDisk" : "FinalProject",
|
||||||
|
"paths" :
|
||||||
|
{
|
||||||
|
"build" : ".",
|
||||||
|
"source" : "."
|
||||||
|
},
|
||||||
|
"sourceGroups" :
|
||||||
|
[
|
||||||
|
{
|
||||||
|
"name" : "Source Files",
|
||||||
|
"sourceIndexes" :
|
||||||
|
[
|
||||||
|
0,
|
||||||
|
1,
|
||||||
|
2
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"sources" :
|
||||||
|
[
|
||||||
|
{
|
||||||
|
"backtrace" : 1,
|
||||||
|
"compileGroupIndex" : 0,
|
||||||
|
"path" : "src/main.cpp",
|
||||||
|
"sourceGroupIndex" : 0
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"backtrace" : 1,
|
||||||
|
"compileGroupIndex" : 0,
|
||||||
|
"path" : "src/render/gl.cpp",
|
||||||
|
"sourceGroupIndex" : 0
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"backtrace" : 1,
|
||||||
|
"compileGroupIndex" : 0,
|
||||||
|
"path" : "src/render/window.cpp",
|
||||||
|
"sourceGroupIndex" : 0
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"type" : "EXECUTABLE"
|
||||||
|
}
|
|
@ -0,0 +1,448 @@
|
||||||
|
{
|
||||||
|
"archive" : {},
|
||||||
|
"artifacts" :
|
||||||
|
[
|
||||||
|
{
|
||||||
|
"path" : "libraries/glfw-3.3.8/src/libglfw3.a"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"backtrace" : 1,
|
||||||
|
"backtraceGraph" :
|
||||||
|
{
|
||||||
|
"commands" :
|
||||||
|
[
|
||||||
|
"add_library",
|
||||||
|
"install",
|
||||||
|
"add_compile_options",
|
||||||
|
"target_compile_options",
|
||||||
|
"target_compile_definitions",
|
||||||
|
"target_include_directories",
|
||||||
|
"set_target_properties"
|
||||||
|
],
|
||||||
|
"files" :
|
||||||
|
[
|
||||||
|
"libraries/glfw-3.3.8/src/CMakeLists.txt",
|
||||||
|
"CMakeLists.txt"
|
||||||
|
],
|
||||||
|
"nodes" :
|
||||||
|
[
|
||||||
|
{
|
||||||
|
"file" : 0
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"command" : 0,
|
||||||
|
"file" : 0,
|
||||||
|
"line" : 91,
|
||||||
|
"parent" : 0
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"command" : 1,
|
||||||
|
"file" : 0,
|
||||||
|
"line" : 189,
|
||||||
|
"parent" : 0
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"file" : 1
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"command" : 2,
|
||||||
|
"file" : 1,
|
||||||
|
"line" : 19,
|
||||||
|
"parent" : 3
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"command" : 3,
|
||||||
|
"file" : 0,
|
||||||
|
"line" : 140,
|
||||||
|
"parent" : 0
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"command" : 4,
|
||||||
|
"file" : 0,
|
||||||
|
"line" : 111,
|
||||||
|
"parent" : 0
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"command" : 5,
|
||||||
|
"file" : 0,
|
||||||
|
"line" : 112,
|
||||||
|
"parent" : 0
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"command" : 5,
|
||||||
|
"file" : 0,
|
||||||
|
"line" : 115,
|
||||||
|
"parent" : 0
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"command" : 6,
|
||||||
|
"file" : 0,
|
||||||
|
"line" : 102,
|
||||||
|
"parent" : 0
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"compileGroups" :
|
||||||
|
[
|
||||||
|
{
|
||||||
|
"compileCommandFragments" :
|
||||||
|
[
|
||||||
|
{
|
||||||
|
"fragment" : "-g -fPIC -fdiagnostics-color=always"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"backtrace" : 4,
|
||||||
|
"fragment" : "-fsanitize=address"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"backtrace" : 5,
|
||||||
|
"fragment" : "-Wall"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"fragment" : "-std=gnu99"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"fragment" : "-Wdeclaration-after-statement"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"defines" :
|
||||||
|
[
|
||||||
|
{
|
||||||
|
"backtrace" : 6,
|
||||||
|
"define" : "_GLFW_USE_CONFIG_H"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"includes" :
|
||||||
|
[
|
||||||
|
{
|
||||||
|
"backtrace" : 7,
|
||||||
|
"path" : "/home/brett/Documents/Brock/CS 3P98/Final Project/libraries/glfw-3.3.8/include"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"backtrace" : 8,
|
||||||
|
"path" : "/home/brett/Documents/Brock/CS 3P98/Final Project/libraries/glfw-3.3.8/src"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"backtrace" : 8,
|
||||||
|
"path" : "/home/brett/Documents/Brock/CS 3P98/Final Project/cmake-build-debug/libraries/glfw-3.3.8/src"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"language" : "C",
|
||||||
|
"languageStandard" :
|
||||||
|
{
|
||||||
|
"backtraces" :
|
||||||
|
[
|
||||||
|
9
|
||||||
|
],
|
||||||
|
"standard" : "99"
|
||||||
|
},
|
||||||
|
"sourceIndexes" :
|
||||||
|
[
|
||||||
|
0,
|
||||||
|
1,
|
||||||
|
2,
|
||||||
|
3,
|
||||||
|
4,
|
||||||
|
5,
|
||||||
|
13,
|
||||||
|
14
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"compileCommandFragments" :
|
||||||
|
[
|
||||||
|
{
|
||||||
|
"fragment" : "-g -fPIC -fdiagnostics-color=always"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"backtrace" : 4,
|
||||||
|
"fragment" : "-fsanitize=address"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"backtrace" : 5,
|
||||||
|
"fragment" : "-Wall"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"fragment" : "-std=gnu99"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"defines" :
|
||||||
|
[
|
||||||
|
{
|
||||||
|
"backtrace" : 6,
|
||||||
|
"define" : "_GLFW_USE_CONFIG_H"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"includes" :
|
||||||
|
[
|
||||||
|
{
|
||||||
|
"backtrace" : 7,
|
||||||
|
"path" : "/home/brett/Documents/Brock/CS 3P98/Final Project/libraries/glfw-3.3.8/include"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"backtrace" : 8,
|
||||||
|
"path" : "/home/brett/Documents/Brock/CS 3P98/Final Project/libraries/glfw-3.3.8/src"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"backtrace" : 8,
|
||||||
|
"path" : "/home/brett/Documents/Brock/CS 3P98/Final Project/cmake-build-debug/libraries/glfw-3.3.8/src"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"language" : "C",
|
||||||
|
"languageStandard" :
|
||||||
|
{
|
||||||
|
"backtraces" :
|
||||||
|
[
|
||||||
|
9
|
||||||
|
],
|
||||||
|
"standard" : "99"
|
||||||
|
},
|
||||||
|
"sourceIndexes" :
|
||||||
|
[
|
||||||
|
6,
|
||||||
|
7,
|
||||||
|
8,
|
||||||
|
9,
|
||||||
|
10,
|
||||||
|
11,
|
||||||
|
12,
|
||||||
|
15
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"folder" :
|
||||||
|
{
|
||||||
|
"name" : "GLFW3"
|
||||||
|
},
|
||||||
|
"id" : "glfw::@be113d0d45276967d6fa",
|
||||||
|
"install" :
|
||||||
|
{
|
||||||
|
"destinations" :
|
||||||
|
[
|
||||||
|
{
|
||||||
|
"backtrace" : 2,
|
||||||
|
"path" : "lib"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"prefix" :
|
||||||
|
{
|
||||||
|
"path" : "/usr/local"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"name" : "glfw",
|
||||||
|
"nameOnDisk" : "libglfw3.a",
|
||||||
|
"paths" :
|
||||||
|
{
|
||||||
|
"build" : "libraries/glfw-3.3.8/src",
|
||||||
|
"source" : "libraries/glfw-3.3.8/src"
|
||||||
|
},
|
||||||
|
"sourceGroups" :
|
||||||
|
[
|
||||||
|
{
|
||||||
|
"name" : "Source Files",
|
||||||
|
"sourceIndexes" :
|
||||||
|
[
|
||||||
|
0,
|
||||||
|
1,
|
||||||
|
2,
|
||||||
|
3,
|
||||||
|
4,
|
||||||
|
5,
|
||||||
|
6,
|
||||||
|
7,
|
||||||
|
8,
|
||||||
|
9,
|
||||||
|
10,
|
||||||
|
11,
|
||||||
|
12,
|
||||||
|
13,
|
||||||
|
14,
|
||||||
|
15
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name" : "Header Files",
|
||||||
|
"sourceIndexes" :
|
||||||
|
[
|
||||||
|
16,
|
||||||
|
17,
|
||||||
|
18,
|
||||||
|
19,
|
||||||
|
20,
|
||||||
|
21,
|
||||||
|
22,
|
||||||
|
23,
|
||||||
|
24,
|
||||||
|
25,
|
||||||
|
26,
|
||||||
|
27,
|
||||||
|
28
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"sources" :
|
||||||
|
[
|
||||||
|
{
|
||||||
|
"backtrace" : 1,
|
||||||
|
"compileGroupIndex" : 0,
|
||||||
|
"path" : "libraries/glfw-3.3.8/src/context.c",
|
||||||
|
"sourceGroupIndex" : 0
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"backtrace" : 1,
|
||||||
|
"compileGroupIndex" : 0,
|
||||||
|
"path" : "libraries/glfw-3.3.8/src/init.c",
|
||||||
|
"sourceGroupIndex" : 0
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"backtrace" : 1,
|
||||||
|
"compileGroupIndex" : 0,
|
||||||
|
"path" : "libraries/glfw-3.3.8/src/input.c",
|
||||||
|
"sourceGroupIndex" : 0
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"backtrace" : 1,
|
||||||
|
"compileGroupIndex" : 0,
|
||||||
|
"path" : "libraries/glfw-3.3.8/src/monitor.c",
|
||||||
|
"sourceGroupIndex" : 0
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"backtrace" : 1,
|
||||||
|
"compileGroupIndex" : 0,
|
||||||
|
"path" : "libraries/glfw-3.3.8/src/vulkan.c",
|
||||||
|
"sourceGroupIndex" : 0
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"backtrace" : 1,
|
||||||
|
"compileGroupIndex" : 0,
|
||||||
|
"path" : "libraries/glfw-3.3.8/src/window.c",
|
||||||
|
"sourceGroupIndex" : 0
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"backtrace" : 1,
|
||||||
|
"compileGroupIndex" : 1,
|
||||||
|
"path" : "libraries/glfw-3.3.8/src/x11_init.c",
|
||||||
|
"sourceGroupIndex" : 0
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"backtrace" : 1,
|
||||||
|
"compileGroupIndex" : 1,
|
||||||
|
"path" : "libraries/glfw-3.3.8/src/x11_monitor.c",
|
||||||
|
"sourceGroupIndex" : 0
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"backtrace" : 1,
|
||||||
|
"compileGroupIndex" : 1,
|
||||||
|
"path" : "libraries/glfw-3.3.8/src/x11_window.c",
|
||||||
|
"sourceGroupIndex" : 0
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"backtrace" : 1,
|
||||||
|
"compileGroupIndex" : 1,
|
||||||
|
"path" : "libraries/glfw-3.3.8/src/xkb_unicode.c",
|
||||||
|
"sourceGroupIndex" : 0
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"backtrace" : 1,
|
||||||
|
"compileGroupIndex" : 1,
|
||||||
|
"path" : "libraries/glfw-3.3.8/src/posix_time.c",
|
||||||
|
"sourceGroupIndex" : 0
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"backtrace" : 1,
|
||||||
|
"compileGroupIndex" : 1,
|
||||||
|
"path" : "libraries/glfw-3.3.8/src/posix_thread.c",
|
||||||
|
"sourceGroupIndex" : 0
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"backtrace" : 1,
|
||||||
|
"compileGroupIndex" : 1,
|
||||||
|
"path" : "libraries/glfw-3.3.8/src/glx_context.c",
|
||||||
|
"sourceGroupIndex" : 0
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"backtrace" : 1,
|
||||||
|
"compileGroupIndex" : 0,
|
||||||
|
"path" : "libraries/glfw-3.3.8/src/egl_context.c",
|
||||||
|
"sourceGroupIndex" : 0
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"backtrace" : 1,
|
||||||
|
"compileGroupIndex" : 0,
|
||||||
|
"path" : "libraries/glfw-3.3.8/src/osmesa_context.c",
|
||||||
|
"sourceGroupIndex" : 0
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"backtrace" : 1,
|
||||||
|
"compileGroupIndex" : 1,
|
||||||
|
"path" : "libraries/glfw-3.3.8/src/linux_joystick.c",
|
||||||
|
"sourceGroupIndex" : 0
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"backtrace" : 1,
|
||||||
|
"path" : "libraries/glfw-3.3.8/src/internal.h",
|
||||||
|
"sourceGroupIndex" : 1
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"backtrace" : 1,
|
||||||
|
"path" : "libraries/glfw-3.3.8/src/mappings.h",
|
||||||
|
"sourceGroupIndex" : 1
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"backtrace" : 1,
|
||||||
|
"path" : "cmake-build-debug/libraries/glfw-3.3.8/src/glfw_config.h",
|
||||||
|
"sourceGroupIndex" : 1
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"backtrace" : 1,
|
||||||
|
"path" : "libraries/glfw-3.3.8/include/GLFW/glfw3.h",
|
||||||
|
"sourceGroupIndex" : 1
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"backtrace" : 1,
|
||||||
|
"path" : "libraries/glfw-3.3.8/include/GLFW/glfw3native.h",
|
||||||
|
"sourceGroupIndex" : 1
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"backtrace" : 1,
|
||||||
|
"path" : "libraries/glfw-3.3.8/src/x11_platform.h",
|
||||||
|
"sourceGroupIndex" : 1
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"backtrace" : 1,
|
||||||
|
"path" : "libraries/glfw-3.3.8/src/xkb_unicode.h",
|
||||||
|
"sourceGroupIndex" : 1
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"backtrace" : 1,
|
||||||
|
"path" : "libraries/glfw-3.3.8/src/posix_time.h",
|
||||||
|
"sourceGroupIndex" : 1
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"backtrace" : 1,
|
||||||
|
"path" : "libraries/glfw-3.3.8/src/posix_thread.h",
|
||||||
|
"sourceGroupIndex" : 1
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"backtrace" : 1,
|
||||||
|
"path" : "libraries/glfw-3.3.8/src/glx_context.h",
|
||||||
|
"sourceGroupIndex" : 1
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"backtrace" : 1,
|
||||||
|
"path" : "libraries/glfw-3.3.8/src/egl_context.h",
|
||||||
|
"sourceGroupIndex" : 1
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"backtrace" : 1,
|
||||||
|
"path" : "libraries/glfw-3.3.8/src/osmesa_context.h",
|
||||||
|
"sourceGroupIndex" : 1
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"backtrace" : 1,
|
||||||
|
"path" : "libraries/glfw-3.3.8/src/linux_joystick.h",
|
||||||
|
"sourceGroupIndex" : 1
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"type" : "STATIC_LIBRARY"
|
||||||
|
}
|
|
@ -0,0 +1,70 @@
|
||||||
|
{
|
||||||
|
"backtrace" : 1,
|
||||||
|
"backtraceGraph" :
|
||||||
|
{
|
||||||
|
"commands" :
|
||||||
|
[
|
||||||
|
"add_custom_target"
|
||||||
|
],
|
||||||
|
"files" :
|
||||||
|
[
|
||||||
|
"libraries/glfw-3.3.8/CMakeLists.txt"
|
||||||
|
],
|
||||||
|
"nodes" :
|
||||||
|
[
|
||||||
|
{
|
||||||
|
"file" : 0
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"command" : 0,
|
||||||
|
"file" : 0,
|
||||||
|
"line" : 379,
|
||||||
|
"parent" : 0
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"folder" :
|
||||||
|
{
|
||||||
|
"name" : "GLFW3"
|
||||||
|
},
|
||||||
|
"id" : "uninstall::@11100b5f569bbddc0ac5",
|
||||||
|
"name" : "uninstall",
|
||||||
|
"paths" :
|
||||||
|
{
|
||||||
|
"build" : "libraries/glfw-3.3.8",
|
||||||
|
"source" : "libraries/glfw-3.3.8"
|
||||||
|
},
|
||||||
|
"sourceGroups" :
|
||||||
|
[
|
||||||
|
{
|
||||||
|
"name" : "",
|
||||||
|
"sourceIndexes" :
|
||||||
|
[
|
||||||
|
0
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name" : "CMake Rules",
|
||||||
|
"sourceIndexes" :
|
||||||
|
[
|
||||||
|
1
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"sources" :
|
||||||
|
[
|
||||||
|
{
|
||||||
|
"backtrace" : 1,
|
||||||
|
"isGenerated" : true,
|
||||||
|
"path" : "cmake-build-debug/libraries/glfw-3.3.8/CMakeFiles/uninstall",
|
||||||
|
"sourceGroupIndex" : 0
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"backtrace" : 0,
|
||||||
|
"isGenerated" : true,
|
||||||
|
"path" : "cmake-build-debug/libraries/glfw-3.3.8/CMakeFiles/uninstall.rule",
|
||||||
|
"sourceGroupIndex" : 1
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"type" : "UTILITY"
|
||||||
|
}
|
|
@ -0,0 +1,88 @@
|
||||||
|
{
|
||||||
|
"backtrace" : 1,
|
||||||
|
"backtraceGraph" :
|
||||||
|
{
|
||||||
|
"commands" :
|
||||||
|
[
|
||||||
|
"add_custom_target"
|
||||||
|
],
|
||||||
|
"files" :
|
||||||
|
[
|
||||||
|
"libraries/glfw-3.3.8/src/CMakeLists.txt"
|
||||||
|
],
|
||||||
|
"nodes" :
|
||||||
|
[
|
||||||
|
{
|
||||||
|
"file" : 0
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"command" : 0,
|
||||||
|
"file" : 0,
|
||||||
|
"line" : 8,
|
||||||
|
"parent" : 0
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"folder" :
|
||||||
|
{
|
||||||
|
"name" : "GLFW3"
|
||||||
|
},
|
||||||
|
"id" : "update_mappings::@be113d0d45276967d6fa",
|
||||||
|
"name" : "update_mappings",
|
||||||
|
"paths" :
|
||||||
|
{
|
||||||
|
"build" : "libraries/glfw-3.3.8/src",
|
||||||
|
"source" : "libraries/glfw-3.3.8/src"
|
||||||
|
},
|
||||||
|
"sourceGroups" :
|
||||||
|
[
|
||||||
|
{
|
||||||
|
"name" : "Header Files",
|
||||||
|
"sourceIndexes" :
|
||||||
|
[
|
||||||
|
0
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name" : "",
|
||||||
|
"sourceIndexes" :
|
||||||
|
[
|
||||||
|
1,
|
||||||
|
2
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name" : "CMake Rules",
|
||||||
|
"sourceIndexes" :
|
||||||
|
[
|
||||||
|
3
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"sources" :
|
||||||
|
[
|
||||||
|
{
|
||||||
|
"backtrace" : 1,
|
||||||
|
"path" : "libraries/glfw-3.3.8/src/mappings.h.in",
|
||||||
|
"sourceGroupIndex" : 0
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"backtrace" : 1,
|
||||||
|
"path" : "libraries/glfw-3.3.8/CMake/GenerateMappings.cmake",
|
||||||
|
"sourceGroupIndex" : 1
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"backtrace" : 1,
|
||||||
|
"isGenerated" : true,
|
||||||
|
"path" : "cmake-build-debug/libraries/glfw-3.3.8/src/CMakeFiles/update_mappings",
|
||||||
|
"sourceGroupIndex" : 1
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"backtrace" : 0,
|
||||||
|
"isGenerated" : true,
|
||||||
|
"path" : "cmake-build-debug/libraries/glfw-3.3.8/src/CMakeFiles/update_mappings.rule",
|
||||||
|
"sourceGroupIndex" : 2
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"type" : "UTILITY"
|
||||||
|
}
|
|
@ -33,8 +33,8 @@
|
||||||
"gcc_s"
|
"gcc_s"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"path" : "/usr/bin/gcc-12",
|
"path" : "/usr/bin/cc",
|
||||||
"version" : "12.1.0"
|
"version" : "12.2.0"
|
||||||
},
|
},
|
||||||
"language" : "C",
|
"language" : "C",
|
||||||
"sourceFileExtensions" :
|
"sourceFileExtensions" :
|
||||||
|
@ -79,8 +79,8 @@
|
||||||
"gcc"
|
"gcc"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"path" : "/usr/bin/g++-12",
|
"path" : "/usr/bin/c++",
|
||||||
"version" : "12.1.0"
|
"version" : "12.2.0"
|
||||||
},
|
},
|
||||||
"language" : "CXX",
|
"language" : "CXX",
|
||||||
"sourceFileExtensions" :
|
"sourceFileExtensions" :
|
Binary file not shown.
|
@ -1,9 +1,48 @@
|
||||||
# ninja log v5
|
# ninja log v5
|
||||||
50 999 1673895013560650475 libraries/BLT/CMakeFiles/BLT.dir/src/blt/std/string.cpp.o cfdb4277170e1146
|
50 999 1673895013560650475 libraries/BLT/CMakeFiles/BLT.dir/src/blt/std/string.cpp.o cfdb4277170e1146
|
||||||
759 1538 1673895014100653697 libraries/BLT/CMakeFiles/BLT.dir/src/blt/std/system.cpp.o d11b576b8334e87e
|
19 736 1675834610673267689 libraries/glfw-3.3.8/src/CMakeFiles/glfw.dir/monitor.c.o 239e3c995f2fc57c
|
||||||
1000 1876 1673895014440655727 libraries/BLT/CMakeFiles/BLT.dir/src/blt/profiling/profiler.cpp.o c152c26bb81bca05
|
782 1432 1675834611369287536 libraries/BLT/CMakeFiles/BLT.dir/src/blt/std/system.cpp.o d9d07699ecf3c7f6
|
||||||
1876 1891 1673895014452655799 libraries/BLT/libBLT.a ec946156e9e7a43a
|
808 2228 1675834612165310231 libraries/BLT/CMakeFiles/BLT.dir/src/blt/profiling/profiler.cpp.o f6cc949795fe632a
|
||||||
|
18 556 1675834610493262558 CMakeFiles/FinalProject.dir/src/render/window.cpp.o aa0f847cb87c783c
|
||||||
|
19 685 1675834610617266094 libraries/glfw-3.3.8/src/CMakeFiles/glfw.dir/vulkan.c.o 7ac098ea2e755b71
|
||||||
|
19 781 1675834610717268945 libraries/glfw-3.3.8/src/CMakeFiles/glfw.dir/window.c.o a716fdf6afcb3ac2
|
||||||
|
19 807 1675834610745269744 libraries/glfw-3.3.8/src/CMakeFiles/glfw.dir/x11_init.c.o 7a310a4749a2e05
|
||||||
|
736 1701 1675834611637295177 libraries/BLT/CMakeFiles/BLT.dir/src/blt/std/format.cpp.o 342a5daa6ca9681d
|
||||||
|
18 706 1675834610629266436 libraries/glfw-3.3.8/src/CMakeFiles/glfw.dir/init.c.o 6051295f860fb367
|
||||||
|
2228 2298 1675834612225311941 libraries/BLT/libBLT.a dfd17a7e418724f
|
||||||
|
2299 2380 1675834612317314566 FinalProject 542cc2a74c29d7b
|
||||||
1 49 1673895012612644820 libraries/BLT/CMakeFiles/BLT.dir/src/blt/std/queues.cpp.o 55504c9533707c50
|
1 49 1673895012612644820 libraries/BLT/CMakeFiles/BLT.dir/src/blt/std/queues.cpp.o 55504c9533707c50
|
||||||
|
556 706 1675834610629266436 libraries/glfw-3.3.8/src/CMakeFiles/glfw.dir/posix_thread.c.o 1da38a427ecbe82e
|
||||||
|
758 1929 1675834611865301676 libraries/BLT/CMakeFiles/BLT.dir/src/blt/std/logging.cpp.o 13e8110c601a4029
|
||||||
|
677 879 1675834610785270884 libraries/glfw-3.3.8/src/CMakeFiles/glfw.dir/glx_context.c.o cc5282d2f93e112a
|
||||||
|
555 677 1675834610613265978 libraries/glfw-3.3.8/src/CMakeFiles/glfw.dir/xkb_unicode.c.o 86b8813c62a6792d
|
||||||
|
19 1031 1675834610965276015 libraries/glfw-3.3.8/src/CMakeFiles/glfw.dir/x11_window.c.o f99a7b64357948e7
|
||||||
|
1031 1883 1675834611809300081 libraries/glfw-3.3.8/src/libglfw3.a 4545fd6d0d1d5667
|
||||||
|
17 555 1675834610493262558 CMakeFiles/FinalProject.dir/src/main.cpp.o 460fff588e5870a1
|
||||||
1 1125 1673895013688651239 libraries/BLT/CMakeFiles/BLT.dir/src/blt/std/random.cpp.o 2e94f773455f509
|
1 1125 1673895013688651239 libraries/BLT/CMakeFiles/BLT.dir/src/blt/std/random.cpp.o 2e94f773455f509
|
||||||
0 750 1673895013312648995 CMakeFiles/Final_Project.dir/src/main.cpp.o 9a5c370b83c53956
|
18 830 1675834610765270314 libraries/glfw-3.3.8/src/CMakeFiles/glfw.dir/input.c.o cb7dfd07cdb7c2ab
|
||||||
1 106 1673895098129169170 Final_Project 13ba5588f68fabde
|
825 1269 1675834611193282518 libraries/BLT/CMakeFiles/BLT.dir/src/blt/nbt/nbt_block.cpp.o 18383112b14888b9
|
||||||
|
18 758 1675834610693268259 libraries/glfw-3.3.8/src/CMakeFiles/glfw.dir/context.c.o 67b8270a9d8c8b86
|
||||||
|
556 680 1675834610617266094 libraries/glfw-3.3.8/src/CMakeFiles/glfw.dir/posix_time.c.o d8774ad87358fe12
|
||||||
|
19 797 1675834610729269286 libraries/glfw-3.3.8/src/CMakeFiles/glfw.dir/x11_monitor.c.o 7b77fa660f2cb562
|
||||||
|
911 1024 1675172775513082023 Final_Project ac4f30c617bfa6fd
|
||||||
|
680 883 1675834610813271683 libraries/glfw-3.3.8/src/CMakeFiles/glfw.dir/egl_context.c.o e777fb0716cc9fd8
|
||||||
|
797 1622 1675834611561293008 libraries/BLT/CMakeFiles/BLT.dir/src/blt/nbt/nbt.cpp.o a93fa48842fb10a4
|
||||||
|
686 825 1675834610761270198 libraries/glfw-3.3.8/src/CMakeFiles/glfw.dir/osmesa_context.c.o c49ca4e889b3908b
|
||||||
|
706 1371 1675834611309285823 libraries/BLT/CMakeFiles/BLT.dir/src/blt/std/filesystem.cpp.o ac1bd7bf33d73c31
|
||||||
|
18 556 1675834610493262558 CMakeFiles/FinalProject.dir/src/render/gl.cpp.o d59ba6eec5836ace
|
||||||
|
706 883 1675834610809271567 libraries/glfw-3.3.8/src/CMakeFiles/glfw.dir/linux_joystick.c.o afc8940b6e7eeae1
|
||||||
|
2 198 1675835240411238529 CMakeFiles/FinalProject.dir/src/render/gl.cpp.o d59ba6eec5836ace
|
||||||
|
2 377 1675835240591243670 libraries/glfw-3.3.8/src/CMakeFiles/glfw.dir/window.c.o a716fdf6afcb3ac2
|
||||||
|
2 501 1675835240711247096 CMakeFiles/FinalProject.dir/src/render/window.cpp.o aa0f847cb87c783c
|
||||||
|
377 711 1675835240919253036 libraries/glfw-3.3.8/src/libglfw3.a 4545fd6d0d1d5667
|
||||||
|
711 826 1675835241035256349 FinalProject 542cc2a74c29d7b
|
||||||
|
1 20 1675835411244116925 CMakeFiles/FinalProject.dir/src/render/gl.cpp.o d59ba6eec5836ace
|
||||||
|
2 316 1675835411540125379 CMakeFiles/FinalProject.dir/src/render/window.cpp.o aa0f847cb87c783c
|
||||||
|
1 22 1675835443889049241 CMakeFiles/FinalProject.dir/src/render/gl.cpp.o d59ba6eec5836ace
|
||||||
|
0 20 1675835474281917262 CMakeFiles/FinalProject.dir/src/render/gl.cpp.o d59ba6eec5836ace
|
||||||
|
1 357 1675835474617926857 CMakeFiles/FinalProject.dir/src/render/window.cpp.o aa0f847cb87c783c
|
||||||
|
357 433 1675835474693929029 FinalProject 542cc2a74c29d7b
|
||||||
|
1 64 1675835496314546526 CMakeFiles/FinalProject.dir/src/render/gl.cpp.o d59ba6eec5836ace
|
||||||
|
1 285 1675835496534552809 CMakeFiles/FinalProject.dir/src/render/window.cpp.o aa0f847cb87c783c
|
||||||
|
285 360 1675835496610554980 FinalProject 542cc2a74c29d7b
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
# This is the CMakeCache file.
|
# This is the CMakeCache file.
|
||||||
# For build in directory: /home/laptop/Documents/Brock/CS 3P98/Final Project/cmake-build-debug
|
# For build in directory: /home/brett/Documents/Brock/CS 3P98/Final Project/cmake-build-debug
|
||||||
# It was generated by CMake: /home/laptop/Documents/clion/clion-2021.3.3/bin/cmake/linux/bin/cmake
|
# It was generated by CMake: /opt/netbrains/clion/clion-2022.1.3/bin/cmake/linux/bin/cmake
|
||||||
# You can edit this file to change values found and used by 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 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.
|
# If you do want to change a value, simply edit, save, and exit the editor.
|
||||||
|
@ -15,17 +15,23 @@
|
||||||
########################
|
########################
|
||||||
|
|
||||||
//Value Computed by CMake
|
//Value Computed by CMake
|
||||||
BLT_BINARY_DIR:STATIC=/home/laptop/Documents/Brock/CS 3P98/Final Project/cmake-build-debug/libraries/BLT
|
BLT_BINARY_DIR:STATIC=/home/brett/Documents/Brock/CS 3P98/Final Project/cmake-build-debug/libraries/BLT
|
||||||
|
|
||||||
//Value Computed by CMake
|
//Value Computed by CMake
|
||||||
BLT_IS_TOP_LEVEL:STATIC=OFF
|
BLT_IS_TOP_LEVEL:STATIC=OFF
|
||||||
|
|
||||||
//Value Computed by CMake
|
//Value Computed by CMake
|
||||||
BLT_SOURCE_DIR:STATIC=/home/laptop/Documents/Brock/CS 3P98/Final Project/libraries/BLT
|
BLT_SOURCE_DIR:STATIC=/home/brett/Documents/Brock/CS 3P98/Final Project/libraries/BLT
|
||||||
|
|
||||||
|
//Build the BLT NBT + eNBT extension
|
||||||
|
BUILD_NBT:BOOL=ON
|
||||||
|
|
||||||
//Build the BLT profiler extension
|
//Build the BLT profiler extension
|
||||||
BUILD_PROFILING:BOOL=ON
|
BUILD_PROFILING:BOOL=ON
|
||||||
|
|
||||||
|
//Build shared libraries
|
||||||
|
BUILD_SHARED_LIBS:BOOL=OFF
|
||||||
|
|
||||||
//Build the BLT standard utilities.
|
//Build the BLT standard utilities.
|
||||||
BUILD_STD:BOOL=ON
|
BUILD_STD:BOOL=ON
|
||||||
|
|
||||||
|
@ -45,8 +51,8 @@ CMAKE_BUILD_TYPE:STRING=Debug
|
||||||
//Enable colored diagnostics throughout.
|
//Enable colored diagnostics throughout.
|
||||||
CMAKE_COLOR_DIAGNOSTICS:BOOL=ON
|
CMAKE_COLOR_DIAGNOSTICS:BOOL=ON
|
||||||
|
|
||||||
//No help, variable specified on the command line.
|
//CXX compiler
|
||||||
CMAKE_CXX_COMPILER:UNINITIALIZED=/usr/bin/g++-12
|
CMAKE_CXX_COMPILER:FILEPATH=/usr/bin/c++
|
||||||
|
|
||||||
//A wrapper around 'ar' adding the appropriate '--plugin' option
|
//A wrapper around 'ar' adding the appropriate '--plugin' option
|
||||||
// for the GCC compiler
|
// for the GCC compiler
|
||||||
|
@ -71,8 +77,8 @@ CMAKE_CXX_FLAGS_RELEASE:STRING=-O3 -DNDEBUG
|
||||||
//Flags used by the CXX compiler during RELWITHDEBINFO builds.
|
//Flags used by the CXX compiler during RELWITHDEBINFO builds.
|
||||||
CMAKE_CXX_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG
|
CMAKE_CXX_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG
|
||||||
|
|
||||||
//No help, variable specified on the command line.
|
//C compiler
|
||||||
CMAKE_C_COMPILER:UNINITIALIZED=/usr/bin/gcc-12
|
CMAKE_C_COMPILER:FILEPATH=/usr/bin/cc
|
||||||
|
|
||||||
//A wrapper around 'ar' adding the appropriate '--plugin' option
|
//A wrapper around 'ar' adding the appropriate '--plugin' option
|
||||||
// for the GCC compiler
|
// for the GCC compiler
|
||||||
|
@ -119,16 +125,64 @@ CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO:STRING=
|
||||||
CMAKE_EXPORT_COMPILE_COMMANDS:BOOL=
|
CMAKE_EXPORT_COMPILE_COMMANDS:BOOL=
|
||||||
|
|
||||||
//Value Computed by CMake.
|
//Value Computed by CMake.
|
||||||
CMAKE_FIND_PACKAGE_REDIRECTS_DIR:STATIC=/home/laptop/Documents/Brock/CS 3P98/Final Project/cmake-build-debug/CMakeFiles/pkgRedirects
|
CMAKE_FIND_PACKAGE_REDIRECTS_DIR:STATIC=/home/brett/Documents/Brock/CS 3P98/Final Project/cmake-build-debug/CMakeFiles/pkgRedirects
|
||||||
|
|
||||||
|
//User executables (bin)
|
||||||
|
CMAKE_INSTALL_BINDIR:PATH=bin
|
||||||
|
|
||||||
|
//Read-only architecture-independent data (DATAROOTDIR)
|
||||||
|
CMAKE_INSTALL_DATADIR:PATH=
|
||||||
|
|
||||||
|
//Read-only architecture-independent data root (share)
|
||||||
|
CMAKE_INSTALL_DATAROOTDIR:PATH=share
|
||||||
|
|
||||||
|
//Documentation root (DATAROOTDIR/doc/PROJECT_NAME)
|
||||||
|
CMAKE_INSTALL_DOCDIR:PATH=
|
||||||
|
|
||||||
|
//C header files (include)
|
||||||
|
CMAKE_INSTALL_INCLUDEDIR:PATH=include
|
||||||
|
|
||||||
|
//Info documentation (DATAROOTDIR/info)
|
||||||
|
CMAKE_INSTALL_INFODIR:PATH=
|
||||||
|
|
||||||
|
//Object code libraries (lib)
|
||||||
|
CMAKE_INSTALL_LIBDIR:PATH=lib
|
||||||
|
|
||||||
|
//Program executables (libexec)
|
||||||
|
CMAKE_INSTALL_LIBEXECDIR:PATH=libexec
|
||||||
|
|
||||||
|
//Locale-dependent data (DATAROOTDIR/locale)
|
||||||
|
CMAKE_INSTALL_LOCALEDIR:PATH=
|
||||||
|
|
||||||
|
//Modifiable single-machine data (var)
|
||||||
|
CMAKE_INSTALL_LOCALSTATEDIR:PATH=var
|
||||||
|
|
||||||
|
//Man documentation (DATAROOTDIR/man)
|
||||||
|
CMAKE_INSTALL_MANDIR:PATH=
|
||||||
|
|
||||||
|
//C header files for non-gcc (/usr/include)
|
||||||
|
CMAKE_INSTALL_OLDINCLUDEDIR:PATH=/usr/include
|
||||||
|
|
||||||
//Install path prefix, prepended onto install directories.
|
//Install path prefix, prepended onto install directories.
|
||||||
CMAKE_INSTALL_PREFIX:PATH=/usr/local
|
CMAKE_INSTALL_PREFIX:PATH=/usr/local
|
||||||
|
|
||||||
|
//Run-time variable data (LOCALSTATEDIR/run)
|
||||||
|
CMAKE_INSTALL_RUNSTATEDIR:PATH=
|
||||||
|
|
||||||
|
//System admin executables (sbin)
|
||||||
|
CMAKE_INSTALL_SBINDIR:PATH=sbin
|
||||||
|
|
||||||
|
//Modifiable architecture-independent data (com)
|
||||||
|
CMAKE_INSTALL_SHAREDSTATEDIR:PATH=com
|
||||||
|
|
||||||
|
//Read-only single-machine data (etc)
|
||||||
|
CMAKE_INSTALL_SYSCONFDIR:PATH=etc
|
||||||
|
|
||||||
//Path to a program.
|
//Path to a program.
|
||||||
CMAKE_LINKER:FILEPATH=/usr/bin/ld
|
CMAKE_LINKER:FILEPATH=/usr/bin/ld
|
||||||
|
|
||||||
//No help, variable specified on the command line.
|
//No help, variable specified on the command line.
|
||||||
CMAKE_MAKE_PROGRAM:UNINITIALIZED=/home/laptop/Documents/clion/clion-2021.3.3/bin/ninja/linux/ninja
|
CMAKE_MAKE_PROGRAM:UNINITIALIZED=/opt/netbrains/clion/clion-2022.1.3/bin/ninja/linux/ninja
|
||||||
|
|
||||||
//Flags used by the linker during the creation of modules during
|
//Flags used by the linker during the creation of modules during
|
||||||
// all build types.
|
// all build types.
|
||||||
|
@ -166,7 +220,22 @@ CMAKE_PROJECT_DESCRIPTION:STATIC=
|
||||||
CMAKE_PROJECT_HOMEPAGE_URL:STATIC=
|
CMAKE_PROJECT_HOMEPAGE_URL:STATIC=
|
||||||
|
|
||||||
//Value Computed by CMake
|
//Value Computed by CMake
|
||||||
CMAKE_PROJECT_NAME:STATIC=Final_Project
|
CMAKE_PROJECT_NAME:STATIC=FinalProject
|
||||||
|
|
||||||
|
//Value Computed by CMake
|
||||||
|
CMAKE_PROJECT_VERSION:STATIC=0.3.2
|
||||||
|
|
||||||
|
//Value Computed by CMake
|
||||||
|
CMAKE_PROJECT_VERSION_MAJOR:STATIC=0
|
||||||
|
|
||||||
|
//Value Computed by CMake
|
||||||
|
CMAKE_PROJECT_VERSION_MINOR:STATIC=3
|
||||||
|
|
||||||
|
//Value Computed by CMake
|
||||||
|
CMAKE_PROJECT_VERSION_PATCH:STATIC=2
|
||||||
|
|
||||||
|
//Value Computed by CMake
|
||||||
|
CMAKE_PROJECT_VERSION_TWEAK:STATIC=
|
||||||
|
|
||||||
//Path to a program.
|
//Path to a program.
|
||||||
CMAKE_RANLIB:FILEPATH=/usr/bin/ranlib
|
CMAKE_RANLIB:FILEPATH=/usr/bin/ranlib
|
||||||
|
@ -230,41 +299,83 @@ CMAKE_STRIP:FILEPATH=/usr/bin/strip
|
||||||
// Studio IDE projects all commands are done without /nologo.
|
// Studio IDE projects all commands are done without /nologo.
|
||||||
CMAKE_VERBOSE_MAKEFILE:BOOL=FALSE
|
CMAKE_VERBOSE_MAKEFILE:BOOL=FALSE
|
||||||
|
|
||||||
|
//Doxygen documentation generation tool (http://www.doxygen.org)
|
||||||
|
DOXYGEN_EXECUTABLE:FILEPATH=DOXYGEN_EXECUTABLE-NOTFOUND
|
||||||
|
|
||||||
|
//Path to a file.
|
||||||
|
FREETYPE_INCLUDE_DIR_freetype2:PATH=/usr/include/freetype2
|
||||||
|
|
||||||
|
//Path to a file.
|
||||||
|
FREETYPE_INCLUDE_DIR_ft2build:PATH=/usr/include/freetype2
|
||||||
|
|
||||||
|
//Path to a library.
|
||||||
|
FREETYPE_LIBRARY_DEBUG:FILEPATH=FREETYPE_LIBRARY_DEBUG-NOTFOUND
|
||||||
|
|
||||||
|
//Path to a library.
|
||||||
|
FREETYPE_LIBRARY_RELEASE:FILEPATH=/usr/lib/x86_64-linux-gnu/libfreetype.so
|
||||||
|
|
||||||
//Value Computed by CMake
|
//Value Computed by CMake
|
||||||
Final_Project_BINARY_DIR:STATIC=/home/laptop/Documents/Brock/CS 3P98/Final Project/cmake-build-debug
|
FinalProject_BINARY_DIR:STATIC=/home/brett/Documents/Brock/CS 3P98/Final Project/cmake-build-debug
|
||||||
|
|
||||||
|
//Value Computed by CMake
|
||||||
|
FinalProject_IS_TOP_LEVEL:STATIC=ON
|
||||||
|
|
||||||
|
//Value Computed by CMake
|
||||||
|
FinalProject_SOURCE_DIR:STATIC=/home/brett/Documents/Brock/CS 3P98/Final Project
|
||||||
|
|
||||||
|
//Value Computed by CMake
|
||||||
|
Final_Project_BINARY_DIR:STATIC=/home/brett/Documents/Brock/CS 3P98/Final Project/cmake-build-debug
|
||||||
|
|
||||||
//Value Computed by CMake
|
//Value Computed by CMake
|
||||||
Final_Project_IS_TOP_LEVEL:STATIC=ON
|
Final_Project_IS_TOP_LEVEL:STATIC=ON
|
||||||
|
|
||||||
//Value Computed by CMake
|
//Value Computed by CMake
|
||||||
Final_Project_SOURCE_DIR:STATIC=/home/laptop/Documents/Brock/CS 3P98/Final Project
|
Final_Project_SOURCE_DIR:STATIC=/home/brett/Documents/Brock/CS 3P98/Final Project
|
||||||
|
|
||||||
//Path to a file.
|
//Path to a file.
|
||||||
FreeImageIO_INCLUDE:FILEPATH=FreeImageIO_INCLUDE-NOTFOUND
|
Fontconfig_INCLUDE_DIR:PATH=/usr/include
|
||||||
|
|
||||||
//The directory containing a CMake configuration file for FreeImage.
|
//Path to a library.
|
||||||
FreeImage_DIR:PATH=FreeImage_DIR-NOTFOUND
|
Fontconfig_LIBRARY:FILEPATH=/usr/lib/x86_64-linux-gnu/libfontconfig.so
|
||||||
|
|
||||||
//Path to a file.
|
//Path to a file.
|
||||||
FreeImage_INCLUDE:FILEPATH=/usr/include/FreeImage.h
|
FreeImage_INCLUDE:FILEPATH=FreeImage_INCLUDE-NOTFOUND
|
||||||
|
|
||||||
//Path to a library.
|
//Path to a library.
|
||||||
FreeImage_LIBRARIES:FILEPATH=/usr/lib/x86_64-linux-gnu/libfreeimage.so
|
FreeImage_LIBRARIES:FILEPATH=FreeImage_LIBRARIES-NOTFOUND
|
||||||
|
|
||||||
//The directory containing a CMake configuration file for GLUT::GLUT.
|
//Value Computed by CMake
|
||||||
"GLUT::GLUT_DIR":PATH=GLUT::GLUT_DIR-NOTFOUND
|
GLFW_BINARY_DIR:STATIC=/home/brett/Documents/Brock/CS 3P98/Final Project/cmake-build-debug/libraries/glfw-3.3.8
|
||||||
|
|
||||||
//Path to a file.
|
//Build the GLFW documentation
|
||||||
GLUT_INCLUDE_DIR:PATH=/usr/include
|
GLFW_BUILD_DOCS:BOOL=OFF
|
||||||
|
|
||||||
|
//Build the GLFW example programs
|
||||||
|
GLFW_BUILD_EXAMPLES:BOOL=OFF
|
||||||
|
|
||||||
|
//Build the GLFW test programs
|
||||||
|
GLFW_BUILD_TESTS:BOOL=OFF
|
||||||
|
|
||||||
|
//Generate installation target
|
||||||
|
GLFW_INSTALL:BOOL=ON
|
||||||
|
|
||||||
|
//Value Computed by CMake
|
||||||
|
GLFW_IS_TOP_LEVEL:STATIC=OFF
|
||||||
|
|
||||||
|
//Value Computed by CMake
|
||||||
|
GLFW_SOURCE_DIR:STATIC=/home/brett/Documents/Brock/CS 3P98/Final Project/libraries/glfw-3.3.8
|
||||||
|
|
||||||
|
//Use OSMesa for offscreen context creation
|
||||||
|
GLFW_USE_OSMESA:BOOL=OFF
|
||||||
|
|
||||||
|
//Use Wayland for window creation
|
||||||
|
GLFW_USE_WAYLAND:BOOL=OFF
|
||||||
|
|
||||||
|
//Assume the Vulkan loader is linked with the application
|
||||||
|
GLFW_VULKAN_STATIC:BOOL=OFF
|
||||||
|
|
||||||
//Path to a library.
|
//Path to a library.
|
||||||
GLUT_Xi_LIBRARY:FILEPATH=/usr/lib/x86_64-linux-gnu/libXi.so
|
MATH_LIBRARY:FILEPATH=/usr/lib/x86_64-linux-gnu/libm.so
|
||||||
|
|
||||||
//Path to a library.
|
|
||||||
GLUT_Xmu_LIBRARY:FILEPATH=GLUT_Xmu_LIBRARY-NOTFOUND
|
|
||||||
|
|
||||||
//Path to a library.
|
|
||||||
GLUT_glut_LIBRARY:FILEPATH=/usr/lib/x86_64-linux-gnu/libglut.so
|
|
||||||
|
|
||||||
//Arguments to supply to pkg-config
|
//Arguments to supply to pkg-config
|
||||||
PKG_CONFIG_ARGN:STRING=
|
PKG_CONFIG_ARGN:STRING=
|
||||||
|
@ -272,6 +383,282 @@ PKG_CONFIG_ARGN:STRING=
|
||||||
//pkg-config executable
|
//pkg-config executable
|
||||||
PKG_CONFIG_EXECUTABLE:FILEPATH=/usr/bin/pkg-config
|
PKG_CONFIG_EXECUTABLE:FILEPATH=/usr/bin/pkg-config
|
||||||
|
|
||||||
|
//Path to a library.
|
||||||
|
RT_LIBRARY:FILEPATH=/usr/lib/x86_64-linux-gnu/librt.a
|
||||||
|
|
||||||
|
//Use compile options consistent with emscriptem
|
||||||
|
USE_EMSCRIPTEM:BOOL=OFF
|
||||||
|
|
||||||
|
//Use the extra stuff I've added to this project! (Basically emscriptem)
|
||||||
|
USE_EXTRAS:BOOL=OFF
|
||||||
|
|
||||||
|
//Path to a file.
|
||||||
|
X11_ICE_INCLUDE_PATH:PATH=/usr/include
|
||||||
|
|
||||||
|
//Path to a library.
|
||||||
|
X11_ICE_LIB:FILEPATH=/usr/lib/x86_64-linux-gnu/libICE.so
|
||||||
|
|
||||||
|
//Path to a file.
|
||||||
|
X11_SM_INCLUDE_PATH:PATH=/usr/include
|
||||||
|
|
||||||
|
//Path to a library.
|
||||||
|
X11_SM_LIB:FILEPATH=/usr/lib/x86_64-linux-gnu/libSM.so
|
||||||
|
|
||||||
|
//Path to a file.
|
||||||
|
X11_X11_INCLUDE_PATH:PATH=/usr/include
|
||||||
|
|
||||||
|
//Path to a library.
|
||||||
|
X11_X11_LIB:FILEPATH=/usr/lib/x86_64-linux-gnu/libX11.so
|
||||||
|
|
||||||
|
//Path to a file.
|
||||||
|
X11_X11_xcb_INCLUDE_PATH:PATH=X11_X11_xcb_INCLUDE_PATH-NOTFOUND
|
||||||
|
|
||||||
|
//Path to a library.
|
||||||
|
X11_X11_xcb_LIB:FILEPATH=X11_X11_xcb_LIB-NOTFOUND
|
||||||
|
|
||||||
|
//Path to a file.
|
||||||
|
X11_XRes_INCLUDE_PATH:PATH=/usr/include
|
||||||
|
|
||||||
|
//Path to a library.
|
||||||
|
X11_XRes_LIB:FILEPATH=/usr/lib/x86_64-linux-gnu/libXRes.so
|
||||||
|
|
||||||
|
//Path to a file.
|
||||||
|
X11_XShm_INCLUDE_PATH:PATH=/usr/include
|
||||||
|
|
||||||
|
//Path to a file.
|
||||||
|
X11_XSync_INCLUDE_PATH:PATH=/usr/include
|
||||||
|
|
||||||
|
//Path to a file.
|
||||||
|
X11_Xaccessrules_INCLUDE_PATH:PATH=/usr/include
|
||||||
|
|
||||||
|
//Path to a file.
|
||||||
|
X11_Xaccessstr_INCLUDE_PATH:PATH=/usr/include
|
||||||
|
|
||||||
|
//Path to a file.
|
||||||
|
X11_Xau_INCLUDE_PATH:PATH=/usr/include
|
||||||
|
|
||||||
|
//Path to a library.
|
||||||
|
X11_Xau_LIB:FILEPATH=/usr/lib/x86_64-linux-gnu/libXau.so
|
||||||
|
|
||||||
|
//Path to a file.
|
||||||
|
X11_Xaw_INCLUDE_PATH:PATH=X11_Xaw_INCLUDE_PATH-NOTFOUND
|
||||||
|
|
||||||
|
//Path to a library.
|
||||||
|
X11_Xaw_LIB:FILEPATH=/usr/lib/x86_64-linux-gnu/libXaw.so
|
||||||
|
|
||||||
|
//Path to a file.
|
||||||
|
X11_Xcomposite_INCLUDE_PATH:PATH=/usr/include
|
||||||
|
|
||||||
|
//Path to a library.
|
||||||
|
X11_Xcomposite_LIB:FILEPATH=/usr/lib/x86_64-linux-gnu/libXcomposite.so
|
||||||
|
|
||||||
|
//Path to a file.
|
||||||
|
X11_Xcursor_INCLUDE_PATH:PATH=/usr/include
|
||||||
|
|
||||||
|
//Path to a library.
|
||||||
|
X11_Xcursor_LIB:FILEPATH=/usr/lib/x86_64-linux-gnu/libXcursor.so
|
||||||
|
|
||||||
|
//Path to a file.
|
||||||
|
X11_Xdamage_INCLUDE_PATH:PATH=/usr/include
|
||||||
|
|
||||||
|
//Path to a library.
|
||||||
|
X11_Xdamage_LIB:FILEPATH=/usr/lib/x86_64-linux-gnu/libXdamage.so
|
||||||
|
|
||||||
|
//Path to a file.
|
||||||
|
X11_Xdmcp_INCLUDE_PATH:PATH=/usr/include
|
||||||
|
|
||||||
|
//Path to a library.
|
||||||
|
X11_Xdmcp_LIB:FILEPATH=/usr/lib/x86_64-linux-gnu/libXdmcp.so
|
||||||
|
|
||||||
|
//Path to a file.
|
||||||
|
X11_Xext_INCLUDE_PATH:PATH=/usr/include
|
||||||
|
|
||||||
|
//Path to a library.
|
||||||
|
X11_Xext_LIB:FILEPATH=/usr/lib/x86_64-linux-gnu/libXext.so
|
||||||
|
|
||||||
|
//Path to a file.
|
||||||
|
X11_Xfixes_INCLUDE_PATH:PATH=/usr/include
|
||||||
|
|
||||||
|
//Path to a library.
|
||||||
|
X11_Xfixes_LIB:FILEPATH=/usr/lib/x86_64-linux-gnu/libXfixes.so
|
||||||
|
|
||||||
|
//Path to a file.
|
||||||
|
X11_Xft_INCLUDE_PATH:PATH=/usr/include
|
||||||
|
|
||||||
|
//Path to a library.
|
||||||
|
X11_Xft_LIB:FILEPATH=/usr/lib/x86_64-linux-gnu/libXft.so
|
||||||
|
|
||||||
|
//Path to a file.
|
||||||
|
X11_Xi_INCLUDE_PATH:PATH=/usr/include
|
||||||
|
|
||||||
|
//Path to a library.
|
||||||
|
X11_Xi_LIB:FILEPATH=/usr/lib/x86_64-linux-gnu/libXi.so
|
||||||
|
|
||||||
|
//Path to a file.
|
||||||
|
X11_Xinerama_INCLUDE_PATH:PATH=/usr/include
|
||||||
|
|
||||||
|
//Path to a library.
|
||||||
|
X11_Xinerama_LIB:FILEPATH=/usr/lib/x86_64-linux-gnu/libXinerama.so
|
||||||
|
|
||||||
|
//Path to a file.
|
||||||
|
X11_Xkb_INCLUDE_PATH:PATH=/usr/include
|
||||||
|
|
||||||
|
//Path to a file.
|
||||||
|
X11_Xkblib_INCLUDE_PATH:PATH=/usr/include
|
||||||
|
|
||||||
|
//Path to a file.
|
||||||
|
X11_Xlib_INCLUDE_PATH:PATH=/usr/include
|
||||||
|
|
||||||
|
//Path to a file.
|
||||||
|
X11_Xmu_INCLUDE_PATH:PATH=/usr/include
|
||||||
|
|
||||||
|
//Path to a library.
|
||||||
|
X11_Xmu_LIB:FILEPATH=/usr/lib/x86_64-linux-gnu/libXmu.so
|
||||||
|
|
||||||
|
//Path to a file.
|
||||||
|
X11_Xpm_INCLUDE_PATH:PATH=/usr/include
|
||||||
|
|
||||||
|
//Path to a library.
|
||||||
|
X11_Xpm_LIB:FILEPATH=/usr/lib/x86_64-linux-gnu/libXpm.so
|
||||||
|
|
||||||
|
//Path to a file.
|
||||||
|
X11_Xrandr_INCLUDE_PATH:PATH=/usr/include
|
||||||
|
|
||||||
|
//Path to a library.
|
||||||
|
X11_Xrandr_LIB:FILEPATH=/usr/lib/x86_64-linux-gnu/libXrandr.so
|
||||||
|
|
||||||
|
//Path to a file.
|
||||||
|
X11_Xrender_INCLUDE_PATH:PATH=/usr/include
|
||||||
|
|
||||||
|
//Path to a library.
|
||||||
|
X11_Xrender_LIB:FILEPATH=/usr/lib/x86_64-linux-gnu/libXrender.so
|
||||||
|
|
||||||
|
//Path to a file.
|
||||||
|
X11_Xshape_INCLUDE_PATH:PATH=/usr/include
|
||||||
|
|
||||||
|
//Path to a file.
|
||||||
|
X11_Xss_INCLUDE_PATH:PATH=/usr/include
|
||||||
|
|
||||||
|
//Path to a library.
|
||||||
|
X11_Xss_LIB:FILEPATH=/usr/lib/x86_64-linux-gnu/libXss.so
|
||||||
|
|
||||||
|
//Path to a file.
|
||||||
|
X11_Xt_INCLUDE_PATH:PATH=/usr/include
|
||||||
|
|
||||||
|
//Path to a library.
|
||||||
|
X11_Xt_LIB:FILEPATH=/usr/lib/x86_64-linux-gnu/libXt.so
|
||||||
|
|
||||||
|
//Path to a file.
|
||||||
|
X11_Xtst_INCLUDE_PATH:PATH=/usr/include
|
||||||
|
|
||||||
|
//Path to a library.
|
||||||
|
X11_Xtst_LIB:FILEPATH=/usr/lib/x86_64-linux-gnu/libXtst.so
|
||||||
|
|
||||||
|
//Path to a file.
|
||||||
|
X11_Xutil_INCLUDE_PATH:PATH=/usr/include
|
||||||
|
|
||||||
|
//Path to a file.
|
||||||
|
X11_Xv_INCLUDE_PATH:PATH=/usr/include
|
||||||
|
|
||||||
|
//Path to a library.
|
||||||
|
X11_Xv_LIB:FILEPATH=/usr/lib/x86_64-linux-gnu/libXv.so
|
||||||
|
|
||||||
|
//Path to a file.
|
||||||
|
X11_Xxf86misc_INCLUDE_PATH:PATH=X11_Xxf86misc_INCLUDE_PATH-NOTFOUND
|
||||||
|
|
||||||
|
//Path to a library.
|
||||||
|
X11_Xxf86misc_LIB:FILEPATH=X11_Xxf86misc_LIB-NOTFOUND
|
||||||
|
|
||||||
|
//Path to a file.
|
||||||
|
X11_Xxf86vm_INCLUDE_PATH:PATH=/usr/include
|
||||||
|
|
||||||
|
//Path to a library.
|
||||||
|
X11_Xxf86vm_LIB:FILEPATH=/usr/lib/x86_64-linux-gnu/libXxf86vm.so
|
||||||
|
|
||||||
|
//Path to a file.
|
||||||
|
X11_dpms_INCLUDE_PATH:PATH=/usr/include
|
||||||
|
|
||||||
|
//Path to a file.
|
||||||
|
X11_xcb_INCLUDE_PATH:PATH=/usr/include
|
||||||
|
|
||||||
|
//Path to a library.
|
||||||
|
X11_xcb_LIB:FILEPATH=/usr/lib/x86_64-linux-gnu/libxcb.so
|
||||||
|
|
||||||
|
//Path to a file.
|
||||||
|
X11_xcb_icccm_INCLUDE_PATH:PATH=X11_xcb_icccm_INCLUDE_PATH-NOTFOUND
|
||||||
|
|
||||||
|
//Path to a library.
|
||||||
|
X11_xcb_icccm_LIB:FILEPATH=X11_xcb_icccm_LIB-NOTFOUND
|
||||||
|
|
||||||
|
//Path to a file.
|
||||||
|
X11_xcb_keysyms_INCLUDE_PATH:PATH=X11_xcb_keysyms_INCLUDE_PATH-NOTFOUND
|
||||||
|
|
||||||
|
//Path to a library.
|
||||||
|
X11_xcb_keysyms_LIB:FILEPATH=X11_xcb_keysyms_LIB-NOTFOUND
|
||||||
|
|
||||||
|
//Path to a file.
|
||||||
|
X11_xcb_randr_INCLUDE_PATH:PATH=X11_xcb_randr_INCLUDE_PATH-NOTFOUND
|
||||||
|
|
||||||
|
//Path to a library.
|
||||||
|
X11_xcb_randr_LIB:FILEPATH=X11_xcb_randr_LIB-NOTFOUND
|
||||||
|
|
||||||
|
//Path to a file.
|
||||||
|
X11_xcb_util_INCLUDE_PATH:PATH=X11_xcb_util_INCLUDE_PATH-NOTFOUND
|
||||||
|
|
||||||
|
//Path to a library.
|
||||||
|
X11_xcb_util_LIB:FILEPATH=X11_xcb_util_LIB-NOTFOUND
|
||||||
|
|
||||||
|
//Path to a file.
|
||||||
|
X11_xcb_xfixes_INCLUDE_PATH:PATH=X11_xcb_xfixes_INCLUDE_PATH-NOTFOUND
|
||||||
|
|
||||||
|
//Path to a library.
|
||||||
|
X11_xcb_xfixes_LIB:FILEPATH=X11_xcb_xfixes_LIB-NOTFOUND
|
||||||
|
|
||||||
|
//Path to a library.
|
||||||
|
X11_xcb_xkb_LIB:FILEPATH=X11_xcb_xkb_LIB-NOTFOUND
|
||||||
|
|
||||||
|
//Path to a file.
|
||||||
|
X11_xcb_xtest_INCLUDE_PATH:PATH=X11_xcb_xtest_INCLUDE_PATH-NOTFOUND
|
||||||
|
|
||||||
|
//Path to a library.
|
||||||
|
X11_xcb_xtest_LIB:FILEPATH=X11_xcb_xtest_LIB-NOTFOUND
|
||||||
|
|
||||||
|
//Path to a file.
|
||||||
|
X11_xkbcommon_INCLUDE_PATH:PATH=/usr/include
|
||||||
|
|
||||||
|
//Path to a library.
|
||||||
|
X11_xkbcommon_LIB:FILEPATH=/usr/lib/x86_64-linux-gnu/libxkbcommon.so
|
||||||
|
|
||||||
|
//Path to a file.
|
||||||
|
X11_xkbcommon_X11_INCLUDE_PATH:PATH=X11_xkbcommon_X11_INCLUDE_PATH-NOTFOUND
|
||||||
|
|
||||||
|
//Path to a library.
|
||||||
|
X11_xkbcommon_X11_LIB:FILEPATH=X11_xkbcommon_X11_LIB-NOTFOUND
|
||||||
|
|
||||||
|
//Path to a file.
|
||||||
|
X11_xkbfile_INCLUDE_PATH:PATH=/usr/include
|
||||||
|
|
||||||
|
//Path to a library.
|
||||||
|
X11_xkbfile_LIB:FILEPATH=/usr/lib/x86_64-linux-gnu/libxkbfile.so
|
||||||
|
|
||||||
|
//Path to a file.
|
||||||
|
ZLIB_INCLUDE_DIR:PATH=/usr/include
|
||||||
|
|
||||||
|
//Path to a library.
|
||||||
|
ZLIB_LIBRARY_DEBUG:FILEPATH=ZLIB_LIBRARY_DEBUG-NOTFOUND
|
||||||
|
|
||||||
|
//Path to a library.
|
||||||
|
ZLIB_LIBRARY_RELEASE:FILEPATH=/usr/lib/x86_64-linux-gnu/libz.so
|
||||||
|
|
||||||
|
//Path to a library.
|
||||||
|
pkgcfg_lib_GLUT_glut:FILEPATH=/usr/lib/x86_64-linux-gnu/libglut.so
|
||||||
|
|
||||||
|
//Path to a library.
|
||||||
|
pkgcfg_lib_PKG_FONTCONFIG_fontconfig:FILEPATH=/usr/lib/x86_64-linux-gnu/libfontconfig.so
|
||||||
|
|
||||||
|
//Path to a library.
|
||||||
|
pkgcfg_lib_PKG_FONTCONFIG_freetype:FILEPATH=/usr/lib/x86_64-linux-gnu/libfreetype.so
|
||||||
|
|
||||||
|
|
||||||
########################
|
########################
|
||||||
# INTERNAL cache entries
|
# INTERNAL cache entries
|
||||||
|
@ -282,7 +669,7 @@ CMAKE_ADDR2LINE-ADVANCED:INTERNAL=1
|
||||||
//ADVANCED property for variable: CMAKE_AR
|
//ADVANCED property for variable: CMAKE_AR
|
||||||
CMAKE_AR-ADVANCED:INTERNAL=1
|
CMAKE_AR-ADVANCED:INTERNAL=1
|
||||||
//This is the directory where this CMakeCache.txt was created
|
//This is the directory where this CMakeCache.txt was created
|
||||||
CMAKE_CACHEFILE_DIR:INTERNAL=/home/laptop/Documents/Brock/CS 3P98/Final Project/cmake-build-debug
|
CMAKE_CACHEFILE_DIR:INTERNAL=/home/brett/Documents/Brock/CS 3P98/Final Project/cmake-build-debug
|
||||||
//Major version of cmake used to create the current loaded cache
|
//Major version of cmake used to create the current loaded cache
|
||||||
CMAKE_CACHE_MAJOR_VERSION:INTERNAL=3
|
CMAKE_CACHE_MAJOR_VERSION:INTERNAL=3
|
||||||
//Minor version of cmake used to create the current loaded cache
|
//Minor version of cmake used to create the current loaded cache
|
||||||
|
@ -290,11 +677,11 @@ CMAKE_CACHE_MINOR_VERSION:INTERNAL=24
|
||||||
//Patch version of cmake used to create the current loaded cache
|
//Patch version of cmake used to create the current loaded cache
|
||||||
CMAKE_CACHE_PATCH_VERSION:INTERNAL=2
|
CMAKE_CACHE_PATCH_VERSION:INTERNAL=2
|
||||||
//Path to CMake executable.
|
//Path to CMake executable.
|
||||||
CMAKE_COMMAND:INTERNAL=/home/laptop/Documents/clion/clion-2021.3.3/bin/cmake/linux/bin/cmake
|
CMAKE_COMMAND:INTERNAL=/opt/netbrains/clion/clion-2022.1.3/bin/cmake/linux/bin/cmake
|
||||||
//Path to cpack program executable.
|
//Path to cpack program executable.
|
||||||
CMAKE_CPACK_COMMAND:INTERNAL=/home/laptop/Documents/clion/clion-2021.3.3/bin/cmake/linux/bin/cpack
|
CMAKE_CPACK_COMMAND:INTERNAL=/opt/netbrains/clion/clion-2022.1.3/bin/cmake/linux/bin/cpack
|
||||||
//Path to ctest program executable.
|
//Path to ctest program executable.
|
||||||
CMAKE_CTEST_COMMAND:INTERNAL=/home/laptop/Documents/clion/clion-2021.3.3/bin/cmake/linux/bin/ctest
|
CMAKE_CTEST_COMMAND:INTERNAL=/opt/netbrains/clion/clion-2022.1.3/bin/cmake/linux/bin/ctest
|
||||||
//ADVANCED property for variable: CMAKE_CXX_COMPILER
|
//ADVANCED property for variable: CMAKE_CXX_COMPILER
|
||||||
CMAKE_CXX_COMPILER-ADVANCED:INTERNAL=1
|
CMAKE_CXX_COMPILER-ADVANCED:INTERNAL=1
|
||||||
//ADVANCED property for variable: CMAKE_CXX_COMPILER_AR
|
//ADVANCED property for variable: CMAKE_CXX_COMPILER_AR
|
||||||
|
@ -353,11 +740,55 @@ CMAKE_GENERATOR_INSTANCE:INTERNAL=
|
||||||
CMAKE_GENERATOR_PLATFORM:INTERNAL=
|
CMAKE_GENERATOR_PLATFORM:INTERNAL=
|
||||||
//Name of generator toolset.
|
//Name of generator toolset.
|
||||||
CMAKE_GENERATOR_TOOLSET:INTERNAL=
|
CMAKE_GENERATOR_TOOLSET:INTERNAL=
|
||||||
|
//Have function connect
|
||||||
|
CMAKE_HAVE_CONNECT:INTERNAL=1
|
||||||
|
//Have function gethostbyname
|
||||||
|
CMAKE_HAVE_GETHOSTBYNAME:INTERNAL=1
|
||||||
|
//Test CMAKE_HAVE_LIBC_PTHREAD
|
||||||
|
CMAKE_HAVE_LIBC_PTHREAD:INTERNAL=1
|
||||||
|
//Have function remove
|
||||||
|
CMAKE_HAVE_REMOVE:INTERNAL=1
|
||||||
|
//Have function shmat
|
||||||
|
CMAKE_HAVE_SHMAT:INTERNAL=1
|
||||||
//Source directory with the top level CMakeLists.txt file for this
|
//Source directory with the top level CMakeLists.txt file for this
|
||||||
// project
|
// project
|
||||||
CMAKE_HOME_DIRECTORY:INTERNAL=/home/laptop/Documents/Brock/CS 3P98/Final Project
|
CMAKE_HOME_DIRECTORY:INTERNAL=/home/brett/Documents/Brock/CS 3P98/Final Project
|
||||||
|
//ADVANCED property for variable: CMAKE_INSTALL_BINDIR
|
||||||
|
CMAKE_INSTALL_BINDIR-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_INSTALL_DATADIR
|
||||||
|
CMAKE_INSTALL_DATADIR-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_INSTALL_DATAROOTDIR
|
||||||
|
CMAKE_INSTALL_DATAROOTDIR-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_INSTALL_DOCDIR
|
||||||
|
CMAKE_INSTALL_DOCDIR-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_INSTALL_INCLUDEDIR
|
||||||
|
CMAKE_INSTALL_INCLUDEDIR-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_INSTALL_INFODIR
|
||||||
|
CMAKE_INSTALL_INFODIR-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_INSTALL_LIBDIR
|
||||||
|
CMAKE_INSTALL_LIBDIR-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_INSTALL_LIBEXECDIR
|
||||||
|
CMAKE_INSTALL_LIBEXECDIR-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_INSTALL_LOCALEDIR
|
||||||
|
CMAKE_INSTALL_LOCALEDIR-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_INSTALL_LOCALSTATEDIR
|
||||||
|
CMAKE_INSTALL_LOCALSTATEDIR-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_INSTALL_MANDIR
|
||||||
|
CMAKE_INSTALL_MANDIR-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_INSTALL_OLDINCLUDEDIR
|
||||||
|
CMAKE_INSTALL_OLDINCLUDEDIR-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_INSTALL_RUNSTATEDIR
|
||||||
|
CMAKE_INSTALL_RUNSTATEDIR-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_INSTALL_SBINDIR
|
||||||
|
CMAKE_INSTALL_SBINDIR-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_INSTALL_SHAREDSTATEDIR
|
||||||
|
CMAKE_INSTALL_SHAREDSTATEDIR-ADVANCED:INTERNAL=1
|
||||||
//Install .so files without execute permission.
|
//Install .so files without execute permission.
|
||||||
CMAKE_INSTALL_SO_NO_EXE:INTERNAL=1
|
CMAKE_INSTALL_SO_NO_EXE:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_INSTALL_SYSCONFDIR
|
||||||
|
CMAKE_INSTALL_SYSCONFDIR-ADVANCED:INTERNAL=1
|
||||||
|
//Have library ICE
|
||||||
|
CMAKE_LIB_ICE_HAS_ICECONNECTIONNUMBER:INTERNAL=1
|
||||||
//ADVANCED property for variable: CMAKE_LINKER
|
//ADVANCED property for variable: CMAKE_LINKER
|
||||||
CMAKE_LINKER-ADVANCED:INTERNAL=1
|
CMAKE_LINKER-ADVANCED:INTERNAL=1
|
||||||
//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS
|
//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS
|
||||||
|
@ -373,7 +804,7 @@ CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
|
||||||
//ADVANCED property for variable: CMAKE_NM
|
//ADVANCED property for variable: CMAKE_NM
|
||||||
CMAKE_NM-ADVANCED:INTERNAL=1
|
CMAKE_NM-ADVANCED:INTERNAL=1
|
||||||
//number of local generators
|
//number of local generators
|
||||||
CMAKE_NUMBER_OF_MAKEFILES:INTERNAL=2
|
CMAKE_NUMBER_OF_MAKEFILES:INTERNAL=4
|
||||||
//ADVANCED property for variable: CMAKE_OBJCOPY
|
//ADVANCED property for variable: CMAKE_OBJCOPY
|
||||||
CMAKE_OBJCOPY-ADVANCED:INTERNAL=1
|
CMAKE_OBJCOPY-ADVANCED:INTERNAL=1
|
||||||
//ADVANCED property for variable: CMAKE_OBJDUMP
|
//ADVANCED property for variable: CMAKE_OBJDUMP
|
||||||
|
@ -385,7 +816,7 @@ CMAKE_RANLIB-ADVANCED:INTERNAL=1
|
||||||
//ADVANCED property for variable: CMAKE_READELF
|
//ADVANCED property for variable: CMAKE_READELF
|
||||||
CMAKE_READELF-ADVANCED:INTERNAL=1
|
CMAKE_READELF-ADVANCED:INTERNAL=1
|
||||||
//Path to CMake installation.
|
//Path to CMake installation.
|
||||||
CMAKE_ROOT:INTERNAL=/home/laptop/Documents/clion/clion-2021.3.3/bin/cmake/linux/share/cmake-3.24
|
CMAKE_ROOT:INTERNAL=/opt/netbrains/clion/clion-2022.1.3/bin/cmake/linux/share/cmake-3.24
|
||||||
//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS
|
//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS
|
||||||
CMAKE_SHARED_LINKER_FLAGS-ADVANCED:INTERNAL=1
|
CMAKE_SHARED_LINKER_FLAGS-ADVANCED:INTERNAL=1
|
||||||
//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_DEBUG
|
//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_DEBUG
|
||||||
|
@ -416,50 +847,291 @@ CMAKE_STRIP-ADVANCED:INTERNAL=1
|
||||||
CMAKE_UNAME:INTERNAL=/usr/bin/uname
|
CMAKE_UNAME:INTERNAL=/usr/bin/uname
|
||||||
//ADVANCED property for variable: CMAKE_VERBOSE_MAKEFILE
|
//ADVANCED property for variable: CMAKE_VERBOSE_MAKEFILE
|
||||||
CMAKE_VERBOSE_MAKEFILE-ADVANCED:INTERNAL=1
|
CMAKE_VERBOSE_MAKEFILE-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: DOXYGEN_EXECUTABLE
|
||||||
|
DOXYGEN_EXECUTABLE-ADVANCED:INTERNAL=1
|
||||||
//Details about finding GLUT
|
//Details about finding GLUT
|
||||||
FIND_PACKAGE_MESSAGE_DETAILS_GLUT:INTERNAL=[/usr/lib/x86_64-linux-gnu/libglut.so][/usr/include][v()]
|
FIND_PACKAGE_MESSAGE_DETAILS_GLUT:INTERNAL=[1][v()]
|
||||||
GLUT_CFLAGS:INTERNAL=
|
//Details about finding Threads
|
||||||
|
FIND_PACKAGE_MESSAGE_DETAILS_Threads:INTERNAL=[TRUE][v()]
|
||||||
|
//Details about finding X11
|
||||||
|
FIND_PACKAGE_MESSAGE_DETAILS_X11:INTERNAL=[/usr/include][/usr/lib/x86_64-linux-gnu/libX11.so][c ][v()]
|
||||||
|
//ADVANCED property for variable: FREETYPE_INCLUDE_DIR_freetype2
|
||||||
|
FREETYPE_INCLUDE_DIR_freetype2-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: FREETYPE_INCLUDE_DIR_ft2build
|
||||||
|
FREETYPE_INCLUDE_DIR_ft2build-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: FREETYPE_LIBRARY_DEBUG
|
||||||
|
FREETYPE_LIBRARY_DEBUG-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: FREETYPE_LIBRARY_RELEASE
|
||||||
|
FREETYPE_LIBRARY_RELEASE-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: Fontconfig_INCLUDE_DIR
|
||||||
|
Fontconfig_INCLUDE_DIR-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: Fontconfig_LIBRARY
|
||||||
|
Fontconfig_LIBRARY-ADVANCED:INTERNAL=1
|
||||||
|
GLUT_CFLAGS:INTERNAL=-I/usr/include;-DFREEGLUT_STATIC
|
||||||
GLUT_CFLAGS_I:INTERNAL=
|
GLUT_CFLAGS_I:INTERNAL=
|
||||||
GLUT_CFLAGS_OTHER:INTERNAL=
|
GLUT_CFLAGS_OTHER:INTERNAL=-DFREEGLUT_STATIC
|
||||||
GLUT_FOUND:INTERNAL=
|
GLUT_FOUND:INTERNAL=1
|
||||||
GLUT_INCLUDEDIR:INTERNAL=
|
GLUT_INCLUDEDIR:INTERNAL=/usr/include
|
||||||
//ADVANCED property for variable: GLUT_INCLUDE_DIR
|
GLUT_INCLUDE_DIRS:INTERNAL=/usr/include
|
||||||
GLUT_INCLUDE_DIR-ADVANCED:INTERNAL=1
|
GLUT_LDFLAGS:INTERNAL=-L/usr/lib/x86_64-linux-gnu;-lglut
|
||||||
GLUT_LIBDIR:INTERNAL=
|
GLUT_LDFLAGS_OTHER:INTERNAL=
|
||||||
|
GLUT_LIBDIR:INTERNAL=/usr/lib/x86_64-linux-gnu
|
||||||
|
GLUT_LIBRARIES:INTERNAL=glut
|
||||||
|
GLUT_LIBRARY_DIRS:INTERNAL=/usr/lib/x86_64-linux-gnu
|
||||||
GLUT_LIBS:INTERNAL=
|
GLUT_LIBS:INTERNAL=
|
||||||
GLUT_LIBS_L:INTERNAL=
|
GLUT_LIBS_L:INTERNAL=
|
||||||
GLUT_LIBS_OTHER:INTERNAL=
|
GLUT_LIBS_OTHER:INTERNAL=
|
||||||
GLUT_LIBS_PATHS:INTERNAL=
|
GLUT_LIBS_PATHS:INTERNAL=
|
||||||
GLUT_MODULE_NAME:INTERNAL=
|
GLUT_MODULE_NAME:INTERNAL=glut
|
||||||
GLUT_PREFIX:INTERNAL=
|
GLUT_PREFIX:INTERNAL=/usr
|
||||||
GLUT_STATIC_CFLAGS:INTERNAL=
|
GLUT_STATIC_CFLAGS:INTERNAL=-I/usr/include;-DFREEGLUT_STATIC
|
||||||
GLUT_STATIC_CFLAGS_I:INTERNAL=
|
GLUT_STATIC_CFLAGS_I:INTERNAL=
|
||||||
GLUT_STATIC_CFLAGS_OTHER:INTERNAL=
|
GLUT_STATIC_CFLAGS_OTHER:INTERNAL=-DFREEGLUT_STATIC
|
||||||
|
GLUT_STATIC_INCLUDE_DIRS:INTERNAL=/usr/include
|
||||||
|
GLUT_STATIC_LDFLAGS:INTERNAL=-L/usr/lib/x86_64-linux-gnu;-lglut;-lX11;-lXxf86vm;-lXrandr;-lGL;-lm
|
||||||
|
GLUT_STATIC_LDFLAGS_OTHER:INTERNAL=
|
||||||
GLUT_STATIC_LIBDIR:INTERNAL=
|
GLUT_STATIC_LIBDIR:INTERNAL=
|
||||||
|
GLUT_STATIC_LIBRARIES:INTERNAL=glut;X11;Xxf86vm;Xrandr;GL;m
|
||||||
|
GLUT_STATIC_LIBRARY_DIRS:INTERNAL=/usr/lib/x86_64-linux-gnu
|
||||||
GLUT_STATIC_LIBS:INTERNAL=
|
GLUT_STATIC_LIBS:INTERNAL=
|
||||||
GLUT_STATIC_LIBS_L:INTERNAL=
|
GLUT_STATIC_LIBS_L:INTERNAL=
|
||||||
GLUT_STATIC_LIBS_OTHER:INTERNAL=
|
GLUT_STATIC_LIBS_OTHER:INTERNAL=
|
||||||
GLUT_STATIC_LIBS_PATHS:INTERNAL=
|
GLUT_STATIC_LIBS_PATHS:INTERNAL=
|
||||||
GLUT_VERSION:INTERNAL=
|
GLUT_VERSION:INTERNAL=3.4.0
|
||||||
//ADVANCED property for variable: GLUT_Xi_LIBRARY
|
|
||||||
GLUT_Xi_LIBRARY-ADVANCED:INTERNAL=1
|
|
||||||
//ADVANCED property for variable: GLUT_Xmu_LIBRARY
|
|
||||||
GLUT_Xmu_LIBRARY-ADVANCED:INTERNAL=1
|
|
||||||
GLUT_freeglut_INCLUDEDIR:INTERNAL=
|
|
||||||
GLUT_freeglut_LIBDIR:INTERNAL=
|
|
||||||
GLUT_freeglut_PREFIX:INTERNAL=
|
|
||||||
GLUT_freeglut_VERSION:INTERNAL=
|
|
||||||
GLUT_glut_INCLUDEDIR:INTERNAL=
|
GLUT_glut_INCLUDEDIR:INTERNAL=
|
||||||
GLUT_glut_LIBDIR:INTERNAL=
|
GLUT_glut_LIBDIR:INTERNAL=
|
||||||
//ADVANCED property for variable: GLUT_glut_LIBRARY
|
|
||||||
GLUT_glut_LIBRARY-ADVANCED:INTERNAL=1
|
|
||||||
GLUT_glut_PREFIX:INTERNAL=
|
GLUT_glut_PREFIX:INTERNAL=
|
||||||
GLUT_glut_VERSION:INTERNAL=
|
GLUT_glut_VERSION:INTERNAL=
|
||||||
|
//ADVANCED property for variable: MATH_LIBRARY
|
||||||
|
MATH_LIBRARY-ADVANCED:INTERNAL=1
|
||||||
//ADVANCED property for variable: PKG_CONFIG_ARGN
|
//ADVANCED property for variable: PKG_CONFIG_ARGN
|
||||||
PKG_CONFIG_ARGN-ADVANCED:INTERNAL=1
|
PKG_CONFIG_ARGN-ADVANCED:INTERNAL=1
|
||||||
//ADVANCED property for variable: PKG_CONFIG_EXECUTABLE
|
//ADVANCED property for variable: PKG_CONFIG_EXECUTABLE
|
||||||
PKG_CONFIG_EXECUTABLE-ADVANCED:INTERNAL=1
|
PKG_CONFIG_EXECUTABLE-ADVANCED:INTERNAL=1
|
||||||
|
PKG_FONTCONFIG_CFLAGS:INTERNAL=-I/usr/include/freetype2;-I/usr/include/libpng16
|
||||||
|
PKG_FONTCONFIG_CFLAGS_I:INTERNAL=
|
||||||
|
PKG_FONTCONFIG_CFLAGS_OTHER:INTERNAL=
|
||||||
|
PKG_FONTCONFIG_FOUND:INTERNAL=1
|
||||||
|
PKG_FONTCONFIG_INCLUDEDIR:INTERNAL=/usr/include
|
||||||
|
PKG_FONTCONFIG_INCLUDE_DIRS:INTERNAL=/usr/include/freetype2;/usr/include/libpng16
|
||||||
|
PKG_FONTCONFIG_LDFLAGS:INTERNAL=-L/usr/lib/x86_64-linux-gnu;-lfontconfig;-lfreetype
|
||||||
|
PKG_FONTCONFIG_LDFLAGS_OTHER:INTERNAL=
|
||||||
|
PKG_FONTCONFIG_LIBDIR:INTERNAL=/usr/lib/x86_64-linux-gnu
|
||||||
|
PKG_FONTCONFIG_LIBRARIES:INTERNAL=fontconfig;freetype
|
||||||
|
PKG_FONTCONFIG_LIBRARY_DIRS:INTERNAL=/usr/lib/x86_64-linux-gnu
|
||||||
|
PKG_FONTCONFIG_LIBS:INTERNAL=
|
||||||
|
PKG_FONTCONFIG_LIBS_L:INTERNAL=
|
||||||
|
PKG_FONTCONFIG_LIBS_OTHER:INTERNAL=
|
||||||
|
PKG_FONTCONFIG_LIBS_PATHS:INTERNAL=
|
||||||
|
PKG_FONTCONFIG_MODULE_NAME:INTERNAL=fontconfig
|
||||||
|
PKG_FONTCONFIG_PREFIX:INTERNAL=/usr
|
||||||
|
PKG_FONTCONFIG_STATIC_CFLAGS:INTERNAL=-I/usr/include/freetype2;-I/usr/include/libpng16
|
||||||
|
PKG_FONTCONFIG_STATIC_CFLAGS_I:INTERNAL=
|
||||||
|
PKG_FONTCONFIG_STATIC_CFLAGS_OTHER:INTERNAL=
|
||||||
|
PKG_FONTCONFIG_STATIC_INCLUDE_DIRS:INTERNAL=/usr/include/freetype2;/usr/include/libpng16
|
||||||
|
PKG_FONTCONFIG_STATIC_LDFLAGS:INTERNAL=-L/usr/lib/x86_64-linux-gnu;-lfontconfig;-lfreetype;-L/usr/lib/x86_64-linux-gnu;-L/usr/lib/x86_64-linux-gnu;-lz;-lpng16;-lm;-lz;-lm;-L/usr/lib/x86_64-linux-gnu;-L/usr/lib/x86_64-linux-gnu;-lz;-lbrotlidec;-L/usr/lib/x86_64-linux-gnu;-lbrotlicommon;-L/usr/lib/x86_64-linux-gnu;-lexpat;-lm
|
||||||
|
PKG_FONTCONFIG_STATIC_LDFLAGS_OTHER:INTERNAL=
|
||||||
|
PKG_FONTCONFIG_STATIC_LIBDIR:INTERNAL=
|
||||||
|
PKG_FONTCONFIG_STATIC_LIBRARIES:INTERNAL=fontconfig;freetype;z;png16;m;z;m;z;brotlidec;brotlicommon;expat;m
|
||||||
|
PKG_FONTCONFIG_STATIC_LIBRARY_DIRS:INTERNAL=/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu;/usr/lib/x86_64-linux-gnu
|
||||||
|
PKG_FONTCONFIG_STATIC_LIBS:INTERNAL=
|
||||||
|
PKG_FONTCONFIG_STATIC_LIBS_L:INTERNAL=
|
||||||
|
PKG_FONTCONFIG_STATIC_LIBS_OTHER:INTERNAL=
|
||||||
|
PKG_FONTCONFIG_STATIC_LIBS_PATHS:INTERNAL=
|
||||||
|
PKG_FONTCONFIG_VERSION:INTERNAL=2.14.1
|
||||||
|
PKG_FONTCONFIG_fontconfig_INCLUDEDIR:INTERNAL=
|
||||||
|
PKG_FONTCONFIG_fontconfig_LIBDIR:INTERNAL=
|
||||||
|
PKG_FONTCONFIG_fontconfig_PREFIX:INTERNAL=
|
||||||
|
PKG_FONTCONFIG_fontconfig_VERSION:INTERNAL=
|
||||||
|
//ADVANCED property for variable: RT_LIBRARY
|
||||||
|
RT_LIBRARY-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_ICE_INCLUDE_PATH
|
||||||
|
X11_ICE_INCLUDE_PATH-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_ICE_LIB
|
||||||
|
X11_ICE_LIB-ADVANCED:INTERNAL=1
|
||||||
|
//Have library /usr/lib/x86_64-linux-gnu/libX11.so;/usr/lib/x86_64-linux-gnu/libXext.so
|
||||||
|
X11_LIB_X11_SOLO:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_SM_INCLUDE_PATH
|
||||||
|
X11_SM_INCLUDE_PATH-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_SM_LIB
|
||||||
|
X11_SM_LIB-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_X11_INCLUDE_PATH
|
||||||
|
X11_X11_INCLUDE_PATH-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_X11_LIB
|
||||||
|
X11_X11_LIB-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_X11_xcb_INCLUDE_PATH
|
||||||
|
X11_X11_xcb_INCLUDE_PATH-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_X11_xcb_LIB
|
||||||
|
X11_X11_xcb_LIB-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_XRes_INCLUDE_PATH
|
||||||
|
X11_XRes_INCLUDE_PATH-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_XRes_LIB
|
||||||
|
X11_XRes_LIB-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_XShm_INCLUDE_PATH
|
||||||
|
X11_XShm_INCLUDE_PATH-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_XSync_INCLUDE_PATH
|
||||||
|
X11_XSync_INCLUDE_PATH-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_Xaccessrules_INCLUDE_PATH
|
||||||
|
X11_Xaccessrules_INCLUDE_PATH-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_Xaccessstr_INCLUDE_PATH
|
||||||
|
X11_Xaccessstr_INCLUDE_PATH-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_Xau_INCLUDE_PATH
|
||||||
|
X11_Xau_INCLUDE_PATH-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_Xau_LIB
|
||||||
|
X11_Xau_LIB-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_Xaw_INCLUDE_PATH
|
||||||
|
X11_Xaw_INCLUDE_PATH-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_Xaw_LIB
|
||||||
|
X11_Xaw_LIB-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_Xcomposite_INCLUDE_PATH
|
||||||
|
X11_Xcomposite_INCLUDE_PATH-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_Xcomposite_LIB
|
||||||
|
X11_Xcomposite_LIB-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_Xcursor_INCLUDE_PATH
|
||||||
|
X11_Xcursor_INCLUDE_PATH-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_Xcursor_LIB
|
||||||
|
X11_Xcursor_LIB-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_Xdamage_INCLUDE_PATH
|
||||||
|
X11_Xdamage_INCLUDE_PATH-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_Xdamage_LIB
|
||||||
|
X11_Xdamage_LIB-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_Xdmcp_INCLUDE_PATH
|
||||||
|
X11_Xdmcp_INCLUDE_PATH-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_Xdmcp_LIB
|
||||||
|
X11_Xdmcp_LIB-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_Xext_INCLUDE_PATH
|
||||||
|
X11_Xext_INCLUDE_PATH-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_Xext_LIB
|
||||||
|
X11_Xext_LIB-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_Xfixes_INCLUDE_PATH
|
||||||
|
X11_Xfixes_INCLUDE_PATH-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_Xfixes_LIB
|
||||||
|
X11_Xfixes_LIB-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_Xft_INCLUDE_PATH
|
||||||
|
X11_Xft_INCLUDE_PATH-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_Xft_LIB
|
||||||
|
X11_Xft_LIB-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_Xi_INCLUDE_PATH
|
||||||
|
X11_Xi_INCLUDE_PATH-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_Xi_LIB
|
||||||
|
X11_Xi_LIB-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_Xinerama_INCLUDE_PATH
|
||||||
|
X11_Xinerama_INCLUDE_PATH-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_Xinerama_LIB
|
||||||
|
X11_Xinerama_LIB-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_Xkb_INCLUDE_PATH
|
||||||
|
X11_Xkb_INCLUDE_PATH-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_Xkblib_INCLUDE_PATH
|
||||||
|
X11_Xkblib_INCLUDE_PATH-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_Xlib_INCLUDE_PATH
|
||||||
|
X11_Xlib_INCLUDE_PATH-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_Xmu_INCLUDE_PATH
|
||||||
|
X11_Xmu_INCLUDE_PATH-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_Xmu_LIB
|
||||||
|
X11_Xmu_LIB-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_Xpm_INCLUDE_PATH
|
||||||
|
X11_Xpm_INCLUDE_PATH-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_Xpm_LIB
|
||||||
|
X11_Xpm_LIB-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_Xrandr_INCLUDE_PATH
|
||||||
|
X11_Xrandr_INCLUDE_PATH-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_Xrandr_LIB
|
||||||
|
X11_Xrandr_LIB-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_Xrender_INCLUDE_PATH
|
||||||
|
X11_Xrender_INCLUDE_PATH-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_Xrender_LIB
|
||||||
|
X11_Xrender_LIB-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_Xshape_INCLUDE_PATH
|
||||||
|
X11_Xshape_INCLUDE_PATH-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_Xss_INCLUDE_PATH
|
||||||
|
X11_Xss_INCLUDE_PATH-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_Xss_LIB
|
||||||
|
X11_Xss_LIB-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_Xt_INCLUDE_PATH
|
||||||
|
X11_Xt_INCLUDE_PATH-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_Xt_LIB
|
||||||
|
X11_Xt_LIB-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_Xtst_INCLUDE_PATH
|
||||||
|
X11_Xtst_INCLUDE_PATH-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_Xtst_LIB
|
||||||
|
X11_Xtst_LIB-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_Xutil_INCLUDE_PATH
|
||||||
|
X11_Xutil_INCLUDE_PATH-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_Xv_INCLUDE_PATH
|
||||||
|
X11_Xv_INCLUDE_PATH-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_Xv_LIB
|
||||||
|
X11_Xv_LIB-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_Xxf86misc_INCLUDE_PATH
|
||||||
|
X11_Xxf86misc_INCLUDE_PATH-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_Xxf86misc_LIB
|
||||||
|
X11_Xxf86misc_LIB-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_Xxf86vm_INCLUDE_PATH
|
||||||
|
X11_Xxf86vm_INCLUDE_PATH-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_Xxf86vm_LIB
|
||||||
|
X11_Xxf86vm_LIB-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_dpms_INCLUDE_PATH
|
||||||
|
X11_dpms_INCLUDE_PATH-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_xcb_INCLUDE_PATH
|
||||||
|
X11_xcb_INCLUDE_PATH-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_xcb_LIB
|
||||||
|
X11_xcb_LIB-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_xcb_icccm_INCLUDE_PATH
|
||||||
|
X11_xcb_icccm_INCLUDE_PATH-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_xcb_icccm_LIB
|
||||||
|
X11_xcb_icccm_LIB-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_xcb_keysyms_INCLUDE_PATH
|
||||||
|
X11_xcb_keysyms_INCLUDE_PATH-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_xcb_keysyms_LIB
|
||||||
|
X11_xcb_keysyms_LIB-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_xcb_randr_INCLUDE_PATH
|
||||||
|
X11_xcb_randr_INCLUDE_PATH-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_xcb_randr_LIB
|
||||||
|
X11_xcb_randr_LIB-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_xcb_util_INCLUDE_PATH
|
||||||
|
X11_xcb_util_INCLUDE_PATH-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_xcb_util_LIB
|
||||||
|
X11_xcb_util_LIB-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_xcb_xfixes_INCLUDE_PATH
|
||||||
|
X11_xcb_xfixes_INCLUDE_PATH-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_xcb_xfixes_LIB
|
||||||
|
X11_xcb_xfixes_LIB-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_xcb_xkb_LIB
|
||||||
|
X11_xcb_xkb_LIB-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_xcb_xtest_INCLUDE_PATH
|
||||||
|
X11_xcb_xtest_INCLUDE_PATH-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_xcb_xtest_LIB
|
||||||
|
X11_xcb_xtest_LIB-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_xkbcommon_INCLUDE_PATH
|
||||||
|
X11_xkbcommon_INCLUDE_PATH-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_xkbcommon_LIB
|
||||||
|
X11_xkbcommon_LIB-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_xkbcommon_X11_INCLUDE_PATH
|
||||||
|
X11_xkbcommon_X11_INCLUDE_PATH-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_xkbcommon_X11_LIB
|
||||||
|
X11_xkbcommon_X11_LIB-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_xkbfile_INCLUDE_PATH
|
||||||
|
X11_xkbfile_INCLUDE_PATH-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_xkbfile_LIB
|
||||||
|
X11_xkbfile_LIB-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: ZLIB_INCLUDE_DIR
|
||||||
|
ZLIB_INCLUDE_DIR-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: ZLIB_LIBRARY_DEBUG
|
||||||
|
ZLIB_LIBRARY_DEBUG-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: ZLIB_LIBRARY_RELEASE
|
||||||
|
ZLIB_LIBRARY_RELEASE-ADVANCED:INTERNAL=1
|
||||||
//linker supports push/pop state
|
//linker supports push/pop state
|
||||||
_CMAKE_LINKER_PUSHPOP_STATE_SUPPORTED:INTERNAL=TRUE
|
_CMAKE_LINKER_PUSHPOP_STATE_SUPPORTED:INTERNAL=TRUE
|
||||||
|
//CMAKE_INSTALL_PREFIX during last run
|
||||||
|
_GNUInstallDirs_LAST_CMAKE_INSTALL_PREFIX:INTERNAL=/usr/local
|
||||||
|
__pkg_config_arguments_GLUT:INTERNAL=QUIET;glut
|
||||||
|
__pkg_config_arguments_PKG_FONTCONFIG:INTERNAL=QUIET;fontconfig
|
||||||
__pkg_config_checked_GLUT:INTERNAL=1
|
__pkg_config_checked_GLUT:INTERNAL=1
|
||||||
|
__pkg_config_checked_PKG_FONTCONFIG:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: pkgcfg_lib_GLUT_glut
|
||||||
|
pkgcfg_lib_GLUT_glut-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: pkgcfg_lib_PKG_FONTCONFIG_fontconfig
|
||||||
|
pkgcfg_lib_PKG_FONTCONFIG_fontconfig-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: pkgcfg_lib_PKG_FONTCONFIG_freetype
|
||||||
|
pkgcfg_lib_PKG_FONTCONFIG_freetype-ADVANCED:INTERNAL=1
|
||||||
|
prefix_result:INTERNAL=/usr/lib/x86_64-linux-gnu
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
set(CMAKE_C_COMPILER "/usr/bin/gcc-12")
|
set(CMAKE_C_COMPILER "/usr/bin/cc")
|
||||||
set(CMAKE_C_COMPILER_ARG1 "")
|
set(CMAKE_C_COMPILER_ARG1 "")
|
||||||
set(CMAKE_C_COMPILER_ID "GNU")
|
set(CMAKE_C_COMPILER_ID "GNU")
|
||||||
set(CMAKE_C_COMPILER_VERSION "12.1.0")
|
set(CMAKE_C_COMPILER_VERSION "12.2.0")
|
||||||
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 "17")
|
set(CMAKE_C_STANDARD_COMPUTED_DEFAULT "17")
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
set(CMAKE_CXX_COMPILER "/usr/bin/g++-12")
|
set(CMAKE_CXX_COMPILER "/usr/bin/c++")
|
||||||
set(CMAKE_CXX_COMPILER_ARG1 "")
|
set(CMAKE_CXX_COMPILER_ARG1 "")
|
||||||
set(CMAKE_CXX_COMPILER_ID "GNU")
|
set(CMAKE_CXX_COMPILER_ID "GNU")
|
||||||
set(CMAKE_CXX_COMPILER_VERSION "12.1.0")
|
set(CMAKE_CXX_COMPILER_VERSION "12.2.0")
|
||||||
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 "17")
|
set(CMAKE_CXX_STANDARD_COMPUTED_DEFAULT "17")
|
||||||
|
|
Binary file not shown.
Binary file not shown.
|
@ -1,13 +1,13 @@
|
||||||
set(CMAKE_HOST_SYSTEM "Linux-5.15.0-48-generic")
|
set(CMAKE_HOST_SYSTEM "Linux-6.1.0-3-amd64")
|
||||||
set(CMAKE_HOST_SYSTEM_NAME "Linux")
|
set(CMAKE_HOST_SYSTEM_NAME "Linux")
|
||||||
set(CMAKE_HOST_SYSTEM_VERSION "5.15.0-48-generic")
|
set(CMAKE_HOST_SYSTEM_VERSION "6.1.0-3-amd64")
|
||||||
set(CMAKE_HOST_SYSTEM_PROCESSOR "x86_64")
|
set(CMAKE_HOST_SYSTEM_PROCESSOR "x86_64")
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
set(CMAKE_SYSTEM "Linux-5.15.0-48-generic")
|
set(CMAKE_SYSTEM "Linux-6.1.0-3-amd64")
|
||||||
set(CMAKE_SYSTEM_NAME "Linux")
|
set(CMAKE_SYSTEM_NAME "Linux")
|
||||||
set(CMAKE_SYSTEM_VERSION "5.15.0-48-generic")
|
set(CMAKE_SYSTEM_VERSION "6.1.0-3-amd64")
|
||||||
set(CMAKE_SYSTEM_PROCESSOR "x86_64")
|
set(CMAKE_SYSTEM_PROCESSOR "x86_64")
|
||||||
|
|
||||||
set(CMAKE_CROSSCOMPILING "FALSE")
|
set(CMAKE_CROSSCOMPILING "FALSE")
|
||||||
|
|
Binary file not shown.
Binary file not shown.
|
@ -1,6 +1,6 @@
|
||||||
The system is: Linux - 5.15.0-48-generic - x86_64
|
The system is: Linux - 6.1.0-3-amd64 - x86_64
|
||||||
Compiling the C compiler identification source file "CMakeCCompilerId.c" succeeded.
|
Compiling the C compiler identification source file "CMakeCCompilerId.c" succeeded.
|
||||||
Compiler: /usr/bin/gcc-12
|
Compiler: /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 GNU, found in "/home/laptop/Documents/Brock/CS 3P98/Final Project/cmake-build-debug/CMakeFiles/3.24.2/CompilerIdC/a.out"
|
The C compiler identification is GNU, found in "/home/brett/Documents/Brock/CS 3P98/Final Project/cmake-build-debug/CMakeFiles/3.24.2/CompilerIdC/a.out"
|
||||||
|
|
||||||
Compiling the CXX compiler identification source file "CMakeCXXCompilerId.cpp" succeeded.
|
Compiling the CXX compiler identification source file "CMakeCXXCompilerId.cpp" succeeded.
|
||||||
Compiler: /usr/bin/g++-12
|
Compiler: /usr/bin/c++
|
||||||
Build flags:
|
Build flags:
|
||||||
Id flags:
|
Id flags:
|
||||||
|
|
||||||
|
@ -23,26 +23,27 @@ 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 GNU, found in "/home/laptop/Documents/Brock/CS 3P98/Final Project/cmake-build-debug/CMakeFiles/3.24.2/CompilerIdCXX/a.out"
|
The CXX compiler identification is GNU, found in "/home/brett/Documents/Brock/CS 3P98/Final Project/cmake-build-debug/CMakeFiles/3.24.2/CompilerIdCXX/a.out"
|
||||||
|
|
||||||
Detecting C compiler ABI info compiled with the following output:
|
Detecting C compiler ABI info compiled with the following output:
|
||||||
Change Dir: /home/laptop/Documents/Brock/CS 3P98/Final Project/cmake-build-debug/CMakeFiles/CMakeTmp
|
Change Dir: /home/brett/Documents/Brock/CS 3P98/Final Project/cmake-build-debug/CMakeFiles/CMakeTmp
|
||||||
|
|
||||||
Run Build Command(s):/home/laptop/Documents/clion/clion-2021.3.3/bin/ninja/linux/ninja cmTC_1601c && [1/2] Building C object CMakeFiles/cmTC_1601c.dir/CMakeCCompilerABI.c.o
|
Run Build Command(s):/opt/netbrains/clion/clion-2022.1.3/bin/ninja/linux/ninja cmTC_890e0 && [1/2] Building C object CMakeFiles/cmTC_890e0.dir/CMakeCCompilerABI.c.o
|
||||||
Using built-in specs.
|
Using built-in specs.
|
||||||
COLLECT_GCC=/usr/bin/gcc-12
|
COLLECT_GCC=/usr/bin/cc
|
||||||
OFFLOAD_TARGET_NAMES=nvptx-none:amdgcn-amdhsa
|
OFFLOAD_TARGET_NAMES=nvptx-none:amdgcn-amdhsa
|
||||||
OFFLOAD_TARGET_DEFAULT=1
|
OFFLOAD_TARGET_DEFAULT=1
|
||||||
Target: x86_64-linux-gnu
|
Target: x86_64-linux-gnu
|
||||||
Configured with: ../src/configure -v --with-pkgversion='Ubuntu 12.1.0-2ubuntu1~22.04' --with-bugurl=file:///usr/share/doc/gcc-12/README.Bugs --enable-languages=c,ada,c++,go,d,fortran,objc,obj-c++,m2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-12 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-plugin --enable-default-pie --with-system-zlib --enable-libphobos-checking=release --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --disable-werror --enable-cet --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none=/build/gcc-12-sZcx2y/gcc-12-12.1.0/debian/tmp-nvptx/usr,amdgcn-amdhsa=/build/gcc-12-sZcx2y/gcc-12-12.1.0/debian/tmp-gcn/usr --enable-offload-defaulted --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu
|
Configured with: ../src/configure -v --with-pkgversion='Debian 12.2.0-14' --with-bugurl=file:///usr/share/doc/gcc-12/README.Bugs --enable-languages=c,ada,c++,go,d,fortran,objc,obj-c++,m2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-12 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-plugin --enable-default-pie --with-system-zlib --enable-libphobos-checking=release --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --disable-werror --enable-cet --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none=/build/gcc-12-bTRWOB/gcc-12-12.2.0/debian/tmp-nvptx/usr,amdgcn-amdhsa=/build/gcc-12-bTRWOB/gcc-12-12.2.0/debian/tmp-gcn/usr --enable-offload-defaulted --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu
|
||||||
Thread model: posix
|
Thread model: posix
|
||||||
Supported LTO compression algorithms: zlib zstd
|
Supported LTO compression algorithms: zlib zstd
|
||||||
gcc version 12.1.0 (Ubuntu 12.1.0-2ubuntu1~22.04)
|
gcc version 12.2.0 (Debian 12.2.0-14)
|
||||||
COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles/cmTC_1601c.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_1601c.dir/'
|
COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles/cmTC_890e0.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_890e0.dir/'
|
||||||
/usr/lib/gcc/x86_64-linux-gnu/12/cc1 -quiet -v -imultiarch x86_64-linux-gnu /home/laptop/Documents/clion/clion-2021.3.3/bin/cmake/linux/share/cmake-3.24/Modules/CMakeCCompilerABI.c -quiet -dumpdir CMakeFiles/cmTC_1601c.dir/ -dumpbase CMakeCCompilerABI.c.c -dumpbase-ext .c -mtune=generic -march=x86-64 -version -fdiagnostics-color=always -fasynchronous-unwind-tables -fstack-protector-strong -Wformat -Wformat-security -fstack-clash-protection -fcf-protection -o /tmp/ccwqSI5L.s
|
/usr/lib/gcc/x86_64-linux-gnu/12/cc1 -quiet -v -imultiarch x86_64-linux-gnu /opt/netbrains/clion/clion-2022.1.3/bin/cmake/linux/share/cmake-3.24/Modules/CMakeCCompilerABI.c -quiet -dumpdir CMakeFiles/cmTC_890e0.dir/ -dumpbase CMakeCCompilerABI.c.c -dumpbase-ext .c -mtune=generic -march=x86-64 -version -fdiagnostics-color=always -fasynchronous-unwind-tables -o /tmp/ccFms6TS.s
|
||||||
GNU C17 (Ubuntu 12.1.0-2ubuntu1~22.04) version 12.1.0 (x86_64-linux-gnu)
|
GNU C17 (Debian 12.2.0-14) version 12.2.0 (x86_64-linux-gnu)
|
||||||
compiled by GNU C version 12.1.0, GMP version 6.2.1, MPFR version 4.1.0, MPC version 1.2.1, isl version isl-0.24-GMP
|
compiled by GNU C version 12.2.0, GMP version 6.2.1, MPFR version 4.1.1-p1, MPC version 1.3.1, isl version isl-0.25-GMP
|
||||||
|
|
||||||
|
warning: MPFR header version 4.1.1-p1 differs from library version 4.2.0.
|
||||||
GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072
|
GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072
|
||||||
ignoring nonexistent directory "/usr/local/include/x86_64-linux-gnu"
|
ignoring nonexistent directory "/usr/local/include/x86_64-linux-gnu"
|
||||||
ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/12/include-fixed"
|
ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/12/include-fixed"
|
||||||
|
@ -54,33 +55,34 @@ ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/12/../../../../x86
|
||||||
/usr/include/x86_64-linux-gnu
|
/usr/include/x86_64-linux-gnu
|
||||||
/usr/include
|
/usr/include
|
||||||
End of search list.
|
End of search list.
|
||||||
GNU C17 (Ubuntu 12.1.0-2ubuntu1~22.04) version 12.1.0 (x86_64-linux-gnu)
|
GNU C17 (Debian 12.2.0-14) version 12.2.0 (x86_64-linux-gnu)
|
||||||
compiled by GNU C version 12.1.0, GMP version 6.2.1, MPFR version 4.1.0, MPC version 1.2.1, isl version isl-0.24-GMP
|
compiled by GNU C version 12.2.0, GMP version 6.2.1, MPFR version 4.1.1-p1, MPC version 1.3.1, isl version isl-0.25-GMP
|
||||||
|
|
||||||
|
warning: MPFR header version 4.1.1-p1 differs from library version 4.2.0.
|
||||||
GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072
|
GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072
|
||||||
Compiler executable checksum: 0cc9f278f08689af2f7133754f8967b8
|
Compiler executable checksum: cc72d2b9b5048fedc2be9051c917b40b
|
||||||
COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles/cmTC_1601c.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_1601c.dir/'
|
COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles/cmTC_890e0.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_890e0.dir/'
|
||||||
as -v --64 -o CMakeFiles/cmTC_1601c.dir/CMakeCCompilerABI.c.o /tmp/ccwqSI5L.s
|
as -v --64 -o CMakeFiles/cmTC_890e0.dir/CMakeCCompilerABI.c.o /tmp/ccFms6TS.s
|
||||||
GNU assembler version 2.38 (x86_64-linux-gnu) using BFD version (GNU Binutils for Ubuntu) 2.38
|
GNU assembler version 2.40 (x86_64-linux-gnu) using BFD version (GNU Binutils for Debian) 2.40
|
||||||
COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/12/:/usr/lib/gcc/x86_64-linux-gnu/12/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/12/:/usr/lib/gcc/x86_64-linux-gnu/
|
COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/12/:/usr/lib/gcc/x86_64-linux-gnu/12/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/12/:/usr/lib/gcc/x86_64-linux-gnu/
|
||||||
LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/12/:/usr/lib/gcc/x86_64-linux-gnu/12/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/12/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/12/../../../:/lib/:/usr/lib/
|
LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/12/:/usr/lib/gcc/x86_64-linux-gnu/12/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/12/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/12/../../../:/lib/:/usr/lib/
|
||||||
COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles/cmTC_1601c.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_1601c.dir/CMakeCCompilerABI.c.'
|
COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles/cmTC_890e0.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_890e0.dir/CMakeCCompilerABI.c.'
|
||||||
[2/2] Linking C executable cmTC_1601c
|
[2/2] Linking C executable cmTC_890e0
|
||||||
Using built-in specs.
|
Using built-in specs.
|
||||||
COLLECT_GCC=/usr/bin/gcc-12
|
COLLECT_GCC=/usr/bin/cc
|
||||||
COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/12/lto-wrapper
|
COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/12/lto-wrapper
|
||||||
OFFLOAD_TARGET_NAMES=nvptx-none:amdgcn-amdhsa
|
OFFLOAD_TARGET_NAMES=nvptx-none:amdgcn-amdhsa
|
||||||
OFFLOAD_TARGET_DEFAULT=1
|
OFFLOAD_TARGET_DEFAULT=1
|
||||||
Target: x86_64-linux-gnu
|
Target: x86_64-linux-gnu
|
||||||
Configured with: ../src/configure -v --with-pkgversion='Ubuntu 12.1.0-2ubuntu1~22.04' --with-bugurl=file:///usr/share/doc/gcc-12/README.Bugs --enable-languages=c,ada,c++,go,d,fortran,objc,obj-c++,m2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-12 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-plugin --enable-default-pie --with-system-zlib --enable-libphobos-checking=release --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --disable-werror --enable-cet --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none=/build/gcc-12-sZcx2y/gcc-12-12.1.0/debian/tmp-nvptx/usr,amdgcn-amdhsa=/build/gcc-12-sZcx2y/gcc-12-12.1.0/debian/tmp-gcn/usr --enable-offload-defaulted --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu
|
Configured with: ../src/configure -v --with-pkgversion='Debian 12.2.0-14' --with-bugurl=file:///usr/share/doc/gcc-12/README.Bugs --enable-languages=c,ada,c++,go,d,fortran,objc,obj-c++,m2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-12 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-plugin --enable-default-pie --with-system-zlib --enable-libphobos-checking=release --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --disable-werror --enable-cet --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none=/build/gcc-12-bTRWOB/gcc-12-12.2.0/debian/tmp-nvptx/usr,amdgcn-amdhsa=/build/gcc-12-bTRWOB/gcc-12-12.2.0/debian/tmp-gcn/usr --enable-offload-defaulted --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu
|
||||||
Thread model: posix
|
Thread model: posix
|
||||||
Supported LTO compression algorithms: zlib zstd
|
Supported LTO compression algorithms: zlib zstd
|
||||||
gcc version 12.1.0 (Ubuntu 12.1.0-2ubuntu1~22.04)
|
gcc version 12.2.0 (Debian 12.2.0-14)
|
||||||
COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/12/:/usr/lib/gcc/x86_64-linux-gnu/12/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/12/:/usr/lib/gcc/x86_64-linux-gnu/
|
COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/12/:/usr/lib/gcc/x86_64-linux-gnu/12/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/12/:/usr/lib/gcc/x86_64-linux-gnu/
|
||||||
LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/12/:/usr/lib/gcc/x86_64-linux-gnu/12/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/12/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/12/../../../:/lib/:/usr/lib/
|
LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/12/:/usr/lib/gcc/x86_64-linux-gnu/12/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/12/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/12/../../../:/lib/:/usr/lib/
|
||||||
COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_1601c' '-mtune=generic' '-march=x86-64' '-dumpdir' 'cmTC_1601c.'
|
COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_890e0' '-mtune=generic' '-march=x86-64' '-dumpdir' 'cmTC_890e0.'
|
||||||
/usr/lib/gcc/x86_64-linux-gnu/12/collect2 -plugin /usr/lib/gcc/x86_64-linux-gnu/12/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/12/lto-wrapper -plugin-opt=-fresolution=/tmp/ccwxRWHo.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s --build-id --eh-frame-hdr -m elf_x86_64 --hash-style=gnu --as-needed -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -z now -z relro -o cmTC_1601c /usr/lib/gcc/x86_64-linux-gnu/12/../../../x86_64-linux-gnu/Scrt1.o /usr/lib/gcc/x86_64-linux-gnu/12/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/12/crtbeginS.o -L/usr/lib/gcc/x86_64-linux-gnu/12 -L/usr/lib/gcc/x86_64-linux-gnu/12/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/12/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/12/../../.. CMakeFiles/cmTC_1601c.dir/CMakeCCompilerABI.c.o -lgcc --push-state --as-needed -lgcc_s --pop-state -lc -lgcc --push-state --as-needed -lgcc_s --pop-state /usr/lib/gcc/x86_64-linux-gnu/12/crtendS.o /usr/lib/gcc/x86_64-linux-gnu/12/../../../x86_64-linux-gnu/crtn.o
|
/usr/lib/gcc/x86_64-linux-gnu/12/collect2 -plugin /usr/lib/gcc/x86_64-linux-gnu/12/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/12/lto-wrapper -plugin-opt=-fresolution=/tmp/ccJuQuvZ.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s --build-id --eh-frame-hdr -m elf_x86_64 --hash-style=gnu --as-needed -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -o cmTC_890e0 /usr/lib/gcc/x86_64-linux-gnu/12/../../../x86_64-linux-gnu/Scrt1.o /usr/lib/gcc/x86_64-linux-gnu/12/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/12/crtbeginS.o -L/usr/lib/gcc/x86_64-linux-gnu/12 -L/usr/lib/gcc/x86_64-linux-gnu/12/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/12/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/12/../../.. CMakeFiles/cmTC_890e0.dir/CMakeCCompilerABI.c.o -lgcc --push-state --as-needed -lgcc_s --pop-state -lc -lgcc --push-state --as-needed -lgcc_s --pop-state /usr/lib/gcc/x86_64-linux-gnu/12/crtendS.o /usr/lib/gcc/x86_64-linux-gnu/12/../../../x86_64-linux-gnu/crtn.o
|
||||||
COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_1601c' '-mtune=generic' '-march=x86-64' '-dumpdir' 'cmTC_1601c.'
|
COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_890e0' '-mtune=generic' '-march=x86-64' '-dumpdir' 'cmTC_890e0.'
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@ -101,23 +103,24 @@ Parsed C implicit include dir info from above output: rv=done
|
||||||
|
|
||||||
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: /home/laptop/Documents/Brock/CS 3P98/Final Project/cmake-build-debug/CMakeFiles/CMakeTmp]
|
ignore line: [Change Dir: /home/brett/Documents/Brock/CS 3P98/Final Project/cmake-build-debug/CMakeFiles/CMakeTmp]
|
||||||
ignore line: []
|
ignore line: []
|
||||||
ignore line: [Run Build Command(s):/home/laptop/Documents/clion/clion-2021.3.3/bin/ninja/linux/ninja cmTC_1601c && [1/2] Building C object CMakeFiles/cmTC_1601c.dir/CMakeCCompilerABI.c.o]
|
ignore line: [Run Build Command(s):/opt/netbrains/clion/clion-2022.1.3/bin/ninja/linux/ninja cmTC_890e0 && [1/2] Building C object CMakeFiles/cmTC_890e0.dir/CMakeCCompilerABI.c.o]
|
||||||
ignore line: [Using built-in specs.]
|
ignore line: [Using built-in specs.]
|
||||||
ignore line: [COLLECT_GCC=/usr/bin/gcc-12]
|
ignore line: [COLLECT_GCC=/usr/bin/cc]
|
||||||
ignore line: [OFFLOAD_TARGET_NAMES=nvptx-none:amdgcn-amdhsa]
|
ignore line: [OFFLOAD_TARGET_NAMES=nvptx-none:amdgcn-amdhsa]
|
||||||
ignore line: [OFFLOAD_TARGET_DEFAULT=1]
|
ignore line: [OFFLOAD_TARGET_DEFAULT=1]
|
||||||
ignore line: [Target: x86_64-linux-gnu]
|
ignore line: [Target: x86_64-linux-gnu]
|
||||||
ignore line: [Configured with: ../src/configure -v --with-pkgversion='Ubuntu 12.1.0-2ubuntu1~22.04' --with-bugurl=file:///usr/share/doc/gcc-12/README.Bugs --enable-languages=c ada c++ go d fortran objc obj-c++ m2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-12 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-plugin --enable-default-pie --with-system-zlib --enable-libphobos-checking=release --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --disable-werror --enable-cet --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32 m64 mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none=/build/gcc-12-sZcx2y/gcc-12-12.1.0/debian/tmp-nvptx/usr amdgcn-amdhsa=/build/gcc-12-sZcx2y/gcc-12-12.1.0/debian/tmp-gcn/usr --enable-offload-defaulted --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu]
|
ignore line: [Configured with: ../src/configure -v --with-pkgversion='Debian 12.2.0-14' --with-bugurl=file:///usr/share/doc/gcc-12/README.Bugs --enable-languages=c ada c++ go d fortran objc obj-c++ m2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-12 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-plugin --enable-default-pie --with-system-zlib --enable-libphobos-checking=release --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --disable-werror --enable-cet --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32 m64 mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none=/build/gcc-12-bTRWOB/gcc-12-12.2.0/debian/tmp-nvptx/usr amdgcn-amdhsa=/build/gcc-12-bTRWOB/gcc-12-12.2.0/debian/tmp-gcn/usr --enable-offload-defaulted --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu]
|
||||||
ignore line: [Thread model: posix]
|
ignore line: [Thread model: posix]
|
||||||
ignore line: [Supported LTO compression algorithms: zlib zstd]
|
ignore line: [Supported LTO compression algorithms: zlib zstd]
|
||||||
ignore line: [gcc version 12.1.0 (Ubuntu 12.1.0-2ubuntu1~22.04) ]
|
ignore line: [gcc version 12.2.0 (Debian 12.2.0-14) ]
|
||||||
ignore line: [COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles/cmTC_1601c.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_1601c.dir/']
|
ignore line: [COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles/cmTC_890e0.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_890e0.dir/']
|
||||||
ignore line: [ /usr/lib/gcc/x86_64-linux-gnu/12/cc1 -quiet -v -imultiarch x86_64-linux-gnu /home/laptop/Documents/clion/clion-2021.3.3/bin/cmake/linux/share/cmake-3.24/Modules/CMakeCCompilerABI.c -quiet -dumpdir CMakeFiles/cmTC_1601c.dir/ -dumpbase CMakeCCompilerABI.c.c -dumpbase-ext .c -mtune=generic -march=x86-64 -version -fdiagnostics-color=always -fasynchronous-unwind-tables -fstack-protector-strong -Wformat -Wformat-security -fstack-clash-protection -fcf-protection -o /tmp/ccwqSI5L.s]
|
ignore line: [ /usr/lib/gcc/x86_64-linux-gnu/12/cc1 -quiet -v -imultiarch x86_64-linux-gnu /opt/netbrains/clion/clion-2022.1.3/bin/cmake/linux/share/cmake-3.24/Modules/CMakeCCompilerABI.c -quiet -dumpdir CMakeFiles/cmTC_890e0.dir/ -dumpbase CMakeCCompilerABI.c.c -dumpbase-ext .c -mtune=generic -march=x86-64 -version -fdiagnostics-color=always -fasynchronous-unwind-tables -o /tmp/ccFms6TS.s]
|
||||||
ignore line: [GNU C17 (Ubuntu 12.1.0-2ubuntu1~22.04) version 12.1.0 (x86_64-linux-gnu)]
|
ignore line: [GNU C17 (Debian 12.2.0-14) version 12.2.0 (x86_64-linux-gnu)]
|
||||||
ignore line: [ compiled by GNU C version 12.1.0 GMP version 6.2.1 MPFR version 4.1.0 MPC version 1.2.1 isl version isl-0.24-GMP]
|
ignore line: [ compiled by GNU C version 12.2.0 GMP version 6.2.1 MPFR version 4.1.1-p1 MPC version 1.3.1 isl version isl-0.25-GMP]
|
||||||
ignore line: []
|
ignore line: []
|
||||||
|
ignore line: [warning: MPFR header version 4.1.1-p1 differs from library version 4.2.0.]
|
||||||
ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072]
|
ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072]
|
||||||
ignore line: [ignoring nonexistent directory "/usr/local/include/x86_64-linux-gnu"]
|
ignore line: [ignoring nonexistent directory "/usr/local/include/x86_64-linux-gnu"]
|
||||||
ignore line: [ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/12/include-fixed"]
|
ignore line: [ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/12/include-fixed"]
|
||||||
|
@ -129,37 +132,38 @@ Parsed C implicit link information from above output:
|
||||||
ignore line: [ /usr/include/x86_64-linux-gnu]
|
ignore line: [ /usr/include/x86_64-linux-gnu]
|
||||||
ignore line: [ /usr/include]
|
ignore line: [ /usr/include]
|
||||||
ignore line: [End of search list.]
|
ignore line: [End of search list.]
|
||||||
ignore line: [GNU C17 (Ubuntu 12.1.0-2ubuntu1~22.04) version 12.1.0 (x86_64-linux-gnu)]
|
ignore line: [GNU C17 (Debian 12.2.0-14) version 12.2.0 (x86_64-linux-gnu)]
|
||||||
ignore line: [ compiled by GNU C version 12.1.0 GMP version 6.2.1 MPFR version 4.1.0 MPC version 1.2.1 isl version isl-0.24-GMP]
|
ignore line: [ compiled by GNU C version 12.2.0 GMP version 6.2.1 MPFR version 4.1.1-p1 MPC version 1.3.1 isl version isl-0.25-GMP]
|
||||||
ignore line: []
|
ignore line: []
|
||||||
|
ignore line: [warning: MPFR header version 4.1.1-p1 differs from library version 4.2.0.]
|
||||||
ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072]
|
ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072]
|
||||||
ignore line: [Compiler executable checksum: 0cc9f278f08689af2f7133754f8967b8]
|
ignore line: [Compiler executable checksum: cc72d2b9b5048fedc2be9051c917b40b]
|
||||||
ignore line: [COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles/cmTC_1601c.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_1601c.dir/']
|
ignore line: [COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles/cmTC_890e0.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_890e0.dir/']
|
||||||
ignore line: [ as -v --64 -o CMakeFiles/cmTC_1601c.dir/CMakeCCompilerABI.c.o /tmp/ccwqSI5L.s]
|
ignore line: [ as -v --64 -o CMakeFiles/cmTC_890e0.dir/CMakeCCompilerABI.c.o /tmp/ccFms6TS.s]
|
||||||
ignore line: [GNU assembler version 2.38 (x86_64-linux-gnu) using BFD version (GNU Binutils for Ubuntu) 2.38]
|
ignore line: [GNU assembler version 2.40 (x86_64-linux-gnu) using BFD version (GNU Binutils for Debian) 2.40]
|
||||||
ignore line: [COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/12/:/usr/lib/gcc/x86_64-linux-gnu/12/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/12/:/usr/lib/gcc/x86_64-linux-gnu/]
|
ignore line: [COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/12/:/usr/lib/gcc/x86_64-linux-gnu/12/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/12/:/usr/lib/gcc/x86_64-linux-gnu/]
|
||||||
ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/12/:/usr/lib/gcc/x86_64-linux-gnu/12/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/12/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/12/../../../:/lib/:/usr/lib/]
|
ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/12/:/usr/lib/gcc/x86_64-linux-gnu/12/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/12/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/12/../../../:/lib/:/usr/lib/]
|
||||||
ignore line: [COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles/cmTC_1601c.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_1601c.dir/CMakeCCompilerABI.c.']
|
ignore line: [COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles/cmTC_890e0.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_890e0.dir/CMakeCCompilerABI.c.']
|
||||||
ignore line: [[2/2] Linking C executable cmTC_1601c]
|
ignore line: [[2/2] Linking C executable cmTC_890e0]
|
||||||
ignore line: [Using built-in specs.]
|
ignore line: [Using built-in specs.]
|
||||||
ignore line: [COLLECT_GCC=/usr/bin/gcc-12]
|
ignore line: [COLLECT_GCC=/usr/bin/cc]
|
||||||
ignore line: [COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/12/lto-wrapper]
|
ignore line: [COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/12/lto-wrapper]
|
||||||
ignore line: [OFFLOAD_TARGET_NAMES=nvptx-none:amdgcn-amdhsa]
|
ignore line: [OFFLOAD_TARGET_NAMES=nvptx-none:amdgcn-amdhsa]
|
||||||
ignore line: [OFFLOAD_TARGET_DEFAULT=1]
|
ignore line: [OFFLOAD_TARGET_DEFAULT=1]
|
||||||
ignore line: [Target: x86_64-linux-gnu]
|
ignore line: [Target: x86_64-linux-gnu]
|
||||||
ignore line: [Configured with: ../src/configure -v --with-pkgversion='Ubuntu 12.1.0-2ubuntu1~22.04' --with-bugurl=file:///usr/share/doc/gcc-12/README.Bugs --enable-languages=c ada c++ go d fortran objc obj-c++ m2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-12 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-plugin --enable-default-pie --with-system-zlib --enable-libphobos-checking=release --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --disable-werror --enable-cet --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32 m64 mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none=/build/gcc-12-sZcx2y/gcc-12-12.1.0/debian/tmp-nvptx/usr amdgcn-amdhsa=/build/gcc-12-sZcx2y/gcc-12-12.1.0/debian/tmp-gcn/usr --enable-offload-defaulted --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu]
|
ignore line: [Configured with: ../src/configure -v --with-pkgversion='Debian 12.2.0-14' --with-bugurl=file:///usr/share/doc/gcc-12/README.Bugs --enable-languages=c ada c++ go d fortran objc obj-c++ m2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-12 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-plugin --enable-default-pie --with-system-zlib --enable-libphobos-checking=release --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --disable-werror --enable-cet --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32 m64 mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none=/build/gcc-12-bTRWOB/gcc-12-12.2.0/debian/tmp-nvptx/usr amdgcn-amdhsa=/build/gcc-12-bTRWOB/gcc-12-12.2.0/debian/tmp-gcn/usr --enable-offload-defaulted --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu]
|
||||||
ignore line: [Thread model: posix]
|
ignore line: [Thread model: posix]
|
||||||
ignore line: [Supported LTO compression algorithms: zlib zstd]
|
ignore line: [Supported LTO compression algorithms: zlib zstd]
|
||||||
ignore line: [gcc version 12.1.0 (Ubuntu 12.1.0-2ubuntu1~22.04) ]
|
ignore line: [gcc version 12.2.0 (Debian 12.2.0-14) ]
|
||||||
ignore line: [COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/12/:/usr/lib/gcc/x86_64-linux-gnu/12/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/12/:/usr/lib/gcc/x86_64-linux-gnu/]
|
ignore line: [COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/12/:/usr/lib/gcc/x86_64-linux-gnu/12/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/12/:/usr/lib/gcc/x86_64-linux-gnu/]
|
||||||
ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/12/:/usr/lib/gcc/x86_64-linux-gnu/12/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/12/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/12/../../../:/lib/:/usr/lib/]
|
ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/12/:/usr/lib/gcc/x86_64-linux-gnu/12/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/12/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/12/../../../:/lib/:/usr/lib/]
|
||||||
ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_1601c' '-mtune=generic' '-march=x86-64' '-dumpdir' 'cmTC_1601c.']
|
ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_890e0' '-mtune=generic' '-march=x86-64' '-dumpdir' 'cmTC_890e0.']
|
||||||
link line: [ /usr/lib/gcc/x86_64-linux-gnu/12/collect2 -plugin /usr/lib/gcc/x86_64-linux-gnu/12/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/12/lto-wrapper -plugin-opt=-fresolution=/tmp/ccwxRWHo.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s --build-id --eh-frame-hdr -m elf_x86_64 --hash-style=gnu --as-needed -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -z now -z relro -o cmTC_1601c /usr/lib/gcc/x86_64-linux-gnu/12/../../../x86_64-linux-gnu/Scrt1.o /usr/lib/gcc/x86_64-linux-gnu/12/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/12/crtbeginS.o -L/usr/lib/gcc/x86_64-linux-gnu/12 -L/usr/lib/gcc/x86_64-linux-gnu/12/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/12/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/12/../../.. CMakeFiles/cmTC_1601c.dir/CMakeCCompilerABI.c.o -lgcc --push-state --as-needed -lgcc_s --pop-state -lc -lgcc --push-state --as-needed -lgcc_s --pop-state /usr/lib/gcc/x86_64-linux-gnu/12/crtendS.o /usr/lib/gcc/x86_64-linux-gnu/12/../../../x86_64-linux-gnu/crtn.o]
|
link line: [ /usr/lib/gcc/x86_64-linux-gnu/12/collect2 -plugin /usr/lib/gcc/x86_64-linux-gnu/12/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/12/lto-wrapper -plugin-opt=-fresolution=/tmp/ccJuQuvZ.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s --build-id --eh-frame-hdr -m elf_x86_64 --hash-style=gnu --as-needed -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -o cmTC_890e0 /usr/lib/gcc/x86_64-linux-gnu/12/../../../x86_64-linux-gnu/Scrt1.o /usr/lib/gcc/x86_64-linux-gnu/12/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/12/crtbeginS.o -L/usr/lib/gcc/x86_64-linux-gnu/12 -L/usr/lib/gcc/x86_64-linux-gnu/12/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/12/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/12/../../.. CMakeFiles/cmTC_890e0.dir/CMakeCCompilerABI.c.o -lgcc --push-state --as-needed -lgcc_s --pop-state -lc -lgcc --push-state --as-needed -lgcc_s --pop-state /usr/lib/gcc/x86_64-linux-gnu/12/crtendS.o /usr/lib/gcc/x86_64-linux-gnu/12/../../../x86_64-linux-gnu/crtn.o]
|
||||||
arg [/usr/lib/gcc/x86_64-linux-gnu/12/collect2] ==> ignore
|
arg [/usr/lib/gcc/x86_64-linux-gnu/12/collect2] ==> ignore
|
||||||
arg [-plugin] ==> ignore
|
arg [-plugin] ==> ignore
|
||||||
arg [/usr/lib/gcc/x86_64-linux-gnu/12/liblto_plugin.so] ==> ignore
|
arg [/usr/lib/gcc/x86_64-linux-gnu/12/liblto_plugin.so] ==> ignore
|
||||||
arg [-plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/12/lto-wrapper] ==> ignore
|
arg [-plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/12/lto-wrapper] ==> ignore
|
||||||
arg [-plugin-opt=-fresolution=/tmp/ccwxRWHo.res] ==> ignore
|
arg [-plugin-opt=-fresolution=/tmp/ccJuQuvZ.res] ==> ignore
|
||||||
arg [-plugin-opt=-pass-through=-lgcc] ==> ignore
|
arg [-plugin-opt=-pass-through=-lgcc] ==> ignore
|
||||||
arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore
|
arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore
|
||||||
arg [-plugin-opt=-pass-through=-lc] ==> ignore
|
arg [-plugin-opt=-pass-through=-lc] ==> ignore
|
||||||
|
@ -174,10 +178,8 @@ Parsed C implicit link information from above output:
|
||||||
arg [-dynamic-linker] ==> ignore
|
arg [-dynamic-linker] ==> ignore
|
||||||
arg [/lib64/ld-linux-x86-64.so.2] ==> ignore
|
arg [/lib64/ld-linux-x86-64.so.2] ==> ignore
|
||||||
arg [-pie] ==> ignore
|
arg [-pie] ==> ignore
|
||||||
arg [-znow] ==> ignore
|
|
||||||
arg [-zrelro] ==> ignore
|
|
||||||
arg [-o] ==> ignore
|
arg [-o] ==> ignore
|
||||||
arg [cmTC_1601c] ==> ignore
|
arg [cmTC_890e0] ==> ignore
|
||||||
arg [/usr/lib/gcc/x86_64-linux-gnu/12/../../../x86_64-linux-gnu/Scrt1.o] ==> obj [/usr/lib/gcc/x86_64-linux-gnu/12/../../../x86_64-linux-gnu/Scrt1.o]
|
arg [/usr/lib/gcc/x86_64-linux-gnu/12/../../../x86_64-linux-gnu/Scrt1.o] ==> obj [/usr/lib/gcc/x86_64-linux-gnu/12/../../../x86_64-linux-gnu/Scrt1.o]
|
||||||
arg [/usr/lib/gcc/x86_64-linux-gnu/12/../../../x86_64-linux-gnu/crti.o] ==> obj [/usr/lib/gcc/x86_64-linux-gnu/12/../../../x86_64-linux-gnu/crti.o]
|
arg [/usr/lib/gcc/x86_64-linux-gnu/12/../../../x86_64-linux-gnu/crti.o] ==> obj [/usr/lib/gcc/x86_64-linux-gnu/12/../../../x86_64-linux-gnu/crti.o]
|
||||||
arg [/usr/lib/gcc/x86_64-linux-gnu/12/crtbeginS.o] ==> obj [/usr/lib/gcc/x86_64-linux-gnu/12/crtbeginS.o]
|
arg [/usr/lib/gcc/x86_64-linux-gnu/12/crtbeginS.o] ==> obj [/usr/lib/gcc/x86_64-linux-gnu/12/crtbeginS.o]
|
||||||
|
@ -189,7 +191,7 @@ Parsed C implicit link information from above output:
|
||||||
arg [-L/usr/lib/x86_64-linux-gnu] ==> dir [/usr/lib/x86_64-linux-gnu]
|
arg [-L/usr/lib/x86_64-linux-gnu] ==> dir [/usr/lib/x86_64-linux-gnu]
|
||||||
arg [-L/usr/lib/../lib] ==> dir [/usr/lib/../lib]
|
arg [-L/usr/lib/../lib] ==> dir [/usr/lib/../lib]
|
||||||
arg [-L/usr/lib/gcc/x86_64-linux-gnu/12/../../..] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/12/../../..]
|
arg [-L/usr/lib/gcc/x86_64-linux-gnu/12/../../..] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/12/../../..]
|
||||||
arg [CMakeFiles/cmTC_1601c.dir/CMakeCCompilerABI.c.o] ==> ignore
|
arg [CMakeFiles/cmTC_890e0.dir/CMakeCCompilerABI.c.o] ==> ignore
|
||||||
arg [-lgcc] ==> lib [gcc]
|
arg [-lgcc] ==> lib [gcc]
|
||||||
arg [--push-state] ==> ignore
|
arg [--push-state] ==> ignore
|
||||||
arg [--as-needed] ==> ignore
|
arg [--as-needed] ==> ignore
|
||||||
|
@ -221,23 +223,24 @@ Parsed C implicit link information from above output:
|
||||||
|
|
||||||
|
|
||||||
Detecting CXX compiler ABI info compiled with the following output:
|
Detecting CXX compiler ABI info compiled with the following output:
|
||||||
Change Dir: /home/laptop/Documents/Brock/CS 3P98/Final Project/cmake-build-debug/CMakeFiles/CMakeTmp
|
Change Dir: /home/brett/Documents/Brock/CS 3P98/Final Project/cmake-build-debug/CMakeFiles/CMakeTmp
|
||||||
|
|
||||||
Run Build Command(s):/home/laptop/Documents/clion/clion-2021.3.3/bin/ninja/linux/ninja cmTC_21871 && [1/2] Building CXX object CMakeFiles/cmTC_21871.dir/CMakeCXXCompilerABI.cpp.o
|
Run Build Command(s):/opt/netbrains/clion/clion-2022.1.3/bin/ninja/linux/ninja cmTC_bd9b9 && [1/2] Building CXX object CMakeFiles/cmTC_bd9b9.dir/CMakeCXXCompilerABI.cpp.o
|
||||||
Using built-in specs.
|
Using built-in specs.
|
||||||
COLLECT_GCC=/usr/bin/g++-12
|
COLLECT_GCC=/usr/bin/c++
|
||||||
OFFLOAD_TARGET_NAMES=nvptx-none:amdgcn-amdhsa
|
OFFLOAD_TARGET_NAMES=nvptx-none:amdgcn-amdhsa
|
||||||
OFFLOAD_TARGET_DEFAULT=1
|
OFFLOAD_TARGET_DEFAULT=1
|
||||||
Target: x86_64-linux-gnu
|
Target: x86_64-linux-gnu
|
||||||
Configured with: ../src/configure -v --with-pkgversion='Ubuntu 12.1.0-2ubuntu1~22.04' --with-bugurl=file:///usr/share/doc/gcc-12/README.Bugs --enable-languages=c,ada,c++,go,d,fortran,objc,obj-c++,m2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-12 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-plugin --enable-default-pie --with-system-zlib --enable-libphobos-checking=release --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --disable-werror --enable-cet --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none=/build/gcc-12-sZcx2y/gcc-12-12.1.0/debian/tmp-nvptx/usr,amdgcn-amdhsa=/build/gcc-12-sZcx2y/gcc-12-12.1.0/debian/tmp-gcn/usr --enable-offload-defaulted --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu
|
Configured with: ../src/configure -v --with-pkgversion='Debian 12.2.0-14' --with-bugurl=file:///usr/share/doc/gcc-12/README.Bugs --enable-languages=c,ada,c++,go,d,fortran,objc,obj-c++,m2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-12 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-plugin --enable-default-pie --with-system-zlib --enable-libphobos-checking=release --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --disable-werror --enable-cet --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none=/build/gcc-12-bTRWOB/gcc-12-12.2.0/debian/tmp-nvptx/usr,amdgcn-amdhsa=/build/gcc-12-bTRWOB/gcc-12-12.2.0/debian/tmp-gcn/usr --enable-offload-defaulted --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu
|
||||||
Thread model: posix
|
Thread model: posix
|
||||||
Supported LTO compression algorithms: zlib zstd
|
Supported LTO compression algorithms: zlib zstd
|
||||||
gcc version 12.1.0 (Ubuntu 12.1.0-2ubuntu1~22.04)
|
gcc version 12.2.0 (Debian 12.2.0-14)
|
||||||
COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles/cmTC_21871.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_21871.dir/'
|
COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles/cmTC_bd9b9.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_bd9b9.dir/'
|
||||||
/usr/lib/gcc/x86_64-linux-gnu/12/cc1plus -quiet -v -imultiarch x86_64-linux-gnu -D_GNU_SOURCE /home/laptop/Documents/clion/clion-2021.3.3/bin/cmake/linux/share/cmake-3.24/Modules/CMakeCXXCompilerABI.cpp -quiet -dumpdir CMakeFiles/cmTC_21871.dir/ -dumpbase CMakeCXXCompilerABI.cpp.cpp -dumpbase-ext .cpp -mtune=generic -march=x86-64 -version -fdiagnostics-color=always -fasynchronous-unwind-tables -fstack-protector-strong -Wformat -Wformat-security -fstack-clash-protection -fcf-protection -o /tmp/cc6liYGO.s
|
/usr/lib/gcc/x86_64-linux-gnu/12/cc1plus -quiet -v -imultiarch x86_64-linux-gnu -D_GNU_SOURCE /opt/netbrains/clion/clion-2022.1.3/bin/cmake/linux/share/cmake-3.24/Modules/CMakeCXXCompilerABI.cpp -quiet -dumpdir CMakeFiles/cmTC_bd9b9.dir/ -dumpbase CMakeCXXCompilerABI.cpp.cpp -dumpbase-ext .cpp -mtune=generic -march=x86-64 -version -fdiagnostics-color=always -fasynchronous-unwind-tables -o /tmp/ccxlnRTm.s
|
||||||
GNU C++17 (Ubuntu 12.1.0-2ubuntu1~22.04) version 12.1.0 (x86_64-linux-gnu)
|
GNU C++17 (Debian 12.2.0-14) version 12.2.0 (x86_64-linux-gnu)
|
||||||
compiled by GNU C version 12.1.0, GMP version 6.2.1, MPFR version 4.1.0, MPC version 1.2.1, isl version isl-0.24-GMP
|
compiled by GNU C version 12.2.0, GMP version 6.2.1, MPFR version 4.1.1-p1, MPC version 1.3.1, isl version isl-0.25-GMP
|
||||||
|
|
||||||
|
warning: MPFR header version 4.1.1-p1 differs from library version 4.2.0.
|
||||||
GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072
|
GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072
|
||||||
ignoring duplicate directory "/usr/include/x86_64-linux-gnu/c++/12"
|
ignoring duplicate directory "/usr/include/x86_64-linux-gnu/c++/12"
|
||||||
ignoring nonexistent directory "/usr/local/include/x86_64-linux-gnu"
|
ignoring nonexistent directory "/usr/local/include/x86_64-linux-gnu"
|
||||||
|
@ -253,33 +256,34 @@ ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/12/../../../../x86
|
||||||
/usr/include/x86_64-linux-gnu
|
/usr/include/x86_64-linux-gnu
|
||||||
/usr/include
|
/usr/include
|
||||||
End of search list.
|
End of search list.
|
||||||
GNU C++17 (Ubuntu 12.1.0-2ubuntu1~22.04) version 12.1.0 (x86_64-linux-gnu)
|
GNU C++17 (Debian 12.2.0-14) version 12.2.0 (x86_64-linux-gnu)
|
||||||
compiled by GNU C version 12.1.0, GMP version 6.2.1, MPFR version 4.1.0, MPC version 1.2.1, isl version isl-0.24-GMP
|
compiled by GNU C version 12.2.0, GMP version 6.2.1, MPFR version 4.1.1-p1, MPC version 1.3.1, isl version isl-0.25-GMP
|
||||||
|
|
||||||
|
warning: MPFR header version 4.1.1-p1 differs from library version 4.2.0.
|
||||||
GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072
|
GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072
|
||||||
Compiler executable checksum: 3b8fb144b6c9637c4995550694b03e48
|
Compiler executable checksum: 62b090dbbefa50644117a3c13d47369a
|
||||||
COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles/cmTC_21871.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_21871.dir/'
|
COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles/cmTC_bd9b9.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_bd9b9.dir/'
|
||||||
as -v --64 -o CMakeFiles/cmTC_21871.dir/CMakeCXXCompilerABI.cpp.o /tmp/cc6liYGO.s
|
as -v --64 -o CMakeFiles/cmTC_bd9b9.dir/CMakeCXXCompilerABI.cpp.o /tmp/ccxlnRTm.s
|
||||||
GNU assembler version 2.38 (x86_64-linux-gnu) using BFD version (GNU Binutils for Ubuntu) 2.38
|
GNU assembler version 2.40 (x86_64-linux-gnu) using BFD version (GNU Binutils for Debian) 2.40
|
||||||
COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/12/:/usr/lib/gcc/x86_64-linux-gnu/12/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/12/:/usr/lib/gcc/x86_64-linux-gnu/
|
COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/12/:/usr/lib/gcc/x86_64-linux-gnu/12/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/12/:/usr/lib/gcc/x86_64-linux-gnu/
|
||||||
LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/12/:/usr/lib/gcc/x86_64-linux-gnu/12/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/12/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/12/../../../:/lib/:/usr/lib/
|
LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/12/:/usr/lib/gcc/x86_64-linux-gnu/12/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/12/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/12/../../../:/lib/:/usr/lib/
|
||||||
COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles/cmTC_21871.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_21871.dir/CMakeCXXCompilerABI.cpp.'
|
COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles/cmTC_bd9b9.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_bd9b9.dir/CMakeCXXCompilerABI.cpp.'
|
||||||
[2/2] Linking CXX executable cmTC_21871
|
[2/2] Linking CXX executable cmTC_bd9b9
|
||||||
Using built-in specs.
|
Using built-in specs.
|
||||||
COLLECT_GCC=/usr/bin/g++-12
|
COLLECT_GCC=/usr/bin/c++
|
||||||
COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/12/lto-wrapper
|
COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/12/lto-wrapper
|
||||||
OFFLOAD_TARGET_NAMES=nvptx-none:amdgcn-amdhsa
|
OFFLOAD_TARGET_NAMES=nvptx-none:amdgcn-amdhsa
|
||||||
OFFLOAD_TARGET_DEFAULT=1
|
OFFLOAD_TARGET_DEFAULT=1
|
||||||
Target: x86_64-linux-gnu
|
Target: x86_64-linux-gnu
|
||||||
Configured with: ../src/configure -v --with-pkgversion='Ubuntu 12.1.0-2ubuntu1~22.04' --with-bugurl=file:///usr/share/doc/gcc-12/README.Bugs --enable-languages=c,ada,c++,go,d,fortran,objc,obj-c++,m2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-12 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-plugin --enable-default-pie --with-system-zlib --enable-libphobos-checking=release --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --disable-werror --enable-cet --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none=/build/gcc-12-sZcx2y/gcc-12-12.1.0/debian/tmp-nvptx/usr,amdgcn-amdhsa=/build/gcc-12-sZcx2y/gcc-12-12.1.0/debian/tmp-gcn/usr --enable-offload-defaulted --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu
|
Configured with: ../src/configure -v --with-pkgversion='Debian 12.2.0-14' --with-bugurl=file:///usr/share/doc/gcc-12/README.Bugs --enable-languages=c,ada,c++,go,d,fortran,objc,obj-c++,m2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-12 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-plugin --enable-default-pie --with-system-zlib --enable-libphobos-checking=release --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --disable-werror --enable-cet --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none=/build/gcc-12-bTRWOB/gcc-12-12.2.0/debian/tmp-nvptx/usr,amdgcn-amdhsa=/build/gcc-12-bTRWOB/gcc-12-12.2.0/debian/tmp-gcn/usr --enable-offload-defaulted --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu
|
||||||
Thread model: posix
|
Thread model: posix
|
||||||
Supported LTO compression algorithms: zlib zstd
|
Supported LTO compression algorithms: zlib zstd
|
||||||
gcc version 12.1.0 (Ubuntu 12.1.0-2ubuntu1~22.04)
|
gcc version 12.2.0 (Debian 12.2.0-14)
|
||||||
COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/12/:/usr/lib/gcc/x86_64-linux-gnu/12/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/12/:/usr/lib/gcc/x86_64-linux-gnu/
|
COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/12/:/usr/lib/gcc/x86_64-linux-gnu/12/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/12/:/usr/lib/gcc/x86_64-linux-gnu/
|
||||||
LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/12/:/usr/lib/gcc/x86_64-linux-gnu/12/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/12/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/12/../../../:/lib/:/usr/lib/
|
LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/12/:/usr/lib/gcc/x86_64-linux-gnu/12/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/12/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/12/../../../:/lib/:/usr/lib/
|
||||||
COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_21871' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'cmTC_21871.'
|
COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_bd9b9' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'cmTC_bd9b9.'
|
||||||
/usr/lib/gcc/x86_64-linux-gnu/12/collect2 -plugin /usr/lib/gcc/x86_64-linux-gnu/12/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/12/lto-wrapper -plugin-opt=-fresolution=/tmp/ccaBU5hw.res -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc --build-id --eh-frame-hdr -m elf_x86_64 --hash-style=gnu --as-needed -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -z now -z relro -o cmTC_21871 /usr/lib/gcc/x86_64-linux-gnu/12/../../../x86_64-linux-gnu/Scrt1.o /usr/lib/gcc/x86_64-linux-gnu/12/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/12/crtbeginS.o -L/usr/lib/gcc/x86_64-linux-gnu/12 -L/usr/lib/gcc/x86_64-linux-gnu/12/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/12/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/12/../../.. CMakeFiles/cmTC_21871.dir/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm -lgcc_s -lgcc -lc -lgcc_s -lgcc /usr/lib/gcc/x86_64-linux-gnu/12/crtendS.o /usr/lib/gcc/x86_64-linux-gnu/12/../../../x86_64-linux-gnu/crtn.o
|
/usr/lib/gcc/x86_64-linux-gnu/12/collect2 -plugin /usr/lib/gcc/x86_64-linux-gnu/12/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/12/lto-wrapper -plugin-opt=-fresolution=/tmp/ccSB6iwW.res -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc --build-id --eh-frame-hdr -m elf_x86_64 --hash-style=gnu --as-needed -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -o cmTC_bd9b9 /usr/lib/gcc/x86_64-linux-gnu/12/../../../x86_64-linux-gnu/Scrt1.o /usr/lib/gcc/x86_64-linux-gnu/12/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/12/crtbeginS.o -L/usr/lib/gcc/x86_64-linux-gnu/12 -L/usr/lib/gcc/x86_64-linux-gnu/12/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/12/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/12/../../.. CMakeFiles/cmTC_bd9b9.dir/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm -lgcc_s -lgcc -lc -lgcc_s -lgcc /usr/lib/gcc/x86_64-linux-gnu/12/crtendS.o /usr/lib/gcc/x86_64-linux-gnu/12/../../../x86_64-linux-gnu/crtn.o
|
||||||
COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_21871' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'cmTC_21871.'
|
COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_bd9b9' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'cmTC_bd9b9.'
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@ -306,23 +310,24 @@ Parsed CXX implicit include dir info from above output: rv=done
|
||||||
|
|
||||||
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: /home/laptop/Documents/Brock/CS 3P98/Final Project/cmake-build-debug/CMakeFiles/CMakeTmp]
|
ignore line: [Change Dir: /home/brett/Documents/Brock/CS 3P98/Final Project/cmake-build-debug/CMakeFiles/CMakeTmp]
|
||||||
ignore line: []
|
ignore line: []
|
||||||
ignore line: [Run Build Command(s):/home/laptop/Documents/clion/clion-2021.3.3/bin/ninja/linux/ninja cmTC_21871 && [1/2] Building CXX object CMakeFiles/cmTC_21871.dir/CMakeCXXCompilerABI.cpp.o]
|
ignore line: [Run Build Command(s):/opt/netbrains/clion/clion-2022.1.3/bin/ninja/linux/ninja cmTC_bd9b9 && [1/2] Building CXX object CMakeFiles/cmTC_bd9b9.dir/CMakeCXXCompilerABI.cpp.o]
|
||||||
ignore line: [Using built-in specs.]
|
ignore line: [Using built-in specs.]
|
||||||
ignore line: [COLLECT_GCC=/usr/bin/g++-12]
|
ignore line: [COLLECT_GCC=/usr/bin/c++]
|
||||||
ignore line: [OFFLOAD_TARGET_NAMES=nvptx-none:amdgcn-amdhsa]
|
ignore line: [OFFLOAD_TARGET_NAMES=nvptx-none:amdgcn-amdhsa]
|
||||||
ignore line: [OFFLOAD_TARGET_DEFAULT=1]
|
ignore line: [OFFLOAD_TARGET_DEFAULT=1]
|
||||||
ignore line: [Target: x86_64-linux-gnu]
|
ignore line: [Target: x86_64-linux-gnu]
|
||||||
ignore line: [Configured with: ../src/configure -v --with-pkgversion='Ubuntu 12.1.0-2ubuntu1~22.04' --with-bugurl=file:///usr/share/doc/gcc-12/README.Bugs --enable-languages=c ada c++ go d fortran objc obj-c++ m2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-12 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-plugin --enable-default-pie --with-system-zlib --enable-libphobos-checking=release --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --disable-werror --enable-cet --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32 m64 mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none=/build/gcc-12-sZcx2y/gcc-12-12.1.0/debian/tmp-nvptx/usr amdgcn-amdhsa=/build/gcc-12-sZcx2y/gcc-12-12.1.0/debian/tmp-gcn/usr --enable-offload-defaulted --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu]
|
ignore line: [Configured with: ../src/configure -v --with-pkgversion='Debian 12.2.0-14' --with-bugurl=file:///usr/share/doc/gcc-12/README.Bugs --enable-languages=c ada c++ go d fortran objc obj-c++ m2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-12 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-plugin --enable-default-pie --with-system-zlib --enable-libphobos-checking=release --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --disable-werror --enable-cet --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32 m64 mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none=/build/gcc-12-bTRWOB/gcc-12-12.2.0/debian/tmp-nvptx/usr amdgcn-amdhsa=/build/gcc-12-bTRWOB/gcc-12-12.2.0/debian/tmp-gcn/usr --enable-offload-defaulted --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu]
|
||||||
ignore line: [Thread model: posix]
|
ignore line: [Thread model: posix]
|
||||||
ignore line: [Supported LTO compression algorithms: zlib zstd]
|
ignore line: [Supported LTO compression algorithms: zlib zstd]
|
||||||
ignore line: [gcc version 12.1.0 (Ubuntu 12.1.0-2ubuntu1~22.04) ]
|
ignore line: [gcc version 12.2.0 (Debian 12.2.0-14) ]
|
||||||
ignore line: [COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles/cmTC_21871.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_21871.dir/']
|
ignore line: [COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles/cmTC_bd9b9.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_bd9b9.dir/']
|
||||||
ignore line: [ /usr/lib/gcc/x86_64-linux-gnu/12/cc1plus -quiet -v -imultiarch x86_64-linux-gnu -D_GNU_SOURCE /home/laptop/Documents/clion/clion-2021.3.3/bin/cmake/linux/share/cmake-3.24/Modules/CMakeCXXCompilerABI.cpp -quiet -dumpdir CMakeFiles/cmTC_21871.dir/ -dumpbase CMakeCXXCompilerABI.cpp.cpp -dumpbase-ext .cpp -mtune=generic -march=x86-64 -version -fdiagnostics-color=always -fasynchronous-unwind-tables -fstack-protector-strong -Wformat -Wformat-security -fstack-clash-protection -fcf-protection -o /tmp/cc6liYGO.s]
|
ignore line: [ /usr/lib/gcc/x86_64-linux-gnu/12/cc1plus -quiet -v -imultiarch x86_64-linux-gnu -D_GNU_SOURCE /opt/netbrains/clion/clion-2022.1.3/bin/cmake/linux/share/cmake-3.24/Modules/CMakeCXXCompilerABI.cpp -quiet -dumpdir CMakeFiles/cmTC_bd9b9.dir/ -dumpbase CMakeCXXCompilerABI.cpp.cpp -dumpbase-ext .cpp -mtune=generic -march=x86-64 -version -fdiagnostics-color=always -fasynchronous-unwind-tables -o /tmp/ccxlnRTm.s]
|
||||||
ignore line: [GNU C++17 (Ubuntu 12.1.0-2ubuntu1~22.04) version 12.1.0 (x86_64-linux-gnu)]
|
ignore line: [GNU C++17 (Debian 12.2.0-14) version 12.2.0 (x86_64-linux-gnu)]
|
||||||
ignore line: [ compiled by GNU C version 12.1.0 GMP version 6.2.1 MPFR version 4.1.0 MPC version 1.2.1 isl version isl-0.24-GMP]
|
ignore line: [ compiled by GNU C version 12.2.0 GMP version 6.2.1 MPFR version 4.1.1-p1 MPC version 1.3.1 isl version isl-0.25-GMP]
|
||||||
ignore line: []
|
ignore line: []
|
||||||
|
ignore line: [warning: MPFR header version 4.1.1-p1 differs from library version 4.2.0.]
|
||||||
ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072]
|
ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072]
|
||||||
ignore line: [ignoring duplicate directory "/usr/include/x86_64-linux-gnu/c++/12"]
|
ignore line: [ignoring duplicate directory "/usr/include/x86_64-linux-gnu/c++/12"]
|
||||||
ignore line: [ignoring nonexistent directory "/usr/local/include/x86_64-linux-gnu"]
|
ignore line: [ignoring nonexistent directory "/usr/local/include/x86_64-linux-gnu"]
|
||||||
|
@ -338,37 +343,38 @@ Parsed CXX implicit link information from above output:
|
||||||
ignore line: [ /usr/include/x86_64-linux-gnu]
|
ignore line: [ /usr/include/x86_64-linux-gnu]
|
||||||
ignore line: [ /usr/include]
|
ignore line: [ /usr/include]
|
||||||
ignore line: [End of search list.]
|
ignore line: [End of search list.]
|
||||||
ignore line: [GNU C++17 (Ubuntu 12.1.0-2ubuntu1~22.04) version 12.1.0 (x86_64-linux-gnu)]
|
ignore line: [GNU C++17 (Debian 12.2.0-14) version 12.2.0 (x86_64-linux-gnu)]
|
||||||
ignore line: [ compiled by GNU C version 12.1.0 GMP version 6.2.1 MPFR version 4.1.0 MPC version 1.2.1 isl version isl-0.24-GMP]
|
ignore line: [ compiled by GNU C version 12.2.0 GMP version 6.2.1 MPFR version 4.1.1-p1 MPC version 1.3.1 isl version isl-0.25-GMP]
|
||||||
ignore line: []
|
ignore line: []
|
||||||
|
ignore line: [warning: MPFR header version 4.1.1-p1 differs from library version 4.2.0.]
|
||||||
ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072]
|
ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072]
|
||||||
ignore line: [Compiler executable checksum: 3b8fb144b6c9637c4995550694b03e48]
|
ignore line: [Compiler executable checksum: 62b090dbbefa50644117a3c13d47369a]
|
||||||
ignore line: [COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles/cmTC_21871.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_21871.dir/']
|
ignore line: [COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles/cmTC_bd9b9.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_bd9b9.dir/']
|
||||||
ignore line: [ as -v --64 -o CMakeFiles/cmTC_21871.dir/CMakeCXXCompilerABI.cpp.o /tmp/cc6liYGO.s]
|
ignore line: [ as -v --64 -o CMakeFiles/cmTC_bd9b9.dir/CMakeCXXCompilerABI.cpp.o /tmp/ccxlnRTm.s]
|
||||||
ignore line: [GNU assembler version 2.38 (x86_64-linux-gnu) using BFD version (GNU Binutils for Ubuntu) 2.38]
|
ignore line: [GNU assembler version 2.40 (x86_64-linux-gnu) using BFD version (GNU Binutils for Debian) 2.40]
|
||||||
ignore line: [COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/12/:/usr/lib/gcc/x86_64-linux-gnu/12/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/12/:/usr/lib/gcc/x86_64-linux-gnu/]
|
ignore line: [COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/12/:/usr/lib/gcc/x86_64-linux-gnu/12/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/12/:/usr/lib/gcc/x86_64-linux-gnu/]
|
||||||
ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/12/:/usr/lib/gcc/x86_64-linux-gnu/12/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/12/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/12/../../../:/lib/:/usr/lib/]
|
ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/12/:/usr/lib/gcc/x86_64-linux-gnu/12/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/12/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/12/../../../:/lib/:/usr/lib/]
|
||||||
ignore line: [COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles/cmTC_21871.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_21871.dir/CMakeCXXCompilerABI.cpp.']
|
ignore line: [COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles/cmTC_bd9b9.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_bd9b9.dir/CMakeCXXCompilerABI.cpp.']
|
||||||
ignore line: [[2/2] Linking CXX executable cmTC_21871]
|
ignore line: [[2/2] Linking CXX executable cmTC_bd9b9]
|
||||||
ignore line: [Using built-in specs.]
|
ignore line: [Using built-in specs.]
|
||||||
ignore line: [COLLECT_GCC=/usr/bin/g++-12]
|
ignore line: [COLLECT_GCC=/usr/bin/c++]
|
||||||
ignore line: [COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/12/lto-wrapper]
|
ignore line: [COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/12/lto-wrapper]
|
||||||
ignore line: [OFFLOAD_TARGET_NAMES=nvptx-none:amdgcn-amdhsa]
|
ignore line: [OFFLOAD_TARGET_NAMES=nvptx-none:amdgcn-amdhsa]
|
||||||
ignore line: [OFFLOAD_TARGET_DEFAULT=1]
|
ignore line: [OFFLOAD_TARGET_DEFAULT=1]
|
||||||
ignore line: [Target: x86_64-linux-gnu]
|
ignore line: [Target: x86_64-linux-gnu]
|
||||||
ignore line: [Configured with: ../src/configure -v --with-pkgversion='Ubuntu 12.1.0-2ubuntu1~22.04' --with-bugurl=file:///usr/share/doc/gcc-12/README.Bugs --enable-languages=c ada c++ go d fortran objc obj-c++ m2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-12 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-plugin --enable-default-pie --with-system-zlib --enable-libphobos-checking=release --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --disable-werror --enable-cet --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32 m64 mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none=/build/gcc-12-sZcx2y/gcc-12-12.1.0/debian/tmp-nvptx/usr amdgcn-amdhsa=/build/gcc-12-sZcx2y/gcc-12-12.1.0/debian/tmp-gcn/usr --enable-offload-defaulted --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu]
|
ignore line: [Configured with: ../src/configure -v --with-pkgversion='Debian 12.2.0-14' --with-bugurl=file:///usr/share/doc/gcc-12/README.Bugs --enable-languages=c ada c++ go d fortran objc obj-c++ m2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-12 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-plugin --enable-default-pie --with-system-zlib --enable-libphobos-checking=release --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --disable-werror --enable-cet --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32 m64 mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none=/build/gcc-12-bTRWOB/gcc-12-12.2.0/debian/tmp-nvptx/usr amdgcn-amdhsa=/build/gcc-12-bTRWOB/gcc-12-12.2.0/debian/tmp-gcn/usr --enable-offload-defaulted --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu]
|
||||||
ignore line: [Thread model: posix]
|
ignore line: [Thread model: posix]
|
||||||
ignore line: [Supported LTO compression algorithms: zlib zstd]
|
ignore line: [Supported LTO compression algorithms: zlib zstd]
|
||||||
ignore line: [gcc version 12.1.0 (Ubuntu 12.1.0-2ubuntu1~22.04) ]
|
ignore line: [gcc version 12.2.0 (Debian 12.2.0-14) ]
|
||||||
ignore line: [COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/12/:/usr/lib/gcc/x86_64-linux-gnu/12/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/12/:/usr/lib/gcc/x86_64-linux-gnu/]
|
ignore line: [COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/12/:/usr/lib/gcc/x86_64-linux-gnu/12/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/12/:/usr/lib/gcc/x86_64-linux-gnu/]
|
||||||
ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/12/:/usr/lib/gcc/x86_64-linux-gnu/12/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/12/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/12/../../../:/lib/:/usr/lib/]
|
ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/12/:/usr/lib/gcc/x86_64-linux-gnu/12/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/12/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/12/../../../:/lib/:/usr/lib/]
|
||||||
ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_21871' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'cmTC_21871.']
|
ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_bd9b9' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'cmTC_bd9b9.']
|
||||||
link line: [ /usr/lib/gcc/x86_64-linux-gnu/12/collect2 -plugin /usr/lib/gcc/x86_64-linux-gnu/12/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/12/lto-wrapper -plugin-opt=-fresolution=/tmp/ccaBU5hw.res -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc --build-id --eh-frame-hdr -m elf_x86_64 --hash-style=gnu --as-needed -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -z now -z relro -o cmTC_21871 /usr/lib/gcc/x86_64-linux-gnu/12/../../../x86_64-linux-gnu/Scrt1.o /usr/lib/gcc/x86_64-linux-gnu/12/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/12/crtbeginS.o -L/usr/lib/gcc/x86_64-linux-gnu/12 -L/usr/lib/gcc/x86_64-linux-gnu/12/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/12/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/12/../../.. CMakeFiles/cmTC_21871.dir/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm -lgcc_s -lgcc -lc -lgcc_s -lgcc /usr/lib/gcc/x86_64-linux-gnu/12/crtendS.o /usr/lib/gcc/x86_64-linux-gnu/12/../../../x86_64-linux-gnu/crtn.o]
|
link line: [ /usr/lib/gcc/x86_64-linux-gnu/12/collect2 -plugin /usr/lib/gcc/x86_64-linux-gnu/12/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/12/lto-wrapper -plugin-opt=-fresolution=/tmp/ccSB6iwW.res -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc --build-id --eh-frame-hdr -m elf_x86_64 --hash-style=gnu --as-needed -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -o cmTC_bd9b9 /usr/lib/gcc/x86_64-linux-gnu/12/../../../x86_64-linux-gnu/Scrt1.o /usr/lib/gcc/x86_64-linux-gnu/12/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/12/crtbeginS.o -L/usr/lib/gcc/x86_64-linux-gnu/12 -L/usr/lib/gcc/x86_64-linux-gnu/12/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/12/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/12/../../.. CMakeFiles/cmTC_bd9b9.dir/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm -lgcc_s -lgcc -lc -lgcc_s -lgcc /usr/lib/gcc/x86_64-linux-gnu/12/crtendS.o /usr/lib/gcc/x86_64-linux-gnu/12/../../../x86_64-linux-gnu/crtn.o]
|
||||||
arg [/usr/lib/gcc/x86_64-linux-gnu/12/collect2] ==> ignore
|
arg [/usr/lib/gcc/x86_64-linux-gnu/12/collect2] ==> ignore
|
||||||
arg [-plugin] ==> ignore
|
arg [-plugin] ==> ignore
|
||||||
arg [/usr/lib/gcc/x86_64-linux-gnu/12/liblto_plugin.so] ==> ignore
|
arg [/usr/lib/gcc/x86_64-linux-gnu/12/liblto_plugin.so] ==> ignore
|
||||||
arg [-plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/12/lto-wrapper] ==> ignore
|
arg [-plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/12/lto-wrapper] ==> ignore
|
||||||
arg [-plugin-opt=-fresolution=/tmp/ccaBU5hw.res] ==> ignore
|
arg [-plugin-opt=-fresolution=/tmp/ccSB6iwW.res] ==> ignore
|
||||||
arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore
|
arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore
|
||||||
arg [-plugin-opt=-pass-through=-lgcc] ==> ignore
|
arg [-plugin-opt=-pass-through=-lgcc] ==> ignore
|
||||||
arg [-plugin-opt=-pass-through=-lc] ==> ignore
|
arg [-plugin-opt=-pass-through=-lc] ==> ignore
|
||||||
|
@ -383,10 +389,8 @@ Parsed CXX implicit link information from above output:
|
||||||
arg [-dynamic-linker] ==> ignore
|
arg [-dynamic-linker] ==> ignore
|
||||||
arg [/lib64/ld-linux-x86-64.so.2] ==> ignore
|
arg [/lib64/ld-linux-x86-64.so.2] ==> ignore
|
||||||
arg [-pie] ==> ignore
|
arg [-pie] ==> ignore
|
||||||
arg [-znow] ==> ignore
|
|
||||||
arg [-zrelro] ==> ignore
|
|
||||||
arg [-o] ==> ignore
|
arg [-o] ==> ignore
|
||||||
arg [cmTC_21871] ==> ignore
|
arg [cmTC_bd9b9] ==> ignore
|
||||||
arg [/usr/lib/gcc/x86_64-linux-gnu/12/../../../x86_64-linux-gnu/Scrt1.o] ==> obj [/usr/lib/gcc/x86_64-linux-gnu/12/../../../x86_64-linux-gnu/Scrt1.o]
|
arg [/usr/lib/gcc/x86_64-linux-gnu/12/../../../x86_64-linux-gnu/Scrt1.o] ==> obj [/usr/lib/gcc/x86_64-linux-gnu/12/../../../x86_64-linux-gnu/Scrt1.o]
|
||||||
arg [/usr/lib/gcc/x86_64-linux-gnu/12/../../../x86_64-linux-gnu/crti.o] ==> obj [/usr/lib/gcc/x86_64-linux-gnu/12/../../../x86_64-linux-gnu/crti.o]
|
arg [/usr/lib/gcc/x86_64-linux-gnu/12/../../../x86_64-linux-gnu/crti.o] ==> obj [/usr/lib/gcc/x86_64-linux-gnu/12/../../../x86_64-linux-gnu/crti.o]
|
||||||
arg [/usr/lib/gcc/x86_64-linux-gnu/12/crtbeginS.o] ==> obj [/usr/lib/gcc/x86_64-linux-gnu/12/crtbeginS.o]
|
arg [/usr/lib/gcc/x86_64-linux-gnu/12/crtbeginS.o] ==> obj [/usr/lib/gcc/x86_64-linux-gnu/12/crtbeginS.o]
|
||||||
|
@ -398,7 +402,7 @@ Parsed CXX implicit link information from above output:
|
||||||
arg [-L/usr/lib/x86_64-linux-gnu] ==> dir [/usr/lib/x86_64-linux-gnu]
|
arg [-L/usr/lib/x86_64-linux-gnu] ==> dir [/usr/lib/x86_64-linux-gnu]
|
||||||
arg [-L/usr/lib/../lib] ==> dir [/usr/lib/../lib]
|
arg [-L/usr/lib/../lib] ==> dir [/usr/lib/../lib]
|
||||||
arg [-L/usr/lib/gcc/x86_64-linux-gnu/12/../../..] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/12/../../..]
|
arg [-L/usr/lib/gcc/x86_64-linux-gnu/12/../../..] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/12/../../..]
|
||||||
arg [CMakeFiles/cmTC_21871.dir/CMakeCXXCompilerABI.cpp.o] ==> ignore
|
arg [CMakeFiles/cmTC_bd9b9.dir/CMakeCXXCompilerABI.cpp.o] ==> ignore
|
||||||
arg [-lstdc++] ==> lib [stdc++]
|
arg [-lstdc++] ==> lib [stdc++]
|
||||||
arg [-lm] ==> lib [m]
|
arg [-lm] ==> lib [m]
|
||||||
arg [-lgcc_s] ==> lib [gcc_s]
|
arg [-lgcc_s] ==> lib [gcc_s]
|
||||||
|
@ -425,3 +429,79 @@ Parsed CXX implicit link information from above output:
|
||||||
implicit fwks: []
|
implicit fwks: []
|
||||||
|
|
||||||
|
|
||||||
|
Performing C SOURCE FILE Test CMAKE_HAVE_LIBC_PTHREAD succeeded with the following output:
|
||||||
|
Change Dir: /home/brett/Documents/Brock/CS 3P98/Final Project/cmake-build-debug/CMakeFiles/CMakeTmp
|
||||||
|
|
||||||
|
Run Build Command(s):/opt/netbrains/clion/clion-2022.1.3/bin/ninja/linux/ninja cmTC_fb9b4 && [1/2] Building C object CMakeFiles/cmTC_fb9b4.dir/src.c.o
|
||||||
|
[2/2] Linking C executable cmTC_fb9b4
|
||||||
|
|
||||||
|
|
||||||
|
Source file was:
|
||||||
|
#include <pthread.h>
|
||||||
|
|
||||||
|
static void* test_func(void* data)
|
||||||
|
{
|
||||||
|
return data;
|
||||||
|
}
|
||||||
|
|
||||||
|
int main(void)
|
||||||
|
{
|
||||||
|
pthread_t thread;
|
||||||
|
pthread_create(&thread, NULL, test_func, NULL);
|
||||||
|
pthread_detach(thread);
|
||||||
|
pthread_cancel(thread);
|
||||||
|
pthread_join(thread, NULL);
|
||||||
|
pthread_atfork(NULL, NULL, NULL);
|
||||||
|
pthread_exit(NULL);
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
Determining if the function XOpenDisplay exists in the /usr/lib/x86_64-linux-gnu/libX11.so;/usr/lib/x86_64-linux-gnu/libXext.so passed with the following output:
|
||||||
|
Change Dir: /home/brett/Documents/Brock/CS 3P98/Final Project/cmake-build-debug/CMakeFiles/CMakeTmp
|
||||||
|
|
||||||
|
Run Build Command(s):/opt/netbrains/clion/clion-2022.1.3/bin/ninja/linux/ninja cmTC_886ce && [1/2] Building C object CMakeFiles/cmTC_886ce.dir/CheckFunctionExists.c.o
|
||||||
|
[2/2] Linking C executable cmTC_886ce
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
Determining if the function gethostbyname exists passed with the following output:
|
||||||
|
Change Dir: /home/brett/Documents/Brock/CS 3P98/Final Project/cmake-build-debug/CMakeFiles/CMakeTmp
|
||||||
|
|
||||||
|
Run Build Command(s):/opt/netbrains/clion/clion-2022.1.3/bin/ninja/linux/ninja cmTC_b6d8e && [1/2] Building C object CMakeFiles/cmTC_b6d8e.dir/CheckFunctionExists.c.o
|
||||||
|
[2/2] Linking C executable cmTC_b6d8e
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
Determining if the function connect exists passed with the following output:
|
||||||
|
Change Dir: /home/brett/Documents/Brock/CS 3P98/Final Project/cmake-build-debug/CMakeFiles/CMakeTmp
|
||||||
|
|
||||||
|
Run Build Command(s):/opt/netbrains/clion/clion-2022.1.3/bin/ninja/linux/ninja cmTC_41a5f && [1/2] Building C object CMakeFiles/cmTC_41a5f.dir/CheckFunctionExists.c.o
|
||||||
|
[2/2] Linking C executable cmTC_41a5f
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
Determining if the function remove exists passed with the following output:
|
||||||
|
Change Dir: /home/brett/Documents/Brock/CS 3P98/Final Project/cmake-build-debug/CMakeFiles/CMakeTmp
|
||||||
|
|
||||||
|
Run Build Command(s):/opt/netbrains/clion/clion-2022.1.3/bin/ninja/linux/ninja cmTC_89de7 && [1/2] Building C object CMakeFiles/cmTC_89de7.dir/CheckFunctionExists.c.o
|
||||||
|
[2/2] Linking C executable cmTC_89de7
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
Determining if the function shmat exists passed with the following output:
|
||||||
|
Change Dir: /home/brett/Documents/Brock/CS 3P98/Final Project/cmake-build-debug/CMakeFiles/CMakeTmp
|
||||||
|
|
||||||
|
Run Build Command(s):/opt/netbrains/clion/clion-2022.1.3/bin/ninja/linux/ninja cmTC_6ae7f && [1/2] Building C object CMakeFiles/cmTC_6ae7f.dir/CheckFunctionExists.c.o
|
||||||
|
[2/2] Linking C executable cmTC_6ae7f
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
Determining if the function IceConnectionNumber exists in the ICE passed with the following output:
|
||||||
|
Change Dir: /home/brett/Documents/Brock/CS 3P98/Final Project/cmake-build-debug/CMakeFiles/CMakeTmp
|
||||||
|
|
||||||
|
Run Build Command(s):/opt/netbrains/clion/clion-2022.1.3/bin/ninja/linux/ninja cmTC_0b08a && [1/2] Building C object CMakeFiles/cmTC_0b08a.dir/CheckFunctionExists.c.o
|
||||||
|
[2/2] Linking C executable cmTC_0b08a
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
@ -1,6 +1,29 @@
|
||||||
/home/laptop/Documents/Brock/CS 3P98/Final Project/cmake-build-debug/CMakeFiles/Final_Project.dir
|
/home/brett/Documents/Brock/CS 3P98/Final Project/cmake-build-debug/CMakeFiles/FinalProject.dir
|
||||||
/home/laptop/Documents/Brock/CS 3P98/Final Project/cmake-build-debug/CMakeFiles/edit_cache.dir
|
/home/brett/Documents/Brock/CS 3P98/Final Project/cmake-build-debug/CMakeFiles/edit_cache.dir
|
||||||
/home/laptop/Documents/Brock/CS 3P98/Final Project/cmake-build-debug/CMakeFiles/rebuild_cache.dir
|
/home/brett/Documents/Brock/CS 3P98/Final Project/cmake-build-debug/CMakeFiles/rebuild_cache.dir
|
||||||
/home/laptop/Documents/Brock/CS 3P98/Final Project/cmake-build-debug/libraries/BLT/CMakeFiles/BLT.dir
|
/home/brett/Documents/Brock/CS 3P98/Final Project/cmake-build-debug/CMakeFiles/list_install_components.dir
|
||||||
/home/laptop/Documents/Brock/CS 3P98/Final Project/cmake-build-debug/libraries/BLT/CMakeFiles/edit_cache.dir
|
/home/brett/Documents/Brock/CS 3P98/Final Project/cmake-build-debug/CMakeFiles/install.dir
|
||||||
/home/laptop/Documents/Brock/CS 3P98/Final Project/cmake-build-debug/libraries/BLT/CMakeFiles/rebuild_cache.dir
|
/home/brett/Documents/Brock/CS 3P98/Final Project/cmake-build-debug/CMakeFiles/install/local.dir
|
||||||
|
/home/brett/Documents/Brock/CS 3P98/Final Project/cmake-build-debug/CMakeFiles/install/strip.dir
|
||||||
|
/home/brett/Documents/Brock/CS 3P98/Final Project/cmake-build-debug/libraries/glfw-3.3.8/CMakeFiles/uninstall.dir
|
||||||
|
/home/brett/Documents/Brock/CS 3P98/Final Project/cmake-build-debug/libraries/glfw-3.3.8/CMakeFiles/edit_cache.dir
|
||||||
|
/home/brett/Documents/Brock/CS 3P98/Final Project/cmake-build-debug/libraries/glfw-3.3.8/CMakeFiles/rebuild_cache.dir
|
||||||
|
/home/brett/Documents/Brock/CS 3P98/Final Project/cmake-build-debug/libraries/glfw-3.3.8/CMakeFiles/list_install_components.dir
|
||||||
|
/home/brett/Documents/Brock/CS 3P98/Final Project/cmake-build-debug/libraries/glfw-3.3.8/CMakeFiles/install.dir
|
||||||
|
/home/brett/Documents/Brock/CS 3P98/Final Project/cmake-build-debug/libraries/glfw-3.3.8/CMakeFiles/install/local.dir
|
||||||
|
/home/brett/Documents/Brock/CS 3P98/Final Project/cmake-build-debug/libraries/glfw-3.3.8/CMakeFiles/install/strip.dir
|
||||||
|
/home/brett/Documents/Brock/CS 3P98/Final Project/cmake-build-debug/libraries/glfw-3.3.8/src/CMakeFiles/update_mappings.dir
|
||||||
|
/home/brett/Documents/Brock/CS 3P98/Final Project/cmake-build-debug/libraries/glfw-3.3.8/src/CMakeFiles/glfw.dir
|
||||||
|
/home/brett/Documents/Brock/CS 3P98/Final Project/cmake-build-debug/libraries/glfw-3.3.8/src/CMakeFiles/edit_cache.dir
|
||||||
|
/home/brett/Documents/Brock/CS 3P98/Final Project/cmake-build-debug/libraries/glfw-3.3.8/src/CMakeFiles/rebuild_cache.dir
|
||||||
|
/home/brett/Documents/Brock/CS 3P98/Final Project/cmake-build-debug/libraries/glfw-3.3.8/src/CMakeFiles/list_install_components.dir
|
||||||
|
/home/brett/Documents/Brock/CS 3P98/Final Project/cmake-build-debug/libraries/glfw-3.3.8/src/CMakeFiles/install.dir
|
||||||
|
/home/brett/Documents/Brock/CS 3P98/Final Project/cmake-build-debug/libraries/glfw-3.3.8/src/CMakeFiles/install/local.dir
|
||||||
|
/home/brett/Documents/Brock/CS 3P98/Final Project/cmake-build-debug/libraries/glfw-3.3.8/src/CMakeFiles/install/strip.dir
|
||||||
|
/home/brett/Documents/Brock/CS 3P98/Final Project/cmake-build-debug/libraries/BLT/CMakeFiles/BLT.dir
|
||||||
|
/home/brett/Documents/Brock/CS 3P98/Final Project/cmake-build-debug/libraries/BLT/CMakeFiles/edit_cache.dir
|
||||||
|
/home/brett/Documents/Brock/CS 3P98/Final Project/cmake-build-debug/libraries/BLT/CMakeFiles/rebuild_cache.dir
|
||||||
|
/home/brett/Documents/Brock/CS 3P98/Final Project/cmake-build-debug/libraries/BLT/CMakeFiles/list_install_components.dir
|
||||||
|
/home/brett/Documents/Brock/CS 3P98/Final Project/cmake-build-debug/libraries/BLT/CMakeFiles/install.dir
|
||||||
|
/home/brett/Documents/Brock/CS 3P98/Final Project/cmake-build-debug/libraries/BLT/CMakeFiles/install/local.dir
|
||||||
|
/home/brett/Documents/Brock/CS 3P98/Final Project/cmake-build-debug/libraries/BLT/CMakeFiles/install/strip.dir
|
||||||
|
|
|
@ -1,13 +1,11 @@
|
||||||
/home/laptop/Documents/clion/clion-2021.3.3/bin/cmake/linux/bin/cmake -DCMAKE_BUILD_TYPE=Debug -DCMAKE_MAKE_PROGRAM=/home/laptop/Documents/clion/clion-2021.3.3/bin/ninja/linux/ninja -DCMAKE_C_COMPILER=/usr/bin/gcc-12 -DCMAKE_CXX_COMPILER=/usr/bin/g++-12 -G Ninja -S "/home/laptop/Documents/Brock/CS 3P98/Final Project" -B "/home/laptop/Documents/Brock/CS 3P98/Final Project/cmake-build-debug"
|
/opt/netbrains/clion/clion-2022.1.3/bin/cmake/linux/bin/cmake -DCMAKE_BUILD_TYPE=Debug -DCMAKE_MAKE_PROGRAM=/opt/netbrains/clion/clion-2022.1.3/bin/ninja/linux/ninja -G Ninja -S "/home/brett/Documents/Brock/CS 3P98/Final Project" -B "/home/brett/Documents/Brock/CS 3P98/Final Project/cmake-build-debug"
|
||||||
Standard Files /home/laptop/Documents/Brock/CS 3P98/Final Project/libraries/BLT/src/blt/std/queues.cpp;/home/laptop/Documents/Brock/CS 3P98/Final Project/libraries/BLT/src/blt/std/random.cpp;/home/laptop/Documents/Brock/CS 3P98/Final Project/libraries/BLT/src/blt/std/string.cpp;/home/laptop/Documents/Brock/CS 3P98/Final Project/libraries/BLT/src/blt/std/system.cpp
|
Building for Debug
|
||||||
Profiler Files /home/laptop/Documents/Brock/CS 3P98/Final Project/libraries/BLT/src/blt/profiling/profiler.cpp
|
-- Using X11 for window creation
|
||||||
Source: /home/laptop/Documents/Brock/CS 3P98/Final Project
|
Standard Files /home/brett/Documents/Brock/CS 3P98/Final Project/libraries/BLT/src/blt/std/filesystem.cpp;/home/brett/Documents/Brock/CS 3P98/Final Project/libraries/BLT/src/blt/std/format.cpp;/home/brett/Documents/Brock/CS 3P98/Final Project/libraries/BLT/src/blt/std/logging.cpp;/home/brett/Documents/Brock/CS 3P98/Final Project/libraries/BLT/src/blt/std/system.cpp
|
||||||
Current Source: /home/laptop/Documents/Brock/CS 3P98/Final Project/libraries/BLT
|
Profiler Files /home/brett/Documents/Brock/CS 3P98/Final Project/libraries/BLT/src/blt/profiling/profiler.cpp
|
||||||
BLT 0.1a Successfully included!
|
Source: /home/brett/Documents/Brock/CS 3P98/Final Project
|
||||||
Using GLUT /usr/include and /usr/lib/x86_64-linux-gnu/libglut.so;/usr/lib/x86_64-linux-gnu/libXi.so
|
Current Source: /home/brett/Documents/Brock/CS 3P98/Final Project/libraries/BLT
|
||||||
/usr/lib/x86_64-linux-gnu/libfreeimage.so
|
BLT Successfully included!
|
||||||
WARNING -- If you are on linux please install the FreeImage lib
|
|
||||||
Using FreeImage /usr/lib/x86_64-linux-gnu/libfreeimage.so and /usr/include/FreeImage.h
|
|
||||||
-- Configuring done
|
-- Configuring done
|
||||||
-- Generating done
|
-- Generating done
|
||||||
-- Build files have been written to: /home/laptop/Documents/Brock/CS 3P98/Final Project/cmake-build-debug
|
-- Build files have been written to: /home/brett/Documents/Brock/CS 3P98/Final Project/cmake-build-debug
|
||||||
|
|
Binary file not shown.
|
@ -6,7 +6,7 @@
|
||||||
# It is included in the main 'build.ninja'.
|
# It is included in the main 'build.ninja'.
|
||||||
|
|
||||||
# =============================================================================
|
# =============================================================================
|
||||||
# Project: Final_Project
|
# Project: FinalProject
|
||||||
# Configurations: Debug
|
# Configurations: Debug
|
||||||
# =============================================================================
|
# =============================================================================
|
||||||
# =============================================================================
|
# =============================================================================
|
||||||
|
@ -14,18 +14,18 @@
|
||||||
#############################################
|
#############################################
|
||||||
# Rule for compiling CXX files.
|
# Rule for compiling CXX files.
|
||||||
|
|
||||||
rule CXX_COMPILER__Final_Project_Debug
|
rule CXX_COMPILER__FinalProject_Debug
|
||||||
depfile = $DEP_FILE
|
depfile = $DEP_FILE
|
||||||
deps = gcc
|
deps = gcc
|
||||||
command = /usr/bin/g++-12 $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in
|
command = /usr/bin/c++ $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in
|
||||||
description = Building CXX object $out
|
description = Building CXX object $out
|
||||||
|
|
||||||
|
|
||||||
#############################################
|
#############################################
|
||||||
# Rule for linking CXX executable.
|
# Rule for linking CXX executable.
|
||||||
|
|
||||||
rule CXX_EXECUTABLE_LINKER__Final_Project_Debug
|
rule CXX_EXECUTABLE_LINKER__FinalProject_Debug
|
||||||
command = $PRE_LINK && /usr/bin/g++-12 $FLAGS $LINK_FLAGS $in -o $TARGET_FILE $LINK_PATH $LINK_LIBRARIES && $POST_BUILD
|
command = $PRE_LINK && /usr/bin/c++ $FLAGS $LINK_FLAGS $in -o $TARGET_FILE $LINK_PATH $LINK_LIBRARIES && $POST_BUILD
|
||||||
description = Linking CXX executable $TARGET_FILE
|
description = Linking CXX executable $TARGET_FILE
|
||||||
restat = $RESTAT
|
restat = $RESTAT
|
||||||
|
|
||||||
|
@ -38,13 +38,32 @@ rule CUSTOM_COMMAND
|
||||||
description = $DESC
|
description = $DESC
|
||||||
|
|
||||||
|
|
||||||
|
#############################################
|
||||||
|
# Rule for compiling C files.
|
||||||
|
|
||||||
|
rule C_COMPILER__glfw_Debug
|
||||||
|
depfile = $DEP_FILE
|
||||||
|
deps = gcc
|
||||||
|
command = /usr/bin/cc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in
|
||||||
|
description = Building C object $out
|
||||||
|
|
||||||
|
|
||||||
|
#############################################
|
||||||
|
# Rule for linking C static library.
|
||||||
|
|
||||||
|
rule C_STATIC_LIBRARY_LINKER__glfw_Debug
|
||||||
|
command = $PRE_LINK && /opt/netbrains/clion/clion-2022.1.3/bin/cmake/linux/bin/cmake -E rm -f $TARGET_FILE && /usr/bin/ar qc $TARGET_FILE $LINK_FLAGS $in && /usr/bin/ranlib $TARGET_FILE && $POST_BUILD
|
||||||
|
description = Linking C static library $TARGET_FILE
|
||||||
|
restat = $RESTAT
|
||||||
|
|
||||||
|
|
||||||
#############################################
|
#############################################
|
||||||
# Rule for compiling CXX files.
|
# Rule for compiling CXX files.
|
||||||
|
|
||||||
rule CXX_COMPILER__BLT_Debug
|
rule CXX_COMPILER__BLT_Debug
|
||||||
depfile = $DEP_FILE
|
depfile = $DEP_FILE
|
||||||
deps = gcc
|
deps = gcc
|
||||||
command = /usr/bin/g++-12 $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in
|
command = /usr/bin/c++ $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in
|
||||||
description = Building CXX object $out
|
description = Building CXX object $out
|
||||||
|
|
||||||
|
|
||||||
|
@ -52,7 +71,7 @@ rule CXX_COMPILER__BLT_Debug
|
||||||
# Rule for linking CXX static library.
|
# Rule for linking CXX static library.
|
||||||
|
|
||||||
rule CXX_STATIC_LIBRARY_LINKER__BLT_Debug
|
rule CXX_STATIC_LIBRARY_LINKER__BLT_Debug
|
||||||
command = $PRE_LINK && /home/laptop/Documents/clion/clion-2021.3.3/bin/cmake/linux/bin/cmake -E rm -f $TARGET_FILE && /usr/bin/ar qc $TARGET_FILE $LINK_FLAGS $in && /usr/bin/ranlib $TARGET_FILE && $POST_BUILD
|
command = $PRE_LINK && /opt/netbrains/clion/clion-2022.1.3/bin/cmake/linux/bin/cmake -E rm -f $TARGET_FILE && /usr/bin/ar qc $TARGET_FILE $LINK_FLAGS $in && /usr/bin/ranlib $TARGET_FILE && $POST_BUILD
|
||||||
description = Linking CXX static library $TARGET_FILE
|
description = Linking CXX static library $TARGET_FILE
|
||||||
restat = $RESTAT
|
restat = $RESTAT
|
||||||
|
|
||||||
|
@ -61,7 +80,7 @@ rule CXX_STATIC_LIBRARY_LINKER__BLT_Debug
|
||||||
# Rule for re-running cmake.
|
# Rule for re-running cmake.
|
||||||
|
|
||||||
rule RERUN_CMAKE
|
rule RERUN_CMAKE
|
||||||
command = /home/laptop/Documents/clion/clion-2021.3.3/bin/cmake/linux/bin/cmake --regenerate-during-build -S"/home/laptop/Documents/Brock/CS 3P98/Final Project" -B"/home/laptop/Documents/Brock/CS 3P98/Final Project/cmake-build-debug"
|
command = /opt/netbrains/clion/clion-2022.1.3/bin/cmake/linux/bin/cmake --regenerate-during-build -S"/home/brett/Documents/Brock/CS 3P98/Final Project" -B"/home/brett/Documents/Brock/CS 3P98/Final Project/cmake-build-debug"
|
||||||
description = Re-running CMake...
|
description = Re-running CMake...
|
||||||
generator = 1
|
generator = 1
|
||||||
|
|
||||||
|
@ -70,7 +89,7 @@ rule RERUN_CMAKE
|
||||||
# Rule for cleaning all built files.
|
# Rule for cleaning all built files.
|
||||||
|
|
||||||
rule CLEAN
|
rule CLEAN
|
||||||
command = /home/laptop/Documents/clion/clion-2021.3.3/bin/ninja/linux/ninja $FILE_ARG -t clean $TARGETS
|
command = /opt/netbrains/clion/clion-2022.1.3/bin/ninja/linux/ninja $FILE_ARG -t clean $TARGETS
|
||||||
description = Cleaning all built files...
|
description = Cleaning all built files...
|
||||||
|
|
||||||
|
|
||||||
|
@ -78,6 +97,6 @@ rule CLEAN
|
||||||
# Rule for printing all primary targets available.
|
# Rule for printing all primary targets available.
|
||||||
|
|
||||||
rule HELP
|
rule HELP
|
||||||
command = /home/laptop/Documents/clion/clion-2021.3.3/bin/ninja/linux/ninja -t targets
|
command = /opt/netbrains/clion/clion-2022.1.3/bin/ninja/linux/ninja -t targets
|
||||||
description = All primary targets available:
|
description = All primary targets available:
|
||||||
|
|
||||||
|
|
Binary file not shown.
Binary file not shown.
|
@ -1,3 +1,3 @@
|
||||||
Start testing: Jan 17 09:27 EST
|
Start testing: Feb 08 00:51 EST
|
||||||
----------------------------------------------------------
|
----------------------------------------------------------
|
||||||
End testing: Jan 17 09:27 EST
|
End testing: Feb 08 00:51 EST
|
||||||
|
|
|
@ -11,7 +11,7 @@
|
||||||
# =============================================================================
|
# =============================================================================
|
||||||
|
|
||||||
# =============================================================================
|
# =============================================================================
|
||||||
# Project: Final_Project
|
# Project: FinalProject
|
||||||
# Configurations: Debug
|
# Configurations: Debug
|
||||||
# =============================================================================
|
# =============================================================================
|
||||||
|
|
||||||
|
@ -39,53 +39,61 @@ include CMakeFiles/rules.ninja
|
||||||
#############################################
|
#############################################
|
||||||
# Logical path to working directory; prefix for absolute paths.
|
# Logical path to working directory; prefix for absolute paths.
|
||||||
|
|
||||||
cmake_ninja_workdir = /home/laptop/Documents/Brock/CS$ 3P98/Final$ Project/cmake-build-debug/
|
cmake_ninja_workdir = /home/brett/Documents/Brock/CS$ 3P98/Final$ Project/cmake-build-debug/
|
||||||
# =============================================================================
|
# =============================================================================
|
||||||
# Object build statements for EXECUTABLE target Final_Project
|
# Object build statements for EXECUTABLE target FinalProject
|
||||||
|
|
||||||
|
|
||||||
#############################################
|
#############################################
|
||||||
# Order-only phony target for Final_Project
|
# Order-only phony target for FinalProject
|
||||||
|
|
||||||
build cmake_object_order_depends_target_Final_Project: phony || cmake_object_order_depends_target_BLT
|
build cmake_object_order_depends_target_FinalProject: phony || cmake_object_order_depends_target_BLT cmake_object_order_depends_target_glfw
|
||||||
|
|
||||||
build CMakeFiles/Final_Project.dir/src/main.cpp.o: CXX_COMPILER__Final_Project_Debug /home/laptop/Documents/Brock/CS$ 3P98/Final$ Project/src/main.cpp || cmake_object_order_depends_target_Final_Project
|
build CMakeFiles/FinalProject.dir/src/main.cpp.o: CXX_COMPILER__FinalProject_Debug /home/brett/Documents/Brock/CS$ 3P98/Final$ Project/src/main.cpp || cmake_object_order_depends_target_FinalProject
|
||||||
DEP_FILE = CMakeFiles/Final_Project.dir/src/main.cpp.o.d
|
DEP_FILE = CMakeFiles/FinalProject.dir/src/main.cpp.o.d
|
||||||
FLAGS = -g -fdiagnostics-color=always
|
FLAGS = -fsanitize=address -g -g -fdiagnostics-color=always -fsanitize=address -std=gnu++17
|
||||||
INCLUDES = -I"/home/laptop/Documents/Brock/CS 3P98/Final Project/include" -I/usr/include/FreeImage.h -I"/home/laptop/Documents/Brock/CS 3P98/Final Project/libraries/BLT/include"
|
INCLUDES = -I"/home/brett/Documents/Brock/CS 3P98/Final Project/include" -I"/home/brett/Documents/Brock/CS 3P98/Final Project/libraries/BLT/include" -I"/home/brett/Documents/Brock/CS 3P98/Final Project/cmake-build-debug/libraries/BLT/config" -I"/home/brett/Documents/Brock/CS 3P98/Final Project/libraries/glfw-3.3.8/include"
|
||||||
OBJECT_DIR = CMakeFiles/Final_Project.dir
|
OBJECT_DIR = CMakeFiles/FinalProject.dir
|
||||||
OBJECT_FILE_DIR = CMakeFiles/Final_Project.dir/src
|
OBJECT_FILE_DIR = CMakeFiles/FinalProject.dir/src
|
||||||
|
|
||||||
build CMakeFiles/Final_Project.dir/src/window/window.cpp.o: CXX_COMPILER__Final_Project_Debug /home/laptop/Documents/Brock/CS$ 3P98/Final$ Project/src/window/window.cpp || cmake_object_order_depends_target_Final_Project
|
build CMakeFiles/FinalProject.dir/src/render/gl.cpp.o: CXX_COMPILER__FinalProject_Debug /home/brett/Documents/Brock/CS$ 3P98/Final$ Project/src/render/gl.cpp || cmake_object_order_depends_target_FinalProject
|
||||||
DEP_FILE = CMakeFiles/Final_Project.dir/src/window/window.cpp.o.d
|
DEP_FILE = CMakeFiles/FinalProject.dir/src/render/gl.cpp.o.d
|
||||||
FLAGS = -g -fdiagnostics-color=always
|
FLAGS = -fsanitize=address -g -g -fdiagnostics-color=always -fsanitize=address -std=gnu++17
|
||||||
INCLUDES = -I"/home/laptop/Documents/Brock/CS 3P98/Final Project/include" -I/usr/include/FreeImage.h -I"/home/laptop/Documents/Brock/CS 3P98/Final Project/libraries/BLT/include"
|
INCLUDES = -I"/home/brett/Documents/Brock/CS 3P98/Final Project/include" -I"/home/brett/Documents/Brock/CS 3P98/Final Project/libraries/BLT/include" -I"/home/brett/Documents/Brock/CS 3P98/Final Project/cmake-build-debug/libraries/BLT/config" -I"/home/brett/Documents/Brock/CS 3P98/Final Project/libraries/glfw-3.3.8/include"
|
||||||
OBJECT_DIR = CMakeFiles/Final_Project.dir
|
OBJECT_DIR = CMakeFiles/FinalProject.dir
|
||||||
OBJECT_FILE_DIR = CMakeFiles/Final_Project.dir/src/window
|
OBJECT_FILE_DIR = CMakeFiles/FinalProject.dir/src/render
|
||||||
|
|
||||||
|
build CMakeFiles/FinalProject.dir/src/render/window.cpp.o: CXX_COMPILER__FinalProject_Debug /home/brett/Documents/Brock/CS$ 3P98/Final$ Project/src/render/window.cpp || cmake_object_order_depends_target_FinalProject
|
||||||
|
DEP_FILE = CMakeFiles/FinalProject.dir/src/render/window.cpp.o.d
|
||||||
|
FLAGS = -fsanitize=address -g -g -fdiagnostics-color=always -fsanitize=address -std=gnu++17
|
||||||
|
INCLUDES = -I"/home/brett/Documents/Brock/CS 3P98/Final Project/include" -I"/home/brett/Documents/Brock/CS 3P98/Final Project/libraries/BLT/include" -I"/home/brett/Documents/Brock/CS 3P98/Final Project/cmake-build-debug/libraries/BLT/config" -I"/home/brett/Documents/Brock/CS 3P98/Final Project/libraries/glfw-3.3.8/include"
|
||||||
|
OBJECT_DIR = CMakeFiles/FinalProject.dir
|
||||||
|
OBJECT_FILE_DIR = CMakeFiles/FinalProject.dir/src/render
|
||||||
|
|
||||||
|
|
||||||
# =============================================================================
|
# =============================================================================
|
||||||
# Link build statements for EXECUTABLE target Final_Project
|
# Link build statements for EXECUTABLE target FinalProject
|
||||||
|
|
||||||
|
|
||||||
#############################################
|
#############################################
|
||||||
# Link the executable Final_Project
|
# Link the executable FinalProject
|
||||||
|
|
||||||
build Final_Project: CXX_EXECUTABLE_LINKER__Final_Project_Debug CMakeFiles/Final_Project.dir/src/main.cpp.o CMakeFiles/Final_Project.dir/src/window/window.cpp.o | libraries/BLT/libBLT.a /usr/lib/x86_64-linux-gnu/libglut.so /usr/lib/x86_64-linux-gnu/libXi.so /usr/lib/x86_64-linux-gnu/libfreeimage.so || libraries/BLT/libBLT.a
|
build FinalProject: CXX_EXECUTABLE_LINKER__FinalProject_Debug CMakeFiles/FinalProject.dir/src/main.cpp.o CMakeFiles/FinalProject.dir/src/render/gl.cpp.o CMakeFiles/FinalProject.dir/src/render/window.cpp.o | libraries/BLT/libBLT.a libraries/glfw-3.3.8/src/libglfw3.a /usr/lib/x86_64-linux-gnu/libz.so /usr/lib/x86_64-linux-gnu/librt.a /usr/lib/x86_64-linux-gnu/libm.so /usr/lib/x86_64-linux-gnu/libX11.so || libraries/BLT/libBLT.a libraries/glfw-3.3.8/src/libglfw3.a
|
||||||
FLAGS = -g
|
FLAGS = -fsanitize=address -g -g
|
||||||
LINK_LIBRARIES = libraries/BLT/libBLT.a /usr/lib/x86_64-linux-gnu/libglut.so /usr/lib/x86_64-linux-gnu/libXi.so /usr/lib/x86_64-linux-gnu/libfreeimage.so
|
LINK_FLAGS = -rdynamic -fsanitize=address
|
||||||
OBJECT_DIR = CMakeFiles/Final_Project.dir
|
LINK_LIBRARIES = libraries/BLT/libBLT.a libraries/glfw-3.3.8/src/libglfw3.a /usr/lib/x86_64-linux-gnu/libz.so -Wl,-Bstatic -lrt -Wl,-Bdynamic -lm -ldl -lX11
|
||||||
|
OBJECT_DIR = CMakeFiles/FinalProject.dir
|
||||||
POST_BUILD = :
|
POST_BUILD = :
|
||||||
PRE_LINK = :
|
PRE_LINK = :
|
||||||
TARGET_FILE = Final_Project
|
TARGET_FILE = FinalProject
|
||||||
TARGET_PDB = Final_Project.dbg
|
TARGET_PDB = FinalProject.dbg
|
||||||
|
|
||||||
|
|
||||||
#############################################
|
#############################################
|
||||||
# Utility command for edit_cache
|
# Utility command for edit_cache
|
||||||
|
|
||||||
build CMakeFiles/edit_cache.util: CUSTOM_COMMAND
|
build CMakeFiles/edit_cache.util: CUSTOM_COMMAND
|
||||||
COMMAND = cd "/home/laptop/Documents/Brock/CS 3P98/Final Project/cmake-build-debug" && /home/laptop/Documents/clion/clion-2021.3.3/bin/cmake/linux/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available.
|
COMMAND = cd "/home/brett/Documents/Brock/CS 3P98/Final Project/cmake-build-debug" && /opt/netbrains/clion/clion-2022.1.3/bin/cmake/linux/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available.
|
||||||
DESC = No interactive CMake dialog available...
|
DESC = No interactive CMake dialog available...
|
||||||
restat = 1
|
restat = 1
|
||||||
|
|
||||||
|
@ -96,16 +104,378 @@ build edit_cache: phony CMakeFiles/edit_cache.util
|
||||||
# Utility command for rebuild_cache
|
# Utility command for rebuild_cache
|
||||||
|
|
||||||
build CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND
|
build CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND
|
||||||
COMMAND = cd "/home/laptop/Documents/Brock/CS 3P98/Final Project/cmake-build-debug" && /home/laptop/Documents/clion/clion-2021.3.3/bin/cmake/linux/bin/cmake --regenerate-during-build -S"/home/laptop/Documents/Brock/CS 3P98/Final Project" -B"/home/laptop/Documents/Brock/CS 3P98/Final Project/cmake-build-debug"
|
COMMAND = cd "/home/brett/Documents/Brock/CS 3P98/Final Project/cmake-build-debug" && /opt/netbrains/clion/clion-2022.1.3/bin/cmake/linux/bin/cmake --regenerate-during-build -S"/home/brett/Documents/Brock/CS 3P98/Final Project" -B"/home/brett/Documents/Brock/CS 3P98/Final Project/cmake-build-debug"
|
||||||
DESC = Running CMake to regenerate build system...
|
DESC = Running CMake to regenerate build system...
|
||||||
pool = console
|
pool = console
|
||||||
restat = 1
|
restat = 1
|
||||||
|
|
||||||
build rebuild_cache: phony CMakeFiles/rebuild_cache.util
|
build rebuild_cache: phony CMakeFiles/rebuild_cache.util
|
||||||
|
|
||||||
|
|
||||||
|
#############################################
|
||||||
|
# Utility command for list_install_components
|
||||||
|
|
||||||
|
build list_install_components: phony
|
||||||
|
|
||||||
|
|
||||||
|
#############################################
|
||||||
|
# Utility command for install
|
||||||
|
|
||||||
|
build CMakeFiles/install.util: CUSTOM_COMMAND all
|
||||||
|
COMMAND = cd "/home/brett/Documents/Brock/CS 3P98/Final Project/cmake-build-debug" && /opt/netbrains/clion/clion-2022.1.3/bin/cmake/linux/bin/cmake -P cmake_install.cmake
|
||||||
|
DESC = Install the project...
|
||||||
|
pool = console
|
||||||
|
restat = 1
|
||||||
|
|
||||||
|
build install: phony CMakeFiles/install.util
|
||||||
|
|
||||||
|
|
||||||
|
#############################################
|
||||||
|
# Utility command for install/local
|
||||||
|
|
||||||
|
build CMakeFiles/install/local.util: CUSTOM_COMMAND all
|
||||||
|
COMMAND = cd "/home/brett/Documents/Brock/CS 3P98/Final Project/cmake-build-debug" && /opt/netbrains/clion/clion-2022.1.3/bin/cmake/linux/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake
|
||||||
|
DESC = Installing only the local directory...
|
||||||
|
pool = console
|
||||||
|
restat = 1
|
||||||
|
|
||||||
|
build install/local: phony CMakeFiles/install/local.util
|
||||||
|
|
||||||
|
|
||||||
|
#############################################
|
||||||
|
# Utility command for install/strip
|
||||||
|
|
||||||
|
build CMakeFiles/install/strip.util: CUSTOM_COMMAND all
|
||||||
|
COMMAND = cd "/home/brett/Documents/Brock/CS 3P98/Final Project/cmake-build-debug" && /opt/netbrains/clion/clion-2022.1.3/bin/cmake/linux/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake
|
||||||
|
DESC = Installing the project stripped...
|
||||||
|
pool = console
|
||||||
|
restat = 1
|
||||||
|
|
||||||
|
build install/strip: phony CMakeFiles/install/strip.util
|
||||||
|
|
||||||
# =============================================================================
|
# =============================================================================
|
||||||
# Write statements declared in CMakeLists.txt:
|
# Write statements declared in CMakeLists.txt:
|
||||||
# /home/laptop/Documents/Brock/CS 3P98/Final Project/CMakeLists.txt
|
# /home/brett/Documents/Brock/CS 3P98/Final Project/CMakeLists.txt
|
||||||
|
# =============================================================================
|
||||||
|
|
||||||
|
|
||||||
|
#############################################
|
||||||
|
# Utility command for uninstall
|
||||||
|
|
||||||
|
build libraries/glfw-3.3.8/uninstall: phony libraries/glfw-3.3.8/CMakeFiles/uninstall
|
||||||
|
|
||||||
|
|
||||||
|
#############################################
|
||||||
|
# Utility command for edit_cache
|
||||||
|
|
||||||
|
build libraries/glfw-3.3.8/CMakeFiles/edit_cache.util: CUSTOM_COMMAND
|
||||||
|
COMMAND = cd "/home/brett/Documents/Brock/CS 3P98/Final Project/cmake-build-debug/libraries/glfw-3.3.8" && /opt/netbrains/clion/clion-2022.1.3/bin/cmake/linux/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available.
|
||||||
|
DESC = No interactive CMake dialog available...
|
||||||
|
restat = 1
|
||||||
|
|
||||||
|
build libraries/glfw-3.3.8/edit_cache: phony libraries/glfw-3.3.8/CMakeFiles/edit_cache.util
|
||||||
|
|
||||||
|
|
||||||
|
#############################################
|
||||||
|
# Utility command for rebuild_cache
|
||||||
|
|
||||||
|
build libraries/glfw-3.3.8/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND
|
||||||
|
COMMAND = cd "/home/brett/Documents/Brock/CS 3P98/Final Project/cmake-build-debug/libraries/glfw-3.3.8" && /opt/netbrains/clion/clion-2022.1.3/bin/cmake/linux/bin/cmake --regenerate-during-build -S"/home/brett/Documents/Brock/CS 3P98/Final Project" -B"/home/brett/Documents/Brock/CS 3P98/Final Project/cmake-build-debug"
|
||||||
|
DESC = Running CMake to regenerate build system...
|
||||||
|
pool = console
|
||||||
|
restat = 1
|
||||||
|
|
||||||
|
build libraries/glfw-3.3.8/rebuild_cache: phony libraries/glfw-3.3.8/CMakeFiles/rebuild_cache.util
|
||||||
|
|
||||||
|
|
||||||
|
#############################################
|
||||||
|
# Utility command for list_install_components
|
||||||
|
|
||||||
|
build libraries/glfw-3.3.8/list_install_components: phony
|
||||||
|
|
||||||
|
|
||||||
|
#############################################
|
||||||
|
# Utility command for install
|
||||||
|
|
||||||
|
build libraries/glfw-3.3.8/CMakeFiles/install.util: CUSTOM_COMMAND libraries/glfw-3.3.8/all
|
||||||
|
COMMAND = cd "/home/brett/Documents/Brock/CS 3P98/Final Project/cmake-build-debug/libraries/glfw-3.3.8" && /opt/netbrains/clion/clion-2022.1.3/bin/cmake/linux/bin/cmake -P cmake_install.cmake
|
||||||
|
DESC = Install the project...
|
||||||
|
pool = console
|
||||||
|
restat = 1
|
||||||
|
|
||||||
|
build libraries/glfw-3.3.8/install: phony libraries/glfw-3.3.8/CMakeFiles/install.util
|
||||||
|
|
||||||
|
|
||||||
|
#############################################
|
||||||
|
# Utility command for install/local
|
||||||
|
|
||||||
|
build libraries/glfw-3.3.8/CMakeFiles/install/local.util: CUSTOM_COMMAND libraries/glfw-3.3.8/all
|
||||||
|
COMMAND = cd "/home/brett/Documents/Brock/CS 3P98/Final Project/cmake-build-debug/libraries/glfw-3.3.8" && /opt/netbrains/clion/clion-2022.1.3/bin/cmake/linux/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake
|
||||||
|
DESC = Installing only the local directory...
|
||||||
|
pool = console
|
||||||
|
restat = 1
|
||||||
|
|
||||||
|
build libraries/glfw-3.3.8/install/local: phony libraries/glfw-3.3.8/CMakeFiles/install/local.util
|
||||||
|
|
||||||
|
|
||||||
|
#############################################
|
||||||
|
# Utility command for install/strip
|
||||||
|
|
||||||
|
build libraries/glfw-3.3.8/CMakeFiles/install/strip.util: CUSTOM_COMMAND libraries/glfw-3.3.8/all
|
||||||
|
COMMAND = cd "/home/brett/Documents/Brock/CS 3P98/Final Project/cmake-build-debug/libraries/glfw-3.3.8" && /opt/netbrains/clion/clion-2022.1.3/bin/cmake/linux/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake
|
||||||
|
DESC = Installing the project stripped...
|
||||||
|
pool = console
|
||||||
|
restat = 1
|
||||||
|
|
||||||
|
build libraries/glfw-3.3.8/install/strip: phony libraries/glfw-3.3.8/CMakeFiles/install/strip.util
|
||||||
|
|
||||||
|
|
||||||
|
#############################################
|
||||||
|
# Custom command for libraries/glfw-3.3.8/CMakeFiles/uninstall
|
||||||
|
|
||||||
|
build libraries/glfw-3.3.8/CMakeFiles/uninstall | ${cmake_ninja_workdir}libraries/glfw-3.3.8/CMakeFiles/uninstall: CUSTOM_COMMAND
|
||||||
|
COMMAND = cd "/home/brett/Documents/Brock/CS 3P98/Final Project/cmake-build-debug/libraries/glfw-3.3.8" && /opt/netbrains/clion/clion-2022.1.3/bin/cmake/linux/bin/cmake -P /home/brett/Documents/Brock/CS\ 3P98/Final\ Project/cmake-build-debug/libraries/glfw-3.3.8/cmake_uninstall.cmake
|
||||||
|
|
||||||
|
# =============================================================================
|
||||||
|
# Write statements declared in CMakeLists.txt:
|
||||||
|
# /home/brett/Documents/Brock/CS 3P98/Final Project/libraries/glfw-3.3.8/CMakeLists.txt
|
||||||
|
# =============================================================================
|
||||||
|
|
||||||
|
|
||||||
|
#############################################
|
||||||
|
# Utility command for update_mappings
|
||||||
|
|
||||||
|
build libraries/glfw-3.3.8/src/update_mappings: phony libraries/glfw-3.3.8/src/CMakeFiles/update_mappings
|
||||||
|
|
||||||
|
# =============================================================================
|
||||||
|
# Object build statements for STATIC_LIBRARY target glfw
|
||||||
|
|
||||||
|
|
||||||
|
#############################################
|
||||||
|
# Order-only phony target for glfw
|
||||||
|
|
||||||
|
build cmake_object_order_depends_target_glfw: phony || libraries/glfw-3.3.8/src/CMakeFiles/glfw.dir
|
||||||
|
|
||||||
|
build libraries/glfw-3.3.8/src/CMakeFiles/glfw.dir/context.c.o: C_COMPILER__glfw_Debug /home/brett/Documents/Brock/CS$ 3P98/Final$ Project/libraries/glfw-3.3.8/src/context.c || cmake_object_order_depends_target_glfw
|
||||||
|
DEFINES = -D_GLFW_USE_CONFIG_H
|
||||||
|
DEP_FILE = libraries/glfw-3.3.8/src/CMakeFiles/glfw.dir/context.c.o.d
|
||||||
|
FLAGS = -g -fPIC -fdiagnostics-color=always -fsanitize=address -Wall -std=gnu99 -Wdeclaration-after-statement
|
||||||
|
INCLUDES = -I"/home/brett/Documents/Brock/CS 3P98/Final Project/libraries/glfw-3.3.8/include" -I"/home/brett/Documents/Brock/CS 3P98/Final Project/libraries/glfw-3.3.8/src" -I"/home/brett/Documents/Brock/CS 3P98/Final Project/cmake-build-debug/libraries/glfw-3.3.8/src"
|
||||||
|
OBJECT_DIR = libraries/glfw-3.3.8/src/CMakeFiles/glfw.dir
|
||||||
|
OBJECT_FILE_DIR = libraries/glfw-3.3.8/src/CMakeFiles/glfw.dir
|
||||||
|
|
||||||
|
build libraries/glfw-3.3.8/src/CMakeFiles/glfw.dir/init.c.o: C_COMPILER__glfw_Debug /home/brett/Documents/Brock/CS$ 3P98/Final$ Project/libraries/glfw-3.3.8/src/init.c || cmake_object_order_depends_target_glfw
|
||||||
|
DEFINES = -D_GLFW_USE_CONFIG_H
|
||||||
|
DEP_FILE = libraries/glfw-3.3.8/src/CMakeFiles/glfw.dir/init.c.o.d
|
||||||
|
FLAGS = -g -fPIC -fdiagnostics-color=always -fsanitize=address -Wall -std=gnu99 -Wdeclaration-after-statement
|
||||||
|
INCLUDES = -I"/home/brett/Documents/Brock/CS 3P98/Final Project/libraries/glfw-3.3.8/include" -I"/home/brett/Documents/Brock/CS 3P98/Final Project/libraries/glfw-3.3.8/src" -I"/home/brett/Documents/Brock/CS 3P98/Final Project/cmake-build-debug/libraries/glfw-3.3.8/src"
|
||||||
|
OBJECT_DIR = libraries/glfw-3.3.8/src/CMakeFiles/glfw.dir
|
||||||
|
OBJECT_FILE_DIR = libraries/glfw-3.3.8/src/CMakeFiles/glfw.dir
|
||||||
|
|
||||||
|
build libraries/glfw-3.3.8/src/CMakeFiles/glfw.dir/input.c.o: C_COMPILER__glfw_Debug /home/brett/Documents/Brock/CS$ 3P98/Final$ Project/libraries/glfw-3.3.8/src/input.c || cmake_object_order_depends_target_glfw
|
||||||
|
DEFINES = -D_GLFW_USE_CONFIG_H
|
||||||
|
DEP_FILE = libraries/glfw-3.3.8/src/CMakeFiles/glfw.dir/input.c.o.d
|
||||||
|
FLAGS = -g -fPIC -fdiagnostics-color=always -fsanitize=address -Wall -std=gnu99 -Wdeclaration-after-statement
|
||||||
|
INCLUDES = -I"/home/brett/Documents/Brock/CS 3P98/Final Project/libraries/glfw-3.3.8/include" -I"/home/brett/Documents/Brock/CS 3P98/Final Project/libraries/glfw-3.3.8/src" -I"/home/brett/Documents/Brock/CS 3P98/Final Project/cmake-build-debug/libraries/glfw-3.3.8/src"
|
||||||
|
OBJECT_DIR = libraries/glfw-3.3.8/src/CMakeFiles/glfw.dir
|
||||||
|
OBJECT_FILE_DIR = libraries/glfw-3.3.8/src/CMakeFiles/glfw.dir
|
||||||
|
|
||||||
|
build libraries/glfw-3.3.8/src/CMakeFiles/glfw.dir/monitor.c.o: C_COMPILER__glfw_Debug /home/brett/Documents/Brock/CS$ 3P98/Final$ Project/libraries/glfw-3.3.8/src/monitor.c || cmake_object_order_depends_target_glfw
|
||||||
|
DEFINES = -D_GLFW_USE_CONFIG_H
|
||||||
|
DEP_FILE = libraries/glfw-3.3.8/src/CMakeFiles/glfw.dir/monitor.c.o.d
|
||||||
|
FLAGS = -g -fPIC -fdiagnostics-color=always -fsanitize=address -Wall -std=gnu99 -Wdeclaration-after-statement
|
||||||
|
INCLUDES = -I"/home/brett/Documents/Brock/CS 3P98/Final Project/libraries/glfw-3.3.8/include" -I"/home/brett/Documents/Brock/CS 3P98/Final Project/libraries/glfw-3.3.8/src" -I"/home/brett/Documents/Brock/CS 3P98/Final Project/cmake-build-debug/libraries/glfw-3.3.8/src"
|
||||||
|
OBJECT_DIR = libraries/glfw-3.3.8/src/CMakeFiles/glfw.dir
|
||||||
|
OBJECT_FILE_DIR = libraries/glfw-3.3.8/src/CMakeFiles/glfw.dir
|
||||||
|
|
||||||
|
build libraries/glfw-3.3.8/src/CMakeFiles/glfw.dir/vulkan.c.o: C_COMPILER__glfw_Debug /home/brett/Documents/Brock/CS$ 3P98/Final$ Project/libraries/glfw-3.3.8/src/vulkan.c || cmake_object_order_depends_target_glfw
|
||||||
|
DEFINES = -D_GLFW_USE_CONFIG_H
|
||||||
|
DEP_FILE = libraries/glfw-3.3.8/src/CMakeFiles/glfw.dir/vulkan.c.o.d
|
||||||
|
FLAGS = -g -fPIC -fdiagnostics-color=always -fsanitize=address -Wall -std=gnu99 -Wdeclaration-after-statement
|
||||||
|
INCLUDES = -I"/home/brett/Documents/Brock/CS 3P98/Final Project/libraries/glfw-3.3.8/include" -I"/home/brett/Documents/Brock/CS 3P98/Final Project/libraries/glfw-3.3.8/src" -I"/home/brett/Documents/Brock/CS 3P98/Final Project/cmake-build-debug/libraries/glfw-3.3.8/src"
|
||||||
|
OBJECT_DIR = libraries/glfw-3.3.8/src/CMakeFiles/glfw.dir
|
||||||
|
OBJECT_FILE_DIR = libraries/glfw-3.3.8/src/CMakeFiles/glfw.dir
|
||||||
|
|
||||||
|
build libraries/glfw-3.3.8/src/CMakeFiles/glfw.dir/window.c.o: C_COMPILER__glfw_Debug /home/brett/Documents/Brock/CS$ 3P98/Final$ Project/libraries/glfw-3.3.8/src/window.c || cmake_object_order_depends_target_glfw
|
||||||
|
DEFINES = -D_GLFW_USE_CONFIG_H
|
||||||
|
DEP_FILE = libraries/glfw-3.3.8/src/CMakeFiles/glfw.dir/window.c.o.d
|
||||||
|
FLAGS = -g -fPIC -fdiagnostics-color=always -fsanitize=address -Wall -std=gnu99 -Wdeclaration-after-statement
|
||||||
|
INCLUDES = -I"/home/brett/Documents/Brock/CS 3P98/Final Project/libraries/glfw-3.3.8/include" -I"/home/brett/Documents/Brock/CS 3P98/Final Project/libraries/glfw-3.3.8/src" -I"/home/brett/Documents/Brock/CS 3P98/Final Project/cmake-build-debug/libraries/glfw-3.3.8/src"
|
||||||
|
OBJECT_DIR = libraries/glfw-3.3.8/src/CMakeFiles/glfw.dir
|
||||||
|
OBJECT_FILE_DIR = libraries/glfw-3.3.8/src/CMakeFiles/glfw.dir
|
||||||
|
|
||||||
|
build libraries/glfw-3.3.8/src/CMakeFiles/glfw.dir/x11_init.c.o: C_COMPILER__glfw_Debug /home/brett/Documents/Brock/CS$ 3P98/Final$ Project/libraries/glfw-3.3.8/src/x11_init.c || cmake_object_order_depends_target_glfw
|
||||||
|
DEFINES = -D_GLFW_USE_CONFIG_H
|
||||||
|
DEP_FILE = libraries/glfw-3.3.8/src/CMakeFiles/glfw.dir/x11_init.c.o.d
|
||||||
|
FLAGS = -g -fPIC -fdiagnostics-color=always -fsanitize=address -Wall -std=gnu99
|
||||||
|
INCLUDES = -I"/home/brett/Documents/Brock/CS 3P98/Final Project/libraries/glfw-3.3.8/include" -I"/home/brett/Documents/Brock/CS 3P98/Final Project/libraries/glfw-3.3.8/src" -I"/home/brett/Documents/Brock/CS 3P98/Final Project/cmake-build-debug/libraries/glfw-3.3.8/src"
|
||||||
|
OBJECT_DIR = libraries/glfw-3.3.8/src/CMakeFiles/glfw.dir
|
||||||
|
OBJECT_FILE_DIR = libraries/glfw-3.3.8/src/CMakeFiles/glfw.dir
|
||||||
|
|
||||||
|
build libraries/glfw-3.3.8/src/CMakeFiles/glfw.dir/x11_monitor.c.o: C_COMPILER__glfw_Debug /home/brett/Documents/Brock/CS$ 3P98/Final$ Project/libraries/glfw-3.3.8/src/x11_monitor.c || cmake_object_order_depends_target_glfw
|
||||||
|
DEFINES = -D_GLFW_USE_CONFIG_H
|
||||||
|
DEP_FILE = libraries/glfw-3.3.8/src/CMakeFiles/glfw.dir/x11_monitor.c.o.d
|
||||||
|
FLAGS = -g -fPIC -fdiagnostics-color=always -fsanitize=address -Wall -std=gnu99
|
||||||
|
INCLUDES = -I"/home/brett/Documents/Brock/CS 3P98/Final Project/libraries/glfw-3.3.8/include" -I"/home/brett/Documents/Brock/CS 3P98/Final Project/libraries/glfw-3.3.8/src" -I"/home/brett/Documents/Brock/CS 3P98/Final Project/cmake-build-debug/libraries/glfw-3.3.8/src"
|
||||||
|
OBJECT_DIR = libraries/glfw-3.3.8/src/CMakeFiles/glfw.dir
|
||||||
|
OBJECT_FILE_DIR = libraries/glfw-3.3.8/src/CMakeFiles/glfw.dir
|
||||||
|
|
||||||
|
build libraries/glfw-3.3.8/src/CMakeFiles/glfw.dir/x11_window.c.o: C_COMPILER__glfw_Debug /home/brett/Documents/Brock/CS$ 3P98/Final$ Project/libraries/glfw-3.3.8/src/x11_window.c || cmake_object_order_depends_target_glfw
|
||||||
|
DEFINES = -D_GLFW_USE_CONFIG_H
|
||||||
|
DEP_FILE = libraries/glfw-3.3.8/src/CMakeFiles/glfw.dir/x11_window.c.o.d
|
||||||
|
FLAGS = -g -fPIC -fdiagnostics-color=always -fsanitize=address -Wall -std=gnu99
|
||||||
|
INCLUDES = -I"/home/brett/Documents/Brock/CS 3P98/Final Project/libraries/glfw-3.3.8/include" -I"/home/brett/Documents/Brock/CS 3P98/Final Project/libraries/glfw-3.3.8/src" -I"/home/brett/Documents/Brock/CS 3P98/Final Project/cmake-build-debug/libraries/glfw-3.3.8/src"
|
||||||
|
OBJECT_DIR = libraries/glfw-3.3.8/src/CMakeFiles/glfw.dir
|
||||||
|
OBJECT_FILE_DIR = libraries/glfw-3.3.8/src/CMakeFiles/glfw.dir
|
||||||
|
|
||||||
|
build libraries/glfw-3.3.8/src/CMakeFiles/glfw.dir/xkb_unicode.c.o: C_COMPILER__glfw_Debug /home/brett/Documents/Brock/CS$ 3P98/Final$ Project/libraries/glfw-3.3.8/src/xkb_unicode.c || cmake_object_order_depends_target_glfw
|
||||||
|
DEFINES = -D_GLFW_USE_CONFIG_H
|
||||||
|
DEP_FILE = libraries/glfw-3.3.8/src/CMakeFiles/glfw.dir/xkb_unicode.c.o.d
|
||||||
|
FLAGS = -g -fPIC -fdiagnostics-color=always -fsanitize=address -Wall -std=gnu99
|
||||||
|
INCLUDES = -I"/home/brett/Documents/Brock/CS 3P98/Final Project/libraries/glfw-3.3.8/include" -I"/home/brett/Documents/Brock/CS 3P98/Final Project/libraries/glfw-3.3.8/src" -I"/home/brett/Documents/Brock/CS 3P98/Final Project/cmake-build-debug/libraries/glfw-3.3.8/src"
|
||||||
|
OBJECT_DIR = libraries/glfw-3.3.8/src/CMakeFiles/glfw.dir
|
||||||
|
OBJECT_FILE_DIR = libraries/glfw-3.3.8/src/CMakeFiles/glfw.dir
|
||||||
|
|
||||||
|
build libraries/glfw-3.3.8/src/CMakeFiles/glfw.dir/posix_time.c.o: C_COMPILER__glfw_Debug /home/brett/Documents/Brock/CS$ 3P98/Final$ Project/libraries/glfw-3.3.8/src/posix_time.c || cmake_object_order_depends_target_glfw
|
||||||
|
DEFINES = -D_GLFW_USE_CONFIG_H
|
||||||
|
DEP_FILE = libraries/glfw-3.3.8/src/CMakeFiles/glfw.dir/posix_time.c.o.d
|
||||||
|
FLAGS = -g -fPIC -fdiagnostics-color=always -fsanitize=address -Wall -std=gnu99
|
||||||
|
INCLUDES = -I"/home/brett/Documents/Brock/CS 3P98/Final Project/libraries/glfw-3.3.8/include" -I"/home/brett/Documents/Brock/CS 3P98/Final Project/libraries/glfw-3.3.8/src" -I"/home/brett/Documents/Brock/CS 3P98/Final Project/cmake-build-debug/libraries/glfw-3.3.8/src"
|
||||||
|
OBJECT_DIR = libraries/glfw-3.3.8/src/CMakeFiles/glfw.dir
|
||||||
|
OBJECT_FILE_DIR = libraries/glfw-3.3.8/src/CMakeFiles/glfw.dir
|
||||||
|
|
||||||
|
build libraries/glfw-3.3.8/src/CMakeFiles/glfw.dir/posix_thread.c.o: C_COMPILER__glfw_Debug /home/brett/Documents/Brock/CS$ 3P98/Final$ Project/libraries/glfw-3.3.8/src/posix_thread.c || cmake_object_order_depends_target_glfw
|
||||||
|
DEFINES = -D_GLFW_USE_CONFIG_H
|
||||||
|
DEP_FILE = libraries/glfw-3.3.8/src/CMakeFiles/glfw.dir/posix_thread.c.o.d
|
||||||
|
FLAGS = -g -fPIC -fdiagnostics-color=always -fsanitize=address -Wall -std=gnu99
|
||||||
|
INCLUDES = -I"/home/brett/Documents/Brock/CS 3P98/Final Project/libraries/glfw-3.3.8/include" -I"/home/brett/Documents/Brock/CS 3P98/Final Project/libraries/glfw-3.3.8/src" -I"/home/brett/Documents/Brock/CS 3P98/Final Project/cmake-build-debug/libraries/glfw-3.3.8/src"
|
||||||
|
OBJECT_DIR = libraries/glfw-3.3.8/src/CMakeFiles/glfw.dir
|
||||||
|
OBJECT_FILE_DIR = libraries/glfw-3.3.8/src/CMakeFiles/glfw.dir
|
||||||
|
|
||||||
|
build libraries/glfw-3.3.8/src/CMakeFiles/glfw.dir/glx_context.c.o: C_COMPILER__glfw_Debug /home/brett/Documents/Brock/CS$ 3P98/Final$ Project/libraries/glfw-3.3.8/src/glx_context.c || cmake_object_order_depends_target_glfw
|
||||||
|
DEFINES = -D_GLFW_USE_CONFIG_H
|
||||||
|
DEP_FILE = libraries/glfw-3.3.8/src/CMakeFiles/glfw.dir/glx_context.c.o.d
|
||||||
|
FLAGS = -g -fPIC -fdiagnostics-color=always -fsanitize=address -Wall -std=gnu99
|
||||||
|
INCLUDES = -I"/home/brett/Documents/Brock/CS 3P98/Final Project/libraries/glfw-3.3.8/include" -I"/home/brett/Documents/Brock/CS 3P98/Final Project/libraries/glfw-3.3.8/src" -I"/home/brett/Documents/Brock/CS 3P98/Final Project/cmake-build-debug/libraries/glfw-3.3.8/src"
|
||||||
|
OBJECT_DIR = libraries/glfw-3.3.8/src/CMakeFiles/glfw.dir
|
||||||
|
OBJECT_FILE_DIR = libraries/glfw-3.3.8/src/CMakeFiles/glfw.dir
|
||||||
|
|
||||||
|
build libraries/glfw-3.3.8/src/CMakeFiles/glfw.dir/egl_context.c.o: C_COMPILER__glfw_Debug /home/brett/Documents/Brock/CS$ 3P98/Final$ Project/libraries/glfw-3.3.8/src/egl_context.c || cmake_object_order_depends_target_glfw
|
||||||
|
DEFINES = -D_GLFW_USE_CONFIG_H
|
||||||
|
DEP_FILE = libraries/glfw-3.3.8/src/CMakeFiles/glfw.dir/egl_context.c.o.d
|
||||||
|
FLAGS = -g -fPIC -fdiagnostics-color=always -fsanitize=address -Wall -std=gnu99 -Wdeclaration-after-statement
|
||||||
|
INCLUDES = -I"/home/brett/Documents/Brock/CS 3P98/Final Project/libraries/glfw-3.3.8/include" -I"/home/brett/Documents/Brock/CS 3P98/Final Project/libraries/glfw-3.3.8/src" -I"/home/brett/Documents/Brock/CS 3P98/Final Project/cmake-build-debug/libraries/glfw-3.3.8/src"
|
||||||
|
OBJECT_DIR = libraries/glfw-3.3.8/src/CMakeFiles/glfw.dir
|
||||||
|
OBJECT_FILE_DIR = libraries/glfw-3.3.8/src/CMakeFiles/glfw.dir
|
||||||
|
|
||||||
|
build libraries/glfw-3.3.8/src/CMakeFiles/glfw.dir/osmesa_context.c.o: C_COMPILER__glfw_Debug /home/brett/Documents/Brock/CS$ 3P98/Final$ Project/libraries/glfw-3.3.8/src/osmesa_context.c || cmake_object_order_depends_target_glfw
|
||||||
|
DEFINES = -D_GLFW_USE_CONFIG_H
|
||||||
|
DEP_FILE = libraries/glfw-3.3.8/src/CMakeFiles/glfw.dir/osmesa_context.c.o.d
|
||||||
|
FLAGS = -g -fPIC -fdiagnostics-color=always -fsanitize=address -Wall -std=gnu99 -Wdeclaration-after-statement
|
||||||
|
INCLUDES = -I"/home/brett/Documents/Brock/CS 3P98/Final Project/libraries/glfw-3.3.8/include" -I"/home/brett/Documents/Brock/CS 3P98/Final Project/libraries/glfw-3.3.8/src" -I"/home/brett/Documents/Brock/CS 3P98/Final Project/cmake-build-debug/libraries/glfw-3.3.8/src"
|
||||||
|
OBJECT_DIR = libraries/glfw-3.3.8/src/CMakeFiles/glfw.dir
|
||||||
|
OBJECT_FILE_DIR = libraries/glfw-3.3.8/src/CMakeFiles/glfw.dir
|
||||||
|
|
||||||
|
build libraries/glfw-3.3.8/src/CMakeFiles/glfw.dir/linux_joystick.c.o: C_COMPILER__glfw_Debug /home/brett/Documents/Brock/CS$ 3P98/Final$ Project/libraries/glfw-3.3.8/src/linux_joystick.c || cmake_object_order_depends_target_glfw
|
||||||
|
DEFINES = -D_GLFW_USE_CONFIG_H
|
||||||
|
DEP_FILE = libraries/glfw-3.3.8/src/CMakeFiles/glfw.dir/linux_joystick.c.o.d
|
||||||
|
FLAGS = -g -fPIC -fdiagnostics-color=always -fsanitize=address -Wall -std=gnu99
|
||||||
|
INCLUDES = -I"/home/brett/Documents/Brock/CS 3P98/Final Project/libraries/glfw-3.3.8/include" -I"/home/brett/Documents/Brock/CS 3P98/Final Project/libraries/glfw-3.3.8/src" -I"/home/brett/Documents/Brock/CS 3P98/Final Project/cmake-build-debug/libraries/glfw-3.3.8/src"
|
||||||
|
OBJECT_DIR = libraries/glfw-3.3.8/src/CMakeFiles/glfw.dir
|
||||||
|
OBJECT_FILE_DIR = libraries/glfw-3.3.8/src/CMakeFiles/glfw.dir
|
||||||
|
|
||||||
|
|
||||||
|
# =============================================================================
|
||||||
|
# Link build statements for STATIC_LIBRARY target glfw
|
||||||
|
|
||||||
|
|
||||||
|
#############################################
|
||||||
|
# Link the static library libraries/glfw-3.3.8/src/libglfw3.a
|
||||||
|
|
||||||
|
build libraries/glfw-3.3.8/src/libglfw3.a: C_STATIC_LIBRARY_LINKER__glfw_Debug libraries/glfw-3.3.8/src/CMakeFiles/glfw.dir/context.c.o libraries/glfw-3.3.8/src/CMakeFiles/glfw.dir/init.c.o libraries/glfw-3.3.8/src/CMakeFiles/glfw.dir/input.c.o libraries/glfw-3.3.8/src/CMakeFiles/glfw.dir/monitor.c.o libraries/glfw-3.3.8/src/CMakeFiles/glfw.dir/vulkan.c.o libraries/glfw-3.3.8/src/CMakeFiles/glfw.dir/window.c.o libraries/glfw-3.3.8/src/CMakeFiles/glfw.dir/x11_init.c.o libraries/glfw-3.3.8/src/CMakeFiles/glfw.dir/x11_monitor.c.o libraries/glfw-3.3.8/src/CMakeFiles/glfw.dir/x11_window.c.o libraries/glfw-3.3.8/src/CMakeFiles/glfw.dir/xkb_unicode.c.o libraries/glfw-3.3.8/src/CMakeFiles/glfw.dir/posix_time.c.o libraries/glfw-3.3.8/src/CMakeFiles/glfw.dir/posix_thread.c.o libraries/glfw-3.3.8/src/CMakeFiles/glfw.dir/glx_context.c.o libraries/glfw-3.3.8/src/CMakeFiles/glfw.dir/egl_context.c.o libraries/glfw-3.3.8/src/CMakeFiles/glfw.dir/osmesa_context.c.o libraries/glfw-3.3.8/src/CMakeFiles/glfw.dir/linux_joystick.c.o
|
||||||
|
LANGUAGE_COMPILE_FLAGS = -g
|
||||||
|
OBJECT_DIR = libraries/glfw-3.3.8/src/CMakeFiles/glfw.dir
|
||||||
|
POST_BUILD = :
|
||||||
|
PRE_LINK = :
|
||||||
|
TARGET_FILE = libraries/glfw-3.3.8/src/libglfw3.a
|
||||||
|
TARGET_PDB = glfw3.a.dbg
|
||||||
|
|
||||||
|
|
||||||
|
#############################################
|
||||||
|
# Utility command for edit_cache
|
||||||
|
|
||||||
|
build libraries/glfw-3.3.8/src/CMakeFiles/edit_cache.util: CUSTOM_COMMAND
|
||||||
|
COMMAND = cd "/home/brett/Documents/Brock/CS 3P98/Final Project/cmake-build-debug/libraries/glfw-3.3.8/src" && /opt/netbrains/clion/clion-2022.1.3/bin/cmake/linux/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available.
|
||||||
|
DESC = No interactive CMake dialog available...
|
||||||
|
restat = 1
|
||||||
|
|
||||||
|
build libraries/glfw-3.3.8/src/edit_cache: phony libraries/glfw-3.3.8/src/CMakeFiles/edit_cache.util
|
||||||
|
|
||||||
|
|
||||||
|
#############################################
|
||||||
|
# Utility command for rebuild_cache
|
||||||
|
|
||||||
|
build libraries/glfw-3.3.8/src/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND
|
||||||
|
COMMAND = cd "/home/brett/Documents/Brock/CS 3P98/Final Project/cmake-build-debug/libraries/glfw-3.3.8/src" && /opt/netbrains/clion/clion-2022.1.3/bin/cmake/linux/bin/cmake --regenerate-during-build -S"/home/brett/Documents/Brock/CS 3P98/Final Project" -B"/home/brett/Documents/Brock/CS 3P98/Final Project/cmake-build-debug"
|
||||||
|
DESC = Running CMake to regenerate build system...
|
||||||
|
pool = console
|
||||||
|
restat = 1
|
||||||
|
|
||||||
|
build libraries/glfw-3.3.8/src/rebuild_cache: phony libraries/glfw-3.3.8/src/CMakeFiles/rebuild_cache.util
|
||||||
|
|
||||||
|
|
||||||
|
#############################################
|
||||||
|
# Utility command for list_install_components
|
||||||
|
|
||||||
|
build libraries/glfw-3.3.8/src/list_install_components: phony
|
||||||
|
|
||||||
|
|
||||||
|
#############################################
|
||||||
|
# Utility command for install
|
||||||
|
|
||||||
|
build libraries/glfw-3.3.8/src/CMakeFiles/install.util: CUSTOM_COMMAND libraries/glfw-3.3.8/src/all
|
||||||
|
COMMAND = cd "/home/brett/Documents/Brock/CS 3P98/Final Project/cmake-build-debug/libraries/glfw-3.3.8/src" && /opt/netbrains/clion/clion-2022.1.3/bin/cmake/linux/bin/cmake -P cmake_install.cmake
|
||||||
|
DESC = Install the project...
|
||||||
|
pool = console
|
||||||
|
restat = 1
|
||||||
|
|
||||||
|
build libraries/glfw-3.3.8/src/install: phony libraries/glfw-3.3.8/src/CMakeFiles/install.util
|
||||||
|
|
||||||
|
|
||||||
|
#############################################
|
||||||
|
# Utility command for install/local
|
||||||
|
|
||||||
|
build libraries/glfw-3.3.8/src/CMakeFiles/install/local.util: CUSTOM_COMMAND libraries/glfw-3.3.8/src/all
|
||||||
|
COMMAND = cd "/home/brett/Documents/Brock/CS 3P98/Final Project/cmake-build-debug/libraries/glfw-3.3.8/src" && /opt/netbrains/clion/clion-2022.1.3/bin/cmake/linux/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake
|
||||||
|
DESC = Installing only the local directory...
|
||||||
|
pool = console
|
||||||
|
restat = 1
|
||||||
|
|
||||||
|
build libraries/glfw-3.3.8/src/install/local: phony libraries/glfw-3.3.8/src/CMakeFiles/install/local.util
|
||||||
|
|
||||||
|
|
||||||
|
#############################################
|
||||||
|
# Utility command for install/strip
|
||||||
|
|
||||||
|
build libraries/glfw-3.3.8/src/CMakeFiles/install/strip.util: CUSTOM_COMMAND libraries/glfw-3.3.8/src/all
|
||||||
|
COMMAND = cd "/home/brett/Documents/Brock/CS 3P98/Final Project/cmake-build-debug/libraries/glfw-3.3.8/src" && /opt/netbrains/clion/clion-2022.1.3/bin/cmake/linux/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake
|
||||||
|
DESC = Installing the project stripped...
|
||||||
|
pool = console
|
||||||
|
restat = 1
|
||||||
|
|
||||||
|
build libraries/glfw-3.3.8/src/install/strip: phony libraries/glfw-3.3.8/src/CMakeFiles/install/strip.util
|
||||||
|
|
||||||
|
|
||||||
|
#############################################
|
||||||
|
# Custom command for libraries/glfw-3.3.8/src/CMakeFiles/update_mappings
|
||||||
|
|
||||||
|
build libraries/glfw-3.3.8/src/CMakeFiles/update_mappings | ${cmake_ninja_workdir}libraries/glfw-3.3.8/src/CMakeFiles/update_mappings: CUSTOM_COMMAND
|
||||||
|
COMMAND = cd "/home/brett/Documents/Brock/CS 3P98/Final Project/libraries/glfw-3.3.8/src" && /opt/netbrains/clion/clion-2022.1.3/bin/cmake/linux/bin/cmake -P "/home/brett/Documents/Brock/CS 3P98/Final Project/libraries/glfw-3.3.8/CMake/GenerateMappings.cmake" mappings.h.in mappings.h
|
||||||
|
DESC = Updating gamepad mappings from upstream repository
|
||||||
|
|
||||||
|
# =============================================================================
|
||||||
|
# Write statements declared in CMakeLists.txt:
|
||||||
|
# /home/brett/Documents/Brock/CS 3P98/Final Project/CMakeLists.txt
|
||||||
# =============================================================================
|
# =============================================================================
|
||||||
|
|
||||||
# =============================================================================
|
# =============================================================================
|
||||||
|
@ -117,41 +487,55 @@ build rebuild_cache: phony CMakeFiles/rebuild_cache.util
|
||||||
|
|
||||||
build cmake_object_order_depends_target_BLT: phony || libraries/BLT/CMakeFiles/BLT.dir
|
build cmake_object_order_depends_target_BLT: phony || libraries/BLT/CMakeFiles/BLT.dir
|
||||||
|
|
||||||
build libraries/BLT/CMakeFiles/BLT.dir/src/blt/std/queues.cpp.o: CXX_COMPILER__BLT_Debug /home/laptop/Documents/Brock/CS$ 3P98/Final$ Project/libraries/BLT/src/blt/std/queues.cpp || cmake_object_order_depends_target_BLT
|
build libraries/BLT/CMakeFiles/BLT.dir/src/blt/std/filesystem.cpp.o: CXX_COMPILER__BLT_Debug /home/brett/Documents/Brock/CS$ 3P98/Final$ Project/libraries/BLT/src/blt/std/filesystem.cpp || cmake_object_order_depends_target_BLT
|
||||||
DEP_FILE = libraries/BLT/CMakeFiles/BLT.dir/src/blt/std/queues.cpp.o.d
|
DEP_FILE = libraries/BLT/CMakeFiles/BLT.dir/src/blt/std/filesystem.cpp.o.d
|
||||||
FLAGS = -g -fdiagnostics-color=always
|
FLAGS = -fsanitize=address -g -g -fdiagnostics-color=always -fsanitize=address
|
||||||
INCLUDES = -I"/home/laptop/Documents/Brock/CS 3P98/Final Project/include" -I"/home/laptop/Documents/Brock/CS 3P98/Final Project/libraries/BLT/include"
|
INCLUDES = -I"/home/brett/Documents/Brock/CS 3P98/Final Project/include" -I"/home/brett/Documents/Brock/CS 3P98/Final Project/libraries/BLT/include" -I"/home/brett/Documents/Brock/CS 3P98/Final Project/cmake-build-debug/libraries/BLT/config"
|
||||||
OBJECT_DIR = libraries/BLT/CMakeFiles/BLT.dir
|
OBJECT_DIR = libraries/BLT/CMakeFiles/BLT.dir
|
||||||
OBJECT_FILE_DIR = libraries/BLT/CMakeFiles/BLT.dir/src/blt/std
|
OBJECT_FILE_DIR = libraries/BLT/CMakeFiles/BLT.dir/src/blt/std
|
||||||
|
|
||||||
build libraries/BLT/CMakeFiles/BLT.dir/src/blt/std/random.cpp.o: CXX_COMPILER__BLT_Debug /home/laptop/Documents/Brock/CS$ 3P98/Final$ Project/libraries/BLT/src/blt/std/random.cpp || cmake_object_order_depends_target_BLT
|
build libraries/BLT/CMakeFiles/BLT.dir/src/blt/std/format.cpp.o: CXX_COMPILER__BLT_Debug /home/brett/Documents/Brock/CS$ 3P98/Final$ Project/libraries/BLT/src/blt/std/format.cpp || cmake_object_order_depends_target_BLT
|
||||||
DEP_FILE = libraries/BLT/CMakeFiles/BLT.dir/src/blt/std/random.cpp.o.d
|
DEP_FILE = libraries/BLT/CMakeFiles/BLT.dir/src/blt/std/format.cpp.o.d
|
||||||
FLAGS = -g -fdiagnostics-color=always
|
FLAGS = -fsanitize=address -g -g -fdiagnostics-color=always -fsanitize=address
|
||||||
INCLUDES = -I"/home/laptop/Documents/Brock/CS 3P98/Final Project/include" -I"/home/laptop/Documents/Brock/CS 3P98/Final Project/libraries/BLT/include"
|
INCLUDES = -I"/home/brett/Documents/Brock/CS 3P98/Final Project/include" -I"/home/brett/Documents/Brock/CS 3P98/Final Project/libraries/BLT/include" -I"/home/brett/Documents/Brock/CS 3P98/Final Project/cmake-build-debug/libraries/BLT/config"
|
||||||
OBJECT_DIR = libraries/BLT/CMakeFiles/BLT.dir
|
OBJECT_DIR = libraries/BLT/CMakeFiles/BLT.dir
|
||||||
OBJECT_FILE_DIR = libraries/BLT/CMakeFiles/BLT.dir/src/blt/std
|
OBJECT_FILE_DIR = libraries/BLT/CMakeFiles/BLT.dir/src/blt/std
|
||||||
|
|
||||||
build libraries/BLT/CMakeFiles/BLT.dir/src/blt/std/string.cpp.o: CXX_COMPILER__BLT_Debug /home/laptop/Documents/Brock/CS$ 3P98/Final$ Project/libraries/BLT/src/blt/std/string.cpp || cmake_object_order_depends_target_BLT
|
build libraries/BLT/CMakeFiles/BLT.dir/src/blt/std/logging.cpp.o: CXX_COMPILER__BLT_Debug /home/brett/Documents/Brock/CS$ 3P98/Final$ Project/libraries/BLT/src/blt/std/logging.cpp || cmake_object_order_depends_target_BLT
|
||||||
DEP_FILE = libraries/BLT/CMakeFiles/BLT.dir/src/blt/std/string.cpp.o.d
|
DEP_FILE = libraries/BLT/CMakeFiles/BLT.dir/src/blt/std/logging.cpp.o.d
|
||||||
FLAGS = -g -fdiagnostics-color=always
|
FLAGS = -fsanitize=address -g -g -fdiagnostics-color=always -fsanitize=address
|
||||||
INCLUDES = -I"/home/laptop/Documents/Brock/CS 3P98/Final Project/include" -I"/home/laptop/Documents/Brock/CS 3P98/Final Project/libraries/BLT/include"
|
INCLUDES = -I"/home/brett/Documents/Brock/CS 3P98/Final Project/include" -I"/home/brett/Documents/Brock/CS 3P98/Final Project/libraries/BLT/include" -I"/home/brett/Documents/Brock/CS 3P98/Final Project/cmake-build-debug/libraries/BLT/config"
|
||||||
OBJECT_DIR = libraries/BLT/CMakeFiles/BLT.dir
|
OBJECT_DIR = libraries/BLT/CMakeFiles/BLT.dir
|
||||||
OBJECT_FILE_DIR = libraries/BLT/CMakeFiles/BLT.dir/src/blt/std
|
OBJECT_FILE_DIR = libraries/BLT/CMakeFiles/BLT.dir/src/blt/std
|
||||||
|
|
||||||
build libraries/BLT/CMakeFiles/BLT.dir/src/blt/std/system.cpp.o: CXX_COMPILER__BLT_Debug /home/laptop/Documents/Brock/CS$ 3P98/Final$ Project/libraries/BLT/src/blt/std/system.cpp || cmake_object_order_depends_target_BLT
|
build libraries/BLT/CMakeFiles/BLT.dir/src/blt/std/system.cpp.o: CXX_COMPILER__BLT_Debug /home/brett/Documents/Brock/CS$ 3P98/Final$ Project/libraries/BLT/src/blt/std/system.cpp || cmake_object_order_depends_target_BLT
|
||||||
DEP_FILE = libraries/BLT/CMakeFiles/BLT.dir/src/blt/std/system.cpp.o.d
|
DEP_FILE = libraries/BLT/CMakeFiles/BLT.dir/src/blt/std/system.cpp.o.d
|
||||||
FLAGS = -g -fdiagnostics-color=always
|
FLAGS = -fsanitize=address -g -g -fdiagnostics-color=always -fsanitize=address
|
||||||
INCLUDES = -I"/home/laptop/Documents/Brock/CS 3P98/Final Project/include" -I"/home/laptop/Documents/Brock/CS 3P98/Final Project/libraries/BLT/include"
|
INCLUDES = -I"/home/brett/Documents/Brock/CS 3P98/Final Project/include" -I"/home/brett/Documents/Brock/CS 3P98/Final Project/libraries/BLT/include" -I"/home/brett/Documents/Brock/CS 3P98/Final Project/cmake-build-debug/libraries/BLT/config"
|
||||||
OBJECT_DIR = libraries/BLT/CMakeFiles/BLT.dir
|
OBJECT_DIR = libraries/BLT/CMakeFiles/BLT.dir
|
||||||
OBJECT_FILE_DIR = libraries/BLT/CMakeFiles/BLT.dir/src/blt/std
|
OBJECT_FILE_DIR = libraries/BLT/CMakeFiles/BLT.dir/src/blt/std
|
||||||
|
|
||||||
build libraries/BLT/CMakeFiles/BLT.dir/src/blt/profiling/profiler.cpp.o: CXX_COMPILER__BLT_Debug /home/laptop/Documents/Brock/CS$ 3P98/Final$ Project/libraries/BLT/src/blt/profiling/profiler.cpp || cmake_object_order_depends_target_BLT
|
build libraries/BLT/CMakeFiles/BLT.dir/src/blt/profiling/profiler.cpp.o: CXX_COMPILER__BLT_Debug /home/brett/Documents/Brock/CS$ 3P98/Final$ Project/libraries/BLT/src/blt/profiling/profiler.cpp || cmake_object_order_depends_target_BLT
|
||||||
DEP_FILE = libraries/BLT/CMakeFiles/BLT.dir/src/blt/profiling/profiler.cpp.o.d
|
DEP_FILE = libraries/BLT/CMakeFiles/BLT.dir/src/blt/profiling/profiler.cpp.o.d
|
||||||
FLAGS = -g -fdiagnostics-color=always
|
FLAGS = -fsanitize=address -g -g -fdiagnostics-color=always -fsanitize=address
|
||||||
INCLUDES = -I"/home/laptop/Documents/Brock/CS 3P98/Final Project/include" -I"/home/laptop/Documents/Brock/CS 3P98/Final Project/libraries/BLT/include"
|
INCLUDES = -I"/home/brett/Documents/Brock/CS 3P98/Final Project/include" -I"/home/brett/Documents/Brock/CS 3P98/Final Project/libraries/BLT/include" -I"/home/brett/Documents/Brock/CS 3P98/Final Project/cmake-build-debug/libraries/BLT/config"
|
||||||
OBJECT_DIR = libraries/BLT/CMakeFiles/BLT.dir
|
OBJECT_DIR = libraries/BLT/CMakeFiles/BLT.dir
|
||||||
OBJECT_FILE_DIR = libraries/BLT/CMakeFiles/BLT.dir/src/blt/profiling
|
OBJECT_FILE_DIR = libraries/BLT/CMakeFiles/BLT.dir/src/blt/profiling
|
||||||
|
|
||||||
|
build libraries/BLT/CMakeFiles/BLT.dir/src/blt/nbt/nbt.cpp.o: CXX_COMPILER__BLT_Debug /home/brett/Documents/Brock/CS$ 3P98/Final$ Project/libraries/BLT/src/blt/nbt/nbt.cpp || cmake_object_order_depends_target_BLT
|
||||||
|
DEP_FILE = libraries/BLT/CMakeFiles/BLT.dir/src/blt/nbt/nbt.cpp.o.d
|
||||||
|
FLAGS = -fsanitize=address -g -g -fdiagnostics-color=always -fsanitize=address
|
||||||
|
INCLUDES = -I"/home/brett/Documents/Brock/CS 3P98/Final Project/include" -I"/home/brett/Documents/Brock/CS 3P98/Final Project/libraries/BLT/include" -I"/home/brett/Documents/Brock/CS 3P98/Final Project/cmake-build-debug/libraries/BLT/config"
|
||||||
|
OBJECT_DIR = libraries/BLT/CMakeFiles/BLT.dir
|
||||||
|
OBJECT_FILE_DIR = libraries/BLT/CMakeFiles/BLT.dir/src/blt/nbt
|
||||||
|
|
||||||
|
build libraries/BLT/CMakeFiles/BLT.dir/src/blt/nbt/nbt_block.cpp.o: CXX_COMPILER__BLT_Debug /home/brett/Documents/Brock/CS$ 3P98/Final$ Project/libraries/BLT/src/blt/nbt/nbt_block.cpp || cmake_object_order_depends_target_BLT
|
||||||
|
DEP_FILE = libraries/BLT/CMakeFiles/BLT.dir/src/blt/nbt/nbt_block.cpp.o.d
|
||||||
|
FLAGS = -fsanitize=address -g -g -fdiagnostics-color=always -fsanitize=address
|
||||||
|
INCLUDES = -I"/home/brett/Documents/Brock/CS 3P98/Final Project/include" -I"/home/brett/Documents/Brock/CS 3P98/Final Project/libraries/BLT/include" -I"/home/brett/Documents/Brock/CS 3P98/Final Project/cmake-build-debug/libraries/BLT/config"
|
||||||
|
OBJECT_DIR = libraries/BLT/CMakeFiles/BLT.dir
|
||||||
|
OBJECT_FILE_DIR = libraries/BLT/CMakeFiles/BLT.dir/src/blt/nbt
|
||||||
|
|
||||||
|
|
||||||
# =============================================================================
|
# =============================================================================
|
||||||
# Link build statements for STATIC_LIBRARY target BLT
|
# Link build statements for STATIC_LIBRARY target BLT
|
||||||
|
@ -160,8 +544,8 @@ build libraries/BLT/CMakeFiles/BLT.dir/src/blt/profiling/profiler.cpp.o: CXX_COM
|
||||||
#############################################
|
#############################################
|
||||||
# Link the static library libraries/BLT/libBLT.a
|
# Link the static library libraries/BLT/libBLT.a
|
||||||
|
|
||||||
build libraries/BLT/libBLT.a: CXX_STATIC_LIBRARY_LINKER__BLT_Debug libraries/BLT/CMakeFiles/BLT.dir/src/blt/std/queues.cpp.o libraries/BLT/CMakeFiles/BLT.dir/src/blt/std/random.cpp.o libraries/BLT/CMakeFiles/BLT.dir/src/blt/std/string.cpp.o libraries/BLT/CMakeFiles/BLT.dir/src/blt/std/system.cpp.o libraries/BLT/CMakeFiles/BLT.dir/src/blt/profiling/profiler.cpp.o
|
build libraries/BLT/libBLT.a: CXX_STATIC_LIBRARY_LINKER__BLT_Debug libraries/BLT/CMakeFiles/BLT.dir/src/blt/std/filesystem.cpp.o libraries/BLT/CMakeFiles/BLT.dir/src/blt/std/format.cpp.o libraries/BLT/CMakeFiles/BLT.dir/src/blt/std/logging.cpp.o libraries/BLT/CMakeFiles/BLT.dir/src/blt/std/system.cpp.o libraries/BLT/CMakeFiles/BLT.dir/src/blt/profiling/profiler.cpp.o libraries/BLT/CMakeFiles/BLT.dir/src/blt/nbt/nbt.cpp.o libraries/BLT/CMakeFiles/BLT.dir/src/blt/nbt/nbt_block.cpp.o
|
||||||
LANGUAGE_COMPILE_FLAGS = -g
|
LANGUAGE_COMPILE_FLAGS = -fsanitize=address -g -g
|
||||||
OBJECT_DIR = libraries/BLT/CMakeFiles/BLT.dir
|
OBJECT_DIR = libraries/BLT/CMakeFiles/BLT.dir
|
||||||
POST_BUILD = :
|
POST_BUILD = :
|
||||||
PRE_LINK = :
|
PRE_LINK = :
|
||||||
|
@ -173,7 +557,7 @@ build libraries/BLT/libBLT.a: CXX_STATIC_LIBRARY_LINKER__BLT_Debug libraries/BLT
|
||||||
# Utility command for edit_cache
|
# Utility command for edit_cache
|
||||||
|
|
||||||
build libraries/BLT/CMakeFiles/edit_cache.util: CUSTOM_COMMAND
|
build libraries/BLT/CMakeFiles/edit_cache.util: CUSTOM_COMMAND
|
||||||
COMMAND = cd "/home/laptop/Documents/Brock/CS 3P98/Final Project/cmake-build-debug/libraries/BLT" && /home/laptop/Documents/clion/clion-2021.3.3/bin/cmake/linux/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available.
|
COMMAND = cd "/home/brett/Documents/Brock/CS 3P98/Final Project/cmake-build-debug/libraries/BLT" && /opt/netbrains/clion/clion-2022.1.3/bin/cmake/linux/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available.
|
||||||
DESC = No interactive CMake dialog available...
|
DESC = No interactive CMake dialog available...
|
||||||
restat = 1
|
restat = 1
|
||||||
|
|
||||||
|
@ -184,37 +568,106 @@ build libraries/BLT/edit_cache: phony libraries/BLT/CMakeFiles/edit_cache.util
|
||||||
# Utility command for rebuild_cache
|
# Utility command for rebuild_cache
|
||||||
|
|
||||||
build libraries/BLT/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND
|
build libraries/BLT/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND
|
||||||
COMMAND = cd "/home/laptop/Documents/Brock/CS 3P98/Final Project/cmake-build-debug/libraries/BLT" && /home/laptop/Documents/clion/clion-2021.3.3/bin/cmake/linux/bin/cmake --regenerate-during-build -S"/home/laptop/Documents/Brock/CS 3P98/Final Project" -B"/home/laptop/Documents/Brock/CS 3P98/Final Project/cmake-build-debug"
|
COMMAND = cd "/home/brett/Documents/Brock/CS 3P98/Final Project/cmake-build-debug/libraries/BLT" && /opt/netbrains/clion/clion-2022.1.3/bin/cmake/linux/bin/cmake --regenerate-during-build -S"/home/brett/Documents/Brock/CS 3P98/Final Project" -B"/home/brett/Documents/Brock/CS 3P98/Final Project/cmake-build-debug"
|
||||||
DESC = Running CMake to regenerate build system...
|
DESC = Running CMake to regenerate build system...
|
||||||
pool = console
|
pool = console
|
||||||
restat = 1
|
restat = 1
|
||||||
|
|
||||||
build libraries/BLT/rebuild_cache: phony libraries/BLT/CMakeFiles/rebuild_cache.util
|
build libraries/BLT/rebuild_cache: phony libraries/BLT/CMakeFiles/rebuild_cache.util
|
||||||
|
|
||||||
|
|
||||||
|
#############################################
|
||||||
|
# Utility command for list_install_components
|
||||||
|
|
||||||
|
build libraries/BLT/list_install_components: phony
|
||||||
|
|
||||||
|
|
||||||
|
#############################################
|
||||||
|
# Utility command for install
|
||||||
|
|
||||||
|
build libraries/BLT/CMakeFiles/install.util: CUSTOM_COMMAND libraries/BLT/all
|
||||||
|
COMMAND = cd "/home/brett/Documents/Brock/CS 3P98/Final Project/cmake-build-debug/libraries/BLT" && /opt/netbrains/clion/clion-2022.1.3/bin/cmake/linux/bin/cmake -P cmake_install.cmake
|
||||||
|
DESC = Install the project...
|
||||||
|
pool = console
|
||||||
|
restat = 1
|
||||||
|
|
||||||
|
build libraries/BLT/install: phony libraries/BLT/CMakeFiles/install.util
|
||||||
|
|
||||||
|
|
||||||
|
#############################################
|
||||||
|
# Utility command for install/local
|
||||||
|
|
||||||
|
build libraries/BLT/CMakeFiles/install/local.util: CUSTOM_COMMAND libraries/BLT/all
|
||||||
|
COMMAND = cd "/home/brett/Documents/Brock/CS 3P98/Final Project/cmake-build-debug/libraries/BLT" && /opt/netbrains/clion/clion-2022.1.3/bin/cmake/linux/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake
|
||||||
|
DESC = Installing only the local directory...
|
||||||
|
pool = console
|
||||||
|
restat = 1
|
||||||
|
|
||||||
|
build libraries/BLT/install/local: phony libraries/BLT/CMakeFiles/install/local.util
|
||||||
|
|
||||||
|
|
||||||
|
#############################################
|
||||||
|
# Utility command for install/strip
|
||||||
|
|
||||||
|
build libraries/BLT/CMakeFiles/install/strip.util: CUSTOM_COMMAND libraries/BLT/all
|
||||||
|
COMMAND = cd "/home/brett/Documents/Brock/CS 3P98/Final Project/cmake-build-debug/libraries/BLT" && /opt/netbrains/clion/clion-2022.1.3/bin/cmake/linux/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake
|
||||||
|
DESC = Installing the project stripped...
|
||||||
|
pool = console
|
||||||
|
restat = 1
|
||||||
|
|
||||||
|
build libraries/BLT/install/strip: phony libraries/BLT/CMakeFiles/install/strip.util
|
||||||
|
|
||||||
# =============================================================================
|
# =============================================================================
|
||||||
# Target aliases.
|
# Target aliases.
|
||||||
|
|
||||||
build BLT: phony libraries/BLT/libBLT.a
|
build BLT: phony libraries/BLT/libBLT.a
|
||||||
|
|
||||||
|
build glfw: phony libraries/glfw-3.3.8/src/libglfw3.a
|
||||||
|
|
||||||
build libBLT.a: phony libraries/BLT/libBLT.a
|
build libBLT.a: phony libraries/BLT/libBLT.a
|
||||||
|
|
||||||
|
build libglfw3.a: phony libraries/glfw-3.3.8/src/libglfw3.a
|
||||||
|
|
||||||
|
build uninstall: phony libraries/glfw-3.3.8/uninstall
|
||||||
|
|
||||||
|
build update_mappings: phony libraries/glfw-3.3.8/src/update_mappings
|
||||||
|
|
||||||
# =============================================================================
|
# =============================================================================
|
||||||
# Folder targets.
|
# Folder targets.
|
||||||
|
|
||||||
# =============================================================================
|
# =============================================================================
|
||||||
|
|
||||||
#############################################
|
#############################################
|
||||||
# Folder: /home/laptop/Documents/Brock/CS 3P98/Final Project/cmake-build-debug
|
# Folder: /home/brett/Documents/Brock/CS 3P98/Final Project/cmake-build-debug
|
||||||
|
|
||||||
build all: phony Final_Project libraries/BLT/all
|
build all: phony FinalProject libraries/glfw-3.3.8/all libraries/BLT/all
|
||||||
|
|
||||||
# =============================================================================
|
# =============================================================================
|
||||||
|
|
||||||
#############################################
|
#############################################
|
||||||
# Folder: /home/laptop/Documents/Brock/CS 3P98/Final Project/cmake-build-debug/libraries/BLT
|
# Folder: /home/brett/Documents/Brock/CS 3P98/Final Project/cmake-build-debug/libraries/BLT
|
||||||
|
|
||||||
build libraries/BLT/all: phony libraries/BLT/libBLT.a
|
build libraries/BLT/all: phony libraries/BLT/libBLT.a
|
||||||
|
|
||||||
|
# =============================================================================
|
||||||
|
|
||||||
|
#############################################
|
||||||
|
# Folder: /home/brett/Documents/Brock/CS 3P98/Final Project/cmake-build-debug/libraries/glfw-3.3.8
|
||||||
|
|
||||||
|
build libraries/glfw-3.3.8/all: phony libraries/glfw-3.3.8/src/all
|
||||||
|
|
||||||
|
# =============================================================================
|
||||||
|
|
||||||
|
#############################################
|
||||||
|
# Folder: /home/brett/Documents/Brock/CS 3P98/Final Project/cmake-build-debug/libraries/glfw-3.3.8/src
|
||||||
|
|
||||||
|
build libraries/glfw-3.3.8/src/all: phony libraries/glfw-3.3.8/src/libglfw3.a
|
||||||
|
|
||||||
|
# =============================================================================
|
||||||
|
# Unknown Build Time Dependencies.
|
||||||
|
# Tell Ninja that they may appear as side effects of build rules
|
||||||
|
# otherwise ordered by order-only dependencies.
|
||||||
|
|
||||||
# =============================================================================
|
# =============================================================================
|
||||||
# Built-in targets
|
# Built-in targets
|
||||||
|
|
||||||
|
@ -222,14 +675,14 @@ build libraries/BLT/all: phony libraries/BLT/libBLT.a
|
||||||
#############################################
|
#############################################
|
||||||
# Re-run CMake if any of its inputs changed.
|
# Re-run CMake if any of its inputs changed.
|
||||||
|
|
||||||
build build.ninja: RERUN_CMAKE | /home/laptop/Documents/Brock/CS$ 3P98/Final$ Project/CMakeLists.txt /home/laptop/Documents/Brock/CS$ 3P98/Final$ Project/libraries/BLT/CMakeLists.txt /home/laptop/Documents/clion/clion-2021.3.3/bin/cmake/linux/share/cmake-3.24/Modules/CMakeCInformation.cmake /home/laptop/Documents/clion/clion-2021.3.3/bin/cmake/linux/share/cmake-3.24/Modules/CMakeCXXInformation.cmake /home/laptop/Documents/clion/clion-2021.3.3/bin/cmake/linux/share/cmake-3.24/Modules/CMakeCommonLanguageInclude.cmake /home/laptop/Documents/clion/clion-2021.3.3/bin/cmake/linux/share/cmake-3.24/Modules/CMakeGenericSystem.cmake /home/laptop/Documents/clion/clion-2021.3.3/bin/cmake/linux/share/cmake-3.24/Modules/CMakeInitializeConfigs.cmake /home/laptop/Documents/clion/clion-2021.3.3/bin/cmake/linux/share/cmake-3.24/Modules/CMakeLanguageInformation.cmake /home/laptop/Documents/clion/clion-2021.3.3/bin/cmake/linux/share/cmake-3.24/Modules/CMakeSystemSpecificInformation.cmake /home/laptop/Documents/clion/clion-2021.3.3/bin/cmake/linux/share/cmake-3.24/Modules/CMakeSystemSpecificInitialize.cmake /home/laptop/Documents/clion/clion-2021.3.3/bin/cmake/linux/share/cmake-3.24/Modules/Compiler/CMakeCommonCompilerMacros.cmake /home/laptop/Documents/clion/clion-2021.3.3/bin/cmake/linux/share/cmake-3.24/Modules/Compiler/GNU-C.cmake /home/laptop/Documents/clion/clion-2021.3.3/bin/cmake/linux/share/cmake-3.24/Modules/Compiler/GNU-CXX.cmake /home/laptop/Documents/clion/clion-2021.3.3/bin/cmake/linux/share/cmake-3.24/Modules/Compiler/GNU.cmake /home/laptop/Documents/clion/clion-2021.3.3/bin/cmake/linux/share/cmake-3.24/Modules/FindGLUT.cmake /home/laptop/Documents/clion/clion-2021.3.3/bin/cmake/linux/share/cmake-3.24/Modules/FindPackageHandleStandardArgs.cmake /home/laptop/Documents/clion/clion-2021.3.3/bin/cmake/linux/share/cmake-3.24/Modules/FindPackageMessage.cmake /home/laptop/Documents/clion/clion-2021.3.3/bin/cmake/linux/share/cmake-3.24/Modules/FindPkgConfig.cmake /home/laptop/Documents/clion/clion-2021.3.3/bin/cmake/linux/share/cmake-3.24/Modules/Platform/Linux-GNU-C.cmake /home/laptop/Documents/clion/clion-2021.3.3/bin/cmake/linux/share/cmake-3.24/Modules/Platform/Linux-GNU-CXX.cmake /home/laptop/Documents/clion/clion-2021.3.3/bin/cmake/linux/share/cmake-3.24/Modules/Platform/Linux-GNU.cmake /home/laptop/Documents/clion/clion-2021.3.3/bin/cmake/linux/share/cmake-3.24/Modules/Platform/Linux.cmake /home/laptop/Documents/clion/clion-2021.3.3/bin/cmake/linux/share/cmake-3.24/Modules/Platform/UnixPaths.cmake /home/laptop/Documents/clion/clion-2021.3.3/bin/cmake/linux/share/cmake-3.24/Modules/SelectLibraryConfigurations.cmake CMakeCache.txt CMakeFiles/3.24.2/CMakeCCompiler.cmake CMakeFiles/3.24.2/CMakeCXXCompiler.cmake CMakeFiles/3.24.2/CMakeSystem.cmake
|
build build.ninja: RERUN_CMAKE | /home/brett/Documents/Brock/CS$ 3P98/Final$ Project/CMakeLists.txt /home/brett/Documents/Brock/CS$ 3P98/Final$ Project/libraries/BLT/CMakeLists.txt /home/brett/Documents/Brock/CS$ 3P98/Final$ Project/libraries/BLT/include/blt/config.h.in /home/brett/Documents/Brock/CS$ 3P98/Final$ Project/libraries/glfw-3.3.8/CMakeLists.txt /home/brett/Documents/Brock/CS$ 3P98/Final$ Project/libraries/glfw-3.3.8/cmake_uninstall.cmake.in /home/brett/Documents/Brock/CS$ 3P98/Final$ Project/libraries/glfw-3.3.8/src/CMakeLists.txt /home/brett/Documents/Brock/CS$ 3P98/Final$ Project/libraries/glfw-3.3.8/src/glfw3.pc.in /home/brett/Documents/Brock/CS$ 3P98/Final$ Project/libraries/glfw-3.3.8/src/glfw3Config.cmake.in /home/brett/Documents/Brock/CS$ 3P98/Final$ Project/libraries/glfw-3.3.8/src/glfw_config.h.in /opt/netbrains/clion/clion-2022.1.3/bin/cmake/linux/share/cmake-3.24/Modules/BasicConfigVersion-SameMajorVersion.cmake.in /opt/netbrains/clion/clion-2022.1.3/bin/cmake/linux/share/cmake-3.24/Modules/CMakeCInformation.cmake /opt/netbrains/clion/clion-2022.1.3/bin/cmake/linux/share/cmake-3.24/Modules/CMakeCXXInformation.cmake /opt/netbrains/clion/clion-2022.1.3/bin/cmake/linux/share/cmake-3.24/Modules/CMakeCommonLanguageInclude.cmake /opt/netbrains/clion/clion-2022.1.3/bin/cmake/linux/share/cmake-3.24/Modules/CMakeDependentOption.cmake /opt/netbrains/clion/clion-2022.1.3/bin/cmake/linux/share/cmake-3.24/Modules/CMakeGenericSystem.cmake /opt/netbrains/clion/clion-2022.1.3/bin/cmake/linux/share/cmake-3.24/Modules/CMakeInitializeConfigs.cmake /opt/netbrains/clion/clion-2022.1.3/bin/cmake/linux/share/cmake-3.24/Modules/CMakeLanguageInformation.cmake /opt/netbrains/clion/clion-2022.1.3/bin/cmake/linux/share/cmake-3.24/Modules/CMakePackageConfigHelpers.cmake /opt/netbrains/clion/clion-2022.1.3/bin/cmake/linux/share/cmake-3.24/Modules/CMakeSystemSpecificInformation.cmake /opt/netbrains/clion/clion-2022.1.3/bin/cmake/linux/share/cmake-3.24/Modules/CMakeSystemSpecificInitialize.cmake /opt/netbrains/clion/clion-2022.1.3/bin/cmake/linux/share/cmake-3.24/Modules/CheckCSourceCompiles.cmake /opt/netbrains/clion/clion-2022.1.3/bin/cmake/linux/share/cmake-3.24/Modules/CheckFunctionExists.cmake /opt/netbrains/clion/clion-2022.1.3/bin/cmake/linux/share/cmake-3.24/Modules/CheckIncludeFile.cmake /opt/netbrains/clion/clion-2022.1.3/bin/cmake/linux/share/cmake-3.24/Modules/CheckLibraryExists.cmake /opt/netbrains/clion/clion-2022.1.3/bin/cmake/linux/share/cmake-3.24/Modules/Compiler/CMakeCommonCompilerMacros.cmake /opt/netbrains/clion/clion-2022.1.3/bin/cmake/linux/share/cmake-3.24/Modules/Compiler/GNU-C.cmake /opt/netbrains/clion/clion-2022.1.3/bin/cmake/linux/share/cmake-3.24/Modules/Compiler/GNU-CXX.cmake /opt/netbrains/clion/clion-2022.1.3/bin/cmake/linux/share/cmake-3.24/Modules/Compiler/GNU.cmake /opt/netbrains/clion/clion-2022.1.3/bin/cmake/linux/share/cmake-3.24/Modules/FindFontconfig.cmake /opt/netbrains/clion/clion-2022.1.3/bin/cmake/linux/share/cmake-3.24/Modules/FindFreetype.cmake /opt/netbrains/clion/clion-2022.1.3/bin/cmake/linux/share/cmake-3.24/Modules/FindPackageHandleStandardArgs.cmake /opt/netbrains/clion/clion-2022.1.3/bin/cmake/linux/share/cmake-3.24/Modules/FindPackageMessage.cmake /opt/netbrains/clion/clion-2022.1.3/bin/cmake/linux/share/cmake-3.24/Modules/FindPkgConfig.cmake /opt/netbrains/clion/clion-2022.1.3/bin/cmake/linux/share/cmake-3.24/Modules/FindThreads.cmake /opt/netbrains/clion/clion-2022.1.3/bin/cmake/linux/share/cmake-3.24/Modules/FindX11.cmake /opt/netbrains/clion/clion-2022.1.3/bin/cmake/linux/share/cmake-3.24/Modules/FindZLIB.cmake /opt/netbrains/clion/clion-2022.1.3/bin/cmake/linux/share/cmake-3.24/Modules/GNUInstallDirs.cmake /opt/netbrains/clion/clion-2022.1.3/bin/cmake/linux/share/cmake-3.24/Modules/Internal/CheckSourceCompiles.cmake /opt/netbrains/clion/clion-2022.1.3/bin/cmake/linux/share/cmake-3.24/Modules/Platform/Linux-GNU-C.cmake /opt/netbrains/clion/clion-2022.1.3/bin/cmake/linux/share/cmake-3.24/Modules/Platform/Linux-GNU-CXX.cmake /opt/netbrains/clion/clion-2022.1.3/bin/cmake/linux/share/cmake-3.24/Modules/Platform/Linux-GNU.cmake /opt/netbrains/clion/clion-2022.1.3/bin/cmake/linux/share/cmake-3.24/Modules/Platform/Linux.cmake /opt/netbrains/clion/clion-2022.1.3/bin/cmake/linux/share/cmake-3.24/Modules/Platform/UnixPaths.cmake /opt/netbrains/clion/clion-2022.1.3/bin/cmake/linux/share/cmake-3.24/Modules/SelectLibraryConfigurations.cmake /opt/netbrains/clion/clion-2022.1.3/bin/cmake/linux/share/cmake-3.24/Modules/WriteBasicConfigVersionFile.cmake CMakeCache.txt CMakeFiles/3.24.2/CMakeCCompiler.cmake CMakeFiles/3.24.2/CMakeCXXCompiler.cmake CMakeFiles/3.24.2/CMakeSystem.cmake
|
||||||
pool = console
|
pool = console
|
||||||
|
|
||||||
|
|
||||||
#############################################
|
#############################################
|
||||||
# A missing CMake input file is not an error.
|
# A missing CMake input file is not an error.
|
||||||
|
|
||||||
build /home/laptop/Documents/Brock/CS$ 3P98/Final$ Project/CMakeLists.txt /home/laptop/Documents/Brock/CS$ 3P98/Final$ Project/libraries/BLT/CMakeLists.txt /home/laptop/Documents/clion/clion-2021.3.3/bin/cmake/linux/share/cmake-3.24/Modules/CMakeCInformation.cmake /home/laptop/Documents/clion/clion-2021.3.3/bin/cmake/linux/share/cmake-3.24/Modules/CMakeCXXInformation.cmake /home/laptop/Documents/clion/clion-2021.3.3/bin/cmake/linux/share/cmake-3.24/Modules/CMakeCommonLanguageInclude.cmake /home/laptop/Documents/clion/clion-2021.3.3/bin/cmake/linux/share/cmake-3.24/Modules/CMakeGenericSystem.cmake /home/laptop/Documents/clion/clion-2021.3.3/bin/cmake/linux/share/cmake-3.24/Modules/CMakeInitializeConfigs.cmake /home/laptop/Documents/clion/clion-2021.3.3/bin/cmake/linux/share/cmake-3.24/Modules/CMakeLanguageInformation.cmake /home/laptop/Documents/clion/clion-2021.3.3/bin/cmake/linux/share/cmake-3.24/Modules/CMakeSystemSpecificInformation.cmake /home/laptop/Documents/clion/clion-2021.3.3/bin/cmake/linux/share/cmake-3.24/Modules/CMakeSystemSpecificInitialize.cmake /home/laptop/Documents/clion/clion-2021.3.3/bin/cmake/linux/share/cmake-3.24/Modules/Compiler/CMakeCommonCompilerMacros.cmake /home/laptop/Documents/clion/clion-2021.3.3/bin/cmake/linux/share/cmake-3.24/Modules/Compiler/GNU-C.cmake /home/laptop/Documents/clion/clion-2021.3.3/bin/cmake/linux/share/cmake-3.24/Modules/Compiler/GNU-CXX.cmake /home/laptop/Documents/clion/clion-2021.3.3/bin/cmake/linux/share/cmake-3.24/Modules/Compiler/GNU.cmake /home/laptop/Documents/clion/clion-2021.3.3/bin/cmake/linux/share/cmake-3.24/Modules/FindGLUT.cmake /home/laptop/Documents/clion/clion-2021.3.3/bin/cmake/linux/share/cmake-3.24/Modules/FindPackageHandleStandardArgs.cmake /home/laptop/Documents/clion/clion-2021.3.3/bin/cmake/linux/share/cmake-3.24/Modules/FindPackageMessage.cmake /home/laptop/Documents/clion/clion-2021.3.3/bin/cmake/linux/share/cmake-3.24/Modules/FindPkgConfig.cmake /home/laptop/Documents/clion/clion-2021.3.3/bin/cmake/linux/share/cmake-3.24/Modules/Platform/Linux-GNU-C.cmake /home/laptop/Documents/clion/clion-2021.3.3/bin/cmake/linux/share/cmake-3.24/Modules/Platform/Linux-GNU-CXX.cmake /home/laptop/Documents/clion/clion-2021.3.3/bin/cmake/linux/share/cmake-3.24/Modules/Platform/Linux-GNU.cmake /home/laptop/Documents/clion/clion-2021.3.3/bin/cmake/linux/share/cmake-3.24/Modules/Platform/Linux.cmake /home/laptop/Documents/clion/clion-2021.3.3/bin/cmake/linux/share/cmake-3.24/Modules/Platform/UnixPaths.cmake /home/laptop/Documents/clion/clion-2021.3.3/bin/cmake/linux/share/cmake-3.24/Modules/SelectLibraryConfigurations.cmake CMakeCache.txt CMakeFiles/3.24.2/CMakeCCompiler.cmake CMakeFiles/3.24.2/CMakeCXXCompiler.cmake CMakeFiles/3.24.2/CMakeSystem.cmake: phony
|
build /home/brett/Documents/Brock/CS$ 3P98/Final$ Project/CMakeLists.txt /home/brett/Documents/Brock/CS$ 3P98/Final$ Project/libraries/BLT/CMakeLists.txt /home/brett/Documents/Brock/CS$ 3P98/Final$ Project/libraries/BLT/include/blt/config.h.in /home/brett/Documents/Brock/CS$ 3P98/Final$ Project/libraries/glfw-3.3.8/CMakeLists.txt /home/brett/Documents/Brock/CS$ 3P98/Final$ Project/libraries/glfw-3.3.8/cmake_uninstall.cmake.in /home/brett/Documents/Brock/CS$ 3P98/Final$ Project/libraries/glfw-3.3.8/src/CMakeLists.txt /home/brett/Documents/Brock/CS$ 3P98/Final$ Project/libraries/glfw-3.3.8/src/glfw3.pc.in /home/brett/Documents/Brock/CS$ 3P98/Final$ Project/libraries/glfw-3.3.8/src/glfw3Config.cmake.in /home/brett/Documents/Brock/CS$ 3P98/Final$ Project/libraries/glfw-3.3.8/src/glfw_config.h.in /opt/netbrains/clion/clion-2022.1.3/bin/cmake/linux/share/cmake-3.24/Modules/BasicConfigVersion-SameMajorVersion.cmake.in /opt/netbrains/clion/clion-2022.1.3/bin/cmake/linux/share/cmake-3.24/Modules/CMakeCInformation.cmake /opt/netbrains/clion/clion-2022.1.3/bin/cmake/linux/share/cmake-3.24/Modules/CMakeCXXInformation.cmake /opt/netbrains/clion/clion-2022.1.3/bin/cmake/linux/share/cmake-3.24/Modules/CMakeCommonLanguageInclude.cmake /opt/netbrains/clion/clion-2022.1.3/bin/cmake/linux/share/cmake-3.24/Modules/CMakeDependentOption.cmake /opt/netbrains/clion/clion-2022.1.3/bin/cmake/linux/share/cmake-3.24/Modules/CMakeGenericSystem.cmake /opt/netbrains/clion/clion-2022.1.3/bin/cmake/linux/share/cmake-3.24/Modules/CMakeInitializeConfigs.cmake /opt/netbrains/clion/clion-2022.1.3/bin/cmake/linux/share/cmake-3.24/Modules/CMakeLanguageInformation.cmake /opt/netbrains/clion/clion-2022.1.3/bin/cmake/linux/share/cmake-3.24/Modules/CMakePackageConfigHelpers.cmake /opt/netbrains/clion/clion-2022.1.3/bin/cmake/linux/share/cmake-3.24/Modules/CMakeSystemSpecificInformation.cmake /opt/netbrains/clion/clion-2022.1.3/bin/cmake/linux/share/cmake-3.24/Modules/CMakeSystemSpecificInitialize.cmake /opt/netbrains/clion/clion-2022.1.3/bin/cmake/linux/share/cmake-3.24/Modules/CheckCSourceCompiles.cmake /opt/netbrains/clion/clion-2022.1.3/bin/cmake/linux/share/cmake-3.24/Modules/CheckFunctionExists.cmake /opt/netbrains/clion/clion-2022.1.3/bin/cmake/linux/share/cmake-3.24/Modules/CheckIncludeFile.cmake /opt/netbrains/clion/clion-2022.1.3/bin/cmake/linux/share/cmake-3.24/Modules/CheckLibraryExists.cmake /opt/netbrains/clion/clion-2022.1.3/bin/cmake/linux/share/cmake-3.24/Modules/Compiler/CMakeCommonCompilerMacros.cmake /opt/netbrains/clion/clion-2022.1.3/bin/cmake/linux/share/cmake-3.24/Modules/Compiler/GNU-C.cmake /opt/netbrains/clion/clion-2022.1.3/bin/cmake/linux/share/cmake-3.24/Modules/Compiler/GNU-CXX.cmake /opt/netbrains/clion/clion-2022.1.3/bin/cmake/linux/share/cmake-3.24/Modules/Compiler/GNU.cmake /opt/netbrains/clion/clion-2022.1.3/bin/cmake/linux/share/cmake-3.24/Modules/FindFontconfig.cmake /opt/netbrains/clion/clion-2022.1.3/bin/cmake/linux/share/cmake-3.24/Modules/FindFreetype.cmake /opt/netbrains/clion/clion-2022.1.3/bin/cmake/linux/share/cmake-3.24/Modules/FindPackageHandleStandardArgs.cmake /opt/netbrains/clion/clion-2022.1.3/bin/cmake/linux/share/cmake-3.24/Modules/FindPackageMessage.cmake /opt/netbrains/clion/clion-2022.1.3/bin/cmake/linux/share/cmake-3.24/Modules/FindPkgConfig.cmake /opt/netbrains/clion/clion-2022.1.3/bin/cmake/linux/share/cmake-3.24/Modules/FindThreads.cmake /opt/netbrains/clion/clion-2022.1.3/bin/cmake/linux/share/cmake-3.24/Modules/FindX11.cmake /opt/netbrains/clion/clion-2022.1.3/bin/cmake/linux/share/cmake-3.24/Modules/FindZLIB.cmake /opt/netbrains/clion/clion-2022.1.3/bin/cmake/linux/share/cmake-3.24/Modules/GNUInstallDirs.cmake /opt/netbrains/clion/clion-2022.1.3/bin/cmake/linux/share/cmake-3.24/Modules/Internal/CheckSourceCompiles.cmake /opt/netbrains/clion/clion-2022.1.3/bin/cmake/linux/share/cmake-3.24/Modules/Platform/Linux-GNU-C.cmake /opt/netbrains/clion/clion-2022.1.3/bin/cmake/linux/share/cmake-3.24/Modules/Platform/Linux-GNU-CXX.cmake /opt/netbrains/clion/clion-2022.1.3/bin/cmake/linux/share/cmake-3.24/Modules/Platform/Linux-GNU.cmake /opt/netbrains/clion/clion-2022.1.3/bin/cmake/linux/share/cmake-3.24/Modules/Platform/Linux.cmake /opt/netbrains/clion/clion-2022.1.3/bin/cmake/linux/share/cmake-3.24/Modules/Platform/UnixPaths.cmake /opt/netbrains/clion/clion-2022.1.3/bin/cmake/linux/share/cmake-3.24/Modules/SelectLibraryConfigurations.cmake /opt/netbrains/clion/clion-2022.1.3/bin/cmake/linux/share/cmake-3.24/Modules/WriteBasicConfigVersionFile.cmake CMakeCache.txt CMakeFiles/3.24.2/CMakeCCompiler.cmake CMakeFiles/3.24.2/CMakeCXXCompiler.cmake CMakeFiles/3.24.2/CMakeSystem.cmake: phony
|
||||||
|
|
||||||
|
|
||||||
#############################################
|
#############################################
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
# Install script for directory: /home/laptop/Documents/Brock/CS 3P98/Final Project
|
# Install script for directory: /home/brett/Documents/Brock/CS 3P98/Final Project
|
||||||
|
|
||||||
# Set the install prefix
|
# Set the install prefix
|
||||||
if(NOT DEFINED CMAKE_INSTALL_PREFIX)
|
if(NOT DEFINED CMAKE_INSTALL_PREFIX)
|
||||||
|
@ -43,8 +43,10 @@ if(NOT DEFINED CMAKE_OBJDUMP)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
if(NOT CMAKE_INSTALL_LOCAL_ONLY)
|
if(NOT CMAKE_INSTALL_LOCAL_ONLY)
|
||||||
# Include the install script for the subdirectory.
|
# Include the install script for each subdirectory.
|
||||||
include("/home/laptop/Documents/Brock/CS 3P98/Final Project/cmake-build-debug/libraries/BLT/cmake_install.cmake")
|
include("/home/brett/Documents/Brock/CS 3P98/Final Project/cmake-build-debug/libraries/glfw-3.3.8/cmake_install.cmake")
|
||||||
|
include("/home/brett/Documents/Brock/CS 3P98/Final Project/cmake-build-debug/libraries/BLT/cmake_install.cmake")
|
||||||
|
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
if(CMAKE_INSTALL_COMPONENT)
|
if(CMAKE_INSTALL_COMPONENT)
|
||||||
|
@ -55,5 +57,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 "/home/laptop/Documents/Brock/CS 3P98/Final Project/cmake-build-debug/${CMAKE_INSTALL_MANIFEST}"
|
file(WRITE "/home/brett/Documents/Brock/CS 3P98/Final Project/cmake-build-debug/${CMAKE_INSTALL_MANIFEST}"
|
||||||
"${CMAKE_INSTALL_MANIFEST_CONTENT}")
|
"${CMAKE_INSTALL_MANIFEST_CONTENT}")
|
||||||
|
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
@ -1,4 +1,4 @@
|
||||||
# Install script for directory: /home/laptop/Documents/Brock/CS 3P98/Final Project/libraries/BLT
|
# Install script for directory: /home/brett/Documents/Brock/CS 3P98/Final Project/libraries/BLT
|
||||||
|
|
||||||
# Set the install prefix
|
# Set the install prefix
|
||||||
if(NOT DEFINED CMAKE_INSTALL_PREFIX)
|
if(NOT DEFINED CMAKE_INSTALL_PREFIX)
|
||||||
|
|
|
@ -0,0 +1,2 @@
|
||||||
|
|
||||||
|
#define ZLIB_FOUND
|
Binary file not shown.
|
@ -0,0 +1,19 @@
|
||||||
|
#----------------------------------------------------------------
|
||||||
|
# Generated CMake target import file for configuration "Debug".
|
||||||
|
#----------------------------------------------------------------
|
||||||
|
|
||||||
|
# Commands may need to know the format version.
|
||||||
|
set(CMAKE_IMPORT_FILE_VERSION 1)
|
||||||
|
|
||||||
|
# Import target "glfw" for configuration "Debug"
|
||||||
|
set_property(TARGET glfw APPEND PROPERTY IMPORTED_CONFIGURATIONS DEBUG)
|
||||||
|
set_target_properties(glfw PROPERTIES
|
||||||
|
IMPORTED_LINK_INTERFACE_LANGUAGES_DEBUG "C"
|
||||||
|
IMPORTED_LOCATION_DEBUG "${_IMPORT_PREFIX}/lib/libglfw3.a"
|
||||||
|
)
|
||||||
|
|
||||||
|
list(APPEND _cmake_import_check_targets glfw )
|
||||||
|
list(APPEND _cmake_import_check_files_for_glfw "${_IMPORT_PREFIX}/lib/libglfw3.a" )
|
||||||
|
|
||||||
|
# Commands beyond this point should not need to know the version.
|
||||||
|
set(CMAKE_IMPORT_FILE_VERSION)
|
|
@ -0,0 +1,103 @@
|
||||||
|
# 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.3")
|
||||||
|
message(FATAL_ERROR "CMake >= 2.8.3 required")
|
||||||
|
endif()
|
||||||
|
cmake_policy(PUSH)
|
||||||
|
cmake_policy(VERSION 2.8.3...3.22)
|
||||||
|
#----------------------------------------------------------------
|
||||||
|
# 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 glfw)
|
||||||
|
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 glfw
|
||||||
|
add_library(glfw STATIC IMPORTED)
|
||||||
|
|
||||||
|
set_target_properties(glfw PROPERTIES
|
||||||
|
INTERFACE_INCLUDE_DIRECTORIES "${_IMPORT_PREFIX}/include"
|
||||||
|
INTERFACE_LINK_LIBRARIES "/usr/lib/x86_64-linux-gnu/librt.a;/usr/lib/x86_64-linux-gnu/libm.so;\$<LINK_ONLY:dl>;/usr/lib/x86_64-linux-gnu/libX11.so"
|
||||||
|
)
|
||||||
|
|
||||||
|
# Load information for each installed configuration.
|
||||||
|
file(GLOB _cmake_config_files "${CMAKE_CURRENT_LIST_DIR}/glfw3Targets-*.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)
|
||||||
|
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()
|
||||||
|
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)
|
|
@ -0,0 +1,87 @@
|
||||||
|
# Install script for directory: /home/brett/Documents/Brock/CS 3P98/Final Project/libraries/glfw-3.3.8
|
||||||
|
|
||||||
|
# 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 "Debug")
|
||||||
|
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()
|
||||||
|
|
||||||
|
# Install shared libraries without execute permission?
|
||||||
|
if(NOT DEFINED CMAKE_INSTALL_SO_NO_EXE)
|
||||||
|
set(CMAKE_INSTALL_SO_NO_EXE "1")
|
||||||
|
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 "/usr/bin/objdump")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
if(NOT CMAKE_INSTALL_LOCAL_ONLY)
|
||||||
|
# Include the install script for the subdirectory.
|
||||||
|
include("/home/brett/Documents/Brock/CS 3P98/Final Project/cmake-build-debug/libraries/glfw-3.3.8/src/cmake_install.cmake")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
if(CMAKE_INSTALL_COMPONENT STREQUAL "Unspecified" OR NOT CMAKE_INSTALL_COMPONENT)
|
||||||
|
file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/include" TYPE DIRECTORY FILES "/home/brett/Documents/Brock/CS 3P98/Final Project/libraries/glfw-3.3.8/include/GLFW" FILES_MATCHING REGEX "/glfw3\\.h$" REGEX "/glfw3native\\.h$")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
if(CMAKE_INSTALL_COMPONENT STREQUAL "Unspecified" OR NOT CMAKE_INSTALL_COMPONENT)
|
||||||
|
file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/lib/cmake/glfw3" TYPE FILE FILES
|
||||||
|
"/home/brett/Documents/Brock/CS 3P98/Final Project/cmake-build-debug/libraries/glfw-3.3.8/src/glfw3Config.cmake"
|
||||||
|
"/home/brett/Documents/Brock/CS 3P98/Final Project/cmake-build-debug/libraries/glfw-3.3.8/src/glfw3ConfigVersion.cmake"
|
||||||
|
)
|
||||||
|
endif()
|
||||||
|
|
||||||
|
if(CMAKE_INSTALL_COMPONENT STREQUAL "Unspecified" OR NOT CMAKE_INSTALL_COMPONENT)
|
||||||
|
if(EXISTS "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/cmake/glfw3/glfw3Targets.cmake")
|
||||||
|
file(DIFFERENT _cmake_export_file_changed FILES
|
||||||
|
"$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/cmake/glfw3/glfw3Targets.cmake"
|
||||||
|
"/home/brett/Documents/Brock/CS 3P98/Final Project/cmake-build-debug/libraries/glfw-3.3.8/CMakeFiles/Export/f367bd07922f2ecfc14cf5547f1f7c4e/glfw3Targets.cmake")
|
||||||
|
if(_cmake_export_file_changed)
|
||||||
|
file(GLOB _cmake_old_config_files "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/cmake/glfw3/glfw3Targets-*.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/glfw3/glfw3Targets.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/glfw3" TYPE FILE FILES "/home/brett/Documents/Brock/CS 3P98/Final Project/cmake-build-debug/libraries/glfw-3.3.8/CMakeFiles/Export/f367bd07922f2ecfc14cf5547f1f7c4e/glfw3Targets.cmake")
|
||||||
|
if(CMAKE_INSTALL_CONFIG_NAME MATCHES "^([Dd][Ee][Bb][Uu][Gg])$")
|
||||||
|
file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/lib/cmake/glfw3" TYPE FILE FILES "/home/brett/Documents/Brock/CS 3P98/Final Project/cmake-build-debug/libraries/glfw-3.3.8/CMakeFiles/Export/f367bd07922f2ecfc14cf5547f1f7c4e/glfw3Targets-debug.cmake")
|
||||||
|
endif()
|
||||||
|
endif()
|
||||||
|
|
||||||
|
if(CMAKE_INSTALL_COMPONENT STREQUAL "Unspecified" OR NOT CMAKE_INSTALL_COMPONENT)
|
||||||
|
file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/lib/pkgconfig" TYPE FILE FILES "/home/brett/Documents/Brock/CS 3P98/Final Project/cmake-build-debug/libraries/glfw-3.3.8/src/glfw3.pc")
|
||||||
|
endif()
|
||||||
|
|
|
@ -0,0 +1,29 @@
|
||||||
|
|
||||||
|
if (NOT EXISTS "/home/brett/Documents/Brock/CS 3P98/Final Project/cmake-build-debug/libraries/glfw-3.3.8/install_manifest.txt")
|
||||||
|
message(FATAL_ERROR "Cannot find install manifest: \"/home/brett/Documents/Brock/CS 3P98/Final Project/cmake-build-debug/libraries/glfw-3.3.8/install_manifest.txt\"")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
file(READ "/home/brett/Documents/Brock/CS 3P98/Final Project/cmake-build-debug/libraries/glfw-3.3.8/install_manifest.txt" files)
|
||||||
|
string(REGEX REPLACE "\n" ";" files "${files}")
|
||||||
|
|
||||||
|
foreach (file ${files})
|
||||||
|
message(STATUS "Uninstalling \"$ENV{DESTDIR}${file}\"")
|
||||||
|
if (EXISTS "$ENV{DESTDIR}${file}")
|
||||||
|
exec_program("/opt/netbrains/clion/clion-2022.1.3/bin/cmake/linux/bin/cmake" ARGS "-E remove \"$ENV{DESTDIR}${file}\""
|
||||||
|
OUTPUT_VARIABLE rm_out
|
||||||
|
RETURN_VALUE rm_retval)
|
||||||
|
if (NOT "${rm_retval}" STREQUAL 0)
|
||||||
|
MESSAGE(FATAL_ERROR "Problem when removing \"$ENV{DESTDIR}${file}\"")
|
||||||
|
endif()
|
||||||
|
elseif (IS_SYMLINK "$ENV{DESTDIR}${file}")
|
||||||
|
EXEC_PROGRAM("/opt/netbrains/clion/clion-2022.1.3/bin/cmake/linux/bin/cmake" ARGS "-E remove \"$ENV{DESTDIR}${file}\""
|
||||||
|
OUTPUT_VARIABLE rm_out
|
||||||
|
RETURN_VALUE rm_retval)
|
||||||
|
if (NOT "${rm_retval}" STREQUAL 0)
|
||||||
|
message(FATAL_ERROR "Problem when removing symlink \"$ENV{DESTDIR}${file}\"")
|
||||||
|
endif()
|
||||||
|
else()
|
||||||
|
message(STATUS "File \"$ENV{DESTDIR}${file}\" does not exist.")
|
||||||
|
endif()
|
||||||
|
endforeach()
|
||||||
|
|
|
@ -0,0 +1,44 @@
|
||||||
|
# Install script for directory: /home/brett/Documents/Brock/CS 3P98/Final Project/libraries/glfw-3.3.8/examples
|
||||||
|
|
||||||
|
# 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 "Debug")
|
||||||
|
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()
|
||||||
|
|
||||||
|
# Install shared libraries without execute permission?
|
||||||
|
if(NOT DEFINED CMAKE_INSTALL_SO_NO_EXE)
|
||||||
|
set(CMAKE_INSTALL_SO_NO_EXE "1")
|
||||||
|
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 "/usr/bin/objdump")
|
||||||
|
endif()
|
||||||
|
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
@ -0,0 +1,48 @@
|
||||||
|
# Install script for directory: /home/brett/Documents/Brock/CS 3P98/Final Project/libraries/glfw-3.3.8/src
|
||||||
|
|
||||||
|
# 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 "Debug")
|
||||||
|
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()
|
||||||
|
|
||||||
|
# Install shared libraries without execute permission?
|
||||||
|
if(NOT DEFINED CMAKE_INSTALL_SO_NO_EXE)
|
||||||
|
set(CMAKE_INSTALL_SO_NO_EXE "1")
|
||||||
|
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 "/usr/bin/objdump")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
if(CMAKE_INSTALL_COMPONENT STREQUAL "Unspecified" OR NOT CMAKE_INSTALL_COMPONENT)
|
||||||
|
file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/lib" TYPE STATIC_LIBRARY FILES "/home/brett/Documents/Brock/CS 3P98/Final Project/cmake-build-debug/libraries/glfw-3.3.8/src/libglfw3.a")
|
||||||
|
endif()
|
||||||
|
|
|
@ -0,0 +1,13 @@
|
||||||
|
prefix=/usr/local
|
||||||
|
exec_prefix=${prefix}
|
||||||
|
includedir=/usr/local/include
|
||||||
|
libdir=/usr/local/lib
|
||||||
|
|
||||||
|
Name: GLFW
|
||||||
|
Description: A multi-platform library for OpenGL, window and input
|
||||||
|
Version: 3.3.8
|
||||||
|
URL: https://www.glfw.org/
|
||||||
|
Requires.private: x11
|
||||||
|
Libs: -L${libdir} -lglfw3
|
||||||
|
Libs.private: -lrt -lm -ldl
|
||||||
|
Cflags: -I${includedir}
|
|
@ -0,0 +1 @@
|
||||||
|
include("${CMAKE_CURRENT_LIST_DIR}/glfw3Targets.cmake")
|
|
@ -0,0 +1,70 @@
|
||||||
|
# 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,
|
||||||
|
# but only if the requested major version is the same as the current one.
|
||||||
|
# The variable CVF_VERSION must be set before calling configure_file().
|
||||||
|
|
||||||
|
|
||||||
|
set(PACKAGE_VERSION "3.3.8")
|
||||||
|
|
||||||
|
if(PACKAGE_VERSION VERSION_LESS PACKAGE_FIND_VERSION)
|
||||||
|
set(PACKAGE_VERSION_COMPATIBLE FALSE)
|
||||||
|
else()
|
||||||
|
|
||||||
|
if("3.3.8" MATCHES "^([0-9]+)\\.")
|
||||||
|
set(CVF_VERSION_MAJOR "${CMAKE_MATCH_1}")
|
||||||
|
if(NOT CVF_VERSION_MAJOR VERSION_EQUAL 0)
|
||||||
|
string(REGEX REPLACE "^0+" "" CVF_VERSION_MAJOR "${CVF_VERSION_MAJOR}")
|
||||||
|
endif()
|
||||||
|
else()
|
||||||
|
set(CVF_VERSION_MAJOR "3.3.8")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
if(PACKAGE_FIND_VERSION_RANGE)
|
||||||
|
# both endpoints of the range must have the expected major version
|
||||||
|
math (EXPR CVF_VERSION_MAJOR_NEXT "${CVF_VERSION_MAJOR} + 1")
|
||||||
|
if (NOT PACKAGE_FIND_VERSION_MIN_MAJOR STREQUAL CVF_VERSION_MAJOR
|
||||||
|
OR ((PACKAGE_FIND_VERSION_RANGE_MAX STREQUAL "INCLUDE" AND NOT PACKAGE_FIND_VERSION_MAX_MAJOR STREQUAL CVF_VERSION_MAJOR)
|
||||||
|
OR (PACKAGE_FIND_VERSION_RANGE_MAX STREQUAL "EXCLUDE" AND NOT PACKAGE_FIND_VERSION_MAX VERSION_LESS_EQUAL CVF_VERSION_MAJOR_NEXT)))
|
||||||
|
set(PACKAGE_VERSION_COMPATIBLE FALSE)
|
||||||
|
elseif(PACKAGE_FIND_VERSION_MIN_MAJOR STREQUAL CVF_VERSION_MAJOR
|
||||||
|
AND ((PACKAGE_FIND_VERSION_RANGE_MAX STREQUAL "INCLUDE" AND PACKAGE_VERSION VERSION_LESS_EQUAL PACKAGE_FIND_VERSION_MAX)
|
||||||
|
OR (PACKAGE_FIND_VERSION_RANGE_MAX STREQUAL "EXCLUDE" AND PACKAGE_VERSION VERSION_LESS PACKAGE_FIND_VERSION_MAX)))
|
||||||
|
set(PACKAGE_VERSION_COMPATIBLE TRUE)
|
||||||
|
else()
|
||||||
|
set(PACKAGE_VERSION_COMPATIBLE FALSE)
|
||||||
|
endif()
|
||||||
|
else()
|
||||||
|
if(PACKAGE_FIND_VERSION_MAJOR STREQUAL CVF_VERSION_MAJOR)
|
||||||
|
set(PACKAGE_VERSION_COMPATIBLE TRUE)
|
||||||
|
else()
|
||||||
|
set(PACKAGE_VERSION_COMPATIBLE FALSE)
|
||||||
|
endif()
|
||||||
|
|
||||||
|
if(PACKAGE_FIND_VERSION STREQUAL PACKAGE_VERSION)
|
||||||
|
set(PACKAGE_VERSION_EXACT TRUE)
|
||||||
|
endif()
|
||||||
|
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()
|
|
@ -0,0 +1,58 @@
|
||||||
|
//========================================================================
|
||||||
|
// GLFW 3.3 - www.glfw.org
|
||||||
|
//------------------------------------------------------------------------
|
||||||
|
// Copyright (c) 2010-2016 Camilla Löwy <elmindreda@glfw.org>
|
||||||
|
//
|
||||||
|
// This software is provided 'as-is', without any express or implied
|
||||||
|
// warranty. In no event will the authors be held liable for any damages
|
||||||
|
// arising from the use of this software.
|
||||||
|
//
|
||||||
|
// Permission is granted to anyone to use this software for any purpose,
|
||||||
|
// including commercial applications, and to alter it and redistribute it
|
||||||
|
// freely, subject to the following restrictions:
|
||||||
|
//
|
||||||
|
// 1. The origin of this software must not be misrepresented; you must not
|
||||||
|
// claim that you wrote the original software. If you use this software
|
||||||
|
// in a product, an acknowledgment in the product documentation would
|
||||||
|
// be appreciated but is not required.
|
||||||
|
//
|
||||||
|
// 2. Altered source versions must be plainly marked as such, and must not
|
||||||
|
// be misrepresented as being the original software.
|
||||||
|
//
|
||||||
|
// 3. This notice may not be removed or altered from any source
|
||||||
|
// distribution.
|
||||||
|
//
|
||||||
|
//========================================================================
|
||||||
|
// As glfw_config.h.in, this file is used by CMake to produce the
|
||||||
|
// glfw_config.h configuration header file. If you are adding a feature
|
||||||
|
// requiring conditional compilation, this is where to add the macro.
|
||||||
|
//========================================================================
|
||||||
|
// As glfw_config.h, this file defines compile-time option macros for a
|
||||||
|
// specific platform and development environment. If you are using the
|
||||||
|
// GLFW CMake files, modify glfw_config.h.in instead of this file. If you
|
||||||
|
// are using your own build system, make this file define the appropriate
|
||||||
|
// macros in whatever way is suitable.
|
||||||
|
//========================================================================
|
||||||
|
|
||||||
|
// Define this to 1 if building GLFW for X11
|
||||||
|
#define _GLFW_X11
|
||||||
|
// Define this to 1 if building GLFW for Win32
|
||||||
|
/* #undef _GLFW_WIN32 */
|
||||||
|
// Define this to 1 if building GLFW for Cocoa
|
||||||
|
/* #undef _GLFW_COCOA */
|
||||||
|
// Define this to 1 if building GLFW for Wayland
|
||||||
|
/* #undef _GLFW_WAYLAND */
|
||||||
|
// Define this to 1 if building GLFW for OSMesa
|
||||||
|
/* #undef _GLFW_OSMESA */
|
||||||
|
|
||||||
|
// Define this to 1 if building as a shared library / dynamic library / DLL
|
||||||
|
/* #undef _GLFW_BUILD_DLL */
|
||||||
|
// Define this to 1 to use Vulkan loader linked statically into application
|
||||||
|
/* #undef _GLFW_VULKAN_STATIC */
|
||||||
|
|
||||||
|
// Define this to 1 to force use of high-performance GPU on hybrid systems
|
||||||
|
/* #undef _GLFW_USE_HYBRID_HPG */
|
||||||
|
|
||||||
|
// Define this to 1 if the libc supports memfd_create()
|
||||||
|
/* #undef HAVE_MEMFD_CREATE */
|
||||||
|
|
Binary file not shown.
|
@ -0,0 +1,44 @@
|
||||||
|
# Install script for directory: /home/brett/Documents/Brock/CS 3P98/Final Project/libraries/glfw-3.3.8/tests
|
||||||
|
|
||||||
|
# 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 "Debug")
|
||||||
|
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()
|
||||||
|
|
||||||
|
# Install shared libraries without execute permission?
|
||||||
|
if(NOT DEFINED CMAKE_INSTALL_SO_NO_EXE)
|
||||||
|
set(CMAKE_INSTALL_SO_NO_EXE "1")
|
||||||
|
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 "/usr/bin/objdump")
|
||||||
|
endif()
|
||||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -0,0 +1,157 @@
|
||||||
|
{
|
||||||
|
"inputs" :
|
||||||
|
[
|
||||||
|
{
|
||||||
|
"path" : "CMakeLists.txt"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"isGenerated" : true,
|
||||||
|
"path" : "cmake-build-emrelease/CMakeFiles/3.25.1/CMakeSystem.cmake"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"isExternal" : true,
|
||||||
|
"path" : "/usr/share/emscripten/cmake/Modules/Platform/Emscripten.cmake"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"isCMake" : true,
|
||||||
|
"isExternal" : true,
|
||||||
|
"path" : "/usr/share/cmake-3.25/Modules/CMakeSystemSpecificInitialize.cmake"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"isGenerated" : true,
|
||||||
|
"path" : "cmake-build-emrelease/CMakeFiles/3.25.1/CMakeCCompiler.cmake"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"isGenerated" : true,
|
||||||
|
"path" : "cmake-build-emrelease/CMakeFiles/3.25.1/CMakeCXXCompiler.cmake"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"isExternal" : true,
|
||||||
|
"path" : "/usr/share/emscripten/cmake/Modules/CMakeSystemSpecificInformation.cmake"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"isCMake" : true,
|
||||||
|
"isExternal" : true,
|
||||||
|
"path" : "/usr/share/cmake-3.25/Modules/CMakeGenericSystem.cmake"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"isCMake" : true,
|
||||||
|
"isExternal" : true,
|
||||||
|
"path" : "/usr/share/cmake-3.25/Modules/CMakeInitializeConfigs.cmake"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"isExternal" : true,
|
||||||
|
"path" : "/usr/share/emscripten/cmake/Modules/Platform/Emscripten.cmake"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"isCMake" : true,
|
||||||
|
"isExternal" : true,
|
||||||
|
"path" : "/usr/share/cmake-3.25/Modules/CMakeCInformation.cmake"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"isCMake" : true,
|
||||||
|
"isExternal" : true,
|
||||||
|
"path" : "/usr/share/cmake-3.25/Modules/CMakeLanguageInformation.cmake"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"isCMake" : true,
|
||||||
|
"isExternal" : true,
|
||||||
|
"path" : "/usr/share/cmake-3.25/Modules/Compiler/Clang-C.cmake"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"isCMake" : true,
|
||||||
|
"isExternal" : true,
|
||||||
|
"path" : "/usr/share/cmake-3.25/Modules/Compiler/Clang.cmake"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"isCMake" : true,
|
||||||
|
"isExternal" : true,
|
||||||
|
"path" : "/usr/share/cmake-3.25/Modules/Compiler/CMakeCommonCompilerMacros.cmake"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"isCMake" : true,
|
||||||
|
"isExternal" : true,
|
||||||
|
"path" : "/usr/share/cmake-3.25/Modules/Compiler/GNU.cmake"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"isCMake" : true,
|
||||||
|
"isExternal" : true,
|
||||||
|
"path" : "/usr/share/cmake-3.25/Modules/Compiler/CMakeCommonCompilerMacros.cmake"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"isExternal" : true,
|
||||||
|
"path" : "/usr/share/emscripten/cmake/Modules/Platform/Emscripten.cmake"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"isCMake" : true,
|
||||||
|
"isExternal" : true,
|
||||||
|
"path" : "/usr/share/cmake-3.25/Modules/CMakeCommonLanguageInclude.cmake"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"isCMake" : true,
|
||||||
|
"isExternal" : true,
|
||||||
|
"path" : "/usr/share/cmake-3.25/Modules/CMakeCXXInformation.cmake"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"isCMake" : true,
|
||||||
|
"isExternal" : true,
|
||||||
|
"path" : "/usr/share/cmake-3.25/Modules/CMakeLanguageInformation.cmake"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"isCMake" : true,
|
||||||
|
"isExternal" : true,
|
||||||
|
"path" : "/usr/share/cmake-3.25/Modules/Compiler/Clang-CXX.cmake"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"isCMake" : true,
|
||||||
|
"isExternal" : true,
|
||||||
|
"path" : "/usr/share/cmake-3.25/Modules/Compiler/Clang.cmake"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"isExternal" : true,
|
||||||
|
"path" : "/usr/share/emscripten/cmake/Modules/Platform/Emscripten.cmake"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"isCMake" : true,
|
||||||
|
"isExternal" : true,
|
||||||
|
"path" : "/usr/share/cmake-3.25/Modules/CMakeCommonLanguageInclude.cmake"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"path" : "libraries/BLT/CMakeLists.txt"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"isCMake" : true,
|
||||||
|
"isExternal" : true,
|
||||||
|
"path" : "/usr/share/cmake-3.25/Modules/FindZLIB.cmake"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"isCMake" : true,
|
||||||
|
"isExternal" : true,
|
||||||
|
"path" : "/usr/share/cmake-3.25/Modules/SelectLibraryConfigurations.cmake"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"isCMake" : true,
|
||||||
|
"isExternal" : true,
|
||||||
|
"path" : "/usr/share/cmake-3.25/Modules/FindPackageHandleStandardArgs.cmake"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"isCMake" : true,
|
||||||
|
"isExternal" : true,
|
||||||
|
"path" : "/usr/share/cmake-3.25/Modules/FindPackageMessage.cmake"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"path" : "libraries/BLT/include/blt/config.h.in"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"kind" : "cmakeFiles",
|
||||||
|
"paths" :
|
||||||
|
{
|
||||||
|
"build" : "/home/brett/Documents/Brock/CS 3P98/Final Project/cmake-build-emrelease",
|
||||||
|
"source" : "/home/brett/Documents/Brock/CS 3P98/Final Project"
|
||||||
|
},
|
||||||
|
"version" :
|
||||||
|
{
|
||||||
|
"major" : 1,
|
||||||
|
"minor" : 0
|
||||||
|
}
|
||||||
|
}
|
|
@ -10,10 +10,10 @@
|
||||||
[
|
[
|
||||||
1
|
1
|
||||||
],
|
],
|
||||||
"jsonFile" : "directory-.-Debug-f5ebdc15457944623624.json",
|
"jsonFile" : "directory-.-Release-f5ebdc15457944623624.json",
|
||||||
"minimumCMakeVersion" :
|
"minimumCMakeVersion" :
|
||||||
{
|
{
|
||||||
"string" : "3.24"
|
"string" : "3.0"
|
||||||
},
|
},
|
||||||
"projectIndex" : 0,
|
"projectIndex" : 0,
|
||||||
"source" : ".",
|
"source" : ".",
|
||||||
|
@ -24,7 +24,7 @@
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"build" : "libraries/BLT",
|
"build" : "libraries/BLT",
|
||||||
"jsonFile" : "directory-libraries.BLT-Debug-5a66f6c7b7b59c5dbec1.json",
|
"jsonFile" : "directory-libraries.BLT-Release-5a66f6c7b7b59c5dbec1.json",
|
||||||
"minimumCMakeVersion" :
|
"minimumCMakeVersion" :
|
||||||
{
|
{
|
||||||
"string" : "3.24"
|
"string" : "3.24"
|
||||||
|
@ -38,7 +38,7 @@
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name" : "Debug",
|
"name" : "Release",
|
||||||
"projects" :
|
"projects" :
|
||||||
[
|
[
|
||||||
{
|
{
|
||||||
|
@ -50,7 +50,7 @@
|
||||||
[
|
[
|
||||||
0
|
0
|
||||||
],
|
],
|
||||||
"name" : "Final_Project",
|
"name" : "FinalProject",
|
||||||
"targetIndexes" :
|
"targetIndexes" :
|
||||||
[
|
[
|
||||||
1
|
1
|
||||||
|
@ -74,15 +74,15 @@
|
||||||
{
|
{
|
||||||
"directoryIndex" : 1,
|
"directoryIndex" : 1,
|
||||||
"id" : "BLT::@834776b52e80069b1648",
|
"id" : "BLT::@834776b52e80069b1648",
|
||||||
"jsonFile" : "target-BLT-Debug-b976cc3edcb868afeae8.json",
|
"jsonFile" : "target-BLT-Release-7db96a9f62b4686dcfc4.json",
|
||||||
"name" : "BLT",
|
"name" : "BLT",
|
||||||
"projectIndex" : 1
|
"projectIndex" : 1
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"directoryIndex" : 0,
|
"directoryIndex" : 0,
|
||||||
"id" : "Final_Project::@6890427a1f51a3e7e1df",
|
"id" : "FinalProject::@6890427a1f51a3e7e1df",
|
||||||
"jsonFile" : "target-Final_Project-Debug-9b666a87047b10b6f81b.json",
|
"jsonFile" : "target-FinalProject-Release-817ff412fb80e77abbc8.json",
|
||||||
"name" : "Final_Project",
|
"name" : "FinalProject",
|
||||||
"projectIndex" : 0
|
"projectIndex" : 0
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
@ -91,8 +91,8 @@
|
||||||
"kind" : "codemodel",
|
"kind" : "codemodel",
|
||||||
"paths" :
|
"paths" :
|
||||||
{
|
{
|
||||||
"build" : "/home/laptop/Documents/Brock/CS 3P98/Final Project/cmake-build-debug",
|
"build" : "/home/brett/Documents/Brock/CS 3P98/Final Project/cmake-build-emrelease",
|
||||||
"source" : "/home/laptop/Documents/Brock/CS 3P98/Final Project"
|
"source" : "/home/brett/Documents/Brock/CS 3P98/Final Project"
|
||||||
},
|
},
|
||||||
"version" :
|
"version" :
|
||||||
{
|
{
|
|
@ -0,0 +1,14 @@
|
||||||
|
{
|
||||||
|
"backtraceGraph" :
|
||||||
|
{
|
||||||
|
"commands" : [],
|
||||||
|
"files" : [],
|
||||||
|
"nodes" : []
|
||||||
|
},
|
||||||
|
"installers" : [],
|
||||||
|
"paths" :
|
||||||
|
{
|
||||||
|
"build" : ".",
|
||||||
|
"source" : "."
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,14 @@
|
||||||
|
{
|
||||||
|
"backtraceGraph" :
|
||||||
|
{
|
||||||
|
"commands" : [],
|
||||||
|
"files" : [],
|
||||||
|
"nodes" : []
|
||||||
|
},
|
||||||
|
"installers" : [],
|
||||||
|
"paths" :
|
||||||
|
{
|
||||||
|
"build" : "libraries/BLT",
|
||||||
|
"source" : "libraries/BLT"
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,108 @@
|
||||||
|
{
|
||||||
|
"cmake" :
|
||||||
|
{
|
||||||
|
"generator" :
|
||||||
|
{
|
||||||
|
"multiConfig" : false,
|
||||||
|
"name" : "Unix Makefiles"
|
||||||
|
},
|
||||||
|
"paths" :
|
||||||
|
{
|
||||||
|
"cmake" : "/usr/bin/cmake",
|
||||||
|
"cpack" : "/usr/bin/cpack",
|
||||||
|
"ctest" : "/usr/bin/ctest",
|
||||||
|
"root" : "/usr/share/cmake-3.25"
|
||||||
|
},
|
||||||
|
"version" :
|
||||||
|
{
|
||||||
|
"isDirty" : false,
|
||||||
|
"major" : 3,
|
||||||
|
"minor" : 25,
|
||||||
|
"patch" : 1,
|
||||||
|
"string" : "3.25.1",
|
||||||
|
"suffix" : ""
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"objects" :
|
||||||
|
[
|
||||||
|
{
|
||||||
|
"jsonFile" : "codemodel-v2-1e721f94324af0f27bc7.json",
|
||||||
|
"kind" : "codemodel",
|
||||||
|
"version" :
|
||||||
|
{
|
||||||
|
"major" : 2,
|
||||||
|
"minor" : 4
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"jsonFile" : "cache-v2-4cb68d260ce8a444d38a.json",
|
||||||
|
"kind" : "cache",
|
||||||
|
"version" :
|
||||||
|
{
|
||||||
|
"major" : 2,
|
||||||
|
"minor" : 0
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"jsonFile" : "cmakeFiles-v1-1d70b8ed0b8d051a9f5e.json",
|
||||||
|
"kind" : "cmakeFiles",
|
||||||
|
"version" :
|
||||||
|
{
|
||||||
|
"major" : 1,
|
||||||
|
"minor" : 0
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"jsonFile" : "toolchains-v1-6fe84aad16887ef1ce4f.json",
|
||||||
|
"kind" : "toolchains",
|
||||||
|
"version" :
|
||||||
|
{
|
||||||
|
"major" : 1,
|
||||||
|
"minor" : 0
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"reply" :
|
||||||
|
{
|
||||||
|
"cache-v2" :
|
||||||
|
{
|
||||||
|
"jsonFile" : "cache-v2-4cb68d260ce8a444d38a.json",
|
||||||
|
"kind" : "cache",
|
||||||
|
"version" :
|
||||||
|
{
|
||||||
|
"major" : 2,
|
||||||
|
"minor" : 0
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"cmakeFiles-v1" :
|
||||||
|
{
|
||||||
|
"jsonFile" : "cmakeFiles-v1-1d70b8ed0b8d051a9f5e.json",
|
||||||
|
"kind" : "cmakeFiles",
|
||||||
|
"version" :
|
||||||
|
{
|
||||||
|
"major" : 1,
|
||||||
|
"minor" : 0
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"codemodel-v2" :
|
||||||
|
{
|
||||||
|
"jsonFile" : "codemodel-v2-1e721f94324af0f27bc7.json",
|
||||||
|
"kind" : "codemodel",
|
||||||
|
"version" :
|
||||||
|
{
|
||||||
|
"major" : 2,
|
||||||
|
"minor" : 4
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"toolchains-v1" :
|
||||||
|
{
|
||||||
|
"jsonFile" : "toolchains-v1-6fe84aad16887ef1ce4f.json",
|
||||||
|
"kind" : "toolchains",
|
||||||
|
"version" :
|
||||||
|
{
|
||||||
|
"major" : 1,
|
||||||
|
"minor" : 0
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,175 @@
|
||||||
|
{
|
||||||
|
"archive" : {},
|
||||||
|
"artifacts" :
|
||||||
|
[
|
||||||
|
{
|
||||||
|
"path" : "libraries/BLT/libBLT.a"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"backtrace" : 1,
|
||||||
|
"backtraceGraph" :
|
||||||
|
{
|
||||||
|
"commands" :
|
||||||
|
[
|
||||||
|
"add_library",
|
||||||
|
"include_directories",
|
||||||
|
"target_include_directories"
|
||||||
|
],
|
||||||
|
"files" :
|
||||||
|
[
|
||||||
|
"libraries/BLT/CMakeLists.txt",
|
||||||
|
"CMakeLists.txt"
|
||||||
|
],
|
||||||
|
"nodes" :
|
||||||
|
[
|
||||||
|
{
|
||||||
|
"file" : 0
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"command" : 0,
|
||||||
|
"file" : 0,
|
||||||
|
"line" : 47,
|
||||||
|
"parent" : 0
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"file" : 1
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"command" : 1,
|
||||||
|
"file" : 1,
|
||||||
|
"line" : 19,
|
||||||
|
"parent" : 2
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"command" : 1,
|
||||||
|
"file" : 0,
|
||||||
|
"line" : 38,
|
||||||
|
"parent" : 0
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"command" : 2,
|
||||||
|
"file" : 0,
|
||||||
|
"line" : 50,
|
||||||
|
"parent" : 0
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"compileGroups" :
|
||||||
|
[
|
||||||
|
{
|
||||||
|
"compileCommandFragments" :
|
||||||
|
[
|
||||||
|
{
|
||||||
|
"fragment" : "-O3 -DNDEBUG -fcolor-diagnostics -std=c++17"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"fragment" : "-std=gnu++17"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"includes" :
|
||||||
|
[
|
||||||
|
{
|
||||||
|
"backtrace" : 3,
|
||||||
|
"path" : "/home/brett/Documents/Brock/CS 3P98/Final Project/include"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"backtrace" : 4,
|
||||||
|
"path" : "/home/brett/Documents/Brock/CS 3P98/Final Project/libraries/BLT/include"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"backtrace" : 5,
|
||||||
|
"path" : "/home/brett/Documents/Brock/CS 3P98/Final Project/cmake-build-emrelease/libraries/BLT/config"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"language" : "CXX",
|
||||||
|
"languageStandard" :
|
||||||
|
{
|
||||||
|
"backtraces" :
|
||||||
|
[
|
||||||
|
1
|
||||||
|
],
|
||||||
|
"standard" : "17"
|
||||||
|
},
|
||||||
|
"sourceIndexes" :
|
||||||
|
[
|
||||||
|
0,
|
||||||
|
1,
|
||||||
|
2,
|
||||||
|
3,
|
||||||
|
4,
|
||||||
|
5,
|
||||||
|
6
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"id" : "BLT::@834776b52e80069b1648",
|
||||||
|
"name" : "BLT",
|
||||||
|
"nameOnDisk" : "libBLT.a",
|
||||||
|
"paths" :
|
||||||
|
{
|
||||||
|
"build" : "libraries/BLT",
|
||||||
|
"source" : "libraries/BLT"
|
||||||
|
},
|
||||||
|
"sourceGroups" :
|
||||||
|
[
|
||||||
|
{
|
||||||
|
"name" : "Source Files",
|
||||||
|
"sourceIndexes" :
|
||||||
|
[
|
||||||
|
0,
|
||||||
|
1,
|
||||||
|
2,
|
||||||
|
3,
|
||||||
|
4,
|
||||||
|
5,
|
||||||
|
6
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"sources" :
|
||||||
|
[
|
||||||
|
{
|
||||||
|
"backtrace" : 1,
|
||||||
|
"compileGroupIndex" : 0,
|
||||||
|
"path" : "libraries/BLT/src/blt/std/filesystem.cpp",
|
||||||
|
"sourceGroupIndex" : 0
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"backtrace" : 1,
|
||||||
|
"compileGroupIndex" : 0,
|
||||||
|
"path" : "libraries/BLT/src/blt/std/format.cpp",
|
||||||
|
"sourceGroupIndex" : 0
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"backtrace" : 1,
|
||||||
|
"compileGroupIndex" : 0,
|
||||||
|
"path" : "libraries/BLT/src/blt/std/logging.cpp",
|
||||||
|
"sourceGroupIndex" : 0
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"backtrace" : 1,
|
||||||
|
"compileGroupIndex" : 0,
|
||||||
|
"path" : "libraries/BLT/src/blt/std/system.cpp",
|
||||||
|
"sourceGroupIndex" : 0
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"backtrace" : 1,
|
||||||
|
"compileGroupIndex" : 0,
|
||||||
|
"path" : "libraries/BLT/src/blt/profiling/profiler.cpp",
|
||||||
|
"sourceGroupIndex" : 0
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"backtrace" : 1,
|
||||||
|
"compileGroupIndex" : 0,
|
||||||
|
"path" : "libraries/BLT/src/blt/nbt/nbt.cpp",
|
||||||
|
"sourceGroupIndex" : 0
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"backtrace" : 1,
|
||||||
|
"compileGroupIndex" : 0,
|
||||||
|
"path" : "libraries/BLT/src/blt/nbt/nbt_block.cpp",
|
||||||
|
"sourceGroupIndex" : 0
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"type" : "STATIC_LIBRARY"
|
||||||
|
}
|
|
@ -2,7 +2,7 @@
|
||||||
"artifacts" :
|
"artifacts" :
|
||||||
[
|
[
|
||||||
{
|
{
|
||||||
"path" : "Final_Project"
|
"path" : "FinalProject.js"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"backtrace" : 1,
|
"backtrace" : 1,
|
||||||
|
@ -26,37 +26,19 @@
|
||||||
{
|
{
|
||||||
"command" : 0,
|
"command" : 0,
|
||||||
"file" : 0,
|
"file" : 0,
|
||||||
"line" : 34,
|
"line" : 23,
|
||||||
"parent" : 0
|
"parent" : 0
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"command" : 1,
|
"command" : 1,
|
||||||
"file" : 0,
|
"file" : 0,
|
||||||
"line" : 35,
|
"line" : 24,
|
||||||
"parent" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"command" : 1,
|
|
||||||
"file" : 0,
|
|
||||||
"line" : 36,
|
|
||||||
"parent" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"command" : 1,
|
|
||||||
"file" : 0,
|
|
||||||
"line" : 37,
|
|
||||||
"parent" : 0
|
"parent" : 0
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"command" : 2,
|
"command" : 2,
|
||||||
"file" : 0,
|
"file" : 0,
|
||||||
"line" : 9,
|
"line" : 19,
|
||||||
"parent" : 0
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"command" : 2,
|
|
||||||
"file" : 0,
|
|
||||||
"line" : 32,
|
|
||||||
"parent" : 0
|
"parent" : 0
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
@ -67,22 +49,25 @@
|
||||||
"compileCommandFragments" :
|
"compileCommandFragments" :
|
||||||
[
|
[
|
||||||
{
|
{
|
||||||
"fragment" : "-g -fdiagnostics-color=always"
|
"fragment" : "-O3 -DNDEBUG -fcolor-diagnostics -std=c++17"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"fragment" : "-std=gnu++17"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"includes" :
|
"includes" :
|
||||||
[
|
[
|
||||||
{
|
{
|
||||||
"backtrace" : 5,
|
"backtrace" : 3,
|
||||||
"path" : "/home/laptop/Documents/Brock/CS 3P98/Final Project/include"
|
"path" : "/home/brett/Documents/Brock/CS 3P98/Final Project/include"
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 6,
|
|
||||||
"path" : "/usr/include/FreeImage.h"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"backtrace" : 2,
|
"backtrace" : 2,
|
||||||
"path" : "/home/laptop/Documents/Brock/CS 3P98/Final Project/libraries/BLT/include"
|
"path" : "/home/brett/Documents/Brock/CS 3P98/Final Project/libraries/BLT/include"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"backtrace" : 2,
|
||||||
|
"path" : "/home/brett/Documents/Brock/CS 3P98/Final Project/cmake-build-emrelease/libraries/BLT/config"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"language" : "CXX",
|
"language" : "CXX",
|
||||||
|
@ -96,8 +81,7 @@
|
||||||
},
|
},
|
||||||
"sourceIndexes" :
|
"sourceIndexes" :
|
||||||
[
|
[
|
||||||
0,
|
0
|
||||||
1
|
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
@ -108,44 +92,29 @@
|
||||||
"id" : "BLT::@834776b52e80069b1648"
|
"id" : "BLT::@834776b52e80069b1648"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"id" : "Final_Project::@6890427a1f51a3e7e1df",
|
"id" : "FinalProject::@6890427a1f51a3e7e1df",
|
||||||
"link" :
|
"link" :
|
||||||
{
|
{
|
||||||
"commandFragments" :
|
"commandFragments" :
|
||||||
[
|
[
|
||||||
{
|
{
|
||||||
"fragment" : "-g",
|
"fragment" : "-O3 -DNDEBUG",
|
||||||
"role" : "flags"
|
"role" : "flags"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"fragment" : "",
|
"fragment" : "--preload-file 'assets'",
|
||||||
"role" : "flags"
|
"role" : "flags"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"backtrace" : 2,
|
"backtrace" : 2,
|
||||||
"fragment" : "libraries/BLT/libBLT.a",
|
"fragment" : "libraries/BLT/libBLT.a",
|
||||||
"role" : "libraries"
|
"role" : "libraries"
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 3,
|
|
||||||
"fragment" : "/usr/lib/x86_64-linux-gnu/libglut.so",
|
|
||||||
"role" : "libraries"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 3,
|
|
||||||
"fragment" : "/usr/lib/x86_64-linux-gnu/libXi.so",
|
|
||||||
"role" : "libraries"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 4,
|
|
||||||
"fragment" : "/usr/lib/x86_64-linux-gnu/libfreeimage.so",
|
|
||||||
"role" : "libraries"
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"language" : "CXX"
|
"language" : "CXX"
|
||||||
},
|
},
|
||||||
"name" : "Final_Project",
|
"name" : "FinalProject",
|
||||||
"nameOnDisk" : "Final_Project",
|
"nameOnDisk" : "FinalProject.js",
|
||||||
"paths" :
|
"paths" :
|
||||||
{
|
{
|
||||||
"build" : ".",
|
"build" : ".",
|
||||||
|
@ -157,8 +126,7 @@
|
||||||
"name" : "Source Files",
|
"name" : "Source Files",
|
||||||
"sourceIndexes" :
|
"sourceIndexes" :
|
||||||
[
|
[
|
||||||
0,
|
0
|
||||||
1
|
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
@ -169,12 +137,6 @@
|
||||||
"compileGroupIndex" : 0,
|
"compileGroupIndex" : 0,
|
||||||
"path" : "src/main.cpp",
|
"path" : "src/main.cpp",
|
||||||
"sourceGroupIndex" : 0
|
"sourceGroupIndex" : 0
|
||||||
},
|
|
||||||
{
|
|
||||||
"backtrace" : 1,
|
|
||||||
"compileGroupIndex" : 0,
|
|
||||||
"path" : "src/window/window.cpp",
|
|
||||||
"sourceGroupIndex" : 0
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"type" : "EXECUTABLE"
|
"type" : "EXECUTABLE"
|
|
@ -0,0 +1,62 @@
|
||||||
|
{
|
||||||
|
"kind" : "toolchains",
|
||||||
|
"toolchains" :
|
||||||
|
[
|
||||||
|
{
|
||||||
|
"compiler" :
|
||||||
|
{
|
||||||
|
"id" : "Clang",
|
||||||
|
"implicit" :
|
||||||
|
{
|
||||||
|
"includeDirectories" : [],
|
||||||
|
"linkDirectories" : [],
|
||||||
|
"linkFrameworkDirectories" : [],
|
||||||
|
"linkLibraries" : []
|
||||||
|
},
|
||||||
|
"path" : "/usr/bin/emcc",
|
||||||
|
"version" : "14.0.6"
|
||||||
|
},
|
||||||
|
"language" : "C",
|
||||||
|
"sourceFileExtensions" :
|
||||||
|
[
|
||||||
|
"c",
|
||||||
|
"m"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"compiler" :
|
||||||
|
{
|
||||||
|
"id" : "Clang",
|
||||||
|
"implicit" :
|
||||||
|
{
|
||||||
|
"includeDirectories" : [],
|
||||||
|
"linkDirectories" : [],
|
||||||
|
"linkFrameworkDirectories" : [],
|
||||||
|
"linkLibraries" : []
|
||||||
|
},
|
||||||
|
"path" : "/usr/bin/em++",
|
||||||
|
"version" : "14.0.6"
|
||||||
|
},
|
||||||
|
"language" : "CXX",
|
||||||
|
"sourceFileExtensions" :
|
||||||
|
[
|
||||||
|
"C",
|
||||||
|
"M",
|
||||||
|
"c++",
|
||||||
|
"cc",
|
||||||
|
"cpp",
|
||||||
|
"cxx",
|
||||||
|
"mm",
|
||||||
|
"mpp",
|
||||||
|
"CPP",
|
||||||
|
"ixx",
|
||||||
|
"cppm"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"version" :
|
||||||
|
{
|
||||||
|
"major" : 1,
|
||||||
|
"minor" : 0
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,437 @@
|
||||||
|
# This is the CMakeCache file.
|
||||||
|
# For build in directory: /home/brett/Documents/Brock/CS 3P98/Final Project/cmake-build-emrelease
|
||||||
|
# It was generated by CMake: /usr/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
|
||||||
|
########################
|
||||||
|
|
||||||
|
//Value Computed by CMake
|
||||||
|
BLT_BINARY_DIR:STATIC=/home/brett/Documents/Brock/CS 3P98/Final Project/cmake-build-emrelease/libraries/BLT
|
||||||
|
|
||||||
|
//Value Computed by CMake
|
||||||
|
BLT_IS_TOP_LEVEL:STATIC=OFF
|
||||||
|
|
||||||
|
//Value Computed by CMake
|
||||||
|
BLT_SOURCE_DIR:STATIC=/home/brett/Documents/Brock/CS 3P98/Final Project/libraries/BLT
|
||||||
|
|
||||||
|
//Build the BLT NBT + eNBT extension
|
||||||
|
BUILD_NBT:BOOL=ON
|
||||||
|
|
||||||
|
//Build the BLT profiler extension
|
||||||
|
BUILD_PROFILING:BOOL=ON
|
||||||
|
|
||||||
|
//Build the BLT standard utilities.
|
||||||
|
BUILD_STD:BOOL=ON
|
||||||
|
|
||||||
|
//Build the BLT test set
|
||||||
|
BUILD_TESTS:BOOL=OFF
|
||||||
|
|
||||||
|
//Path to a program.
|
||||||
|
CMAKE_ADDR2LINE:FILEPATH=/usr/bin/llvm-addr2line
|
||||||
|
|
||||||
|
//Emscripten ar
|
||||||
|
CMAKE_AR:FILEPATH=emar
|
||||||
|
|
||||||
|
//Choose the type of build, options are: None Debug Release RelWithDebInfo
|
||||||
|
// MinSizeRel ...
|
||||||
|
CMAKE_BUILD_TYPE:STRING=Release
|
||||||
|
|
||||||
|
//Enable colored diagnostics throughout.
|
||||||
|
CMAKE_COLOR_DIAGNOSTICS:BOOL=ON
|
||||||
|
|
||||||
|
//Enable/Disable color output during build.
|
||||||
|
CMAKE_COLOR_MAKEFILE:BOOL=ON
|
||||||
|
|
||||||
|
//No help, variable specified on the command line.
|
||||||
|
CMAKE_CROSSCOMPILING_EMULATOR:UNINITIALIZED=/usr/bin/node;--experimental-wasm-threads
|
||||||
|
|
||||||
|
//CXX compiler
|
||||||
|
CMAKE_CXX_COMPILER:STRING=/usr/bin/em++
|
||||||
|
|
||||||
|
//Emscripten ar
|
||||||
|
CMAKE_CXX_COMPILER_AR:FILEPATH=emar
|
||||||
|
|
||||||
|
//Emscripten ranlib
|
||||||
|
CMAKE_CXX_COMPILER_RANLIB:FILEPATH=emranlib
|
||||||
|
|
||||||
|
//Flags used by the CXX compiler during all build types.
|
||||||
|
CMAKE_CXX_FLAGS:STRING=
|
||||||
|
|
||||||
|
//Flags used by the CXX compiler during DEBUG builds.
|
||||||
|
CMAKE_CXX_FLAGS_DEBUG:STRING=-g
|
||||||
|
|
||||||
|
//Flags used by the CXX compiler during MINSIZEREL builds.
|
||||||
|
CMAKE_CXX_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG
|
||||||
|
|
||||||
|
//Flags used by the CXX compiler during RELEASE builds.
|
||||||
|
CMAKE_CXX_FLAGS_RELEASE:STRING=-O3 -DNDEBUG
|
||||||
|
|
||||||
|
//Flags used by the CXX compiler during RELWITHDEBINFO builds.
|
||||||
|
CMAKE_CXX_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG
|
||||||
|
|
||||||
|
//C compiler
|
||||||
|
CMAKE_C_COMPILER:STRING=/usr/bin/emcc
|
||||||
|
|
||||||
|
//Emscripten ar
|
||||||
|
CMAKE_C_COMPILER_AR:FILEPATH=emar
|
||||||
|
|
||||||
|
//Emscripten ranlib
|
||||||
|
CMAKE_C_COMPILER_RANLIB:FILEPATH=emranlib
|
||||||
|
|
||||||
|
//Flags used by the C compiler during all build types.
|
||||||
|
CMAKE_C_FLAGS:STRING=
|
||||||
|
|
||||||
|
//Flags used by the C compiler during DEBUG builds.
|
||||||
|
CMAKE_C_FLAGS_DEBUG:STRING=-g
|
||||||
|
|
||||||
|
//Flags used by the C compiler during MINSIZEREL builds.
|
||||||
|
CMAKE_C_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG
|
||||||
|
|
||||||
|
//Flags used by the C compiler during RELEASE builds.
|
||||||
|
CMAKE_C_FLAGS_RELEASE:STRING=-O3 -DNDEBUG
|
||||||
|
|
||||||
|
//Flags used by the C compiler during RELWITHDEBINFO builds.
|
||||||
|
CMAKE_C_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG
|
||||||
|
|
||||||
|
//Path to a program.
|
||||||
|
CMAKE_DLLTOOL:FILEPATH=/usr/bin/llvm-dlltool
|
||||||
|
|
||||||
|
//Flags used by the linker during all build types.
|
||||||
|
CMAKE_EXE_LINKER_FLAGS:STRING=
|
||||||
|
|
||||||
|
//Flags used by the linker during DEBUG builds.
|
||||||
|
CMAKE_EXE_LINKER_FLAGS_DEBUG:STRING=
|
||||||
|
|
||||||
|
//Flags used by the linker during MINSIZEREL builds.
|
||||||
|
CMAKE_EXE_LINKER_FLAGS_MINSIZEREL:STRING=
|
||||||
|
|
||||||
|
//Flags used by the linker during RELEASE builds.
|
||||||
|
CMAKE_EXE_LINKER_FLAGS_RELEASE:STRING=
|
||||||
|
|
||||||
|
//Flags used by the linker during RELWITHDEBINFO builds.
|
||||||
|
CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO:STRING=
|
||||||
|
|
||||||
|
//Enable/Disable output of compile commands during generation.
|
||||||
|
CMAKE_EXPORT_COMPILE_COMMANDS:BOOL=
|
||||||
|
|
||||||
|
//Value Computed by CMake.
|
||||||
|
CMAKE_FIND_PACKAGE_REDIRECTS_DIR:STATIC=/home/brett/Documents/Brock/CS 3P98/Final Project/cmake-build-emrelease/CMakeFiles/pkgRedirects
|
||||||
|
|
||||||
|
//Install path prefix, prepended onto install directories.
|
||||||
|
CMAKE_INSTALL_PREFIX:PATH=/usr/share/emscripten/cache/sysroot
|
||||||
|
|
||||||
|
//Path to a program.
|
||||||
|
CMAKE_LINKER:FILEPATH=/usr/bin/ld.lld
|
||||||
|
|
||||||
|
//Path to a program.
|
||||||
|
CMAKE_MAKE_PROGRAM:FILEPATH=/usr/bin/gmake
|
||||||
|
|
||||||
|
//Flags used by the linker during the creation of modules during
|
||||||
|
// all build types.
|
||||||
|
CMAKE_MODULE_LINKER_FLAGS:STRING=
|
||||||
|
|
||||||
|
//Flags used by the linker during the creation of modules during
|
||||||
|
// DEBUG builds.
|
||||||
|
CMAKE_MODULE_LINKER_FLAGS_DEBUG:STRING=
|
||||||
|
|
||||||
|
//Flags used by the linker during the creation of modules during
|
||||||
|
// MINSIZEREL builds.
|
||||||
|
CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL:STRING=
|
||||||
|
|
||||||
|
//Flags used by the linker during the creation of modules during
|
||||||
|
// RELEASE builds.
|
||||||
|
CMAKE_MODULE_LINKER_FLAGS_RELEASE:STRING=
|
||||||
|
|
||||||
|
//Flags used by the linker during the creation of modules during
|
||||||
|
// RELWITHDEBINFO builds.
|
||||||
|
CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO:STRING=
|
||||||
|
|
||||||
|
//Path to a program.
|
||||||
|
CMAKE_NM:FILEPATH=/usr/bin/llvm-nm
|
||||||
|
|
||||||
|
//Path to a program.
|
||||||
|
CMAKE_OBJCOPY:FILEPATH=/usr/bin/llvm-objcopy
|
||||||
|
|
||||||
|
//Path to a program.
|
||||||
|
CMAKE_OBJDUMP:FILEPATH=/usr/bin/llvm-objdump
|
||||||
|
|
||||||
|
//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=FinalProject
|
||||||
|
|
||||||
|
//Value Computed by CMake
|
||||||
|
CMAKE_PROJECT_VERSION:STATIC=0.3.2
|
||||||
|
|
||||||
|
//Value Computed by CMake
|
||||||
|
CMAKE_PROJECT_VERSION_MAJOR:STATIC=0
|
||||||
|
|
||||||
|
//Value Computed by CMake
|
||||||
|
CMAKE_PROJECT_VERSION_MINOR:STATIC=3
|
||||||
|
|
||||||
|
//Value Computed by CMake
|
||||||
|
CMAKE_PROJECT_VERSION_PATCH:STATIC=2
|
||||||
|
|
||||||
|
//Value Computed by CMake
|
||||||
|
CMAKE_PROJECT_VERSION_TWEAK:STATIC=
|
||||||
|
|
||||||
|
//Emscripten ranlib
|
||||||
|
CMAKE_RANLIB:FILEPATH=emranlib
|
||||||
|
|
||||||
|
//Path to a program.
|
||||||
|
CMAKE_READELF:FILEPATH=/usr/bin/llvm-readelf
|
||||||
|
|
||||||
|
//Flags used by the linker during the creation of shared libraries
|
||||||
|
// during all build types.
|
||||||
|
CMAKE_SHARED_LINKER_FLAGS:STRING=
|
||||||
|
|
||||||
|
//Flags used by the linker during the creation of shared libraries
|
||||||
|
// during DEBUG builds.
|
||||||
|
CMAKE_SHARED_LINKER_FLAGS_DEBUG:STRING=
|
||||||
|
|
||||||
|
//Flags used by the linker during the creation of shared libraries
|
||||||
|
// during MINSIZEREL builds.
|
||||||
|
CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL:STRING=
|
||||||
|
|
||||||
|
//Flags used by the linker during the creation of shared libraries
|
||||||
|
// during RELEASE builds.
|
||||||
|
CMAKE_SHARED_LINKER_FLAGS_RELEASE:STRING=
|
||||||
|
|
||||||
|
//Flags used by the linker during the creation of shared libraries
|
||||||
|
// during RELWITHDEBINFO builds.
|
||||||
|
CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO:STRING=
|
||||||
|
|
||||||
|
//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
|
||||||
|
|
||||||
|
//Flags used by the linker during the creation of static libraries
|
||||||
|
// during all build types.
|
||||||
|
CMAKE_STATIC_LINKER_FLAGS:STRING=
|
||||||
|
|
||||||
|
//Flags used by the linker during the creation of static libraries
|
||||||
|
// during DEBUG builds.
|
||||||
|
CMAKE_STATIC_LINKER_FLAGS_DEBUG:STRING=
|
||||||
|
|
||||||
|
//Flags used by the linker during the creation of static libraries
|
||||||
|
// during MINSIZEREL builds.
|
||||||
|
CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL:STRING=
|
||||||
|
|
||||||
|
//Flags used by the linker during the creation of static libraries
|
||||||
|
// during RELEASE builds.
|
||||||
|
CMAKE_STATIC_LINKER_FLAGS_RELEASE:STRING=
|
||||||
|
|
||||||
|
//Flags used by the linker during the creation of static libraries
|
||||||
|
// during RELWITHDEBINFO builds.
|
||||||
|
CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO:STRING=
|
||||||
|
|
||||||
|
//Path to a program.
|
||||||
|
CMAKE_STRIP:FILEPATH=/usr/bin/llvm-strip
|
||||||
|
|
||||||
|
//No help, variable specified on the command line.
|
||||||
|
CMAKE_TOOLCHAIN_FILE:UNINITIALIZED=/usr/share/emscripten/cmake/Modules/Platform/Emscripten.cmake
|
||||||
|
|
||||||
|
//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
|
||||||
|
|
||||||
|
//If true, we are targeting Emscripten output.
|
||||||
|
EMSCRIPTEN:BOOL=1
|
||||||
|
|
||||||
|
//Force C/C++ compiler
|
||||||
|
EMSCRIPTEN_FORCE_COMPILERS:BOOL=ON
|
||||||
|
|
||||||
|
//If set, static library targets generate LLVM bitcode files (.bc).
|
||||||
|
// If disabled (default), UNIX ar archives (.a) are generated.
|
||||||
|
EMSCRIPTEN_GENERATE_BITCODE_STATIC_LIBRARIES:BOOL=OFF
|
||||||
|
|
||||||
|
//Value Computed by CMake
|
||||||
|
FinalProject_BINARY_DIR:STATIC=/home/brett/Documents/Brock/CS 3P98/Final Project/cmake-build-emrelease
|
||||||
|
|
||||||
|
//Value Computed by CMake
|
||||||
|
FinalProject_IS_TOP_LEVEL:STATIC=ON
|
||||||
|
|
||||||
|
//Value Computed by CMake
|
||||||
|
FinalProject_SOURCE_DIR:STATIC=/home/brett/Documents/Brock/CS 3P98/Final Project
|
||||||
|
|
||||||
|
//Use the extra stuff I've added to this project! (Basically emscriptem)
|
||||||
|
USE_EXTRAS:BOOL=ON
|
||||||
|
|
||||||
|
//Path to a file.
|
||||||
|
ZLIB_INCLUDE_DIR:PATH=ZLIB_INCLUDE_DIR-NOTFOUND
|
||||||
|
|
||||||
|
//Path to a library.
|
||||||
|
ZLIB_LIBRARY_DEBUG:FILEPATH=ZLIB_LIBRARY_DEBUG-NOTFOUND
|
||||||
|
|
||||||
|
//Path to a library.
|
||||||
|
ZLIB_LIBRARY_RELEASE:FILEPATH=ZLIB_LIBRARY_RELEASE-NOTFOUND
|
||||||
|
|
||||||
|
|
||||||
|
########################
|
||||||
|
# INTERNAL cache entries
|
||||||
|
########################
|
||||||
|
|
||||||
|
//ADVANCED property for variable: CMAKE_ADDR2LINE
|
||||||
|
CMAKE_ADDR2LINE-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_AR
|
||||||
|
CMAKE_AR-ADVANCED:INTERNAL=1
|
||||||
|
//This is the directory where this CMakeCache.txt was created
|
||||||
|
CMAKE_CACHEFILE_DIR:INTERNAL=/home/brett/Documents/Brock/CS 3P98/Final Project/cmake-build-emrelease
|
||||||
|
//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=25
|
||||||
|
//Patch version of cmake used to create the current loaded cache
|
||||||
|
CMAKE_CACHE_PATCH_VERSION:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_COLOR_MAKEFILE
|
||||||
|
CMAKE_COLOR_MAKEFILE-ADVANCED:INTERNAL=1
|
||||||
|
//Path to CMake executable.
|
||||||
|
CMAKE_COMMAND:INTERNAL=/usr/bin/cmake
|
||||||
|
//Path to cpack program executable.
|
||||||
|
CMAKE_CPACK_COMMAND:INTERNAL=/usr/bin/cpack
|
||||||
|
//Path to ctest program executable.
|
||||||
|
CMAKE_CTEST_COMMAND:INTERNAL=/usr/bin/ctest
|
||||||
|
//ADVANCED property for variable: CMAKE_CXX_COMPILER
|
||||||
|
CMAKE_CXX_COMPILER-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_CXX_COMPILER_AR
|
||||||
|
CMAKE_CXX_COMPILER_AR-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_CXX_COMPILER_RANLIB
|
||||||
|
CMAKE_CXX_COMPILER_RANLIB-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_CXX_FLAGS
|
||||||
|
CMAKE_CXX_FLAGS-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_CXX_FLAGS_DEBUG
|
||||||
|
CMAKE_CXX_FLAGS_DEBUG-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_CXX_FLAGS_MINSIZEREL
|
||||||
|
CMAKE_CXX_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELEASE
|
||||||
|
CMAKE_CXX_FLAGS_RELEASE-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELWITHDEBINFO
|
||||||
|
CMAKE_CXX_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_C_COMPILER
|
||||||
|
CMAKE_C_COMPILER-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_C_COMPILER_AR
|
||||||
|
CMAKE_C_COMPILER_AR-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_C_COMPILER_RANLIB
|
||||||
|
CMAKE_C_COMPILER_RANLIB-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_C_FLAGS
|
||||||
|
CMAKE_C_FLAGS-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_C_FLAGS_DEBUG
|
||||||
|
CMAKE_C_FLAGS_DEBUG-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_C_FLAGS_MINSIZEREL
|
||||||
|
CMAKE_C_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_C_FLAGS_RELEASE
|
||||||
|
CMAKE_C_FLAGS_RELEASE-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_C_FLAGS_RELWITHDEBINFO
|
||||||
|
CMAKE_C_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_DLLTOOL
|
||||||
|
CMAKE_DLLTOOL-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS
|
||||||
|
CMAKE_EXE_LINKER_FLAGS-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_DEBUG
|
||||||
|
CMAKE_EXE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_MINSIZEREL
|
||||||
|
CMAKE_EXE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELEASE
|
||||||
|
CMAKE_EXE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO
|
||||||
|
CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
|
||||||
|
//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=/home/brett/Documents/Brock/CS 3P98/Final Project
|
||||||
|
//ADVANCED property for variable: CMAKE_LINKER
|
||||||
|
CMAKE_LINKER-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_MAKE_PROGRAM
|
||||||
|
CMAKE_MAKE_PROGRAM-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS
|
||||||
|
CMAKE_MODULE_LINKER_FLAGS-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_DEBUG
|
||||||
|
CMAKE_MODULE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL
|
||||||
|
CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELEASE
|
||||||
|
CMAKE_MODULE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO
|
||||||
|
CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_NM
|
||||||
|
CMAKE_NM-ADVANCED:INTERNAL=1
|
||||||
|
//number of local generators
|
||||||
|
CMAKE_NUMBER_OF_MAKEFILES:INTERNAL=2
|
||||||
|
//ADVANCED property for variable: CMAKE_OBJCOPY
|
||||||
|
CMAKE_OBJCOPY-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_OBJDUMP
|
||||||
|
CMAKE_OBJDUMP-ADVANCED:INTERNAL=1
|
||||||
|
//Platform information initialized
|
||||||
|
CMAKE_PLATFORM_INFO_INITIALIZED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_RANLIB
|
||||||
|
CMAKE_RANLIB-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_READELF
|
||||||
|
CMAKE_READELF-ADVANCED:INTERNAL=1
|
||||||
|
//Path to CMake installation.
|
||||||
|
CMAKE_ROOT:INTERNAL=/usr/share/cmake-3.25
|
||||||
|
//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS
|
||||||
|
CMAKE_SHARED_LINKER_FLAGS-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_DEBUG
|
||||||
|
CMAKE_SHARED_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL
|
||||||
|
CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELEASE
|
||||||
|
CMAKE_SHARED_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO
|
||||||
|
CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
|
||||||
|
//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_STATIC_LINKER_FLAGS
|
||||||
|
CMAKE_STATIC_LINKER_FLAGS-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_DEBUG
|
||||||
|
CMAKE_STATIC_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL
|
||||||
|
CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELEASE
|
||||||
|
CMAKE_STATIC_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO
|
||||||
|
CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_STRIP
|
||||||
|
CMAKE_STRIP-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: ZLIB_INCLUDE_DIR
|
||||||
|
ZLIB_INCLUDE_DIR-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: ZLIB_LIBRARY_DEBUG
|
||||||
|
ZLIB_LIBRARY_DEBUG-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: ZLIB_LIBRARY_RELEASE
|
||||||
|
ZLIB_LIBRARY_RELEASE-ADVANCED:INTERNAL=1
|
||||||
|
|
|
@ -0,0 +1,72 @@
|
||||||
|
set(CMAKE_C_COMPILER "/usr/bin/emcc")
|
||||||
|
set(CMAKE_C_COMPILER_ARG1 "")
|
||||||
|
set(CMAKE_C_COMPILER_ID "Clang")
|
||||||
|
set(CMAKE_C_COMPILER_VERSION "14.0.6")
|
||||||
|
set(CMAKE_C_COMPILER_VERSION_INTERNAL "")
|
||||||
|
set(CMAKE_C_COMPILER_WRAPPER "")
|
||||||
|
set(CMAKE_C_STANDARD_COMPUTED_DEFAULT "11")
|
||||||
|
set(CMAKE_C_EXTENSIONS_COMPUTED_DEFAULT "")
|
||||||
|
set(CMAKE_C_COMPILE_FEATURES "c_std_90;c_function_prototypes;c_std_99;c_restrict;c_variadic_macros;c_std_11;c_static_assert;c_std_17;c_std_23")
|
||||||
|
set(CMAKE_C90_COMPILE_FEATURES "c_std_90;c_function_prototypes")
|
||||||
|
set(CMAKE_C99_COMPILE_FEATURES "c_std_99;c_restrict;c_variadic_macros")
|
||||||
|
set(CMAKE_C11_COMPILE_FEATURES "c_std_11;c_static_assert")
|
||||||
|
set(CMAKE_C17_COMPILE_FEATURES "c_std_17")
|
||||||
|
set(CMAKE_C23_COMPILE_FEATURES "c_std_23")
|
||||||
|
|
||||||
|
set(CMAKE_C_PLATFORM_ID "emscripten")
|
||||||
|
set(CMAKE_C_SIMULATE_ID "")
|
||||||
|
set(CMAKE_C_COMPILER_FRONTEND_VARIANT "GNU")
|
||||||
|
set(CMAKE_C_SIMULATE_VERSION "")
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
set(CMAKE_AR "emar")
|
||||||
|
set(CMAKE_C_COMPILER_AR "emar")
|
||||||
|
set(CMAKE_RANLIB "emranlib")
|
||||||
|
set(CMAKE_C_COMPILER_RANLIB "emranlib")
|
||||||
|
set(CMAKE_LINKER "/usr/bin/ld.lld")
|
||||||
|
set(CMAKE_MT "")
|
||||||
|
set(CMAKE_COMPILER_IS_GNUCC )
|
||||||
|
set(CMAKE_C_COMPILER_LOADED 1)
|
||||||
|
set(CMAKE_C_COMPILER_WORKS TRUE)
|
||||||
|
set(CMAKE_C_ABI_COMPILED )
|
||||||
|
|
||||||
|
set(CMAKE_C_COMPILER_ENV_VAR "CC")
|
||||||
|
|
||||||
|
set(CMAKE_C_COMPILER_ID_RUN 1)
|
||||||
|
set(CMAKE_C_SOURCE_FILE_EXTENSIONS c;m)
|
||||||
|
set(CMAKE_C_IGNORE_EXTENSIONS h;H;o;O;obj;OBJ;def;DEF;rc;RC)
|
||||||
|
set(CMAKE_C_LINKER_PREFERENCE 10)
|
||||||
|
|
||||||
|
# Save compiler ABI information.
|
||||||
|
set(CMAKE_C_SIZEOF_DATA_PTR "4")
|
||||||
|
set(CMAKE_C_COMPILER_ABI "")
|
||||||
|
set(CMAKE_C_BYTE_ORDER "")
|
||||||
|
set(CMAKE_C_LIBRARY_ARCHITECTURE "")
|
||||||
|
|
||||||
|
if(CMAKE_C_SIZEOF_DATA_PTR)
|
||||||
|
set(CMAKE_SIZEOF_VOID_P "${CMAKE_C_SIZEOF_DATA_PTR}")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
if(CMAKE_C_COMPILER_ABI)
|
||||||
|
set(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_C_COMPILER_ABI}")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
if(CMAKE_C_LIBRARY_ARCHITECTURE)
|
||||||
|
set(CMAKE_LIBRARY_ARCHITECTURE "")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
set(CMAKE_C_CL_SHOWINCLUDES_PREFIX "")
|
||||||
|
if(CMAKE_C_CL_SHOWINCLUDES_PREFIX)
|
||||||
|
set(CMAKE_CL_SHOWINCLUDES_PREFIX "${CMAKE_C_CL_SHOWINCLUDES_PREFIX}")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
set(CMAKE_C_IMPLICIT_INCLUDE_DIRECTORIES "")
|
||||||
|
set(CMAKE_C_IMPLICIT_LINK_LIBRARIES "")
|
||||||
|
set(CMAKE_C_IMPLICIT_LINK_DIRECTORIES "")
|
||||||
|
set(CMAKE_C_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "")
|
|
@ -0,0 +1,83 @@
|
||||||
|
set(CMAKE_CXX_COMPILER "/usr/bin/em++")
|
||||||
|
set(CMAKE_CXX_COMPILER_ARG1 "")
|
||||||
|
set(CMAKE_CXX_COMPILER_ID "Clang")
|
||||||
|
set(CMAKE_CXX_COMPILER_VERSION "14.0.6")
|
||||||
|
set(CMAKE_CXX_COMPILER_VERSION_INTERNAL "")
|
||||||
|
set(CMAKE_CXX_COMPILER_WRAPPER "")
|
||||||
|
set(CMAKE_CXX_STANDARD_COMPUTED_DEFAULT "98")
|
||||||
|
set(CMAKE_CXX_EXTENSIONS_COMPUTED_DEFAULT "")
|
||||||
|
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;cxx_std_23")
|
||||||
|
set(CMAKE_CXX98_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters")
|
||||||
|
set(CMAKE_CXX11_COMPILE_FEATURES "cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates")
|
||||||
|
set(CMAKE_CXX14_COMPILE_FEATURES "cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates")
|
||||||
|
set(CMAKE_CXX17_COMPILE_FEATURES "cxx_std_17")
|
||||||
|
set(CMAKE_CXX20_COMPILE_FEATURES "cxx_std_20")
|
||||||
|
set(CMAKE_CXX23_COMPILE_FEATURES "cxx_std_23")
|
||||||
|
|
||||||
|
set(CMAKE_CXX_PLATFORM_ID "emscripten")
|
||||||
|
set(CMAKE_CXX_SIMULATE_ID "")
|
||||||
|
set(CMAKE_CXX_COMPILER_FRONTEND_VARIANT "GNU")
|
||||||
|
set(CMAKE_CXX_SIMULATE_VERSION "")
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
set(CMAKE_AR "emar")
|
||||||
|
set(CMAKE_CXX_COMPILER_AR "emar")
|
||||||
|
set(CMAKE_RANLIB "emranlib")
|
||||||
|
set(CMAKE_CXX_COMPILER_RANLIB "emranlib")
|
||||||
|
set(CMAKE_LINKER "/usr/bin/ld.lld")
|
||||||
|
set(CMAKE_MT "")
|
||||||
|
set(CMAKE_COMPILER_IS_GNUCXX )
|
||||||
|
set(CMAKE_CXX_COMPILER_LOADED 1)
|
||||||
|
set(CMAKE_CXX_COMPILER_WORKS TRUE)
|
||||||
|
set(CMAKE_CXX_ABI_COMPILED )
|
||||||
|
|
||||||
|
set(CMAKE_CXX_COMPILER_ENV_VAR "CXX")
|
||||||
|
|
||||||
|
set(CMAKE_CXX_COMPILER_ID_RUN 1)
|
||||||
|
set(CMAKE_CXX_SOURCE_FILE_EXTENSIONS C;M;c++;cc;cpp;cxx;m;mm;mpp;CPP;ixx;cppm)
|
||||||
|
set(CMAKE_CXX_IGNORE_EXTENSIONS inl;h;hpp;HPP;H;o;O;obj;OBJ;def;DEF;rc;RC)
|
||||||
|
|
||||||
|
foreach (lang C OBJC OBJCXX)
|
||||||
|
if (CMAKE_${lang}_COMPILER_ID_RUN)
|
||||||
|
foreach(extension IN LISTS CMAKE_${lang}_SOURCE_FILE_EXTENSIONS)
|
||||||
|
list(REMOVE_ITEM CMAKE_CXX_SOURCE_FILE_EXTENSIONS ${extension})
|
||||||
|
endforeach()
|
||||||
|
endif()
|
||||||
|
endforeach()
|
||||||
|
|
||||||
|
set(CMAKE_CXX_LINKER_PREFERENCE 30)
|
||||||
|
set(CMAKE_CXX_LINKER_PREFERENCE_PROPAGATES 1)
|
||||||
|
|
||||||
|
# Save compiler ABI information.
|
||||||
|
set(CMAKE_CXX_SIZEOF_DATA_PTR "4")
|
||||||
|
set(CMAKE_CXX_COMPILER_ABI "")
|
||||||
|
set(CMAKE_CXX_BYTE_ORDER "")
|
||||||
|
set(CMAKE_CXX_LIBRARY_ARCHITECTURE "")
|
||||||
|
|
||||||
|
if(CMAKE_CXX_SIZEOF_DATA_PTR)
|
||||||
|
set(CMAKE_SIZEOF_VOID_P "${CMAKE_CXX_SIZEOF_DATA_PTR}")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
if(CMAKE_CXX_COMPILER_ABI)
|
||||||
|
set(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_CXX_COMPILER_ABI}")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
if(CMAKE_CXX_LIBRARY_ARCHITECTURE)
|
||||||
|
set(CMAKE_LIBRARY_ARCHITECTURE "")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
set(CMAKE_CXX_CL_SHOWINCLUDES_PREFIX "")
|
||||||
|
if(CMAKE_CXX_CL_SHOWINCLUDES_PREFIX)
|
||||||
|
set(CMAKE_CL_SHOWINCLUDES_PREFIX "${CMAKE_CXX_CL_SHOWINCLUDES_PREFIX}")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
set(CMAKE_CXX_IMPLICIT_INCLUDE_DIRECTORIES "")
|
||||||
|
set(CMAKE_CXX_IMPLICIT_LINK_LIBRARIES "")
|
||||||
|
set(CMAKE_CXX_IMPLICIT_LINK_DIRECTORIES "")
|
||||||
|
set(CMAKE_CXX_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "")
|
|
@ -0,0 +1,15 @@
|
||||||
|
set(CMAKE_HOST_SYSTEM "Linux-6.1.0-3-amd64")
|
||||||
|
set(CMAKE_HOST_SYSTEM_NAME "Linux")
|
||||||
|
set(CMAKE_HOST_SYSTEM_VERSION "6.1.0-3-amd64")
|
||||||
|
set(CMAKE_HOST_SYSTEM_PROCESSOR "x86_64")
|
||||||
|
|
||||||
|
include("/usr/share/emscripten/cmake/Modules/Platform/Emscripten.cmake")
|
||||||
|
|
||||||
|
set(CMAKE_SYSTEM "Emscripten-1")
|
||||||
|
set(CMAKE_SYSTEM_NAME "Emscripten")
|
||||||
|
set(CMAKE_SYSTEM_VERSION "1")
|
||||||
|
set(CMAKE_SYSTEM_PROCESSOR "x86")
|
||||||
|
|
||||||
|
set(CMAKE_CROSSCOMPILING "TRUE")
|
||||||
|
|
||||||
|
set(CMAKE_SYSTEM_LOADED 1)
|
|
@ -0,0 +1,72 @@
|
||||||
|
set(CMAKE_C_COMPILER "/usr/bin/emcc")
|
||||||
|
set(CMAKE_C_COMPILER_ARG1 "")
|
||||||
|
set(CMAKE_C_COMPILER_ID "Clang")
|
||||||
|
set(CMAKE_C_COMPILER_VERSION "14.0.6")
|
||||||
|
set(CMAKE_C_COMPILER_VERSION_INTERNAL "")
|
||||||
|
set(CMAKE_C_COMPILER_WRAPPER "")
|
||||||
|
set(CMAKE_C_STANDARD_COMPUTED_DEFAULT "11")
|
||||||
|
set(CMAKE_C_EXTENSIONS_COMPUTED_DEFAULT "")
|
||||||
|
set(CMAKE_C_COMPILE_FEATURES "c_std_90;c_function_prototypes;c_std_99;c_restrict;c_variadic_macros;c_std_11;c_static_assert;c_std_17;c_std_23")
|
||||||
|
set(CMAKE_C90_COMPILE_FEATURES "c_std_90;c_function_prototypes")
|
||||||
|
set(CMAKE_C99_COMPILE_FEATURES "c_std_99;c_restrict;c_variadic_macros")
|
||||||
|
set(CMAKE_C11_COMPILE_FEATURES "c_std_11;c_static_assert")
|
||||||
|
set(CMAKE_C17_COMPILE_FEATURES "c_std_17")
|
||||||
|
set(CMAKE_C23_COMPILE_FEATURES "c_std_23")
|
||||||
|
|
||||||
|
set(CMAKE_C_PLATFORM_ID "emscripten")
|
||||||
|
set(CMAKE_C_SIMULATE_ID "")
|
||||||
|
set(CMAKE_C_COMPILER_FRONTEND_VARIANT "GNU")
|
||||||
|
set(CMAKE_C_SIMULATE_VERSION "")
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
set(CMAKE_AR "emar")
|
||||||
|
set(CMAKE_C_COMPILER_AR "emar")
|
||||||
|
set(CMAKE_RANLIB "emranlib")
|
||||||
|
set(CMAKE_C_COMPILER_RANLIB "emranlib")
|
||||||
|
set(CMAKE_LINKER "/usr/bin/ld.lld")
|
||||||
|
set(CMAKE_MT "")
|
||||||
|
set(CMAKE_COMPILER_IS_GNUCC )
|
||||||
|
set(CMAKE_C_COMPILER_LOADED 1)
|
||||||
|
set(CMAKE_C_COMPILER_WORKS TRUE)
|
||||||
|
set(CMAKE_C_ABI_COMPILED )
|
||||||
|
|
||||||
|
set(CMAKE_C_COMPILER_ENV_VAR "CC")
|
||||||
|
|
||||||
|
set(CMAKE_C_COMPILER_ID_RUN 1)
|
||||||
|
set(CMAKE_C_SOURCE_FILE_EXTENSIONS c;m)
|
||||||
|
set(CMAKE_C_IGNORE_EXTENSIONS h;H;o;O;obj;OBJ;def;DEF;rc;RC)
|
||||||
|
set(CMAKE_C_LINKER_PREFERENCE 10)
|
||||||
|
|
||||||
|
# Save compiler ABI information.
|
||||||
|
set(CMAKE_C_SIZEOF_DATA_PTR "4")
|
||||||
|
set(CMAKE_C_COMPILER_ABI "")
|
||||||
|
set(CMAKE_C_BYTE_ORDER "")
|
||||||
|
set(CMAKE_C_LIBRARY_ARCHITECTURE "")
|
||||||
|
|
||||||
|
if(CMAKE_C_SIZEOF_DATA_PTR)
|
||||||
|
set(CMAKE_SIZEOF_VOID_P "${CMAKE_C_SIZEOF_DATA_PTR}")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
if(CMAKE_C_COMPILER_ABI)
|
||||||
|
set(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_C_COMPILER_ABI}")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
if(CMAKE_C_LIBRARY_ARCHITECTURE)
|
||||||
|
set(CMAKE_LIBRARY_ARCHITECTURE "")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
set(CMAKE_C_CL_SHOWINCLUDES_PREFIX "")
|
||||||
|
if(CMAKE_C_CL_SHOWINCLUDES_PREFIX)
|
||||||
|
set(CMAKE_CL_SHOWINCLUDES_PREFIX "${CMAKE_C_CL_SHOWINCLUDES_PREFIX}")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
set(CMAKE_C_IMPLICIT_INCLUDE_DIRECTORIES "")
|
||||||
|
set(CMAKE_C_IMPLICIT_LINK_LIBRARIES "")
|
||||||
|
set(CMAKE_C_IMPLICIT_LINK_DIRECTORIES "")
|
||||||
|
set(CMAKE_C_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "")
|
|
@ -0,0 +1,83 @@
|
||||||
|
set(CMAKE_CXX_COMPILER "/usr/bin/em++")
|
||||||
|
set(CMAKE_CXX_COMPILER_ARG1 "")
|
||||||
|
set(CMAKE_CXX_COMPILER_ID "Clang")
|
||||||
|
set(CMAKE_CXX_COMPILER_VERSION "14.0.6")
|
||||||
|
set(CMAKE_CXX_COMPILER_VERSION_INTERNAL "")
|
||||||
|
set(CMAKE_CXX_COMPILER_WRAPPER "")
|
||||||
|
set(CMAKE_CXX_STANDARD_COMPUTED_DEFAULT "98")
|
||||||
|
set(CMAKE_CXX_EXTENSIONS_COMPUTED_DEFAULT "")
|
||||||
|
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;cxx_std_23")
|
||||||
|
set(CMAKE_CXX98_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters")
|
||||||
|
set(CMAKE_CXX11_COMPILE_FEATURES "cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates")
|
||||||
|
set(CMAKE_CXX14_COMPILE_FEATURES "cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates")
|
||||||
|
set(CMAKE_CXX17_COMPILE_FEATURES "cxx_std_17")
|
||||||
|
set(CMAKE_CXX20_COMPILE_FEATURES "cxx_std_20")
|
||||||
|
set(CMAKE_CXX23_COMPILE_FEATURES "cxx_std_23")
|
||||||
|
|
||||||
|
set(CMAKE_CXX_PLATFORM_ID "emscripten")
|
||||||
|
set(CMAKE_CXX_SIMULATE_ID "")
|
||||||
|
set(CMAKE_CXX_COMPILER_FRONTEND_VARIANT "GNU")
|
||||||
|
set(CMAKE_CXX_SIMULATE_VERSION "")
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
set(CMAKE_AR "emar")
|
||||||
|
set(CMAKE_CXX_COMPILER_AR "emar")
|
||||||
|
set(CMAKE_RANLIB "emranlib")
|
||||||
|
set(CMAKE_CXX_COMPILER_RANLIB "emranlib")
|
||||||
|
set(CMAKE_LINKER "/usr/bin/ld.lld")
|
||||||
|
set(CMAKE_MT "")
|
||||||
|
set(CMAKE_COMPILER_IS_GNUCXX )
|
||||||
|
set(CMAKE_CXX_COMPILER_LOADED 1)
|
||||||
|
set(CMAKE_CXX_COMPILER_WORKS TRUE)
|
||||||
|
set(CMAKE_CXX_ABI_COMPILED )
|
||||||
|
|
||||||
|
set(CMAKE_CXX_COMPILER_ENV_VAR "CXX")
|
||||||
|
|
||||||
|
set(CMAKE_CXX_COMPILER_ID_RUN 1)
|
||||||
|
set(CMAKE_CXX_SOURCE_FILE_EXTENSIONS C;M;c++;cc;cpp;cxx;m;mm;mpp;CPP;ixx;cppm)
|
||||||
|
set(CMAKE_CXX_IGNORE_EXTENSIONS inl;h;hpp;HPP;H;o;O;obj;OBJ;def;DEF;rc;RC)
|
||||||
|
|
||||||
|
foreach (lang C OBJC OBJCXX)
|
||||||
|
if (CMAKE_${lang}_COMPILER_ID_RUN)
|
||||||
|
foreach(extension IN LISTS CMAKE_${lang}_SOURCE_FILE_EXTENSIONS)
|
||||||
|
list(REMOVE_ITEM CMAKE_CXX_SOURCE_FILE_EXTENSIONS ${extension})
|
||||||
|
endforeach()
|
||||||
|
endif()
|
||||||
|
endforeach()
|
||||||
|
|
||||||
|
set(CMAKE_CXX_LINKER_PREFERENCE 30)
|
||||||
|
set(CMAKE_CXX_LINKER_PREFERENCE_PROPAGATES 1)
|
||||||
|
|
||||||
|
# Save compiler ABI information.
|
||||||
|
set(CMAKE_CXX_SIZEOF_DATA_PTR "4")
|
||||||
|
set(CMAKE_CXX_COMPILER_ABI "")
|
||||||
|
set(CMAKE_CXX_BYTE_ORDER "")
|
||||||
|
set(CMAKE_CXX_LIBRARY_ARCHITECTURE "")
|
||||||
|
|
||||||
|
if(CMAKE_CXX_SIZEOF_DATA_PTR)
|
||||||
|
set(CMAKE_SIZEOF_VOID_P "${CMAKE_CXX_SIZEOF_DATA_PTR}")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
if(CMAKE_CXX_COMPILER_ABI)
|
||||||
|
set(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_CXX_COMPILER_ABI}")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
if(CMAKE_CXX_LIBRARY_ARCHITECTURE)
|
||||||
|
set(CMAKE_LIBRARY_ARCHITECTURE "")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
set(CMAKE_CXX_CL_SHOWINCLUDES_PREFIX "")
|
||||||
|
if(CMAKE_CXX_CL_SHOWINCLUDES_PREFIX)
|
||||||
|
set(CMAKE_CL_SHOWINCLUDES_PREFIX "${CMAKE_CXX_CL_SHOWINCLUDES_PREFIX}")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
set(CMAKE_CXX_IMPLICIT_INCLUDE_DIRECTORIES "")
|
||||||
|
set(CMAKE_CXX_IMPLICIT_LINK_LIBRARIES "")
|
||||||
|
set(CMAKE_CXX_IMPLICIT_LINK_DIRECTORIES "")
|
||||||
|
set(CMAKE_CXX_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "")
|
|
@ -0,0 +1,15 @@
|
||||||
|
set(CMAKE_HOST_SYSTEM "Linux-6.1.0-3-amd64")
|
||||||
|
set(CMAKE_HOST_SYSTEM_NAME "Linux")
|
||||||
|
set(CMAKE_HOST_SYSTEM_VERSION "6.1.0-3-amd64")
|
||||||
|
set(CMAKE_HOST_SYSTEM_PROCESSOR "x86_64")
|
||||||
|
|
||||||
|
include("/usr/share/emscripten/cmake/Modules/Platform/Emscripten.cmake")
|
||||||
|
|
||||||
|
set(CMAKE_SYSTEM "Emscripten-1")
|
||||||
|
set(CMAKE_SYSTEM_NAME "Emscripten")
|
||||||
|
set(CMAKE_SYSTEM_VERSION "1")
|
||||||
|
set(CMAKE_SYSTEM_PROCESSOR "x86")
|
||||||
|
|
||||||
|
set(CMAKE_CROSSCOMPILING "TRUE")
|
||||||
|
|
||||||
|
set(CMAKE_SYSTEM_LOADED 1)
|
|
@ -0,0 +1,16 @@
|
||||||
|
# CMAKE generated file: DO NOT EDIT!
|
||||||
|
# Generated by "Unix Makefiles" Generator, CMake Version 3.25
|
||||||
|
|
||||||
|
# Relative path conversion top directories.
|
||||||
|
set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/home/brett/Documents/Brock/CS 3P98/Final Project")
|
||||||
|
set(CMAKE_RELATIVE_PATH_TOP_BINARY "/home/brett/Documents/Brock/CS 3P98/Final Project/cmake-build-emrelease")
|
||||||
|
|
||||||
|
# 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})
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue