working camera
parent
23730aa690
commit
adf26d85b5
|
@ -1,6 +1,10 @@
|
|||
cmake_minimum_required(VERSION 3.0)
|
||||
project(parksnrec VERSION 0.0.1)
|
||||
|
||||
option(ENABLE_ADDRSAN "Enable the address sanitizer" OFF)
|
||||
option(ENABLE_UBSAN "Enable the ub sanitizer" OFF)
|
||||
option(ENABLE_TSAN "Enable the thread data race sanitizer" OFF)
|
||||
|
||||
set(CMAKE_CXX_STANDARD 17)
|
||||
|
||||
set(OpenGL_GL_PREFERENCE GLVND)
|
||||
|
@ -30,3 +34,18 @@ target_link_libraries(parksnrec BLT)
|
|||
target_link_libraries(parksnrec OpenGL)
|
||||
target_link_libraries(parksnrec assimp)
|
||||
target_compile_options(parksnrec PRIVATE -Wall -Wextra -Wpedantic)
|
||||
|
||||
if (${ENABLE_ADDRSAN} MATCHES ON)
|
||||
target_compile_options(parksnrec PRIVATE -fsanitize=address)
|
||||
target_link_options(parksnrec PRIVATE -fsanitize=address)
|
||||
endif ()
|
||||
|
||||
if (${ENABLE_UBSAN} MATCHES ON)
|
||||
target_compile_options(parksnrec PRIVATE -fsanitize=undefined)
|
||||
target_link_options(parksnrec PRIVATE -fsanitize=undefined)
|
||||
endif ()
|
||||
|
||||
if (${ENABLE_TSAN} MATCHES ON)
|
||||
target_compile_options(parksnrec PRIVATE -fsanitize=thread)
|
||||
target_link_options(parksnrec PRIVATE -fsanitize=thread)
|
||||
endif ()
|
||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -0,0 +1,477 @@
|
|||
{
|
||||
"inputs" :
|
||||
[
|
||||
{
|
||||
"path" : "CMakeLists.txt"
|
||||
},
|
||||
{
|
||||
"isGenerated" : true,
|
||||
"path" : "cmake-build-debug-sanitizer/CMakeFiles/3.26.4/CMakeSystem.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "/usr/share/cmake/Modules/CMakeSystemSpecificInitialize.cmake"
|
||||
},
|
||||
{
|
||||
"isGenerated" : true,
|
||||
"path" : "cmake-build-debug-sanitizer/CMakeFiles/3.26.4/CMakeCCompiler.cmake"
|
||||
},
|
||||
{
|
||||
"isGenerated" : true,
|
||||
"path" : "cmake-build-debug-sanitizer/CMakeFiles/3.26.4/CMakeCXXCompiler.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "/usr/share/cmake/Modules/CMakeSystemSpecificInformation.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "/usr/share/cmake/Modules/CMakeGenericSystem.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "/usr/share/cmake/Modules/CMakeInitializeConfigs.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "/usr/share/cmake/Modules/Platform/Linux.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "/usr/share/cmake/Modules/Platform/UnixPaths.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "/usr/share/cmake/Modules/CMakeCInformation.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "/usr/share/cmake/Modules/CMakeLanguageInformation.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "/usr/share/cmake/Modules/Compiler/GNU-C.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "/usr/share/cmake/Modules/Compiler/GNU.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "/usr/share/cmake/Modules/Compiler/CMakeCommonCompilerMacros.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "/usr/share/cmake/Modules/Platform/Linux-GNU-C.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "/usr/share/cmake/Modules/Platform/Linux-GNU.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "/usr/share/cmake/Modules/CMakeCommonLanguageInclude.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "/usr/share/cmake/Modules/CMakeCXXInformation.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "/usr/share/cmake/Modules/CMakeLanguageInformation.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "/usr/share/cmake/Modules/Compiler/GNU-CXX.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "/usr/share/cmake/Modules/Compiler/GNU.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "/usr/share/cmake/Modules/Platform/Linux-GNU-CXX.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "/usr/share/cmake/Modules/Platform/Linux-GNU.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "/usr/share/cmake/Modules/CMakeCommonLanguageInclude.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "/usr/share/cmake/Modules/FindOpenGL.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "/usr/share/cmake/Modules/FindPackageHandleStandardArgs.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "/usr/share/cmake/Modules/FindPackageMessage.cmake"
|
||||
},
|
||||
{
|
||||
"path" : "libs/BLT/CMakeLists.txt"
|
||||
},
|
||||
{
|
||||
"path" : "libs/BLT/include/blt/config.h.in"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "/usr/share/cmake/Modules/FindZLIB.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "/usr/share/cmake/Modules/SelectLibraryConfigurations.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "/usr/share/cmake/Modules/FindPackageHandleStandardArgs.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "/usr/share/cmake/Modules/FindPackageMessage.cmake"
|
||||
},
|
||||
{
|
||||
"path" : "libs/glfw/glfw-3.3.8/CMakeLists.txt"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "/usr/share/cmake/Modules/GNUInstallDirs.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "/usr/share/cmake/Modules/CMakeDependentOption.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "/usr/share/cmake/Modules/FindThreads.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "/usr/share/cmake/Modules/CheckLibraryExists.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "/usr/share/cmake/Modules/CheckIncludeFile.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "/usr/share/cmake/Modules/CheckCSourceCompiles.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "/usr/share/cmake/Modules/Internal/CheckSourceCompiles.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "/usr/share/cmake/Modules/FindPackageHandleStandardArgs.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "/usr/share/cmake/Modules/FindPackageMessage.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "/usr/share/cmake/Modules/FindDoxygen.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "/usr/share/cmake/Modules/FindPackageHandleStandardArgs.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "/usr/share/cmake/Modules/FindPackageMessage.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "/usr/share/cmake/Modules/FindX11.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "/usr/share/cmake/Modules/FindFreetype.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "/usr/share/cmake/Modules/SelectLibraryConfigurations.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "/usr/share/cmake/Modules/FindPackageHandleStandardArgs.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "/usr/share/cmake/Modules/FindPackageMessage.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "/usr/share/cmake/Modules/FindFontconfig.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "/usr/share/cmake/Modules/FindPkgConfig.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "/usr/share/cmake/Modules/FindPackageHandleStandardArgs.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "/usr/share/cmake/Modules/FindPackageMessage.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "/usr/share/cmake/Modules/FindPackageHandleStandardArgs.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "/usr/share/cmake/Modules/FindPackageMessage.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "/usr/share/cmake/Modules/FindPackageHandleStandardArgs.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "/usr/share/cmake/Modules/FindPackageMessage.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "/usr/share/cmake/Modules/CheckFunctionExists.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "/usr/share/cmake/Modules/CheckLibraryExists.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "/usr/share/cmake/Modules/CMakePackageConfigHelpers.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "/usr/share/cmake/Modules/WriteBasicConfigVersionFile.cmake"
|
||||
},
|
||||
{
|
||||
"path" : "libs/glfw/glfw-3.3.8/src/glfw3Config.cmake.in"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "/usr/share/cmake/Modules/BasicConfigVersion-SameMajorVersion.cmake.in"
|
||||
},
|
||||
{
|
||||
"path" : "libs/glfw/glfw-3.3.8/src/glfw_config.h.in"
|
||||
},
|
||||
{
|
||||
"path" : "libs/glfw/glfw-3.3.8/src/glfw3.pc.in"
|
||||
},
|
||||
{
|
||||
"path" : "libs/glfw/glfw-3.3.8/cmake_uninstall.cmake.in"
|
||||
},
|
||||
{
|
||||
"path" : "libs/glfw/glfw-3.3.8/src/CMakeLists.txt"
|
||||
},
|
||||
{
|
||||
"path" : "libs/glfw/glfw-3.3.8/examples/CMakeLists.txt"
|
||||
},
|
||||
{
|
||||
"path" : "libs/glfw/glfw-3.3.8/tests/CMakeLists.txt"
|
||||
},
|
||||
{
|
||||
"path" : "libs/assimp/CMakeLists.txt"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "/usr/share/cmake/Modules/GNUInstallDirs.cmake"
|
||||
},
|
||||
{
|
||||
"path" : "libs/assimp/cmake-modules/FindPkgMacros.cmake"
|
||||
},
|
||||
{
|
||||
"path" : "libs/assimp/cmake-modules/PrecompiledHeader.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "/usr/share/cmake/Modules/GNUInstallDirs.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "/usr/share/cmake/Modules/CMakePackageConfigHelpers.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "/usr/share/cmake/Modules/WriteBasicConfigVersionFile.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "/usr/share/cmake/Modules/BasicConfigVersion-SameMajorVersion.cmake.in"
|
||||
},
|
||||
{
|
||||
"path" : "libs/assimp/cmake-modules/assimp-plain-config.cmake.in"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "/usr/share/cmake/Modules/CheckIncludeFile.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "/usr/share/cmake/Modules/CheckTypeSize.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "/usr/share/cmake/Modules/CheckIncludeFile.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "/usr/share/cmake/Modules/CheckIncludeFileCXX.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "/usr/share/cmake/Modules/CheckFunctionExists.cmake"
|
||||
},
|
||||
{
|
||||
"path" : "libs/assimp/assimp.pc.in"
|
||||
},
|
||||
{
|
||||
"path" : "libs/assimp/revision.h.in"
|
||||
},
|
||||
{
|
||||
"path" : "libs/assimp/include/assimp/config.h.in"
|
||||
},
|
||||
{
|
||||
"path" : "libs/assimp/contrib/zlib/CMakeLists.txt"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "/usr/share/cmake/Modules/CheckTypeSize.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "/usr/share/cmake/Modules/CheckIncludeFile.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "/usr/share/cmake/Modules/CheckIncludeFileCXX.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "/usr/share/cmake/Modules/CheckFunctionExists.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "/usr/share/cmake/Modules/CheckIncludeFile.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "/usr/share/cmake/Modules/CheckCSourceCompiles.cmake"
|
||||
},
|
||||
{
|
||||
"path" : "libs/assimp/contrib/zlib/zlib.pc.cmakein"
|
||||
},
|
||||
{
|
||||
"path" : "libs/assimp/contrib/zlib/zconf.h.cmakein"
|
||||
},
|
||||
{
|
||||
"path" : "libs/assimp/code/CMakeLists.txt"
|
||||
},
|
||||
{
|
||||
"path" : "libs/assimp/cmake-modules/FindRT.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "/usr/share/cmake/Modules/FindPackageHandleStandardArgs.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "/usr/share/cmake/Modules/FindPackageMessage.cmake"
|
||||
}
|
||||
],
|
||||
"kind" : "cmakeFiles",
|
||||
"paths" :
|
||||
{
|
||||
"build" : "/home/brett/git/parksandrec/cmake-build-debug-sanitizer",
|
||||
"source" : "/home/brett/git/parksandrec"
|
||||
},
|
||||
"version" :
|
||||
{
|
||||
"major" : 1,
|
||||
"minor" : 0
|
||||
}
|
||||
}
|
|
@ -0,0 +1,565 @@
|
|||
{
|
||||
"configurations" :
|
||||
[
|
||||
{
|
||||
"directories" :
|
||||
[
|
||||
{
|
||||
"build" : ".",
|
||||
"childIndexes" :
|
||||
[
|
||||
1,
|
||||
2,
|
||||
6
|
||||
],
|
||||
"hasInstallRule" : true,
|
||||
"jsonFile" : "directory-.-Debug-f5ebdc15457944623624.json",
|
||||
"minimumCMakeVersion" :
|
||||
{
|
||||
"string" : "3.0"
|
||||
},
|
||||
"projectIndex" : 0,
|
||||
"source" : ".",
|
||||
"targetIndexes" :
|
||||
[
|
||||
20
|
||||
]
|
||||
},
|
||||
{
|
||||
"build" : "libs/BLT",
|
||||
"jsonFile" : "directory-libs.BLT-Debug-80d73d68b6498bb1b317.json",
|
||||
"minimumCMakeVersion" :
|
||||
{
|
||||
"string" : "3.0"
|
||||
},
|
||||
"parentIndex" : 0,
|
||||
"projectIndex" : 1,
|
||||
"source" : "libs/BLT",
|
||||
"targetIndexes" :
|
||||
[
|
||||
0
|
||||
]
|
||||
},
|
||||
{
|
||||
"build" : "libs/glfw/glfw-3.3.8",
|
||||
"childIndexes" :
|
||||
[
|
||||
3,
|
||||
4,
|
||||
5
|
||||
],
|
||||
"hasInstallRule" : true,
|
||||
"jsonFile" : "directory-libs.glfw.glfw-3.3.8-Debug-17d346cd47899605688d.json",
|
||||
"minimumCMakeVersion" :
|
||||
{
|
||||
"string" : "3.0"
|
||||
},
|
||||
"parentIndex" : 0,
|
||||
"projectIndex" : 2,
|
||||
"source" : "libs/glfw/glfw-3.3.8",
|
||||
"targetIndexes" :
|
||||
[
|
||||
31
|
||||
]
|
||||
},
|
||||
{
|
||||
"build" : "libs/glfw/glfw-3.3.8/src",
|
||||
"hasInstallRule" : true,
|
||||
"jsonFile" : "directory-libs.glfw.glfw-3.3.8.src-Debug-a54b46bff51f0c689ec6.json",
|
||||
"minimumCMakeVersion" :
|
||||
{
|
||||
"string" : "3.0"
|
||||
},
|
||||
"parentIndex" : 2,
|
||||
"projectIndex" : 2,
|
||||
"source" : "libs/glfw/glfw-3.3.8/src",
|
||||
"targetIndexes" :
|
||||
[
|
||||
9,
|
||||
32
|
||||
]
|
||||
},
|
||||
{
|
||||
"build" : "libs/glfw/glfw-3.3.8/examples",
|
||||
"jsonFile" : "directory-libs.glfw.glfw-3.3.8.examples-Debug-5dc8cd069547b6574a48.json",
|
||||
"minimumCMakeVersion" :
|
||||
{
|
||||
"string" : "3.0"
|
||||
},
|
||||
"parentIndex" : 2,
|
||||
"projectIndex" : 2,
|
||||
"source" : "libs/glfw/glfw-3.3.8/examples",
|
||||
"targetIndexes" :
|
||||
[
|
||||
2,
|
||||
8,
|
||||
11,
|
||||
18,
|
||||
21,
|
||||
23,
|
||||
24,
|
||||
25,
|
||||
33
|
||||
]
|
||||
},
|
||||
{
|
||||
"build" : "libs/glfw/glfw-3.3.8/tests",
|
||||
"jsonFile" : "directory-libs.glfw.glfw-3.3.8.tests-Debug-100e9076ae746861bb0e.json",
|
||||
"minimumCMakeVersion" :
|
||||
{
|
||||
"string" : "3.0"
|
||||
},
|
||||
"parentIndex" : 2,
|
||||
"projectIndex" : 2,
|
||||
"source" : "libs/glfw/glfw-3.3.8/tests",
|
||||
"targetIndexes" :
|
||||
[
|
||||
3,
|
||||
4,
|
||||
5,
|
||||
6,
|
||||
7,
|
||||
10,
|
||||
12,
|
||||
13,
|
||||
14,
|
||||
15,
|
||||
16,
|
||||
17,
|
||||
19,
|
||||
22,
|
||||
26,
|
||||
27,
|
||||
28,
|
||||
29,
|
||||
30,
|
||||
34
|
||||
]
|
||||
},
|
||||
{
|
||||
"build" : "libs/assimp",
|
||||
"childIndexes" :
|
||||
[
|
||||
7,
|
||||
8
|
||||
],
|
||||
"hasInstallRule" : true,
|
||||
"jsonFile" : "directory-libs.assimp-Debug-bd197654a361cb6760d0.json",
|
||||
"minimumCMakeVersion" :
|
||||
{
|
||||
"string" : "3.10"
|
||||
},
|
||||
"parentIndex" : 0,
|
||||
"projectIndex" : 3,
|
||||
"source" : "libs/assimp"
|
||||
},
|
||||
{
|
||||
"build" : "libs/assimp/contrib/zlib",
|
||||
"hasInstallRule" : true,
|
||||
"jsonFile" : "directory-libs.assimp.contrib.zlib-Debug-8702b58e3d50ea6f0d53.json",
|
||||
"minimumCMakeVersion" :
|
||||
{
|
||||
"string" : "3.10.0"
|
||||
},
|
||||
"parentIndex" : 6,
|
||||
"projectIndex" : 4,
|
||||
"source" : "libs/assimp/contrib/zlib",
|
||||
"targetIndexes" :
|
||||
[
|
||||
35
|
||||
]
|
||||
},
|
||||
{
|
||||
"build" : "libs/assimp/code",
|
||||
"hasInstallRule" : true,
|
||||
"jsonFile" : "directory-libs.assimp.code-Debug-44cf230ec383066ce281.json",
|
||||
"minimumCMakeVersion" :
|
||||
{
|
||||
"string" : "3.10"
|
||||
},
|
||||
"parentIndex" : 6,
|
||||
"projectIndex" : 3,
|
||||
"source" : "libs/assimp/code",
|
||||
"targetIndexes" :
|
||||
[
|
||||
1
|
||||
]
|
||||
}
|
||||
],
|
||||
"name" : "Debug",
|
||||
"projects" :
|
||||
[
|
||||
{
|
||||
"childIndexes" :
|
||||
[
|
||||
1,
|
||||
2,
|
||||
3
|
||||
],
|
||||
"directoryIndexes" :
|
||||
[
|
||||
0
|
||||
],
|
||||
"name" : "parksnrec",
|
||||
"targetIndexes" :
|
||||
[
|
||||
20
|
||||
]
|
||||
},
|
||||
{
|
||||
"directoryIndexes" :
|
||||
[
|
||||
1
|
||||
],
|
||||
"name" : "BLT",
|
||||
"parentIndex" : 0,
|
||||
"targetIndexes" :
|
||||
[
|
||||
0
|
||||
]
|
||||
},
|
||||
{
|
||||
"directoryIndexes" :
|
||||
[
|
||||
2,
|
||||
3,
|
||||
4,
|
||||
5
|
||||
],
|
||||
"name" : "GLFW",
|
||||
"parentIndex" : 0,
|
||||
"targetIndexes" :
|
||||
[
|
||||
2,
|
||||
3,
|
||||
4,
|
||||
5,
|
||||
6,
|
||||
7,
|
||||
8,
|
||||
9,
|
||||
10,
|
||||
11,
|
||||
12,
|
||||
13,
|
||||
14,
|
||||
15,
|
||||
16,
|
||||
17,
|
||||
18,
|
||||
19,
|
||||
21,
|
||||
22,
|
||||
23,
|
||||
24,
|
||||
25,
|
||||
26,
|
||||
27,
|
||||
28,
|
||||
29,
|
||||
30,
|
||||
31,
|
||||
32,
|
||||
33,
|
||||
34
|
||||
]
|
||||
},
|
||||
{
|
||||
"childIndexes" :
|
||||
[
|
||||
4
|
||||
],
|
||||
"directoryIndexes" :
|
||||
[
|
||||
6,
|
||||
8
|
||||
],
|
||||
"name" : "Assimp",
|
||||
"parentIndex" : 0,
|
||||
"targetIndexes" :
|
||||
[
|
||||
1
|
||||
]
|
||||
},
|
||||
{
|
||||
"directoryIndexes" :
|
||||
[
|
||||
7
|
||||
],
|
||||
"name" : "zlib",
|
||||
"parentIndex" : 3,
|
||||
"targetIndexes" :
|
||||
[
|
||||
35
|
||||
]
|
||||
}
|
||||
],
|
||||
"targets" :
|
||||
[
|
||||
{
|
||||
"directoryIndex" : 1,
|
||||
"id" : "BLT::@15de44d4528f33befea6",
|
||||
"jsonFile" : "target-BLT-Debug-15dc570ca90354999d56.json",
|
||||
"name" : "BLT",
|
||||
"projectIndex" : 1
|
||||
},
|
||||
{
|
||||
"directoryIndex" : 8,
|
||||
"id" : "assimp::@c18b53e73a5197b875a6",
|
||||
"jsonFile" : "target-assimp-Debug-9c8746948073f2968a38.json",
|
||||
"name" : "assimp",
|
||||
"projectIndex" : 3
|
||||
},
|
||||
{
|
||||
"directoryIndex" : 4,
|
||||
"id" : "boing::@555eb4510d21f320f20b",
|
||||
"jsonFile" : "target-boing-Debug-6cc04a9c0c2e7e3ba268.json",
|
||||
"name" : "boing",
|
||||
"projectIndex" : 2
|
||||
},
|
||||
{
|
||||
"directoryIndex" : 5,
|
||||
"id" : "clipboard::@77cfdd67c43044262fc4",
|
||||
"jsonFile" : "target-clipboard-Debug-88c901ada8cffb6824c7.json",
|
||||
"name" : "clipboard",
|
||||
"projectIndex" : 2
|
||||
},
|
||||
{
|
||||
"directoryIndex" : 5,
|
||||
"id" : "cursor::@77cfdd67c43044262fc4",
|
||||
"jsonFile" : "target-cursor-Debug-7f5da26917a67a7aba76.json",
|
||||
"name" : "cursor",
|
||||
"projectIndex" : 2
|
||||
},
|
||||
{
|
||||
"directoryIndex" : 5,
|
||||
"id" : "empty::@77cfdd67c43044262fc4",
|
||||
"jsonFile" : "target-empty-Debug-03d532f4d9fecf63a943.json",
|
||||
"name" : "empty",
|
||||
"projectIndex" : 2
|
||||
},
|
||||
{
|
||||
"directoryIndex" : 5,
|
||||
"id" : "events::@77cfdd67c43044262fc4",
|
||||
"jsonFile" : "target-events-Debug-6995c0c796f1924d99cb.json",
|
||||
"name" : "events",
|
||||
"projectIndex" : 2
|
||||
},
|
||||
{
|
||||
"directoryIndex" : 5,
|
||||
"id" : "gamma::@77cfdd67c43044262fc4",
|
||||
"jsonFile" : "target-gamma-Debug-c90ceaf45a88ed613909.json",
|
||||
"name" : "gamma",
|
||||
"projectIndex" : 2
|
||||
},
|
||||
{
|
||||
"directoryIndex" : 4,
|
||||
"id" : "gears::@555eb4510d21f320f20b",
|
||||
"jsonFile" : "target-gears-Debug-21520edd743f150bee24.json",
|
||||
"name" : "gears",
|
||||
"projectIndex" : 2
|
||||
},
|
||||
{
|
||||
"directoryIndex" : 3,
|
||||
"id" : "glfw::@7dc16bda365e0ec860ed",
|
||||
"jsonFile" : "target-glfw-Debug-211d45775d81f79c9939.json",
|
||||
"name" : "glfw",
|
||||
"projectIndex" : 2
|
||||
},
|
||||
{
|
||||
"directoryIndex" : 5,
|
||||
"id" : "glfwinfo::@77cfdd67c43044262fc4",
|
||||
"jsonFile" : "target-glfwinfo-Debug-c64e0027b62a28063a1a.json",
|
||||
"name" : "glfwinfo",
|
||||
"projectIndex" : 2
|
||||
},
|
||||
{
|
||||
"directoryIndex" : 4,
|
||||
"id" : "heightmap::@555eb4510d21f320f20b",
|
||||
"jsonFile" : "target-heightmap-Debug-10bd73281438152ffaac.json",
|
||||
"name" : "heightmap",
|
||||
"projectIndex" : 2
|
||||
},
|
||||
{
|
||||
"directoryIndex" : 5,
|
||||
"id" : "icon::@77cfdd67c43044262fc4",
|
||||
"jsonFile" : "target-icon-Debug-b49087da2f5d998549b4.json",
|
||||
"name" : "icon",
|
||||
"projectIndex" : 2
|
||||
},
|
||||
{
|
||||
"directoryIndex" : 5,
|
||||
"id" : "iconify::@77cfdd67c43044262fc4",
|
||||
"jsonFile" : "target-iconify-Debug-e8ce9178af1f74b6b736.json",
|
||||
"name" : "iconify",
|
||||
"projectIndex" : 2
|
||||
},
|
||||
{
|
||||
"directoryIndex" : 5,
|
||||
"id" : "inputlag::@77cfdd67c43044262fc4",
|
||||
"jsonFile" : "target-inputlag-Debug-ad2c5c8415393424cd21.json",
|
||||
"name" : "inputlag",
|
||||
"projectIndex" : 2
|
||||
},
|
||||
{
|
||||
"directoryIndex" : 5,
|
||||
"id" : "joysticks::@77cfdd67c43044262fc4",
|
||||
"jsonFile" : "target-joysticks-Debug-89e24fa4ea578acda01f.json",
|
||||
"name" : "joysticks",
|
||||
"projectIndex" : 2
|
||||
},
|
||||
{
|
||||
"directoryIndex" : 5,
|
||||
"id" : "monitors::@77cfdd67c43044262fc4",
|
||||
"jsonFile" : "target-monitors-Debug-81fcc9a8af395812bcc5.json",
|
||||
"name" : "monitors",
|
||||
"projectIndex" : 2
|
||||
},
|
||||
{
|
||||
"directoryIndex" : 5,
|
||||
"id" : "msaa::@77cfdd67c43044262fc4",
|
||||
"jsonFile" : "target-msaa-Debug-937142563656ee447b31.json",
|
||||
"name" : "msaa",
|
||||
"projectIndex" : 2
|
||||
},
|
||||
{
|
||||
"directoryIndex" : 4,
|
||||
"id" : "offscreen::@555eb4510d21f320f20b",
|
||||
"jsonFile" : "target-offscreen-Debug-f5253bdfe49cebccc8de.json",
|
||||
"name" : "offscreen",
|
||||
"projectIndex" : 2
|
||||
},
|
||||
{
|
||||
"directoryIndex" : 5,
|
||||
"id" : "opacity::@77cfdd67c43044262fc4",
|
||||
"jsonFile" : "target-opacity-Debug-3e28b72eb8e1a82e5641.json",
|
||||
"name" : "opacity",
|
||||
"projectIndex" : 2
|
||||
},
|
||||
{
|
||||
"directoryIndex" : 0,
|
||||
"id" : "parksnrec::@6890427a1f51a3e7e1df",
|
||||
"jsonFile" : "target-parksnrec-Debug-d3d3bd4df34fc38d403e.json",
|
||||
"name" : "parksnrec",
|
||||
"projectIndex" : 0
|
||||
},
|
||||
{
|
||||
"directoryIndex" : 4,
|
||||
"id" : "particles::@555eb4510d21f320f20b",
|
||||
"jsonFile" : "target-particles-Debug-2b8f5f07ca40e623549f.json",
|
||||
"name" : "particles",
|
||||
"projectIndex" : 2
|
||||
},
|
||||
{
|
||||
"directoryIndex" : 5,
|
||||
"id" : "reopen::@77cfdd67c43044262fc4",
|
||||
"jsonFile" : "target-reopen-Debug-71f89d1cc3a572d1ca83.json",
|
||||
"name" : "reopen",
|
||||
"projectIndex" : 2
|
||||
},
|
||||
{
|
||||
"directoryIndex" : 4,
|
||||
"id" : "sharing::@555eb4510d21f320f20b",
|
||||
"jsonFile" : "target-sharing-Debug-a9ae37202d427f21acb1.json",
|
||||
"name" : "sharing",
|
||||
"projectIndex" : 2
|
||||
},
|
||||
{
|
||||
"directoryIndex" : 4,
|
||||
"id" : "simple::@555eb4510d21f320f20b",
|
||||
"jsonFile" : "target-simple-Debug-6815caedde9a30ce154e.json",
|
||||
"name" : "simple",
|
||||
"projectIndex" : 2
|
||||
},
|
||||
{
|
||||
"directoryIndex" : 4,
|
||||
"id" : "splitview::@555eb4510d21f320f20b",
|
||||
"jsonFile" : "target-splitview-Debug-01f8d1d4b2d27cab6c1e.json",
|
||||
"name" : "splitview",
|
||||
"projectIndex" : 2
|
||||
},
|
||||
{
|
||||
"directoryIndex" : 5,
|
||||
"id" : "tearing::@77cfdd67c43044262fc4",
|
||||
"jsonFile" : "target-tearing-Debug-a8d4f930e8f3e1e22994.json",
|
||||
"name" : "tearing",
|
||||
"projectIndex" : 2
|
||||
},
|
||||
{
|
||||
"directoryIndex" : 5,
|
||||
"id" : "threads::@77cfdd67c43044262fc4",
|
||||
"jsonFile" : "target-threads-Debug-2bf7fc6defb63d640c7f.json",
|
||||
"name" : "threads",
|
||||
"projectIndex" : 2
|
||||
},
|
||||
{
|
||||
"directoryIndex" : 5,
|
||||
"id" : "timeout::@77cfdd67c43044262fc4",
|
||||
"jsonFile" : "target-timeout-Debug-5adb635ac3a34d47051a.json",
|
||||
"name" : "timeout",
|
||||
"projectIndex" : 2
|
||||
},
|
||||
{
|
||||
"directoryIndex" : 5,
|
||||
"id" : "title::@77cfdd67c43044262fc4",
|
||||
"jsonFile" : "target-title-Debug-6bdf135670eb11af8d03.json",
|
||||
"name" : "title",
|
||||
"projectIndex" : 2
|
||||
},
|
||||
{
|
||||
"directoryIndex" : 5,
|
||||
"id" : "triangle-vulkan::@77cfdd67c43044262fc4",
|
||||
"jsonFile" : "target-triangle-vulkan-Debug-b743265eb6c273981f68.json",
|
||||
"name" : "triangle-vulkan",
|
||||
"projectIndex" : 2
|
||||
},
|
||||
{
|
||||
"directoryIndex" : 2,
|
||||
"id" : "uninstall::@469bc31a56f95ec09ce9",
|
||||
"jsonFile" : "target-uninstall-Debug-7b3ff1601d809fdbb815.json",
|
||||
"name" : "uninstall",
|
||||
"projectIndex" : 2
|
||||
},
|
||||
{
|
||||
"directoryIndex" : 3,
|
||||
"id" : "update_mappings::@7dc16bda365e0ec860ed",
|
||||
"jsonFile" : "target-update_mappings-Debug-67ad109bd578966a1a6d.json",
|
||||
"name" : "update_mappings",
|
||||
"projectIndex" : 2
|
||||
},
|
||||
{
|
||||
"directoryIndex" : 4,
|
||||
"id" : "wave::@555eb4510d21f320f20b",
|
||||
"jsonFile" : "target-wave-Debug-cfbcdac7da21d64c9e59.json",
|
||||
"name" : "wave",
|
||||
"projectIndex" : 2
|
||||
},
|
||||
{
|
||||
"directoryIndex" : 5,
|
||||
"id" : "windows::@77cfdd67c43044262fc4",
|
||||
"jsonFile" : "target-windows-Debug-a4d1138a01df1671c27d.json",
|
||||
"name" : "windows",
|
||||
"projectIndex" : 2
|
||||
},
|
||||
{
|
||||
"directoryIndex" : 7,
|
||||
"id" : "zlibstatic::@142f1425b4d57e544353",
|
||||
"jsonFile" : "target-zlibstatic-Debug-54ff886d4b8d64638044.json",
|
||||
"name" : "zlibstatic",
|
||||
"projectIndex" : 4
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"kind" : "codemodel",
|
||||
"paths" :
|
||||
{
|
||||
"build" : "/home/brett/git/parksandrec/cmake-build-debug-sanitizer",
|
||||
"source" : "/home/brett/git/parksandrec"
|
||||
},
|
||||
"version" :
|
||||
{
|
||||
"major" : 2,
|
||||
"minor" : 5
|
||||
}
|
||||
}
|
|
@ -0,0 +1,14 @@
|
|||
{
|
||||
"backtraceGraph" :
|
||||
{
|
||||
"commands" : [],
|
||||
"files" : [],
|
||||
"nodes" : []
|
||||
},
|
||||
"installers" : [],
|
||||
"paths" :
|
||||
{
|
||||
"build" : ".",
|
||||
"source" : "."
|
||||
}
|
||||
}
|
|
@ -0,0 +1,14 @@
|
|||
{
|
||||
"backtraceGraph" :
|
||||
{
|
||||
"commands" : [],
|
||||
"files" : [],
|
||||
"nodes" : []
|
||||
},
|
||||
"installers" : [],
|
||||
"paths" :
|
||||
{
|
||||
"build" : "libs/BLT",
|
||||
"source" : "libs/BLT"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,72 @@
|
|||
{
|
||||
"backtraceGraph" :
|
||||
{
|
||||
"commands" :
|
||||
[
|
||||
"install"
|
||||
],
|
||||
"files" :
|
||||
[
|
||||
"libs/assimp/CMakeLists.txt"
|
||||
],
|
||||
"nodes" :
|
||||
[
|
||||
{
|
||||
"file" : 0
|
||||
},
|
||||
{
|
||||
"command" : 0,
|
||||
"file" : 0,
|
||||
"line" : 455,
|
||||
"parent" : 0
|
||||
},
|
||||
{
|
||||
"command" : 0,
|
||||
"file" : 0,
|
||||
"line" : 461,
|
||||
"parent" : 0
|
||||
}
|
||||
]
|
||||
},
|
||||
"installers" :
|
||||
[
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"component" : "libassimp5.2.5-dev",
|
||||
"destination" : "lib/cmake/assimp-5.2",
|
||||
"paths" :
|
||||
[
|
||||
"cmake-build-debug-sanitizer/libs/assimp/generated/assimpConfig.cmake",
|
||||
"cmake-build-debug-sanitizer/libs/assimp/generated/assimpConfigVersion.cmake"
|
||||
],
|
||||
"type" : "file"
|
||||
},
|
||||
{
|
||||
"backtrace" : 2,
|
||||
"component" : "libassimp5.2.5-dev",
|
||||
"destination" : "lib/cmake/assimp-5.2",
|
||||
"exportName" : "assimpTargets",
|
||||
"exportTargets" :
|
||||
[
|
||||
{
|
||||
"id" : "zlibstatic::@142f1425b4d57e544353",
|
||||
"index" : 35
|
||||
},
|
||||
{
|
||||
"id" : "assimp::@c18b53e73a5197b875a6",
|
||||
"index" : 1
|
||||
}
|
||||
],
|
||||
"paths" :
|
||||
[
|
||||
"libs/assimp/CMakeFiles/Export/f1f86f75407ff2a2c6a2eadbb93d9f6f/assimpTargets.cmake"
|
||||
],
|
||||
"type" : "export"
|
||||
}
|
||||
],
|
||||
"paths" :
|
||||
{
|
||||
"build" : "libs/assimp",
|
||||
"source" : "libs/assimp"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,164 @@
|
|||
{
|
||||
"backtraceGraph" :
|
||||
{
|
||||
"commands" :
|
||||
[
|
||||
"INSTALL"
|
||||
],
|
||||
"files" :
|
||||
[
|
||||
"libs/assimp/code/CMakeLists.txt"
|
||||
],
|
||||
"nodes" :
|
||||
[
|
||||
{
|
||||
"file" : 0
|
||||
},
|
||||
{
|
||||
"command" : 0,
|
||||
"file" : 0,
|
||||
"line" : 1396,
|
||||
"parent" : 0
|
||||
},
|
||||
{
|
||||
"command" : 0,
|
||||
"file" : 0,
|
||||
"line" : 1404,
|
||||
"parent" : 0
|
||||
},
|
||||
{
|
||||
"command" : 0,
|
||||
"file" : 0,
|
||||
"line" : 1405,
|
||||
"parent" : 0
|
||||
}
|
||||
]
|
||||
},
|
||||
"installers" :
|
||||
[
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"component" : "libassimp5.2.5-dev",
|
||||
"destination" : "lib",
|
||||
"paths" :
|
||||
[
|
||||
"libs/assimp/lib/libassimp.a"
|
||||
],
|
||||
"targetId" : "assimp::@c18b53e73a5197b875a6",
|
||||
"targetIndex" : 1,
|
||||
"type" : "target"
|
||||
},
|
||||
{
|
||||
"backtrace" : 2,
|
||||
"component" : "assimp-dev",
|
||||
"destination" : "include/assimp",
|
||||
"paths" :
|
||||
[
|
||||
"libs/assimp/code/../include/assimp/anim.h",
|
||||
"libs/assimp/code/../include/assimp/aabb.h",
|
||||
"libs/assimp/code/../include/assimp/ai_assert.h",
|
||||
"libs/assimp/code/../include/assimp/camera.h",
|
||||
"libs/assimp/code/../include/assimp/color4.h",
|
||||
"libs/assimp/code/../include/assimp/color4.inl",
|
||||
"cmake-build-debug-sanitizer/libs/assimp/code/../include/assimp/config.h",
|
||||
"libs/assimp/code/../include/assimp/ColladaMetaData.h",
|
||||
"libs/assimp/code/../include/assimp/commonMetaData.h",
|
||||
"libs/assimp/code/../include/assimp/defs.h",
|
||||
"libs/assimp/code/../include/assimp/cfileio.h",
|
||||
"libs/assimp/code/../include/assimp/light.h",
|
||||
"libs/assimp/code/../include/assimp/material.h",
|
||||
"libs/assimp/code/../include/assimp/material.inl",
|
||||
"libs/assimp/code/../include/assimp/matrix3x3.h",
|
||||
"libs/assimp/code/../include/assimp/matrix3x3.inl",
|
||||
"libs/assimp/code/../include/assimp/matrix4x4.h",
|
||||
"libs/assimp/code/../include/assimp/matrix4x4.inl",
|
||||
"libs/assimp/code/../include/assimp/mesh.h",
|
||||
"libs/assimp/code/../include/assimp/ObjMaterial.h",
|
||||
"libs/assimp/code/../include/assimp/pbrmaterial.h",
|
||||
"libs/assimp/code/../include/assimp/GltfMaterial.h",
|
||||
"libs/assimp/code/../include/assimp/postprocess.h",
|
||||
"libs/assimp/code/../include/assimp/quaternion.h",
|
||||
"libs/assimp/code/../include/assimp/quaternion.inl",
|
||||
"libs/assimp/code/../include/assimp/scene.h",
|
||||
"libs/assimp/code/../include/assimp/metadata.h",
|
||||
"libs/assimp/code/../include/assimp/texture.h",
|
||||
"libs/assimp/code/../include/assimp/types.h",
|
||||
"libs/assimp/code/../include/assimp/vector2.h",
|
||||
"libs/assimp/code/../include/assimp/vector2.inl",
|
||||
"libs/assimp/code/../include/assimp/vector3.h",
|
||||
"libs/assimp/code/../include/assimp/vector3.inl",
|
||||
"libs/assimp/code/../include/assimp/version.h",
|
||||
"libs/assimp/code/../include/assimp/cimport.h",
|
||||
"libs/assimp/code/../include/assimp/AssertHandler.h",
|
||||
"libs/assimp/code/../include/assimp/importerdesc.h",
|
||||
"libs/assimp/code/../include/assimp/Importer.hpp",
|
||||
"libs/assimp/code/../include/assimp/DefaultLogger.hpp",
|
||||
"libs/assimp/code/../include/assimp/ProgressHandler.hpp",
|
||||
"libs/assimp/code/../include/assimp/IOStream.hpp",
|
||||
"libs/assimp/code/../include/assimp/IOSystem.hpp",
|
||||
"libs/assimp/code/../include/assimp/Logger.hpp",
|
||||
"libs/assimp/code/../include/assimp/LogStream.hpp",
|
||||
"libs/assimp/code/../include/assimp/NullLogger.hpp",
|
||||
"libs/assimp/code/../include/assimp/cexport.h",
|
||||
"libs/assimp/code/../include/assimp/Exporter.hpp",
|
||||
"libs/assimp/code/../include/assimp/DefaultIOStream.h",
|
||||
"libs/assimp/code/../include/assimp/DefaultIOSystem.h",
|
||||
"libs/assimp/code/../include/assimp/ZipArchiveIOSystem.h",
|
||||
"libs/assimp/code/../include/assimp/SceneCombiner.h",
|
||||
"libs/assimp/code/../include/assimp/fast_atof.h",
|
||||
"libs/assimp/code/../include/assimp/qnan.h",
|
||||
"libs/assimp/code/../include/assimp/BaseImporter.h",
|
||||
"libs/assimp/code/../include/assimp/Hash.h",
|
||||
"libs/assimp/code/../include/assimp/MemoryIOWrapper.h",
|
||||
"libs/assimp/code/../include/assimp/ParsingUtils.h",
|
||||
"libs/assimp/code/../include/assimp/StreamReader.h",
|
||||
"libs/assimp/code/../include/assimp/StreamWriter.h",
|
||||
"libs/assimp/code/../include/assimp/StringComparison.h",
|
||||
"libs/assimp/code/../include/assimp/StringUtils.h",
|
||||
"libs/assimp/code/../include/assimp/SGSpatialSort.h",
|
||||
"libs/assimp/code/../include/assimp/GenericProperty.h",
|
||||
"libs/assimp/code/../include/assimp/SpatialSort.h",
|
||||
"libs/assimp/code/../include/assimp/SkeletonMeshBuilder.h",
|
||||
"libs/assimp/code/../include/assimp/SmallVector.h",
|
||||
"libs/assimp/code/../include/assimp/SmoothingGroups.h",
|
||||
"libs/assimp/code/../include/assimp/SmoothingGroups.inl",
|
||||
"libs/assimp/code/../include/assimp/StandardShapes.h",
|
||||
"libs/assimp/code/../include/assimp/RemoveComments.h",
|
||||
"libs/assimp/code/../include/assimp/Subdivision.h",
|
||||
"libs/assimp/code/../include/assimp/Vertex.h",
|
||||
"libs/assimp/code/../include/assimp/LineSplitter.h",
|
||||
"libs/assimp/code/../include/assimp/TinyFormatter.h",
|
||||
"libs/assimp/code/../include/assimp/Profiler.h",
|
||||
"libs/assimp/code/../include/assimp/LogAux.h",
|
||||
"libs/assimp/code/../include/assimp/Bitmap.h",
|
||||
"libs/assimp/code/../include/assimp/XMLTools.h",
|
||||
"libs/assimp/code/../include/assimp/IOStreamBuffer.h",
|
||||
"libs/assimp/code/../include/assimp/CreateAnimMesh.h",
|
||||
"libs/assimp/code/../include/assimp/XmlParser.h",
|
||||
"libs/assimp/code/../include/assimp/BlobIOSystem.h",
|
||||
"libs/assimp/code/../include/assimp/MathFunctions.h",
|
||||
"libs/assimp/code/../include/assimp/Exceptional.h",
|
||||
"libs/assimp/code/../include/assimp/ByteSwapper.h",
|
||||
"libs/assimp/code/../include/assimp/Base64.hpp"
|
||||
],
|
||||
"type" : "file"
|
||||
},
|
||||
{
|
||||
"backtrace" : 3,
|
||||
"component" : "assimp-dev",
|
||||
"destination" : "include/assimp/Compiler",
|
||||
"paths" :
|
||||
[
|
||||
"libs/assimp/code/../include/assimp/Compiler/pushpack1.h",
|
||||
"libs/assimp/code/../include/assimp/Compiler/poppack1.h",
|
||||
"libs/assimp/code/../include/assimp/Compiler/pstdint.h"
|
||||
],
|
||||
"type" : "file"
|
||||
}
|
||||
],
|
||||
"paths" :
|
||||
{
|
||||
"build" : "libs/assimp/code",
|
||||
"source" : "libs/assimp/code"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,45 @@
|
|||
{
|
||||
"backtraceGraph" :
|
||||
{
|
||||
"commands" :
|
||||
[
|
||||
"INSTALL"
|
||||
],
|
||||
"files" :
|
||||
[
|
||||
"libs/assimp/contrib/zlib/CMakeLists.txt"
|
||||
],
|
||||
"nodes" :
|
||||
[
|
||||
{
|
||||
"file" : 0
|
||||
},
|
||||
{
|
||||
"command" : 0,
|
||||
"file" : 0,
|
||||
"line" : 209,
|
||||
"parent" : 0
|
||||
}
|
||||
]
|
||||
},
|
||||
"installers" :
|
||||
[
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"component" : "Unspecified",
|
||||
"destination" : "lib",
|
||||
"paths" :
|
||||
[
|
||||
"libs/assimp/contrib/zlib/libzlibstatic.a"
|
||||
],
|
||||
"targetId" : "zlibstatic::@142f1425b4d57e544353",
|
||||
"targetIndex" : 35,
|
||||
"type" : "target"
|
||||
}
|
||||
],
|
||||
"paths" :
|
||||
{
|
||||
"build" : "libs/assimp/contrib/zlib",
|
||||
"source" : "libs/assimp/contrib/zlib"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,100 @@
|
|||
{
|
||||
"backtraceGraph" :
|
||||
{
|
||||
"commands" :
|
||||
[
|
||||
"install"
|
||||
],
|
||||
"files" :
|
||||
[
|
||||
"libs/glfw/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" :
|
||||
[
|
||||
"libs/glfw/glfw-3.3.8/include/GLFW"
|
||||
],
|
||||
"type" : "directory"
|
||||
},
|
||||
{
|
||||
"backtrace" : 2,
|
||||
"component" : "Unspecified",
|
||||
"destination" : "lib/cmake/glfw3",
|
||||
"paths" :
|
||||
[
|
||||
"cmake-build-debug-sanitizer/libs/glfw/glfw-3.3.8/src/glfw3Config.cmake",
|
||||
"cmake-build-debug-sanitizer/libs/glfw/glfw-3.3.8/src/glfw3ConfigVersion.cmake"
|
||||
],
|
||||
"type" : "file"
|
||||
},
|
||||
{
|
||||
"backtrace" : 3,
|
||||
"component" : "Unspecified",
|
||||
"destination" : "lib/cmake/glfw3",
|
||||
"exportName" : "glfwTargets",
|
||||
"exportTargets" :
|
||||
[
|
||||
{
|
||||
"id" : "glfw::@7dc16bda365e0ec860ed",
|
||||
"index" : 9
|
||||
}
|
||||
],
|
||||
"paths" :
|
||||
[
|
||||
"libs/glfw/glfw-3.3.8/CMakeFiles/Export/f367bd07922f2ecfc14cf5547f1f7c4e/glfw3Targets.cmake"
|
||||
],
|
||||
"type" : "export"
|
||||
},
|
||||
{
|
||||
"backtrace" : 4,
|
||||
"component" : "Unspecified",
|
||||
"destination" : "lib/pkgconfig",
|
||||
"paths" :
|
||||
[
|
||||
"cmake-build-debug-sanitizer/libs/glfw/glfw-3.3.8/src/glfw3.pc"
|
||||
],
|
||||
"type" : "file"
|
||||
}
|
||||
],
|
||||
"paths" :
|
||||
{
|
||||
"build" : "libs/glfw/glfw-3.3.8",
|
||||
"source" : "libs/glfw/glfw-3.3.8"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,14 @@
|
|||
{
|
||||
"backtraceGraph" :
|
||||
{
|
||||
"commands" : [],
|
||||
"files" : [],
|
||||
"nodes" : []
|
||||
},
|
||||
"installers" : [],
|
||||
"paths" :
|
||||
{
|
||||
"build" : "libs/glfw/glfw-3.3.8/examples",
|
||||
"source" : "libs/glfw/glfw-3.3.8/examples"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,45 @@
|
|||
{
|
||||
"backtraceGraph" :
|
||||
{
|
||||
"commands" :
|
||||
[
|
||||
"install"
|
||||
],
|
||||
"files" :
|
||||
[
|
||||
"libs/glfw/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" :
|
||||
[
|
||||
"libs/glfw/glfw-3.3.8/src/libglfw3.a"
|
||||
],
|
||||
"targetId" : "glfw::@7dc16bda365e0ec860ed",
|
||||
"targetIndex" : 9,
|
||||
"type" : "target"
|
||||
}
|
||||
],
|
||||
"paths" :
|
||||
{
|
||||
"build" : "libs/glfw/glfw-3.3.8/src",
|
||||
"source" : "libs/glfw/glfw-3.3.8/src"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,14 @@
|
|||
{
|
||||
"backtraceGraph" :
|
||||
{
|
||||
"commands" : [],
|
||||
"files" : [],
|
||||
"nodes" : []
|
||||
},
|
||||
"installers" : [],
|
||||
"paths" :
|
||||
{
|
||||
"build" : "libs/glfw/glfw-3.3.8/tests",
|
||||
"source" : "libs/glfw/glfw-3.3.8/tests"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,108 @@
|
|||
{
|
||||
"cmake" :
|
||||
{
|
||||
"generator" :
|
||||
{
|
||||
"multiConfig" : false,
|
||||
"name" : "Ninja"
|
||||
},
|
||||
"paths" :
|
||||
{
|
||||
"cmake" : "/usr/bin/cmake",
|
||||
"cpack" : "/usr/bin/cpack",
|
||||
"ctest" : "/usr/bin/ctest",
|
||||
"root" : "/usr/share/cmake"
|
||||
},
|
||||
"version" :
|
||||
{
|
||||
"isDirty" : false,
|
||||
"major" : 3,
|
||||
"minor" : 26,
|
||||
"patch" : 4,
|
||||
"string" : "3.26.4",
|
||||
"suffix" : ""
|
||||
}
|
||||
},
|
||||
"objects" :
|
||||
[
|
||||
{
|
||||
"jsonFile" : "codemodel-v2-438b572e1fa3023d0d11.json",
|
||||
"kind" : "codemodel",
|
||||
"version" :
|
||||
{
|
||||
"major" : 2,
|
||||
"minor" : 5
|
||||
}
|
||||
},
|
||||
{
|
||||
"jsonFile" : "cache-v2-2422d9569074d5761a33.json",
|
||||
"kind" : "cache",
|
||||
"version" :
|
||||
{
|
||||
"major" : 2,
|
||||
"minor" : 0
|
||||
}
|
||||
},
|
||||
{
|
||||
"jsonFile" : "cmakeFiles-v1-2627c1410aad9f372ae2.json",
|
||||
"kind" : "cmakeFiles",
|
||||
"version" :
|
||||
{
|
||||
"major" : 1,
|
||||
"minor" : 0
|
||||
}
|
||||
},
|
||||
{
|
||||
"jsonFile" : "toolchains-v1-c43cbce8f92a41f468b5.json",
|
||||
"kind" : "toolchains",
|
||||
"version" :
|
||||
{
|
||||
"major" : 1,
|
||||
"minor" : 0
|
||||
}
|
||||
}
|
||||
],
|
||||
"reply" :
|
||||
{
|
||||
"cache-v2" :
|
||||
{
|
||||
"jsonFile" : "cache-v2-2422d9569074d5761a33.json",
|
||||
"kind" : "cache",
|
||||
"version" :
|
||||
{
|
||||
"major" : 2,
|
||||
"minor" : 0
|
||||
}
|
||||
},
|
||||
"cmakeFiles-v1" :
|
||||
{
|
||||
"jsonFile" : "cmakeFiles-v1-2627c1410aad9f372ae2.json",
|
||||
"kind" : "cmakeFiles",
|
||||
"version" :
|
||||
{
|
||||
"major" : 1,
|
||||
"minor" : 0
|
||||
}
|
||||
},
|
||||
"codemodel-v2" :
|
||||
{
|
||||
"jsonFile" : "codemodel-v2-438b572e1fa3023d0d11.json",
|
||||
"kind" : "codemodel",
|
||||
"version" :
|
||||
{
|
||||
"major" : 2,
|
||||
"minor" : 5
|
||||
}
|
||||
},
|
||||
"toolchains-v1" :
|
||||
{
|
||||
"jsonFile" : "toolchains-v1-c43cbce8f92a41f468b5.json",
|
||||
"kind" : "toolchains",
|
||||
"version" :
|
||||
{
|
||||
"major" : 1,
|
||||
"minor" : 0
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,184 @@
|
|||
{
|
||||
"archive" : {},
|
||||
"artifacts" :
|
||||
[
|
||||
{
|
||||
"path" : "libs/BLT/libBLT.a"
|
||||
}
|
||||
],
|
||||
"backtrace" : 1,
|
||||
"backtraceGraph" :
|
||||
{
|
||||
"commands" :
|
||||
[
|
||||
"add_library",
|
||||
"target_compile_options",
|
||||
"include_directories"
|
||||
],
|
||||
"files" :
|
||||
[
|
||||
"libs/BLT/CMakeLists.txt"
|
||||
],
|
||||
"nodes" :
|
||||
[
|
||||
{
|
||||
"file" : 0
|
||||
},
|
||||
{
|
||||
"command" : 0,
|
||||
"file" : 0,
|
||||
"line" : 49,
|
||||
"parent" : 0
|
||||
},
|
||||
{
|
||||
"command" : 1,
|
||||
"file" : 0,
|
||||
"line" : 61,
|
||||
"parent" : 0
|
||||
},
|
||||
{
|
||||
"command" : 2,
|
||||
"file" : 0,
|
||||
"line" : 41,
|
||||
"parent" : 0
|
||||
},
|
||||
{
|
||||
"command" : 2,
|
||||
"file" : 0,
|
||||
"line" : 42,
|
||||
"parent" : 0
|
||||
}
|
||||
]
|
||||
},
|
||||
"compileGroups" :
|
||||
[
|
||||
{
|
||||
"compileCommandFragments" :
|
||||
[
|
||||
{
|
||||
"fragment" : "-g -std=gnu++17 -fdiagnostics-color=always"
|
||||
},
|
||||
{
|
||||
"backtrace" : 2,
|
||||
"fragment" : "-Wall"
|
||||
},
|
||||
{
|
||||
"backtrace" : 2,
|
||||
"fragment" : "-Wextra"
|
||||
},
|
||||
{
|
||||
"backtrace" : 2,
|
||||
"fragment" : "-Wpedantic"
|
||||
}
|
||||
],
|
||||
"includes" :
|
||||
[
|
||||
{
|
||||
"backtrace" : 3,
|
||||
"path" : "/home/brett/git/parksandrec/libs/BLT/include"
|
||||
},
|
||||
{
|
||||
"backtrace" : 4,
|
||||
"path" : "/home/brett/git/parksandrec/cmake-build-debug-sanitizer/libs/BLT/config"
|
||||
}
|
||||
],
|
||||
"language" : "CXX",
|
||||
"languageStandard" :
|
||||
{
|
||||
"backtraces" :
|
||||
[
|
||||
1
|
||||
],
|
||||
"standard" : "17"
|
||||
},
|
||||
"sourceIndexes" :
|
||||
[
|
||||
0,
|
||||
1,
|
||||
2,
|
||||
3,
|
||||
4,
|
||||
5,
|
||||
6,
|
||||
7
|
||||
]
|
||||
}
|
||||
],
|
||||
"id" : "BLT::@15de44d4528f33befea6",
|
||||
"name" : "BLT",
|
||||
"nameOnDisk" : "libBLT.a",
|
||||
"paths" :
|
||||
{
|
||||
"build" : "libs/BLT",
|
||||
"source" : "libs/BLT"
|
||||
},
|
||||
"sourceGroups" :
|
||||
[
|
||||
{
|
||||
"name" : "Source Files",
|
||||
"sourceIndexes" :
|
||||
[
|
||||
0,
|
||||
1,
|
||||
2,
|
||||
3,
|
||||
4,
|
||||
5,
|
||||
6,
|
||||
7
|
||||
]
|
||||
}
|
||||
],
|
||||
"sources" :
|
||||
[
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"compileGroupIndex" : 0,
|
||||
"path" : "libs/BLT/src/blt/std/filesystem.cpp",
|
||||
"sourceGroupIndex" : 0
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"compileGroupIndex" : 0,
|
||||
"path" : "libs/BLT/src/blt/std/format.cpp",
|
||||
"sourceGroupIndex" : 0
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"compileGroupIndex" : 0,
|
||||
"path" : "libs/BLT/src/blt/std/loader.cpp",
|
||||
"sourceGroupIndex" : 0
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"compileGroupIndex" : 0,
|
||||
"path" : "libs/BLT/src/blt/std/logging.cpp",
|
||||
"sourceGroupIndex" : 0
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"compileGroupIndex" : 0,
|
||||
"path" : "libs/BLT/src/blt/std/system.cpp",
|
||||
"sourceGroupIndex" : 0
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"compileGroupIndex" : 0,
|
||||
"path" : "libs/BLT/src/blt/profiling/profiler.cpp",
|
||||
"sourceGroupIndex" : 0
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"compileGroupIndex" : 0,
|
||||
"path" : "libs/BLT/src/blt/nbt/nbt.cpp",
|
||||
"sourceGroupIndex" : 0
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"compileGroupIndex" : 0,
|
||||
"path" : "libs/BLT/src/blt/nbt/nbt_block.cpp",
|
||||
"sourceGroupIndex" : 0
|
||||
}
|
||||
],
|
||||
"type" : "STATIC_LIBRARY"
|
||||
}
|
File diff suppressed because it is too large
Load Diff
|
@ -0,0 +1,187 @@
|
|||
{
|
||||
"artifacts" :
|
||||
[
|
||||
{
|
||||
"path" : "libs/glfw/glfw-3.3.8/examples/boing"
|
||||
}
|
||||
],
|
||||
"backtrace" : 1,
|
||||
"backtraceGraph" :
|
||||
{
|
||||
"commands" :
|
||||
[
|
||||
"add_executable",
|
||||
"target_link_libraries",
|
||||
"include_directories"
|
||||
],
|
||||
"files" :
|
||||
[
|
||||
"libs/glfw/glfw-3.3.8/examples/CMakeLists.txt",
|
||||
"libs/glfw/glfw-3.3.8/src/CMakeLists.txt"
|
||||
],
|
||||
"nodes" :
|
||||
[
|
||||
{
|
||||
"file" : 0
|
||||
},
|
||||
{
|
||||
"command" : 0,
|
||||
"file" : 0,
|
||||
"line" : 39,
|
||||
"parent" : 0
|
||||
},
|
||||
{
|
||||
"file" : 1
|
||||
},
|
||||
{
|
||||
"command" : 1,
|
||||
"file" : 1,
|
||||
"line" : 119,
|
||||
"parent" : 2
|
||||
},
|
||||
{
|
||||
"command" : 2,
|
||||
"file" : 0,
|
||||
"line" : 4,
|
||||
"parent" : 0
|
||||
}
|
||||
]
|
||||
},
|
||||
"compileGroups" :
|
||||
[
|
||||
{
|
||||
"compileCommandFragments" :
|
||||
[
|
||||
{
|
||||
"fragment" : "-g -std=gnu99 -fdiagnostics-color=always"
|
||||
}
|
||||
],
|
||||
"includes" :
|
||||
[
|
||||
{
|
||||
"backtrace" : 4,
|
||||
"path" : "/home/brett/git/parksandrec/libs/glfw/glfw-3.3.8/deps"
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"path" : "/home/brett/git/parksandrec/libs/glfw/glfw-3.3.8/include"
|
||||
}
|
||||
],
|
||||
"language" : "C",
|
||||
"languageStandard" :
|
||||
{
|
||||
"backtraces" :
|
||||
[
|
||||
1
|
||||
],
|
||||
"standard" : "99"
|
||||
},
|
||||
"sourceIndexes" :
|
||||
[
|
||||
0,
|
||||
2
|
||||
]
|
||||
}
|
||||
],
|
||||
"dependencies" :
|
||||
[
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"id" : "glfw::@7dc16bda365e0ec860ed"
|
||||
}
|
||||
],
|
||||
"folder" :
|
||||
{
|
||||
"name" : "GLFW3/Examples"
|
||||
},
|
||||
"id" : "boing::@555eb4510d21f320f20b",
|
||||
"link" :
|
||||
{
|
||||
"commandFragments" :
|
||||
[
|
||||
{
|
||||
"fragment" : "-g",
|
||||
"role" : "flags"
|
||||
},
|
||||
{
|
||||
"fragment" : "",
|
||||
"role" : "flags"
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"fragment" : "libs/glfw/glfw-3.3.8/src/libglfw3.a",
|
||||
"role" : "libraries"
|
||||
},
|
||||
{
|
||||
"fragment" : "-lm",
|
||||
"role" : "libraries"
|
||||
},
|
||||
{
|
||||
"backtrace" : 3,
|
||||
"fragment" : "/usr/lib/librt.a",
|
||||
"role" : "libraries"
|
||||
},
|
||||
{
|
||||
"fragment" : "-lm",
|
||||
"role" : "libraries"
|
||||
},
|
||||
{
|
||||
"backtrace" : 3,
|
||||
"fragment" : "-ldl",
|
||||
"role" : "libraries"
|
||||
},
|
||||
{
|
||||
"backtrace" : 3,
|
||||
"fragment" : "/usr/lib/libX11.so",
|
||||
"role" : "libraries"
|
||||
}
|
||||
],
|
||||
"language" : "C"
|
||||
},
|
||||
"name" : "boing",
|
||||
"nameOnDisk" : "boing",
|
||||
"paths" :
|
||||
{
|
||||
"build" : "libs/glfw/glfw-3.3.8/examples",
|
||||
"source" : "libs/glfw/glfw-3.3.8/examples"
|
||||
},
|
||||
"sourceGroups" :
|
||||
[
|
||||
{
|
||||
"name" : "Source Files",
|
||||
"sourceIndexes" :
|
||||
[
|
||||
0,
|
||||
2
|
||||
]
|
||||
},
|
||||
{
|
||||
"name" : "Header Files",
|
||||
"sourceIndexes" :
|
||||
[
|
||||
1
|
||||
]
|
||||
}
|
||||
],
|
||||
"sources" :
|
||||
[
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"compileGroupIndex" : 0,
|
||||
"path" : "libs/glfw/glfw-3.3.8/examples/boing.c",
|
||||
"sourceGroupIndex" : 0
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"path" : "libs/glfw/glfw-3.3.8/deps/glad/gl.h",
|
||||
"sourceGroupIndex" : 1
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"compileGroupIndex" : 0,
|
||||
"path" : "libs/glfw/glfw-3.3.8/deps/glad_gl.c",
|
||||
"sourceGroupIndex" : 0
|
||||
}
|
||||
],
|
||||
"type" : "EXECUTABLE"
|
||||
}
|
|
@ -0,0 +1,201 @@
|
|||
{
|
||||
"artifacts" :
|
||||
[
|
||||
{
|
||||
"path" : "libs/glfw/glfw-3.3.8/tests/clipboard"
|
||||
}
|
||||
],
|
||||
"backtrace" : 1,
|
||||
"backtraceGraph" :
|
||||
{
|
||||
"commands" :
|
||||
[
|
||||
"add_executable",
|
||||
"target_link_libraries",
|
||||
"include_directories"
|
||||
],
|
||||
"files" :
|
||||
[
|
||||
"libs/glfw/glfw-3.3.8/tests/CMakeLists.txt",
|
||||
"libs/glfw/glfw-3.3.8/src/CMakeLists.txt"
|
||||
],
|
||||
"nodes" :
|
||||
[
|
||||
{
|
||||
"file" : 0
|
||||
},
|
||||
{
|
||||
"command" : 0,
|
||||
"file" : 0,
|
||||
"line" : 35,
|
||||
"parent" : 0
|
||||
},
|
||||
{
|
||||
"file" : 1
|
||||
},
|
||||
{
|
||||
"command" : 1,
|
||||
"file" : 1,
|
||||
"line" : 119,
|
||||
"parent" : 2
|
||||
},
|
||||
{
|
||||
"command" : 2,
|
||||
"file" : 0,
|
||||
"line" : 4,
|
||||
"parent" : 0
|
||||
}
|
||||
]
|
||||
},
|
||||
"compileGroups" :
|
||||
[
|
||||
{
|
||||
"compileCommandFragments" :
|
||||
[
|
||||
{
|
||||
"fragment" : "-g -std=gnu99 -fdiagnostics-color=always"
|
||||
}
|
||||
],
|
||||
"includes" :
|
||||
[
|
||||
{
|
||||
"backtrace" : 4,
|
||||
"path" : "/home/brett/git/parksandrec/libs/glfw/glfw-3.3.8/deps"
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"path" : "/home/brett/git/parksandrec/libs/glfw/glfw-3.3.8/include"
|
||||
}
|
||||
],
|
||||
"language" : "C",
|
||||
"languageStandard" :
|
||||
{
|
||||
"backtraces" :
|
||||
[
|
||||
1
|
||||
],
|
||||
"standard" : "99"
|
||||
},
|
||||
"sourceIndexes" :
|
||||
[
|
||||
0,
|
||||
2,
|
||||
4
|
||||
]
|
||||
}
|
||||
],
|
||||
"dependencies" :
|
||||
[
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"id" : "glfw::@7dc16bda365e0ec860ed"
|
||||
}
|
||||
],
|
||||
"folder" :
|
||||
{
|
||||
"name" : "GLFW3/Tests"
|
||||
},
|
||||
"id" : "clipboard::@77cfdd67c43044262fc4",
|
||||
"link" :
|
||||
{
|
||||
"commandFragments" :
|
||||
[
|
||||
{
|
||||
"fragment" : "-g",
|
||||
"role" : "flags"
|
||||
},
|
||||
{
|
||||
"fragment" : "",
|
||||
"role" : "flags"
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"fragment" : "libs/glfw/glfw-3.3.8/src/libglfw3.a",
|
||||
"role" : "libraries"
|
||||
},
|
||||
{
|
||||
"fragment" : "-lm",
|
||||
"role" : "libraries"
|
||||
},
|
||||
{
|
||||
"backtrace" : 3,
|
||||
"fragment" : "/usr/lib/librt.a",
|
||||
"role" : "libraries"
|
||||
},
|
||||
{
|
||||
"fragment" : "-lm",
|
||||
"role" : "libraries"
|
||||
},
|
||||
{
|
||||
"backtrace" : 3,
|
||||
"fragment" : "-ldl",
|
||||
"role" : "libraries"
|
||||
},
|
||||
{
|
||||
"backtrace" : 3,
|
||||
"fragment" : "/usr/lib/libX11.so",
|
||||
"role" : "libraries"
|
||||
}
|
||||
],
|
||||
"language" : "C"
|
||||
},
|
||||
"name" : "clipboard",
|
||||
"nameOnDisk" : "clipboard",
|
||||
"paths" :
|
||||
{
|
||||
"build" : "libs/glfw/glfw-3.3.8/tests",
|
||||
"source" : "libs/glfw/glfw-3.3.8/tests"
|
||||
},
|
||||
"sourceGroups" :
|
||||
[
|
||||
{
|
||||
"name" : "Source Files",
|
||||
"sourceIndexes" :
|
||||
[
|
||||
0,
|
||||
2,
|
||||
4
|
||||
]
|
||||
},
|
||||
{
|
||||
"name" : "Header Files",
|
||||
"sourceIndexes" :
|
||||
[
|
||||
1,
|
||||
3
|
||||
]
|
||||
}
|
||||
],
|
||||
"sources" :
|
||||
[
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"compileGroupIndex" : 0,
|
||||
"path" : "libs/glfw/glfw-3.3.8/tests/clipboard.c",
|
||||
"sourceGroupIndex" : 0
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"path" : "libs/glfw/glfw-3.3.8/deps/getopt.h",
|
||||
"sourceGroupIndex" : 1
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"compileGroupIndex" : 0,
|
||||
"path" : "libs/glfw/glfw-3.3.8/deps/getopt.c",
|
||||
"sourceGroupIndex" : 0
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"path" : "libs/glfw/glfw-3.3.8/deps/glad/gl.h",
|
||||
"sourceGroupIndex" : 1
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"compileGroupIndex" : 0,
|
||||
"path" : "libs/glfw/glfw-3.3.8/deps/glad_gl.c",
|
||||
"sourceGroupIndex" : 0
|
||||
}
|
||||
],
|
||||
"type" : "EXECUTABLE"
|
||||
}
|
|
@ -0,0 +1,187 @@
|
|||
{
|
||||
"artifacts" :
|
||||
[
|
||||
{
|
||||
"path" : "libs/glfw/glfw-3.3.8/tests/cursor"
|
||||
}
|
||||
],
|
||||
"backtrace" : 1,
|
||||
"backtraceGraph" :
|
||||
{
|
||||
"commands" :
|
||||
[
|
||||
"add_executable",
|
||||
"target_link_libraries",
|
||||
"include_directories"
|
||||
],
|
||||
"files" :
|
||||
[
|
||||
"libs/glfw/glfw-3.3.8/tests/CMakeLists.txt",
|
||||
"libs/glfw/glfw-3.3.8/src/CMakeLists.txt"
|
||||
],
|
||||
"nodes" :
|
||||
[
|
||||
{
|
||||
"file" : 0
|
||||
},
|
||||
{
|
||||
"command" : 0,
|
||||
"file" : 0,
|
||||
"line" : 42,
|
||||
"parent" : 0
|
||||
},
|
||||
{
|
||||
"file" : 1
|
||||
},
|
||||
{
|
||||
"command" : 1,
|
||||
"file" : 1,
|
||||
"line" : 119,
|
||||
"parent" : 2
|
||||
},
|
||||
{
|
||||
"command" : 2,
|
||||
"file" : 0,
|
||||
"line" : 4,
|
||||
"parent" : 0
|
||||
}
|
||||
]
|
||||
},
|
||||
"compileGroups" :
|
||||
[
|
||||
{
|
||||
"compileCommandFragments" :
|
||||
[
|
||||
{
|
||||
"fragment" : "-g -std=gnu99 -fdiagnostics-color=always"
|
||||
}
|
||||
],
|
||||
"includes" :
|
||||
[
|
||||
{
|
||||
"backtrace" : 4,
|
||||
"path" : "/home/brett/git/parksandrec/libs/glfw/glfw-3.3.8/deps"
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"path" : "/home/brett/git/parksandrec/libs/glfw/glfw-3.3.8/include"
|
||||
}
|
||||
],
|
||||
"language" : "C",
|
||||
"languageStandard" :
|
||||
{
|
||||
"backtraces" :
|
||||
[
|
||||
1
|
||||
],
|
||||
"standard" : "99"
|
||||
},
|
||||
"sourceIndexes" :
|
||||
[
|
||||
0,
|
||||
2
|
||||
]
|
||||
}
|
||||
],
|
||||
"dependencies" :
|
||||
[
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"id" : "glfw::@7dc16bda365e0ec860ed"
|
||||
}
|
||||
],
|
||||
"folder" :
|
||||
{
|
||||
"name" : "GLFW3/Tests"
|
||||
},
|
||||
"id" : "cursor::@77cfdd67c43044262fc4",
|
||||
"link" :
|
||||
{
|
||||
"commandFragments" :
|
||||
[
|
||||
{
|
||||
"fragment" : "-g",
|
||||
"role" : "flags"
|
||||
},
|
||||
{
|
||||
"fragment" : "",
|
||||
"role" : "flags"
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"fragment" : "libs/glfw/glfw-3.3.8/src/libglfw3.a",
|
||||
"role" : "libraries"
|
||||
},
|
||||
{
|
||||
"fragment" : "-lm",
|
||||
"role" : "libraries"
|
||||
},
|
||||
{
|
||||
"backtrace" : 3,
|
||||
"fragment" : "/usr/lib/librt.a",
|
||||
"role" : "libraries"
|
||||
},
|
||||
{
|
||||
"fragment" : "-lm",
|
||||
"role" : "libraries"
|
||||
},
|
||||
{
|
||||
"backtrace" : 3,
|
||||
"fragment" : "-ldl",
|
||||
"role" : "libraries"
|
||||
},
|
||||
{
|
||||
"backtrace" : 3,
|
||||
"fragment" : "/usr/lib/libX11.so",
|
||||
"role" : "libraries"
|
||||
}
|
||||
],
|
||||
"language" : "C"
|
||||
},
|
||||
"name" : "cursor",
|
||||
"nameOnDisk" : "cursor",
|
||||
"paths" :
|
||||
{
|
||||
"build" : "libs/glfw/glfw-3.3.8/tests",
|
||||
"source" : "libs/glfw/glfw-3.3.8/tests"
|
||||
},
|
||||
"sourceGroups" :
|
||||
[
|
||||
{
|
||||
"name" : "Source Files",
|
||||
"sourceIndexes" :
|
||||
[
|
||||
0,
|
||||
2
|
||||
]
|
||||
},
|
||||
{
|
||||
"name" : "Header Files",
|
||||
"sourceIndexes" :
|
||||
[
|
||||
1
|
||||
]
|
||||
}
|
||||
],
|
||||
"sources" :
|
||||
[
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"compileGroupIndex" : 0,
|
||||
"path" : "libs/glfw/glfw-3.3.8/tests/cursor.c",
|
||||
"sourceGroupIndex" : 0
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"path" : "libs/glfw/glfw-3.3.8/deps/glad/gl.h",
|
||||
"sourceGroupIndex" : 1
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"compileGroupIndex" : 0,
|
||||
"path" : "libs/glfw/glfw-3.3.8/deps/glad_gl.c",
|
||||
"sourceGroupIndex" : 0
|
||||
}
|
||||
],
|
||||
"type" : "EXECUTABLE"
|
||||
}
|
|
@ -0,0 +1,203 @@
|
|||
{
|
||||
"artifacts" :
|
||||
[
|
||||
{
|
||||
"path" : "libs/glfw/glfw-3.3.8/tests/empty"
|
||||
}
|
||||
],
|
||||
"backtrace" : 1,
|
||||
"backtraceGraph" :
|
||||
{
|
||||
"commands" :
|
||||
[
|
||||
"add_executable",
|
||||
"target_link_libraries",
|
||||
"include_directories"
|
||||
],
|
||||
"files" :
|
||||
[
|
||||
"libs/glfw/glfw-3.3.8/tests/CMakeLists.txt",
|
||||
"libs/glfw/glfw-3.3.8/src/CMakeLists.txt"
|
||||
],
|
||||
"nodes" :
|
||||
[
|
||||
{
|
||||
"file" : 0
|
||||
},
|
||||
{
|
||||
"command" : 0,
|
||||
"file" : 0,
|
||||
"line" : 44,
|
||||
"parent" : 0
|
||||
},
|
||||
{
|
||||
"command" : 1,
|
||||
"file" : 0,
|
||||
"line" : 60,
|
||||
"parent" : 0
|
||||
},
|
||||
{
|
||||
"file" : 1
|
||||
},
|
||||
{
|
||||
"command" : 1,
|
||||
"file" : 1,
|
||||
"line" : 119,
|
||||
"parent" : 3
|
||||
},
|
||||
{
|
||||
"command" : 2,
|
||||
"file" : 0,
|
||||
"line" : 4,
|
||||
"parent" : 0
|
||||
}
|
||||
]
|
||||
},
|
||||
"compileGroups" :
|
||||
[
|
||||
{
|
||||
"compileCommandFragments" :
|
||||
[
|
||||
{
|
||||
"fragment" : "-g -std=gnu99 -fdiagnostics-color=always"
|
||||
}
|
||||
],
|
||||
"includes" :
|
||||
[
|
||||
{
|
||||
"backtrace" : 5,
|
||||
"path" : "/home/brett/git/parksandrec/libs/glfw/glfw-3.3.8/deps"
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"path" : "/home/brett/git/parksandrec/libs/glfw/glfw-3.3.8/include"
|
||||
}
|
||||
],
|
||||
"language" : "C",
|
||||
"languageStandard" :
|
||||
{
|
||||
"backtraces" :
|
||||
[
|
||||
1
|
||||
],
|
||||
"standard" : "99"
|
||||
},
|
||||
"sourceIndexes" :
|
||||
[
|
||||
0,
|
||||
2,
|
||||
4
|
||||
]
|
||||
}
|
||||
],
|
||||
"dependencies" :
|
||||
[
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"id" : "glfw::@7dc16bda365e0ec860ed"
|
||||
}
|
||||
],
|
||||
"folder" :
|
||||
{
|
||||
"name" : "GLFW3/Tests"
|
||||
},
|
||||
"id" : "empty::@77cfdd67c43044262fc4",
|
||||
"link" :
|
||||
{
|
||||
"commandFragments" :
|
||||
[
|
||||
{
|
||||
"fragment" : "-g",
|
||||
"role" : "flags"
|
||||
},
|
||||
{
|
||||
"fragment" : "",
|
||||
"role" : "flags"
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"fragment" : "libs/glfw/glfw-3.3.8/src/libglfw3.a",
|
||||
"role" : "libraries"
|
||||
},
|
||||
{
|
||||
"fragment" : "-lm",
|
||||
"role" : "libraries"
|
||||
},
|
||||
{
|
||||
"backtrace" : 2,
|
||||
"fragment" : "/usr/lib/librt.a",
|
||||
"role" : "libraries"
|
||||
},
|
||||
{
|
||||
"backtrace" : 4,
|
||||
"fragment" : "-ldl",
|
||||
"role" : "libraries"
|
||||
},
|
||||
{
|
||||
"backtrace" : 4,
|
||||
"fragment" : "/usr/lib/libX11.so",
|
||||
"role" : "libraries"
|
||||
}
|
||||
],
|
||||
"language" : "C"
|
||||
},
|
||||
"name" : "empty",
|
||||
"nameOnDisk" : "empty",
|
||||
"paths" :
|
||||
{
|
||||
"build" : "libs/glfw/glfw-3.3.8/tests",
|
||||
"source" : "libs/glfw/glfw-3.3.8/tests"
|
||||
},
|
||||
"sourceGroups" :
|
||||
[
|
||||
{
|
||||
"name" : "Source Files",
|
||||
"sourceIndexes" :
|
||||
[
|
||||
0,
|
||||
2,
|
||||
4
|
||||
]
|
||||
},
|
||||
{
|
||||
"name" : "Header Files",
|
||||
"sourceIndexes" :
|
||||
[
|
||||
1,
|
||||
3
|
||||
]
|
||||
}
|
||||
],
|
||||
"sources" :
|
||||
[
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"compileGroupIndex" : 0,
|
||||
"path" : "libs/glfw/glfw-3.3.8/tests/empty.c",
|
||||
"sourceGroupIndex" : 0
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"path" : "libs/glfw/glfw-3.3.8/deps/tinycthread.h",
|
||||
"sourceGroupIndex" : 1
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"compileGroupIndex" : 0,
|
||||
"path" : "libs/glfw/glfw-3.3.8/deps/tinycthread.c",
|
||||
"sourceGroupIndex" : 0
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"path" : "libs/glfw/glfw-3.3.8/deps/glad/gl.h",
|
||||
"sourceGroupIndex" : 1
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"compileGroupIndex" : 0,
|
||||
"path" : "libs/glfw/glfw-3.3.8/deps/glad_gl.c",
|
||||
"sourceGroupIndex" : 0
|
||||
}
|
||||
],
|
||||
"type" : "EXECUTABLE"
|
||||
}
|
|
@ -0,0 +1,201 @@
|
|||
{
|
||||
"artifacts" :
|
||||
[
|
||||
{
|
||||
"path" : "libs/glfw/glfw-3.3.8/tests/events"
|
||||
}
|
||||
],
|
||||
"backtrace" : 1,
|
||||
"backtraceGraph" :
|
||||
{
|
||||
"commands" :
|
||||
[
|
||||
"add_executable",
|
||||
"target_link_libraries",
|
||||
"include_directories"
|
||||
],
|
||||
"files" :
|
||||
[
|
||||
"libs/glfw/glfw-3.3.8/tests/CMakeLists.txt",
|
||||
"libs/glfw/glfw-3.3.8/src/CMakeLists.txt"
|
||||
],
|
||||
"nodes" :
|
||||
[
|
||||
{
|
||||
"file" : 0
|
||||
},
|
||||
{
|
||||
"command" : 0,
|
||||
"file" : 0,
|
||||
"line" : 36,
|
||||
"parent" : 0
|
||||
},
|
||||
{
|
||||
"file" : 1
|
||||
},
|
||||
{
|
||||
"command" : 1,
|
||||
"file" : 1,
|
||||
"line" : 119,
|
||||
"parent" : 2
|
||||
},
|
||||
{
|
||||
"command" : 2,
|
||||
"file" : 0,
|
||||
"line" : 4,
|
||||
"parent" : 0
|
||||
}
|
||||
]
|
||||
},
|
||||
"compileGroups" :
|
||||
[
|
||||
{
|
||||
"compileCommandFragments" :
|
||||
[
|
||||
{
|
||||
"fragment" : "-g -std=gnu99 -fdiagnostics-color=always"
|
||||
}
|
||||
],
|
||||
"includes" :
|
||||
[
|
||||
{
|
||||
"backtrace" : 4,
|
||||
"path" : "/home/brett/git/parksandrec/libs/glfw/glfw-3.3.8/deps"
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"path" : "/home/brett/git/parksandrec/libs/glfw/glfw-3.3.8/include"
|
||||
}
|
||||
],
|
||||
"language" : "C",
|
||||
"languageStandard" :
|
||||
{
|
||||
"backtraces" :
|
||||
[
|
||||
1
|
||||
],
|
||||
"standard" : "99"
|
||||
},
|
||||
"sourceIndexes" :
|
||||
[
|
||||
0,
|
||||
2,
|
||||
4
|
||||
]
|
||||
}
|
||||
],
|
||||
"dependencies" :
|
||||
[
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"id" : "glfw::@7dc16bda365e0ec860ed"
|
||||
}
|
||||
],
|
||||
"folder" :
|
||||
{
|
||||
"name" : "GLFW3/Tests"
|
||||
},
|
||||
"id" : "events::@77cfdd67c43044262fc4",
|
||||
"link" :
|
||||
{
|
||||
"commandFragments" :
|
||||
[
|
||||
{
|
||||
"fragment" : "-g",
|
||||
"role" : "flags"
|
||||
},
|
||||
{
|
||||
"fragment" : "",
|
||||
"role" : "flags"
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"fragment" : "libs/glfw/glfw-3.3.8/src/libglfw3.a",
|
||||
"role" : "libraries"
|
||||
},
|
||||
{
|
||||
"fragment" : "-lm",
|
||||
"role" : "libraries"
|
||||
},
|
||||
{
|
||||
"backtrace" : 3,
|
||||
"fragment" : "/usr/lib/librt.a",
|
||||
"role" : "libraries"
|
||||
},
|
||||
{
|
||||
"fragment" : "-lm",
|
||||
"role" : "libraries"
|
||||
},
|
||||
{
|
||||
"backtrace" : 3,
|
||||
"fragment" : "-ldl",
|
||||
"role" : "libraries"
|
||||
},
|
||||
{
|
||||
"backtrace" : 3,
|
||||
"fragment" : "/usr/lib/libX11.so",
|
||||
"role" : "libraries"
|
||||
}
|
||||
],
|
||||
"language" : "C"
|
||||
},
|
||||
"name" : "events",
|
||||
"nameOnDisk" : "events",
|
||||
"paths" :
|
||||
{
|
||||
"build" : "libs/glfw/glfw-3.3.8/tests",
|
||||
"source" : "libs/glfw/glfw-3.3.8/tests"
|
||||
},
|
||||
"sourceGroups" :
|
||||
[
|
||||
{
|
||||
"name" : "Source Files",
|
||||
"sourceIndexes" :
|
||||
[
|
||||
0,
|
||||
2,
|
||||
4
|
||||
]
|
||||
},
|
||||
{
|
||||
"name" : "Header Files",
|
||||
"sourceIndexes" :
|
||||
[
|
||||
1,
|
||||
3
|
||||
]
|
||||
}
|
||||
],
|
||||
"sources" :
|
||||
[
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"compileGroupIndex" : 0,
|
||||
"path" : "libs/glfw/glfw-3.3.8/tests/events.c",
|
||||
"sourceGroupIndex" : 0
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"path" : "libs/glfw/glfw-3.3.8/deps/getopt.h",
|
||||
"sourceGroupIndex" : 1
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"compileGroupIndex" : 0,
|
||||
"path" : "libs/glfw/glfw-3.3.8/deps/getopt.c",
|
||||
"sourceGroupIndex" : 0
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"path" : "libs/glfw/glfw-3.3.8/deps/glad/gl.h",
|
||||
"sourceGroupIndex" : 1
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"compileGroupIndex" : 0,
|
||||
"path" : "libs/glfw/glfw-3.3.8/deps/glad_gl.c",
|
||||
"sourceGroupIndex" : 0
|
||||
}
|
||||
],
|
||||
"type" : "EXECUTABLE"
|
||||
}
|
|
@ -0,0 +1,187 @@
|
|||
{
|
||||
"artifacts" :
|
||||
[
|
||||
{
|
||||
"path" : "libs/glfw/glfw-3.3.8/tests/gamma"
|
||||
}
|
||||
],
|
||||
"backtrace" : 1,
|
||||
"backtraceGraph" :
|
||||
{
|
||||
"commands" :
|
||||
[
|
||||
"add_executable",
|
||||
"target_link_libraries",
|
||||
"include_directories"
|
||||
],
|
||||
"files" :
|
||||
[
|
||||
"libs/glfw/glfw-3.3.8/tests/CMakeLists.txt",
|
||||
"libs/glfw/glfw-3.3.8/src/CMakeLists.txt"
|
||||
],
|
||||
"nodes" :
|
||||
[
|
||||
{
|
||||
"file" : 0
|
||||
},
|
||||
{
|
||||
"command" : 0,
|
||||
"file" : 0,
|
||||
"line" : 45,
|
||||
"parent" : 0
|
||||
},
|
||||
{
|
||||
"file" : 1
|
||||
},
|
||||
{
|
||||
"command" : 1,
|
||||
"file" : 1,
|
||||
"line" : 119,
|
||||
"parent" : 2
|
||||
},
|
||||
{
|
||||
"command" : 2,
|
||||
"file" : 0,
|
||||
"line" : 4,
|
||||
"parent" : 0
|
||||
}
|
||||
]
|
||||
},
|
||||
"compileGroups" :
|
||||
[
|
||||
{
|
||||
"compileCommandFragments" :
|
||||
[
|
||||
{
|
||||
"fragment" : "-g -std=gnu99 -fdiagnostics-color=always"
|
||||
}
|
||||
],
|
||||
"includes" :
|
||||
[
|
||||
{
|
||||
"backtrace" : 4,
|
||||
"path" : "/home/brett/git/parksandrec/libs/glfw/glfw-3.3.8/deps"
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"path" : "/home/brett/git/parksandrec/libs/glfw/glfw-3.3.8/include"
|
||||
}
|
||||
],
|
||||
"language" : "C",
|
||||
"languageStandard" :
|
||||
{
|
||||
"backtraces" :
|
||||
[
|
||||
1
|
||||
],
|
||||
"standard" : "99"
|
||||
},
|
||||
"sourceIndexes" :
|
||||
[
|
||||
0,
|
||||
2
|
||||
]
|
||||
}
|
||||
],
|
||||
"dependencies" :
|
||||
[
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"id" : "glfw::@7dc16bda365e0ec860ed"
|
||||
}
|
||||
],
|
||||
"folder" :
|
||||
{
|
||||
"name" : "GLFW3/Tests"
|
||||
},
|
||||
"id" : "gamma::@77cfdd67c43044262fc4",
|
||||
"link" :
|
||||
{
|
||||
"commandFragments" :
|
||||
[
|
||||
{
|
||||
"fragment" : "-g",
|
||||
"role" : "flags"
|
||||
},
|
||||
{
|
||||
"fragment" : "",
|
||||
"role" : "flags"
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"fragment" : "libs/glfw/glfw-3.3.8/src/libglfw3.a",
|
||||
"role" : "libraries"
|
||||
},
|
||||
{
|
||||
"fragment" : "-lm",
|
||||
"role" : "libraries"
|
||||
},
|
||||
{
|
||||
"backtrace" : 3,
|
||||
"fragment" : "/usr/lib/librt.a",
|
||||
"role" : "libraries"
|
||||
},
|
||||
{
|
||||
"fragment" : "-lm",
|
||||
"role" : "libraries"
|
||||
},
|
||||
{
|
||||
"backtrace" : 3,
|
||||
"fragment" : "-ldl",
|
||||
"role" : "libraries"
|
||||
},
|
||||
{
|
||||
"backtrace" : 3,
|
||||
"fragment" : "/usr/lib/libX11.so",
|
||||
"role" : "libraries"
|
||||
}
|
||||
],
|
||||
"language" : "C"
|
||||
},
|
||||
"name" : "gamma",
|
||||
"nameOnDisk" : "gamma",
|
||||
"paths" :
|
||||
{
|
||||
"build" : "libs/glfw/glfw-3.3.8/tests",
|
||||
"source" : "libs/glfw/glfw-3.3.8/tests"
|
||||
},
|
||||
"sourceGroups" :
|
||||
[
|
||||
{
|
||||
"name" : "Source Files",
|
||||
"sourceIndexes" :
|
||||
[
|
||||
0,
|
||||
2
|
||||
]
|
||||
},
|
||||
{
|
||||
"name" : "Header Files",
|
||||
"sourceIndexes" :
|
||||
[
|
||||
1
|
||||
]
|
||||
}
|
||||
],
|
||||
"sources" :
|
||||
[
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"compileGroupIndex" : 0,
|
||||
"path" : "libs/glfw/glfw-3.3.8/tests/gamma.c",
|
||||
"sourceGroupIndex" : 0
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"path" : "libs/glfw/glfw-3.3.8/deps/glad/gl.h",
|
||||
"sourceGroupIndex" : 1
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"compileGroupIndex" : 0,
|
||||
"path" : "libs/glfw/glfw-3.3.8/deps/glad_gl.c",
|
||||
"sourceGroupIndex" : 0
|
||||
}
|
||||
],
|
||||
"type" : "EXECUTABLE"
|
||||
}
|
|
@ -0,0 +1,187 @@
|
|||
{
|
||||
"artifacts" :
|
||||
[
|
||||
{
|
||||
"path" : "libs/glfw/glfw-3.3.8/examples/gears"
|
||||
}
|
||||
],
|
||||
"backtrace" : 1,
|
||||
"backtraceGraph" :
|
||||
{
|
||||
"commands" :
|
||||
[
|
||||
"add_executable",
|
||||
"target_link_libraries",
|
||||
"include_directories"
|
||||
],
|
||||
"files" :
|
||||
[
|
||||
"libs/glfw/glfw-3.3.8/examples/CMakeLists.txt",
|
||||
"libs/glfw/glfw-3.3.8/src/CMakeLists.txt"
|
||||
],
|
||||
"nodes" :
|
||||
[
|
||||
{
|
||||
"file" : 0
|
||||
},
|
||||
{
|
||||
"command" : 0,
|
||||
"file" : 0,
|
||||
"line" : 40,
|
||||
"parent" : 0
|
||||
},
|
||||
{
|
||||
"file" : 1
|
||||
},
|
||||
{
|
||||
"command" : 1,
|
||||
"file" : 1,
|
||||
"line" : 119,
|
||||
"parent" : 2
|
||||
},
|
||||
{
|
||||
"command" : 2,
|
||||
"file" : 0,
|
||||
"line" : 4,
|
||||
"parent" : 0
|
||||
}
|
||||
]
|
||||
},
|
||||
"compileGroups" :
|
||||
[
|
||||
{
|
||||
"compileCommandFragments" :
|
||||
[
|
||||
{
|
||||
"fragment" : "-g -std=gnu99 -fdiagnostics-color=always"
|
||||
}
|
||||
],
|
||||
"includes" :
|
||||
[
|
||||
{
|
||||
"backtrace" : 4,
|
||||
"path" : "/home/brett/git/parksandrec/libs/glfw/glfw-3.3.8/deps"
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"path" : "/home/brett/git/parksandrec/libs/glfw/glfw-3.3.8/include"
|
||||
}
|
||||
],
|
||||
"language" : "C",
|
||||
"languageStandard" :
|
||||
{
|
||||
"backtraces" :
|
||||
[
|
||||
1
|
||||
],
|
||||
"standard" : "99"
|
||||
},
|
||||
"sourceIndexes" :
|
||||
[
|
||||
0,
|
||||
2
|
||||
]
|
||||
}
|
||||
],
|
||||
"dependencies" :
|
||||
[
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"id" : "glfw::@7dc16bda365e0ec860ed"
|
||||
}
|
||||
],
|
||||
"folder" :
|
||||
{
|
||||
"name" : "GLFW3/Examples"
|
||||
},
|
||||
"id" : "gears::@555eb4510d21f320f20b",
|
||||
"link" :
|
||||
{
|
||||
"commandFragments" :
|
||||
[
|
||||
{
|
||||
"fragment" : "-g",
|
||||
"role" : "flags"
|
||||
},
|
||||
{
|
||||
"fragment" : "",
|
||||
"role" : "flags"
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"fragment" : "libs/glfw/glfw-3.3.8/src/libglfw3.a",
|
||||
"role" : "libraries"
|
||||
},
|
||||
{
|
||||
"fragment" : "-lm",
|
||||
"role" : "libraries"
|
||||
},
|
||||
{
|
||||
"backtrace" : 3,
|
||||
"fragment" : "/usr/lib/librt.a",
|
||||
"role" : "libraries"
|
||||
},
|
||||
{
|
||||
"fragment" : "-lm",
|
||||
"role" : "libraries"
|
||||
},
|
||||
{
|
||||
"backtrace" : 3,
|
||||
"fragment" : "-ldl",
|
||||
"role" : "libraries"
|
||||
},
|
||||
{
|
||||
"backtrace" : 3,
|
||||
"fragment" : "/usr/lib/libX11.so",
|
||||
"role" : "libraries"
|
||||
}
|
||||
],
|
||||
"language" : "C"
|
||||
},
|
||||
"name" : "gears",
|
||||
"nameOnDisk" : "gears",
|
||||
"paths" :
|
||||
{
|
||||
"build" : "libs/glfw/glfw-3.3.8/examples",
|
||||
"source" : "libs/glfw/glfw-3.3.8/examples"
|
||||
},
|
||||
"sourceGroups" :
|
||||
[
|
||||
{
|
||||
"name" : "Source Files",
|
||||
"sourceIndexes" :
|
||||
[
|
||||
0,
|
||||
2
|
||||
]
|
||||
},
|
||||
{
|
||||
"name" : "Header Files",
|
||||
"sourceIndexes" :
|
||||
[
|
||||
1
|
||||
]
|
||||
}
|
||||
],
|
||||
"sources" :
|
||||
[
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"compileGroupIndex" : 0,
|
||||
"path" : "libs/glfw/glfw-3.3.8/examples/gears.c",
|
||||
"sourceGroupIndex" : 0
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"path" : "libs/glfw/glfw-3.3.8/deps/glad/gl.h",
|
||||
"sourceGroupIndex" : 1
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"compileGroupIndex" : 0,
|
||||
"path" : "libs/glfw/glfw-3.3.8/deps/glad_gl.c",
|
||||
"sourceGroupIndex" : 0
|
||||
}
|
||||
],
|
||||
"type" : "EXECUTABLE"
|
||||
}
|
|
@ -0,0 +1,423 @@
|
|||
{
|
||||
"archive" : {},
|
||||
"artifacts" :
|
||||
[
|
||||
{
|
||||
"path" : "libs/glfw/glfw-3.3.8/src/libglfw3.a"
|
||||
}
|
||||
],
|
||||
"backtrace" : 1,
|
||||
"backtraceGraph" :
|
||||
{
|
||||
"commands" :
|
||||
[
|
||||
"add_library",
|
||||
"install",
|
||||
"target_compile_options",
|
||||
"target_compile_definitions",
|
||||
"target_include_directories",
|
||||
"set_target_properties"
|
||||
],
|
||||
"files" :
|
||||
[
|
||||
"libs/glfw/glfw-3.3.8/src/CMakeLists.txt"
|
||||
],
|
||||
"nodes" :
|
||||
[
|
||||
{
|
||||
"file" : 0
|
||||
},
|
||||
{
|
||||
"command" : 0,
|
||||
"file" : 0,
|
||||
"line" : 91,
|
||||
"parent" : 0
|
||||
},
|
||||
{
|
||||
"command" : 1,
|
||||
"file" : 0,
|
||||
"line" : 189,
|
||||
"parent" : 0
|
||||
},
|
||||
{
|
||||
"command" : 2,
|
||||
"file" : 0,
|
||||
"line" : 140,
|
||||
"parent" : 0
|
||||
},
|
||||
{
|
||||
"command" : 3,
|
||||
"file" : 0,
|
||||
"line" : 111,
|
||||
"parent" : 0
|
||||
},
|
||||
{
|
||||
"command" : 4,
|
||||
"file" : 0,
|
||||
"line" : 112,
|
||||
"parent" : 0
|
||||
},
|
||||
{
|
||||
"command" : 4,
|
||||
"file" : 0,
|
||||
"line" : 115,
|
||||
"parent" : 0
|
||||
},
|
||||
{
|
||||
"command" : 5,
|
||||
"file" : 0,
|
||||
"line" : 102,
|
||||
"parent" : 0
|
||||
}
|
||||
]
|
||||
},
|
||||
"compileGroups" :
|
||||
[
|
||||
{
|
||||
"compileCommandFragments" :
|
||||
[
|
||||
{
|
||||
"fragment" : "-g -std=gnu99 -fPIC -fdiagnostics-color=always"
|
||||
},
|
||||
{
|
||||
"backtrace" : 3,
|
||||
"fragment" : "-Wall"
|
||||
},
|
||||
{
|
||||
"fragment" : "-Wdeclaration-after-statement"
|
||||
}
|
||||
],
|
||||
"defines" :
|
||||
[
|
||||
{
|
||||
"backtrace" : 4,
|
||||
"define" : "_GLFW_USE_CONFIG_H"
|
||||
}
|
||||
],
|
||||
"includes" :
|
||||
[
|
||||
{
|
||||
"backtrace" : 5,
|
||||
"path" : "/home/brett/git/parksandrec/libs/glfw/glfw-3.3.8/include"
|
||||
},
|
||||
{
|
||||
"backtrace" : 6,
|
||||
"path" : "/home/brett/git/parksandrec/libs/glfw/glfw-3.3.8/src"
|
||||
},
|
||||
{
|
||||
"backtrace" : 6,
|
||||
"path" : "/home/brett/git/parksandrec/cmake-build-debug-sanitizer/libs/glfw/glfw-3.3.8/src"
|
||||
}
|
||||
],
|
||||
"language" : "C",
|
||||
"languageStandard" :
|
||||
{
|
||||
"backtraces" :
|
||||
[
|
||||
7
|
||||
],
|
||||
"standard" : "99"
|
||||
},
|
||||
"sourceIndexes" :
|
||||
[
|
||||
0,
|
||||
1,
|
||||
2,
|
||||
3,
|
||||
4,
|
||||
5,
|
||||
13,
|
||||
14
|
||||
]
|
||||
},
|
||||
{
|
||||
"compileCommandFragments" :
|
||||
[
|
||||
{
|
||||
"fragment" : "-g -std=gnu99 -fPIC -fdiagnostics-color=always"
|
||||
},
|
||||
{
|
||||
"backtrace" : 3,
|
||||
"fragment" : "-Wall"
|
||||
}
|
||||
],
|
||||
"defines" :
|
||||
[
|
||||
{
|
||||
"backtrace" : 4,
|
||||
"define" : "_GLFW_USE_CONFIG_H"
|
||||
}
|
||||
],
|
||||
"includes" :
|
||||
[
|
||||
{
|
||||
"backtrace" : 5,
|
||||
"path" : "/home/brett/git/parksandrec/libs/glfw/glfw-3.3.8/include"
|
||||
},
|
||||
{
|
||||
"backtrace" : 6,
|
||||
"path" : "/home/brett/git/parksandrec/libs/glfw/glfw-3.3.8/src"
|
||||
},
|
||||
{
|
||||
"backtrace" : 6,
|
||||
"path" : "/home/brett/git/parksandrec/cmake-build-debug-sanitizer/libs/glfw/glfw-3.3.8/src"
|
||||
}
|
||||
],
|
||||
"language" : "C",
|
||||
"languageStandard" :
|
||||
{
|
||||
"backtraces" :
|
||||
[
|
||||
7
|
||||
],
|
||||
"standard" : "99"
|
||||
},
|
||||
"sourceIndexes" :
|
||||
[
|
||||
6,
|
||||
7,
|
||||
8,
|
||||
9,
|
||||
10,
|
||||
11,
|
||||
12,
|
||||
15
|
||||
]
|
||||
}
|
||||
],
|
||||
"folder" :
|
||||
{
|
||||
"name" : "GLFW3"
|
||||
},
|
||||
"id" : "glfw::@7dc16bda365e0ec860ed",
|
||||
"install" :
|
||||
{
|
||||
"destinations" :
|
||||
[
|
||||
{
|
||||
"backtrace" : 2,
|
||||
"path" : "lib"
|
||||
}
|
||||
],
|
||||
"prefix" :
|
||||
{
|
||||
"path" : "/usr/local"
|
||||
}
|
||||
},
|
||||
"name" : "glfw",
|
||||
"nameOnDisk" : "libglfw3.a",
|
||||
"paths" :
|
||||
{
|
||||
"build" : "libs/glfw/glfw-3.3.8/src",
|
||||
"source" : "libs/glfw/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" : "libs/glfw/glfw-3.3.8/src/context.c",
|
||||
"sourceGroupIndex" : 0
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"compileGroupIndex" : 0,
|
||||
"path" : "libs/glfw/glfw-3.3.8/src/init.c",
|
||||
"sourceGroupIndex" : 0
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"compileGroupIndex" : 0,
|
||||
"path" : "libs/glfw/glfw-3.3.8/src/input.c",
|
||||
"sourceGroupIndex" : 0
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"compileGroupIndex" : 0,
|
||||
"path" : "libs/glfw/glfw-3.3.8/src/monitor.c",
|
||||
"sourceGroupIndex" : 0
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"compileGroupIndex" : 0,
|
||||
"path" : "libs/glfw/glfw-3.3.8/src/vulkan.c",
|
||||
"sourceGroupIndex" : 0
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"compileGroupIndex" : 0,
|
||||
"path" : "libs/glfw/glfw-3.3.8/src/window.c",
|
||||
"sourceGroupIndex" : 0
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"compileGroupIndex" : 1,
|
||||
"path" : "libs/glfw/glfw-3.3.8/src/x11_init.c",
|
||||
"sourceGroupIndex" : 0
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"compileGroupIndex" : 1,
|
||||
"path" : "libs/glfw/glfw-3.3.8/src/x11_monitor.c",
|
||||
"sourceGroupIndex" : 0
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"compileGroupIndex" : 1,
|
||||
"path" : "libs/glfw/glfw-3.3.8/src/x11_window.c",
|
||||
"sourceGroupIndex" : 0
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"compileGroupIndex" : 1,
|
||||
"path" : "libs/glfw/glfw-3.3.8/src/xkb_unicode.c",
|
||||
"sourceGroupIndex" : 0
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"compileGroupIndex" : 1,
|
||||
"path" : "libs/glfw/glfw-3.3.8/src/posix_time.c",
|
||||
"sourceGroupIndex" : 0
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"compileGroupIndex" : 1,
|
||||
"path" : "libs/glfw/glfw-3.3.8/src/posix_thread.c",
|
||||
"sourceGroupIndex" : 0
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"compileGroupIndex" : 1,
|
||||
"path" : "libs/glfw/glfw-3.3.8/src/glx_context.c",
|
||||
"sourceGroupIndex" : 0
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"compileGroupIndex" : 0,
|
||||
"path" : "libs/glfw/glfw-3.3.8/src/egl_context.c",
|
||||
"sourceGroupIndex" : 0
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"compileGroupIndex" : 0,
|
||||
"path" : "libs/glfw/glfw-3.3.8/src/osmesa_context.c",
|
||||
"sourceGroupIndex" : 0
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"compileGroupIndex" : 1,
|
||||
"path" : "libs/glfw/glfw-3.3.8/src/linux_joystick.c",
|
||||
"sourceGroupIndex" : 0
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"path" : "libs/glfw/glfw-3.3.8/src/internal.h",
|
||||
"sourceGroupIndex" : 1
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"path" : "libs/glfw/glfw-3.3.8/src/mappings.h",
|
||||
"sourceGroupIndex" : 1
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"path" : "cmake-build-debug-sanitizer/libs/glfw/glfw-3.3.8/src/glfw_config.h",
|
||||
"sourceGroupIndex" : 1
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"path" : "libs/glfw/glfw-3.3.8/include/GLFW/glfw3.h",
|
||||
"sourceGroupIndex" : 1
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"path" : "libs/glfw/glfw-3.3.8/include/GLFW/glfw3native.h",
|
||||
"sourceGroupIndex" : 1
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"path" : "libs/glfw/glfw-3.3.8/src/x11_platform.h",
|
||||
"sourceGroupIndex" : 1
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"path" : "libs/glfw/glfw-3.3.8/src/xkb_unicode.h",
|
||||
"sourceGroupIndex" : 1
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"path" : "libs/glfw/glfw-3.3.8/src/posix_time.h",
|
||||
"sourceGroupIndex" : 1
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"path" : "libs/glfw/glfw-3.3.8/src/posix_thread.h",
|
||||
"sourceGroupIndex" : 1
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"path" : "libs/glfw/glfw-3.3.8/src/glx_context.h",
|
||||
"sourceGroupIndex" : 1
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"path" : "libs/glfw/glfw-3.3.8/src/egl_context.h",
|
||||
"sourceGroupIndex" : 1
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"path" : "libs/glfw/glfw-3.3.8/src/osmesa_context.h",
|
||||
"sourceGroupIndex" : 1
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"path" : "libs/glfw/glfw-3.3.8/src/linux_joystick.h",
|
||||
"sourceGroupIndex" : 1
|
||||
}
|
||||
],
|
||||
"type" : "STATIC_LIBRARY"
|
||||
}
|
|
@ -0,0 +1,215 @@
|
|||
{
|
||||
"artifacts" :
|
||||
[
|
||||
{
|
||||
"path" : "libs/glfw/glfw-3.3.8/tests/glfwinfo"
|
||||
}
|
||||
],
|
||||
"backtrace" : 1,
|
||||
"backtraceGraph" :
|
||||
{
|
||||
"commands" :
|
||||
[
|
||||
"add_executable",
|
||||
"target_link_libraries",
|
||||
"include_directories"
|
||||
],
|
||||
"files" :
|
||||
[
|
||||
"libs/glfw/glfw-3.3.8/tests/CMakeLists.txt",
|
||||
"libs/glfw/glfw-3.3.8/src/CMakeLists.txt"
|
||||
],
|
||||
"nodes" :
|
||||
[
|
||||
{
|
||||
"file" : 0
|
||||
},
|
||||
{
|
||||
"command" : 0,
|
||||
"file" : 0,
|
||||
"line" : 38,
|
||||
"parent" : 0
|
||||
},
|
||||
{
|
||||
"file" : 1
|
||||
},
|
||||
{
|
||||
"command" : 1,
|
||||
"file" : 1,
|
||||
"line" : 119,
|
||||
"parent" : 2
|
||||
},
|
||||
{
|
||||
"command" : 2,
|
||||
"file" : 0,
|
||||
"line" : 4,
|
||||
"parent" : 0
|
||||
}
|
||||
]
|
||||
},
|
||||
"compileGroups" :
|
||||
[
|
||||
{
|
||||
"compileCommandFragments" :
|
||||
[
|
||||
{
|
||||
"fragment" : "-g -std=gnu99 -fdiagnostics-color=always"
|
||||
}
|
||||
],
|
||||
"includes" :
|
||||
[
|
||||
{
|
||||
"backtrace" : 4,
|
||||
"path" : "/home/brett/git/parksandrec/libs/glfw/glfw-3.3.8/deps"
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"path" : "/home/brett/git/parksandrec/libs/glfw/glfw-3.3.8/include"
|
||||
}
|
||||
],
|
||||
"language" : "C",
|
||||
"languageStandard" :
|
||||
{
|
||||
"backtraces" :
|
||||
[
|
||||
1
|
||||
],
|
||||
"standard" : "99"
|
||||
},
|
||||
"sourceIndexes" :
|
||||
[
|
||||
0,
|
||||
2,
|
||||
4,
|
||||
6
|
||||
]
|
||||
}
|
||||
],
|
||||
"dependencies" :
|
||||
[
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"id" : "glfw::@7dc16bda365e0ec860ed"
|
||||
}
|
||||
],
|
||||
"folder" :
|
||||
{
|
||||
"name" : "GLFW3/Tests"
|
||||
},
|
||||
"id" : "glfwinfo::@77cfdd67c43044262fc4",
|
||||
"link" :
|
||||
{
|
||||
"commandFragments" :
|
||||
[
|
||||
{
|
||||
"fragment" : "-g",
|
||||
"role" : "flags"
|
||||
},
|
||||
{
|
||||
"fragment" : "",
|
||||
"role" : "flags"
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"fragment" : "libs/glfw/glfw-3.3.8/src/libglfw3.a",
|
||||
"role" : "libraries"
|
||||
},
|
||||
{
|
||||
"fragment" : "-lm",
|
||||
"role" : "libraries"
|
||||
},
|
||||
{
|
||||
"backtrace" : 3,
|
||||
"fragment" : "/usr/lib/librt.a",
|
||||
"role" : "libraries"
|
||||
},
|
||||
{
|
||||
"fragment" : "-lm",
|
||||
"role" : "libraries"
|
||||
},
|
||||
{
|
||||
"backtrace" : 3,
|
||||
"fragment" : "-ldl",
|
||||
"role" : "libraries"
|
||||
},
|
||||
{
|
||||
"backtrace" : 3,
|
||||
"fragment" : "/usr/lib/libX11.so",
|
||||
"role" : "libraries"
|
||||
}
|
||||
],
|
||||
"language" : "C"
|
||||
},
|
||||
"name" : "glfwinfo",
|
||||
"nameOnDisk" : "glfwinfo",
|
||||
"paths" :
|
||||
{
|
||||
"build" : "libs/glfw/glfw-3.3.8/tests",
|
||||
"source" : "libs/glfw/glfw-3.3.8/tests"
|
||||
},
|
||||
"sourceGroups" :
|
||||
[
|
||||
{
|
||||
"name" : "Source Files",
|
||||
"sourceIndexes" :
|
||||
[
|
||||
0,
|
||||
2,
|
||||
4,
|
||||
6
|
||||
]
|
||||
},
|
||||
{
|
||||
"name" : "Header Files",
|
||||
"sourceIndexes" :
|
||||
[
|
||||
1,
|
||||
3,
|
||||
5
|
||||
]
|
||||
}
|
||||
],
|
||||
"sources" :
|
||||
[
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"compileGroupIndex" : 0,
|
||||
"path" : "libs/glfw/glfw-3.3.8/tests/glfwinfo.c",
|
||||
"sourceGroupIndex" : 0
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"path" : "libs/glfw/glfw-3.3.8/deps/getopt.h",
|
||||
"sourceGroupIndex" : 1
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"compileGroupIndex" : 0,
|
||||
"path" : "libs/glfw/glfw-3.3.8/deps/getopt.c",
|
||||
"sourceGroupIndex" : 0
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"path" : "libs/glfw/glfw-3.3.8/deps/glad/gl.h",
|
||||
"sourceGroupIndex" : 1
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"compileGroupIndex" : 0,
|
||||
"path" : "libs/glfw/glfw-3.3.8/deps/glad_gl.c",
|
||||
"sourceGroupIndex" : 0
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"path" : "libs/glfw/glfw-3.3.8/deps/glad/vulkan.h",
|
||||
"sourceGroupIndex" : 1
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"compileGroupIndex" : 0,
|
||||
"path" : "libs/glfw/glfw-3.3.8/deps/glad_vulkan.c",
|
||||
"sourceGroupIndex" : 0
|
||||
}
|
||||
],
|
||||
"type" : "EXECUTABLE"
|
||||
}
|
|
@ -0,0 +1,187 @@
|
|||
{
|
||||
"artifacts" :
|
||||
[
|
||||
{
|
||||
"path" : "libs/glfw/glfw-3.3.8/examples/heightmap"
|
||||
}
|
||||
],
|
||||
"backtrace" : 1,
|
||||
"backtraceGraph" :
|
||||
{
|
||||
"commands" :
|
||||
[
|
||||
"add_executable",
|
||||
"target_link_libraries",
|
||||
"include_directories"
|
||||
],
|
||||
"files" :
|
||||
[
|
||||
"libs/glfw/glfw-3.3.8/examples/CMakeLists.txt",
|
||||
"libs/glfw/glfw-3.3.8/src/CMakeLists.txt"
|
||||
],
|
||||
"nodes" :
|
||||
[
|
||||
{
|
||||
"file" : 0
|
||||
},
|
||||
{
|
||||
"command" : 0,
|
||||
"file" : 0,
|
||||
"line" : 41,
|
||||
"parent" : 0
|
||||
},
|
||||
{
|
||||
"file" : 1
|
||||
},
|
||||
{
|
||||
"command" : 1,
|
||||
"file" : 1,
|
||||
"line" : 119,
|
||||
"parent" : 2
|
||||
},
|
||||
{
|
||||
"command" : 2,
|
||||
"file" : 0,
|
||||
"line" : 4,
|
||||
"parent" : 0
|
||||
}
|
||||
]
|
||||
},
|
||||
"compileGroups" :
|
||||
[
|
||||
{
|
||||
"compileCommandFragments" :
|
||||
[
|
||||
{
|
||||
"fragment" : "-g -std=gnu99 -fdiagnostics-color=always"
|
||||
}
|
||||
],
|
||||
"includes" :
|
||||
[
|
||||
{
|
||||
"backtrace" : 4,
|
||||
"path" : "/home/brett/git/parksandrec/libs/glfw/glfw-3.3.8/deps"
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"path" : "/home/brett/git/parksandrec/libs/glfw/glfw-3.3.8/include"
|
||||
}
|
||||
],
|
||||
"language" : "C",
|
||||
"languageStandard" :
|
||||
{
|
||||
"backtraces" :
|
||||
[
|
||||
1
|
||||
],
|
||||
"standard" : "99"
|
||||
},
|
||||
"sourceIndexes" :
|
||||
[
|
||||
0,
|
||||
2
|
||||
]
|
||||
}
|
||||
],
|
||||
"dependencies" :
|
||||
[
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"id" : "glfw::@7dc16bda365e0ec860ed"
|
||||
}
|
||||
],
|
||||
"folder" :
|
||||
{
|
||||
"name" : "GLFW3/Examples"
|
||||
},
|
||||
"id" : "heightmap::@555eb4510d21f320f20b",
|
||||
"link" :
|
||||
{
|
||||
"commandFragments" :
|
||||
[
|
||||
{
|
||||
"fragment" : "-g",
|
||||
"role" : "flags"
|
||||
},
|
||||
{
|
||||
"fragment" : "",
|
||||
"role" : "flags"
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"fragment" : "libs/glfw/glfw-3.3.8/src/libglfw3.a",
|
||||
"role" : "libraries"
|
||||
},
|
||||
{
|
||||
"fragment" : "-lm",
|
||||
"role" : "libraries"
|
||||
},
|
||||
{
|
||||
"backtrace" : 3,
|
||||
"fragment" : "/usr/lib/librt.a",
|
||||
"role" : "libraries"
|
||||
},
|
||||
{
|
||||
"fragment" : "-lm",
|
||||
"role" : "libraries"
|
||||
},
|
||||
{
|
||||
"backtrace" : 3,
|
||||
"fragment" : "-ldl",
|
||||
"role" : "libraries"
|
||||
},
|
||||
{
|
||||
"backtrace" : 3,
|
||||
"fragment" : "/usr/lib/libX11.so",
|
||||
"role" : "libraries"
|
||||
}
|
||||
],
|
||||
"language" : "C"
|
||||
},
|
||||
"name" : "heightmap",
|
||||
"nameOnDisk" : "heightmap",
|
||||
"paths" :
|
||||
{
|
||||
"build" : "libs/glfw/glfw-3.3.8/examples",
|
||||
"source" : "libs/glfw/glfw-3.3.8/examples"
|
||||
},
|
||||
"sourceGroups" :
|
||||
[
|
||||
{
|
||||
"name" : "Source Files",
|
||||
"sourceIndexes" :
|
||||
[
|
||||
0,
|
||||
2
|
||||
]
|
||||
},
|
||||
{
|
||||
"name" : "Header Files",
|
||||
"sourceIndexes" :
|
||||
[
|
||||
1
|
||||
]
|
||||
}
|
||||
],
|
||||
"sources" :
|
||||
[
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"compileGroupIndex" : 0,
|
||||
"path" : "libs/glfw/glfw-3.3.8/examples/heightmap.c",
|
||||
"sourceGroupIndex" : 0
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"path" : "libs/glfw/glfw-3.3.8/deps/glad/gl.h",
|
||||
"sourceGroupIndex" : 1
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"compileGroupIndex" : 0,
|
||||
"path" : "libs/glfw/glfw-3.3.8/deps/glad_gl.c",
|
||||
"sourceGroupIndex" : 0
|
||||
}
|
||||
],
|
||||
"type" : "EXECUTABLE"
|
||||
}
|
|
@ -0,0 +1,187 @@
|
|||
{
|
||||
"artifacts" :
|
||||
[
|
||||
{
|
||||
"path" : "libs/glfw/glfw-3.3.8/tests/icon"
|
||||
}
|
||||
],
|
||||
"backtrace" : 1,
|
||||
"backtraceGraph" :
|
||||
{
|
||||
"commands" :
|
||||
[
|
||||
"add_executable",
|
||||
"target_link_libraries",
|
||||
"include_directories"
|
||||
],
|
||||
"files" :
|
||||
[
|
||||
"libs/glfw/glfw-3.3.8/tests/CMakeLists.txt",
|
||||
"libs/glfw/glfw-3.3.8/src/CMakeLists.txt"
|
||||
],
|
||||
"nodes" :
|
||||
[
|
||||
{
|
||||
"file" : 0
|
||||
},
|
||||
{
|
||||
"command" : 0,
|
||||
"file" : 0,
|
||||
"line" : 46,
|
||||
"parent" : 0
|
||||
},
|
||||
{
|
||||
"file" : 1
|
||||
},
|
||||
{
|
||||
"command" : 1,
|
||||
"file" : 1,
|
||||
"line" : 119,
|
||||
"parent" : 2
|
||||
},
|
||||
{
|
||||
"command" : 2,
|
||||
"file" : 0,
|
||||
"line" : 4,
|
||||
"parent" : 0
|
||||
}
|
||||
]
|
||||
},
|
||||
"compileGroups" :
|
||||
[
|
||||
{
|
||||
"compileCommandFragments" :
|
||||
[
|
||||
{
|
||||
"fragment" : "-g -std=gnu99 -fdiagnostics-color=always"
|
||||
}
|
||||
],
|
||||
"includes" :
|
||||
[
|
||||
{
|
||||
"backtrace" : 4,
|
||||
"path" : "/home/brett/git/parksandrec/libs/glfw/glfw-3.3.8/deps"
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"path" : "/home/brett/git/parksandrec/libs/glfw/glfw-3.3.8/include"
|
||||
}
|
||||
],
|
||||
"language" : "C",
|
||||
"languageStandard" :
|
||||
{
|
||||
"backtraces" :
|
||||
[
|
||||
1
|
||||
],
|
||||
"standard" : "99"
|
||||
},
|
||||
"sourceIndexes" :
|
||||
[
|
||||
0,
|
||||
2
|
||||
]
|
||||
}
|
||||
],
|
||||
"dependencies" :
|
||||
[
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"id" : "glfw::@7dc16bda365e0ec860ed"
|
||||
}
|
||||
],
|
||||
"folder" :
|
||||
{
|
||||
"name" : "GLFW3/Tests"
|
||||
},
|
||||
"id" : "icon::@77cfdd67c43044262fc4",
|
||||
"link" :
|
||||
{
|
||||
"commandFragments" :
|
||||
[
|
||||
{
|
||||
"fragment" : "-g",
|
||||
"role" : "flags"
|
||||
},
|
||||
{
|
||||
"fragment" : "",
|
||||
"role" : "flags"
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"fragment" : "libs/glfw/glfw-3.3.8/src/libglfw3.a",
|
||||
"role" : "libraries"
|
||||
},
|
||||
{
|
||||
"fragment" : "-lm",
|
||||
"role" : "libraries"
|
||||
},
|
||||
{
|
||||
"backtrace" : 3,
|
||||
"fragment" : "/usr/lib/librt.a",
|
||||
"role" : "libraries"
|
||||
},
|
||||
{
|
||||
"fragment" : "-lm",
|
||||
"role" : "libraries"
|
||||
},
|
||||
{
|
||||
"backtrace" : 3,
|
||||
"fragment" : "-ldl",
|
||||
"role" : "libraries"
|
||||
},
|
||||
{
|
||||
"backtrace" : 3,
|
||||
"fragment" : "/usr/lib/libX11.so",
|
||||
"role" : "libraries"
|
||||
}
|
||||
],
|
||||
"language" : "C"
|
||||
},
|
||||
"name" : "icon",
|
||||
"nameOnDisk" : "icon",
|
||||
"paths" :
|
||||
{
|
||||
"build" : "libs/glfw/glfw-3.3.8/tests",
|
||||
"source" : "libs/glfw/glfw-3.3.8/tests"
|
||||
},
|
||||
"sourceGroups" :
|
||||
[
|
||||
{
|
||||
"name" : "Source Files",
|
||||
"sourceIndexes" :
|
||||
[
|
||||
0,
|
||||
2
|
||||
]
|
||||
},
|
||||
{
|
||||
"name" : "Header Files",
|
||||
"sourceIndexes" :
|
||||
[
|
||||
1
|
||||
]
|
||||
}
|
||||
],
|
||||
"sources" :
|
||||
[
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"compileGroupIndex" : 0,
|
||||
"path" : "libs/glfw/glfw-3.3.8/tests/icon.c",
|
||||
"sourceGroupIndex" : 0
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"path" : "libs/glfw/glfw-3.3.8/deps/glad/gl.h",
|
||||
"sourceGroupIndex" : 1
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"compileGroupIndex" : 0,
|
||||
"path" : "libs/glfw/glfw-3.3.8/deps/glad_gl.c",
|
||||
"sourceGroupIndex" : 0
|
||||
}
|
||||
],
|
||||
"type" : "EXECUTABLE"
|
||||
}
|
|
@ -0,0 +1,201 @@
|
|||
{
|
||||
"artifacts" :
|
||||
[
|
||||
{
|
||||
"path" : "libs/glfw/glfw-3.3.8/tests/iconify"
|
||||
}
|
||||
],
|
||||
"backtrace" : 1,
|
||||
"backtraceGraph" :
|
||||
{
|
||||
"commands" :
|
||||
[
|
||||
"add_executable",
|
||||
"target_link_libraries",
|
||||
"include_directories"
|
||||
],
|
||||
"files" :
|
||||
[
|
||||
"libs/glfw/glfw-3.3.8/tests/CMakeLists.txt",
|
||||
"libs/glfw/glfw-3.3.8/src/CMakeLists.txt"
|
||||
],
|
||||
"nodes" :
|
||||
[
|
||||
{
|
||||
"file" : 0
|
||||
},
|
||||
{
|
||||
"command" : 0,
|
||||
"file" : 0,
|
||||
"line" : 39,
|
||||
"parent" : 0
|
||||
},
|
||||
{
|
||||
"file" : 1
|
||||
},
|
||||
{
|
||||
"command" : 1,
|
||||
"file" : 1,
|
||||
"line" : 119,
|
||||
"parent" : 2
|
||||
},
|
||||
{
|
||||
"command" : 2,
|
||||
"file" : 0,
|
||||
"line" : 4,
|
||||
"parent" : 0
|
||||
}
|
||||
]
|
||||
},
|
||||
"compileGroups" :
|
||||
[
|
||||
{
|
||||
"compileCommandFragments" :
|
||||
[
|
||||
{
|
||||
"fragment" : "-g -std=gnu99 -fdiagnostics-color=always"
|
||||
}
|
||||
],
|
||||
"includes" :
|
||||
[
|
||||
{
|
||||
"backtrace" : 4,
|
||||
"path" : "/home/brett/git/parksandrec/libs/glfw/glfw-3.3.8/deps"
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"path" : "/home/brett/git/parksandrec/libs/glfw/glfw-3.3.8/include"
|
||||
}
|
||||
],
|
||||
"language" : "C",
|
||||
"languageStandard" :
|
||||
{
|
||||
"backtraces" :
|
||||
[
|
||||
1
|
||||
],
|
||||
"standard" : "99"
|
||||
},
|
||||
"sourceIndexes" :
|
||||
[
|
||||
0,
|
||||
2,
|
||||
4
|
||||
]
|
||||
}
|
||||
],
|
||||
"dependencies" :
|
||||
[
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"id" : "glfw::@7dc16bda365e0ec860ed"
|
||||
}
|
||||
],
|
||||
"folder" :
|
||||
{
|
||||
"name" : "GLFW3/Tests"
|
||||
},
|
||||
"id" : "iconify::@77cfdd67c43044262fc4",
|
||||
"link" :
|
||||
{
|
||||
"commandFragments" :
|
||||
[
|
||||
{
|
||||
"fragment" : "-g",
|
||||
"role" : "flags"
|
||||
},
|
||||
{
|
||||
"fragment" : "",
|
||||
"role" : "flags"
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"fragment" : "libs/glfw/glfw-3.3.8/src/libglfw3.a",
|
||||
"role" : "libraries"
|
||||
},
|
||||
{
|
||||
"fragment" : "-lm",
|
||||
"role" : "libraries"
|
||||
},
|
||||
{
|
||||
"backtrace" : 3,
|
||||
"fragment" : "/usr/lib/librt.a",
|
||||
"role" : "libraries"
|
||||
},
|
||||
{
|
||||
"fragment" : "-lm",
|
||||
"role" : "libraries"
|
||||
},
|
||||
{
|
||||
"backtrace" : 3,
|
||||
"fragment" : "-ldl",
|
||||
"role" : "libraries"
|
||||
},
|
||||
{
|
||||
"backtrace" : 3,
|
||||
"fragment" : "/usr/lib/libX11.so",
|
||||
"role" : "libraries"
|
||||
}
|
||||
],
|
||||
"language" : "C"
|
||||
},
|
||||
"name" : "iconify",
|
||||
"nameOnDisk" : "iconify",
|
||||
"paths" :
|
||||
{
|
||||
"build" : "libs/glfw/glfw-3.3.8/tests",
|
||||
"source" : "libs/glfw/glfw-3.3.8/tests"
|
||||
},
|
||||
"sourceGroups" :
|
||||
[
|
||||
{
|
||||
"name" : "Source Files",
|
||||
"sourceIndexes" :
|
||||
[
|
||||
0,
|
||||
2,
|
||||
4
|
||||
]
|
||||
},
|
||||
{
|
||||
"name" : "Header Files",
|
||||
"sourceIndexes" :
|
||||
[
|
||||
1,
|
||||
3
|
||||
]
|
||||
}
|
||||
],
|
||||
"sources" :
|
||||
[
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"compileGroupIndex" : 0,
|
||||
"path" : "libs/glfw/glfw-3.3.8/tests/iconify.c",
|
||||
"sourceGroupIndex" : 0
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"path" : "libs/glfw/glfw-3.3.8/deps/getopt.h",
|
||||
"sourceGroupIndex" : 1
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"compileGroupIndex" : 0,
|
||||
"path" : "libs/glfw/glfw-3.3.8/deps/getopt.c",
|
||||
"sourceGroupIndex" : 0
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"path" : "libs/glfw/glfw-3.3.8/deps/glad/gl.h",
|
||||
"sourceGroupIndex" : 1
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"compileGroupIndex" : 0,
|
||||
"path" : "libs/glfw/glfw-3.3.8/deps/glad_gl.c",
|
||||
"sourceGroupIndex" : 0
|
||||
}
|
||||
],
|
||||
"type" : "EXECUTABLE"
|
||||
}
|
|
@ -0,0 +1,201 @@
|
|||
{
|
||||
"artifacts" :
|
||||
[
|
||||
{
|
||||
"path" : "libs/glfw/glfw-3.3.8/tests/inputlag"
|
||||
}
|
||||
],
|
||||
"backtrace" : 1,
|
||||
"backtraceGraph" :
|
||||
{
|
||||
"commands" :
|
||||
[
|
||||
"add_executable",
|
||||
"target_link_libraries",
|
||||
"include_directories"
|
||||
],
|
||||
"files" :
|
||||
[
|
||||
"libs/glfw/glfw-3.3.8/tests/CMakeLists.txt",
|
||||
"libs/glfw/glfw-3.3.8/src/CMakeLists.txt"
|
||||
],
|
||||
"nodes" :
|
||||
[
|
||||
{
|
||||
"file" : 0
|
||||
},
|
||||
{
|
||||
"command" : 0,
|
||||
"file" : 0,
|
||||
"line" : 47,
|
||||
"parent" : 0
|
||||
},
|
||||
{
|
||||
"file" : 1
|
||||
},
|
||||
{
|
||||
"command" : 1,
|
||||
"file" : 1,
|
||||
"line" : 119,
|
||||
"parent" : 2
|
||||
},
|
||||
{
|
||||
"command" : 2,
|
||||
"file" : 0,
|
||||
"line" : 4,
|
||||
"parent" : 0
|
||||
}
|
||||
]
|
||||
},
|
||||
"compileGroups" :
|
||||
[
|
||||
{
|
||||
"compileCommandFragments" :
|
||||
[
|
||||
{
|
||||
"fragment" : "-g -std=gnu99 -fdiagnostics-color=always"
|
||||
}
|
||||
],
|
||||
"includes" :
|
||||
[
|
||||
{
|
||||
"backtrace" : 4,
|
||||
"path" : "/home/brett/git/parksandrec/libs/glfw/glfw-3.3.8/deps"
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"path" : "/home/brett/git/parksandrec/libs/glfw/glfw-3.3.8/include"
|
||||
}
|
||||
],
|
||||
"language" : "C",
|
||||
"languageStandard" :
|
||||
{
|
||||
"backtraces" :
|
||||
[
|
||||
1
|
||||
],
|
||||
"standard" : "99"
|
||||
},
|
||||
"sourceIndexes" :
|
||||
[
|
||||
0,
|
||||
2,
|
||||
4
|
||||
]
|
||||
}
|
||||
],
|
||||
"dependencies" :
|
||||
[
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"id" : "glfw::@7dc16bda365e0ec860ed"
|
||||
}
|
||||
],
|
||||
"folder" :
|
||||
{
|
||||
"name" : "GLFW3/Tests"
|
||||
},
|
||||
"id" : "inputlag::@77cfdd67c43044262fc4",
|
||||
"link" :
|
||||
{
|
||||
"commandFragments" :
|
||||
[
|
||||
{
|
||||
"fragment" : "-g",
|
||||
"role" : "flags"
|
||||
},
|
||||
{
|
||||
"fragment" : "",
|
||||
"role" : "flags"
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"fragment" : "libs/glfw/glfw-3.3.8/src/libglfw3.a",
|
||||
"role" : "libraries"
|
||||
},
|
||||
{
|
||||
"fragment" : "-lm",
|
||||
"role" : "libraries"
|
||||
},
|
||||
{
|
||||
"backtrace" : 3,
|
||||
"fragment" : "/usr/lib/librt.a",
|
||||
"role" : "libraries"
|
||||
},
|
||||
{
|
||||
"fragment" : "-lm",
|
||||
"role" : "libraries"
|
||||
},
|
||||
{
|
||||
"backtrace" : 3,
|
||||
"fragment" : "-ldl",
|
||||
"role" : "libraries"
|
||||
},
|
||||
{
|
||||
"backtrace" : 3,
|
||||
"fragment" : "/usr/lib/libX11.so",
|
||||
"role" : "libraries"
|
||||
}
|
||||
],
|
||||
"language" : "C"
|
||||
},
|
||||
"name" : "inputlag",
|
||||
"nameOnDisk" : "inputlag",
|
||||
"paths" :
|
||||
{
|
||||
"build" : "libs/glfw/glfw-3.3.8/tests",
|
||||
"source" : "libs/glfw/glfw-3.3.8/tests"
|
||||
},
|
||||
"sourceGroups" :
|
||||
[
|
||||
{
|
||||
"name" : "Source Files",
|
||||
"sourceIndexes" :
|
||||
[
|
||||
0,
|
||||
2,
|
||||
4
|
||||
]
|
||||
},
|
||||
{
|
||||
"name" : "Header Files",
|
||||
"sourceIndexes" :
|
||||
[
|
||||
1,
|
||||
3
|
||||
]
|
||||
}
|
||||
],
|
||||
"sources" :
|
||||
[
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"compileGroupIndex" : 0,
|
||||
"path" : "libs/glfw/glfw-3.3.8/tests/inputlag.c",
|
||||
"sourceGroupIndex" : 0
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"path" : "libs/glfw/glfw-3.3.8/deps/getopt.h",
|
||||
"sourceGroupIndex" : 1
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"compileGroupIndex" : 0,
|
||||
"path" : "libs/glfw/glfw-3.3.8/deps/getopt.c",
|
||||
"sourceGroupIndex" : 0
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"path" : "libs/glfw/glfw-3.3.8/deps/glad/gl.h",
|
||||
"sourceGroupIndex" : 1
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"compileGroupIndex" : 0,
|
||||
"path" : "libs/glfw/glfw-3.3.8/deps/glad_gl.c",
|
||||
"sourceGroupIndex" : 0
|
||||
}
|
||||
],
|
||||
"type" : "EXECUTABLE"
|
||||
}
|
|
@ -0,0 +1,187 @@
|
|||
{
|
||||
"artifacts" :
|
||||
[
|
||||
{
|
||||
"path" : "libs/glfw/glfw-3.3.8/tests/joysticks"
|
||||
}
|
||||
],
|
||||
"backtrace" : 1,
|
||||
"backtraceGraph" :
|
||||
{
|
||||
"commands" :
|
||||
[
|
||||
"add_executable",
|
||||
"target_link_libraries",
|
||||
"include_directories"
|
||||
],
|
||||
"files" :
|
||||
[
|
||||
"libs/glfw/glfw-3.3.8/tests/CMakeLists.txt",
|
||||
"libs/glfw/glfw-3.3.8/src/CMakeLists.txt"
|
||||
],
|
||||
"nodes" :
|
||||
[
|
||||
{
|
||||
"file" : 0
|
||||
},
|
||||
{
|
||||
"command" : 0,
|
||||
"file" : 0,
|
||||
"line" : 48,
|
||||
"parent" : 0
|
||||
},
|
||||
{
|
||||
"file" : 1
|
||||
},
|
||||
{
|
||||
"command" : 1,
|
||||
"file" : 1,
|
||||
"line" : 119,
|
||||
"parent" : 2
|
||||
},
|
||||
{
|
||||
"command" : 2,
|
||||
"file" : 0,
|
||||
"line" : 4,
|
||||
"parent" : 0
|
||||
}
|
||||
]
|
||||
},
|
||||
"compileGroups" :
|
||||
[
|
||||
{
|
||||
"compileCommandFragments" :
|
||||
[
|
||||
{
|
||||
"fragment" : "-g -std=gnu99 -fdiagnostics-color=always"
|
||||
}
|
||||
],
|
||||
"includes" :
|
||||
[
|
||||
{
|
||||
"backtrace" : 4,
|
||||
"path" : "/home/brett/git/parksandrec/libs/glfw/glfw-3.3.8/deps"
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"path" : "/home/brett/git/parksandrec/libs/glfw/glfw-3.3.8/include"
|
||||
}
|
||||
],
|
||||
"language" : "C",
|
||||
"languageStandard" :
|
||||
{
|
||||
"backtraces" :
|
||||
[
|
||||
1
|
||||
],
|
||||
"standard" : "99"
|
||||
},
|
||||
"sourceIndexes" :
|
||||
[
|
||||
0,
|
||||
2
|
||||
]
|
||||
}
|
||||
],
|
||||
"dependencies" :
|
||||
[
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"id" : "glfw::@7dc16bda365e0ec860ed"
|
||||
}
|
||||
],
|
||||
"folder" :
|
||||
{
|
||||
"name" : "GLFW3/Tests"
|
||||
},
|
||||
"id" : "joysticks::@77cfdd67c43044262fc4",
|
||||
"link" :
|
||||
{
|
||||
"commandFragments" :
|
||||
[
|
||||
{
|
||||
"fragment" : "-g",
|
||||
"role" : "flags"
|
||||
},
|
||||
{
|
||||
"fragment" : "",
|
||||
"role" : "flags"
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"fragment" : "libs/glfw/glfw-3.3.8/src/libglfw3.a",
|
||||
"role" : "libraries"
|
||||
},
|
||||
{
|
||||
"fragment" : "-lm",
|
||||
"role" : "libraries"
|
||||
},
|
||||
{
|
||||
"backtrace" : 3,
|
||||
"fragment" : "/usr/lib/librt.a",
|
||||
"role" : "libraries"
|
||||
},
|
||||
{
|
||||
"fragment" : "-lm",
|
||||
"role" : "libraries"
|
||||
},
|
||||
{
|
||||
"backtrace" : 3,
|
||||
"fragment" : "-ldl",
|
||||
"role" : "libraries"
|
||||
},
|
||||
{
|
||||
"backtrace" : 3,
|
||||
"fragment" : "/usr/lib/libX11.so",
|
||||
"role" : "libraries"
|
||||
}
|
||||
],
|
||||
"language" : "C"
|
||||
},
|
||||
"name" : "joysticks",
|
||||
"nameOnDisk" : "joysticks",
|
||||
"paths" :
|
||||
{
|
||||
"build" : "libs/glfw/glfw-3.3.8/tests",
|
||||
"source" : "libs/glfw/glfw-3.3.8/tests"
|
||||
},
|
||||
"sourceGroups" :
|
||||
[
|
||||
{
|
||||
"name" : "Source Files",
|
||||
"sourceIndexes" :
|
||||
[
|
||||
0,
|
||||
2
|
||||
]
|
||||
},
|
||||
{
|
||||
"name" : "Header Files",
|
||||
"sourceIndexes" :
|
||||
[
|
||||
1
|
||||
]
|
||||
}
|
||||
],
|
||||
"sources" :
|
||||
[
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"compileGroupIndex" : 0,
|
||||
"path" : "libs/glfw/glfw-3.3.8/tests/joysticks.c",
|
||||
"sourceGroupIndex" : 0
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"path" : "libs/glfw/glfw-3.3.8/deps/glad/gl.h",
|
||||
"sourceGroupIndex" : 1
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"compileGroupIndex" : 0,
|
||||
"path" : "libs/glfw/glfw-3.3.8/deps/glad_gl.c",
|
||||
"sourceGroupIndex" : 0
|
||||
}
|
||||
],
|
||||
"type" : "EXECUTABLE"
|
||||
}
|
|
@ -0,0 +1,201 @@
|
|||
{
|
||||
"artifacts" :
|
||||
[
|
||||
{
|
||||
"path" : "libs/glfw/glfw-3.3.8/tests/monitors"
|
||||
}
|
||||
],
|
||||
"backtrace" : 1,
|
||||
"backtraceGraph" :
|
||||
{
|
||||
"commands" :
|
||||
[
|
||||
"add_executable",
|
||||
"target_link_libraries",
|
||||
"include_directories"
|
||||
],
|
||||
"files" :
|
||||
[
|
||||
"libs/glfw/glfw-3.3.8/tests/CMakeLists.txt",
|
||||
"libs/glfw/glfw-3.3.8/src/CMakeLists.txt"
|
||||
],
|
||||
"nodes" :
|
||||
[
|
||||
{
|
||||
"file" : 0
|
||||
},
|
||||
{
|
||||
"command" : 0,
|
||||
"file" : 0,
|
||||
"line" : 40,
|
||||
"parent" : 0
|
||||
},
|
||||
{
|
||||
"file" : 1
|
||||
},
|
||||
{
|
||||
"command" : 1,
|
||||
"file" : 1,
|
||||
"line" : 119,
|
||||
"parent" : 2
|
||||
},
|
||||
{
|
||||
"command" : 2,
|
||||
"file" : 0,
|
||||
"line" : 4,
|
||||
"parent" : 0
|
||||
}
|
||||
]
|
||||
},
|
||||
"compileGroups" :
|
||||
[
|
||||
{
|
||||
"compileCommandFragments" :
|
||||
[
|
||||
{
|
||||
"fragment" : "-g -std=gnu99 -fdiagnostics-color=always"
|
||||
}
|
||||
],
|
||||
"includes" :
|
||||
[
|
||||
{
|
||||
"backtrace" : 4,
|
||||
"path" : "/home/brett/git/parksandrec/libs/glfw/glfw-3.3.8/deps"
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"path" : "/home/brett/git/parksandrec/libs/glfw/glfw-3.3.8/include"
|
||||
}
|
||||
],
|
||||
"language" : "C",
|
||||
"languageStandard" :
|
||||
{
|
||||
"backtraces" :
|
||||
[
|
||||
1
|
||||
],
|
||||
"standard" : "99"
|
||||
},
|
||||
"sourceIndexes" :
|
||||
[
|
||||
0,
|
||||
2,
|
||||
4
|
||||
]
|
||||
}
|
||||
],
|
||||
"dependencies" :
|
||||
[
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"id" : "glfw::@7dc16bda365e0ec860ed"
|
||||
}
|
||||
],
|
||||
"folder" :
|
||||
{
|
||||
"name" : "GLFW3/Tests"
|
||||
},
|
||||
"id" : "monitors::@77cfdd67c43044262fc4",
|
||||
"link" :
|
||||
{
|
||||
"commandFragments" :
|
||||
[
|
||||
{
|
||||
"fragment" : "-g",
|
||||
"role" : "flags"
|
||||
},
|
||||
{
|
||||
"fragment" : "",
|
||||
"role" : "flags"
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"fragment" : "libs/glfw/glfw-3.3.8/src/libglfw3.a",
|
||||
"role" : "libraries"
|
||||
},
|
||||
{
|
||||
"fragment" : "-lm",
|
||||
"role" : "libraries"
|
||||
},
|
||||
{
|
||||
"backtrace" : 3,
|
||||
"fragment" : "/usr/lib/librt.a",
|
||||
"role" : "libraries"
|
||||
},
|
||||
{
|
||||
"fragment" : "-lm",
|
||||
"role" : "libraries"
|
||||
},
|
||||
{
|
||||
"backtrace" : 3,
|
||||
"fragment" : "-ldl",
|
||||
"role" : "libraries"
|
||||
},
|
||||
{
|
||||
"backtrace" : 3,
|
||||
"fragment" : "/usr/lib/libX11.so",
|
||||
"role" : "libraries"
|
||||
}
|
||||
],
|
||||
"language" : "C"
|
||||
},
|
||||
"name" : "monitors",
|
||||
"nameOnDisk" : "monitors",
|
||||
"paths" :
|
||||
{
|
||||
"build" : "libs/glfw/glfw-3.3.8/tests",
|
||||
"source" : "libs/glfw/glfw-3.3.8/tests"
|
||||
},
|
||||
"sourceGroups" :
|
||||
[
|
||||
{
|
||||
"name" : "Source Files",
|
||||
"sourceIndexes" :
|
||||
[
|
||||
0,
|
||||
2,
|
||||
4
|
||||
]
|
||||
},
|
||||
{
|
||||
"name" : "Header Files",
|
||||
"sourceIndexes" :
|
||||
[
|
||||
1,
|
||||
3
|
||||
]
|
||||
}
|
||||
],
|
||||
"sources" :
|
||||
[
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"compileGroupIndex" : 0,
|
||||
"path" : "libs/glfw/glfw-3.3.8/tests/monitors.c",
|
||||
"sourceGroupIndex" : 0
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"path" : "libs/glfw/glfw-3.3.8/deps/getopt.h",
|
||||
"sourceGroupIndex" : 1
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"compileGroupIndex" : 0,
|
||||
"path" : "libs/glfw/glfw-3.3.8/deps/getopt.c",
|
||||
"sourceGroupIndex" : 0
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"path" : "libs/glfw/glfw-3.3.8/deps/glad/gl.h",
|
||||
"sourceGroupIndex" : 1
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"compileGroupIndex" : 0,
|
||||
"path" : "libs/glfw/glfw-3.3.8/deps/glad_gl.c",
|
||||
"sourceGroupIndex" : 0
|
||||
}
|
||||
],
|
||||
"type" : "EXECUTABLE"
|
||||
}
|
|
@ -0,0 +1,201 @@
|
|||
{
|
||||
"artifacts" :
|
||||
[
|
||||
{
|
||||
"path" : "libs/glfw/glfw-3.3.8/tests/msaa"
|
||||
}
|
||||
],
|
||||
"backtrace" : 1,
|
||||
"backtraceGraph" :
|
||||
{
|
||||
"commands" :
|
||||
[
|
||||
"add_executable",
|
||||
"target_link_libraries",
|
||||
"include_directories"
|
||||
],
|
||||
"files" :
|
||||
[
|
||||
"libs/glfw/glfw-3.3.8/tests/CMakeLists.txt",
|
||||
"libs/glfw/glfw-3.3.8/src/CMakeLists.txt"
|
||||
],
|
||||
"nodes" :
|
||||
[
|
||||
{
|
||||
"file" : 0
|
||||
},
|
||||
{
|
||||
"command" : 0,
|
||||
"file" : 0,
|
||||
"line" : 37,
|
||||
"parent" : 0
|
||||
},
|
||||
{
|
||||
"file" : 1
|
||||
},
|
||||
{
|
||||
"command" : 1,
|
||||
"file" : 1,
|
||||
"line" : 119,
|
||||
"parent" : 2
|
||||
},
|
||||
{
|
||||
"command" : 2,
|
||||
"file" : 0,
|
||||
"line" : 4,
|
||||
"parent" : 0
|
||||
}
|
||||
]
|
||||
},
|
||||
"compileGroups" :
|
||||
[
|
||||
{
|
||||
"compileCommandFragments" :
|
||||
[
|
||||
{
|
||||
"fragment" : "-g -std=gnu99 -fdiagnostics-color=always"
|
||||
}
|
||||
],
|
||||
"includes" :
|
||||
[
|
||||
{
|
||||
"backtrace" : 4,
|
||||
"path" : "/home/brett/git/parksandrec/libs/glfw/glfw-3.3.8/deps"
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"path" : "/home/brett/git/parksandrec/libs/glfw/glfw-3.3.8/include"
|
||||
}
|
||||
],
|
||||
"language" : "C",
|
||||
"languageStandard" :
|
||||
{
|
||||
"backtraces" :
|
||||
[
|
||||
1
|
||||
],
|
||||
"standard" : "99"
|
||||
},
|
||||
"sourceIndexes" :
|
||||
[
|
||||
0,
|
||||
2,
|
||||
4
|
||||
]
|
||||
}
|
||||
],
|
||||
"dependencies" :
|
||||
[
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"id" : "glfw::@7dc16bda365e0ec860ed"
|
||||
}
|
||||
],
|
||||
"folder" :
|
||||
{
|
||||
"name" : "GLFW3/Tests"
|
||||
},
|
||||
"id" : "msaa::@77cfdd67c43044262fc4",
|
||||
"link" :
|
||||
{
|
||||
"commandFragments" :
|
||||
[
|
||||
{
|
||||
"fragment" : "-g",
|
||||
"role" : "flags"
|
||||
},
|
||||
{
|
||||
"fragment" : "",
|
||||
"role" : "flags"
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"fragment" : "libs/glfw/glfw-3.3.8/src/libglfw3.a",
|
||||
"role" : "libraries"
|
||||
},
|
||||
{
|
||||
"fragment" : "-lm",
|
||||
"role" : "libraries"
|
||||
},
|
||||
{
|
||||
"backtrace" : 3,
|
||||
"fragment" : "/usr/lib/librt.a",
|
||||
"role" : "libraries"
|
||||
},
|
||||
{
|
||||
"fragment" : "-lm",
|
||||
"role" : "libraries"
|
||||
},
|
||||
{
|
||||
"backtrace" : 3,
|
||||
"fragment" : "-ldl",
|
||||
"role" : "libraries"
|
||||
},
|
||||
{
|
||||
"backtrace" : 3,
|
||||
"fragment" : "/usr/lib/libX11.so",
|
||||
"role" : "libraries"
|
||||
}
|
||||
],
|
||||
"language" : "C"
|
||||
},
|
||||
"name" : "msaa",
|
||||
"nameOnDisk" : "msaa",
|
||||
"paths" :
|
||||
{
|
||||
"build" : "libs/glfw/glfw-3.3.8/tests",
|
||||
"source" : "libs/glfw/glfw-3.3.8/tests"
|
||||
},
|
||||
"sourceGroups" :
|
||||
[
|
||||
{
|
||||
"name" : "Source Files",
|
||||
"sourceIndexes" :
|
||||
[
|
||||
0,
|
||||
2,
|
||||
4
|
||||
]
|
||||
},
|
||||
{
|
||||
"name" : "Header Files",
|
||||
"sourceIndexes" :
|
||||
[
|
||||
1,
|
||||
3
|
||||
]
|
||||
}
|
||||
],
|
||||
"sources" :
|
||||
[
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"compileGroupIndex" : 0,
|
||||
"path" : "libs/glfw/glfw-3.3.8/tests/msaa.c",
|
||||
"sourceGroupIndex" : 0
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"path" : "libs/glfw/glfw-3.3.8/deps/getopt.h",
|
||||
"sourceGroupIndex" : 1
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"compileGroupIndex" : 0,
|
||||
"path" : "libs/glfw/glfw-3.3.8/deps/getopt.c",
|
||||
"sourceGroupIndex" : 0
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"path" : "libs/glfw/glfw-3.3.8/deps/glad/gl.h",
|
||||
"sourceGroupIndex" : 1
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"compileGroupIndex" : 0,
|
||||
"path" : "libs/glfw/glfw-3.3.8/deps/glad_gl.c",
|
||||
"sourceGroupIndex" : 0
|
||||
}
|
||||
],
|
||||
"type" : "EXECUTABLE"
|
||||
}
|
|
@ -0,0 +1,187 @@
|
|||
{
|
||||
"artifacts" :
|
||||
[
|
||||
{
|
||||
"path" : "libs/glfw/glfw-3.3.8/examples/offscreen"
|
||||
}
|
||||
],
|
||||
"backtrace" : 1,
|
||||
"backtraceGraph" :
|
||||
{
|
||||
"commands" :
|
||||
[
|
||||
"add_executable",
|
||||
"target_link_libraries",
|
||||
"include_directories"
|
||||
],
|
||||
"files" :
|
||||
[
|
||||
"libs/glfw/glfw-3.3.8/examples/CMakeLists.txt",
|
||||
"libs/glfw/glfw-3.3.8/src/CMakeLists.txt"
|
||||
],
|
||||
"nodes" :
|
||||
[
|
||||
{
|
||||
"file" : 0
|
||||
},
|
||||
{
|
||||
"command" : 0,
|
||||
"file" : 0,
|
||||
"line" : 42,
|
||||
"parent" : 0
|
||||
},
|
||||
{
|
||||
"file" : 1
|
||||
},
|
||||
{
|
||||
"command" : 1,
|
||||
"file" : 1,
|
||||
"line" : 119,
|
||||
"parent" : 2
|
||||
},
|
||||
{
|
||||
"command" : 2,
|
||||
"file" : 0,
|
||||
"line" : 4,
|
||||
"parent" : 0
|
||||
}
|
||||
]
|
||||
},
|
||||
"compileGroups" :
|
||||
[
|
||||
{
|
||||
"compileCommandFragments" :
|
||||
[
|
||||
{
|
||||
"fragment" : "-g -std=gnu99 -fdiagnostics-color=always"
|
||||
}
|
||||
],
|
||||
"includes" :
|
||||
[
|
||||
{
|
||||
"backtrace" : 4,
|
||||
"path" : "/home/brett/git/parksandrec/libs/glfw/glfw-3.3.8/deps"
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"path" : "/home/brett/git/parksandrec/libs/glfw/glfw-3.3.8/include"
|
||||
}
|
||||
],
|
||||
"language" : "C",
|
||||
"languageStandard" :
|
||||
{
|
||||
"backtraces" :
|
||||
[
|
||||
1
|
||||
],
|
||||
"standard" : "99"
|
||||
},
|
||||
"sourceIndexes" :
|
||||
[
|
||||
0,
|
||||
2
|
||||
]
|
||||
}
|
||||
],
|
||||
"dependencies" :
|
||||
[
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"id" : "glfw::@7dc16bda365e0ec860ed"
|
||||
}
|
||||
],
|
||||
"folder" :
|
||||
{
|
||||
"name" : "GLFW3/Examples"
|
||||
},
|
||||
"id" : "offscreen::@555eb4510d21f320f20b",
|
||||
"link" :
|
||||
{
|
||||
"commandFragments" :
|
||||
[
|
||||
{
|
||||
"fragment" : "-g",
|
||||
"role" : "flags"
|
||||
},
|
||||
{
|
||||
"fragment" : "",
|
||||
"role" : "flags"
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"fragment" : "libs/glfw/glfw-3.3.8/src/libglfw3.a",
|
||||
"role" : "libraries"
|
||||
},
|
||||
{
|
||||
"fragment" : "-lm",
|
||||
"role" : "libraries"
|
||||
},
|
||||
{
|
||||
"backtrace" : 3,
|
||||
"fragment" : "/usr/lib/librt.a",
|
||||
"role" : "libraries"
|
||||
},
|
||||
{
|
||||
"fragment" : "-lm",
|
||||
"role" : "libraries"
|
||||
},
|
||||
{
|
||||
"backtrace" : 3,
|
||||
"fragment" : "-ldl",
|
||||
"role" : "libraries"
|
||||
},
|
||||
{
|
||||
"backtrace" : 3,
|
||||
"fragment" : "/usr/lib/libX11.so",
|
||||
"role" : "libraries"
|
||||
}
|
||||
],
|
||||
"language" : "C"
|
||||
},
|
||||
"name" : "offscreen",
|
||||
"nameOnDisk" : "offscreen",
|
||||
"paths" :
|
||||
{
|
||||
"build" : "libs/glfw/glfw-3.3.8/examples",
|
||||
"source" : "libs/glfw/glfw-3.3.8/examples"
|
||||
},
|
||||
"sourceGroups" :
|
||||
[
|
||||
{
|
||||
"name" : "Source Files",
|
||||
"sourceIndexes" :
|
||||
[
|
||||
0,
|
||||
2
|
||||
]
|
||||
},
|
||||
{
|
||||
"name" : "Header Files",
|
||||
"sourceIndexes" :
|
||||
[
|
||||
1
|
||||
]
|
||||
}
|
||||
],
|
||||
"sources" :
|
||||
[
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"compileGroupIndex" : 0,
|
||||
"path" : "libs/glfw/glfw-3.3.8/examples/offscreen.c",
|
||||
"sourceGroupIndex" : 0
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"path" : "libs/glfw/glfw-3.3.8/deps/glad/gl.h",
|
||||
"sourceGroupIndex" : 1
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"compileGroupIndex" : 0,
|
||||
"path" : "libs/glfw/glfw-3.3.8/deps/glad_gl.c",
|
||||
"sourceGroupIndex" : 0
|
||||
}
|
||||
],
|
||||
"type" : "EXECUTABLE"
|
||||
}
|
|
@ -0,0 +1,187 @@
|
|||
{
|
||||
"artifacts" :
|
||||
[
|
||||
{
|
||||
"path" : "libs/glfw/glfw-3.3.8/tests/opacity"
|
||||
}
|
||||
],
|
||||
"backtrace" : 1,
|
||||
"backtraceGraph" :
|
||||
{
|
||||
"commands" :
|
||||
[
|
||||
"add_executable",
|
||||
"target_link_libraries",
|
||||
"include_directories"
|
||||
],
|
||||
"files" :
|
||||
[
|
||||
"libs/glfw/glfw-3.3.8/tests/CMakeLists.txt",
|
||||
"libs/glfw/glfw-3.3.8/src/CMakeLists.txt"
|
||||
],
|
||||
"nodes" :
|
||||
[
|
||||
{
|
||||
"file" : 0
|
||||
},
|
||||
{
|
||||
"command" : 0,
|
||||
"file" : 0,
|
||||
"line" : 49,
|
||||
"parent" : 0
|
||||
},
|
||||
{
|
||||
"file" : 1
|
||||
},
|
||||
{
|
||||
"command" : 1,
|
||||
"file" : 1,
|
||||
"line" : 119,
|
||||
"parent" : 2
|
||||
},
|
||||
{
|
||||
"command" : 2,
|
||||
"file" : 0,
|
||||
"line" : 4,
|
||||
"parent" : 0
|
||||
}
|
||||
]
|
||||
},
|
||||
"compileGroups" :
|
||||
[
|
||||
{
|
||||
"compileCommandFragments" :
|
||||
[
|
||||
{
|
||||
"fragment" : "-g -std=gnu99 -fdiagnostics-color=always"
|
||||
}
|
||||
],
|
||||
"includes" :
|
||||
[
|
||||
{
|
||||
"backtrace" : 4,
|
||||
"path" : "/home/brett/git/parksandrec/libs/glfw/glfw-3.3.8/deps"
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"path" : "/home/brett/git/parksandrec/libs/glfw/glfw-3.3.8/include"
|
||||
}
|
||||
],
|
||||
"language" : "C",
|
||||
"languageStandard" :
|
||||
{
|
||||
"backtraces" :
|
||||
[
|
||||
1
|
||||
],
|
||||
"standard" : "99"
|
||||
},
|
||||
"sourceIndexes" :
|
||||
[
|
||||
0,
|
||||
2
|
||||
]
|
||||
}
|
||||
],
|
||||
"dependencies" :
|
||||
[
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"id" : "glfw::@7dc16bda365e0ec860ed"
|
||||
}
|
||||
],
|
||||
"folder" :
|
||||
{
|
||||
"name" : "GLFW3/Tests"
|
||||
},
|
||||
"id" : "opacity::@77cfdd67c43044262fc4",
|
||||
"link" :
|
||||
{
|
||||
"commandFragments" :
|
||||
[
|
||||
{
|
||||
"fragment" : "-g",
|
||||
"role" : "flags"
|
||||
},
|
||||
{
|
||||
"fragment" : "",
|
||||
"role" : "flags"
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"fragment" : "libs/glfw/glfw-3.3.8/src/libglfw3.a",
|
||||
"role" : "libraries"
|
||||
},
|
||||
{
|
||||
"fragment" : "-lm",
|
||||
"role" : "libraries"
|
||||
},
|
||||
{
|
||||
"backtrace" : 3,
|
||||
"fragment" : "/usr/lib/librt.a",
|
||||
"role" : "libraries"
|
||||
},
|
||||
{
|
||||
"fragment" : "-lm",
|
||||
"role" : "libraries"
|
||||
},
|
||||
{
|
||||
"backtrace" : 3,
|
||||
"fragment" : "-ldl",
|
||||
"role" : "libraries"
|
||||
},
|
||||
{
|
||||
"backtrace" : 3,
|
||||
"fragment" : "/usr/lib/libX11.so",
|
||||
"role" : "libraries"
|
||||
}
|
||||
],
|
||||
"language" : "C"
|
||||
},
|
||||
"name" : "opacity",
|
||||
"nameOnDisk" : "opacity",
|
||||
"paths" :
|
||||
{
|
||||
"build" : "libs/glfw/glfw-3.3.8/tests",
|
||||
"source" : "libs/glfw/glfw-3.3.8/tests"
|
||||
},
|
||||
"sourceGroups" :
|
||||
[
|
||||
{
|
||||
"name" : "Source Files",
|
||||
"sourceIndexes" :
|
||||
[
|
||||
0,
|
||||
2
|
||||
]
|
||||
},
|
||||
{
|
||||
"name" : "Header Files",
|
||||
"sourceIndexes" :
|
||||
[
|
||||
1
|
||||
]
|
||||
}
|
||||
],
|
||||
"sources" :
|
||||
[
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"compileGroupIndex" : 0,
|
||||
"path" : "libs/glfw/glfw-3.3.8/tests/opacity.c",
|
||||
"sourceGroupIndex" : 0
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"path" : "libs/glfw/glfw-3.3.8/deps/glad/gl.h",
|
||||
"sourceGroupIndex" : 1
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"compileGroupIndex" : 0,
|
||||
"path" : "libs/glfw/glfw-3.3.8/deps/glad_gl.c",
|
||||
"sourceGroupIndex" : 0
|
||||
}
|
||||
],
|
||||
"type" : "EXECUTABLE"
|
||||
}
|
|
@ -0,0 +1,440 @@
|
|||
{
|
||||
"artifacts" :
|
||||
[
|
||||
{
|
||||
"path" : "parksnrec"
|
||||
}
|
||||
],
|
||||
"backtrace" : 1,
|
||||
"backtraceGraph" :
|
||||
{
|
||||
"commands" :
|
||||
[
|
||||
"add_executable",
|
||||
"target_link_options",
|
||||
"target_link_libraries",
|
||||
"TARGET_LINK_LIBRARIES",
|
||||
"target_compile_options",
|
||||
"include_directories"
|
||||
],
|
||||
"files" :
|
||||
[
|
||||
"CMakeLists.txt",
|
||||
"libs/glfw/glfw-3.3.8/src/CMakeLists.txt",
|
||||
"libs/BLT/CMakeLists.txt",
|
||||
"libs/assimp/code/CMakeLists.txt"
|
||||
],
|
||||
"nodes" :
|
||||
[
|
||||
{
|
||||
"file" : 0
|
||||
},
|
||||
{
|
||||
"command" : 0,
|
||||
"file" : 0,
|
||||
"line" : 30,
|
||||
"parent" : 0
|
||||
},
|
||||
{
|
||||
"command" : 1,
|
||||
"file" : 0,
|
||||
"line" : 40,
|
||||
"parent" : 0
|
||||
},
|
||||
{
|
||||
"command" : 1,
|
||||
"file" : 0,
|
||||
"line" : 45,
|
||||
"parent" : 0
|
||||
},
|
||||
{
|
||||
"command" : 2,
|
||||
"file" : 0,
|
||||
"line" : 32,
|
||||
"parent" : 0
|
||||
},
|
||||
{
|
||||
"command" : 2,
|
||||
"file" : 0,
|
||||
"line" : 33,
|
||||
"parent" : 0
|
||||
},
|
||||
{
|
||||
"command" : 2,
|
||||
"file" : 0,
|
||||
"line" : 34,
|
||||
"parent" : 0
|
||||
},
|
||||
{
|
||||
"command" : 2,
|
||||
"file" : 0,
|
||||
"line" : 35,
|
||||
"parent" : 0
|
||||
},
|
||||
{
|
||||
"file" : 1
|
||||
},
|
||||
{
|
||||
"command" : 2,
|
||||
"file" : 1,
|
||||
"line" : 119,
|
||||
"parent" : 8
|
||||
},
|
||||
{
|
||||
"file" : 2
|
||||
},
|
||||
{
|
||||
"command" : 2,
|
||||
"file" : 2,
|
||||
"line" : 54,
|
||||
"parent" : 10
|
||||
},
|
||||
{
|
||||
"file" : 3
|
||||
},
|
||||
{
|
||||
"command" : 3,
|
||||
"file" : 3,
|
||||
"line" : 1289,
|
||||
"parent" : 12
|
||||
},
|
||||
{
|
||||
"command" : 3,
|
||||
"file" : 3,
|
||||
"line" : 1392,
|
||||
"parent" : 12
|
||||
},
|
||||
{
|
||||
"command" : 4,
|
||||
"file" : 0,
|
||||
"line" : 36,
|
||||
"parent" : 0
|
||||
},
|
||||
{
|
||||
"command" : 4,
|
||||
"file" : 0,
|
||||
"line" : 39,
|
||||
"parent" : 0
|
||||
},
|
||||
{
|
||||
"command" : 4,
|
||||
"file" : 0,
|
||||
"line" : 44,
|
||||
"parent" : 0
|
||||
},
|
||||
{
|
||||
"command" : 5,
|
||||
"file" : 0,
|
||||
"line" : 26,
|
||||
"parent" : 0
|
||||
}
|
||||
]
|
||||
},
|
||||
"compileGroups" :
|
||||
[
|
||||
{
|
||||
"compileCommandFragments" :
|
||||
[
|
||||
{
|
||||
"fragment" : "-g -std=gnu++17 -fdiagnostics-color=always"
|
||||
},
|
||||
{
|
||||
"backtrace" : 15,
|
||||
"fragment" : "-Wall"
|
||||
},
|
||||
{
|
||||
"backtrace" : 15,
|
||||
"fragment" : "-Wextra"
|
||||
},
|
||||
{
|
||||
"backtrace" : 15,
|
||||
"fragment" : "-Wpedantic"
|
||||
},
|
||||
{
|
||||
"backtrace" : 16,
|
||||
"fragment" : "-fsanitize=address"
|
||||
},
|
||||
{
|
||||
"backtrace" : 17,
|
||||
"fragment" : "-fsanitize=undefined"
|
||||
}
|
||||
],
|
||||
"includes" :
|
||||
[
|
||||
{
|
||||
"backtrace" : 18,
|
||||
"path" : "/home/brett/git/parksandrec/include"
|
||||
},
|
||||
{
|
||||
"backtrace" : 4,
|
||||
"path" : "/home/brett/git/parksandrec/libs/glfw/glfw-3.3.8/include"
|
||||
},
|
||||
{
|
||||
"backtrace" : 5,
|
||||
"path" : "/home/brett/git/parksandrec/libs/BLT/include"
|
||||
},
|
||||
{
|
||||
"backtrace" : 5,
|
||||
"path" : "/home/brett/git/parksandrec/cmake-build-debug-sanitizer/libs/BLT/config"
|
||||
},
|
||||
{
|
||||
"backtrace" : 7,
|
||||
"path" : "/home/brett/git/parksandrec/libs/assimp/code/../include"
|
||||
},
|
||||
{
|
||||
"backtrace" : 7,
|
||||
"path" : "/home/brett/git/parksandrec/cmake-build-debug-sanitizer/libs/assimp/code/../include"
|
||||
}
|
||||
],
|
||||
"language" : "CXX",
|
||||
"languageStandard" :
|
||||
{
|
||||
"backtraces" :
|
||||
[
|
||||
1
|
||||
],
|
||||
"standard" : "17"
|
||||
},
|
||||
"sourceIndexes" :
|
||||
[
|
||||
0,
|
||||
1,
|
||||
2,
|
||||
3,
|
||||
4,
|
||||
5,
|
||||
6,
|
||||
7,
|
||||
8,
|
||||
9,
|
||||
10,
|
||||
11,
|
||||
12,
|
||||
13
|
||||
]
|
||||
}
|
||||
],
|
||||
"dependencies" :
|
||||
[
|
||||
{
|
||||
"backtrace" : 4,
|
||||
"id" : "glfw::@7dc16bda365e0ec860ed"
|
||||
},
|
||||
{
|
||||
"backtrace" : 5,
|
||||
"id" : "BLT::@15de44d4528f33befea6"
|
||||
},
|
||||
{
|
||||
"backtrace" : 7,
|
||||
"id" : "zlibstatic::@142f1425b4d57e544353"
|
||||
},
|
||||
{
|
||||
"backtrace" : 7,
|
||||
"id" : "assimp::@c18b53e73a5197b875a6"
|
||||
}
|
||||
],
|
||||
"id" : "parksnrec::@6890427a1f51a3e7e1df",
|
||||
"link" :
|
||||
{
|
||||
"commandFragments" :
|
||||
[
|
||||
{
|
||||
"fragment" : "-g",
|
||||
"role" : "flags"
|
||||
},
|
||||
{
|
||||
"fragment" : "-rdynamic",
|
||||
"role" : "flags"
|
||||
},
|
||||
{
|
||||
"backtrace" : 2,
|
||||
"fragment" : "-fsanitize=address",
|
||||
"role" : "flags"
|
||||
},
|
||||
{
|
||||
"backtrace" : 3,
|
||||
"fragment" : "-fsanitize=undefined",
|
||||
"role" : "flags"
|
||||
},
|
||||
{
|
||||
"backtrace" : 4,
|
||||
"fragment" : "libs/glfw/glfw-3.3.8/src/libglfw3.a",
|
||||
"role" : "libraries"
|
||||
},
|
||||
{
|
||||
"backtrace" : 5,
|
||||
"fragment" : "libs/BLT/libBLT.a",
|
||||
"role" : "libraries"
|
||||
},
|
||||
{
|
||||
"backtrace" : 6,
|
||||
"fragment" : "-lOpenGL",
|
||||
"role" : "libraries"
|
||||
},
|
||||
{
|
||||
"backtrace" : 7,
|
||||
"fragment" : "libs/assimp/lib/libassimp.a",
|
||||
"role" : "libraries"
|
||||
},
|
||||
{
|
||||
"fragment" : "-Wl,-Bstatic",
|
||||
"role" : "libraries"
|
||||
},
|
||||
{
|
||||
"fragment" : "-lrt",
|
||||
"role" : "libraries"
|
||||
},
|
||||
{
|
||||
"fragment" : "-Wl,-Bdynamic",
|
||||
"role" : "libraries"
|
||||
},
|
||||
{
|
||||
"fragment" : "-lm",
|
||||
"role" : "libraries"
|
||||
},
|
||||
{
|
||||
"backtrace" : 9,
|
||||
"fragment" : "-ldl",
|
||||
"role" : "libraries"
|
||||
},
|
||||
{
|
||||
"fragment" : "-lX11",
|
||||
"role" : "libraries"
|
||||
},
|
||||
{
|
||||
"backtrace" : 11,
|
||||
"fragment" : "/usr/lib/libz.so",
|
||||
"role" : "libraries"
|
||||
},
|
||||
{
|
||||
"backtrace" : 13,
|
||||
"fragment" : "libs/assimp/contrib/zlib/libzlibstatic.a",
|
||||
"role" : "libraries"
|
||||
},
|
||||
{
|
||||
"backtrace" : 14,
|
||||
"fragment" : "-lrt",
|
||||
"role" : "libraries"
|
||||
}
|
||||
],
|
||||
"language" : "CXX"
|
||||
},
|
||||
"name" : "parksnrec",
|
||||
"nameOnDisk" : "parksnrec",
|
||||
"paths" :
|
||||
{
|
||||
"build" : ".",
|
||||
"source" : "."
|
||||
},
|
||||
"sourceGroups" :
|
||||
[
|
||||
{
|
||||
"name" : "Source Files",
|
||||
"sourceIndexes" :
|
||||
[
|
||||
0,
|
||||
1,
|
||||
2,
|
||||
3,
|
||||
4,
|
||||
5,
|
||||
6,
|
||||
7,
|
||||
8,
|
||||
9,
|
||||
10,
|
||||
11,
|
||||
12,
|
||||
13
|
||||
]
|
||||
}
|
||||
],
|
||||
"sources" :
|
||||
[
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"compileGroupIndex" : 0,
|
||||
"path" : "src/imgui/imgui.cpp",
|
||||
"sourceGroupIndex" : 0
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"compileGroupIndex" : 0,
|
||||
"path" : "src/imgui/imgui_demo.cpp",
|
||||
"sourceGroupIndex" : 0
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"compileGroupIndex" : 0,
|
||||
"path" : "src/imgui/imgui_draw.cpp",
|
||||
"sourceGroupIndex" : 0
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"compileGroupIndex" : 0,
|
||||
"path" : "src/imgui/imgui_impl_glfw.cpp",
|
||||
"sourceGroupIndex" : 0
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"compileGroupIndex" : 0,
|
||||
"path" : "src/imgui/imgui_impl_opengl3.cpp",
|
||||
"sourceGroupIndex" : 0
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"compileGroupIndex" : 0,
|
||||
"path" : "src/imgui/imgui_tables.cpp",
|
||||
"sourceGroupIndex" : 0
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"compileGroupIndex" : 0,
|
||||
"path" : "src/imgui/imgui_widgets.cpp",
|
||||
"sourceGroupIndex" : 0
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"compileGroupIndex" : 0,
|
||||
"path" : "src/parks/app.cpp",
|
||||
"sourceGroupIndex" : 0
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"compileGroupIndex" : 0,
|
||||
"path" : "src/parks/main.cpp",
|
||||
"sourceGroupIndex" : 0
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"compileGroupIndex" : 0,
|
||||
"path" : "src/parks/renderer/OpenGL.cpp",
|
||||
"sourceGroupIndex" : 0
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"compileGroupIndex" : 0,
|
||||
"path" : "src/parks/renderer/engine.cpp",
|
||||
"sourceGroupIndex" : 0
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"compileGroupIndex" : 0,
|
||||
"path" : "src/parks/renderer/player.cpp",
|
||||
"sourceGroupIndex" : 0
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"compileGroupIndex" : 0,
|
||||
"path" : "src/parks/renderer/resources.cpp",
|
||||
"sourceGroupIndex" : 0
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"compileGroupIndex" : 0,
|
||||
"path" : "src/parks/window.cpp",
|
||||
"sourceGroupIndex" : 0
|
||||
}
|
||||
],
|
||||
"type" : "EXECUTABLE"
|
||||
}
|
|
@ -0,0 +1,217 @@
|
|||
{
|
||||
"artifacts" :
|
||||
[
|
||||
{
|
||||
"path" : "libs/glfw/glfw-3.3.8/examples/particles"
|
||||
}
|
||||
],
|
||||
"backtrace" : 1,
|
||||
"backtraceGraph" :
|
||||
{
|
||||
"commands" :
|
||||
[
|
||||
"add_executable",
|
||||
"target_link_libraries",
|
||||
"include_directories"
|
||||
],
|
||||
"files" :
|
||||
[
|
||||
"libs/glfw/glfw-3.3.8/examples/CMakeLists.txt",
|
||||
"libs/glfw/glfw-3.3.8/src/CMakeLists.txt"
|
||||
],
|
||||
"nodes" :
|
||||
[
|
||||
{
|
||||
"file" : 0
|
||||
},
|
||||
{
|
||||
"command" : 0,
|
||||
"file" : 0,
|
||||
"line" : 43,
|
||||
"parent" : 0
|
||||
},
|
||||
{
|
||||
"command" : 1,
|
||||
"file" : 0,
|
||||
"line" : 51,
|
||||
"parent" : 0
|
||||
},
|
||||
{
|
||||
"file" : 1
|
||||
},
|
||||
{
|
||||
"command" : 1,
|
||||
"file" : 1,
|
||||
"line" : 119,
|
||||
"parent" : 3
|
||||
},
|
||||
{
|
||||
"command" : 2,
|
||||
"file" : 0,
|
||||
"line" : 4,
|
||||
"parent" : 0
|
||||
}
|
||||
]
|
||||
},
|
||||
"compileGroups" :
|
||||
[
|
||||
{
|
||||
"compileCommandFragments" :
|
||||
[
|
||||
{
|
||||
"fragment" : "-g -std=gnu99 -fdiagnostics-color=always"
|
||||
}
|
||||
],
|
||||
"includes" :
|
||||
[
|
||||
{
|
||||
"backtrace" : 5,
|
||||
"path" : "/home/brett/git/parksandrec/libs/glfw/glfw-3.3.8/deps"
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"path" : "/home/brett/git/parksandrec/libs/glfw/glfw-3.3.8/include"
|
||||
}
|
||||
],
|
||||
"language" : "C",
|
||||
"languageStandard" :
|
||||
{
|
||||
"backtraces" :
|
||||
[
|
||||
1
|
||||
],
|
||||
"standard" : "99"
|
||||
},
|
||||
"sourceIndexes" :
|
||||
[
|
||||
0,
|
||||
2,
|
||||
4,
|
||||
6
|
||||
]
|
||||
}
|
||||
],
|
||||
"dependencies" :
|
||||
[
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"id" : "glfw::@7dc16bda365e0ec860ed"
|
||||
}
|
||||
],
|
||||
"folder" :
|
||||
{
|
||||
"name" : "GLFW3/Examples"
|
||||
},
|
||||
"id" : "particles::@555eb4510d21f320f20b",
|
||||
"link" :
|
||||
{
|
||||
"commandFragments" :
|
||||
[
|
||||
{
|
||||
"fragment" : "-g",
|
||||
"role" : "flags"
|
||||
},
|
||||
{
|
||||
"fragment" : "",
|
||||
"role" : "flags"
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"fragment" : "libs/glfw/glfw-3.3.8/src/libglfw3.a",
|
||||
"role" : "libraries"
|
||||
},
|
||||
{
|
||||
"fragment" : "-lm",
|
||||
"role" : "libraries"
|
||||
},
|
||||
{
|
||||
"backtrace" : 2,
|
||||
"fragment" : "/usr/lib/librt.a",
|
||||
"role" : "libraries"
|
||||
},
|
||||
{
|
||||
"backtrace" : 4,
|
||||
"fragment" : "-ldl",
|
||||
"role" : "libraries"
|
||||
},
|
||||
{
|
||||
"backtrace" : 4,
|
||||
"fragment" : "/usr/lib/libX11.so",
|
||||
"role" : "libraries"
|
||||
}
|
||||
],
|
||||
"language" : "C"
|
||||
},
|
||||
"name" : "particles",
|
||||
"nameOnDisk" : "particles",
|
||||
"paths" :
|
||||
{
|
||||
"build" : "libs/glfw/glfw-3.3.8/examples",
|
||||
"source" : "libs/glfw/glfw-3.3.8/examples"
|
||||
},
|
||||
"sourceGroups" :
|
||||
[
|
||||
{
|
||||
"name" : "Source Files",
|
||||
"sourceIndexes" :
|
||||
[
|
||||
0,
|
||||
2,
|
||||
4,
|
||||
6
|
||||
]
|
||||
},
|
||||
{
|
||||
"name" : "Header Files",
|
||||
"sourceIndexes" :
|
||||
[
|
||||
1,
|
||||
3,
|
||||
5
|
||||
]
|
||||
}
|
||||
],
|
||||
"sources" :
|
||||
[
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"compileGroupIndex" : 0,
|
||||
"path" : "libs/glfw/glfw-3.3.8/examples/particles.c",
|
||||
"sourceGroupIndex" : 0
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"path" : "libs/glfw/glfw-3.3.8/deps/tinycthread.h",
|
||||
"sourceGroupIndex" : 1
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"compileGroupIndex" : 0,
|
||||
"path" : "libs/glfw/glfw-3.3.8/deps/tinycthread.c",
|
||||
"sourceGroupIndex" : 0
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"path" : "libs/glfw/glfw-3.3.8/deps/getopt.h",
|
||||
"sourceGroupIndex" : 1
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"compileGroupIndex" : 0,
|
||||
"path" : "libs/glfw/glfw-3.3.8/deps/getopt.c",
|
||||
"sourceGroupIndex" : 0
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"path" : "libs/glfw/glfw-3.3.8/deps/glad/gl.h",
|
||||
"sourceGroupIndex" : 1
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"compileGroupIndex" : 0,
|
||||
"path" : "libs/glfw/glfw-3.3.8/deps/glad_gl.c",
|
||||
"sourceGroupIndex" : 0
|
||||
}
|
||||
],
|
||||
"type" : "EXECUTABLE"
|
||||
}
|
|
@ -0,0 +1,187 @@
|
|||
{
|
||||
"artifacts" :
|
||||
[
|
||||
{
|
||||
"path" : "libs/glfw/glfw-3.3.8/tests/reopen"
|
||||
}
|
||||
],
|
||||
"backtrace" : 1,
|
||||
"backtraceGraph" :
|
||||
{
|
||||
"commands" :
|
||||
[
|
||||
"add_executable",
|
||||
"target_link_libraries",
|
||||
"include_directories"
|
||||
],
|
||||
"files" :
|
||||
[
|
||||
"libs/glfw/glfw-3.3.8/tests/CMakeLists.txt",
|
||||
"libs/glfw/glfw-3.3.8/src/CMakeLists.txt"
|
||||
],
|
||||
"nodes" :
|
||||
[
|
||||
{
|
||||
"file" : 0
|
||||
},
|
||||
{
|
||||
"command" : 0,
|
||||
"file" : 0,
|
||||
"line" : 41,
|
||||
"parent" : 0
|
||||
},
|
||||
{
|
||||
"file" : 1
|
||||
},
|
||||
{
|
||||
"command" : 1,
|
||||
"file" : 1,
|
||||
"line" : 119,
|
||||
"parent" : 2
|
||||
},
|
||||
{
|
||||
"command" : 2,
|
||||
"file" : 0,
|
||||
"line" : 4,
|
||||
"parent" : 0
|
||||
}
|
||||
]
|
||||
},
|
||||
"compileGroups" :
|
||||
[
|
||||
{
|
||||
"compileCommandFragments" :
|
||||
[
|
||||
{
|
||||
"fragment" : "-g -std=gnu99 -fdiagnostics-color=always"
|
||||
}
|
||||
],
|
||||
"includes" :
|
||||
[
|
||||
{
|
||||
"backtrace" : 4,
|
||||
"path" : "/home/brett/git/parksandrec/libs/glfw/glfw-3.3.8/deps"
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"path" : "/home/brett/git/parksandrec/libs/glfw/glfw-3.3.8/include"
|
||||
}
|
||||
],
|
||||
"language" : "C",
|
||||
"languageStandard" :
|
||||
{
|
||||
"backtraces" :
|
||||
[
|
||||
1
|
||||
],
|
||||
"standard" : "99"
|
||||
},
|
||||
"sourceIndexes" :
|
||||
[
|
||||
0,
|
||||
2
|
||||
]
|
||||
}
|
||||
],
|
||||
"dependencies" :
|
||||
[
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"id" : "glfw::@7dc16bda365e0ec860ed"
|
||||
}
|
||||
],
|
||||
"folder" :
|
||||
{
|
||||
"name" : "GLFW3/Tests"
|
||||
},
|
||||
"id" : "reopen::@77cfdd67c43044262fc4",
|
||||
"link" :
|
||||
{
|
||||
"commandFragments" :
|
||||
[
|
||||
{
|
||||
"fragment" : "-g",
|
||||
"role" : "flags"
|
||||
},
|
||||
{
|
||||
"fragment" : "",
|
||||
"role" : "flags"
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"fragment" : "libs/glfw/glfw-3.3.8/src/libglfw3.a",
|
||||
"role" : "libraries"
|
||||
},
|
||||
{
|
||||
"fragment" : "-lm",
|
||||
"role" : "libraries"
|
||||
},
|
||||
{
|
||||
"backtrace" : 3,
|
||||
"fragment" : "/usr/lib/librt.a",
|
||||
"role" : "libraries"
|
||||
},
|
||||
{
|
||||
"fragment" : "-lm",
|
||||
"role" : "libraries"
|
||||
},
|
||||
{
|
||||
"backtrace" : 3,
|
||||
"fragment" : "-ldl",
|
||||
"role" : "libraries"
|
||||
},
|
||||
{
|
||||
"backtrace" : 3,
|
||||
"fragment" : "/usr/lib/libX11.so",
|
||||
"role" : "libraries"
|
||||
}
|
||||
],
|
||||
"language" : "C"
|
||||
},
|
||||
"name" : "reopen",
|
||||
"nameOnDisk" : "reopen",
|
||||
"paths" :
|
||||
{
|
||||
"build" : "libs/glfw/glfw-3.3.8/tests",
|
||||
"source" : "libs/glfw/glfw-3.3.8/tests"
|
||||
},
|
||||
"sourceGroups" :
|
||||
[
|
||||
{
|
||||
"name" : "Source Files",
|
||||
"sourceIndexes" :
|
||||
[
|
||||
0,
|
||||
2
|
||||
]
|
||||
},
|
||||
{
|
||||
"name" : "Header Files",
|
||||
"sourceIndexes" :
|
||||
[
|
||||
1
|
||||
]
|
||||
}
|
||||
],
|
||||
"sources" :
|
||||
[
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"compileGroupIndex" : 0,
|
||||
"path" : "libs/glfw/glfw-3.3.8/tests/reopen.c",
|
||||
"sourceGroupIndex" : 0
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"path" : "libs/glfw/glfw-3.3.8/deps/glad/gl.h",
|
||||
"sourceGroupIndex" : 1
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"compileGroupIndex" : 0,
|
||||
"path" : "libs/glfw/glfw-3.3.8/deps/glad_gl.c",
|
||||
"sourceGroupIndex" : 0
|
||||
}
|
||||
],
|
||||
"type" : "EXECUTABLE"
|
||||
}
|
|
@ -0,0 +1,187 @@
|
|||
{
|
||||
"artifacts" :
|
||||
[
|
||||
{
|
||||
"path" : "libs/glfw/glfw-3.3.8/examples/sharing"
|
||||
}
|
||||
],
|
||||
"backtrace" : 1,
|
||||
"backtraceGraph" :
|
||||
{
|
||||
"commands" :
|
||||
[
|
||||
"add_executable",
|
||||
"target_link_libraries",
|
||||
"include_directories"
|
||||
],
|
||||
"files" :
|
||||
[
|
||||
"libs/glfw/glfw-3.3.8/examples/CMakeLists.txt",
|
||||
"libs/glfw/glfw-3.3.8/src/CMakeLists.txt"
|
||||
],
|
||||
"nodes" :
|
||||
[
|
||||
{
|
||||
"file" : 0
|
||||
},
|
||||
{
|
||||
"command" : 0,
|
||||
"file" : 0,
|
||||
"line" : 44,
|
||||
"parent" : 0
|
||||
},
|
||||
{
|
||||
"file" : 1
|
||||
},
|
||||
{
|
||||
"command" : 1,
|
||||
"file" : 1,
|
||||
"line" : 119,
|
||||
"parent" : 2
|
||||
},
|
||||
{
|
||||
"command" : 2,
|
||||
"file" : 0,
|
||||
"line" : 4,
|
||||
"parent" : 0
|
||||
}
|
||||
]
|
||||
},
|
||||
"compileGroups" :
|
||||
[
|
||||
{
|
||||
"compileCommandFragments" :
|
||||
[
|
||||
{
|
||||
"fragment" : "-g -std=gnu99 -fdiagnostics-color=always"
|
||||
}
|
||||
],
|
||||
"includes" :
|
||||
[
|
||||
{
|
||||
"backtrace" : 4,
|
||||
"path" : "/home/brett/git/parksandrec/libs/glfw/glfw-3.3.8/deps"
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"path" : "/home/brett/git/parksandrec/libs/glfw/glfw-3.3.8/include"
|
||||
}
|
||||
],
|
||||
"language" : "C",
|
||||
"languageStandard" :
|
||||
{
|
||||
"backtraces" :
|
||||
[
|
||||
1
|
||||
],
|
||||
"standard" : "99"
|
||||
},
|
||||
"sourceIndexes" :
|
||||
[
|
||||
0,
|
||||
2
|
||||
]
|
||||
}
|
||||
],
|
||||
"dependencies" :
|
||||
[
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"id" : "glfw::@7dc16bda365e0ec860ed"
|
||||
}
|
||||
],
|
||||
"folder" :
|
||||
{
|
||||
"name" : "GLFW3/Examples"
|
||||
},
|
||||
"id" : "sharing::@555eb4510d21f320f20b",
|
||||
"link" :
|
||||
{
|
||||
"commandFragments" :
|
||||
[
|
||||
{
|
||||
"fragment" : "-g",
|
||||
"role" : "flags"
|
||||
},
|
||||
{
|
||||
"fragment" : "",
|
||||
"role" : "flags"
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"fragment" : "libs/glfw/glfw-3.3.8/src/libglfw3.a",
|
||||
"role" : "libraries"
|
||||
},
|
||||
{
|
||||
"fragment" : "-lm",
|
||||
"role" : "libraries"
|
||||
},
|
||||
{
|
||||
"backtrace" : 3,
|
||||
"fragment" : "/usr/lib/librt.a",
|
||||
"role" : "libraries"
|
||||
},
|
||||
{
|
||||
"fragment" : "-lm",
|
||||
"role" : "libraries"
|
||||
},
|
||||
{
|
||||
"backtrace" : 3,
|
||||
"fragment" : "-ldl",
|
||||
"role" : "libraries"
|
||||
},
|
||||
{
|
||||
"backtrace" : 3,
|
||||
"fragment" : "/usr/lib/libX11.so",
|
||||
"role" : "libraries"
|
||||
}
|
||||
],
|
||||
"language" : "C"
|
||||
},
|
||||
"name" : "sharing",
|
||||
"nameOnDisk" : "sharing",
|
||||
"paths" :
|
||||
{
|
||||
"build" : "libs/glfw/glfw-3.3.8/examples",
|
||||
"source" : "libs/glfw/glfw-3.3.8/examples"
|
||||
},
|
||||
"sourceGroups" :
|
||||
[
|
||||
{
|
||||
"name" : "Source Files",
|
||||
"sourceIndexes" :
|
||||
[
|
||||
0,
|
||||
2
|
||||
]
|
||||
},
|
||||
{
|
||||
"name" : "Header Files",
|
||||
"sourceIndexes" :
|
||||
[
|
||||
1
|
||||
]
|
||||
}
|
||||
],
|
||||
"sources" :
|
||||
[
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"compileGroupIndex" : 0,
|
||||
"path" : "libs/glfw/glfw-3.3.8/examples/sharing.c",
|
||||
"sourceGroupIndex" : 0
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"path" : "libs/glfw/glfw-3.3.8/deps/glad/gl.h",
|
||||
"sourceGroupIndex" : 1
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"compileGroupIndex" : 0,
|
||||
"path" : "libs/glfw/glfw-3.3.8/deps/glad_gl.c",
|
||||
"sourceGroupIndex" : 0
|
||||
}
|
||||
],
|
||||
"type" : "EXECUTABLE"
|
||||
}
|
|
@ -0,0 +1,187 @@
|
|||
{
|
||||
"artifacts" :
|
||||
[
|
||||
{
|
||||
"path" : "libs/glfw/glfw-3.3.8/examples/simple"
|
||||
}
|
||||
],
|
||||
"backtrace" : 1,
|
||||
"backtraceGraph" :
|
||||
{
|
||||
"commands" :
|
||||
[
|
||||
"add_executable",
|
||||
"target_link_libraries",
|
||||
"include_directories"
|
||||
],
|
||||
"files" :
|
||||
[
|
||||
"libs/glfw/glfw-3.3.8/examples/CMakeLists.txt",
|
||||
"libs/glfw/glfw-3.3.8/src/CMakeLists.txt"
|
||||
],
|
||||
"nodes" :
|
||||
[
|
||||
{
|
||||
"file" : 0
|
||||
},
|
||||
{
|
||||
"command" : 0,
|
||||
"file" : 0,
|
||||
"line" : 45,
|
||||
"parent" : 0
|
||||
},
|
||||
{
|
||||
"file" : 1
|
||||
},
|
||||
{
|
||||
"command" : 1,
|
||||
"file" : 1,
|
||||
"line" : 119,
|
||||
"parent" : 2
|
||||
},
|
||||
{
|
||||
"command" : 2,
|
||||
"file" : 0,
|
||||
"line" : 4,
|
||||
"parent" : 0
|
||||
}
|
||||
]
|
||||
},
|
||||
"compileGroups" :
|
||||
[
|
||||
{
|
||||
"compileCommandFragments" :
|
||||
[
|
||||
{
|
||||
"fragment" : "-g -std=gnu99 -fdiagnostics-color=always"
|
||||
}
|
||||
],
|
||||
"includes" :
|
||||
[
|
||||
{
|
||||
"backtrace" : 4,
|
||||
"path" : "/home/brett/git/parksandrec/libs/glfw/glfw-3.3.8/deps"
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"path" : "/home/brett/git/parksandrec/libs/glfw/glfw-3.3.8/include"
|
||||
}
|
||||
],
|
||||
"language" : "C",
|
||||
"languageStandard" :
|
||||
{
|
||||
"backtraces" :
|
||||
[
|
||||
1
|
||||
],
|
||||
"standard" : "99"
|
||||
},
|
||||
"sourceIndexes" :
|
||||
[
|
||||
0,
|
||||
2
|
||||
]
|
||||
}
|
||||
],
|
||||
"dependencies" :
|
||||
[
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"id" : "glfw::@7dc16bda365e0ec860ed"
|
||||
}
|
||||
],
|
||||
"folder" :
|
||||
{
|
||||
"name" : "GLFW3/Examples"
|
||||
},
|
||||
"id" : "simple::@555eb4510d21f320f20b",
|
||||
"link" :
|
||||
{
|
||||
"commandFragments" :
|
||||
[
|
||||
{
|
||||
"fragment" : "-g",
|
||||
"role" : "flags"
|
||||
},
|
||||
{
|
||||
"fragment" : "",
|
||||
"role" : "flags"
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"fragment" : "libs/glfw/glfw-3.3.8/src/libglfw3.a",
|
||||
"role" : "libraries"
|
||||
},
|
||||
{
|
||||
"fragment" : "-lm",
|
||||
"role" : "libraries"
|
||||
},
|
||||
{
|
||||
"backtrace" : 3,
|
||||
"fragment" : "/usr/lib/librt.a",
|
||||
"role" : "libraries"
|
||||
},
|
||||
{
|
||||
"fragment" : "-lm",
|
||||
"role" : "libraries"
|
||||
},
|
||||
{
|
||||
"backtrace" : 3,
|
||||
"fragment" : "-ldl",
|
||||
"role" : "libraries"
|
||||
},
|
||||
{
|
||||
"backtrace" : 3,
|
||||
"fragment" : "/usr/lib/libX11.so",
|
||||
"role" : "libraries"
|
||||
}
|
||||
],
|
||||
"language" : "C"
|
||||
},
|
||||
"name" : "simple",
|
||||
"nameOnDisk" : "simple",
|
||||
"paths" :
|
||||
{
|
||||
"build" : "libs/glfw/glfw-3.3.8/examples",
|
||||
"source" : "libs/glfw/glfw-3.3.8/examples"
|
||||
},
|
||||
"sourceGroups" :
|
||||
[
|
||||
{
|
||||
"name" : "Source Files",
|
||||
"sourceIndexes" :
|
||||
[
|
||||
0,
|
||||
2
|
||||
]
|
||||
},
|
||||
{
|
||||
"name" : "Header Files",
|
||||
"sourceIndexes" :
|
||||
[
|
||||
1
|
||||
]
|
||||
}
|
||||
],
|
||||
"sources" :
|
||||
[
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"compileGroupIndex" : 0,
|
||||
"path" : "libs/glfw/glfw-3.3.8/examples/simple.c",
|
||||
"sourceGroupIndex" : 0
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"path" : "libs/glfw/glfw-3.3.8/deps/glad/gl.h",
|
||||
"sourceGroupIndex" : 1
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"compileGroupIndex" : 0,
|
||||
"path" : "libs/glfw/glfw-3.3.8/deps/glad_gl.c",
|
||||
"sourceGroupIndex" : 0
|
||||
}
|
||||
],
|
||||
"type" : "EXECUTABLE"
|
||||
}
|
|
@ -0,0 +1,187 @@
|
|||
{
|
||||
"artifacts" :
|
||||
[
|
||||
{
|
||||
"path" : "libs/glfw/glfw-3.3.8/examples/splitview"
|
||||
}
|
||||
],
|
||||
"backtrace" : 1,
|
||||
"backtraceGraph" :
|
||||
{
|
||||
"commands" :
|
||||
[
|
||||
"add_executable",
|
||||
"target_link_libraries",
|
||||
"include_directories"
|
||||
],
|
||||
"files" :
|
||||
[
|
||||
"libs/glfw/glfw-3.3.8/examples/CMakeLists.txt",
|
||||
"libs/glfw/glfw-3.3.8/src/CMakeLists.txt"
|
||||
],
|
||||
"nodes" :
|
||||
[
|
||||
{
|
||||
"file" : 0
|
||||
},
|
||||
{
|
||||
"command" : 0,
|
||||
"file" : 0,
|
||||
"line" : 46,
|
||||
"parent" : 0
|
||||
},
|
||||
{
|
||||
"file" : 1
|
||||
},
|
||||
{
|
||||
"command" : 1,
|
||||
"file" : 1,
|
||||
"line" : 119,
|
||||
"parent" : 2
|
||||
},
|
||||
{
|
||||
"command" : 2,
|
||||
"file" : 0,
|
||||
"line" : 4,
|
||||
"parent" : 0
|
||||
}
|
||||
]
|
||||
},
|
||||
"compileGroups" :
|
||||
[
|
||||
{
|
||||
"compileCommandFragments" :
|
||||
[
|
||||
{
|
||||
"fragment" : "-g -std=gnu99 -fdiagnostics-color=always"
|
||||
}
|
||||
],
|
||||
"includes" :
|
||||
[
|
||||
{
|
||||
"backtrace" : 4,
|
||||
"path" : "/home/brett/git/parksandrec/libs/glfw/glfw-3.3.8/deps"
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"path" : "/home/brett/git/parksandrec/libs/glfw/glfw-3.3.8/include"
|
||||
}
|
||||
],
|
||||
"language" : "C",
|
||||
"languageStandard" :
|
||||
{
|
||||
"backtraces" :
|
||||
[
|
||||
1
|
||||
],
|
||||
"standard" : "99"
|
||||
},
|
||||
"sourceIndexes" :
|
||||
[
|
||||
0,
|
||||
2
|
||||
]
|
||||
}
|
||||
],
|
||||
"dependencies" :
|
||||
[
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"id" : "glfw::@7dc16bda365e0ec860ed"
|
||||
}
|
||||
],
|
||||
"folder" :
|
||||
{
|
||||
"name" : "GLFW3/Examples"
|
||||
},
|
||||
"id" : "splitview::@555eb4510d21f320f20b",
|
||||
"link" :
|
||||
{
|
||||
"commandFragments" :
|
||||
[
|
||||
{
|
||||
"fragment" : "-g",
|
||||
"role" : "flags"
|
||||
},
|
||||
{
|
||||
"fragment" : "",
|
||||
"role" : "flags"
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"fragment" : "libs/glfw/glfw-3.3.8/src/libglfw3.a",
|
||||
"role" : "libraries"
|
||||
},
|
||||
{
|
||||
"fragment" : "-lm",
|
||||
"role" : "libraries"
|
||||
},
|
||||
{
|
||||
"backtrace" : 3,
|
||||
"fragment" : "/usr/lib/librt.a",
|
||||
"role" : "libraries"
|
||||
},
|
||||
{
|
||||
"fragment" : "-lm",
|
||||
"role" : "libraries"
|
||||
},
|
||||
{
|
||||
"backtrace" : 3,
|
||||
"fragment" : "-ldl",
|
||||
"role" : "libraries"
|
||||
},
|
||||
{
|
||||
"backtrace" : 3,
|
||||
"fragment" : "/usr/lib/libX11.so",
|
||||
"role" : "libraries"
|
||||
}
|
||||
],
|
||||
"language" : "C"
|
||||
},
|
||||
"name" : "splitview",
|
||||
"nameOnDisk" : "splitview",
|
||||
"paths" :
|
||||
{
|
||||
"build" : "libs/glfw/glfw-3.3.8/examples",
|
||||
"source" : "libs/glfw/glfw-3.3.8/examples"
|
||||
},
|
||||
"sourceGroups" :
|
||||
[
|
||||
{
|
||||
"name" : "Source Files",
|
||||
"sourceIndexes" :
|
||||
[
|
||||
0,
|
||||
2
|
||||
]
|
||||
},
|
||||
{
|
||||
"name" : "Header Files",
|
||||
"sourceIndexes" :
|
||||
[
|
||||
1
|
||||
]
|
||||
}
|
||||
],
|
||||
"sources" :
|
||||
[
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"compileGroupIndex" : 0,
|
||||
"path" : "libs/glfw/glfw-3.3.8/examples/splitview.c",
|
||||
"sourceGroupIndex" : 0
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"path" : "libs/glfw/glfw-3.3.8/deps/glad/gl.h",
|
||||
"sourceGroupIndex" : 1
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"compileGroupIndex" : 0,
|
||||
"path" : "libs/glfw/glfw-3.3.8/deps/glad_gl.c",
|
||||
"sourceGroupIndex" : 0
|
||||
}
|
||||
],
|
||||
"type" : "EXECUTABLE"
|
||||
}
|
|
@ -0,0 +1,187 @@
|
|||
{
|
||||
"artifacts" :
|
||||
[
|
||||
{
|
||||
"path" : "libs/glfw/glfw-3.3.8/tests/tearing"
|
||||
}
|
||||
],
|
||||
"backtrace" : 1,
|
||||
"backtraceGraph" :
|
||||
{
|
||||
"commands" :
|
||||
[
|
||||
"add_executable",
|
||||
"target_link_libraries",
|
||||
"include_directories"
|
||||
],
|
||||
"files" :
|
||||
[
|
||||
"libs/glfw/glfw-3.3.8/tests/CMakeLists.txt",
|
||||
"libs/glfw/glfw-3.3.8/src/CMakeLists.txt"
|
||||
],
|
||||
"nodes" :
|
||||
[
|
||||
{
|
||||
"file" : 0
|
||||
},
|
||||
{
|
||||
"command" : 0,
|
||||
"file" : 0,
|
||||
"line" : 50,
|
||||
"parent" : 0
|
||||
},
|
||||
{
|
||||
"file" : 1
|
||||
},
|
||||
{
|
||||
"command" : 1,
|
||||
"file" : 1,
|
||||
"line" : 119,
|
||||
"parent" : 2
|
||||
},
|
||||
{
|
||||
"command" : 2,
|
||||
"file" : 0,
|
||||
"line" : 4,
|
||||
"parent" : 0
|
||||
}
|
||||
]
|
||||
},
|
||||
"compileGroups" :
|
||||
[
|
||||
{
|
||||
"compileCommandFragments" :
|
||||
[
|
||||
{
|
||||
"fragment" : "-g -std=gnu99 -fdiagnostics-color=always"
|
||||
}
|
||||
],
|
||||
"includes" :
|
||||
[
|
||||
{
|
||||
"backtrace" : 4,
|
||||
"path" : "/home/brett/git/parksandrec/libs/glfw/glfw-3.3.8/deps"
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"path" : "/home/brett/git/parksandrec/libs/glfw/glfw-3.3.8/include"
|
||||
}
|
||||
],
|
||||
"language" : "C",
|
||||
"languageStandard" :
|
||||
{
|
||||
"backtraces" :
|
||||
[
|
||||
1
|
||||
],
|
||||
"standard" : "99"
|
||||
},
|
||||
"sourceIndexes" :
|
||||
[
|
||||
0,
|
||||
2
|
||||
]
|
||||
}
|
||||
],
|
||||
"dependencies" :
|
||||
[
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"id" : "glfw::@7dc16bda365e0ec860ed"
|
||||
}
|
||||
],
|
||||
"folder" :
|
||||
{
|
||||
"name" : "GLFW3/Tests"
|
||||
},
|
||||
"id" : "tearing::@77cfdd67c43044262fc4",
|
||||
"link" :
|
||||
{
|
||||
"commandFragments" :
|
||||
[
|
||||
{
|
||||
"fragment" : "-g",
|
||||
"role" : "flags"
|
||||
},
|
||||
{
|
||||
"fragment" : "",
|
||||
"role" : "flags"
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"fragment" : "libs/glfw/glfw-3.3.8/src/libglfw3.a",
|
||||
"role" : "libraries"
|
||||
},
|
||||
{
|
||||
"fragment" : "-lm",
|
||||
"role" : "libraries"
|
||||
},
|
||||
{
|
||||
"backtrace" : 3,
|
||||
"fragment" : "/usr/lib/librt.a",
|
||||
"role" : "libraries"
|
||||
},
|
||||
{
|
||||
"fragment" : "-lm",
|
||||
"role" : "libraries"
|
||||
},
|
||||
{
|
||||
"backtrace" : 3,
|
||||
"fragment" : "-ldl",
|
||||
"role" : "libraries"
|
||||
},
|
||||
{
|
||||
"backtrace" : 3,
|
||||
"fragment" : "/usr/lib/libX11.so",
|
||||
"role" : "libraries"
|
||||
}
|
||||
],
|
||||
"language" : "C"
|
||||
},
|
||||
"name" : "tearing",
|
||||
"nameOnDisk" : "tearing",
|
||||
"paths" :
|
||||
{
|
||||
"build" : "libs/glfw/glfw-3.3.8/tests",
|
||||
"source" : "libs/glfw/glfw-3.3.8/tests"
|
||||
},
|
||||
"sourceGroups" :
|
||||
[
|
||||
{
|
||||
"name" : "Source Files",
|
||||
"sourceIndexes" :
|
||||
[
|
||||
0,
|
||||
2
|
||||
]
|
||||
},
|
||||
{
|
||||
"name" : "Header Files",
|
||||
"sourceIndexes" :
|
||||
[
|
||||
1
|
||||
]
|
||||
}
|
||||
],
|
||||
"sources" :
|
||||
[
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"compileGroupIndex" : 0,
|
||||
"path" : "libs/glfw/glfw-3.3.8/tests/tearing.c",
|
||||
"sourceGroupIndex" : 0
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"path" : "libs/glfw/glfw-3.3.8/deps/glad/gl.h",
|
||||
"sourceGroupIndex" : 1
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"compileGroupIndex" : 0,
|
||||
"path" : "libs/glfw/glfw-3.3.8/deps/glad_gl.c",
|
||||
"sourceGroupIndex" : 0
|
||||
}
|
||||
],
|
||||
"type" : "EXECUTABLE"
|
||||
}
|
|
@ -0,0 +1,203 @@
|
|||
{
|
||||
"artifacts" :
|
||||
[
|
||||
{
|
||||
"path" : "libs/glfw/glfw-3.3.8/tests/threads"
|
||||
}
|
||||
],
|
||||
"backtrace" : 1,
|
||||
"backtraceGraph" :
|
||||
{
|
||||
"commands" :
|
||||
[
|
||||
"add_executable",
|
||||
"target_link_libraries",
|
||||
"include_directories"
|
||||
],
|
||||
"files" :
|
||||
[
|
||||
"libs/glfw/glfw-3.3.8/tests/CMakeLists.txt",
|
||||
"libs/glfw/glfw-3.3.8/src/CMakeLists.txt"
|
||||
],
|
||||
"nodes" :
|
||||
[
|
||||
{
|
||||
"file" : 0
|
||||
},
|
||||
{
|
||||
"command" : 0,
|
||||
"file" : 0,
|
||||
"line" : 51,
|
||||
"parent" : 0
|
||||
},
|
||||
{
|
||||
"command" : 1,
|
||||
"file" : 0,
|
||||
"line" : 61,
|
||||
"parent" : 0
|
||||
},
|
||||
{
|
||||
"file" : 1
|
||||
},
|
||||
{
|
||||
"command" : 1,
|
||||
"file" : 1,
|
||||
"line" : 119,
|
||||
"parent" : 3
|
||||
},
|
||||
{
|
||||
"command" : 2,
|
||||
"file" : 0,
|
||||
"line" : 4,
|
||||
"parent" : 0
|
||||
}
|
||||
]
|
||||
},
|
||||
"compileGroups" :
|
||||
[
|
||||
{
|
||||
"compileCommandFragments" :
|
||||
[
|
||||
{
|
||||
"fragment" : "-g -std=gnu99 -fdiagnostics-color=always"
|
||||
}
|
||||
],
|
||||
"includes" :
|
||||
[
|
||||
{
|
||||
"backtrace" : 5,
|
||||
"path" : "/home/brett/git/parksandrec/libs/glfw/glfw-3.3.8/deps"
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"path" : "/home/brett/git/parksandrec/libs/glfw/glfw-3.3.8/include"
|
||||
}
|
||||
],
|
||||
"language" : "C",
|
||||
"languageStandard" :
|
||||
{
|
||||
"backtraces" :
|
||||
[
|
||||
1
|
||||
],
|
||||
"standard" : "99"
|
||||
},
|
||||
"sourceIndexes" :
|
||||
[
|
||||
0,
|
||||
2,
|
||||
4
|
||||
]
|
||||
}
|
||||
],
|
||||
"dependencies" :
|
||||
[
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"id" : "glfw::@7dc16bda365e0ec860ed"
|
||||
}
|
||||
],
|
||||
"folder" :
|
||||
{
|
||||
"name" : "GLFW3/Tests"
|
||||
},
|
||||
"id" : "threads::@77cfdd67c43044262fc4",
|
||||
"link" :
|
||||
{
|
||||
"commandFragments" :
|
||||
[
|
||||
{
|
||||
"fragment" : "-g",
|
||||
"role" : "flags"
|
||||
},
|
||||
{
|
||||
"fragment" : "",
|
||||
"role" : "flags"
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"fragment" : "libs/glfw/glfw-3.3.8/src/libglfw3.a",
|
||||
"role" : "libraries"
|
||||
},
|
||||
{
|
||||
"fragment" : "-lm",
|
||||
"role" : "libraries"
|
||||
},
|
||||
{
|
||||
"backtrace" : 2,
|
||||
"fragment" : "/usr/lib/librt.a",
|
||||
"role" : "libraries"
|
||||
},
|
||||
{
|
||||
"backtrace" : 4,
|
||||
"fragment" : "-ldl",
|
||||
"role" : "libraries"
|
||||
},
|
||||
{
|
||||
"backtrace" : 4,
|
||||
"fragment" : "/usr/lib/libX11.so",
|
||||
"role" : "libraries"
|
||||
}
|
||||
],
|
||||
"language" : "C"
|
||||
},
|
||||
"name" : "threads",
|
||||
"nameOnDisk" : "threads",
|
||||
"paths" :
|
||||
{
|
||||
"build" : "libs/glfw/glfw-3.3.8/tests",
|
||||
"source" : "libs/glfw/glfw-3.3.8/tests"
|
||||
},
|
||||
"sourceGroups" :
|
||||
[
|
||||
{
|
||||
"name" : "Source Files",
|
||||
"sourceIndexes" :
|
||||
[
|
||||
0,
|
||||
2,
|
||||
4
|
||||
]
|
||||
},
|
||||
{
|
||||
"name" : "Header Files",
|
||||
"sourceIndexes" :
|
||||
[
|
||||
1,
|
||||
3
|
||||
]
|
||||
}
|
||||
],
|
||||
"sources" :
|
||||
[
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"compileGroupIndex" : 0,
|
||||
"path" : "libs/glfw/glfw-3.3.8/tests/threads.c",
|
||||
"sourceGroupIndex" : 0
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"path" : "libs/glfw/glfw-3.3.8/deps/tinycthread.h",
|
||||
"sourceGroupIndex" : 1
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"compileGroupIndex" : 0,
|
||||
"path" : "libs/glfw/glfw-3.3.8/deps/tinycthread.c",
|
||||
"sourceGroupIndex" : 0
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"path" : "libs/glfw/glfw-3.3.8/deps/glad/gl.h",
|
||||
"sourceGroupIndex" : 1
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"compileGroupIndex" : 0,
|
||||
"path" : "libs/glfw/glfw-3.3.8/deps/glad_gl.c",
|
||||
"sourceGroupIndex" : 0
|
||||
}
|
||||
],
|
||||
"type" : "EXECUTABLE"
|
||||
}
|
|
@ -0,0 +1,187 @@
|
|||
{
|
||||
"artifacts" :
|
||||
[
|
||||
{
|
||||
"path" : "libs/glfw/glfw-3.3.8/tests/timeout"
|
||||
}
|
||||
],
|
||||
"backtrace" : 1,
|
||||
"backtraceGraph" :
|
||||
{
|
||||
"commands" :
|
||||
[
|
||||
"add_executable",
|
||||
"target_link_libraries",
|
||||
"include_directories"
|
||||
],
|
||||
"files" :
|
||||
[
|
||||
"libs/glfw/glfw-3.3.8/tests/CMakeLists.txt",
|
||||
"libs/glfw/glfw-3.3.8/src/CMakeLists.txt"
|
||||
],
|
||||
"nodes" :
|
||||
[
|
||||
{
|
||||
"file" : 0
|
||||
},
|
||||
{
|
||||
"command" : 0,
|
||||
"file" : 0,
|
||||
"line" : 52,
|
||||
"parent" : 0
|
||||
},
|
||||
{
|
||||
"file" : 1
|
||||
},
|
||||
{
|
||||
"command" : 1,
|
||||
"file" : 1,
|
||||
"line" : 119,
|
||||
"parent" : 2
|
||||
},
|
||||
{
|
||||
"command" : 2,
|
||||
"file" : 0,
|
||||
"line" : 4,
|
||||
"parent" : 0
|
||||
}
|
||||
]
|
||||
},
|
||||
"compileGroups" :
|
||||
[
|
||||
{
|
||||
"compileCommandFragments" :
|
||||
[
|
||||
{
|
||||
"fragment" : "-g -std=gnu99 -fdiagnostics-color=always"
|
||||
}
|
||||
],
|
||||
"includes" :
|
||||
[
|
||||
{
|
||||
"backtrace" : 4,
|
||||
"path" : "/home/brett/git/parksandrec/libs/glfw/glfw-3.3.8/deps"
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"path" : "/home/brett/git/parksandrec/libs/glfw/glfw-3.3.8/include"
|
||||
}
|
||||
],
|
||||
"language" : "C",
|
||||
"languageStandard" :
|
||||
{
|
||||
"backtraces" :
|
||||
[
|
||||
1
|
||||
],
|
||||
"standard" : "99"
|
||||
},
|
||||
"sourceIndexes" :
|
||||
[
|
||||
0,
|
||||
2
|
||||
]
|
||||
}
|
||||
],
|
||||
"dependencies" :
|
||||
[
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"id" : "glfw::@7dc16bda365e0ec860ed"
|
||||
}
|
||||
],
|
||||
"folder" :
|
||||
{
|
||||
"name" : "GLFW3/Tests"
|
||||
},
|
||||
"id" : "timeout::@77cfdd67c43044262fc4",
|
||||
"link" :
|
||||
{
|
||||
"commandFragments" :
|
||||
[
|
||||
{
|
||||
"fragment" : "-g",
|
||||
"role" : "flags"
|
||||
},
|
||||
{
|
||||
"fragment" : "",
|
||||
"role" : "flags"
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"fragment" : "libs/glfw/glfw-3.3.8/src/libglfw3.a",
|
||||
"role" : "libraries"
|
||||
},
|
||||
{
|
||||
"fragment" : "-lm",
|
||||
"role" : "libraries"
|
||||
},
|
||||
{
|
||||
"backtrace" : 3,
|
||||
"fragment" : "/usr/lib/librt.a",
|
||||
"role" : "libraries"
|
||||
},
|
||||
{
|
||||
"fragment" : "-lm",
|
||||
"role" : "libraries"
|
||||
},
|
||||
{
|
||||
"backtrace" : 3,
|
||||
"fragment" : "-ldl",
|
||||
"role" : "libraries"
|
||||
},
|
||||
{
|
||||
"backtrace" : 3,
|
||||
"fragment" : "/usr/lib/libX11.so",
|
||||
"role" : "libraries"
|
||||
}
|
||||
],
|
||||
"language" : "C"
|
||||
},
|
||||
"name" : "timeout",
|
||||
"nameOnDisk" : "timeout",
|
||||
"paths" :
|
||||
{
|
||||
"build" : "libs/glfw/glfw-3.3.8/tests",
|
||||
"source" : "libs/glfw/glfw-3.3.8/tests"
|
||||
},
|
||||
"sourceGroups" :
|
||||
[
|
||||
{
|
||||
"name" : "Source Files",
|
||||
"sourceIndexes" :
|
||||
[
|
||||
0,
|
||||
2
|
||||
]
|
||||
},
|
||||
{
|
||||
"name" : "Header Files",
|
||||
"sourceIndexes" :
|
||||
[
|
||||
1
|
||||
]
|
||||
}
|
||||
],
|
||||
"sources" :
|
||||
[
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"compileGroupIndex" : 0,
|
||||
"path" : "libs/glfw/glfw-3.3.8/tests/timeout.c",
|
||||
"sourceGroupIndex" : 0
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"path" : "libs/glfw/glfw-3.3.8/deps/glad/gl.h",
|
||||
"sourceGroupIndex" : 1
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"compileGroupIndex" : 0,
|
||||
"path" : "libs/glfw/glfw-3.3.8/deps/glad_gl.c",
|
||||
"sourceGroupIndex" : 0
|
||||
}
|
||||
],
|
||||
"type" : "EXECUTABLE"
|
||||
}
|
|
@ -0,0 +1,187 @@
|
|||
{
|
||||
"artifacts" :
|
||||
[
|
||||
{
|
||||
"path" : "libs/glfw/glfw-3.3.8/tests/title"
|
||||
}
|
||||
],
|
||||
"backtrace" : 1,
|
||||
"backtraceGraph" :
|
||||
{
|
||||
"commands" :
|
||||
[
|
||||
"add_executable",
|
||||
"target_link_libraries",
|
||||
"include_directories"
|
||||
],
|
||||
"files" :
|
||||
[
|
||||
"libs/glfw/glfw-3.3.8/tests/CMakeLists.txt",
|
||||
"libs/glfw/glfw-3.3.8/src/CMakeLists.txt"
|
||||
],
|
||||
"nodes" :
|
||||
[
|
||||
{
|
||||
"file" : 0
|
||||
},
|
||||
{
|
||||
"command" : 0,
|
||||
"file" : 0,
|
||||
"line" : 53,
|
||||
"parent" : 0
|
||||
},
|
||||
{
|
||||
"file" : 1
|
||||
},
|
||||
{
|
||||
"command" : 1,
|
||||
"file" : 1,
|
||||
"line" : 119,
|
||||
"parent" : 2
|
||||
},
|
||||
{
|
||||
"command" : 2,
|
||||
"file" : 0,
|
||||
"line" : 4,
|
||||
"parent" : 0
|
||||
}
|
||||
]
|
||||
},
|
||||
"compileGroups" :
|
||||
[
|
||||
{
|
||||
"compileCommandFragments" :
|
||||
[
|
||||
{
|
||||
"fragment" : "-g -std=gnu99 -fdiagnostics-color=always"
|
||||
}
|
||||
],
|
||||
"includes" :
|
||||
[
|
||||
{
|
||||
"backtrace" : 4,
|
||||
"path" : "/home/brett/git/parksandrec/libs/glfw/glfw-3.3.8/deps"
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"path" : "/home/brett/git/parksandrec/libs/glfw/glfw-3.3.8/include"
|
||||
}
|
||||
],
|
||||
"language" : "C",
|
||||
"languageStandard" :
|
||||
{
|
||||
"backtraces" :
|
||||
[
|
||||
1
|
||||
],
|
||||
"standard" : "99"
|
||||
},
|
||||
"sourceIndexes" :
|
||||
[
|
||||
0,
|
||||
2
|
||||
]
|
||||
}
|
||||
],
|
||||
"dependencies" :
|
||||
[
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"id" : "glfw::@7dc16bda365e0ec860ed"
|
||||
}
|
||||
],
|
||||
"folder" :
|
||||
{
|
||||
"name" : "GLFW3/Tests"
|
||||
},
|
||||
"id" : "title::@77cfdd67c43044262fc4",
|
||||
"link" :
|
||||
{
|
||||
"commandFragments" :
|
||||
[
|
||||
{
|
||||
"fragment" : "-g",
|
||||
"role" : "flags"
|
||||
},
|
||||
{
|
||||
"fragment" : "",
|
||||
"role" : "flags"
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"fragment" : "libs/glfw/glfw-3.3.8/src/libglfw3.a",
|
||||
"role" : "libraries"
|
||||
},
|
||||
{
|
||||
"fragment" : "-lm",
|
||||
"role" : "libraries"
|
||||
},
|
||||
{
|
||||
"backtrace" : 3,
|
||||
"fragment" : "/usr/lib/librt.a",
|
||||
"role" : "libraries"
|
||||
},
|
||||
{
|
||||
"fragment" : "-lm",
|
||||
"role" : "libraries"
|
||||
},
|
||||
{
|
||||
"backtrace" : 3,
|
||||
"fragment" : "-ldl",
|
||||
"role" : "libraries"
|
||||
},
|
||||
{
|
||||
"backtrace" : 3,
|
||||
"fragment" : "/usr/lib/libX11.so",
|
||||
"role" : "libraries"
|
||||
}
|
||||
],
|
||||
"language" : "C"
|
||||
},
|
||||
"name" : "title",
|
||||
"nameOnDisk" : "title",
|
||||
"paths" :
|
||||
{
|
||||
"build" : "libs/glfw/glfw-3.3.8/tests",
|
||||
"source" : "libs/glfw/glfw-3.3.8/tests"
|
||||
},
|
||||
"sourceGroups" :
|
||||
[
|
||||
{
|
||||
"name" : "Source Files",
|
||||
"sourceIndexes" :
|
||||
[
|
||||
0,
|
||||
2
|
||||
]
|
||||
},
|
||||
{
|
||||
"name" : "Header Files",
|
||||
"sourceIndexes" :
|
||||
[
|
||||
1
|
||||
]
|
||||
}
|
||||
],
|
||||
"sources" :
|
||||
[
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"compileGroupIndex" : 0,
|
||||
"path" : "libs/glfw/glfw-3.3.8/tests/title.c",
|
||||
"sourceGroupIndex" : 0
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"path" : "libs/glfw/glfw-3.3.8/deps/glad/gl.h",
|
||||
"sourceGroupIndex" : 1
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"compileGroupIndex" : 0,
|
||||
"path" : "libs/glfw/glfw-3.3.8/deps/glad_gl.c",
|
||||
"sourceGroupIndex" : 0
|
||||
}
|
||||
],
|
||||
"type" : "EXECUTABLE"
|
||||
}
|
|
@ -0,0 +1,187 @@
|
|||
{
|
||||
"artifacts" :
|
||||
[
|
||||
{
|
||||
"path" : "libs/glfw/glfw-3.3.8/tests/triangle-vulkan"
|
||||
}
|
||||
],
|
||||
"backtrace" : 1,
|
||||
"backtraceGraph" :
|
||||
{
|
||||
"commands" :
|
||||
[
|
||||
"add_executable",
|
||||
"target_link_libraries",
|
||||
"include_directories"
|
||||
],
|
||||
"files" :
|
||||
[
|
||||
"libs/glfw/glfw-3.3.8/tests/CMakeLists.txt",
|
||||
"libs/glfw/glfw-3.3.8/src/CMakeLists.txt"
|
||||
],
|
||||
"nodes" :
|
||||
[
|
||||
{
|
||||
"file" : 0
|
||||
},
|
||||
{
|
||||
"command" : 0,
|
||||
"file" : 0,
|
||||
"line" : 54,
|
||||
"parent" : 0
|
||||
},
|
||||
{
|
||||
"file" : 1
|
||||
},
|
||||
{
|
||||
"command" : 1,
|
||||
"file" : 1,
|
||||
"line" : 119,
|
||||
"parent" : 2
|
||||
},
|
||||
{
|
||||
"command" : 2,
|
||||
"file" : 0,
|
||||
"line" : 4,
|
||||
"parent" : 0
|
||||
}
|
||||
]
|
||||
},
|
||||
"compileGroups" :
|
||||
[
|
||||
{
|
||||
"compileCommandFragments" :
|
||||
[
|
||||
{
|
||||
"fragment" : "-g -std=gnu99 -fdiagnostics-color=always"
|
||||
}
|
||||
],
|
||||
"includes" :
|
||||
[
|
||||
{
|
||||
"backtrace" : 4,
|
||||
"path" : "/home/brett/git/parksandrec/libs/glfw/glfw-3.3.8/deps"
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"path" : "/home/brett/git/parksandrec/libs/glfw/glfw-3.3.8/include"
|
||||
}
|
||||
],
|
||||
"language" : "C",
|
||||
"languageStandard" :
|
||||
{
|
||||
"backtraces" :
|
||||
[
|
||||
1
|
||||
],
|
||||
"standard" : "99"
|
||||
},
|
||||
"sourceIndexes" :
|
||||
[
|
||||
0,
|
||||
2
|
||||
]
|
||||
}
|
||||
],
|
||||
"dependencies" :
|
||||
[
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"id" : "glfw::@7dc16bda365e0ec860ed"
|
||||
}
|
||||
],
|
||||
"folder" :
|
||||
{
|
||||
"name" : "GLFW3/Tests"
|
||||
},
|
||||
"id" : "triangle-vulkan::@77cfdd67c43044262fc4",
|
||||
"link" :
|
||||
{
|
||||
"commandFragments" :
|
||||
[
|
||||
{
|
||||
"fragment" : "-g",
|
||||
"role" : "flags"
|
||||
},
|
||||
{
|
||||
"fragment" : "",
|
||||
"role" : "flags"
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"fragment" : "libs/glfw/glfw-3.3.8/src/libglfw3.a",
|
||||
"role" : "libraries"
|
||||
},
|
||||
{
|
||||
"fragment" : "-lm",
|
||||
"role" : "libraries"
|
||||
},
|
||||
{
|
||||
"backtrace" : 3,
|
||||
"fragment" : "/usr/lib/librt.a",
|
||||
"role" : "libraries"
|
||||
},
|
||||
{
|
||||
"fragment" : "-lm",
|
||||
"role" : "libraries"
|
||||
},
|
||||
{
|
||||
"backtrace" : 3,
|
||||
"fragment" : "-ldl",
|
||||
"role" : "libraries"
|
||||
},
|
||||
{
|
||||
"backtrace" : 3,
|
||||
"fragment" : "/usr/lib/libX11.so",
|
||||
"role" : "libraries"
|
||||
}
|
||||
],
|
||||
"language" : "C"
|
||||
},
|
||||
"name" : "triangle-vulkan",
|
||||
"nameOnDisk" : "triangle-vulkan",
|
||||
"paths" :
|
||||
{
|
||||
"build" : "libs/glfw/glfw-3.3.8/tests",
|
||||
"source" : "libs/glfw/glfw-3.3.8/tests"
|
||||
},
|
||||
"sourceGroups" :
|
||||
[
|
||||
{
|
||||
"name" : "Source Files",
|
||||
"sourceIndexes" :
|
||||
[
|
||||
0,
|
||||
2
|
||||
]
|
||||
},
|
||||
{
|
||||
"name" : "Header Files",
|
||||
"sourceIndexes" :
|
||||
[
|
||||
1
|
||||
]
|
||||
}
|
||||
],
|
||||
"sources" :
|
||||
[
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"compileGroupIndex" : 0,
|
||||
"path" : "libs/glfw/glfw-3.3.8/tests/triangle-vulkan.c",
|
||||
"sourceGroupIndex" : 0
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"path" : "libs/glfw/glfw-3.3.8/deps/glad/vulkan.h",
|
||||
"sourceGroupIndex" : 1
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"compileGroupIndex" : 0,
|
||||
"path" : "libs/glfw/glfw-3.3.8/deps/glad_vulkan.c",
|
||||
"sourceGroupIndex" : 0
|
||||
}
|
||||
],
|
||||
"type" : "EXECUTABLE"
|
||||
}
|
|
@ -0,0 +1,70 @@
|
|||
{
|
||||
"backtrace" : 1,
|
||||
"backtraceGraph" :
|
||||
{
|
||||
"commands" :
|
||||
[
|
||||
"add_custom_target"
|
||||
],
|
||||
"files" :
|
||||
[
|
||||
"libs/glfw/glfw-3.3.8/CMakeLists.txt"
|
||||
],
|
||||
"nodes" :
|
||||
[
|
||||
{
|
||||
"file" : 0
|
||||
},
|
||||
{
|
||||
"command" : 0,
|
||||
"file" : 0,
|
||||
"line" : 379,
|
||||
"parent" : 0
|
||||
}
|
||||
]
|
||||
},
|
||||
"folder" :
|
||||
{
|
||||
"name" : "GLFW3"
|
||||
},
|
||||
"id" : "uninstall::@469bc31a56f95ec09ce9",
|
||||
"name" : "uninstall",
|
||||
"paths" :
|
||||
{
|
||||
"build" : "libs/glfw/glfw-3.3.8",
|
||||
"source" : "libs/glfw/glfw-3.3.8"
|
||||
},
|
||||
"sourceGroups" :
|
||||
[
|
||||
{
|
||||
"name" : "",
|
||||
"sourceIndexes" :
|
||||
[
|
||||
0
|
||||
]
|
||||
},
|
||||
{
|
||||
"name" : "CMake Rules",
|
||||
"sourceIndexes" :
|
||||
[
|
||||
1
|
||||
]
|
||||
}
|
||||
],
|
||||
"sources" :
|
||||
[
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"isGenerated" : true,
|
||||
"path" : "cmake-build-debug-sanitizer/libs/glfw/glfw-3.3.8/CMakeFiles/uninstall",
|
||||
"sourceGroupIndex" : 0
|
||||
},
|
||||
{
|
||||
"backtrace" : 0,
|
||||
"isGenerated" : true,
|
||||
"path" : "cmake-build-debug-sanitizer/libs/glfw/glfw-3.3.8/CMakeFiles/uninstall.rule",
|
||||
"sourceGroupIndex" : 1
|
||||
}
|
||||
],
|
||||
"type" : "UTILITY"
|
||||
}
|
|
@ -0,0 +1,88 @@
|
|||
{
|
||||
"backtrace" : 1,
|
||||
"backtraceGraph" :
|
||||
{
|
||||
"commands" :
|
||||
[
|
||||
"add_custom_target"
|
||||
],
|
||||
"files" :
|
||||
[
|
||||
"libs/glfw/glfw-3.3.8/src/CMakeLists.txt"
|
||||
],
|
||||
"nodes" :
|
||||
[
|
||||
{
|
||||
"file" : 0
|
||||
},
|
||||
{
|
||||
"command" : 0,
|
||||
"file" : 0,
|
||||
"line" : 8,
|
||||
"parent" : 0
|
||||
}
|
||||
]
|
||||
},
|
||||
"folder" :
|
||||
{
|
||||
"name" : "GLFW3"
|
||||
},
|
||||
"id" : "update_mappings::@7dc16bda365e0ec860ed",
|
||||
"name" : "update_mappings",
|
||||
"paths" :
|
||||
{
|
||||
"build" : "libs/glfw/glfw-3.3.8/src",
|
||||
"source" : "libs/glfw/glfw-3.3.8/src"
|
||||
},
|
||||
"sourceGroups" :
|
||||
[
|
||||
{
|
||||
"name" : "Header Files",
|
||||
"sourceIndexes" :
|
||||
[
|
||||
0
|
||||
]
|
||||
},
|
||||
{
|
||||
"name" : "",
|
||||
"sourceIndexes" :
|
||||
[
|
||||
1,
|
||||
2
|
||||
]
|
||||
},
|
||||
{
|
||||
"name" : "CMake Rules",
|
||||
"sourceIndexes" :
|
||||
[
|
||||
3
|
||||
]
|
||||
}
|
||||
],
|
||||
"sources" :
|
||||
[
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"path" : "libs/glfw/glfw-3.3.8/src/mappings.h.in",
|
||||
"sourceGroupIndex" : 0
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"path" : "libs/glfw/glfw-3.3.8/CMake/GenerateMappings.cmake",
|
||||
"sourceGroupIndex" : 1
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"isGenerated" : true,
|
||||
"path" : "cmake-build-debug-sanitizer/libs/glfw/glfw-3.3.8/src/CMakeFiles/update_mappings",
|
||||
"sourceGroupIndex" : 1
|
||||
},
|
||||
{
|
||||
"backtrace" : 0,
|
||||
"isGenerated" : true,
|
||||
"path" : "cmake-build-debug-sanitizer/libs/glfw/glfw-3.3.8/src/CMakeFiles/update_mappings.rule",
|
||||
"sourceGroupIndex" : 2
|
||||
}
|
||||
],
|
||||
"type" : "UTILITY"
|
||||
}
|
|
@ -0,0 +1,187 @@
|
|||
{
|
||||
"artifacts" :
|
||||
[
|
||||
{
|
||||
"path" : "libs/glfw/glfw-3.3.8/examples/wave"
|
||||
}
|
||||
],
|
||||
"backtrace" : 1,
|
||||
"backtraceGraph" :
|
||||
{
|
||||
"commands" :
|
||||
[
|
||||
"add_executable",
|
||||
"target_link_libraries",
|
||||
"include_directories"
|
||||
],
|
||||
"files" :
|
||||
[
|
||||
"libs/glfw/glfw-3.3.8/examples/CMakeLists.txt",
|
||||
"libs/glfw/glfw-3.3.8/src/CMakeLists.txt"
|
||||
],
|
||||
"nodes" :
|
||||
[
|
||||
{
|
||||
"file" : 0
|
||||
},
|
||||
{
|
||||
"command" : 0,
|
||||
"file" : 0,
|
||||
"line" : 47,
|
||||
"parent" : 0
|
||||
},
|
||||
{
|
||||
"file" : 1
|
||||
},
|
||||
{
|
||||
"command" : 1,
|
||||
"file" : 1,
|
||||
"line" : 119,
|
||||
"parent" : 2
|
||||
},
|
||||
{
|
||||
"command" : 2,
|
||||
"file" : 0,
|
||||
"line" : 4,
|
||||
"parent" : 0
|
||||
}
|
||||
]
|
||||
},
|
||||
"compileGroups" :
|
||||
[
|
||||
{
|
||||
"compileCommandFragments" :
|
||||
[
|
||||
{
|
||||
"fragment" : "-g -std=gnu99 -fdiagnostics-color=always"
|
||||
}
|
||||
],
|
||||
"includes" :
|
||||
[
|
||||
{
|
||||
"backtrace" : 4,
|
||||
"path" : "/home/brett/git/parksandrec/libs/glfw/glfw-3.3.8/deps"
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"path" : "/home/brett/git/parksandrec/libs/glfw/glfw-3.3.8/include"
|
||||
}
|
||||
],
|
||||
"language" : "C",
|
||||
"languageStandard" :
|
||||
{
|
||||
"backtraces" :
|
||||
[
|
||||
1
|
||||
],
|
||||
"standard" : "99"
|
||||
},
|
||||
"sourceIndexes" :
|
||||
[
|
||||
0,
|
||||
2
|
||||
]
|
||||
}
|
||||
],
|
||||
"dependencies" :
|
||||
[
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"id" : "glfw::@7dc16bda365e0ec860ed"
|
||||
}
|
||||
],
|
||||
"folder" :
|
||||
{
|
||||
"name" : "GLFW3/Examples"
|
||||
},
|
||||
"id" : "wave::@555eb4510d21f320f20b",
|
||||
"link" :
|
||||
{
|
||||
"commandFragments" :
|
||||
[
|
||||
{
|
||||
"fragment" : "-g",
|
||||
"role" : "flags"
|
||||
},
|
||||
{
|
||||
"fragment" : "",
|
||||
"role" : "flags"
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"fragment" : "libs/glfw/glfw-3.3.8/src/libglfw3.a",
|
||||
"role" : "libraries"
|
||||
},
|
||||
{
|
||||
"fragment" : "-lm",
|
||||
"role" : "libraries"
|
||||
},
|
||||
{
|
||||
"backtrace" : 3,
|
||||
"fragment" : "/usr/lib/librt.a",
|
||||
"role" : "libraries"
|
||||
},
|
||||
{
|
||||
"fragment" : "-lm",
|
||||
"role" : "libraries"
|
||||
},
|
||||
{
|
||||
"backtrace" : 3,
|
||||
"fragment" : "-ldl",
|
||||
"role" : "libraries"
|
||||
},
|
||||
{
|
||||
"backtrace" : 3,
|
||||
"fragment" : "/usr/lib/libX11.so",
|
||||
"role" : "libraries"
|
||||
}
|
||||
],
|
||||
"language" : "C"
|
||||
},
|
||||
"name" : "wave",
|
||||
"nameOnDisk" : "wave",
|
||||
"paths" :
|
||||
{
|
||||
"build" : "libs/glfw/glfw-3.3.8/examples",
|
||||
"source" : "libs/glfw/glfw-3.3.8/examples"
|
||||
},
|
||||
"sourceGroups" :
|
||||
[
|
||||
{
|
||||
"name" : "Source Files",
|
||||
"sourceIndexes" :
|
||||
[
|
||||
0,
|
||||
2
|
||||
]
|
||||
},
|
||||
{
|
||||
"name" : "Header Files",
|
||||
"sourceIndexes" :
|
||||
[
|
||||
1
|
||||
]
|
||||
}
|
||||
],
|
||||
"sources" :
|
||||
[
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"compileGroupIndex" : 0,
|
||||
"path" : "libs/glfw/glfw-3.3.8/examples/wave.c",
|
||||
"sourceGroupIndex" : 0
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"path" : "libs/glfw/glfw-3.3.8/deps/glad/gl.h",
|
||||
"sourceGroupIndex" : 1
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"compileGroupIndex" : 0,
|
||||
"path" : "libs/glfw/glfw-3.3.8/deps/glad_gl.c",
|
||||
"sourceGroupIndex" : 0
|
||||
}
|
||||
],
|
||||
"type" : "EXECUTABLE"
|
||||
}
|
|
@ -0,0 +1,201 @@
|
|||
{
|
||||
"artifacts" :
|
||||
[
|
||||
{
|
||||
"path" : "libs/glfw/glfw-3.3.8/tests/windows"
|
||||
}
|
||||
],
|
||||
"backtrace" : 1,
|
||||
"backtraceGraph" :
|
||||
{
|
||||
"commands" :
|
||||
[
|
||||
"add_executable",
|
||||
"target_link_libraries",
|
||||
"include_directories"
|
||||
],
|
||||
"files" :
|
||||
[
|
||||
"libs/glfw/glfw-3.3.8/tests/CMakeLists.txt",
|
||||
"libs/glfw/glfw-3.3.8/src/CMakeLists.txt"
|
||||
],
|
||||
"nodes" :
|
||||
[
|
||||
{
|
||||
"file" : 0
|
||||
},
|
||||
{
|
||||
"command" : 0,
|
||||
"file" : 0,
|
||||
"line" : 55,
|
||||
"parent" : 0
|
||||
},
|
||||
{
|
||||
"file" : 1
|
||||
},
|
||||
{
|
||||
"command" : 1,
|
||||
"file" : 1,
|
||||
"line" : 119,
|
||||
"parent" : 2
|
||||
},
|
||||
{
|
||||
"command" : 2,
|
||||
"file" : 0,
|
||||
"line" : 4,
|
||||
"parent" : 0
|
||||
}
|
||||
]
|
||||
},
|
||||
"compileGroups" :
|
||||
[
|
||||
{
|
||||
"compileCommandFragments" :
|
||||
[
|
||||
{
|
||||
"fragment" : "-g -std=gnu99 -fdiagnostics-color=always"
|
||||
}
|
||||
],
|
||||
"includes" :
|
||||
[
|
||||
{
|
||||
"backtrace" : 4,
|
||||
"path" : "/home/brett/git/parksandrec/libs/glfw/glfw-3.3.8/deps"
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"path" : "/home/brett/git/parksandrec/libs/glfw/glfw-3.3.8/include"
|
||||
}
|
||||
],
|
||||
"language" : "C",
|
||||
"languageStandard" :
|
||||
{
|
||||
"backtraces" :
|
||||
[
|
||||
1
|
||||
],
|
||||
"standard" : "99"
|
||||
},
|
||||
"sourceIndexes" :
|
||||
[
|
||||
0,
|
||||
2,
|
||||
4
|
||||
]
|
||||
}
|
||||
],
|
||||
"dependencies" :
|
||||
[
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"id" : "glfw::@7dc16bda365e0ec860ed"
|
||||
}
|
||||
],
|
||||
"folder" :
|
||||
{
|
||||
"name" : "GLFW3/Tests"
|
||||
},
|
||||
"id" : "windows::@77cfdd67c43044262fc4",
|
||||
"link" :
|
||||
{
|
||||
"commandFragments" :
|
||||
[
|
||||
{
|
||||
"fragment" : "-g",
|
||||
"role" : "flags"
|
||||
},
|
||||
{
|
||||
"fragment" : "",
|
||||
"role" : "flags"
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"fragment" : "libs/glfw/glfw-3.3.8/src/libglfw3.a",
|
||||
"role" : "libraries"
|
||||
},
|
||||
{
|
||||
"fragment" : "-lm",
|
||||
"role" : "libraries"
|
||||
},
|
||||
{
|
||||
"backtrace" : 3,
|
||||
"fragment" : "/usr/lib/librt.a",
|
||||
"role" : "libraries"
|
||||
},
|
||||
{
|
||||
"fragment" : "-lm",
|
||||
"role" : "libraries"
|
||||
},
|
||||
{
|
||||
"backtrace" : 3,
|
||||
"fragment" : "-ldl",
|
||||
"role" : "libraries"
|
||||
},
|
||||
{
|
||||
"backtrace" : 3,
|
||||
"fragment" : "/usr/lib/libX11.so",
|
||||
"role" : "libraries"
|
||||
}
|
||||
],
|
||||
"language" : "C"
|
||||
},
|
||||
"name" : "windows",
|
||||
"nameOnDisk" : "windows",
|
||||
"paths" :
|
||||
{
|
||||
"build" : "libs/glfw/glfw-3.3.8/tests",
|
||||
"source" : "libs/glfw/glfw-3.3.8/tests"
|
||||
},
|
||||
"sourceGroups" :
|
||||
[
|
||||
{
|
||||
"name" : "Source Files",
|
||||
"sourceIndexes" :
|
||||
[
|
||||
0,
|
||||
2,
|
||||
4
|
||||
]
|
||||
},
|
||||
{
|
||||
"name" : "Header Files",
|
||||
"sourceIndexes" :
|
||||
[
|
||||
1,
|
||||
3
|
||||
]
|
||||
}
|
||||
],
|
||||
"sources" :
|
||||
[
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"compileGroupIndex" : 0,
|
||||
"path" : "libs/glfw/glfw-3.3.8/tests/windows.c",
|
||||
"sourceGroupIndex" : 0
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"path" : "libs/glfw/glfw-3.3.8/deps/getopt.h",
|
||||
"sourceGroupIndex" : 1
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"compileGroupIndex" : 0,
|
||||
"path" : "libs/glfw/glfw-3.3.8/deps/getopt.c",
|
||||
"sourceGroupIndex" : 0
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"path" : "libs/glfw/glfw-3.3.8/deps/glad/gl.h",
|
||||
"sourceGroupIndex" : 1
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"compileGroupIndex" : 0,
|
||||
"path" : "libs/glfw/glfw-3.3.8/deps/glad_gl.c",
|
||||
"sourceGroupIndex" : 0
|
||||
}
|
||||
],
|
||||
"type" : "EXECUTABLE"
|
||||
}
|
|
@ -0,0 +1,374 @@
|
|||
{
|
||||
"archive" : {},
|
||||
"artifacts" :
|
||||
[
|
||||
{
|
||||
"path" : "libs/assimp/contrib/zlib/libzlibstatic.a"
|
||||
}
|
||||
],
|
||||
"backtrace" : 1,
|
||||
"backtraceGraph" :
|
||||
{
|
||||
"commands" :
|
||||
[
|
||||
"add_library",
|
||||
"INSTALL",
|
||||
"ADD_DEFINITIONS",
|
||||
"add_definitions",
|
||||
"INCLUDE_DIRECTORIES",
|
||||
"include_directories"
|
||||
],
|
||||
"files" :
|
||||
[
|
||||
"libs/assimp/contrib/zlib/CMakeLists.txt",
|
||||
"libs/assimp/CMakeLists.txt"
|
||||
],
|
||||
"nodes" :
|
||||
[
|
||||
{
|
||||
"file" : 0
|
||||
},
|
||||
{
|
||||
"command" : 0,
|
||||
"file" : 0,
|
||||
"line" : 207,
|
||||
"parent" : 0
|
||||
},
|
||||
{
|
||||
"command" : 1,
|
||||
"file" : 0,
|
||||
"line" : 209,
|
||||
"parent" : 0
|
||||
},
|
||||
{
|
||||
"file" : 1
|
||||
},
|
||||
{
|
||||
"command" : 2,
|
||||
"file" : 1,
|
||||
"line" : 45,
|
||||
"parent" : 3
|
||||
},
|
||||
{
|
||||
"command" : 2,
|
||||
"file" : 1,
|
||||
"line" : 44,
|
||||
"parent" : 3
|
||||
},
|
||||
{
|
||||
"command" : 3,
|
||||
"file" : 0,
|
||||
"line" : 57,
|
||||
"parent" : 0
|
||||
},
|
||||
{
|
||||
"command" : 4,
|
||||
"file" : 1,
|
||||
"line" : 239,
|
||||
"parent" : 3
|
||||
},
|
||||
{
|
||||
"command" : 5,
|
||||
"file" : 0,
|
||||
"line" : 107,
|
||||
"parent" : 0
|
||||
}
|
||||
]
|
||||
},
|
||||
"compileGroups" :
|
||||
[
|
||||
{
|
||||
"compileCommandFragments" :
|
||||
[
|
||||
{
|
||||
"fragment" : "-fno-strict-aliasing -g -std=gnu99 -fPIC -fdiagnostics-color=always"
|
||||
}
|
||||
],
|
||||
"defines" :
|
||||
[
|
||||
{
|
||||
"backtrace" : 4,
|
||||
"define" : "ASSIMP_BUILD_NO_M3D_EXPORTER"
|
||||
},
|
||||
{
|
||||
"backtrace" : 5,
|
||||
"define" : "ASSIMP_BUILD_NO_M3D_IMPORTER"
|
||||
},
|
||||
{
|
||||
"backtrace" : 6,
|
||||
"define" : "_LARGEFILE64_SOURCE=1"
|
||||
}
|
||||
],
|
||||
"includes" :
|
||||
[
|
||||
{
|
||||
"backtrace" : 7,
|
||||
"path" : "/home/brett/git/parksandrec/cmake-build-debug-sanitizer/libs/assimp/include"
|
||||
},
|
||||
{
|
||||
"backtrace" : 7,
|
||||
"path" : "/home/brett/git/parksandrec/cmake-build-debug-sanitizer/libs/assimp"
|
||||
},
|
||||
{
|
||||
"backtrace" : 7,
|
||||
"path" : "/home/brett/git/parksandrec/libs/assimp/include"
|
||||
},
|
||||
{
|
||||
"backtrace" : 7,
|
||||
"path" : "/home/brett/git/parksandrec/libs/assimp/code"
|
||||
},
|
||||
{
|
||||
"backtrace" : 7,
|
||||
"path" : "/home/brett/git/parksandrec/libs/assimp/."
|
||||
},
|
||||
{
|
||||
"backtrace" : 8,
|
||||
"path" : "/home/brett/git/parksandrec/cmake-build-debug-sanitizer/libs/assimp/contrib/zlib"
|
||||
},
|
||||
{
|
||||
"backtrace" : 8,
|
||||
"path" : "/home/brett/git/parksandrec"
|
||||
}
|
||||
],
|
||||
"language" : "C",
|
||||
"languageStandard" :
|
||||
{
|
||||
"backtraces" :
|
||||
[
|
||||
1
|
||||
],
|
||||
"standard" : "99"
|
||||
},
|
||||
"sourceIndexes" :
|
||||
[
|
||||
0,
|
||||
1,
|
||||
2,
|
||||
3,
|
||||
4,
|
||||
5,
|
||||
6,
|
||||
7,
|
||||
8,
|
||||
9,
|
||||
10,
|
||||
11,
|
||||
12,
|
||||
13,
|
||||
14
|
||||
]
|
||||
}
|
||||
],
|
||||
"id" : "zlibstatic::@142f1425b4d57e544353",
|
||||
"install" :
|
||||
{
|
||||
"destinations" :
|
||||
[
|
||||
{
|
||||
"backtrace" : 2,
|
||||
"path" : "lib"
|
||||
}
|
||||
],
|
||||
"prefix" :
|
||||
{
|
||||
"path" : "/usr/local"
|
||||
}
|
||||
},
|
||||
"name" : "zlibstatic",
|
||||
"nameOnDisk" : "libzlibstatic.a",
|
||||
"paths" :
|
||||
{
|
||||
"build" : "libs/assimp/contrib/zlib",
|
||||
"source" : "libs/assimp/contrib/zlib"
|
||||
},
|
||||
"sourceGroups" :
|
||||
[
|
||||
{
|
||||
"name" : "Source Files",
|
||||
"sourceIndexes" :
|
||||
[
|
||||
0,
|
||||
1,
|
||||
2,
|
||||
3,
|
||||
4,
|
||||
5,
|
||||
6,
|
||||
7,
|
||||
8,
|
||||
9,
|
||||
10,
|
||||
11,
|
||||
12,
|
||||
13,
|
||||
14
|
||||
]
|
||||
},
|
||||
{
|
||||
"name" : "Header Files",
|
||||
"sourceIndexes" :
|
||||
[
|
||||
15,
|
||||
16,
|
||||
17,
|
||||
18,
|
||||
19,
|
||||
20,
|
||||
21,
|
||||
22,
|
||||
23,
|
||||
24,
|
||||
25
|
||||
]
|
||||
}
|
||||
],
|
||||
"sources" :
|
||||
[
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"compileGroupIndex" : 0,
|
||||
"path" : "libs/assimp/contrib/zlib/adler32.c",
|
||||
"sourceGroupIndex" : 0
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"compileGroupIndex" : 0,
|
||||
"path" : "libs/assimp/contrib/zlib/compress.c",
|
||||
"sourceGroupIndex" : 0
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"compileGroupIndex" : 0,
|
||||
"path" : "libs/assimp/contrib/zlib/crc32.c",
|
||||
"sourceGroupIndex" : 0
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"compileGroupIndex" : 0,
|
||||
"path" : "libs/assimp/contrib/zlib/deflate.c",
|
||||
"sourceGroupIndex" : 0
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"compileGroupIndex" : 0,
|
||||
"path" : "libs/assimp/contrib/zlib/gzclose.c",
|
||||
"sourceGroupIndex" : 0
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"compileGroupIndex" : 0,
|
||||
"path" : "libs/assimp/contrib/zlib/gzlib.c",
|
||||
"sourceGroupIndex" : 0
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"compileGroupIndex" : 0,
|
||||
"path" : "libs/assimp/contrib/zlib/gzread.c",
|
||||
"sourceGroupIndex" : 0
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"compileGroupIndex" : 0,
|
||||
"path" : "libs/assimp/contrib/zlib/gzwrite.c",
|
||||
"sourceGroupIndex" : 0
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"compileGroupIndex" : 0,
|
||||
"path" : "libs/assimp/contrib/zlib/inflate.c",
|
||||
"sourceGroupIndex" : 0
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"compileGroupIndex" : 0,
|
||||
"path" : "libs/assimp/contrib/zlib/infback.c",
|
||||
"sourceGroupIndex" : 0
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"compileGroupIndex" : 0,
|
||||
"path" : "libs/assimp/contrib/zlib/inftrees.c",
|
||||
"sourceGroupIndex" : 0
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"compileGroupIndex" : 0,
|
||||
"path" : "libs/assimp/contrib/zlib/inffast.c",
|
||||
"sourceGroupIndex" : 0
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"compileGroupIndex" : 0,
|
||||
"path" : "libs/assimp/contrib/zlib/trees.c",
|
||||
"sourceGroupIndex" : 0
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"compileGroupIndex" : 0,
|
||||
"path" : "libs/assimp/contrib/zlib/uncompr.c",
|
||||
"sourceGroupIndex" : 0
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"compileGroupIndex" : 0,
|
||||
"path" : "libs/assimp/contrib/zlib/zutil.c",
|
||||
"sourceGroupIndex" : 0
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"path" : "cmake-build-debug-sanitizer/libs/assimp/contrib/zlib/zconf.h",
|
||||
"sourceGroupIndex" : 1
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"path" : "libs/assimp/contrib/zlib/zlib.h",
|
||||
"sourceGroupIndex" : 1
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"path" : "libs/assimp/contrib/zlib/crc32.h",
|
||||
"sourceGroupIndex" : 1
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"path" : "libs/assimp/contrib/zlib/deflate.h",
|
||||
"sourceGroupIndex" : 1
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"path" : "libs/assimp/contrib/zlib/gzguts.h",
|
||||
"sourceGroupIndex" : 1
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"path" : "libs/assimp/contrib/zlib/inffast.h",
|
||||
"sourceGroupIndex" : 1
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"path" : "libs/assimp/contrib/zlib/inffixed.h",
|
||||
"sourceGroupIndex" : 1
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"path" : "libs/assimp/contrib/zlib/inflate.h",
|
||||
"sourceGroupIndex" : 1
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"path" : "libs/assimp/contrib/zlib/inftrees.h",
|
||||
"sourceGroupIndex" : 1
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"path" : "libs/assimp/contrib/zlib/trees.h",
|
||||
"sourceGroupIndex" : 1
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"path" : "libs/assimp/contrib/zlib/zutil.h",
|
||||
"sourceGroupIndex" : 1
|
||||
}
|
||||
],
|
||||
"type" : "STATIC_LIBRARY"
|
||||
}
|
|
@ -0,0 +1,103 @@
|
|||
{
|
||||
"kind" : "toolchains",
|
||||
"toolchains" :
|
||||
[
|
||||
{
|
||||
"compiler" :
|
||||
{
|
||||
"id" : "GNU",
|
||||
"implicit" :
|
||||
{
|
||||
"includeDirectories" :
|
||||
[
|
||||
"/usr/lib/gcc/x86_64-pc-linux-gnu/13.1.1/include",
|
||||
"/usr/local/include",
|
||||
"/usr/lib/gcc/x86_64-pc-linux-gnu/13.1.1/include-fixed",
|
||||
"/usr/include"
|
||||
],
|
||||
"linkDirectories" :
|
||||
[
|
||||
"/usr/lib/gcc/x86_64-pc-linux-gnu/13.1.1",
|
||||
"/usr/lib",
|
||||
"/lib"
|
||||
],
|
||||
"linkFrameworkDirectories" : [],
|
||||
"linkLibraries" :
|
||||
[
|
||||
"gcc",
|
||||
"gcc_s",
|
||||
"c",
|
||||
"gcc",
|
||||
"gcc_s"
|
||||
]
|
||||
},
|
||||
"path" : "/usr/bin/cc",
|
||||
"version" : "13.1.1"
|
||||
},
|
||||
"language" : "C",
|
||||
"sourceFileExtensions" :
|
||||
[
|
||||
"c",
|
||||
"m"
|
||||
]
|
||||
},
|
||||
{
|
||||
"compiler" :
|
||||
{
|
||||
"id" : "GNU",
|
||||
"implicit" :
|
||||
{
|
||||
"includeDirectories" :
|
||||
[
|
||||
"/usr/include/c++/13.1.1",
|
||||
"/usr/include/c++/13.1.1/x86_64-pc-linux-gnu",
|
||||
"/usr/include/c++/13.1.1/backward",
|
||||
"/usr/lib/gcc/x86_64-pc-linux-gnu/13.1.1/include",
|
||||
"/usr/local/include",
|
||||
"/usr/lib/gcc/x86_64-pc-linux-gnu/13.1.1/include-fixed",
|
||||
"/usr/include"
|
||||
],
|
||||
"linkDirectories" :
|
||||
[
|
||||
"/usr/lib/gcc/x86_64-pc-linux-gnu/13.1.1",
|
||||
"/usr/lib",
|
||||
"/lib"
|
||||
],
|
||||
"linkFrameworkDirectories" : [],
|
||||
"linkLibraries" :
|
||||
[
|
||||
"stdc++",
|
||||
"m",
|
||||
"gcc_s",
|
||||
"gcc",
|
||||
"c",
|
||||
"gcc_s",
|
||||
"gcc"
|
||||
]
|
||||
},
|
||||
"path" : "/usr/bin/c++",
|
||||
"version" : "13.1.1"
|
||||
},
|
||||
"language" : "CXX",
|
||||
"sourceFileExtensions" :
|
||||
[
|
||||
"C",
|
||||
"M",
|
||||
"c++",
|
||||
"cc",
|
||||
"cpp",
|
||||
"cxx",
|
||||
"mm",
|
||||
"mpp",
|
||||
"CPP",
|
||||
"ixx",
|
||||
"cppm"
|
||||
]
|
||||
}
|
||||
],
|
||||
"version" :
|
||||
{
|
||||
"major" : 1,
|
||||
"minor" : 0
|
||||
}
|
||||
}
|
Binary file not shown.
|
@ -0,0 +1,389 @@
|
|||
# ninja log v5
|
||||
1 303 1686872121277581635 CMakeFiles/parksnrec.dir/src/imgui/imgui_impl_glfw.cpp.o 4ac7694a81a797fc
|
||||
1 314 1686872121287581806 CMakeFiles/parksnrec.dir/src/imgui/imgui_impl_opengl3.cpp.o 21b9496f348d88e3
|
||||
2 349 1686872121324249099 CMakeFiles/parksnrec.dir/src/parks/app.cpp.o bec37c99823dfb0c
|
||||
304 741 1686872121717589155 libs/BLT/CMakeFiles/BLT.dir/src/blt/std/filesystem.cpp.o 20a1ed48830635b3
|
||||
314 872 1686872121847591376 libs/BLT/CMakeFiles/BLT.dir/src/blt/std/format.cpp.o 4c791d894043f966
|
||||
3 1054 1686872122030927843 CMakeFiles/parksnrec.dir/src/parks/window.cpp.o 23bae09b88469974
|
||||
2 1069 1686872122044261404 CMakeFiles/parksnrec.dir/src/parks/renderer/player.cpp.o 89a5a51897fe31c7
|
||||
349 1240 1686872122214264314 libs/BLT/CMakeFiles/BLT.dir/src/blt/std/loader.cpp.o 24a7398f5b39fd6c
|
||||
2 1291 1686872122264265170 CMakeFiles/parksnrec.dir/src/parks/main.cpp.o b8c541c9b633bc4
|
||||
2 1391 1686872122364266882 CMakeFiles/parksnrec.dir/src/parks/renderer/engine.cpp.o 4c721d32245d6af9
|
||||
1292 1431 1686872122407600957 libs/glfw/glfw-3.3.8/src/CMakeFiles/glfw.dir/context.c.o a98df5dbe34ab0b5
|
||||
872 1447 1686872122420934518 libs/BLT/CMakeFiles/BLT.dir/src/blt/std/system.cpp.o eb7aeadd84e45f81
|
||||
1391 1492 1686872122467601983 libs/glfw/glfw-3.3.8/src/CMakeFiles/glfw.dir/init.c.o d365624204582d37
|
||||
2 1559 1686872122534269791 CMakeFiles/parksnrec.dir/src/parks/renderer/resources.cpp.o 3035ce0654c71620
|
||||
1492 1595 1686872122570937086 libs/glfw/glfw-3.3.8/src/CMakeFiles/glfw.dir/vulkan.c.o 5a7558cbe684d251
|
||||
1447 1606 1686872122580937256 libs/glfw/glfw-3.3.8/src/CMakeFiles/glfw.dir/monitor.c.o 4246e72c66b93373
|
||||
1431 1659 1686872122634271503 libs/glfw/glfw-3.3.8/src/CMakeFiles/glfw.dir/input.c.o 6b2ed797cdd133c0
|
||||
1071 1666 1686872122640938284 libs/BLT/CMakeFiles/BLT.dir/src/blt/nbt/nbt.cpp.o 4d92384da16c101d
|
||||
1559 1701 1686872122677605578 libs/glfw/glfw-3.3.8/src/CMakeFiles/glfw.dir/window.c.o f35f9581a896944b
|
||||
1241 1704 1686872122677605578 libs/BLT/CMakeFiles/BLT.dir/src/blt/nbt/nbt_block.cpp.o 57bfb95c6fb2c612
|
||||
1606 1739 1686872122714272872 libs/glfw/glfw-3.3.8/src/CMakeFiles/glfw.dir/x11_monitor.c.o 5d73b68766ce5f8e
|
||||
1596 1748 1686872122724273044 libs/glfw/glfw-3.3.8/src/CMakeFiles/glfw.dir/x11_init.c.o 56bec6b7b94b1f5e
|
||||
1666 1757 1686872122730939824 libs/glfw/glfw-3.3.8/src/CMakeFiles/glfw.dir/xkb_unicode.c.o 9bf144f0f052e21f
|
||||
1702 1792 1686872122767607118 libs/glfw/glfw-3.3.8/src/CMakeFiles/glfw.dir/posix_time.c.o 89b27eb94c472dbe
|
||||
1704 1797 1686872122774273899 libs/glfw/glfw-3.3.8/src/CMakeFiles/glfw.dir/posix_thread.c.o 57b115f8cf294ea
|
||||
1739 1865 1686872122840941706 libs/glfw/glfw-3.3.8/src/CMakeFiles/glfw.dir/glx_context.c.o d3a2e05e521b8194
|
||||
1749 1872 1686872122847608488 libs/glfw/glfw-3.3.8/src/CMakeFiles/glfw.dir/egl_context.c.o 6648dc1b904c5d30
|
||||
1757 1872 1686872122847608488 libs/glfw/glfw-3.3.8/src/CMakeFiles/glfw.dir/osmesa_context.c.o 150e2e6d62e98082
|
||||
1793 1911 1686872122887609172 libs/glfw/glfw-3.3.8/src/CMakeFiles/glfw.dir/linux_joystick.c.o d3a99775086bb708
|
||||
1872 1921 1686872122897609343 libs/assimp/contrib/zlib/CMakeFiles/zlibstatic.dir/compress.c.o 3b4b6f580f362d3d
|
||||
1659 1921 1686872122897609343 libs/glfw/glfw-3.3.8/src/CMakeFiles/glfw.dir/x11_window.c.o 3c20b6f6e5f7b30b
|
||||
1912 1931 1686872122907609515 libs/assimp/code/CMakeFiles/assimp.dir/__/contrib/Open3DGC/o3dgcTools.cpp.o d4afdaff1927dc9b
|
||||
1932 1975 1686872122950943589 libs/assimp/contrib/zlib/CMakeFiles/zlibstatic.dir/gzclose.c.o 11dd42eb270f8223
|
||||
1921 1986 1686872122960943761 libs/glfw/glfw-3.3.8/src/libglfw3.a c835a1cf51ace55
|
||||
1872 2000 1686872122974277322 libs/assimp/contrib/zlib/CMakeFiles/zlibstatic.dir/adler32.c.o 49eabef80d006c45
|
||||
1865 2010 1686872122987610883 libs/assimp/contrib/zlib/CMakeFiles/zlibstatic.dir/crc32.c.o 43691c3b5e5780a5
|
||||
1976 2112 1686872123087612598 libs/assimp/contrib/zlib/CMakeFiles/zlibstatic.dir/gzlib.c.o fd334621f968574a
|
||||
1986 2180 1686872123154280407 libs/assimp/contrib/zlib/CMakeFiles/zlibstatic.dir/gzread.c.o 6a56811bdab39f0b
|
||||
2000 2199 1686872123174280750 libs/assimp/contrib/zlib/CMakeFiles/zlibstatic.dir/gzwrite.c.o cdb1ee7137c1597b
|
||||
741 2299 1686872123274282464 libs/BLT/CMakeFiles/BLT.dir/src/blt/std/logging.cpp.o fd438c5562949e6c
|
||||
2180 2365 1686872123340950273 libs/assimp/contrib/zlib/CMakeFiles/zlibstatic.dir/inftrees.c.o 9f21de583b7d9b92
|
||||
1798 2410 1686872123384284349 libs/assimp/code/CMakeFiles/assimp.dir/Common/IOSystem.cpp.o 4d1a42bbb680120c
|
||||
2365 2412 1686872123387617740 libs/assimp/contrib/zlib/CMakeFiles/zlibstatic.dir/uncompr.c.o 3ece06412fa4faad
|
||||
2113 2431 1686872123407618083 libs/assimp/contrib/zlib/CMakeFiles/zlibstatic.dir/infback.c.o 8937de8112e1e62b
|
||||
2410 2456 1686872123430951816 libs/assimp/contrib/zlib/CMakeFiles/zlibstatic.dir/zutil.c.o 77c7eabc1cc6a933
|
||||
2200 2486 1686872123460952330 libs/assimp/contrib/zlib/CMakeFiles/zlibstatic.dir/inffast.c.o 839b400369db6f32
|
||||
2011 2630 1686872123604288120 libs/assimp/contrib/zlib/CMakeFiles/zlibstatic.dir/inflate.c.o 905ea97ddab79b4c
|
||||
2300 2737 1686872123710956615 libs/assimp/contrib/zlib/CMakeFiles/zlibstatic.dir/trees.c.o 92ab02ac913a0285
|
||||
1921 2780 1686872123754290692 libs/assimp/contrib/zlib/CMakeFiles/zlibstatic.dir/deflate.c.o 532e1b9bc6d6051b
|
||||
2780 2838 1686872123814291720 libs/assimp/contrib/zlib/libzlibstatic.a 394ae933e0b1c326
|
||||
1055 2865 1686872123837625453 libs/BLT/CMakeFiles/BLT.dir/src/blt/profiling/profiler.cpp.o cb2fea981cf6e149
|
||||
1 2915 1686872123887626310 CMakeFiles/parksnrec.dir/src/imgui/imgui_demo.cpp.o 28effce332ed0f84
|
||||
2866 2943 1686872123914293434 libs/BLT/libBLT.a 1cce152d6cb9f40e
|
||||
2457 3312 1686872124287633174 libs/assimp/code/CMakeFiles/assimp.dir/Common/BaseProcess.cpp.o 3ff77c3c891c6f5f
|
||||
2486 3326 1686872124300966736 libs/assimp/code/CMakeFiles/assimp.dir/CApi/CInterfaceIOWrapper.cpp.o 5f229849da232800
|
||||
2431 3374 1686872124347634204 libs/assimp/code/CMakeFiles/assimp.dir/Common/Compression.cpp.o 2608e36239997f4c
|
||||
2630 3552 1686872124527637294 libs/assimp/code/CMakeFiles/assimp.dir/AssetLib/Assxml/AssxmlExporter.cpp.o 6a0187e43e475f76
|
||||
2915 3668 1686872124644305963 libs/assimp/code/CMakeFiles/assimp.dir/Common/scene.cpp.o 504b3f67d11c359b
|
||||
1 3935 1686872124907643817 CMakeFiles/parksnrec.dir/src/imgui/imgui_tables.cpp.o acd7b6007cde90df
|
||||
3326 3967 1686872124940977722 libs/assimp/code/CMakeFiles/assimp.dir/Common/DefaultIOStream.cpp.o a850018c049d565a
|
||||
2943 4325 1686872125300983910 libs/assimp/code/CMakeFiles/assimp.dir/Common/PostStepRegistry.cpp.o af18e7c0c30bf7e4
|
||||
3552 4684 1686872125660990099 libs/assimp/code/CMakeFiles/assimp.dir/Common/DefaultIOSystem.cpp.o b3d191778a523c83
|
||||
3967 4887 1686872125860993537 libs/assimp/code/CMakeFiles/assimp.dir/Common/SGSpatialSort.cpp.o e73606e37e73ffd2
|
||||
3935 4978 1686872125954328475 libs/assimp/code/CMakeFiles/assimp.dir/Common/SpatialSort.cpp.o 4ccf263ef6f8a2c
|
||||
3668 4991 1686872125967662038 libs/assimp/code/CMakeFiles/assimp.dir/Common/ZipArchiveIOSystem.cpp.o 6f3416e282fb0f9f
|
||||
2 5030 1686872126000995944 CMakeFiles/parksnrec.dir/src/parks/renderer/OpenGL.cpp.o 76f351d1fe2f76d9
|
||||
4325 5048 1686872126024329679 libs/assimp/code/CMakeFiles/assimp.dir/Common/VertexTriangleAdjacency.cpp.o b36000b21fa86a3
|
||||
5049 5720 1686872126694341214 libs/assimp/code/CMakeFiles/assimp.dir/Common/TargetAnimation.cpp.o 3d41ae12997a190e
|
||||
4978 5929 1686872126904344830 libs/assimp/code/CMakeFiles/assimp.dir/Common/ScenePreprocessor.cpp.o ad6123f9d2e12c26
|
||||
1 6027 1686872126994346380 CMakeFiles/parksnrec.dir/src/imgui/imgui_draw.cpp.o b1b27a05044e3904
|
||||
1 6122 1686872127091014713 CMakeFiles/parksnrec.dir/src/imgui/imgui_widgets.cpp.o 68f5a2e497f69e4f
|
||||
2838 6148 1686872127124348620 libs/assimp/code/CMakeFiles/assimp.dir/Common/BaseImporter.cpp.o 23d45ca3024a145c
|
||||
6148 6171 1686872127147682356 libs/assimp/code/CMakeFiles/assimp.dir/Common/simd.cpp.o f185c7a7aebc0421
|
||||
4991 6313 1686872127281017988 libs/assimp/code/CMakeFiles/assimp.dir/Common/SkeletonMeshBuilder.cpp.o 4be0a0c6867b1b5f
|
||||
5720 6322 1686872127297684942 libs/assimp/code/CMakeFiles/assimp.dir/Common/RemoveComments.cpp.o a29d8fb221050b8a
|
||||
5929 6523 1686872127497688390 libs/assimp/code/CMakeFiles/assimp.dir/Common/Bitmap.cpp.o 7ce637be1bdcaeb7
|
||||
5030 6752 1686872127727692356 libs/assimp/code/CMakeFiles/assimp.dir/Common/StandardShapes.cpp.o ca4d2f94d7616105
|
||||
6122 6798 1686872127774359827 libs/assimp/code/CMakeFiles/assimp.dir/Common/Exceptional.cpp.o 8e333ed771ec9650
|
||||
6171 6812 1686872127787693390 libs/assimp/code/CMakeFiles/assimp.dir/Common/CreateAnimMesh.cpp.o e2bd8e1946f05345
|
||||
6027 6869 1686872127844361034 libs/assimp/code/CMakeFiles/assimp.dir/Common/Version.cpp.o d575188452a11088
|
||||
6313 6876 1686872127851027815 libs/assimp/code/CMakeFiles/assimp.dir/Common/material.cpp.o baa119a6939a2823
|
||||
6523 6942 1686872127917695632 libs/assimp/code/CMakeFiles/assimp.dir/Common/AssertHandler.cpp.o ac39d9597e917389
|
||||
6322 7254 1686872128231034373 libs/assimp/code/CMakeFiles/assimp.dir/Common/Base64.cpp.o c55574b46227802a
|
||||
6813 7395 1686872128371036790 libs/assimp/code/CMakeFiles/assimp.dir/Geometry/GeometryUtils.cpp.o 3d49f037b963228c
|
||||
6876 7974 1686872128947712423 libs/assimp/code/CMakeFiles/assimp.dir/CApi/AssimpCExport.cpp.o 21bf410c6d878502
|
||||
6869 7990 1686872128964379291 libs/assimp/code/CMakeFiles/assimp.dir/Common/DefaultLogger.cpp.o 48df84d660128d53
|
||||
2412 8030 1686872129004379660 libs/assimp/code/CMakeFiles/assimp.dir/Common/Assimp.cpp.o a66e5b5061fd9634
|
||||
6752 8157 1686872129131042957 libs/assimp/code/CMakeFiles/assimp.dir/PostProcessing/ComputeUVMappingProcess.cpp.o f1e425519fa6b239
|
||||
4887 8158 1686872129134376201 libs/assimp/code/CMakeFiles/assimp.dir/Common/SceneCombiner.cpp.o 1e210472245f2d92
|
||||
3374 8264 1686872129237706785 libs/assimp/code/CMakeFiles/assimp.dir/Common/Importer.cpp.o f46fb7482b828ed8
|
||||
6942 8358 1686872129334370880 libs/assimp/code/CMakeFiles/assimp.dir/PostProcessing/CalcTangentsProcess.cpp.o c698263cfb6990ab
|
||||
7395 8533 1686872129507699601 libs/assimp/code/CMakeFiles/assimp.dir/PostProcessing/ConvertToLHProcess.cpp.o 93c5522b9e46d3ea
|
||||
4685 8544 1686872129521032580 libs/assimp/code/CMakeFiles/assimp.dir/Common/Subdivision.cpp.o 32d30c0ea9d76b1c
|
||||
2737 8643 1686872129617696674 libs/assimp/code/CMakeFiles/assimp.dir/AssetLib/Collada/ColladaExporter.cpp.o 11f09e941c543f53
|
||||
7254 8822 1686872129797691884 libs/assimp/code/CMakeFiles/assimp.dir/PostProcessing/EmbedTexturesProcess.cpp.o 303303ef4b4bfee6
|
||||
3312 8839 1686872129814358107 libs/assimp/code/CMakeFiles/assimp.dir/Common/ImporterRegistry.cpp.o f2983102dc5ed78f
|
||||
8158 9076 1686872130051018485 libs/assimp/code/CMakeFiles/assimp.dir/PostProcessing/DropFaceNormalsProcess.cpp.o 3ff802d3edfb7b7a
|
||||
8157 9123 1686872130097683917 libs/assimp/code/CMakeFiles/assimp.dir/PostProcessing/GenFaceNormalsProcess.cpp.o 7215774c471ba442
|
||||
8030 9356 1686872130331011080 libs/assimp/code/CMakeFiles/assimp.dir/PostProcessing/FindDegenerates.cpp.o 6c2af738e170ba7b
|
||||
8264 9435 1686872130411008965 libs/assimp/code/CMakeFiles/assimp.dir/PostProcessing/FixNormalsStep.cpp.o 664d3bf32e6c43a7
|
||||
7974 9508 1686872130484340359 libs/assimp/code/CMakeFiles/assimp.dir/PostProcessing/FindInvalidDataProcess.cpp.o 1849477bcf9652e1
|
||||
7991 9509 1686872130484340359 libs/assimp/code/CMakeFiles/assimp.dir/PostProcessing/FindInstancesProcess.cpp.o fb5f1e84297e5fc1
|
||||
8359 9632 1686872130607670430 libs/assimp/code/CMakeFiles/assimp.dir/PostProcessing/GenVertexNormalsProcess.cpp.o eeca78763c6cacb4
|
||||
8644 9776 1686872130750999973 libs/assimp/code/CMakeFiles/assimp.dir/PostProcessing/LimitBoneWeightsProcess.cpp.o 4bb8cf52cd3e9d4c
|
||||
8545 10065 1686872131040992311 libs/assimp/code/CMakeFiles/assimp.dir/PostProcessing/ImproveCacheLocality.cpp.o fdf0811a8e23dbe1
|
||||
0 10112 1686872131074324768 CMakeFiles/parksnrec.dir/src/imgui/imgui.cpp.o 1da5bcb74720630f
|
||||
8840 10322 1686872131297652231 libs/assimp/code/CMakeFiles/assimp.dir/PostProcessing/RemoveRedundantMaterials.cpp.o edb402ec808d9810
|
||||
6798 10372 1686872131347650917 libs/assimp/code/CMakeFiles/assimp.dir/Common/Exporter.cpp.o bf0441aae2927fa0
|
||||
9357 10413 1686872131387649865 libs/assimp/code/CMakeFiles/assimp.dir/PostProcessing/RemoveVCProcess.cpp.o 4e4eac8f779ee38b
|
||||
9776 10575 1686872131550978906 libs/assimp/code/CMakeFiles/assimp.dir/PostProcessing/MakeVerboseFormat.cpp.o 5f2f06335aa6e00f
|
||||
9509 10949 1686872131924302427 libs/assimp/code/CMakeFiles/assimp.dir/PostProcessing/TriangulateProcess.cpp.o fec86220b0698faf
|
||||
9124 11095 1686872132070965251 libs/assimp/code/CMakeFiles/assimp.dir/PostProcessing/ValidateDataStructure.cpp.o bce4a0f54d124dfd
|
||||
9435 11174 1686872132150963161 libs/assimp/code/CMakeFiles/assimp.dir/PostProcessing/SplitLargeMeshes.cpp.o 75b65742e11adc5a
|
||||
10413 11177 1686872132154296407 libs/assimp/code/CMakeFiles/assimp.dir/PostProcessing/GenBoundingBoxesProcess.cpp.o e59f5e1d2a603964
|
||||
9077 11288 1686872132264293534 libs/assimp/code/CMakeFiles/assimp.dir/PostProcessing/SortByPTypeProcess.cpp.o 1c4f4746219acf38
|
||||
8534 11316 1686872132290959504 libs/assimp/code/CMakeFiles/assimp.dir/PostProcessing/PretransformVertices.cpp.o 149d1cb69c57cc6e
|
||||
9633 11397 1686872132370957414 libs/assimp/code/CMakeFiles/assimp.dir/PostProcessing/ArmaturePopulate.cpp.o 99d4a362b63a6d9
|
||||
10575 11531 1686872132507620511 libs/assimp/code/CMakeFiles/assimp.dir/PostProcessing/ScaleProcess.cpp.o 38aa4e15d7808a33
|
||||
10112 11543 1686872132517620250 libs/assimp/code/CMakeFiles/assimp.dir/PostProcessing/OptimizeMeshes.cpp.o e2810e56b4d65f3b
|
||||
10372 11722 1686872132697615548 libs/assimp/code/CMakeFiles/assimp.dir/PostProcessing/ProcessHelper.cpp.o 55a769287418013e
|
||||
9508 11908 1686872132884277339 libs/assimp/code/CMakeFiles/assimp.dir/PostProcessing/TextureTransform.cpp.o cd26448559463064
|
||||
8822 12082 1686872133057606154 libs/assimp/code/CMakeFiles/assimp.dir/PostProcessing/JoinVerticesProcess.cpp.o eb52c330894c5548
|
||||
10065 12086 1686872133060939400 libs/assimp/code/CMakeFiles/assimp.dir/PostProcessing/OptimizeGraph.cpp.o d71723dbaf0dd8c3
|
||||
10323 12239 1686872133214268753 libs/assimp/code/CMakeFiles/assimp.dir/PostProcessing/DeboneProcess.cpp.o ee0560c1380b294e
|
||||
11175 12310 1686872133284266936 libs/assimp/code/CMakeFiles/assimp.dir/AssetLib/STEPParser/STEPFileEncoding.cpp.o d4127656830905ce
|
||||
11289 12694 1686872133670923565 libs/assimp/code/CMakeFiles/assimp.dir/AssetLib/AMF/AMFImporter_Geometry.cpp.o d765f4c137aa17ad
|
||||
11178 12901 1686872133877584867 libs/assimp/code/CMakeFiles/assimp.dir/Material/MaterialSystem.cpp.o 2de011362b286880
|
||||
11543 12905 1686872133880918114 libs/assimp/code/CMakeFiles/assimp.dir/AssetLib/MDL/HalfLife/UniqueNameGenerator.cpp.o f167a6005e6a2257
|
||||
10949 13466 1686872134440903646 libs/assimp/code/CMakeFiles/assimp.dir/PostProcessing/SplitByBoneCountProcess.cpp.o 243bd70e3b321d22
|
||||
11532 13473 1686872134447570142 libs/assimp/code/CMakeFiles/assimp.dir/AssetLib/AMF/AMFImporter_Material.cpp.o e577f43865355aaf
|
||||
11316 14457 1686872135430878174 libs/assimp/code/CMakeFiles/assimp.dir/AssetLib/AMF/AMFImporter_Postprocess.cpp.o c0bfa1aa71145ef3
|
||||
11908 14465 1686872135440877918 libs/assimp/code/CMakeFiles/assimp.dir/AssetLib/3DS/3DSConverter.cpp.o 4e0b154aba5ec0cb
|
||||
11397 14499 1686872135474210396 libs/assimp/code/CMakeFiles/assimp.dir/AssetLib/AMF/AMFImporter.cpp.o 1b54cf95205c065b
|
||||
13466 14801 1686872135777535952 libs/assimp/code/CMakeFiles/assimp.dir/AssetLib/Collada/ColladaHelper.cpp.o dddf7ebbaf8ca21f
|
||||
11096 15510 1686872136484184578 libs/assimp/code/CMakeFiles/assimp.dir/AssetLib/STEPParser/STEPFileReader.cpp.o 1a87df853746526
|
||||
12695 15517 1686872136490851075 libs/assimp/code/CMakeFiles/assimp.dir/AssetLib/Assbin/AssbinLoader.cpp.o 38a829f07ae1856f
|
||||
12239 16034 1686872137007504577 libs/assimp/code/CMakeFiles/assimp.dir/AssetLib/ASE/ASELoader.cpp.o 48e95b397a77e54b
|
||||
11726 16328 1686872137300830483 libs/assimp/code/CMakeFiles/assimp.dir/AssetLib/MDL/HalfLife/HL1MDLLoader.cpp.o 8ebadd15121a0e7e
|
||||
12087 16579 1686872137554157402 libs/assimp/code/CMakeFiles/assimp.dir/AssetLib/AC/ACLoader.cpp.o 9367e6bd28bf4075
|
||||
12901 16668 1686872137644155123 libs/assimp/code/CMakeFiles/assimp.dir/AssetLib/B3D/B3DImporter.cpp.o 263befc81d2471a0
|
||||
14801 16723 1686872137694153857 libs/assimp/code/CMakeFiles/assimp.dir/AssetLib/HMP/HMPLoader.cpp.o a35ac44aab4512bd
|
||||
12082 16827 1686872137800817823 libs/assimp/code/CMakeFiles/assimp.dir/AssetLib/3DS/3DSLoader.cpp.o 916073df603fc0f5
|
||||
12310 17009 1686872137984146514 libs/assimp/code/CMakeFiles/assimp.dir/AssetLib/ASE/ASEParser.cpp.o 1bc32834aee4631f
|
||||
12905 17115 1686872138090810494 libs/assimp/code/CMakeFiles/assimp.dir/AssetLib/BVH/BVHLoader.cpp.o 40fccd01eecf7cb6
|
||||
17115 17132 1686872138107476741 libs/assimp/code/CMakeFiles/assimp.dir/AssetLib/M3D/M3DImporter.cpp.o 8d178a8291fb3670
|
||||
14499 17146 1686872138120809739 libs/assimp/code/CMakeFiles/assimp.dir/AssetLib/CSM/CSMLoader.cpp.o 669b423525af6b80
|
||||
17132 17150 1686872138124142989 libs/assimp/code/CMakeFiles/assimp.dir/AssetLib/M3D/M3DWrapper.cpp.o d789e63e87775073
|
||||
15518 17722 1686872138697461896 libs/assimp/code/CMakeFiles/assimp.dir/AssetLib/Irr/IRRShared.cpp.o f993609d7759ce1f
|
||||
16034 18034 1686872139010787346 libs/assimp/code/CMakeFiles/assimp.dir/AssetLib/IQM/IQMImporter.cpp.o eb762217c5829560
|
||||
16579 18069 1686872139044119846 libs/assimp/code/CMakeFiles/assimp.dir/AssetLib/LWO/LWOAnimation.cpp.o a341e1bdfc58f813
|
||||
14465 18628 1686872139604105843 libs/assimp/code/CMakeFiles/assimp.dir/AssetLib/DXF/DXFLoader.cpp.o 26e2fed4e428cce1
|
||||
16668 18821 1686872139797434342 libs/assimp/code/CMakeFiles/assimp.dir/AssetLib/LWO/LWOBLoader.cpp.o bb6193d2d0c63c1c
|
||||
17147 18953 1686872139927431092 libs/assimp/code/CMakeFiles/assimp.dir/AssetLib/MD2/MD2Loader.cpp.o 7f683ce05f31d097
|
||||
13473 19551 1686872140527416171 libs/assimp/code/CMakeFiles/assimp.dir/AssetLib/Collada/ColladaLoader.cpp.o 432df71a9e7d01f9
|
||||
18070 19924 1686872140897406977 libs/assimp/code/CMakeFiles/assimp.dir/AssetLib/MDC/MDCLoader.cpp.o 909cebad1ec99177
|
||||
17010 20033 1686872141007404244 libs/assimp/code/CMakeFiles/assimp.dir/AssetLib/LWS/LWSLoader.cpp.o 651e30b3eed28372
|
||||
16827 20141 1686872141117401528 libs/assimp/code/CMakeFiles/assimp.dir/AssetLib/LWO/LWOMaterial.cpp.o 203bb8c905cd414c
|
||||
15510 20163 1686872141137401034 libs/assimp/code/CMakeFiles/assimp.dir/AssetLib/Irr/IRRMeshLoader.cpp.o cfa6e3365cf5dce9
|
||||
17722 20369 1686872141344062598 libs/assimp/code/CMakeFiles/assimp.dir/AssetLib/MD5/MD5Loader.cpp.o af118cdd0f92638
|
||||
18821 20450 1686872141424060623 libs/assimp/code/CMakeFiles/assimp.dir/AssetLib/MDL/MDLMaterialLoader.cpp.o 4abb9a7d64d844
|
||||
18034 21077 1686872142050711823 libs/assimp/code/CMakeFiles/assimp.dir/AssetLib/MD5/MD5Parser.cpp.o b8bcf24491bf09ca
|
||||
16328 21386 1686872142360704217 libs/assimp/code/CMakeFiles/assimp.dir/AssetLib/Irr/IRRLoader.cpp.o 26d6efd1025214f4
|
||||
19552 21484 1686872142460701764 libs/assimp/code/CMakeFiles/assimp.dir/AssetLib/Obj/ObjFileMtlImporter.cpp.o ae595dc78bbeb1b
|
||||
17150 21567 1686872142540699800 libs/assimp/code/CMakeFiles/assimp.dir/AssetLib/MD3/MD3Loader.cpp.o af0878e321d11d63
|
||||
20142 22165 1686872143140685100 libs/assimp/code/CMakeFiles/assimp.dir/AssetLib/OFF/OFFLoader.cpp.o 7278a4ca504beb8e
|
||||
18629 22406 1686872143380679249 libs/assimp/code/CMakeFiles/assimp.dir/AssetLib/MDL/MDLLoader.cpp.o 129f082cf20fc38e
|
||||
20164 22502 1686872143477343559 libs/assimp/code/CMakeFiles/assimp.dir/AssetLib/Obj/ObjFileImporter.cpp.o efe39aca7ae5af23
|
||||
16723 22563 1686872143537342096 libs/assimp/code/CMakeFiles/assimp.dir/AssetLib/LWO/LWOLoader.cpp.o 6856d590da3cc22
|
||||
20033 22692 1686872143667338926 libs/assimp/code/CMakeFiles/assimp.dir/AssetLib/NDO/NDOLoader.cpp.o e1536f8088933042
|
||||
21077 23601 1686872144577316829 libs/assimp/code/CMakeFiles/assimp.dir/AssetLib/Ogre/OgreImporter.cpp.o 7418c6216179d041
|
||||
18954 23779 1686872144753979215 libs/assimp/code/CMakeFiles/assimp.dir/AssetLib/Ogre/OgreBinarySerializer.cpp.o 35ccd411c10f9d1f
|
||||
20369 23990 1686872144963974128 libs/assimp/code/CMakeFiles/assimp.dir/AssetLib/OpenGEX/OpenGEXImporter.cpp.o ae8ec245ed0ede5d
|
||||
21567 24033 1686872145007306412 libs/assimp/code/CMakeFiles/assimp.dir/AssetLib/Blender/BlenderModifier.cpp.o fef9ba1672556dea
|
||||
22502 24220 1686872145193968585 libs/assimp/code/CMakeFiles/assimp.dir/AssetLib/Ply/PlyLoader.cpp.o ad41dc1575950417
|
||||
14457 24499 1686872145473961845 libs/assimp/code/CMakeFiles/assimp.dir/AssetLib/Collada/ColladaParser.cpp.o deffcdbd4a0b09e4
|
||||
22406 24528 1686872145503961123 libs/assimp/code/CMakeFiles/assimp.dir/AssetLib/Q3BSP/Q3BSPFileImporter.cpp.o 946d43d8781a73da
|
||||
20450 24718 1686872145693956549 libs/assimp/code/CMakeFiles/assimp.dir/AssetLib/Obj/ObjFileParser.cpp.o ab31eefbc31b2907
|
||||
22563 25474 1686872146450605069 libs/assimp/code/CMakeFiles/assimp.dir/AssetLib/Ply/PlyParser.cpp.o 600ebb836b1fc700
|
||||
21386 25926 1686872146900594305 libs/assimp/code/CMakeFiles/assimp.dir/AssetLib/Ogre/OgreStructs.cpp.o fe73f51565990bc0
|
||||
24220 26036 1686872147010591675 libs/assimp/code/CMakeFiles/assimp.dir/AssetLib/Blender/BlenderTessellator.cpp.o a1d42719e55828cc
|
||||
22692 26159 1686872147133922077 libs/assimp/code/CMakeFiles/assimp.dir/AssetLib/MS3D/MS3DLoader.cpp.o cf054fa3a85cd820
|
||||
19924 26182 1686872147157254856 libs/assimp/code/CMakeFiles/assimp.dir/AssetLib/NFF/NFFLoader.cpp.o 7de29325b706b3e8
|
||||
24718 26268 1686872147243919463 libs/assimp/code/CMakeFiles/assimp.dir/AssetLib/FBX/FBXBinaryTokenizer.cpp.o 26617e79f5d6793e
|
||||
24528 26675 1686872147650576464 libs/assimp/code/CMakeFiles/assimp.dir/AssetLib/Blender/BlenderCustomData.cpp.o 279cf34f6b48ded
|
||||
24499 26833 1686872147807239408 libs/assimp/code/CMakeFiles/assimp.dir/AssetLib/Blender/BlenderBMesh.cpp.o 504d62bdd39b019e
|
||||
21485 26970 1686872147943902826 libs/assimp/code/CMakeFiles/assimp.dir/AssetLib/Ogre/OgreXmlSerializer.cpp.o f12d0585223ab0d2
|
||||
23991 26998 1686872147970568859 libs/assimp/code/CMakeFiles/assimp.dir/AssetLib/Blender/BlenderDNA.cpp.o 4add965d6fd9d022
|
||||
22165 27328 1686872148303894316 libs/assimp/code/CMakeFiles/assimp.dir/AssetLib/Ogre/OgreMaterial.cpp.o c3882fdcaf3913c0
|
||||
23601 28077 1686872149050543358 libs/assimp/code/CMakeFiles/assimp.dir/AssetLib/COB/COBLoader.cpp.o 287bae8360ac4031
|
||||
23779 28666 1686872149640529515 libs/assimp/code/CMakeFiles/assimp.dir/AssetLib/Blender/BlenderLoader.cpp.o 70e16e6885eb9f6d
|
||||
26268 29498 1686872150473843366 libs/assimp/code/CMakeFiles/assimp.dir/AssetLib/IFC/IFCMaterial.cpp.o dd88f3f69f01e5f5
|
||||
28077 30210 1686872151183826841 libs/assimp/code/CMakeFiles/assimp.dir/AssetLib/FBX/FBXImporter.cpp.o 663b0c280fd2d631
|
||||
29498 30288 1686872151263824988 libs/assimp/code/CMakeFiles/assimp.dir/AssetLib/FBX/FBXTokenizer.cpp.o 484ed5f97a300f14
|
||||
26676 30483 1686872151457153844 libs/assimp/code/CMakeFiles/assimp.dir/AssetLib/IFC/IFCProfile.cpp.o cafc1cdd43189ed8
|
||||
26834 30706 1686872151680482004 libs/assimp/code/CMakeFiles/assimp.dir/AssetLib/IFC/IFCCurve.cpp.o fa836aab68fbaf14
|
||||
30288 30881 1686872151857144579 libs/assimp/code/CMakeFiles/assimp.dir/AssetLib/FBX/FBXUtil.cpp.o a9480685f2bdf931
|
||||
26159 31479 1686872152453797493 libs/assimp/code/CMakeFiles/assimp.dir/AssetLib/IFC/IFCUtil.cpp.o a45e199faf5e5bb9
|
||||
26183 31598 1686872152573794732 libs/assimp/code/CMakeFiles/assimp.dir/AssetLib/IFC/IFCGeometry.cpp.o c27a9815da4f90c5
|
||||
26036 31842 1686872152817122465 libs/assimp/code/CMakeFiles/assimp.dir/AssetLib/IFC/IFCReaderGen2_2x3.cpp.o 679cac185764b21c
|
||||
24033 32542 1686872153513773177 libs/assimp/code/CMakeFiles/assimp.dir/AssetLib/Blender/BlenderScene.cpp.o 37758bc101cb4220
|
||||
25474 32662 1686872153637103690 libs/assimp/code/CMakeFiles/assimp.dir/AssetLib/IFC/IFCLoader.cpp.o 864efdd3c465ac10
|
||||
27329 32669 1686872153643770205 libs/assimp/code/CMakeFiles/assimp.dir/AssetLib/XGL/XGLLoader.cpp.o 78efa6b08578d59b
|
||||
31598 32815 1686872153790433518 libs/assimp/code/CMakeFiles/assimp.dir/AssetLib/FBX/FBXModel.cpp.o 36fa5bb416591cb
|
||||
28666 32951 1686872153923763802 libs/assimp/code/CMakeFiles/assimp.dir/AssetLib/FBX/FBXParser.cpp.o cb815118a1bc8ffc
|
||||
30706 33007 1686872153980429174 libs/assimp/code/CMakeFiles/assimp.dir/AssetLib/FBX/FBXProperties.cpp.o ce50f65e57bc539a
|
||||
26970 33142 1686872154117092733 libs/assimp/code/CMakeFiles/assimp.dir/AssetLib/IFC/IFCBoolean.cpp.o 214c90d90f056ae9
|
||||
30484 33642 1686872154617081376 libs/assimp/code/CMakeFiles/assimp.dir/AssetLib/FBX/FBXDocument.cpp.o 8fe6896614343601
|
||||
31842 33797 1686872154770411226 libs/assimp/code/CMakeFiles/assimp.dir/AssetLib/FBX/FBXAnimation.cpp.o 2d5e0b425603b0b3
|
||||
31479 33812 1686872154787077514 libs/assimp/code/CMakeFiles/assimp.dir/AssetLib/FBX/FBXMaterial.cpp.o b0e44cbc779827ea
|
||||
32542 34102 1686872155077070938 libs/assimp/code/CMakeFiles/assimp.dir/AssetLib/FBX/FBXNodeAttribute.cpp.o bdea79687b70da6e
|
||||
33142 34439 1686872155413730007 libs/assimp/code/CMakeFiles/assimp.dir/AssetLib/Terragen/TerragenLoader.cpp.o 6a700568071827be
|
||||
32815 34581 1686872155557060106 libs/assimp/code/CMakeFiles/assimp.dir/AssetLib/FBX/FBXDocumentUtil.cpp.o daaab5071f91d8dc
|
||||
33007 34582 1686872155557060106 libs/assimp/code/CMakeFiles/assimp.dir/AssetLib/Q3BSP/Q3BSPFileParser.cpp.o 1845b38dfcc07321
|
||||
32662 34690 1686872155663724366 libs/assimp/code/CMakeFiles/assimp.dir/AssetLib/FBX/FBXDeformer.cpp.o cc68a7a927fa8906
|
||||
32669 34787 1686872155760388851 libs/assimp/code/CMakeFiles/assimp.dir/AssetLib/X3D/X3DImporter_Geometry2D.cpp.o a95543c2874056bd
|
||||
30881 35700 1686872156673701672 libs/assimp/code/CMakeFiles/assimp.dir/AssetLib/FBX/FBXMeshGeometry.cpp.o addaa4fd60b3093b
|
||||
26998 35903 1686872156877030447 libs/assimp/code/CMakeFiles/assimp.dir/AssetLib/IFC/IFCOpenings.cpp.o 3f99c1e841bdefff
|
||||
32952 36076 1686872157050359901 libs/assimp/code/CMakeFiles/assimp.dir/AssetLib/Q3D/Q3DLoader.cpp.o 4dd797aa6165c6d5
|
||||
34102 36436 1686872157410351883 libs/assimp/code/CMakeFiles/assimp.dir/AssetLib/STL/STLLoader.cpp.o 2a5c8789f87ed955
|
||||
33643 36517 1686872157490350102 libs/assimp/code/CMakeFiles/assimp.dir/AssetLib/Raw/RawLoader.cpp.o beaa2953c46c1ffb
|
||||
34582 37022 1686872157997005483 libs/assimp/code/CMakeFiles/assimp.dir/AssetLib/X/XFileImporter.cpp.o c9fcc79476fcd090
|
||||
34581 37282 1686872158256999729 libs/assimp/code/CMakeFiles/assimp.dir/AssetLib/Unreal/UnrealLoader.cpp.o 42ecdf6990c1ea03
|
||||
35702 37324 1686872158300332104 libs/assimp/code/CMakeFiles/assimp.dir/AssetLib/X3D/X3DImporter_Networking.cpp.o 50f656ee85014c15
|
||||
33798 37465 1686872158440329006 libs/assimp/code/CMakeFiles/assimp.dir/AssetLib/SIB/SIBImporter.cpp.o 9fb19573b863d2c5
|
||||
37324 37708 1686872158683656955 libs/assimp/code/CMakeFiles/assimp.dir/AssetLib/OpenGEX/OpenGEXExporter.cpp.o d34ed102c9e08b95
|
||||
34690 37737 1686872158710323033 libs/assimp/code/CMakeFiles/assimp.dir/AssetLib/X/XFileParser.cpp.o c84078f8873024df
|
||||
33812 37857 1686872158830320378 libs/assimp/code/CMakeFiles/assimp.dir/AssetLib/SMD/SMDLoader.cpp.o 2696079a3ea8ac33
|
||||
36076 37937 1686872158910318607 libs/assimp/code/CMakeFiles/assimp.dir/AssetLib/X3D/X3DImporter_Group.cpp.o 924c4b8e8bdc8806
|
||||
35903 38144 1686872159120313978 libs/assimp/code/CMakeFiles/assimp.dir/AssetLib/X3D/X3DImporter_Metadata.cpp.o 3f42a28bb606258c
|
||||
34439 38158 1686872159133647018 libs/assimp/code/CMakeFiles/assimp.dir/AssetLib/X3D/X3DImporter_Geometry3D.cpp.o 48f7958bd76f9a3f
|
||||
34787 38414 1686872159386974783 libs/assimp/code/CMakeFiles/assimp.dir/AssetLib/X3D/X3DImporter.cpp.o 238bbb3531f8f951
|
||||
36436 38416 1686872159390308043 libs/assimp/code/CMakeFiles/assimp.dir/AssetLib/X3D/X3DImporter_Light.cpp.o b6427623ebd4e631
|
||||
37022 38682 1686872159656968848 libs/assimp/code/CMakeFiles/assimp.dir/AssetLib/X3D/X3DImporter_Texturing.cpp.o 6bfa89d2ed7ff89c
|
||||
36517 38749 1686872159723634049 libs/assimp/code/CMakeFiles/assimp.dir/AssetLib/X3D/X3DImporter_Postprocess.cpp.o ec2beda2d2d3a3d6
|
||||
37937 39067 1686872160040293761 libs/assimp/code/CMakeFiles/assimp.dir/AssetLib/glTF/glTFCommon.cpp.o 4848c8b01a100241
|
||||
37465 39106 1686872160080292888 libs/assimp/code/CMakeFiles/assimp.dir/AssetLib/X3D/X3DImporter_Shape.cpp.o 227ff58e2237236a
|
||||
37708 39992 1686872160966940194 libs/assimp/code/CMakeFiles/assimp.dir/AssetLib/Assbin/AssbinFileWriter.cpp.o 5256f6de325b8254
|
||||
30210 40419 1686872161393597600 libs/assimp/code/CMakeFiles/assimp.dir/AssetLib/FBX/FBXConverter.cpp.o ee590a908ae2abdf
|
||||
37737 40567 1686872161540261086 libs/assimp/code/CMakeFiles/assimp.dir/AssetLib/X3D/X3DGeoHelper.cpp.o 28f9750deb42831a
|
||||
37283 40588 1686872161563593913 libs/assimp/code/CMakeFiles/assimp.dir/AssetLib/X3D/X3DImporter_Rendering.cpp.o 82aeccb9bcac2bd5
|
||||
37858 40871 1686872161843587839 libs/assimp/code/CMakeFiles/assimp.dir/AssetLib/X3D/X3DXmlHelper.cpp.o 5c907b76c898a079
|
||||
39106 40994 1686872161970251758 libs/assimp/code/CMakeFiles/assimp.dir/AssetLib/Obj/ObjExporter.cpp.o a5fa061d9b3abcd2
|
||||
40995 41021 1686872161996917846 libs/assimp/code/CMakeFiles/assimp.dir/AssetLib/M3D/M3DExporter.cpp.o 328738b269af8ae8
|
||||
38417 41099 1686872162073582861 libs/assimp/code/CMakeFiles/assimp.dir/AssetLib/3MF/D3MFImporter.cpp.o 96377178d7835dea
|
||||
38749 41553 1686872162526906426 libs/assimp/code/CMakeFiles/assimp.dir/AssetLib/MMD/MMDImporter.cpp.o 9d435dafc29367ae
|
||||
40588 41575 1686872162550239257 libs/assimp/code/CMakeFiles/assimp.dir/AssetLib/Assbin/AssbinExporter.cpp.o 23b534bbd3dcc94e
|
||||
38414 41582 1686872162556905780 libs/assimp/code/CMakeFiles/assimp.dir/AssetLib/3MF/XmlSerializer.cpp.o e1a55163ac7c9b48
|
||||
41021 41765 1686872162740235163 libs/assimp/code/CMakeFiles/assimp.dir/__/contrib/poly2tri/poly2tri/common/shapes.cc.o 74ef2e142d6bc3cf
|
||||
39992 41801 1686872162776901039 libs/assimp/code/CMakeFiles/assimp.dir/AssetLib/Assxml/AssxmlFileWriter.cpp.o a62988449c5a19c6
|
||||
40420 41973 1686872162946897377 libs/assimp/code/CMakeFiles/assimp.dir/AssetLib/Ply/PlyExporter.cpp.o 71102f17704513d2
|
||||
39067 42058 1686872163033562180 libs/assimp/code/CMakeFiles/assimp.dir/AssetLib/MMD/MMDPmxParser.cpp.o 4a7c2048bf000efd
|
||||
38682 42093 1686872163066894801 libs/assimp/code/CMakeFiles/assimp.dir/AssetLib/3MF/D3MFOpcPackage.cpp.o 8b1321b11e7fcf6f
|
||||
41583 42746 1686872163720214150 libs/assimp/code/CMakeFiles/assimp.dir/AssetLib/STL/STLExporter.cpp.o fd60fb4259f0abe1
|
||||
42746 42785 1686872163760213293 libs/assimp/code/CMakeFiles/assimp.dir/AssetLib/Assjson/cencode.c.o 4daad5fbfafc4b3c
|
||||
41575 42919 1686872163893543773 libs/assimp/code/CMakeFiles/assimp.dir/AssetLib/FBX/FBXExportProperty.cpp.o da6bb7fd168191bc
|
||||
40567 43191 1686872164166871280 libs/assimp/code/CMakeFiles/assimp.dir/AssetLib/3DS/3DSExporter.cpp.o 94e2ab42ca39a172
|
||||
42919 43935 1686872164910188809 libs/assimp/code/CMakeFiles/assimp.dir/AssetLib/Assjson/mesh_splitter.cpp.o 9fbbbaa22ff268d5
|
||||
43935 43996 1686872164970187533 libs/assimp/code/CMakeFiles/assimp.dir/__/contrib/unzip/crypt.c.o a5a192736f030822
|
||||
40871 44056 1686872165030186262 libs/assimp/code/CMakeFiles/assimp.dir/Pbrt/PbrtExporter.cpp.o 16f1bc5a998bce6e
|
||||
43997 44084 1686872165060185628 libs/assimp/code/CMakeFiles/assimp.dir/__/contrib/unzip/ioapi.c.o 8cadd07f93ad94b8
|
||||
41765 44143 1686872165116851098 libs/assimp/code/CMakeFiles/assimp.dir/AssetLib/X/XFileExporter.cpp.o a3eefa7992addb91
|
||||
42093 44403 1686872165376845607 libs/assimp/code/CMakeFiles/assimp.dir/AssetLib/3MF/D3MFExporter.cpp.o 8d740040811f5a3d
|
||||
44084 44425 1686872165400178448 libs/assimp/code/CMakeFiles/assimp.dir/__/contrib/poly2tri/poly2tri/sweep/advancing_front.cc.o e05fe7f2dc83d14
|
||||
41554 44524 1686872165496843073 libs/assimp/code/CMakeFiles/assimp.dir/AssetLib/FBX/FBXExportNode.cpp.o dbf110d255c73a22
|
||||
44056 44538 1686872165513509388 libs/assimp/code/CMakeFiles/assimp.dir/__/contrib/unzip/unzip.c.o 1581961c846cd48e
|
||||
44403 44813 1686872165786836949 libs/assimp/code/CMakeFiles/assimp.dir/__/contrib/poly2tri/poly2tri/sweep/cdt.cc.o 9b2cbdfaaf6aea42
|
||||
44143 45037 1686872166010165567 libs/assimp/code/CMakeFiles/assimp.dir/__/contrib/poly2tri/poly2tri/sweep/sweep.cc.o 400629439cbddc1
|
||||
44813 45190 1686872166163495683 libs/assimp/code/CMakeFiles/assimp.dir/__/contrib/openddlparser/code/OpenDDLCommon.cpp.o 8235e78b39610eae
|
||||
44425 45432 1686872166406823913 libs/assimp/code/CMakeFiles/assimp.dir/__/contrib/poly2tri/poly2tri/sweep/sweep_context.cc.o f20a1740a6e56450
|
||||
45037 45789 1686872166763483097 libs/assimp/code/CMakeFiles/assimp.dir/__/contrib/openddlparser/code/DDLNode.cpp.o 5c36d75b73d99e67
|
||||
45432 45853 1686872166826815102 libs/assimp/code/CMakeFiles/assimp.dir/__/contrib/openddlparser/code/OpenDDLStream.cpp.o 662a72cf373ca753
|
||||
41802 46062 1686872167036810703 libs/assimp/code/CMakeFiles/assimp.dir/AssetLib/X3D/X3DExporter.cpp.o 35e099a9a861f793
|
||||
43191 46092 1686872167066810078 libs/assimp/code/CMakeFiles/assimp.dir/AssetLib/Step/StepExporter.cpp.o 22350f2dd5c17bc9
|
||||
44524 46167 1686872167140141883 libs/assimp/code/CMakeFiles/assimp.dir/__/contrib/openddlparser/code/OpenDDLParser.cpp.o 94092b7dacb3162c
|
||||
45190 46241 1686872167216806952 libs/assimp/code/CMakeFiles/assimp.dir/__/contrib/openddlparser/code/OpenDDLExport.cpp.o 694ea77a5908085
|
||||
45853 46435 1686872167410136257 libs/assimp/code/CMakeFiles/assimp.dir/__/contrib/Open3DGC/o3dgcArithmeticCodec.cpp.o 7b5165207bbb1d6b
|
||||
45789 46557 1686872167530133757 libs/assimp/code/CMakeFiles/assimp.dir/__/contrib/openddlparser/code/Value.cpp.o 5ad10e2a3ca1c017
|
||||
46062 46609 1686872167583465979 libs/assimp/code/CMakeFiles/assimp.dir/__/contrib/Open3DGC/o3dgcDynamicVectorDecoder.cpp.o 781fa2c8e6b4c4ab
|
||||
42785 46680 1686872167653464521 libs/assimp/code/CMakeFiles/assimp.dir/AssetLib/Assjson/json_exporter.cpp.o 187ea89b98d45ab3
|
||||
46092 46810 1686872167786795076 libs/assimp/code/CMakeFiles/assimp.dir/__/contrib/Open3DGC/o3dgcDynamicVectorEncoder.cpp.o c6d7e5a74db5aefb
|
||||
46167 46904 1686872167880126465 libs/assimp/code/CMakeFiles/assimp.dir/__/contrib/Open3DGC/o3dgcTriangleFans.cpp.o e7054f016e58900f
|
||||
44538 47626 1686872168600111546 libs/assimp/code/CMakeFiles/assimp.dir/__/contrib/clipper/clipper.cpp.o 588607c268befc70
|
||||
46242 48064 1686872169036769181 libs/assimp/code/CMakeFiles/assimp.dir/__/contrib/zip/src/zip.c.o c6b79d9af33d3cc8
|
||||
38145 48217 1686872169190099363 libs/assimp/code/CMakeFiles/assimp.dir/AssetLib/glTF/glTFImporter.cpp.o b4258926a986525e
|
||||
41099 50862 1686872171836712000 libs/assimp/code/CMakeFiles/assimp.dir/AssetLib/FBX/FBXExporter.cpp.o e0341fec08066b42
|
||||
42058 51079 1686872172053374280 libs/assimp/code/CMakeFiles/assimp.dir/AssetLib/glTF2/glTF2Exporter.cpp.o d2f949d1575fe2c1
|
||||
38159 52630 1686872173603343150 libs/assimp/code/CMakeFiles/assimp.dir/AssetLib/glTF2/glTF2Importer.cpp.o d95b4b90b81ddfb4
|
||||
41974 52669 1686872173643342350 libs/assimp/code/CMakeFiles/assimp.dir/AssetLib/glTF/glTFExporter.cpp.o c92f8024c42558e6
|
||||
25926 57172 1686872178136587275 libs/assimp/code/CMakeFiles/assimp.dir/AssetLib/IFC/IFCReaderGen1_2x3.cpp.o ae3d71688f805084
|
||||
57173 57447 1686872178409915328 libs/assimp/lib/libassimp.a a23ff87184a0d85a
|
||||
57447 57671 1686872178643244154 parksnrec d1103a8adc0207e9
|
||||
4 1025 1686872640566220778 CMakeFiles/parksnrec.dir/src/parks/renderer/resources.cpp.o 3035ce0654c71620
|
||||
1026 1238 1686872640776222775 parksnrec d1103a8adc0207e9
|
||||
4 291 1686873606848140756 CMakeFiles/parksnrec.dir/src/parks/app.cpp.o bec37c99823dfb0c
|
||||
5 584 1686873607141469083 CMakeFiles/parksnrec.dir/src/parks/renderer/player.cpp.o 89a5a51897fe31c7
|
||||
5 624 1686873607181468401 CMakeFiles/parksnrec.dir/src/parks/window.cpp.o 23bae09b88469974
|
||||
4 747 1686873607304799631 CMakeFiles/parksnrec.dir/src/parks/main.cpp.o b8c541c9b633bc4
|
||||
4 763 1686873607321466014 CMakeFiles/parksnrec.dir/src/parks/renderer/engine.cpp.o 4c721d32245d6af9
|
||||
5 1134 1686873607691459706 CMakeFiles/parksnrec.dir/src/parks/renderer/resources.cpp.o 3035ce0654c71620
|
||||
1134 1353 1686873607908122679 parksnrec d1103a8adc0207e9
|
||||
4 280 1686873645740845481 CMakeFiles/parksnrec.dir/src/parks/app.cpp.o bec37c99823dfb0c
|
||||
5 593 1686873646054174030 CMakeFiles/parksnrec.dir/src/parks/renderer/player.cpp.o 89a5a51897fe31c7
|
||||
5 616 1686873646077507008 CMakeFiles/parksnrec.dir/src/parks/window.cpp.o 23bae09b88469974
|
||||
5 741 1686873646204171745 CMakeFiles/parksnrec.dir/src/parks/main.cpp.o b8c541c9b633bc4
|
||||
5 764 1686873646227504723 CMakeFiles/parksnrec.dir/src/parks/renderer/engine.cpp.o 4c721d32245d6af9
|
||||
5 1143 1686873646604165651 CMakeFiles/parksnrec.dir/src/parks/renderer/resources.cpp.o 3035ce0654c71620
|
||||
1143 1361 1686873646820829017 parksnrec d1103a8adc0207e9
|
||||
4 277 1686874197233999157 CMakeFiles/parksnrec.dir/src/parks/app.cpp.o bec37c99823dfb0c
|
||||
5 582 1686874197540665782 CMakeFiles/parksnrec.dir/src/parks/renderer/player.cpp.o 89a5a51897fe31c7
|
||||
5 600 1686874197557332446 CMakeFiles/parksnrec.dir/src/parks/window.cpp.o 23bae09b88469974
|
||||
4 736 1686874197693999095 CMakeFiles/parksnrec.dir/src/parks/main.cpp.o b8c541c9b633bc4
|
||||
4 758 1686874197713999092 CMakeFiles/parksnrec.dir/src/parks/renderer/engine.cpp.o 4c721d32245d6af9
|
||||
5 1141 1686874198097332375 CMakeFiles/parksnrec.dir/src/parks/renderer/resources.cpp.o 3035ce0654c71620
|
||||
1141 1351 1686874198307332350 parksnrec d1103a8adc0207e9
|
||||
4 267 1686875139284525962 CMakeFiles/parksnrec.dir/src/parks/app.cpp.o bec37c99823dfb0c
|
||||
4 577 1686875139594527953 CMakeFiles/parksnrec.dir/src/parks/renderer/player.cpp.o 89a5a51897fe31c7
|
||||
5 582 1686875139604528017 CMakeFiles/parksnrec.dir/src/parks/window.cpp.o 23bae09b88469974
|
||||
4 730 1686875139751195626 CMakeFiles/parksnrec.dir/src/parks/renderer/engine.cpp.o 4c721d32245d6af9
|
||||
4 731 1686875139754528981 CMakeFiles/parksnrec.dir/src/parks/main.cpp.o b8c541c9b633bc4
|
||||
731 949 1686875139964530329 parksnrec d1103a8adc0207e9
|
||||
4 520 1686875464207921281 CMakeFiles/parksnrec.dir/src/parks/renderer/player.cpp.o 89a5a51897fe31c7
|
||||
520 734 1686875464421241519 parksnrec d1103a8adc0207e9
|
||||
4 545 1686875513125035965 CMakeFiles/parksnrec.dir/src/parks/window.cpp.o 23bae09b88469974
|
||||
4 549 1686875513128369111 CMakeFiles/parksnrec.dir/src/parks/renderer/player.cpp.o 89a5a51897fe31c7
|
||||
549 758 1686875513335024083 parksnrec d1103a8adc0207e9
|
||||
4 573 1686875775212922724 CMakeFiles/parksnrec.dir/src/parks/renderer/player.cpp.o 89a5a51897fe31c7
|
||||
3 715 1686875775356250693 CMakeFiles/parksnrec.dir/src/parks/main.cpp.o b8c541c9b633bc4
|
||||
3 723 1686875775362917110 CMakeFiles/parksnrec.dir/src/parks/renderer/engine.cpp.o 4c721d32245d6af9
|
||||
4 1083 1686875775722903636 CMakeFiles/parksnrec.dir/src/parks/renderer/resources.cpp.o 3035ce0654c71620
|
||||
1083 1293 1686875775932895776 parksnrec d1103a8adc0207e9
|
||||
4 570 1686875957926913888 CMakeFiles/parksnrec.dir/src/parks/renderer/player.cpp.o 89a5a51897fe31c7
|
||||
4 587 1686875957943580073 CMakeFiles/parksnrec.dir/src/parks/window.cpp.o 23bae09b88469974
|
||||
4 714 1686875958066909851 CMakeFiles/parksnrec.dir/src/parks/main.cpp.o b8c541c9b633bc4
|
||||
4 724 1686875958076909562 CMakeFiles/parksnrec.dir/src/parks/renderer/engine.cpp.o 4c721d32245d6af9
|
||||
724 983 1686875958333568833 parksnrec d1103a8adc0207e9
|
||||
4 668 1686876016918611596 CMakeFiles/parksnrec.dir/src/parks/renderer/engine.cpp.o 4c721d32245d6af9
|
||||
668 886 1686876017135272488 parksnrec d1103a8adc0207e9
|
||||
4 538 1686876061884113975 CMakeFiles/parksnrec.dir/src/parks/window.cpp.o 23bae09b88469974
|
||||
539 757 1686876062097441943 parksnrec d1103a8adc0207e9
|
||||
4 564 1686876139995575398 CMakeFiles/parksnrec.dir/src/parks/renderer/player.cpp.o 89a5a51897fe31c7
|
||||
4 700 1686876140132238946 CMakeFiles/parksnrec.dir/src/parks/main.cpp.o b8c541c9b633bc4
|
||||
4 730 1686876140162238261 CMakeFiles/parksnrec.dir/src/parks/renderer/engine.cpp.o 4c721d32245d6af9
|
||||
730 956 1686876140385566498 parksnrec d1103a8adc0207e9
|
||||
5 609 1686876171044879335 CMakeFiles/parksnrec.dir/src/parks/renderer/player.cpp.o 89a5a51897fe31c7
|
||||
4 732 1686876171168209955 CMakeFiles/parksnrec.dir/src/parks/main.cpp.o b8c541c9b633bc4
|
||||
5 750 1686876171184876256 CMakeFiles/parksnrec.dir/src/parks/renderer/engine.cpp.o 4c721d32245d6af9
|
||||
750 978 1686876171411537937 parksnrec d1103a8adc0207e9
|
||||
4 532 1686876801061218661 CMakeFiles/parksnrec.dir/src/parks/window.cpp.o 23bae09b88469974
|
||||
532 742 1686876801267882713 parksnrec d1103a8adc0207e9
|
||||
4 516 1686876961235946458 CMakeFiles/parksnrec.dir/src/parks/renderer/player.cpp.o 89a5a51897fe31c7
|
||||
516 727 1686876961445944020 parksnrec d1103a8adc0207e9
|
||||
4 518 1686876984119015467 CMakeFiles/parksnrec.dir/src/parks/renderer/player.cpp.o 89a5a51897fe31c7
|
||||
518 730 1686876984329013054 parksnrec d1103a8adc0207e9
|
||||
4 510 1686877040768372725 CMakeFiles/parksnrec.dir/src/parks/renderer/player.cpp.o 89a5a51897fe31c7
|
||||
510 720 1686877040978370370 parksnrec d1103a8adc0207e9
|
||||
5 522 1686877193103381794 CMakeFiles/parksnrec.dir/src/parks/renderer/player.cpp.o 89a5a51897fe31c7
|
||||
522 737 1686877193316712869 parksnrec d1103a8adc0207e9
|
||||
4 277 1686877244352843725 CMakeFiles/parksnrec.dir/src/parks/app.cpp.o bec37c99823dfb0c
|
||||
5 582 1686877244656173900 CMakeFiles/parksnrec.dir/src/parks/renderer/player.cpp.o 89a5a51897fe31c7
|
||||
5 596 1686877244669507094 CMakeFiles/parksnrec.dir/src/parks/window.cpp.o 23bae09b88469974
|
||||
4 738 1686877244812838935 CMakeFiles/parksnrec.dir/src/parks/main.cpp.o b8c541c9b633bc4
|
||||
4 754 1686877244826172129 CMakeFiles/parksnrec.dir/src/parks/renderer/engine.cpp.o 4c721d32245d6af9
|
||||
5 1139 1686877245212834770 CMakeFiles/parksnrec.dir/src/parks/renderer/resources.cpp.o 3035ce0654c71620
|
||||
1139 1352 1686877245422832583 parksnrec d1103a8adc0207e9
|
||||
4 519 1686877358213876643 CMakeFiles/parksnrec.dir/src/parks/renderer/player.cpp.o 89a5a51897fe31c7
|
||||
520 739 1686877358430539055 parksnrec d1103a8adc0207e9
|
||||
4 522 1686877576096644020 CMakeFiles/parksnrec.dir/src/parks/renderer/player.cpp.o 89a5a51897fe31c7
|
||||
522 733 1686877576303307303 parksnrec d1103a8adc0207e9
|
||||
4 513 1686877769987000611 CMakeFiles/parksnrec.dir/src/parks/renderer/player.cpp.o 89a5a51897fe31c7
|
||||
513 729 1686877770200330864 parksnrec d1103a8adc0207e9
|
||||
4 511 1686877803703184803 CMakeFiles/parksnrec.dir/src/parks/renderer/player.cpp.o 89a5a51897fe31c7
|
||||
511 722 1686877803913181826 parksnrec d1103a8adc0207e9
|
||||
4 514 1686877816549669969 CMakeFiles/parksnrec.dir/src/parks/renderer/player.cpp.o 89a5a51897fe31c7
|
||||
514 726 1686877816759667012 parksnrec d1103a8adc0207e9
|
||||
4 512 1686877830582806452 CMakeFiles/parksnrec.dir/src/parks/renderer/player.cpp.o 89a5a51897fe31c7
|
||||
512 728 1686877830796136804 parksnrec d1103a8adc0207e9
|
||||
5 536 1686877853789150722 CMakeFiles/parksnrec.dir/src/parks/renderer/player.cpp.o 89a5a51897fe31c7
|
||||
537 747 1686877853999147821 parksnrec d1103a8adc0207e9
|
||||
4 526 1686877866178980145 CMakeFiles/parksnrec.dir/src/parks/renderer/player.cpp.o 89a5a51897fe31c7
|
||||
527 739 1686877866392310551 parksnrec d1103a8adc0207e9
|
||||
4 522 1686877999540538632 CMakeFiles/parksnrec.dir/src/parks/renderer/player.cpp.o 89a5a51897fe31c7
|
||||
522 734 1686877999750535917 parksnrec d1103a8adc0207e9
|
||||
3 525 1686878025183542200 CMakeFiles/parksnrec.dir/src/parks/renderer/player.cpp.o 89a5a51897fe31c7
|
||||
525 740 1686878025393539513 parksnrec d1103a8adc0207e9
|
||||
4 532 1686878118009041403 CMakeFiles/parksnrec.dir/src/parks/renderer/player.cpp.o 89a5a51897fe31c7
|
||||
532 744 1686878118219038805 parksnrec d1103a8adc0207e9
|
||||
4 526 1686878145888698074 CMakeFiles/parksnrec.dir/src/parks/renderer/player.cpp.o 89a5a51897fe31c7
|
||||
526 741 1686878146102028792 parksnrec d1103a8adc0207e9
|
File diff suppressed because it is too large
Load Diff
|
@ -0,0 +1,72 @@
|
|||
set(CMAKE_C_COMPILER "/usr/bin/cc")
|
||||
set(CMAKE_C_COMPILER_ARG1 "")
|
||||
set(CMAKE_C_COMPILER_ID "GNU")
|
||||
set(CMAKE_C_COMPILER_VERSION "13.1.1")
|
||||
set(CMAKE_C_COMPILER_VERSION_INTERNAL "")
|
||||
set(CMAKE_C_COMPILER_WRAPPER "")
|
||||
set(CMAKE_C_STANDARD_COMPUTED_DEFAULT "17")
|
||||
set(CMAKE_C_EXTENSIONS_COMPUTED_DEFAULT "ON")
|
||||
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 "Linux")
|
||||
set(CMAKE_C_SIMULATE_ID "")
|
||||
set(CMAKE_C_COMPILER_FRONTEND_VARIANT "GNU")
|
||||
set(CMAKE_C_SIMULATE_VERSION "")
|
||||
|
||||
|
||||
|
||||
|
||||
set(CMAKE_AR "/usr/bin/ar")
|
||||
set(CMAKE_C_COMPILER_AR "/usr/bin/gcc-ar")
|
||||
set(CMAKE_RANLIB "/usr/bin/ranlib")
|
||||
set(CMAKE_C_COMPILER_RANLIB "/usr/bin/gcc-ranlib")
|
||||
set(CMAKE_LINKER "/usr/bin/ld")
|
||||
set(CMAKE_MT "")
|
||||
set(CMAKE_COMPILER_IS_GNUCC 1)
|
||||
set(CMAKE_C_COMPILER_LOADED 1)
|
||||
set(CMAKE_C_COMPILER_WORKS TRUE)
|
||||
set(CMAKE_C_ABI_COMPILED TRUE)
|
||||
|
||||
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 "8")
|
||||
set(CMAKE_C_COMPILER_ABI "ELF")
|
||||
set(CMAKE_C_BYTE_ORDER "LITTLE_ENDIAN")
|
||||
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 "/usr/lib/gcc/x86_64-pc-linux-gnu/13.1.1/include;/usr/local/include;/usr/lib/gcc/x86_64-pc-linux-gnu/13.1.1/include-fixed;/usr/include")
|
||||
set(CMAKE_C_IMPLICIT_LINK_LIBRARIES "gcc;gcc_s;c;gcc;gcc_s")
|
||||
set(CMAKE_C_IMPLICIT_LINK_DIRECTORIES "/usr/lib/gcc/x86_64-pc-linux-gnu/13.1.1;/usr/lib;/lib")
|
||||
set(CMAKE_C_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "")
|
|
@ -0,0 +1,83 @@
|
|||
set(CMAKE_CXX_COMPILER "/usr/bin/c++")
|
||||
set(CMAKE_CXX_COMPILER_ARG1 "")
|
||||
set(CMAKE_CXX_COMPILER_ID "GNU")
|
||||
set(CMAKE_CXX_COMPILER_VERSION "13.1.1")
|
||||
set(CMAKE_CXX_COMPILER_VERSION_INTERNAL "")
|
||||
set(CMAKE_CXX_COMPILER_WRAPPER "")
|
||||
set(CMAKE_CXX_STANDARD_COMPUTED_DEFAULT "17")
|
||||
set(CMAKE_CXX_EXTENSIONS_COMPUTED_DEFAULT "ON")
|
||||
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 "Linux")
|
||||
set(CMAKE_CXX_SIMULATE_ID "")
|
||||
set(CMAKE_CXX_COMPILER_FRONTEND_VARIANT "GNU")
|
||||
set(CMAKE_CXX_SIMULATE_VERSION "")
|
||||
|
||||
|
||||
|
||||
|
||||
set(CMAKE_AR "/usr/bin/ar")
|
||||
set(CMAKE_CXX_COMPILER_AR "/usr/bin/gcc-ar")
|
||||
set(CMAKE_RANLIB "/usr/bin/ranlib")
|
||||
set(CMAKE_CXX_COMPILER_RANLIB "/usr/bin/gcc-ranlib")
|
||||
set(CMAKE_LINKER "/usr/bin/ld")
|
||||
set(CMAKE_MT "")
|
||||
set(CMAKE_COMPILER_IS_GNUCXX 1)
|
||||
set(CMAKE_CXX_COMPILER_LOADED 1)
|
||||
set(CMAKE_CXX_COMPILER_WORKS TRUE)
|
||||
set(CMAKE_CXX_ABI_COMPILED TRUE)
|
||||
|
||||
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 "8")
|
||||
set(CMAKE_CXX_COMPILER_ABI "ELF")
|
||||
set(CMAKE_CXX_BYTE_ORDER "LITTLE_ENDIAN")
|
||||
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 "/usr/include/c++/13.1.1;/usr/include/c++/13.1.1/x86_64-pc-linux-gnu;/usr/include/c++/13.1.1/backward;/usr/lib/gcc/x86_64-pc-linux-gnu/13.1.1/include;/usr/local/include;/usr/lib/gcc/x86_64-pc-linux-gnu/13.1.1/include-fixed;/usr/include")
|
||||
set(CMAKE_CXX_IMPLICIT_LINK_LIBRARIES "stdc++;m;gcc_s;gcc;c;gcc_s;gcc")
|
||||
set(CMAKE_CXX_IMPLICIT_LINK_DIRECTORIES "/usr/lib/gcc/x86_64-pc-linux-gnu/13.1.1;/usr/lib;/lib")
|
||||
set(CMAKE_CXX_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "")
|
Binary file not shown.
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue