mirror of
https://github.com/kuhyx/engineer-thesis-WUT.git
synced 2026-07-04 13:23:09 +02:00
chore: copy paste glm and glfw
This commit is contained in:
parent
f097369bab
commit
937acac0d7
16
.vscode/tasks.json
vendored
16
.vscode/tasks.json
vendored
@ -10,11 +10,11 @@
|
|||||||
"-I${workspaceFolder}/dependencies/include",
|
"-I${workspaceFolder}/dependencies/include",
|
||||||
"-L${workspaceFolder}/dependencies/library",
|
"-L${workspaceFolder}/dependencies/library",
|
||||||
"-Wall",
|
"-Wall",
|
||||||
"${workspaceFolder}/Engine/engine/*.hpp",
|
"${workspaceFolder}/learnOpenGl/engine/*.hpp",
|
||||||
"${workspaceFolder}/Engine/engine/*.cpp",
|
"${workspaceFolder}/learnOpenGl/engine/*.cpp",
|
||||||
"${workspaceFolder}/Engine/engine/glad.c",
|
"${workspaceFolder}/learnOpenGl/engine/glad.c",
|
||||||
"-o",
|
"-o",
|
||||||
"${workspaceFolder}/Engine/engine/match",
|
"${workspaceFolder}/learnOpenGl/engine/match",
|
||||||
"-lglut",
|
"-lglut",
|
||||||
"-lglfw",
|
"-lglfw",
|
||||||
"-lGLU",
|
"-lGLU",
|
||||||
@ -46,11 +46,11 @@
|
|||||||
"-I${workspaceFolder}/dependencies/include",
|
"-I${workspaceFolder}/dependencies/include",
|
||||||
"-L${workspaceFolder}/dependencies/library",
|
"-L${workspaceFolder}/dependencies/library",
|
||||||
"-Wall",
|
"-Wall",
|
||||||
"${workspaceFolder}/Engine/breakout/*.hpp",
|
"${workspaceFolder}/breakout/*.hpp",
|
||||||
"${workspaceFolder}/Engine/breakout/*.cpp",
|
"${workspaceFolder}/breakout/*.cpp",
|
||||||
"${workspaceFolder}/Engine/breakout/glad.c",
|
"${workspaceFolder}/breakout/glad.c",
|
||||||
"-o",
|
"-o",
|
||||||
"${workspaceFolder}/Engine/breakout/breakout",
|
"${workspaceFolder}/breakout/breakout",
|
||||||
"-lglut",
|
"-lglut",
|
||||||
"-lglfw",
|
"-lglfw",
|
||||||
"-lGLU",
|
"-lGLU",
|
||||||
|
|||||||
BIN
breakout/breakout
Normal file
BIN
breakout/breakout
Normal file
Binary file not shown.
48
breakout/glfw-3.3.8/CMake/GenerateMappings.cmake
Normal file
48
breakout/glfw-3.3.8/CMake/GenerateMappings.cmake
Normal file
@ -0,0 +1,48 @@
|
|||||||
|
# Usage:
|
||||||
|
# cmake -P GenerateMappings.cmake <path/to/mappings.h.in> <path/to/mappings.h>
|
||||||
|
|
||||||
|
set(source_url "https://raw.githubusercontent.com/gabomdq/SDL_GameControllerDB/master/gamecontrollerdb.txt")
|
||||||
|
set(source_path "${CMAKE_CURRENT_BINARY_DIR}/gamecontrollerdb.txt")
|
||||||
|
set(template_path "${CMAKE_ARGV3}")
|
||||||
|
set(target_path "${CMAKE_ARGV4}")
|
||||||
|
|
||||||
|
if (NOT EXISTS "${template_path}")
|
||||||
|
message(FATAL_ERROR "Failed to find template file ${template_path}")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
file(DOWNLOAD "${source_url}" "${source_path}"
|
||||||
|
STATUS download_status
|
||||||
|
TLS_VERIFY on)
|
||||||
|
|
||||||
|
list(GET download_status 0 status_code)
|
||||||
|
list(GET download_status 1 status_message)
|
||||||
|
|
||||||
|
if (status_code)
|
||||||
|
message(FATAL_ERROR "Failed to download ${source_url}: ${status_message}")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
file(STRINGS "${source_path}" lines)
|
||||||
|
foreach(line ${lines})
|
||||||
|
if (line MATCHES "^[0-9a-fA-F]")
|
||||||
|
if (line MATCHES "platform:Windows")
|
||||||
|
if (GLFW_WIN32_MAPPINGS)
|
||||||
|
set(GLFW_WIN32_MAPPINGS "${GLFW_WIN32_MAPPINGS}\n")
|
||||||
|
endif()
|
||||||
|
set(GLFW_WIN32_MAPPINGS "${GLFW_WIN32_MAPPINGS}\"${line}\",")
|
||||||
|
elseif (line MATCHES "platform:Mac OS X")
|
||||||
|
if (GLFW_COCOA_MAPPINGS)
|
||||||
|
set(GLFW_COCOA_MAPPINGS "${GLFW_COCOA_MAPPINGS}\n")
|
||||||
|
endif()
|
||||||
|
set(GLFW_COCOA_MAPPINGS "${GLFW_COCOA_MAPPINGS}\"${line}\",")
|
||||||
|
elseif (line MATCHES "platform:Linux")
|
||||||
|
if (GLFW_LINUX_MAPPINGS)
|
||||||
|
set(GLFW_LINUX_MAPPINGS "${GLFW_LINUX_MAPPINGS}\n")
|
||||||
|
endif()
|
||||||
|
set(GLFW_LINUX_MAPPINGS "${GLFW_LINUX_MAPPINGS}\"${line}\",")
|
||||||
|
endif()
|
||||||
|
endif()
|
||||||
|
endforeach()
|
||||||
|
|
||||||
|
configure_file("${template_path}" "${target_path}" @ONLY NEWLINE_STYLE UNIX)
|
||||||
|
file(REMOVE "${source_path}")
|
||||||
|
|
||||||
38
breakout/glfw-3.3.8/CMake/MacOSXBundleInfo.plist.in
Normal file
38
breakout/glfw-3.3.8/CMake/MacOSXBundleInfo.plist.in
Normal file
@ -0,0 +1,38 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||||
|
<plist version="1.0">
|
||||||
|
<dict>
|
||||||
|
<key>CFBundleDevelopmentRegion</key>
|
||||||
|
<string>English</string>
|
||||||
|
<key>CFBundleExecutable</key>
|
||||||
|
<string>${MACOSX_BUNDLE_EXECUTABLE_NAME}</string>
|
||||||
|
<key>CFBundleGetInfoString</key>
|
||||||
|
<string>${MACOSX_BUNDLE_INFO_STRING}</string>
|
||||||
|
<key>CFBundleIconFile</key>
|
||||||
|
<string>${MACOSX_BUNDLE_ICON_FILE}</string>
|
||||||
|
<key>CFBundleIdentifier</key>
|
||||||
|
<string>${MACOSX_BUNDLE_GUI_IDENTIFIER}</string>
|
||||||
|
<key>CFBundleInfoDictionaryVersion</key>
|
||||||
|
<string>6.0</string>
|
||||||
|
<key>CFBundleLongVersionString</key>
|
||||||
|
<string>${MACOSX_BUNDLE_LONG_VERSION_STRING}</string>
|
||||||
|
<key>CFBundleName</key>
|
||||||
|
<string>${MACOSX_BUNDLE_BUNDLE_NAME}</string>
|
||||||
|
<key>CFBundlePackageType</key>
|
||||||
|
<string>APPL</string>
|
||||||
|
<key>CFBundleShortVersionString</key>
|
||||||
|
<string>${MACOSX_BUNDLE_SHORT_VERSION_STRING}</string>
|
||||||
|
<key>CFBundleSignature</key>
|
||||||
|
<string>????</string>
|
||||||
|
<key>CFBundleVersion</key>
|
||||||
|
<string>${MACOSX_BUNDLE_BUNDLE_VERSION}</string>
|
||||||
|
<key>CSResourcesFileMapped</key>
|
||||||
|
<true/>
|
||||||
|
<key>LSRequiresCarbon</key>
|
||||||
|
<true/>
|
||||||
|
<key>NSHumanReadableCopyright</key>
|
||||||
|
<string>${MACOSX_BUNDLE_COPYRIGHT}</string>
|
||||||
|
<key>NSHighResolutionCapable</key>
|
||||||
|
<true/>
|
||||||
|
</dict>
|
||||||
|
</plist>
|
||||||
13
breakout/glfw-3.3.8/CMake/i686-w64-mingw32-clang.cmake
Normal file
13
breakout/glfw-3.3.8/CMake/i686-w64-mingw32-clang.cmake
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
# Define the environment for cross-compiling with 32-bit MinGW-w64 Clang
|
||||||
|
SET(CMAKE_SYSTEM_NAME Windows) # Target system name
|
||||||
|
SET(CMAKE_SYSTEM_VERSION 1)
|
||||||
|
SET(CMAKE_C_COMPILER "i686-w64-mingw32-clang")
|
||||||
|
SET(CMAKE_CXX_COMPILER "i686-w64-mingw32-clang++")
|
||||||
|
SET(CMAKE_RC_COMPILER "i686-w64-mingw32-windres")
|
||||||
|
SET(CMAKE_RANLIB "i686-w64-mingw32-ranlib")
|
||||||
|
|
||||||
|
# Configure the behaviour of the find commands
|
||||||
|
SET(CMAKE_FIND_ROOT_PATH "/usr/i686-w64-mingw32")
|
||||||
|
SET(CMAKE_FIND_ROOT_PATH_MODE_PROGRAM NEVER)
|
||||||
|
SET(CMAKE_FIND_ROOT_PATH_MODE_LIBRARY ONLY)
|
||||||
|
SET(CMAKE_FIND_ROOT_PATH_MODE_INCLUDE ONLY)
|
||||||
13
breakout/glfw-3.3.8/CMake/i686-w64-mingw32.cmake
Normal file
13
breakout/glfw-3.3.8/CMake/i686-w64-mingw32.cmake
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
# Define the environment for cross-compiling with 32-bit MinGW-w64 GCC
|
||||||
|
SET(CMAKE_SYSTEM_NAME Windows) # Target system name
|
||||||
|
SET(CMAKE_SYSTEM_VERSION 1)
|
||||||
|
SET(CMAKE_C_COMPILER "i686-w64-mingw32-gcc")
|
||||||
|
SET(CMAKE_CXX_COMPILER "i686-w64-mingw32-g++")
|
||||||
|
SET(CMAKE_RC_COMPILER "i686-w64-mingw32-windres")
|
||||||
|
SET(CMAKE_RANLIB "i686-w64-mingw32-ranlib")
|
||||||
|
|
||||||
|
# Configure the behaviour of the find commands
|
||||||
|
SET(CMAKE_FIND_ROOT_PATH "/usr/i686-w64-mingw32")
|
||||||
|
SET(CMAKE_FIND_ROOT_PATH_MODE_PROGRAM NEVER)
|
||||||
|
SET(CMAKE_FIND_ROOT_PATH_MODE_LIBRARY ONLY)
|
||||||
|
SET(CMAKE_FIND_ROOT_PATH_MODE_INCLUDE ONLY)
|
||||||
17
breakout/glfw-3.3.8/CMake/modules/FindEpollShim.cmake
Normal file
17
breakout/glfw-3.3.8/CMake/modules/FindEpollShim.cmake
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
# Find EpollShim
|
||||||
|
# Once done, this will define
|
||||||
|
#
|
||||||
|
# EPOLLSHIM_FOUND - System has EpollShim
|
||||||
|
# EPOLLSHIM_INCLUDE_DIRS - The EpollShim include directories
|
||||||
|
# EPOLLSHIM_LIBRARIES - The libraries needed to use EpollShim
|
||||||
|
|
||||||
|
find_path(EPOLLSHIM_INCLUDE_DIRS NAMES sys/epoll.h sys/timerfd.h HINTS /usr/local/include/libepoll-shim)
|
||||||
|
find_library(EPOLLSHIM_LIBRARIES NAMES epoll-shim libepoll-shim HINTS /usr/local/lib)
|
||||||
|
|
||||||
|
if (EPOLLSHIM_INCLUDE_DIRS AND EPOLLSHIM_LIBRARIES)
|
||||||
|
set(EPOLLSHIM_FOUND TRUE)
|
||||||
|
endif (EPOLLSHIM_INCLUDE_DIRS AND EPOLLSHIM_LIBRARIES)
|
||||||
|
|
||||||
|
include(FindPackageHandleStandardArgs)
|
||||||
|
find_package_handle_standard_args(EpollShim DEFAULT_MSG EPOLLSHIM_LIBRARIES EPOLLSHIM_INCLUDE_DIRS)
|
||||||
|
mark_as_advanced(EPOLLSHIM_INCLUDE_DIRS EPOLLSHIM_LIBRARIES)
|
||||||
18
breakout/glfw-3.3.8/CMake/modules/FindOSMesa.cmake
Normal file
18
breakout/glfw-3.3.8/CMake/modules/FindOSMesa.cmake
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
# Try to find OSMesa on a Unix system
|
||||||
|
#
|
||||||
|
# This will define:
|
||||||
|
#
|
||||||
|
# OSMESA_LIBRARIES - Link these to use OSMesa
|
||||||
|
# OSMESA_INCLUDE_DIR - Include directory for OSMesa
|
||||||
|
#
|
||||||
|
# Copyright (c) 2014 Brandon Schaefer <brandon.schaefer@canonical.com>
|
||||||
|
|
||||||
|
if (NOT WIN32)
|
||||||
|
|
||||||
|
find_package (PkgConfig)
|
||||||
|
pkg_check_modules (PKG_OSMESA QUIET osmesa)
|
||||||
|
|
||||||
|
set (OSMESA_INCLUDE_DIR ${PKG_OSMESA_INCLUDE_DIRS})
|
||||||
|
set (OSMESA_LIBRARIES ${PKG_OSMESA_LIBRARIES})
|
||||||
|
|
||||||
|
endif ()
|
||||||
26
breakout/glfw-3.3.8/CMake/modules/FindWaylandProtocols.cmake
Normal file
26
breakout/glfw-3.3.8/CMake/modules/FindWaylandProtocols.cmake
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
find_package(PkgConfig)
|
||||||
|
|
||||||
|
pkg_check_modules(WaylandProtocols QUIET wayland-protocols>=${WaylandProtocols_FIND_VERSION})
|
||||||
|
|
||||||
|
execute_process(COMMAND ${PKG_CONFIG_EXECUTABLE} --variable=pkgdatadir wayland-protocols
|
||||||
|
OUTPUT_VARIABLE WaylandProtocols_PKGDATADIR
|
||||||
|
RESULT_VARIABLE _pkgconfig_failed)
|
||||||
|
if (_pkgconfig_failed)
|
||||||
|
message(FATAL_ERROR "Missing wayland-protocols pkgdatadir")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
string(REGEX REPLACE "[\r\n]" "" WaylandProtocols_PKGDATADIR "${WaylandProtocols_PKGDATADIR}")
|
||||||
|
|
||||||
|
find_package_handle_standard_args(WaylandProtocols
|
||||||
|
FOUND_VAR
|
||||||
|
WaylandProtocols_FOUND
|
||||||
|
REQUIRED_VARS
|
||||||
|
WaylandProtocols_PKGDATADIR
|
||||||
|
VERSION_VAR
|
||||||
|
WaylandProtocols_VERSION
|
||||||
|
HANDLE_COMPONENTS
|
||||||
|
)
|
||||||
|
|
||||||
|
set(WAYLAND_PROTOCOLS_FOUND ${WaylandProtocols_FOUND})
|
||||||
|
set(WAYLAND_PROTOCOLS_PKGDATADIR ${WaylandProtocols_PKGDATADIR})
|
||||||
|
set(WAYLAND_PROTOCOLS_VERSION ${WaylandProtocols_VERSION})
|
||||||
34
breakout/glfw-3.3.8/CMake/modules/FindXKBCommon.cmake
Normal file
34
breakout/glfw-3.3.8/CMake/modules/FindXKBCommon.cmake
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
# - Try to find XKBCommon
|
||||||
|
# Once done, this will define
|
||||||
|
#
|
||||||
|
# XKBCOMMON_FOUND - System has XKBCommon
|
||||||
|
# XKBCOMMON_INCLUDE_DIRS - The XKBCommon include directories
|
||||||
|
# XKBCOMMON_LIBRARIES - The libraries needed to use XKBCommon
|
||||||
|
# XKBCOMMON_DEFINITIONS - Compiler switches required for using XKBCommon
|
||||||
|
|
||||||
|
find_package(PkgConfig)
|
||||||
|
pkg_check_modules(PC_XKBCOMMON QUIET xkbcommon)
|
||||||
|
set(XKBCOMMON_DEFINITIONS ${PC_XKBCOMMON_CFLAGS_OTHER})
|
||||||
|
|
||||||
|
find_path(XKBCOMMON_INCLUDE_DIR
|
||||||
|
NAMES xkbcommon/xkbcommon.h
|
||||||
|
HINTS ${PC_XKBCOMMON_INCLUDE_DIR} ${PC_XKBCOMMON_INCLUDE_DIRS}
|
||||||
|
)
|
||||||
|
|
||||||
|
find_library(XKBCOMMON_LIBRARY
|
||||||
|
NAMES xkbcommon
|
||||||
|
HINTS ${PC_XKBCOMMON_LIBRARY} ${PC_XKBCOMMON_LIBRARY_DIRS}
|
||||||
|
)
|
||||||
|
|
||||||
|
set(XKBCOMMON_LIBRARIES ${XKBCOMMON_LIBRARY})
|
||||||
|
set(XKBCOMMON_LIBRARY_DIRS ${XKBCOMMON_LIBRARY_DIRS})
|
||||||
|
set(XKBCOMMON_INCLUDE_DIRS ${XKBCOMMON_INCLUDE_DIR})
|
||||||
|
|
||||||
|
include(FindPackageHandleStandardArgs)
|
||||||
|
find_package_handle_standard_args(XKBCommon DEFAULT_MSG
|
||||||
|
XKBCOMMON_LIBRARY
|
||||||
|
XKBCOMMON_INCLUDE_DIR
|
||||||
|
)
|
||||||
|
|
||||||
|
mark_as_advanced(XKBCOMMON_LIBRARY XKBCOMMON_INCLUDE_DIR)
|
||||||
|
|
||||||
13
breakout/glfw-3.3.8/CMake/x86_64-w64-mingw32-clang.cmake
Normal file
13
breakout/glfw-3.3.8/CMake/x86_64-w64-mingw32-clang.cmake
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
# Define the environment for cross-compiling with 64-bit MinGW-w64 Clang
|
||||||
|
SET(CMAKE_SYSTEM_NAME Windows) # Target system name
|
||||||
|
SET(CMAKE_SYSTEM_VERSION 1)
|
||||||
|
SET(CMAKE_C_COMPILER "x86_64-w64-mingw32-clang")
|
||||||
|
SET(CMAKE_CXX_COMPILER "x86_64-w64-mingw32-clang++")
|
||||||
|
SET(CMAKE_RC_COMPILER "x86_64-w64-mingw32-windres")
|
||||||
|
SET(CMAKE_RANLIB "x86_64-w64-mingw32-ranlib")
|
||||||
|
|
||||||
|
# Configure the behaviour of the find commands
|
||||||
|
SET(CMAKE_FIND_ROOT_PATH "/usr/x86_64-w64-mingw32")
|
||||||
|
SET(CMAKE_FIND_ROOT_PATH_MODE_PROGRAM NEVER)
|
||||||
|
SET(CMAKE_FIND_ROOT_PATH_MODE_LIBRARY ONLY)
|
||||||
|
SET(CMAKE_FIND_ROOT_PATH_MODE_INCLUDE ONLY)
|
||||||
13
breakout/glfw-3.3.8/CMake/x86_64-w64-mingw32.cmake
Normal file
13
breakout/glfw-3.3.8/CMake/x86_64-w64-mingw32.cmake
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
# Define the environment for cross-compiling with 64-bit MinGW-w64 GCC
|
||||||
|
SET(CMAKE_SYSTEM_NAME Windows) # Target system name
|
||||||
|
SET(CMAKE_SYSTEM_VERSION 1)
|
||||||
|
SET(CMAKE_C_COMPILER "x86_64-w64-mingw32-gcc")
|
||||||
|
SET(CMAKE_CXX_COMPILER "x86_64-w64-mingw32-g++")
|
||||||
|
SET(CMAKE_RC_COMPILER "x86_64-w64-mingw32-windres")
|
||||||
|
SET(CMAKE_RANLIB "x86_64-w64-mingw32-ranlib")
|
||||||
|
|
||||||
|
# Configure the behaviour of the find commands
|
||||||
|
SET(CMAKE_FIND_ROOT_PATH "/usr/x86_64-w64-mingw32")
|
||||||
|
SET(CMAKE_FIND_ROOT_PATH_MODE_PROGRAM NEVER)
|
||||||
|
SET(CMAKE_FIND_ROOT_PATH_MODE_LIBRARY ONLY)
|
||||||
|
SET(CMAKE_FIND_ROOT_PATH_MODE_INCLUDE ONLY)
|
||||||
385
breakout/glfw-3.3.8/CMakeLists.txt
Normal file
385
breakout/glfw-3.3.8/CMakeLists.txt
Normal file
@ -0,0 +1,385 @@
|
|||||||
|
cmake_minimum_required(VERSION 3.0...3.20 FATAL_ERROR)
|
||||||
|
|
||||||
|
project(GLFW VERSION 3.3.8 LANGUAGES C)
|
||||||
|
|
||||||
|
set(CMAKE_LEGACY_CYGWIN_WIN32 OFF)
|
||||||
|
|
||||||
|
if (POLICY CMP0054)
|
||||||
|
cmake_policy(SET CMP0054 NEW)
|
||||||
|
endif()
|
||||||
|
|
||||||
|
if (POLICY CMP0069)
|
||||||
|
cmake_policy(SET CMP0069 NEW)
|
||||||
|
endif()
|
||||||
|
|
||||||
|
if (POLICY CMP0077)
|
||||||
|
cmake_policy(SET CMP0077 NEW)
|
||||||
|
endif()
|
||||||
|
|
||||||
|
set_property(GLOBAL PROPERTY USE_FOLDERS ON)
|
||||||
|
|
||||||
|
option(BUILD_SHARED_LIBS "Build shared libraries" OFF)
|
||||||
|
option(GLFW_BUILD_EXAMPLES "Build the GLFW example programs" ON)
|
||||||
|
option(GLFW_BUILD_TESTS "Build the GLFW test programs" ON)
|
||||||
|
option(GLFW_BUILD_DOCS "Build the GLFW documentation" ON)
|
||||||
|
option(GLFW_INSTALL "Generate installation target" ON)
|
||||||
|
option(GLFW_VULKAN_STATIC "Assume the Vulkan loader is linked with the application" OFF)
|
||||||
|
|
||||||
|
include(GNUInstallDirs)
|
||||||
|
include(CMakeDependentOption)
|
||||||
|
|
||||||
|
cmake_dependent_option(GLFW_USE_OSMESA "Use OSMesa for offscreen context creation" OFF
|
||||||
|
"UNIX" OFF)
|
||||||
|
cmake_dependent_option(GLFW_USE_HYBRID_HPG "Force use of high-performance GPU on hybrid systems" OFF
|
||||||
|
"WIN32" OFF)
|
||||||
|
cmake_dependent_option(GLFW_USE_WAYLAND "Use Wayland for window creation" OFF
|
||||||
|
"UNIX;NOT APPLE" OFF)
|
||||||
|
cmake_dependent_option(USE_MSVC_RUNTIME_LIBRARY_DLL "Use MSVC runtime library DLL" ON
|
||||||
|
"MSVC" OFF)
|
||||||
|
|
||||||
|
if (BUILD_SHARED_LIBS)
|
||||||
|
set(_GLFW_BUILD_DLL 1)
|
||||||
|
endif()
|
||||||
|
|
||||||
|
if (BUILD_SHARED_LIBS AND UNIX)
|
||||||
|
# On Unix-like systems, shared libraries can use the soname system.
|
||||||
|
set(GLFW_LIB_NAME glfw)
|
||||||
|
else()
|
||||||
|
set(GLFW_LIB_NAME glfw3)
|
||||||
|
endif()
|
||||||
|
|
||||||
|
if (GLFW_VULKAN_STATIC)
|
||||||
|
if (BUILD_SHARED_LIBS)
|
||||||
|
# If you absolutely must do this, remove this line and add the Vulkan
|
||||||
|
# loader static library via the CMAKE_SHARED_LINKER_FLAGS
|
||||||
|
message(FATAL_ERROR "You are trying to link the Vulkan loader static library into the GLFW shared library")
|
||||||
|
endif()
|
||||||
|
set(_GLFW_VULKAN_STATIC 1)
|
||||||
|
endif()
|
||||||
|
|
||||||
|
list(APPEND CMAKE_MODULE_PATH "${GLFW_SOURCE_DIR}/CMake/modules")
|
||||||
|
|
||||||
|
find_package(Threads REQUIRED)
|
||||||
|
|
||||||
|
if (GLFW_BUILD_DOCS)
|
||||||
|
set(DOXYGEN_SKIP_DOT TRUE)
|
||||||
|
find_package(Doxygen)
|
||||||
|
endif()
|
||||||
|
|
||||||
|
#--------------------------------------------------------------------
|
||||||
|
# Apply Microsoft C runtime library option
|
||||||
|
# This is here because it also applies to tests and examples
|
||||||
|
#--------------------------------------------------------------------
|
||||||
|
if (MSVC)
|
||||||
|
if (MSVC90)
|
||||||
|
# Workaround for VS 2008 not shipping with the DirectX 9 SDK
|
||||||
|
include(CheckIncludeFile)
|
||||||
|
check_include_file(dinput.h DINPUT_H_FOUND)
|
||||||
|
if (NOT DINPUT_H_FOUND)
|
||||||
|
message(FATAL_ERROR "DirectX 9 headers not found; install DirectX 9 SDK")
|
||||||
|
endif()
|
||||||
|
# Workaround for VS 2008 not shipping with stdint.h
|
||||||
|
list(APPEND glfw_INCLUDE_DIRS "${GLFW_SOURCE_DIR}/deps/vs2008")
|
||||||
|
endif()
|
||||||
|
endif()
|
||||||
|
|
||||||
|
if (MSVC AND NOT USE_MSVC_RUNTIME_LIBRARY_DLL)
|
||||||
|
if (CMAKE_VERSION VERSION_LESS 3.15)
|
||||||
|
foreach (flag CMAKE_C_FLAGS
|
||||||
|
CMAKE_C_FLAGS_DEBUG
|
||||||
|
CMAKE_C_FLAGS_RELEASE
|
||||||
|
CMAKE_C_FLAGS_MINSIZEREL
|
||||||
|
CMAKE_C_FLAGS_RELWITHDEBINFO)
|
||||||
|
|
||||||
|
if (flag MATCHES "/MD")
|
||||||
|
string(REGEX REPLACE "/MD" "/MT" ${flag} "${${flag}}")
|
||||||
|
endif()
|
||||||
|
if (flag MATCHES "/MDd")
|
||||||
|
string(REGEX REPLACE "/MDd" "/MTd" ${flag} "${${flag}}")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
endforeach()
|
||||||
|
else()
|
||||||
|
set(CMAKE_MSVC_RUNTIME_LIBRARY "MultiThreaded$<$<CONFIG:Debug>:Debug>")
|
||||||
|
endif()
|
||||||
|
endif()
|
||||||
|
|
||||||
|
if (MINGW)
|
||||||
|
# Workaround for legacy MinGW not providing XInput and DirectInput
|
||||||
|
include(CheckIncludeFile)
|
||||||
|
|
||||||
|
check_include_file(dinput.h DINPUT_H_FOUND)
|
||||||
|
check_include_file(xinput.h XINPUT_H_FOUND)
|
||||||
|
if (NOT DINPUT_H_FOUND OR NOT XINPUT_H_FOUND)
|
||||||
|
list(APPEND glfw_INCLUDE_DIRS "${GLFW_SOURCE_DIR}/deps/mingw")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
# Enable link-time exploit mitigation features enabled by default on MSVC
|
||||||
|
include(CheckCCompilerFlag)
|
||||||
|
|
||||||
|
# Compatibility with data execution prevention (DEP)
|
||||||
|
set(CMAKE_REQUIRED_FLAGS "-Wl,--nxcompat")
|
||||||
|
check_c_compiler_flag("" _GLFW_HAS_DEP)
|
||||||
|
if (_GLFW_HAS_DEP)
|
||||||
|
set(CMAKE_SHARED_LINKER_FLAGS "-Wl,--nxcompat ${CMAKE_SHARED_LINKER_FLAGS}")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
# Compatibility with address space layout randomization (ASLR)
|
||||||
|
set(CMAKE_REQUIRED_FLAGS "-Wl,--dynamicbase")
|
||||||
|
check_c_compiler_flag("" _GLFW_HAS_ASLR)
|
||||||
|
if (_GLFW_HAS_ASLR)
|
||||||
|
set(CMAKE_SHARED_LINKER_FLAGS "-Wl,--dynamicbase ${CMAKE_SHARED_LINKER_FLAGS}")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
# Compatibility with 64-bit address space layout randomization (ASLR)
|
||||||
|
set(CMAKE_REQUIRED_FLAGS "-Wl,--high-entropy-va")
|
||||||
|
check_c_compiler_flag("" _GLFW_HAS_64ASLR)
|
||||||
|
if (_GLFW_HAS_64ASLR)
|
||||||
|
set(CMAKE_SHARED_LINKER_FLAGS "-Wl,--high-entropy-va ${CMAKE_SHARED_LINKER_FLAGS}")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
# Clear flags again to avoid breaking later tests
|
||||||
|
set(CMAKE_REQUIRED_FLAGS)
|
||||||
|
endif()
|
||||||
|
|
||||||
|
#--------------------------------------------------------------------
|
||||||
|
# Detect and select backend APIs
|
||||||
|
#--------------------------------------------------------------------
|
||||||
|
if (GLFW_USE_WAYLAND)
|
||||||
|
set(_GLFW_WAYLAND 1)
|
||||||
|
message(STATUS "Using Wayland for window creation")
|
||||||
|
elseif (GLFW_USE_OSMESA)
|
||||||
|
set(_GLFW_OSMESA 1)
|
||||||
|
message(STATUS "Using OSMesa for headless context creation")
|
||||||
|
elseif (WIN32)
|
||||||
|
set(_GLFW_WIN32 1)
|
||||||
|
message(STATUS "Using Win32 for window creation")
|
||||||
|
elseif (APPLE)
|
||||||
|
set(_GLFW_COCOA 1)
|
||||||
|
message(STATUS "Using Cocoa for window creation")
|
||||||
|
elseif (UNIX)
|
||||||
|
set(_GLFW_X11 1)
|
||||||
|
message(STATUS "Using X11 for window creation")
|
||||||
|
else()
|
||||||
|
message(FATAL_ERROR "No supported platform was detected")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
#--------------------------------------------------------------------
|
||||||
|
# Find and add Unix math and time libraries
|
||||||
|
#--------------------------------------------------------------------
|
||||||
|
if (UNIX AND NOT APPLE)
|
||||||
|
find_library(RT_LIBRARY rt)
|
||||||
|
mark_as_advanced(RT_LIBRARY)
|
||||||
|
if (RT_LIBRARY)
|
||||||
|
list(APPEND glfw_LIBRARIES "${RT_LIBRARY}")
|
||||||
|
list(APPEND glfw_PKG_LIBS "-lrt")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
find_library(MATH_LIBRARY m)
|
||||||
|
mark_as_advanced(MATH_LIBRARY)
|
||||||
|
if (MATH_LIBRARY)
|
||||||
|
list(APPEND glfw_LIBRARIES "${MATH_LIBRARY}")
|
||||||
|
list(APPEND glfw_PKG_LIBS "-lm")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
if (CMAKE_DL_LIBS)
|
||||||
|
list(APPEND glfw_LIBRARIES "${CMAKE_DL_LIBS}")
|
||||||
|
list(APPEND glfw_PKG_LIBS "-l${CMAKE_DL_LIBS}")
|
||||||
|
endif()
|
||||||
|
endif()
|
||||||
|
|
||||||
|
#--------------------------------------------------------------------
|
||||||
|
# Use Win32 for window creation
|
||||||
|
#--------------------------------------------------------------------
|
||||||
|
if (_GLFW_WIN32)
|
||||||
|
|
||||||
|
list(APPEND glfw_PKG_LIBS "-lgdi32")
|
||||||
|
|
||||||
|
if (GLFW_USE_HYBRID_HPG)
|
||||||
|
set(_GLFW_USE_HYBRID_HPG 1)
|
||||||
|
endif()
|
||||||
|
endif()
|
||||||
|
|
||||||
|
#--------------------------------------------------------------------
|
||||||
|
# Use X11 for window creation
|
||||||
|
#--------------------------------------------------------------------
|
||||||
|
if (_GLFW_X11)
|
||||||
|
|
||||||
|
find_package(X11 REQUIRED)
|
||||||
|
|
||||||
|
list(APPEND glfw_PKG_DEPS "x11")
|
||||||
|
|
||||||
|
# Set up library and include paths
|
||||||
|
list(APPEND glfw_INCLUDE_DIRS "${X11_X11_INCLUDE_PATH}")
|
||||||
|
list(APPEND glfw_LIBRARIES "${X11_X11_LIB}" "${CMAKE_THREAD_LIBS_INIT}")
|
||||||
|
|
||||||
|
# Check for XRandR (modern resolution switching and gamma control)
|
||||||
|
if (NOT X11_Xrandr_INCLUDE_PATH)
|
||||||
|
message(FATAL_ERROR "RandR headers not found; install libxrandr development package")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
# Check for Xinerama (legacy multi-monitor support)
|
||||||
|
if (NOT X11_Xinerama_INCLUDE_PATH)
|
||||||
|
message(FATAL_ERROR "Xinerama headers not found; install libxinerama development package")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
# Check for Xkb (X keyboard extension)
|
||||||
|
if (NOT X11_Xkb_INCLUDE_PATH)
|
||||||
|
message(FATAL_ERROR "XKB headers not found; install X11 development package")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
# Check for Xcursor (cursor creation from RGBA images)
|
||||||
|
if (NOT X11_Xcursor_INCLUDE_PATH)
|
||||||
|
message(FATAL_ERROR "Xcursor headers not found; install libxcursor development package")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
# Check for XInput (modern HID input)
|
||||||
|
if (NOT X11_Xi_INCLUDE_PATH)
|
||||||
|
message(FATAL_ERROR "XInput headers not found; install libxi development package")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
list(APPEND glfw_INCLUDE_DIRS "${X11_Xrandr_INCLUDE_PATH}"
|
||||||
|
"${X11_Xinerama_INCLUDE_PATH}"
|
||||||
|
"${X11_Xkb_INCLUDE_PATH}"
|
||||||
|
"${X11_Xcursor_INCLUDE_PATH}"
|
||||||
|
"${X11_Xi_INCLUDE_PATH}")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
#--------------------------------------------------------------------
|
||||||
|
# Use Wayland for window creation
|
||||||
|
#--------------------------------------------------------------------
|
||||||
|
if (_GLFW_WAYLAND)
|
||||||
|
find_package(ECM REQUIRED NO_MODULE)
|
||||||
|
list(APPEND CMAKE_MODULE_PATH "${ECM_MODULE_PATH}")
|
||||||
|
|
||||||
|
find_package(Wayland REQUIRED Client Cursor Egl)
|
||||||
|
find_package(WaylandScanner REQUIRED)
|
||||||
|
find_package(WaylandProtocols 1.15 REQUIRED)
|
||||||
|
|
||||||
|
list(APPEND glfw_PKG_DEPS "wayland-client")
|
||||||
|
|
||||||
|
list(APPEND glfw_INCLUDE_DIRS "${Wayland_INCLUDE_DIRS}")
|
||||||
|
list(APPEND glfw_LIBRARIES "${Wayland_LIBRARIES}" "${CMAKE_THREAD_LIBS_INIT}")
|
||||||
|
|
||||||
|
find_package(XKBCommon REQUIRED)
|
||||||
|
list(APPEND glfw_INCLUDE_DIRS "${XKBCOMMON_INCLUDE_DIRS}")
|
||||||
|
|
||||||
|
include(CheckIncludeFiles)
|
||||||
|
include(CheckFunctionExists)
|
||||||
|
check_function_exists(memfd_create HAVE_MEMFD_CREATE)
|
||||||
|
|
||||||
|
if (NOT CMAKE_SYSTEM_NAME STREQUAL "Linux")
|
||||||
|
find_package(EpollShim)
|
||||||
|
if (EPOLLSHIM_FOUND)
|
||||||
|
list(APPEND glfw_INCLUDE_DIRS "${EPOLLSHIM_INCLUDE_DIRS}")
|
||||||
|
list(APPEND glfw_LIBRARIES "${EPOLLSHIM_LIBRARIES}")
|
||||||
|
endif()
|
||||||
|
endif()
|
||||||
|
endif()
|
||||||
|
|
||||||
|
#--------------------------------------------------------------------
|
||||||
|
# Use OSMesa for offscreen context creation
|
||||||
|
#--------------------------------------------------------------------
|
||||||
|
if (_GLFW_OSMESA)
|
||||||
|
find_package(OSMesa REQUIRED)
|
||||||
|
list(APPEND glfw_LIBRARIES "${CMAKE_THREAD_LIBS_INIT}")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
#--------------------------------------------------------------------
|
||||||
|
# Use Cocoa for window creation and NSOpenGL for context creation
|
||||||
|
#--------------------------------------------------------------------
|
||||||
|
if (_GLFW_COCOA)
|
||||||
|
|
||||||
|
list(APPEND glfw_LIBRARIES
|
||||||
|
"-framework Cocoa"
|
||||||
|
"-framework IOKit"
|
||||||
|
"-framework CoreFoundation")
|
||||||
|
|
||||||
|
set(glfw_PKG_DEPS "")
|
||||||
|
set(glfw_PKG_LIBS "-framework Cocoa -framework IOKit -framework CoreFoundation")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
#--------------------------------------------------------------------
|
||||||
|
# Add the Vulkan loader as a dependency if necessary
|
||||||
|
#--------------------------------------------------------------------
|
||||||
|
if (GLFW_VULKAN_STATIC)
|
||||||
|
list(APPEND glfw_PKG_DEPS "vulkan")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
#--------------------------------------------------------------------
|
||||||
|
# Export GLFW library dependencies
|
||||||
|
#--------------------------------------------------------------------
|
||||||
|
foreach(arg ${glfw_PKG_DEPS})
|
||||||
|
set(GLFW_PKG_DEPS "${GLFW_PKG_DEPS} ${arg}")
|
||||||
|
endforeach()
|
||||||
|
foreach(arg ${glfw_PKG_LIBS})
|
||||||
|
set(GLFW_PKG_LIBS "${GLFW_PKG_LIBS} ${arg}")
|
||||||
|
endforeach()
|
||||||
|
|
||||||
|
#--------------------------------------------------------------------
|
||||||
|
# Create generated files
|
||||||
|
#--------------------------------------------------------------------
|
||||||
|
include(CMakePackageConfigHelpers)
|
||||||
|
|
||||||
|
set(GLFW_CONFIG_PATH "${CMAKE_INSTALL_LIBDIR}/cmake/glfw3")
|
||||||
|
|
||||||
|
configure_package_config_file(src/glfw3Config.cmake.in
|
||||||
|
src/glfw3Config.cmake
|
||||||
|
INSTALL_DESTINATION "${GLFW_CONFIG_PATH}"
|
||||||
|
NO_CHECK_REQUIRED_COMPONENTS_MACRO)
|
||||||
|
|
||||||
|
write_basic_package_version_file(src/glfw3ConfigVersion.cmake
|
||||||
|
VERSION ${GLFW_VERSION}
|
||||||
|
COMPATIBILITY SameMajorVersion)
|
||||||
|
|
||||||
|
configure_file(src/glfw_config.h.in src/glfw_config.h @ONLY)
|
||||||
|
|
||||||
|
configure_file(src/glfw3.pc.in src/glfw3.pc @ONLY)
|
||||||
|
|
||||||
|
#--------------------------------------------------------------------
|
||||||
|
# Add subdirectories
|
||||||
|
#--------------------------------------------------------------------
|
||||||
|
add_subdirectory(src)
|
||||||
|
|
||||||
|
if (GLFW_BUILD_EXAMPLES)
|
||||||
|
add_subdirectory(examples)
|
||||||
|
endif()
|
||||||
|
|
||||||
|
if (GLFW_BUILD_TESTS)
|
||||||
|
add_subdirectory(tests)
|
||||||
|
endif()
|
||||||
|
|
||||||
|
if (DOXYGEN_FOUND AND GLFW_BUILD_DOCS)
|
||||||
|
add_subdirectory(docs)
|
||||||
|
endif()
|
||||||
|
|
||||||
|
#--------------------------------------------------------------------
|
||||||
|
# Install files other than the library
|
||||||
|
# The library is installed by src/CMakeLists.txt
|
||||||
|
#--------------------------------------------------------------------
|
||||||
|
if (GLFW_INSTALL)
|
||||||
|
install(DIRECTORY include/GLFW DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}
|
||||||
|
FILES_MATCHING PATTERN glfw3.h PATTERN glfw3native.h)
|
||||||
|
|
||||||
|
install(FILES "${GLFW_BINARY_DIR}/src/glfw3Config.cmake"
|
||||||
|
"${GLFW_BINARY_DIR}/src/glfw3ConfigVersion.cmake"
|
||||||
|
DESTINATION "${GLFW_CONFIG_PATH}")
|
||||||
|
|
||||||
|
install(EXPORT glfwTargets FILE glfw3Targets.cmake
|
||||||
|
EXPORT_LINK_INTERFACE_LIBRARIES
|
||||||
|
DESTINATION "${GLFW_CONFIG_PATH}")
|
||||||
|
install(FILES "${GLFW_BINARY_DIR}/src/glfw3.pc"
|
||||||
|
DESTINATION "${CMAKE_INSTALL_LIBDIR}/pkgconfig")
|
||||||
|
|
||||||
|
# Only generate this target if no higher-level project already has
|
||||||
|
if (NOT TARGET uninstall)
|
||||||
|
configure_file(cmake_uninstall.cmake.in
|
||||||
|
cmake_uninstall.cmake IMMEDIATE @ONLY)
|
||||||
|
|
||||||
|
add_custom_target(uninstall
|
||||||
|
"${CMAKE_COMMAND}" -P
|
||||||
|
"${GLFW_BINARY_DIR}/cmake_uninstall.cmake")
|
||||||
|
set_target_properties(uninstall PROPERTIES FOLDER "GLFW3")
|
||||||
|
endif()
|
||||||
|
endif()
|
||||||
|
|
||||||
250
breakout/glfw-3.3.8/CONTRIBUTORS.md
Normal file
250
breakout/glfw-3.3.8/CONTRIBUTORS.md
Normal file
@ -0,0 +1,250 @@
|
|||||||
|
# Acknowledgements
|
||||||
|
|
||||||
|
GLFW exists because people around the world donated their time and lent their
|
||||||
|
skills. This list only includes contributions to the main repository and
|
||||||
|
excludes other invaluable contributions like language bindings and text and
|
||||||
|
video tutorials.
|
||||||
|
|
||||||
|
- Bobyshev Alexander
|
||||||
|
- Laurent Aphecetche
|
||||||
|
- Matt Arsenault
|
||||||
|
- ashishgamedev
|
||||||
|
- David Avedissian
|
||||||
|
- Keith Bauer
|
||||||
|
- John Bartholomew
|
||||||
|
- Coşku Baş
|
||||||
|
- Niklas Behrens
|
||||||
|
- Andrew Belt
|
||||||
|
- Nevyn Bengtsson
|
||||||
|
- Niklas Bergström
|
||||||
|
- Denis Bernard
|
||||||
|
- BiBi
|
||||||
|
- Doug Binks
|
||||||
|
- blanco
|
||||||
|
- Waris Boonyasiriwat
|
||||||
|
- Kyle Brenneman
|
||||||
|
- Rok Breulj
|
||||||
|
- TheBrokenRail
|
||||||
|
- Kai Burjack
|
||||||
|
- Martin Capitanio
|
||||||
|
- Nicolas Caramelli
|
||||||
|
- David Carlier
|
||||||
|
- Arturo Castro
|
||||||
|
- Chi-kwan Chan
|
||||||
|
- TheChocolateOre
|
||||||
|
- Joseph Chua
|
||||||
|
- Ian Clarkson
|
||||||
|
- Michał Cichoń
|
||||||
|
- Lambert Clara
|
||||||
|
- Anna Clarke
|
||||||
|
- Josh Codd
|
||||||
|
- Yaron Cohen-Tal
|
||||||
|
- Omar Cornut
|
||||||
|
- Andrew Corrigan
|
||||||
|
- Bailey Cosier
|
||||||
|
- Noel Cower
|
||||||
|
- CuriouserThing
|
||||||
|
- Jason Daly
|
||||||
|
- danhambleton
|
||||||
|
- Jarrod Davis
|
||||||
|
- Olivier Delannoy
|
||||||
|
- Paul R. Deppe
|
||||||
|
- Michael Dickens
|
||||||
|
- Роман Донченко
|
||||||
|
- Mario Dorn
|
||||||
|
- Wolfgang Draxinger
|
||||||
|
- Jonathan Dummer
|
||||||
|
- Ralph Eastwood
|
||||||
|
- Fredrik Ehnbom
|
||||||
|
- Robin Eklind
|
||||||
|
- Jan Ekström
|
||||||
|
- Siavash Eliasi
|
||||||
|
- TheExileFox
|
||||||
|
- Nikita Fediuchin
|
||||||
|
- Felipe Ferreira
|
||||||
|
- Michael Fogleman
|
||||||
|
- Jason Francis
|
||||||
|
- Gerald Franz
|
||||||
|
- Mário Freitas
|
||||||
|
- GeO4d
|
||||||
|
- Marcus Geelnard
|
||||||
|
- ghuser404
|
||||||
|
- Charles Giessen
|
||||||
|
- Ryan C. Gordon
|
||||||
|
- Stephen Gowen
|
||||||
|
- Kovid Goyal
|
||||||
|
- Kevin Grandemange
|
||||||
|
- Eloi Marín Gratacós
|
||||||
|
- Stefan Gustavson
|
||||||
|
- Andrew Gutekanst
|
||||||
|
- Stephen Gutekanst
|
||||||
|
- Jonathan Hale
|
||||||
|
- hdf89shfdfs
|
||||||
|
- Sylvain Hellegouarch
|
||||||
|
- Matthew Henry
|
||||||
|
- heromyth
|
||||||
|
- Lucas Hinderberger
|
||||||
|
- Paul Holden
|
||||||
|
- Hajime Hoshi
|
||||||
|
- Warren Hu
|
||||||
|
- Charles Huber
|
||||||
|
- Brent Huisman
|
||||||
|
- illustris
|
||||||
|
- InKryption
|
||||||
|
- IntellectualKitty
|
||||||
|
- Aaron Jacobs
|
||||||
|
- JannikGM
|
||||||
|
- Erik S. V. Jansson
|
||||||
|
- jjYBdx4IL
|
||||||
|
- Toni Jovanoski
|
||||||
|
- Arseny Kapoulkine
|
||||||
|
- Cem Karan
|
||||||
|
- Osman Keskin
|
||||||
|
- Koray Kilinc
|
||||||
|
- Josh Kilmer
|
||||||
|
- Byunghoon Kim
|
||||||
|
- Cameron King
|
||||||
|
- Peter Knut
|
||||||
|
- Christoph Kubisch
|
||||||
|
- Yuri Kunde Schlesner
|
||||||
|
- Rokas Kupstys
|
||||||
|
- Konstantin Käfer
|
||||||
|
- Eric Larson
|
||||||
|
- Francis Lecavalier
|
||||||
|
- Jong Won Lee
|
||||||
|
- Robin Leffmann
|
||||||
|
- Glenn Lewis
|
||||||
|
- Shane Liesegang
|
||||||
|
- Anders Lindqvist
|
||||||
|
- Leon Linhart
|
||||||
|
- Marco Lizza
|
||||||
|
- Eyal Lotem
|
||||||
|
- Aaron Loucks
|
||||||
|
- Luflosi
|
||||||
|
- lukect
|
||||||
|
- Tristam MacDonald
|
||||||
|
- Hans Mackowiak
|
||||||
|
- Дмитри Малышев
|
||||||
|
- Zbigniew Mandziejewicz
|
||||||
|
- Adam Marcus
|
||||||
|
- Célestin Marot
|
||||||
|
- Kyle McDonald
|
||||||
|
- David V. McKay
|
||||||
|
- David Medlock
|
||||||
|
- Bryce Mehring
|
||||||
|
- Jonathan Mercier
|
||||||
|
- Marcel Metz
|
||||||
|
- Liam Middlebrook
|
||||||
|
- Ave Milia
|
||||||
|
- Jonathan Miller
|
||||||
|
- Kenneth Miller
|
||||||
|
- Bruce Mitchener
|
||||||
|
- Jack Moffitt
|
||||||
|
- Ravi Mohan
|
||||||
|
- Jeff Molofee
|
||||||
|
- Alexander Monakov
|
||||||
|
- Pierre Morel
|
||||||
|
- Jon Morton
|
||||||
|
- Pierre Moulon
|
||||||
|
- Martins Mozeiko
|
||||||
|
- James Murphy
|
||||||
|
- Julian Møller
|
||||||
|
- ndogxj
|
||||||
|
- F. Nedelec
|
||||||
|
- Kristian Nielsen
|
||||||
|
- Joel Niemelä
|
||||||
|
- Kamil Nowakowski
|
||||||
|
- onox
|
||||||
|
- Denis Ovod
|
||||||
|
- Ozzy
|
||||||
|
- Andri Pálsson
|
||||||
|
- Peoro
|
||||||
|
- Braden Pellett
|
||||||
|
- Christopher Pelloux
|
||||||
|
- Arturo J. Pérez
|
||||||
|
- Vladimir Perminov
|
||||||
|
- Olivier Perret
|
||||||
|
- Anthony Pesch
|
||||||
|
- Orson Peters
|
||||||
|
- Emmanuel Gil Peyrot
|
||||||
|
- Cyril Pichard
|
||||||
|
- Pilzschaf
|
||||||
|
- Keith Pitt
|
||||||
|
- Stanislav Podgorskiy
|
||||||
|
- Konstantin Podsvirov
|
||||||
|
- Nathan Poirier
|
||||||
|
- Alexandre Pretyman
|
||||||
|
- Pablo Prietz
|
||||||
|
- przemekmirek
|
||||||
|
- pthom
|
||||||
|
- Martin Pulec
|
||||||
|
- Guillaume Racicot
|
||||||
|
- Philip Rideout
|
||||||
|
- Eddie Ringle
|
||||||
|
- Max Risuhin
|
||||||
|
- Jorge Rodriguez
|
||||||
|
- Luca Rood
|
||||||
|
- Ed Ropple
|
||||||
|
- Aleksey Rybalkin
|
||||||
|
- Mikko Rytkönen
|
||||||
|
- Riku Salminen
|
||||||
|
- Brandon Schaefer
|
||||||
|
- Sebastian Schuberth
|
||||||
|
- Christian Sdunek
|
||||||
|
- Matt Sealey
|
||||||
|
- Steve Sexton
|
||||||
|
- Arkady Shapkin
|
||||||
|
- Ali Sherief
|
||||||
|
- Yoshiki Shibukawa
|
||||||
|
- Dmitri Shuralyov
|
||||||
|
- Joao da Silva
|
||||||
|
- Daniel Sieger
|
||||||
|
- Daniel Skorupski
|
||||||
|
- Slemmie
|
||||||
|
- Bradley Smith
|
||||||
|
- Cliff Smolinsky
|
||||||
|
- Patrick Snape
|
||||||
|
- Erlend Sogge Heggen
|
||||||
|
- Olivier Sohn
|
||||||
|
- Julian Squires
|
||||||
|
- Johannes Stein
|
||||||
|
- Pontus Stenetorp
|
||||||
|
- Michael Stocker
|
||||||
|
- Justin Stoecker
|
||||||
|
- Elviss Strazdins
|
||||||
|
- Paul Sultana
|
||||||
|
- Nathan Sweet
|
||||||
|
- TTK-Bandit
|
||||||
|
- Sergey Tikhomirov
|
||||||
|
- Arthur Tombs
|
||||||
|
- TronicLabs
|
||||||
|
- Ioannis Tsakpinis
|
||||||
|
- Samuli Tuomola
|
||||||
|
- Matthew Turner
|
||||||
|
- urraka
|
||||||
|
- Elias Vanderstuyft
|
||||||
|
- Stef Velzel
|
||||||
|
- Jari Vetoniemi
|
||||||
|
- Ricardo Vieira
|
||||||
|
- Nicholas Vitovitch
|
||||||
|
- Simon Voordouw
|
||||||
|
- Corentin Wallez
|
||||||
|
- Torsten Walluhn
|
||||||
|
- Patrick Walton
|
||||||
|
- Xo Wang
|
||||||
|
- Jay Weisskopf
|
||||||
|
- Frank Wille
|
||||||
|
- Richard A. Wilkes
|
||||||
|
- Tatsuya Yatagawa
|
||||||
|
- Ryogo Yoshimura
|
||||||
|
- Rácz Zalán
|
||||||
|
- Lukas Zanner
|
||||||
|
- Andrey Zholos
|
||||||
|
- Aihui Zhu
|
||||||
|
- Santi Zupancic
|
||||||
|
- Jonas Ådahl
|
||||||
|
- Lasse Öörni
|
||||||
|
- Leonard König
|
||||||
|
- All the unmentioned and anonymous contributors in the GLFW community, for bug
|
||||||
|
reports, patches, feedback, testing and encouragement
|
||||||
|
|
||||||
23
breakout/glfw-3.3.8/LICENSE.md
Normal file
23
breakout/glfw-3.3.8/LICENSE.md
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
Copyright (c) 2002-2006 Marcus Geelnard
|
||||||
|
|
||||||
|
Copyright (c) 2006-2019 Camilla Löwy
|
||||||
|
|
||||||
|
This software is provided 'as-is', without any express or implied
|
||||||
|
warranty. In no event will the authors be held liable for any damages
|
||||||
|
arising from the use of this software.
|
||||||
|
|
||||||
|
Permission is granted to anyone to use this software for any purpose,
|
||||||
|
including commercial applications, and to alter it and redistribute it
|
||||||
|
freely, subject to the following restrictions:
|
||||||
|
|
||||||
|
1. The origin of this software must not be misrepresented; you must not
|
||||||
|
claim that you wrote the original software. If you use this software
|
||||||
|
in a product, an acknowledgment in the product documentation would
|
||||||
|
be appreciated but is not required.
|
||||||
|
|
||||||
|
2. Altered source versions must be plainly marked as such, and must not
|
||||||
|
be misrepresented as being the original software.
|
||||||
|
|
||||||
|
3. This notice may not be removed or altered from any source
|
||||||
|
distribution.
|
||||||
|
|
||||||
211
breakout/glfw-3.3.8/README.md
Normal file
211
breakout/glfw-3.3.8/README.md
Normal file
@ -0,0 +1,211 @@
|
|||||||
|
# GLFW
|
||||||
|
|
||||||
|
[](https://github.com/glfw/glfw/actions)
|
||||||
|
[](https://ci.appveyor.com/project/elmindreda/glfw)
|
||||||
|
[](https://scan.coverity.com/projects/glfw-glfw)
|
||||||
|
|
||||||
|
## Introduction
|
||||||
|
|
||||||
|
GLFW is an Open Source, multi-platform library for OpenGL, OpenGL ES and Vulkan
|
||||||
|
application development. It provides a simple, platform-independent API for
|
||||||
|
creating windows, contexts and surfaces, reading input, handling events, etc.
|
||||||
|
|
||||||
|
GLFW natively supports Windows, macOS and Linux and other Unix-like systems. On
|
||||||
|
Linux both X11 and Wayland are supported.
|
||||||
|
|
||||||
|
GLFW is licensed under the [zlib/libpng
|
||||||
|
license](https://www.glfw.org/license.html).
|
||||||
|
|
||||||
|
You can [download](https://www.glfw.org/download.html) the latest stable release
|
||||||
|
as source or Windows binaries, or fetch the `latest` branch from GitHub. Each
|
||||||
|
release starting with 3.0 also has a corresponding [annotated
|
||||||
|
tag](https://github.com/glfw/glfw/releases) with source and binary archives.
|
||||||
|
|
||||||
|
The [documentation](https://www.glfw.org/docs/latest/) is available online and is
|
||||||
|
included in all source and binary archives. See the [release
|
||||||
|
notes](https://www.glfw.org/docs/latest/news.html) for new features, caveats and
|
||||||
|
deprecations in the latest release. For more details see the [version
|
||||||
|
history](https://www.glfw.org/changelog.html).
|
||||||
|
|
||||||
|
The `master` branch is the stable integration branch and _should_ always compile
|
||||||
|
and run on all supported platforms, although details of newly added features may
|
||||||
|
change until they have been included in a release. New features and many bug
|
||||||
|
fixes live in [other branches](https://github.com/glfw/glfw/branches/all) until
|
||||||
|
they are stable enough to merge.
|
||||||
|
|
||||||
|
If you are new to GLFW, you may find the
|
||||||
|
[tutorial](https://www.glfw.org/docs/latest/quick.html) for GLFW 3 useful. If
|
||||||
|
you have used GLFW 2 in the past, there is a [transition
|
||||||
|
guide](https://www.glfw.org/docs/latest/moving.html) for moving to the GLFW
|
||||||
|
3 API.
|
||||||
|
|
||||||
|
GLFW exists because of the contributions of [many people](CONTRIBUTORS.md)
|
||||||
|
around the world, whether by reporting bugs, providing community support, adding
|
||||||
|
features, reviewing or testing code, debugging, proofreading docs, suggesting
|
||||||
|
features or fixing bugs.
|
||||||
|
|
||||||
|
|
||||||
|
## Compiling GLFW
|
||||||
|
|
||||||
|
GLFW itself requires only the headers and libraries for your OS and window
|
||||||
|
system. It does not need the headers for any context creation API (WGL, GLX,
|
||||||
|
EGL, NSGL, OSMesa) or rendering API (OpenGL, OpenGL ES, Vulkan) to enable
|
||||||
|
support for them.
|
||||||
|
|
||||||
|
GLFW supports compilation on Windows with Visual C++ 2010 and later, MinGW and
|
||||||
|
MinGW-w64, on macOS with Clang and on Linux and other Unix-like systems with GCC
|
||||||
|
and Clang. It will likely compile in other environments as well, but this is
|
||||||
|
not regularly tested.
|
||||||
|
|
||||||
|
There are [pre-compiled Windows binaries](https://www.glfw.org/download.html)
|
||||||
|
available for all supported compilers.
|
||||||
|
|
||||||
|
See the [compilation guide](https://www.glfw.org/docs/latest/compile.html) for
|
||||||
|
more information about how to compile GLFW yourself.
|
||||||
|
|
||||||
|
|
||||||
|
## Using GLFW
|
||||||
|
|
||||||
|
See the [documentation](https://www.glfw.org/docs/latest/) for tutorials, guides
|
||||||
|
and the API reference.
|
||||||
|
|
||||||
|
|
||||||
|
## Contributing to GLFW
|
||||||
|
|
||||||
|
See the [contribution
|
||||||
|
guide](https://github.com/glfw/glfw/blob/master/docs/CONTRIBUTING.md) for
|
||||||
|
more information.
|
||||||
|
|
||||||
|
|
||||||
|
## System requirements
|
||||||
|
|
||||||
|
GLFW supports Windows XP and later and macOS 10.8 and later. Linux and other
|
||||||
|
Unix-like systems running the X Window System are supported even without
|
||||||
|
a desktop environment or modern extensions, although some features require
|
||||||
|
a running window or clipboard manager. The OSMesa backend requires Mesa 6.3.
|
||||||
|
|
||||||
|
See the [compatibility guide](https://www.glfw.org/docs/latest/compat.html)
|
||||||
|
in the documentation for more information.
|
||||||
|
|
||||||
|
|
||||||
|
## Dependencies
|
||||||
|
|
||||||
|
GLFW itself depends only on the headers and libraries for your window system.
|
||||||
|
|
||||||
|
The (experimental) Wayland backend also depends on the `extra-cmake-modules`
|
||||||
|
package, which is used to generate Wayland protocol headers.
|
||||||
|
|
||||||
|
The examples and test programs depend on a number of tiny libraries. These are
|
||||||
|
located in the `deps/` directory.
|
||||||
|
|
||||||
|
- [getopt\_port](https://github.com/kimgr/getopt_port/) for examples
|
||||||
|
with command-line options
|
||||||
|
- [TinyCThread](https://github.com/tinycthread/tinycthread) for threaded
|
||||||
|
examples
|
||||||
|
- [glad2](https://github.com/Dav1dde/glad) for loading OpenGL and Vulkan
|
||||||
|
functions
|
||||||
|
- [linmath.h](https://github.com/datenwolf/linmath.h) for linear algebra in
|
||||||
|
examples
|
||||||
|
- [Nuklear](https://github.com/Immediate-Mode-UI/Nuklear) for test and example UI
|
||||||
|
- [stb\_image\_write](https://github.com/nothings/stb) for writing images to disk
|
||||||
|
|
||||||
|
The documentation is generated with [Doxygen](https://doxygen.org/) if CMake can
|
||||||
|
find that tool.
|
||||||
|
|
||||||
|
|
||||||
|
## Reporting bugs
|
||||||
|
|
||||||
|
Bugs are reported to our [issue tracker](https://github.com/glfw/glfw/issues).
|
||||||
|
Please check the [contribution
|
||||||
|
guide](https://github.com/glfw/glfw/blob/master/docs/CONTRIBUTING.md) for
|
||||||
|
information on what to include when reporting a bug.
|
||||||
|
|
||||||
|
|
||||||
|
## Changelog
|
||||||
|
|
||||||
|
- Added `GLFW_NATIVE_INCLUDE_NONE` for disabling inclusion of native headers (#1348)
|
||||||
|
- Bugfix: `glfwMakeContextCurrent` would access TLS slot before initialization
|
||||||
|
- Bugfix: `glfwSetGammaRamp` could emit `GLFW_INVALID_VALUE` before initialization
|
||||||
|
- Bugfix: `glfwGetJoystickUserPointer` returned `NULL` during disconnection (#2092)
|
||||||
|
- [Win32] Bugfix: `Alt+PrtSc` would emit `GLFW_KEY_UNKNOWN` and a different
|
||||||
|
scancode than `PrtSc` (#1993)
|
||||||
|
- [Win32] Bugfix: `GLFW_KEY_PAUSE` scancode from `glfwGetKeyScancode` did not
|
||||||
|
match event scancode (#1993)
|
||||||
|
- [Win32] Bugfix: Instance-local operations used executable instance (#469,#1296,#1395)
|
||||||
|
- [Win32] Bugfix: The OSMesa library was not unloaded on termination
|
||||||
|
- [Win32] Bugfix: Right shift emitted `GLFW_KEY_UNKNOWN` when using a CJK IME (#2050)
|
||||||
|
- [Cocoa] Disabled macOS fullscreen when `GLFW_RESIZABLE` is false
|
||||||
|
- [Cocoa] Bugfix: A connected Apple AirPlay would emit a useless error (#1791)
|
||||||
|
- [Cocoa] Bugfix: The EGL and OSMesa libraries were not unloaded on termination
|
||||||
|
- [Cocoa] Bugfix: `GLFW_MAXIMIZED` was always true when `GLFW_RESIZABLE` was false
|
||||||
|
- [Cocoa] Bugfix: Changing `GLFW_DECORATED` in macOS fullscreen would abort
|
||||||
|
application (#1886)
|
||||||
|
- [Cocoa] Bugfix: Setting a monitor from macOS fullscreen would abort
|
||||||
|
application (#2110)
|
||||||
|
- [Cocoa] Bugfix: The Vulkan loader was not loaded from the `Frameworks` bundle
|
||||||
|
subdirectory (#2113,#2120)
|
||||||
|
- [X11] Bugfix: The OSMesa libray was not unloaded on termination
|
||||||
|
- [X11] Bugfix: A malformed response during selection transfer could cause a segfault
|
||||||
|
- [X11] Bugfix: Some calls would reset Xlib to the default error handler (#2108)
|
||||||
|
- [Wayland] Added support for file path drop events (#2040)
|
||||||
|
- [Wayland] Added support for more human-readable monitor names where available
|
||||||
|
- [Wayland] Removed support for the deprecated wl\_shell protocol
|
||||||
|
- [Wayland] Bugfix: `glfwSetClipboardString` would fail if set to result of
|
||||||
|
`glfwGetClipboardString`
|
||||||
|
- [Wayland] Bugfix: Data source creation error would cause double free at termination
|
||||||
|
- [Wayland] Bugfix: Partial writes of clipboard string would cause beginning to repeat
|
||||||
|
- [Wayland] Bugfix: Some errors would cause clipboard string transfer to hang
|
||||||
|
- [Wayland] Bugfix: Drag and drop data was misinterpreted as clipboard string
|
||||||
|
- [Wayland] Bugfix: MIME type matching was not performed for clipboard string
|
||||||
|
- [Wayland] Bugfix: The OSMesa library was not unloaded on termination
|
||||||
|
- [Wayland] Bugfix: `glfwCreateWindow` could emit `GLFW_PLATFORM_ERROR`
|
||||||
|
- [Wayland] Bugfix: Lock key modifier bits were only set when lock keys were pressed
|
||||||
|
- [Wayland] Bugfix: A window leaving full screen mode would be iconified (#1995)
|
||||||
|
- [Wayland] Bugfix: A window leaving full screen mode ignored its desired size
|
||||||
|
- [Wayland] Bugfix: `glfwSetWindowMonitor` did not update windowed mode size
|
||||||
|
- [Wayland] Bugfix: `glfwRestoreWindow` would make a full screen window windowed
|
||||||
|
- [Wayland] Bugfix: A window maximized or restored by the user would enter an
|
||||||
|
inconsistent state
|
||||||
|
- [Wayland] Bugfix: Window maximization events were not emitted
|
||||||
|
- [Wayland] Bugfix: `glfwRestoreWindow` assumed it was always in windowed mode
|
||||||
|
- [Wayland] Bugfix: `glfwSetWindowSize` would resize a full screen window
|
||||||
|
- [Wayland] Bugfix: A window content scale event would be emitted every time
|
||||||
|
the window resized
|
||||||
|
- [Wayland] Bugfix: If `glfwInit` failed it would close stdin
|
||||||
|
- [Wayland] Bugfix: Manual resizing with fallback decorations behaved erratically
|
||||||
|
(#1991,#2115,#2127)
|
||||||
|
- [Wayland] Bugfix: Size limits included frame size for fallback decorations
|
||||||
|
- [Wayland] Bugfix: Updating `GLFW_DECORATED` had no effect on server-side
|
||||||
|
decorations
|
||||||
|
- [Wayland] Bugfix: A monitor would be reported as connected again if its scale
|
||||||
|
changed
|
||||||
|
- [Wayland] Bugfix: `glfwTerminate` would segfault if any monitor had changed
|
||||||
|
scale
|
||||||
|
- [Wayland] Bugfix: Window content scale events were not emitted when monitor
|
||||||
|
scale changed
|
||||||
|
- [Wayland] Bugfix: `glfwSetWindowAspectRatio` reported an error instead of
|
||||||
|
applying the specified ratio
|
||||||
|
- [Wayland] Bugfix: `GLFW_MAXIMIZED` window hint had no effect
|
||||||
|
- [Wayland] Bugfix: `glfwRestoreWindow` had no effect before first show
|
||||||
|
- [Wayland] Bugfix: Hiding and then showing a window caused program abort on
|
||||||
|
wlroots compositors (#1268)
|
||||||
|
- [Wayland] Bugfix: `GLFW_DECORATED` was ignored when showing a window with XDG
|
||||||
|
decorations
|
||||||
|
|
||||||
|
|
||||||
|
## Contact
|
||||||
|
|
||||||
|
On [glfw.org](https://www.glfw.org/) you can find the latest version of GLFW, as
|
||||||
|
well as news, documentation and other information about the project.
|
||||||
|
|
||||||
|
If you have questions related to the use of GLFW, we have a
|
||||||
|
[forum](https://discourse.glfw.org/), and the `#glfw` IRC channel on
|
||||||
|
[Libera.Chat](https://libera.chat/).
|
||||||
|
|
||||||
|
If you have a bug to report, a patch to submit or a feature you'd like to
|
||||||
|
request, please file it in the
|
||||||
|
[issue tracker](https://github.com/glfw/glfw/issues) on GitHub.
|
||||||
|
|
||||||
|
Finally, if you're interested in helping out with the development of GLFW or
|
||||||
|
porting it to your favorite platform, join us on the forum, GitHub or IRC.
|
||||||
|
|
||||||
991
breakout/glfw-3.3.8/build/CMakeCache.txt
Normal file
991
breakout/glfw-3.3.8/build/CMakeCache.txt
Normal file
@ -0,0 +1,991 @@
|
|||||||
|
# This is the CMakeCache file.
|
||||||
|
# For build in directory: /home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/build
|
||||||
|
# It was generated by CMake: /usr/bin/cmake
|
||||||
|
# You can edit this file to change values found and used by cmake.
|
||||||
|
# If you do not want to change any of the values, simply exit the editor.
|
||||||
|
# If you do want to change a value, simply edit, save, and exit the editor.
|
||||||
|
# The syntax for the file is as follows:
|
||||||
|
# KEY:TYPE=VALUE
|
||||||
|
# KEY is the name of a variable in the cache.
|
||||||
|
# TYPE is a hint to GUIs for the type of VALUE, DO NOT EDIT TYPE!.
|
||||||
|
# VALUE is the current value for the KEY.
|
||||||
|
|
||||||
|
########################
|
||||||
|
# EXTERNAL cache entries
|
||||||
|
########################
|
||||||
|
|
||||||
|
//Build shared libraries
|
||||||
|
BUILD_SHARED_LIBS:BOOL=OFF
|
||||||
|
|
||||||
|
//Path to a program.
|
||||||
|
CMAKE_ADDR2LINE:FILEPATH=/usr/bin/addr2line
|
||||||
|
|
||||||
|
//Path to a program.
|
||||||
|
CMAKE_AR:FILEPATH=/usr/bin/ar
|
||||||
|
|
||||||
|
//Choose the type of build, options are: None Debug Release RelWithDebInfo
|
||||||
|
// MinSizeRel ...
|
||||||
|
CMAKE_BUILD_TYPE:STRING=
|
||||||
|
|
||||||
|
//Enable/Disable color output during build.
|
||||||
|
CMAKE_COLOR_MAKEFILE:BOOL=ON
|
||||||
|
|
||||||
|
//C compiler
|
||||||
|
CMAKE_C_COMPILER:FILEPATH=/usr/bin/cc
|
||||||
|
|
||||||
|
//A wrapper around 'ar' adding the appropriate '--plugin' option
|
||||||
|
// for the GCC compiler
|
||||||
|
CMAKE_C_COMPILER_AR:FILEPATH=/usr/bin/gcc-ar
|
||||||
|
|
||||||
|
//A wrapper around 'ranlib' adding the appropriate '--plugin' option
|
||||||
|
// for the GCC compiler
|
||||||
|
CMAKE_C_COMPILER_RANLIB:FILEPATH=/usr/bin/gcc-ranlib
|
||||||
|
|
||||||
|
//Flags used by the C compiler during all build types.
|
||||||
|
CMAKE_C_FLAGS:STRING=
|
||||||
|
|
||||||
|
//Flags used by the C compiler during DEBUG builds.
|
||||||
|
CMAKE_C_FLAGS_DEBUG:STRING=-g
|
||||||
|
|
||||||
|
//Flags used by the C compiler during MINSIZEREL builds.
|
||||||
|
CMAKE_C_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG
|
||||||
|
|
||||||
|
//Flags used by the C compiler during RELEASE builds.
|
||||||
|
CMAKE_C_FLAGS_RELEASE:STRING=-O3 -DNDEBUG
|
||||||
|
|
||||||
|
//Flags used by the C compiler during RELWITHDEBINFO builds.
|
||||||
|
CMAKE_C_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG
|
||||||
|
|
||||||
|
//Path to a program.
|
||||||
|
CMAKE_DLLTOOL:FILEPATH=/home/linuxbrew/.linuxbrew/bin/dlltool
|
||||||
|
|
||||||
|
//Flags used by the linker during all build types.
|
||||||
|
CMAKE_EXE_LINKER_FLAGS:STRING=
|
||||||
|
|
||||||
|
//Flags used by the linker during DEBUG builds.
|
||||||
|
CMAKE_EXE_LINKER_FLAGS_DEBUG:STRING=
|
||||||
|
|
||||||
|
//Flags used by the linker during MINSIZEREL builds.
|
||||||
|
CMAKE_EXE_LINKER_FLAGS_MINSIZEREL:STRING=
|
||||||
|
|
||||||
|
//Flags used by the linker during RELEASE builds.
|
||||||
|
CMAKE_EXE_LINKER_FLAGS_RELEASE:STRING=
|
||||||
|
|
||||||
|
//Flags used by the linker during RELWITHDEBINFO builds.
|
||||||
|
CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO:STRING=
|
||||||
|
|
||||||
|
//Enable/Disable output of compile commands during generation.
|
||||||
|
CMAKE_EXPORT_COMPILE_COMMANDS:BOOL=
|
||||||
|
|
||||||
|
//Value Computed by CMake.
|
||||||
|
CMAKE_FIND_PACKAGE_REDIRECTS_DIR:STATIC=/home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/build/CMakeFiles/pkgRedirects
|
||||||
|
|
||||||
|
//User executables (bin)
|
||||||
|
CMAKE_INSTALL_BINDIR:PATH=bin
|
||||||
|
|
||||||
|
//Read-only architecture-independent data (DATAROOTDIR)
|
||||||
|
CMAKE_INSTALL_DATADIR:PATH=
|
||||||
|
|
||||||
|
//Read-only architecture-independent data root (share)
|
||||||
|
CMAKE_INSTALL_DATAROOTDIR:PATH=share
|
||||||
|
|
||||||
|
//Documentation root (DATAROOTDIR/doc/PROJECT_NAME)
|
||||||
|
CMAKE_INSTALL_DOCDIR:PATH=
|
||||||
|
|
||||||
|
//C header files (include)
|
||||||
|
CMAKE_INSTALL_INCLUDEDIR:PATH=include
|
||||||
|
|
||||||
|
//Info documentation (DATAROOTDIR/info)
|
||||||
|
CMAKE_INSTALL_INFODIR:PATH=
|
||||||
|
|
||||||
|
//Object code libraries (lib)
|
||||||
|
CMAKE_INSTALL_LIBDIR:PATH=lib
|
||||||
|
|
||||||
|
//Program executables (libexec)
|
||||||
|
CMAKE_INSTALL_LIBEXECDIR:PATH=libexec
|
||||||
|
|
||||||
|
//Locale-dependent data (DATAROOTDIR/locale)
|
||||||
|
CMAKE_INSTALL_LOCALEDIR:PATH=
|
||||||
|
|
||||||
|
//Modifiable single-machine data (var)
|
||||||
|
CMAKE_INSTALL_LOCALSTATEDIR:PATH=var
|
||||||
|
|
||||||
|
//Man documentation (DATAROOTDIR/man)
|
||||||
|
CMAKE_INSTALL_MANDIR:PATH=
|
||||||
|
|
||||||
|
//C header files for non-gcc (/usr/include)
|
||||||
|
CMAKE_INSTALL_OLDINCLUDEDIR:PATH=/usr/include
|
||||||
|
|
||||||
|
//Install path prefix, prepended onto install directories.
|
||||||
|
CMAKE_INSTALL_PREFIX:PATH=/usr/local
|
||||||
|
|
||||||
|
//Run-time variable data (LOCALSTATEDIR/run)
|
||||||
|
CMAKE_INSTALL_RUNSTATEDIR:PATH=
|
||||||
|
|
||||||
|
//System admin executables (sbin)
|
||||||
|
CMAKE_INSTALL_SBINDIR:PATH=sbin
|
||||||
|
|
||||||
|
//Modifiable architecture-independent data (com)
|
||||||
|
CMAKE_INSTALL_SHAREDSTATEDIR:PATH=com
|
||||||
|
|
||||||
|
//Read-only single-machine data (etc)
|
||||||
|
CMAKE_INSTALL_SYSCONFDIR:PATH=etc
|
||||||
|
|
||||||
|
//Path to a program.
|
||||||
|
CMAKE_LINKER:FILEPATH=/usr/bin/ld
|
||||||
|
|
||||||
|
//Path to a program.
|
||||||
|
CMAKE_MAKE_PROGRAM:FILEPATH=/usr/bin/make
|
||||||
|
|
||||||
|
//Flags used by the linker during the creation of modules during
|
||||||
|
// all build types.
|
||||||
|
CMAKE_MODULE_LINKER_FLAGS:STRING=
|
||||||
|
|
||||||
|
//Flags used by the linker during the creation of modules during
|
||||||
|
// DEBUG builds.
|
||||||
|
CMAKE_MODULE_LINKER_FLAGS_DEBUG:STRING=
|
||||||
|
|
||||||
|
//Flags used by the linker during the creation of modules during
|
||||||
|
// MINSIZEREL builds.
|
||||||
|
CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL:STRING=
|
||||||
|
|
||||||
|
//Flags used by the linker during the creation of modules during
|
||||||
|
// RELEASE builds.
|
||||||
|
CMAKE_MODULE_LINKER_FLAGS_RELEASE:STRING=
|
||||||
|
|
||||||
|
//Flags used by the linker during the creation of modules during
|
||||||
|
// RELWITHDEBINFO builds.
|
||||||
|
CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO:STRING=
|
||||||
|
|
||||||
|
//Path to a program.
|
||||||
|
CMAKE_NM:FILEPATH=/usr/bin/nm
|
||||||
|
|
||||||
|
//Path to a program.
|
||||||
|
CMAKE_OBJCOPY:FILEPATH=/usr/bin/objcopy
|
||||||
|
|
||||||
|
//Path to a program.
|
||||||
|
CMAKE_OBJDUMP:FILEPATH=/usr/bin/objdump
|
||||||
|
|
||||||
|
//Value Computed by CMake
|
||||||
|
CMAKE_PROJECT_DESCRIPTION:STATIC=
|
||||||
|
|
||||||
|
//Value Computed by CMake
|
||||||
|
CMAKE_PROJECT_HOMEPAGE_URL:STATIC=
|
||||||
|
|
||||||
|
//Value Computed by CMake
|
||||||
|
CMAKE_PROJECT_NAME:STATIC=GLFW
|
||||||
|
|
||||||
|
//Value Computed by CMake
|
||||||
|
CMAKE_PROJECT_VERSION:STATIC=3.3.8
|
||||||
|
|
||||||
|
//Value Computed by CMake
|
||||||
|
CMAKE_PROJECT_VERSION_MAJOR:STATIC=3
|
||||||
|
|
||||||
|
//Value Computed by CMake
|
||||||
|
CMAKE_PROJECT_VERSION_MINOR:STATIC=3
|
||||||
|
|
||||||
|
//Value Computed by CMake
|
||||||
|
CMAKE_PROJECT_VERSION_PATCH:STATIC=8
|
||||||
|
|
||||||
|
//Value Computed by CMake
|
||||||
|
CMAKE_PROJECT_VERSION_TWEAK:STATIC=
|
||||||
|
|
||||||
|
//Path to a program.
|
||||||
|
CMAKE_RANLIB:FILEPATH=/usr/bin/ranlib
|
||||||
|
|
||||||
|
//Path to a program.
|
||||||
|
CMAKE_READELF:FILEPATH=/usr/bin/readelf
|
||||||
|
|
||||||
|
//Flags used by the linker during the creation of shared libraries
|
||||||
|
// during all build types.
|
||||||
|
CMAKE_SHARED_LINKER_FLAGS:STRING=
|
||||||
|
|
||||||
|
//Flags used by the linker during the creation of shared libraries
|
||||||
|
// during DEBUG builds.
|
||||||
|
CMAKE_SHARED_LINKER_FLAGS_DEBUG:STRING=
|
||||||
|
|
||||||
|
//Flags used by the linker during the creation of shared libraries
|
||||||
|
// during MINSIZEREL builds.
|
||||||
|
CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL:STRING=
|
||||||
|
|
||||||
|
//Flags used by the linker during the creation of shared libraries
|
||||||
|
// during RELEASE builds.
|
||||||
|
CMAKE_SHARED_LINKER_FLAGS_RELEASE:STRING=
|
||||||
|
|
||||||
|
//Flags used by the linker during the creation of shared libraries
|
||||||
|
// during RELWITHDEBINFO builds.
|
||||||
|
CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO:STRING=
|
||||||
|
|
||||||
|
//If set, runtime paths are not added when installing shared libraries,
|
||||||
|
// but are added when building.
|
||||||
|
CMAKE_SKIP_INSTALL_RPATH:BOOL=NO
|
||||||
|
|
||||||
|
//If set, runtime paths are not added when using shared libraries.
|
||||||
|
CMAKE_SKIP_RPATH:BOOL=NO
|
||||||
|
|
||||||
|
//Flags used by the linker during the creation of static libraries
|
||||||
|
// during all build types.
|
||||||
|
CMAKE_STATIC_LINKER_FLAGS:STRING=
|
||||||
|
|
||||||
|
//Flags used by the linker during the creation of static libraries
|
||||||
|
// during DEBUG builds.
|
||||||
|
CMAKE_STATIC_LINKER_FLAGS_DEBUG:STRING=
|
||||||
|
|
||||||
|
//Flags used by the linker during the creation of static libraries
|
||||||
|
// during MINSIZEREL builds.
|
||||||
|
CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL:STRING=
|
||||||
|
|
||||||
|
//Flags used by the linker during the creation of static libraries
|
||||||
|
// during RELEASE builds.
|
||||||
|
CMAKE_STATIC_LINKER_FLAGS_RELEASE:STRING=
|
||||||
|
|
||||||
|
//Flags used by the linker during the creation of static libraries
|
||||||
|
// during RELWITHDEBINFO builds.
|
||||||
|
CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO:STRING=
|
||||||
|
|
||||||
|
//Path to a program.
|
||||||
|
CMAKE_STRIP:FILEPATH=/usr/bin/strip
|
||||||
|
|
||||||
|
//If this value is on, makefiles will be generated without the
|
||||||
|
// .SILENT directive, and all commands will be echoed to the console
|
||||||
|
// during the make. This is useful for debugging only. With Visual
|
||||||
|
// Studio IDE projects all commands are done without /nologo.
|
||||||
|
CMAKE_VERBOSE_MAKEFILE:BOOL=FALSE
|
||||||
|
|
||||||
|
//Doxygen documentation generation tool (http://www.doxygen.org)
|
||||||
|
DOXYGEN_EXECUTABLE:FILEPATH=DOXYGEN_EXECUTABLE-NOTFOUND
|
||||||
|
|
||||||
|
//Path to a file.
|
||||||
|
FREETYPE_INCLUDE_DIR_freetype2:PATH=/usr/include/freetype2
|
||||||
|
|
||||||
|
//Path to a file.
|
||||||
|
FREETYPE_INCLUDE_DIR_ft2build:PATH=/usr/include/freetype2
|
||||||
|
|
||||||
|
//Path to a library.
|
||||||
|
FREETYPE_LIBRARY_DEBUG:FILEPATH=FREETYPE_LIBRARY_DEBUG-NOTFOUND
|
||||||
|
|
||||||
|
//Path to a library.
|
||||||
|
FREETYPE_LIBRARY_RELEASE:FILEPATH=/usr/lib/libfreetype.so
|
||||||
|
|
||||||
|
//Path to a file.
|
||||||
|
Fontconfig_INCLUDE_DIR:PATH=/usr/include
|
||||||
|
|
||||||
|
//Path to a library.
|
||||||
|
Fontconfig_LIBRARY:FILEPATH=/usr/lib/libfontconfig.so
|
||||||
|
|
||||||
|
//Value Computed by CMake
|
||||||
|
GLFW_BINARY_DIR:STATIC=/home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/build
|
||||||
|
|
||||||
|
//Build the GLFW documentation
|
||||||
|
GLFW_BUILD_DOCS:BOOL=ON
|
||||||
|
|
||||||
|
//Build the GLFW example programs
|
||||||
|
GLFW_BUILD_EXAMPLES:BOOL=ON
|
||||||
|
|
||||||
|
//Build the GLFW test programs
|
||||||
|
GLFW_BUILD_TESTS:BOOL=ON
|
||||||
|
|
||||||
|
//Generate installation target
|
||||||
|
GLFW_INSTALL:BOOL=ON
|
||||||
|
|
||||||
|
//Value Computed by CMake
|
||||||
|
GLFW_IS_TOP_LEVEL:STATIC=ON
|
||||||
|
|
||||||
|
//Value Computed by CMake
|
||||||
|
GLFW_SOURCE_DIR:STATIC=/home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8
|
||||||
|
|
||||||
|
//Use OSMesa for offscreen context creation
|
||||||
|
GLFW_USE_OSMESA:BOOL=OFF
|
||||||
|
|
||||||
|
//Use Wayland for window creation
|
||||||
|
GLFW_USE_WAYLAND:BOOL=OFF
|
||||||
|
|
||||||
|
//Assume the Vulkan loader is linked with the application
|
||||||
|
GLFW_VULKAN_STATIC:BOOL=OFF
|
||||||
|
|
||||||
|
//Path to a library.
|
||||||
|
MATH_LIBRARY:FILEPATH=/usr/lib/libm.so
|
||||||
|
|
||||||
|
//Arguments to supply to pkg-config
|
||||||
|
PKG_CONFIG_ARGN:STRING=
|
||||||
|
|
||||||
|
//pkg-config executable
|
||||||
|
PKG_CONFIG_EXECUTABLE:FILEPATH=/usr/bin/pkg-config
|
||||||
|
|
||||||
|
//Path to a library.
|
||||||
|
RT_LIBRARY:FILEPATH=/usr/lib/librt.a
|
||||||
|
|
||||||
|
//Path to a file.
|
||||||
|
X11_ICE_INCLUDE_PATH:PATH=/usr/include
|
||||||
|
|
||||||
|
//Path to a library.
|
||||||
|
X11_ICE_LIB:FILEPATH=/usr/lib/libICE.so
|
||||||
|
|
||||||
|
//Path to a file.
|
||||||
|
X11_SM_INCLUDE_PATH:PATH=/usr/include
|
||||||
|
|
||||||
|
//Path to a library.
|
||||||
|
X11_SM_LIB:FILEPATH=/usr/lib/libSM.so
|
||||||
|
|
||||||
|
//Path to a file.
|
||||||
|
X11_X11_INCLUDE_PATH:PATH=/usr/include
|
||||||
|
|
||||||
|
//Path to a library.
|
||||||
|
X11_X11_LIB:FILEPATH=/usr/lib/libX11.so
|
||||||
|
|
||||||
|
//Path to a file.
|
||||||
|
X11_X11_xcb_INCLUDE_PATH:PATH=/usr/include
|
||||||
|
|
||||||
|
//Path to a library.
|
||||||
|
X11_X11_xcb_LIB:FILEPATH=/usr/lib/libX11-xcb.so
|
||||||
|
|
||||||
|
//Path to a file.
|
||||||
|
X11_XRes_INCLUDE_PATH:PATH=X11_XRes_INCLUDE_PATH-NOTFOUND
|
||||||
|
|
||||||
|
//Path to a library.
|
||||||
|
X11_XRes_LIB:FILEPATH=X11_XRes_LIB-NOTFOUND
|
||||||
|
|
||||||
|
//Path to a file.
|
||||||
|
X11_XShm_INCLUDE_PATH:PATH=/usr/include
|
||||||
|
|
||||||
|
//Path to a file.
|
||||||
|
X11_XSync_INCLUDE_PATH:PATH=/usr/include
|
||||||
|
|
||||||
|
//Path to a file.
|
||||||
|
X11_Xaccessrules_INCLUDE_PATH:PATH=/usr/include
|
||||||
|
|
||||||
|
//Path to a file.
|
||||||
|
X11_Xaccessstr_INCLUDE_PATH:PATH=/usr/include
|
||||||
|
|
||||||
|
//Path to a file.
|
||||||
|
X11_Xau_INCLUDE_PATH:PATH=/usr/include
|
||||||
|
|
||||||
|
//Path to a library.
|
||||||
|
X11_Xau_LIB:FILEPATH=/usr/lib/libXau.so
|
||||||
|
|
||||||
|
//Path to a file.
|
||||||
|
X11_Xaw_INCLUDE_PATH:PATH=X11_Xaw_INCLUDE_PATH-NOTFOUND
|
||||||
|
|
||||||
|
//Path to a library.
|
||||||
|
X11_Xaw_LIB:FILEPATH=/usr/lib/libXaw.so
|
||||||
|
|
||||||
|
//Path to a file.
|
||||||
|
X11_Xcomposite_INCLUDE_PATH:PATH=/usr/include
|
||||||
|
|
||||||
|
//Path to a library.
|
||||||
|
X11_Xcomposite_LIB:FILEPATH=/usr/lib/libXcomposite.so
|
||||||
|
|
||||||
|
//Path to a file.
|
||||||
|
X11_Xcursor_INCLUDE_PATH:PATH=/usr/include
|
||||||
|
|
||||||
|
//Path to a library.
|
||||||
|
X11_Xcursor_LIB:FILEPATH=/usr/lib/libXcursor.so
|
||||||
|
|
||||||
|
//Path to a file.
|
||||||
|
X11_Xdamage_INCLUDE_PATH:PATH=/usr/include
|
||||||
|
|
||||||
|
//Path to a library.
|
||||||
|
X11_Xdamage_LIB:FILEPATH=/usr/lib/libXdamage.so
|
||||||
|
|
||||||
|
//Path to a file.
|
||||||
|
X11_Xdmcp_INCLUDE_PATH:PATH=/usr/include
|
||||||
|
|
||||||
|
//Path to a library.
|
||||||
|
X11_Xdmcp_LIB:FILEPATH=/usr/lib/libXdmcp.so
|
||||||
|
|
||||||
|
//Path to a file.
|
||||||
|
X11_Xext_INCLUDE_PATH:PATH=/usr/include
|
||||||
|
|
||||||
|
//Path to a library.
|
||||||
|
X11_Xext_LIB:FILEPATH=/usr/lib/libXext.so
|
||||||
|
|
||||||
|
//Path to a file.
|
||||||
|
X11_Xfixes_INCLUDE_PATH:PATH=/usr/include
|
||||||
|
|
||||||
|
//Path to a library.
|
||||||
|
X11_Xfixes_LIB:FILEPATH=/usr/lib/libXfixes.so
|
||||||
|
|
||||||
|
//Path to a file.
|
||||||
|
X11_Xft_INCLUDE_PATH:PATH=/usr/include
|
||||||
|
|
||||||
|
//Path to a library.
|
||||||
|
X11_Xft_LIB:FILEPATH=/usr/lib/libXft.so
|
||||||
|
|
||||||
|
//Path to a file.
|
||||||
|
X11_Xi_INCLUDE_PATH:PATH=/usr/include
|
||||||
|
|
||||||
|
//Path to a library.
|
||||||
|
X11_Xi_LIB:FILEPATH=/usr/lib/libXi.so
|
||||||
|
|
||||||
|
//Path to a file.
|
||||||
|
X11_Xinerama_INCLUDE_PATH:PATH=/usr/include
|
||||||
|
|
||||||
|
//Path to a library.
|
||||||
|
X11_Xinerama_LIB:FILEPATH=/usr/lib/libXinerama.so
|
||||||
|
|
||||||
|
//Path to a file.
|
||||||
|
X11_Xkb_INCLUDE_PATH:PATH=/usr/include
|
||||||
|
|
||||||
|
//Path to a file.
|
||||||
|
X11_Xkblib_INCLUDE_PATH:PATH=/usr/include
|
||||||
|
|
||||||
|
//Path to a file.
|
||||||
|
X11_Xlib_INCLUDE_PATH:PATH=/usr/include
|
||||||
|
|
||||||
|
//Path to a file.
|
||||||
|
X11_Xmu_INCLUDE_PATH:PATH=/usr/include
|
||||||
|
|
||||||
|
//Path to a library.
|
||||||
|
X11_Xmu_LIB:FILEPATH=/usr/lib/libXmu.so
|
||||||
|
|
||||||
|
//Path to a file.
|
||||||
|
X11_Xpm_INCLUDE_PATH:PATH=/usr/include
|
||||||
|
|
||||||
|
//Path to a library.
|
||||||
|
X11_Xpm_LIB:FILEPATH=/usr/lib/libXpm.so
|
||||||
|
|
||||||
|
//Path to a file.
|
||||||
|
X11_Xrandr_INCLUDE_PATH:PATH=/usr/include
|
||||||
|
|
||||||
|
//Path to a library.
|
||||||
|
X11_Xrandr_LIB:FILEPATH=/usr/lib/libXrandr.so
|
||||||
|
|
||||||
|
//Path to a file.
|
||||||
|
X11_Xrender_INCLUDE_PATH:PATH=/usr/include
|
||||||
|
|
||||||
|
//Path to a library.
|
||||||
|
X11_Xrender_LIB:FILEPATH=/usr/lib/libXrender.so
|
||||||
|
|
||||||
|
//Path to a file.
|
||||||
|
X11_Xshape_INCLUDE_PATH:PATH=/usr/include
|
||||||
|
|
||||||
|
//Path to a file.
|
||||||
|
X11_Xss_INCLUDE_PATH:PATH=/usr/include
|
||||||
|
|
||||||
|
//Path to a library.
|
||||||
|
X11_Xss_LIB:FILEPATH=/usr/lib/libXss.so
|
||||||
|
|
||||||
|
//Path to a file.
|
||||||
|
X11_Xt_INCLUDE_PATH:PATH=/usr/include
|
||||||
|
|
||||||
|
//Path to a library.
|
||||||
|
X11_Xt_LIB:FILEPATH=/usr/lib/libXt.so
|
||||||
|
|
||||||
|
//Path to a file.
|
||||||
|
X11_Xtst_INCLUDE_PATH:PATH=/usr/include
|
||||||
|
|
||||||
|
//Path to a library.
|
||||||
|
X11_Xtst_LIB:FILEPATH=/usr/lib/libXtst.so
|
||||||
|
|
||||||
|
//Path to a file.
|
||||||
|
X11_Xutil_INCLUDE_PATH:PATH=/usr/include
|
||||||
|
|
||||||
|
//Path to a file.
|
||||||
|
X11_Xv_INCLUDE_PATH:PATH=/usr/include
|
||||||
|
|
||||||
|
//Path to a library.
|
||||||
|
X11_Xv_LIB:FILEPATH=/usr/lib/libXv.so
|
||||||
|
|
||||||
|
//Path to a file.
|
||||||
|
X11_Xxf86misc_INCLUDE_PATH:PATH=X11_Xxf86misc_INCLUDE_PATH-NOTFOUND
|
||||||
|
|
||||||
|
//Path to a library.
|
||||||
|
X11_Xxf86misc_LIB:FILEPATH=X11_Xxf86misc_LIB-NOTFOUND
|
||||||
|
|
||||||
|
//Path to a file.
|
||||||
|
X11_Xxf86vm_INCLUDE_PATH:PATH=/usr/include
|
||||||
|
|
||||||
|
//Path to a library.
|
||||||
|
X11_Xxf86vm_LIB:FILEPATH=/usr/lib/libXxf86vm.so
|
||||||
|
|
||||||
|
//Path to a file.
|
||||||
|
X11_dpms_INCLUDE_PATH:PATH=/usr/include
|
||||||
|
|
||||||
|
//Path to a file.
|
||||||
|
X11_xcb_INCLUDE_PATH:PATH=/usr/include
|
||||||
|
|
||||||
|
//Path to a library.
|
||||||
|
X11_xcb_LIB:FILEPATH=/usr/lib/libxcb.so
|
||||||
|
|
||||||
|
//Path to a file.
|
||||||
|
X11_xcb_icccm_INCLUDE_PATH:PATH=/usr/include
|
||||||
|
|
||||||
|
//Path to a library.
|
||||||
|
X11_xcb_icccm_LIB:FILEPATH=/usr/lib/libxcb-icccm.so
|
||||||
|
|
||||||
|
//Path to a file.
|
||||||
|
X11_xcb_keysyms_INCLUDE_PATH:PATH=/usr/include
|
||||||
|
|
||||||
|
//Path to a library.
|
||||||
|
X11_xcb_keysyms_LIB:FILEPATH=/usr/lib/libxcb-keysyms.so
|
||||||
|
|
||||||
|
//Path to a file.
|
||||||
|
X11_xcb_randr_INCLUDE_PATH:PATH=/usr/include
|
||||||
|
|
||||||
|
//Path to a library.
|
||||||
|
X11_xcb_randr_LIB:FILEPATH=/usr/lib/libxcb-randr.so
|
||||||
|
|
||||||
|
//Path to a file.
|
||||||
|
X11_xcb_util_INCLUDE_PATH:PATH=/usr/include
|
||||||
|
|
||||||
|
//Path to a library.
|
||||||
|
X11_xcb_util_LIB:FILEPATH=/usr/lib/libxcb-util.so
|
||||||
|
|
||||||
|
//Path to a file.
|
||||||
|
X11_xcb_xfixes_INCLUDE_PATH:PATH=/usr/include
|
||||||
|
|
||||||
|
//Path to a library.
|
||||||
|
X11_xcb_xfixes_LIB:FILEPATH=/usr/lib/libxcb-xfixes.so
|
||||||
|
|
||||||
|
//Path to a library.
|
||||||
|
X11_xcb_xkb_LIB:FILEPATH=/usr/lib/libxcb-xkb.so
|
||||||
|
|
||||||
|
//Path to a file.
|
||||||
|
X11_xcb_xtest_INCLUDE_PATH:PATH=/usr/include
|
||||||
|
|
||||||
|
//Path to a library.
|
||||||
|
X11_xcb_xtest_LIB:FILEPATH=/usr/lib/libxcb-xtest.so
|
||||||
|
|
||||||
|
//Path to a file.
|
||||||
|
X11_xkbcommon_INCLUDE_PATH:PATH=/usr/include
|
||||||
|
|
||||||
|
//Path to a library.
|
||||||
|
X11_xkbcommon_LIB:FILEPATH=/usr/lib/libxkbcommon.so
|
||||||
|
|
||||||
|
//Path to a file.
|
||||||
|
X11_xkbcommon_X11_INCLUDE_PATH:PATH=/usr/include
|
||||||
|
|
||||||
|
//Path to a library.
|
||||||
|
X11_xkbcommon_X11_LIB:FILEPATH=/usr/lib/libxkbcommon-x11.so
|
||||||
|
|
||||||
|
//Path to a file.
|
||||||
|
X11_xkbfile_INCLUDE_PATH:PATH=/usr/include
|
||||||
|
|
||||||
|
//Path to a library.
|
||||||
|
X11_xkbfile_LIB:FILEPATH=/usr/lib/libxkbfile.so
|
||||||
|
|
||||||
|
//Path to a library.
|
||||||
|
pkgcfg_lib_PKG_FONTCONFIG_fontconfig:FILEPATH=/usr/lib/libfontconfig.so
|
||||||
|
|
||||||
|
//Path to a library.
|
||||||
|
pkgcfg_lib_PKG_FONTCONFIG_freetype:FILEPATH=/usr/lib/libfreetype.so
|
||||||
|
|
||||||
|
|
||||||
|
########################
|
||||||
|
# INTERNAL cache entries
|
||||||
|
########################
|
||||||
|
|
||||||
|
//ADVANCED property for variable: CMAKE_ADDR2LINE
|
||||||
|
CMAKE_ADDR2LINE-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_AR
|
||||||
|
CMAKE_AR-ADVANCED:INTERNAL=1
|
||||||
|
//This is the directory where this CMakeCache.txt was created
|
||||||
|
CMAKE_CACHEFILE_DIR:INTERNAL=/home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/build
|
||||||
|
//Major version of cmake used to create the current loaded cache
|
||||||
|
CMAKE_CACHE_MAJOR_VERSION:INTERNAL=3
|
||||||
|
//Minor version of cmake used to create the current loaded cache
|
||||||
|
CMAKE_CACHE_MINOR_VERSION:INTERNAL=24
|
||||||
|
//Patch version of cmake used to create the current loaded cache
|
||||||
|
CMAKE_CACHE_PATCH_VERSION:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_COLOR_MAKEFILE
|
||||||
|
CMAKE_COLOR_MAKEFILE-ADVANCED:INTERNAL=1
|
||||||
|
//Path to CMake executable.
|
||||||
|
CMAKE_COMMAND:INTERNAL=/usr/bin/cmake
|
||||||
|
//Path to cpack program executable.
|
||||||
|
CMAKE_CPACK_COMMAND:INTERNAL=/usr/bin/cpack
|
||||||
|
//Path to ctest program executable.
|
||||||
|
CMAKE_CTEST_COMMAND:INTERNAL=/usr/bin/ctest
|
||||||
|
//ADVANCED property for variable: CMAKE_C_COMPILER
|
||||||
|
CMAKE_C_COMPILER-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_C_COMPILER_AR
|
||||||
|
CMAKE_C_COMPILER_AR-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_C_COMPILER_RANLIB
|
||||||
|
CMAKE_C_COMPILER_RANLIB-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_C_FLAGS
|
||||||
|
CMAKE_C_FLAGS-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_C_FLAGS_DEBUG
|
||||||
|
CMAKE_C_FLAGS_DEBUG-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_C_FLAGS_MINSIZEREL
|
||||||
|
CMAKE_C_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_C_FLAGS_RELEASE
|
||||||
|
CMAKE_C_FLAGS_RELEASE-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_C_FLAGS_RELWITHDEBINFO
|
||||||
|
CMAKE_C_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_DLLTOOL
|
||||||
|
CMAKE_DLLTOOL-ADVANCED:INTERNAL=1
|
||||||
|
//Path to cache edit program executable.
|
||||||
|
CMAKE_EDIT_COMMAND:INTERNAL=/usr/bin/ccmake
|
||||||
|
//Executable file format
|
||||||
|
CMAKE_EXECUTABLE_FORMAT:INTERNAL=ELF
|
||||||
|
//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS
|
||||||
|
CMAKE_EXE_LINKER_FLAGS-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_DEBUG
|
||||||
|
CMAKE_EXE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_MINSIZEREL
|
||||||
|
CMAKE_EXE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELEASE
|
||||||
|
CMAKE_EXE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO
|
||||||
|
CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_EXPORT_COMPILE_COMMANDS
|
||||||
|
CMAKE_EXPORT_COMPILE_COMMANDS-ADVANCED:INTERNAL=1
|
||||||
|
//Name of external makefile project generator.
|
||||||
|
CMAKE_EXTRA_GENERATOR:INTERNAL=
|
||||||
|
//Name of generator.
|
||||||
|
CMAKE_GENERATOR:INTERNAL=Unix Makefiles
|
||||||
|
//Generator instance identifier.
|
||||||
|
CMAKE_GENERATOR_INSTANCE:INTERNAL=
|
||||||
|
//Name of generator platform.
|
||||||
|
CMAKE_GENERATOR_PLATFORM:INTERNAL=
|
||||||
|
//Name of generator toolset.
|
||||||
|
CMAKE_GENERATOR_TOOLSET:INTERNAL=
|
||||||
|
//Have function connect
|
||||||
|
CMAKE_HAVE_CONNECT:INTERNAL=1
|
||||||
|
//Have function gethostbyname
|
||||||
|
CMAKE_HAVE_GETHOSTBYNAME:INTERNAL=1
|
||||||
|
//Test CMAKE_HAVE_LIBC_PTHREAD
|
||||||
|
CMAKE_HAVE_LIBC_PTHREAD:INTERNAL=1
|
||||||
|
//Have function remove
|
||||||
|
CMAKE_HAVE_REMOVE:INTERNAL=1
|
||||||
|
//Have function shmat
|
||||||
|
CMAKE_HAVE_SHMAT:INTERNAL=1
|
||||||
|
//Source directory with the top level CMakeLists.txt file for this
|
||||||
|
// project
|
||||||
|
CMAKE_HOME_DIRECTORY:INTERNAL=/home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8
|
||||||
|
//ADVANCED property for variable: CMAKE_INSTALL_BINDIR
|
||||||
|
CMAKE_INSTALL_BINDIR-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_INSTALL_DATADIR
|
||||||
|
CMAKE_INSTALL_DATADIR-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_INSTALL_DATAROOTDIR
|
||||||
|
CMAKE_INSTALL_DATAROOTDIR-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_INSTALL_DOCDIR
|
||||||
|
CMAKE_INSTALL_DOCDIR-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_INSTALL_INCLUDEDIR
|
||||||
|
CMAKE_INSTALL_INCLUDEDIR-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_INSTALL_INFODIR
|
||||||
|
CMAKE_INSTALL_INFODIR-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_INSTALL_LIBDIR
|
||||||
|
CMAKE_INSTALL_LIBDIR-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_INSTALL_LIBEXECDIR
|
||||||
|
CMAKE_INSTALL_LIBEXECDIR-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_INSTALL_LOCALEDIR
|
||||||
|
CMAKE_INSTALL_LOCALEDIR-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_INSTALL_LOCALSTATEDIR
|
||||||
|
CMAKE_INSTALL_LOCALSTATEDIR-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_INSTALL_MANDIR
|
||||||
|
CMAKE_INSTALL_MANDIR-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_INSTALL_OLDINCLUDEDIR
|
||||||
|
CMAKE_INSTALL_OLDINCLUDEDIR-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_INSTALL_RUNSTATEDIR
|
||||||
|
CMAKE_INSTALL_RUNSTATEDIR-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_INSTALL_SBINDIR
|
||||||
|
CMAKE_INSTALL_SBINDIR-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_INSTALL_SHAREDSTATEDIR
|
||||||
|
CMAKE_INSTALL_SHAREDSTATEDIR-ADVANCED:INTERNAL=1
|
||||||
|
//Install .so files without execute permission.
|
||||||
|
CMAKE_INSTALL_SO_NO_EXE:INTERNAL=0
|
||||||
|
//ADVANCED property for variable: CMAKE_INSTALL_SYSCONFDIR
|
||||||
|
CMAKE_INSTALL_SYSCONFDIR-ADVANCED:INTERNAL=1
|
||||||
|
//Have library ICE
|
||||||
|
CMAKE_LIB_ICE_HAS_ICECONNECTIONNUMBER:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_LINKER
|
||||||
|
CMAKE_LINKER-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_MAKE_PROGRAM
|
||||||
|
CMAKE_MAKE_PROGRAM-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS
|
||||||
|
CMAKE_MODULE_LINKER_FLAGS-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_DEBUG
|
||||||
|
CMAKE_MODULE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL
|
||||||
|
CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELEASE
|
||||||
|
CMAKE_MODULE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO
|
||||||
|
CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_NM
|
||||||
|
CMAKE_NM-ADVANCED:INTERNAL=1
|
||||||
|
//number of local generators
|
||||||
|
CMAKE_NUMBER_OF_MAKEFILES:INTERNAL=4
|
||||||
|
//ADVANCED property for variable: CMAKE_OBJCOPY
|
||||||
|
CMAKE_OBJCOPY-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_OBJDUMP
|
||||||
|
CMAKE_OBJDUMP-ADVANCED:INTERNAL=1
|
||||||
|
//Platform information initialized
|
||||||
|
CMAKE_PLATFORM_INFO_INITIALIZED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_RANLIB
|
||||||
|
CMAKE_RANLIB-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_READELF
|
||||||
|
CMAKE_READELF-ADVANCED:INTERNAL=1
|
||||||
|
//Path to CMake installation.
|
||||||
|
CMAKE_ROOT:INTERNAL=/usr/share/cmake
|
||||||
|
//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS
|
||||||
|
CMAKE_SHARED_LINKER_FLAGS-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_DEBUG
|
||||||
|
CMAKE_SHARED_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL
|
||||||
|
CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELEASE
|
||||||
|
CMAKE_SHARED_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO
|
||||||
|
CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_SKIP_INSTALL_RPATH
|
||||||
|
CMAKE_SKIP_INSTALL_RPATH-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_SKIP_RPATH
|
||||||
|
CMAKE_SKIP_RPATH-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS
|
||||||
|
CMAKE_STATIC_LINKER_FLAGS-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_DEBUG
|
||||||
|
CMAKE_STATIC_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL
|
||||||
|
CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELEASE
|
||||||
|
CMAKE_STATIC_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO
|
||||||
|
CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_STRIP
|
||||||
|
CMAKE_STRIP-ADVANCED:INTERNAL=1
|
||||||
|
//uname command
|
||||||
|
CMAKE_UNAME:INTERNAL=/usr/bin/uname
|
||||||
|
//ADVANCED property for variable: CMAKE_VERBOSE_MAKEFILE
|
||||||
|
CMAKE_VERBOSE_MAKEFILE-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: DOXYGEN_EXECUTABLE
|
||||||
|
DOXYGEN_EXECUTABLE-ADVANCED:INTERNAL=1
|
||||||
|
//Details about finding Threads
|
||||||
|
FIND_PACKAGE_MESSAGE_DETAILS_Threads:INTERNAL=[TRUE][v()]
|
||||||
|
//Details about finding X11
|
||||||
|
FIND_PACKAGE_MESSAGE_DETAILS_X11:INTERNAL=[/usr/include][/usr/lib/libX11.so][c ][v()]
|
||||||
|
//ADVANCED property for variable: FREETYPE_INCLUDE_DIR_freetype2
|
||||||
|
FREETYPE_INCLUDE_DIR_freetype2-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: FREETYPE_INCLUDE_DIR_ft2build
|
||||||
|
FREETYPE_INCLUDE_DIR_ft2build-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: FREETYPE_LIBRARY_DEBUG
|
||||||
|
FREETYPE_LIBRARY_DEBUG-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: FREETYPE_LIBRARY_RELEASE
|
||||||
|
FREETYPE_LIBRARY_RELEASE-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: Fontconfig_INCLUDE_DIR
|
||||||
|
Fontconfig_INCLUDE_DIR-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: Fontconfig_LIBRARY
|
||||||
|
Fontconfig_LIBRARY-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: MATH_LIBRARY
|
||||||
|
MATH_LIBRARY-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: PKG_CONFIG_ARGN
|
||||||
|
PKG_CONFIG_ARGN-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: PKG_CONFIG_EXECUTABLE
|
||||||
|
PKG_CONFIG_EXECUTABLE-ADVANCED:INTERNAL=1
|
||||||
|
PKG_FONTCONFIG_CFLAGS:INTERNAL=-I/usr/include/freetype2;-I/usr/include/libpng16;-I/usr/include/harfbuzz;-I/usr/include/glib-2.0;-I/usr/lib/glib-2.0/include;-I/usr/include/sysprof-4;-pthread
|
||||||
|
PKG_FONTCONFIG_CFLAGS_I:INTERNAL=
|
||||||
|
PKG_FONTCONFIG_CFLAGS_OTHER:INTERNAL=-pthread
|
||||||
|
PKG_FONTCONFIG_FOUND:INTERNAL=1
|
||||||
|
PKG_FONTCONFIG_INCLUDEDIR:INTERNAL=/usr/include
|
||||||
|
PKG_FONTCONFIG_INCLUDE_DIRS:INTERNAL=/usr/include/freetype2;/usr/include/libpng16;/usr/include/harfbuzz;/usr/include/glib-2.0;/usr/lib/glib-2.0/include;/usr/include/sysprof-4
|
||||||
|
PKG_FONTCONFIG_LDFLAGS:INTERNAL=-L/usr/lib;-lfontconfig;-lfreetype
|
||||||
|
PKG_FONTCONFIG_LDFLAGS_OTHER:INTERNAL=
|
||||||
|
PKG_FONTCONFIG_LIBDIR:INTERNAL=/usr/lib
|
||||||
|
PKG_FONTCONFIG_LIBRARIES:INTERNAL=fontconfig;freetype
|
||||||
|
PKG_FONTCONFIG_LIBRARY_DIRS:INTERNAL=/usr/lib
|
||||||
|
PKG_FONTCONFIG_LIBS:INTERNAL=
|
||||||
|
PKG_FONTCONFIG_LIBS_L:INTERNAL=
|
||||||
|
PKG_FONTCONFIG_LIBS_OTHER:INTERNAL=
|
||||||
|
PKG_FONTCONFIG_LIBS_PATHS:INTERNAL=
|
||||||
|
PKG_FONTCONFIG_MODULE_NAME:INTERNAL=fontconfig
|
||||||
|
PKG_FONTCONFIG_PREFIX:INTERNAL=/usr
|
||||||
|
PKG_FONTCONFIG_STATIC_CFLAGS:INTERNAL=-I/usr/include/freetype2;-I/usr/include/libpng16;-I/usr/include/harfbuzz;-I/usr/include/glib-2.0;-I/usr/lib/glib-2.0/include;-I/usr/include/sysprof-4;-pthread
|
||||||
|
PKG_FONTCONFIG_STATIC_CFLAGS_I:INTERNAL=
|
||||||
|
PKG_FONTCONFIG_STATIC_CFLAGS_OTHER:INTERNAL=-pthread
|
||||||
|
PKG_FONTCONFIG_STATIC_INCLUDE_DIRS:INTERNAL=/usr/include/freetype2;/usr/include/libpng16;/usr/include/harfbuzz;/usr/include/glib-2.0;/usr/lib/glib-2.0/include;/usr/include/sysprof-4
|
||||||
|
PKG_FONTCONFIG_STATIC_LDFLAGS:INTERNAL=-L/usr/lib;-lfontconfig;-pthread;-lfreetype;-lbz2;-L/usr/lib;-L/usr/lib;-lz;-lpng16;-lm;-lm;-lz;-lharfbuzz;-pthread;-lm;-L/usr/lib;-lgraphite2;-lglib-2.0;-pthread;-lm;-L/usr/lib;-lpcre;-lsysprof-capture-4;-pthread;-lbrotlidec;-L/usr/lib;-lbrotlicommon;-L/usr/lib;-lexpat;-lm
|
||||||
|
PKG_FONTCONFIG_STATIC_LDFLAGS_OTHER:INTERNAL=-pthread;-pthread;-pthread;-pthread
|
||||||
|
PKG_FONTCONFIG_STATIC_LIBDIR:INTERNAL=
|
||||||
|
PKG_FONTCONFIG_STATIC_LIBRARIES:INTERNAL=fontconfig;freetype;bz2;z;png16;m;m;z;harfbuzz;m;graphite2;glib-2.0;m;pcre;sysprof-capture-4;brotlidec;brotlicommon;expat;m
|
||||||
|
PKG_FONTCONFIG_STATIC_LIBRARY_DIRS:INTERNAL=/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib;/usr/lib
|
||||||
|
PKG_FONTCONFIG_STATIC_LIBS:INTERNAL=
|
||||||
|
PKG_FONTCONFIG_STATIC_LIBS_L:INTERNAL=
|
||||||
|
PKG_FONTCONFIG_STATIC_LIBS_OTHER:INTERNAL=
|
||||||
|
PKG_FONTCONFIG_STATIC_LIBS_PATHS:INTERNAL=
|
||||||
|
PKG_FONTCONFIG_VERSION:INTERNAL=2.14.0
|
||||||
|
PKG_FONTCONFIG_fontconfig_INCLUDEDIR:INTERNAL=
|
||||||
|
PKG_FONTCONFIG_fontconfig_LIBDIR:INTERNAL=
|
||||||
|
PKG_FONTCONFIG_fontconfig_PREFIX:INTERNAL=
|
||||||
|
PKG_FONTCONFIG_fontconfig_VERSION:INTERNAL=
|
||||||
|
//ADVANCED property for variable: RT_LIBRARY
|
||||||
|
RT_LIBRARY-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_ICE_INCLUDE_PATH
|
||||||
|
X11_ICE_INCLUDE_PATH-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_ICE_LIB
|
||||||
|
X11_ICE_LIB-ADVANCED:INTERNAL=1
|
||||||
|
//Have library /usr/lib/libX11.so;/usr/lib/libXext.so
|
||||||
|
X11_LIB_X11_SOLO:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_SM_INCLUDE_PATH
|
||||||
|
X11_SM_INCLUDE_PATH-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_SM_LIB
|
||||||
|
X11_SM_LIB-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_X11_INCLUDE_PATH
|
||||||
|
X11_X11_INCLUDE_PATH-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_X11_LIB
|
||||||
|
X11_X11_LIB-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_X11_xcb_INCLUDE_PATH
|
||||||
|
X11_X11_xcb_INCLUDE_PATH-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_X11_xcb_LIB
|
||||||
|
X11_X11_xcb_LIB-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_XRes_INCLUDE_PATH
|
||||||
|
X11_XRes_INCLUDE_PATH-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_XRes_LIB
|
||||||
|
X11_XRes_LIB-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_XShm_INCLUDE_PATH
|
||||||
|
X11_XShm_INCLUDE_PATH-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_XSync_INCLUDE_PATH
|
||||||
|
X11_XSync_INCLUDE_PATH-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_Xaccessrules_INCLUDE_PATH
|
||||||
|
X11_Xaccessrules_INCLUDE_PATH-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_Xaccessstr_INCLUDE_PATH
|
||||||
|
X11_Xaccessstr_INCLUDE_PATH-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_Xau_INCLUDE_PATH
|
||||||
|
X11_Xau_INCLUDE_PATH-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_Xau_LIB
|
||||||
|
X11_Xau_LIB-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_Xaw_INCLUDE_PATH
|
||||||
|
X11_Xaw_INCLUDE_PATH-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_Xaw_LIB
|
||||||
|
X11_Xaw_LIB-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_Xcomposite_INCLUDE_PATH
|
||||||
|
X11_Xcomposite_INCLUDE_PATH-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_Xcomposite_LIB
|
||||||
|
X11_Xcomposite_LIB-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_Xcursor_INCLUDE_PATH
|
||||||
|
X11_Xcursor_INCLUDE_PATH-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_Xcursor_LIB
|
||||||
|
X11_Xcursor_LIB-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_Xdamage_INCLUDE_PATH
|
||||||
|
X11_Xdamage_INCLUDE_PATH-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_Xdamage_LIB
|
||||||
|
X11_Xdamage_LIB-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_Xdmcp_INCLUDE_PATH
|
||||||
|
X11_Xdmcp_INCLUDE_PATH-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_Xdmcp_LIB
|
||||||
|
X11_Xdmcp_LIB-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_Xext_INCLUDE_PATH
|
||||||
|
X11_Xext_INCLUDE_PATH-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_Xext_LIB
|
||||||
|
X11_Xext_LIB-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_Xfixes_INCLUDE_PATH
|
||||||
|
X11_Xfixes_INCLUDE_PATH-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_Xfixes_LIB
|
||||||
|
X11_Xfixes_LIB-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_Xft_INCLUDE_PATH
|
||||||
|
X11_Xft_INCLUDE_PATH-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_Xft_LIB
|
||||||
|
X11_Xft_LIB-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_Xi_INCLUDE_PATH
|
||||||
|
X11_Xi_INCLUDE_PATH-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_Xi_LIB
|
||||||
|
X11_Xi_LIB-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_Xinerama_INCLUDE_PATH
|
||||||
|
X11_Xinerama_INCLUDE_PATH-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_Xinerama_LIB
|
||||||
|
X11_Xinerama_LIB-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_Xkb_INCLUDE_PATH
|
||||||
|
X11_Xkb_INCLUDE_PATH-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_Xkblib_INCLUDE_PATH
|
||||||
|
X11_Xkblib_INCLUDE_PATH-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_Xlib_INCLUDE_PATH
|
||||||
|
X11_Xlib_INCLUDE_PATH-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_Xmu_INCLUDE_PATH
|
||||||
|
X11_Xmu_INCLUDE_PATH-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_Xmu_LIB
|
||||||
|
X11_Xmu_LIB-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_Xpm_INCLUDE_PATH
|
||||||
|
X11_Xpm_INCLUDE_PATH-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_Xpm_LIB
|
||||||
|
X11_Xpm_LIB-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_Xrandr_INCLUDE_PATH
|
||||||
|
X11_Xrandr_INCLUDE_PATH-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_Xrandr_LIB
|
||||||
|
X11_Xrandr_LIB-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_Xrender_INCLUDE_PATH
|
||||||
|
X11_Xrender_INCLUDE_PATH-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_Xrender_LIB
|
||||||
|
X11_Xrender_LIB-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_Xshape_INCLUDE_PATH
|
||||||
|
X11_Xshape_INCLUDE_PATH-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_Xss_INCLUDE_PATH
|
||||||
|
X11_Xss_INCLUDE_PATH-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_Xss_LIB
|
||||||
|
X11_Xss_LIB-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_Xt_INCLUDE_PATH
|
||||||
|
X11_Xt_INCLUDE_PATH-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_Xt_LIB
|
||||||
|
X11_Xt_LIB-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_Xtst_INCLUDE_PATH
|
||||||
|
X11_Xtst_INCLUDE_PATH-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_Xtst_LIB
|
||||||
|
X11_Xtst_LIB-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_Xutil_INCLUDE_PATH
|
||||||
|
X11_Xutil_INCLUDE_PATH-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_Xv_INCLUDE_PATH
|
||||||
|
X11_Xv_INCLUDE_PATH-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_Xv_LIB
|
||||||
|
X11_Xv_LIB-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_Xxf86misc_INCLUDE_PATH
|
||||||
|
X11_Xxf86misc_INCLUDE_PATH-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_Xxf86misc_LIB
|
||||||
|
X11_Xxf86misc_LIB-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_Xxf86vm_INCLUDE_PATH
|
||||||
|
X11_Xxf86vm_INCLUDE_PATH-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_Xxf86vm_LIB
|
||||||
|
X11_Xxf86vm_LIB-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_dpms_INCLUDE_PATH
|
||||||
|
X11_dpms_INCLUDE_PATH-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_xcb_INCLUDE_PATH
|
||||||
|
X11_xcb_INCLUDE_PATH-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_xcb_LIB
|
||||||
|
X11_xcb_LIB-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_xcb_icccm_INCLUDE_PATH
|
||||||
|
X11_xcb_icccm_INCLUDE_PATH-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_xcb_icccm_LIB
|
||||||
|
X11_xcb_icccm_LIB-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_xcb_keysyms_INCLUDE_PATH
|
||||||
|
X11_xcb_keysyms_INCLUDE_PATH-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_xcb_keysyms_LIB
|
||||||
|
X11_xcb_keysyms_LIB-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_xcb_randr_INCLUDE_PATH
|
||||||
|
X11_xcb_randr_INCLUDE_PATH-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_xcb_randr_LIB
|
||||||
|
X11_xcb_randr_LIB-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_xcb_util_INCLUDE_PATH
|
||||||
|
X11_xcb_util_INCLUDE_PATH-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_xcb_util_LIB
|
||||||
|
X11_xcb_util_LIB-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_xcb_xfixes_INCLUDE_PATH
|
||||||
|
X11_xcb_xfixes_INCLUDE_PATH-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_xcb_xfixes_LIB
|
||||||
|
X11_xcb_xfixes_LIB-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_xcb_xkb_LIB
|
||||||
|
X11_xcb_xkb_LIB-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_xcb_xtest_INCLUDE_PATH
|
||||||
|
X11_xcb_xtest_INCLUDE_PATH-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_xcb_xtest_LIB
|
||||||
|
X11_xcb_xtest_LIB-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_xkbcommon_INCLUDE_PATH
|
||||||
|
X11_xkbcommon_INCLUDE_PATH-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_xkbcommon_LIB
|
||||||
|
X11_xkbcommon_LIB-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_xkbcommon_X11_INCLUDE_PATH
|
||||||
|
X11_xkbcommon_X11_INCLUDE_PATH-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_xkbcommon_X11_LIB
|
||||||
|
X11_xkbcommon_X11_LIB-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_xkbfile_INCLUDE_PATH
|
||||||
|
X11_xkbfile_INCLUDE_PATH-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: X11_xkbfile_LIB
|
||||||
|
X11_xkbfile_LIB-ADVANCED:INTERNAL=1
|
||||||
|
//linker supports push/pop state
|
||||||
|
_CMAKE_LINKER_PUSHPOP_STATE_SUPPORTED:INTERNAL=TRUE
|
||||||
|
//CMAKE_INSTALL_PREFIX during last run
|
||||||
|
_GNUInstallDirs_LAST_CMAKE_INSTALL_PREFIX:INTERNAL=/usr/local
|
||||||
|
__pkg_config_arguments_PKG_FONTCONFIG:INTERNAL=QUIET;fontconfig
|
||||||
|
__pkg_config_checked_PKG_FONTCONFIG:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: pkgcfg_lib_PKG_FONTCONFIG_fontconfig
|
||||||
|
pkgcfg_lib_PKG_FONTCONFIG_fontconfig-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: pkgcfg_lib_PKG_FONTCONFIG_freetype
|
||||||
|
pkgcfg_lib_PKG_FONTCONFIG_freetype-ADVANCED:INTERNAL=1
|
||||||
|
prefix_result:INTERNAL=/usr/lib
|
||||||
|
|
||||||
@ -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 "12.2.0")
|
||||||
|
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 "")
|
||||||
|
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/12.2.0/include;/usr/local/include;/usr/lib/gcc/x86_64-pc-linux-gnu/12.2.0/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/12.2.0;/usr/lib;/lib")
|
||||||
|
set(CMAKE_C_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "")
|
||||||
BIN
breakout/glfw-3.3.8/build/CMakeFiles/3.24.1/CMakeDetermineCompilerABI_C.bin
Executable file
BIN
breakout/glfw-3.3.8/build/CMakeFiles/3.24.1/CMakeDetermineCompilerABI_C.bin
Executable file
Binary file not shown.
@ -0,0 +1,15 @@
|
|||||||
|
set(CMAKE_HOST_SYSTEM "Linux-5.19.3-arch1-1")
|
||||||
|
set(CMAKE_HOST_SYSTEM_NAME "Linux")
|
||||||
|
set(CMAKE_HOST_SYSTEM_VERSION "5.19.3-arch1-1")
|
||||||
|
set(CMAKE_HOST_SYSTEM_PROCESSOR "x86_64")
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
set(CMAKE_SYSTEM "Linux-5.19.3-arch1-1")
|
||||||
|
set(CMAKE_SYSTEM_NAME "Linux")
|
||||||
|
set(CMAKE_SYSTEM_VERSION "5.19.3-arch1-1")
|
||||||
|
set(CMAKE_SYSTEM_PROCESSOR "x86_64")
|
||||||
|
|
||||||
|
set(CMAKE_CROSSCOMPILING "FALSE")
|
||||||
|
|
||||||
|
set(CMAKE_SYSTEM_LOADED 1)
|
||||||
@ -0,0 +1,838 @@
|
|||||||
|
#ifdef __cplusplus
|
||||||
|
# error "A C++ compiler has been selected for C."
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if defined(__18CXX)
|
||||||
|
# define ID_VOID_MAIN
|
||||||
|
#endif
|
||||||
|
#if defined(__CLASSIC_C__)
|
||||||
|
/* cv-qualifiers did not exist in K&R C */
|
||||||
|
# define const
|
||||||
|
# define volatile
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if !defined(__has_include)
|
||||||
|
/* If the compiler does not have __has_include, pretend the answer is
|
||||||
|
always no. */
|
||||||
|
# define __has_include(x) 0
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
/* Version number components: V=Version, R=Revision, P=Patch
|
||||||
|
Version date components: YYYY=Year, MM=Month, DD=Day */
|
||||||
|
|
||||||
|
#if defined(__INTEL_COMPILER) || defined(__ICC)
|
||||||
|
# define COMPILER_ID "Intel"
|
||||||
|
# if defined(_MSC_VER)
|
||||||
|
# define SIMULATE_ID "MSVC"
|
||||||
|
# endif
|
||||||
|
# if defined(__GNUC__)
|
||||||
|
# define SIMULATE_ID "GNU"
|
||||||
|
# endif
|
||||||
|
/* __INTEL_COMPILER = VRP prior to 2021, and then VVVV for 2021 and later,
|
||||||
|
except that a few beta releases use the old format with V=2021. */
|
||||||
|
# if __INTEL_COMPILER < 2021 || __INTEL_COMPILER == 202110 || __INTEL_COMPILER == 202111
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER/100)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER/10 % 10)
|
||||||
|
# if defined(__INTEL_COMPILER_UPDATE)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER_UPDATE)
|
||||||
|
# else
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER % 10)
|
||||||
|
# endif
|
||||||
|
# else
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER_UPDATE)
|
||||||
|
/* The third version component from --version is an update index,
|
||||||
|
but no macro is provided for it. */
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(0)
|
||||||
|
# endif
|
||||||
|
# if defined(__INTEL_COMPILER_BUILD_DATE)
|
||||||
|
/* __INTEL_COMPILER_BUILD_DATE = YYYYMMDD */
|
||||||
|
# define COMPILER_VERSION_TWEAK DEC(__INTEL_COMPILER_BUILD_DATE)
|
||||||
|
# endif
|
||||||
|
# if defined(_MSC_VER)
|
||||||
|
/* _MSC_VER = VVRR */
|
||||||
|
# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100)
|
||||||
|
# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100)
|
||||||
|
# endif
|
||||||
|
# if defined(__GNUC__)
|
||||||
|
# define SIMULATE_VERSION_MAJOR DEC(__GNUC__)
|
||||||
|
# elif defined(__GNUG__)
|
||||||
|
# define SIMULATE_VERSION_MAJOR DEC(__GNUG__)
|
||||||
|
# endif
|
||||||
|
# if defined(__GNUC_MINOR__)
|
||||||
|
# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__)
|
||||||
|
# endif
|
||||||
|
# if defined(__GNUC_PATCHLEVEL__)
|
||||||
|
# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__)
|
||||||
|
# endif
|
||||||
|
|
||||||
|
#elif (defined(__clang__) && defined(__INTEL_CLANG_COMPILER)) || defined(__INTEL_LLVM_COMPILER)
|
||||||
|
# define COMPILER_ID "IntelLLVM"
|
||||||
|
#if defined(_MSC_VER)
|
||||||
|
# define SIMULATE_ID "MSVC"
|
||||||
|
#endif
|
||||||
|
#if defined(__GNUC__)
|
||||||
|
# define SIMULATE_ID "GNU"
|
||||||
|
#endif
|
||||||
|
/* __INTEL_LLVM_COMPILER = VVVVRP prior to 2021.2.0, VVVVRRPP for 2021.2.0 and
|
||||||
|
* later. Look for 6 digit vs. 8 digit version number to decide encoding.
|
||||||
|
* VVVV is no smaller than the current year when a version is released.
|
||||||
|
*/
|
||||||
|
#if __INTEL_LLVM_COMPILER < 1000000L
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/100)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/10 % 10)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 10)
|
||||||
|
#else
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/10000)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/100 % 100)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 100)
|
||||||
|
#endif
|
||||||
|
#if defined(_MSC_VER)
|
||||||
|
/* _MSC_VER = VVRR */
|
||||||
|
# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100)
|
||||||
|
# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100)
|
||||||
|
#endif
|
||||||
|
#if defined(__GNUC__)
|
||||||
|
# define SIMULATE_VERSION_MAJOR DEC(__GNUC__)
|
||||||
|
#elif defined(__GNUG__)
|
||||||
|
# define SIMULATE_VERSION_MAJOR DEC(__GNUG__)
|
||||||
|
#endif
|
||||||
|
#if defined(__GNUC_MINOR__)
|
||||||
|
# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__)
|
||||||
|
#endif
|
||||||
|
#if defined(__GNUC_PATCHLEVEL__)
|
||||||
|
# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__)
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#elif defined(__PATHCC__)
|
||||||
|
# define COMPILER_ID "PathScale"
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__PATHCC__)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__PATHCC_MINOR__)
|
||||||
|
# if defined(__PATHCC_PATCHLEVEL__)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__PATHCC_PATCHLEVEL__)
|
||||||
|
# endif
|
||||||
|
|
||||||
|
#elif defined(__BORLANDC__) && defined(__CODEGEARC_VERSION__)
|
||||||
|
# define COMPILER_ID "Embarcadero"
|
||||||
|
# define COMPILER_VERSION_MAJOR HEX(__CODEGEARC_VERSION__>>24 & 0x00FF)
|
||||||
|
# define COMPILER_VERSION_MINOR HEX(__CODEGEARC_VERSION__>>16 & 0x00FF)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__CODEGEARC_VERSION__ & 0xFFFF)
|
||||||
|
|
||||||
|
#elif defined(__BORLANDC__)
|
||||||
|
# define COMPILER_ID "Borland"
|
||||||
|
/* __BORLANDC__ = 0xVRR */
|
||||||
|
# define COMPILER_VERSION_MAJOR HEX(__BORLANDC__>>8)
|
||||||
|
# define COMPILER_VERSION_MINOR HEX(__BORLANDC__ & 0xFF)
|
||||||
|
|
||||||
|
#elif defined(__WATCOMC__) && __WATCOMC__ < 1200
|
||||||
|
# define COMPILER_ID "Watcom"
|
||||||
|
/* __WATCOMC__ = VVRR */
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__WATCOMC__ / 100)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10)
|
||||||
|
# if (__WATCOMC__ % 10) > 0
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10)
|
||||||
|
# endif
|
||||||
|
|
||||||
|
#elif defined(__WATCOMC__)
|
||||||
|
# define COMPILER_ID "OpenWatcom"
|
||||||
|
/* __WATCOMC__ = VVRP + 1100 */
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC((__WATCOMC__ - 1100) / 100)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10)
|
||||||
|
# if (__WATCOMC__ % 10) > 0
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10)
|
||||||
|
# endif
|
||||||
|
|
||||||
|
#elif defined(__SUNPRO_C)
|
||||||
|
# define COMPILER_ID "SunPro"
|
||||||
|
# if __SUNPRO_C >= 0x5100
|
||||||
|
/* __SUNPRO_C = 0xVRRP */
|
||||||
|
# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_C>>12)
|
||||||
|
# define COMPILER_VERSION_MINOR HEX(__SUNPRO_C>>4 & 0xFF)
|
||||||
|
# define COMPILER_VERSION_PATCH HEX(__SUNPRO_C & 0xF)
|
||||||
|
# else
|
||||||
|
/* __SUNPRO_CC = 0xVRP */
|
||||||
|
# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_C>>8)
|
||||||
|
# define COMPILER_VERSION_MINOR HEX(__SUNPRO_C>>4 & 0xF)
|
||||||
|
# define COMPILER_VERSION_PATCH HEX(__SUNPRO_C & 0xF)
|
||||||
|
# endif
|
||||||
|
|
||||||
|
#elif defined(__HP_cc)
|
||||||
|
# define COMPILER_ID "HP"
|
||||||
|
/* __HP_cc = VVRRPP */
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__HP_cc/10000)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__HP_cc/100 % 100)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__HP_cc % 100)
|
||||||
|
|
||||||
|
#elif defined(__DECC)
|
||||||
|
# define COMPILER_ID "Compaq"
|
||||||
|
/* __DECC_VER = VVRRTPPPP */
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__DECC_VER/10000000)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__DECC_VER/100000 % 100)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__DECC_VER % 10000)
|
||||||
|
|
||||||
|
#elif defined(__IBMC__) && defined(__COMPILER_VER__)
|
||||||
|
# define COMPILER_ID "zOS"
|
||||||
|
/* __IBMC__ = VRP */
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10)
|
||||||
|
|
||||||
|
#elif defined(__open_xl__) && defined(__clang__)
|
||||||
|
# define COMPILER_ID "IBMClang"
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__open_xl_version__)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__open_xl_release__)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__open_xl_modification__)
|
||||||
|
# define COMPILER_VERSION_TWEAK DEC(__open_xl_ptf_fix_level__)
|
||||||
|
|
||||||
|
|
||||||
|
#elif defined(__ibmxl__) && defined(__clang__)
|
||||||
|
# define COMPILER_ID "XLClang"
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__ibmxl_version__)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__ibmxl_release__)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__ibmxl_modification__)
|
||||||
|
# define COMPILER_VERSION_TWEAK DEC(__ibmxl_ptf_fix_level__)
|
||||||
|
|
||||||
|
|
||||||
|
#elif defined(__IBMC__) && !defined(__COMPILER_VER__) && __IBMC__ >= 800
|
||||||
|
# define COMPILER_ID "XL"
|
||||||
|
/* __IBMC__ = VRP */
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10)
|
||||||
|
|
||||||
|
#elif defined(__IBMC__) && !defined(__COMPILER_VER__) && __IBMC__ < 800
|
||||||
|
# define COMPILER_ID "VisualAge"
|
||||||
|
/* __IBMC__ = VRP */
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10)
|
||||||
|
|
||||||
|
#elif defined(__NVCOMPILER)
|
||||||
|
# define COMPILER_ID "NVHPC"
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__NVCOMPILER_MAJOR__)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__NVCOMPILER_MINOR__)
|
||||||
|
# if defined(__NVCOMPILER_PATCHLEVEL__)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__NVCOMPILER_PATCHLEVEL__)
|
||||||
|
# endif
|
||||||
|
|
||||||
|
#elif defined(__PGI)
|
||||||
|
# define COMPILER_ID "PGI"
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__PGIC__)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__PGIC_MINOR__)
|
||||||
|
# if defined(__PGIC_PATCHLEVEL__)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__PGIC_PATCHLEVEL__)
|
||||||
|
# endif
|
||||||
|
|
||||||
|
#elif defined(_CRAYC)
|
||||||
|
# define COMPILER_ID "Cray"
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(_RELEASE_MAJOR)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(_RELEASE_MINOR)
|
||||||
|
|
||||||
|
#elif defined(__TI_COMPILER_VERSION__)
|
||||||
|
# define COMPILER_ID "TI"
|
||||||
|
/* __TI_COMPILER_VERSION__ = VVVRRRPPP */
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__TI_COMPILER_VERSION__/1000000)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__TI_COMPILER_VERSION__/1000 % 1000)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__TI_COMPILER_VERSION__ % 1000)
|
||||||
|
|
||||||
|
#elif defined(__CLANG_FUJITSU)
|
||||||
|
# define COMPILER_ID "FujitsuClang"
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__FCC_major__)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__FCC_minor__)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__)
|
||||||
|
# define COMPILER_VERSION_INTERNAL_STR __clang_version__
|
||||||
|
|
||||||
|
|
||||||
|
#elif defined(__FUJITSU)
|
||||||
|
# define COMPILER_ID "Fujitsu"
|
||||||
|
# if defined(__FCC_version__)
|
||||||
|
# define COMPILER_VERSION __FCC_version__
|
||||||
|
# elif defined(__FCC_major__)
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__FCC_major__)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__FCC_minor__)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__)
|
||||||
|
# endif
|
||||||
|
# if defined(__fcc_version)
|
||||||
|
# define COMPILER_VERSION_INTERNAL DEC(__fcc_version)
|
||||||
|
# elif defined(__FCC_VERSION)
|
||||||
|
# define COMPILER_VERSION_INTERNAL DEC(__FCC_VERSION)
|
||||||
|
# endif
|
||||||
|
|
||||||
|
|
||||||
|
#elif defined(__ghs__)
|
||||||
|
# define COMPILER_ID "GHS"
|
||||||
|
/* __GHS_VERSION_NUMBER = VVVVRP */
|
||||||
|
# ifdef __GHS_VERSION_NUMBER
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__GHS_VERSION_NUMBER / 100)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__GHS_VERSION_NUMBER / 10 % 10)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__GHS_VERSION_NUMBER % 10)
|
||||||
|
# endif
|
||||||
|
|
||||||
|
#elif defined(__TINYC__)
|
||||||
|
# define COMPILER_ID "TinyCC"
|
||||||
|
|
||||||
|
#elif defined(__BCC__)
|
||||||
|
# define COMPILER_ID "Bruce"
|
||||||
|
|
||||||
|
#elif defined(__SCO_VERSION__)
|
||||||
|
# define COMPILER_ID "SCO"
|
||||||
|
|
||||||
|
#elif defined(__ARMCC_VERSION) && !defined(__clang__)
|
||||||
|
# define COMPILER_ID "ARMCC"
|
||||||
|
#if __ARMCC_VERSION >= 1000000
|
||||||
|
/* __ARMCC_VERSION = VRRPPPP */
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/1000000)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 100)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000)
|
||||||
|
#else
|
||||||
|
/* __ARMCC_VERSION = VRPPPP */
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/100000)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 10)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000)
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
#elif defined(__clang__) && defined(__apple_build_version__)
|
||||||
|
# define COMPILER_ID "AppleClang"
|
||||||
|
# if defined(_MSC_VER)
|
||||||
|
# define SIMULATE_ID "MSVC"
|
||||||
|
# endif
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__clang_major__)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__clang_minor__)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__)
|
||||||
|
# if defined(_MSC_VER)
|
||||||
|
/* _MSC_VER = VVRR */
|
||||||
|
# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100)
|
||||||
|
# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100)
|
||||||
|
# endif
|
||||||
|
# define COMPILER_VERSION_TWEAK DEC(__apple_build_version__)
|
||||||
|
|
||||||
|
#elif defined(__clang__) && defined(__ARMCOMPILER_VERSION)
|
||||||
|
# define COMPILER_ID "ARMClang"
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__ARMCOMPILER_VERSION/1000000)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__ARMCOMPILER_VERSION/10000 % 100)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__ARMCOMPILER_VERSION % 10000)
|
||||||
|
# define COMPILER_VERSION_INTERNAL DEC(__ARMCOMPILER_VERSION)
|
||||||
|
|
||||||
|
#elif defined(__clang__)
|
||||||
|
# define COMPILER_ID "Clang"
|
||||||
|
# if defined(_MSC_VER)
|
||||||
|
# define SIMULATE_ID "MSVC"
|
||||||
|
# endif
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__clang_major__)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__clang_minor__)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__)
|
||||||
|
# if defined(_MSC_VER)
|
||||||
|
/* _MSC_VER = VVRR */
|
||||||
|
# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100)
|
||||||
|
# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100)
|
||||||
|
# endif
|
||||||
|
|
||||||
|
#elif defined(__LCC__) && (defined(__GNUC__) || defined(__GNUG__) || defined(__MCST__))
|
||||||
|
# define COMPILER_ID "LCC"
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(1)
|
||||||
|
# if defined(__LCC__)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__LCC__- 100)
|
||||||
|
# endif
|
||||||
|
# if defined(__LCC_MINOR__)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__LCC_MINOR__)
|
||||||
|
# endif
|
||||||
|
# if defined(__GNUC__) && defined(__GNUC_MINOR__)
|
||||||
|
# define SIMULATE_ID "GNU"
|
||||||
|
# define SIMULATE_VERSION_MAJOR DEC(__GNUC__)
|
||||||
|
# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__)
|
||||||
|
# if defined(__GNUC_PATCHLEVEL__)
|
||||||
|
# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__)
|
||||||
|
# endif
|
||||||
|
# endif
|
||||||
|
|
||||||
|
#elif defined(__GNUC__)
|
||||||
|
# define COMPILER_ID "GNU"
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__GNUC__)
|
||||||
|
# if defined(__GNUC_MINOR__)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__GNUC_MINOR__)
|
||||||
|
# endif
|
||||||
|
# if defined(__GNUC_PATCHLEVEL__)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__)
|
||||||
|
# endif
|
||||||
|
|
||||||
|
#elif defined(_MSC_VER)
|
||||||
|
# define COMPILER_ID "MSVC"
|
||||||
|
/* _MSC_VER = VVRR */
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(_MSC_VER / 100)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(_MSC_VER % 100)
|
||||||
|
# if defined(_MSC_FULL_VER)
|
||||||
|
# if _MSC_VER >= 1400
|
||||||
|
/* _MSC_FULL_VER = VVRRPPPPP */
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 100000)
|
||||||
|
# else
|
||||||
|
/* _MSC_FULL_VER = VVRRPPPP */
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 10000)
|
||||||
|
# endif
|
||||||
|
# endif
|
||||||
|
# if defined(_MSC_BUILD)
|
||||||
|
# define COMPILER_VERSION_TWEAK DEC(_MSC_BUILD)
|
||||||
|
# endif
|
||||||
|
|
||||||
|
#elif defined(_ADI_COMPILER)
|
||||||
|
# define COMPILER_ID "ADSP"
|
||||||
|
#if defined(__VERSIONNUM__)
|
||||||
|
/* __VERSIONNUM__ = 0xVVRRPPTT */
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__VERSIONNUM__ >> 24 & 0xFF)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__VERSIONNUM__ >> 16 & 0xFF)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__VERSIONNUM__ >> 8 & 0xFF)
|
||||||
|
# define COMPILER_VERSION_TWEAK DEC(__VERSIONNUM__ & 0xFF)
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC)
|
||||||
|
# define COMPILER_ID "IAR"
|
||||||
|
# if defined(__VER__) && defined(__ICCARM__)
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC((__VER__) / 1000000)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(((__VER__) / 1000) % 1000)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC((__VER__) % 1000)
|
||||||
|
# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__)
|
||||||
|
# elif defined(__VER__) && (defined(__ICCAVR__) || defined(__ICCRX__) || defined(__ICCRH850__) || defined(__ICCRL78__) || defined(__ICC430__) || defined(__ICCRISCV__) || defined(__ICCV850__) || defined(__ICC8051__) || defined(__ICCSTM8__))
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC((__VER__) / 100)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC((__VER__) - (((__VER__) / 100)*100))
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__SUBVERSION__)
|
||||||
|
# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__)
|
||||||
|
# endif
|
||||||
|
|
||||||
|
#elif defined(__SDCC_VERSION_MAJOR) || defined(SDCC)
|
||||||
|
# define COMPILER_ID "SDCC"
|
||||||
|
# if defined(__SDCC_VERSION_MAJOR)
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__SDCC_VERSION_MAJOR)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__SDCC_VERSION_MINOR)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__SDCC_VERSION_PATCH)
|
||||||
|
# else
|
||||||
|
/* SDCC = VRP */
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(SDCC/100)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(SDCC/10 % 10)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(SDCC % 10)
|
||||||
|
# endif
|
||||||
|
|
||||||
|
|
||||||
|
/* These compilers are either not known or too old to define an
|
||||||
|
identification macro. Try to identify the platform and guess that
|
||||||
|
it is the native compiler. */
|
||||||
|
#elif defined(__hpux) || defined(__hpua)
|
||||||
|
# define COMPILER_ID "HP"
|
||||||
|
|
||||||
|
#else /* unknown compiler */
|
||||||
|
# define COMPILER_ID ""
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/* Construct the string literal in pieces to prevent the source from
|
||||||
|
getting matched. Store it in a pointer rather than an array
|
||||||
|
because some compilers will just produce instructions to fill the
|
||||||
|
array rather than assigning a pointer to a static array. */
|
||||||
|
char const* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]";
|
||||||
|
#ifdef SIMULATE_ID
|
||||||
|
char const* info_simulate = "INFO" ":" "simulate[" SIMULATE_ID "]";
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#ifdef __QNXNTO__
|
||||||
|
char const* qnxnto = "INFO" ":" "qnxnto[]";
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if defined(__CRAYXT_COMPUTE_LINUX_TARGET)
|
||||||
|
char const *info_cray = "INFO" ":" "compiler_wrapper[CrayPrgEnv]";
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#define STRINGIFY_HELPER(X) #X
|
||||||
|
#define STRINGIFY(X) STRINGIFY_HELPER(X)
|
||||||
|
|
||||||
|
/* Identify known platforms by name. */
|
||||||
|
#if defined(__linux) || defined(__linux__) || defined(linux)
|
||||||
|
# define PLATFORM_ID "Linux"
|
||||||
|
|
||||||
|
#elif defined(__MSYS__)
|
||||||
|
# define PLATFORM_ID "MSYS"
|
||||||
|
|
||||||
|
#elif defined(__CYGWIN__)
|
||||||
|
# define PLATFORM_ID "Cygwin"
|
||||||
|
|
||||||
|
#elif defined(__MINGW32__)
|
||||||
|
# define PLATFORM_ID "MinGW"
|
||||||
|
|
||||||
|
#elif defined(__APPLE__)
|
||||||
|
# define PLATFORM_ID "Darwin"
|
||||||
|
|
||||||
|
#elif defined(_WIN32) || defined(__WIN32__) || defined(WIN32)
|
||||||
|
# define PLATFORM_ID "Windows"
|
||||||
|
|
||||||
|
#elif defined(__FreeBSD__) || defined(__FreeBSD)
|
||||||
|
# define PLATFORM_ID "FreeBSD"
|
||||||
|
|
||||||
|
#elif defined(__NetBSD__) || defined(__NetBSD)
|
||||||
|
# define PLATFORM_ID "NetBSD"
|
||||||
|
|
||||||
|
#elif defined(__OpenBSD__) || defined(__OPENBSD)
|
||||||
|
# define PLATFORM_ID "OpenBSD"
|
||||||
|
|
||||||
|
#elif defined(__sun) || defined(sun)
|
||||||
|
# define PLATFORM_ID "SunOS"
|
||||||
|
|
||||||
|
#elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__)
|
||||||
|
# define PLATFORM_ID "AIX"
|
||||||
|
|
||||||
|
#elif defined(__hpux) || defined(__hpux__)
|
||||||
|
# define PLATFORM_ID "HP-UX"
|
||||||
|
|
||||||
|
#elif defined(__HAIKU__)
|
||||||
|
# define PLATFORM_ID "Haiku"
|
||||||
|
|
||||||
|
#elif defined(__BeOS) || defined(__BEOS__) || defined(_BEOS)
|
||||||
|
# define PLATFORM_ID "BeOS"
|
||||||
|
|
||||||
|
#elif defined(__QNX__) || defined(__QNXNTO__)
|
||||||
|
# define PLATFORM_ID "QNX"
|
||||||
|
|
||||||
|
#elif defined(__tru64) || defined(_tru64) || defined(__TRU64__)
|
||||||
|
# define PLATFORM_ID "Tru64"
|
||||||
|
|
||||||
|
#elif defined(__riscos) || defined(__riscos__)
|
||||||
|
# define PLATFORM_ID "RISCos"
|
||||||
|
|
||||||
|
#elif defined(__sinix) || defined(__sinix__) || defined(__SINIX__)
|
||||||
|
# define PLATFORM_ID "SINIX"
|
||||||
|
|
||||||
|
#elif defined(__UNIX_SV__)
|
||||||
|
# define PLATFORM_ID "UNIX_SV"
|
||||||
|
|
||||||
|
#elif defined(__bsdos__)
|
||||||
|
# define PLATFORM_ID "BSDOS"
|
||||||
|
|
||||||
|
#elif defined(_MPRAS) || defined(MPRAS)
|
||||||
|
# define PLATFORM_ID "MP-RAS"
|
||||||
|
|
||||||
|
#elif defined(__osf) || defined(__osf__)
|
||||||
|
# define PLATFORM_ID "OSF1"
|
||||||
|
|
||||||
|
#elif defined(_SCO_SV) || defined(SCO_SV) || defined(sco_sv)
|
||||||
|
# define PLATFORM_ID "SCO_SV"
|
||||||
|
|
||||||
|
#elif defined(__ultrix) || defined(__ultrix__) || defined(_ULTRIX)
|
||||||
|
# define PLATFORM_ID "ULTRIX"
|
||||||
|
|
||||||
|
#elif defined(__XENIX__) || defined(_XENIX) || defined(XENIX)
|
||||||
|
# define PLATFORM_ID "Xenix"
|
||||||
|
|
||||||
|
#elif defined(__WATCOMC__)
|
||||||
|
# if defined(__LINUX__)
|
||||||
|
# define PLATFORM_ID "Linux"
|
||||||
|
|
||||||
|
# elif defined(__DOS__)
|
||||||
|
# define PLATFORM_ID "DOS"
|
||||||
|
|
||||||
|
# elif defined(__OS2__)
|
||||||
|
# define PLATFORM_ID "OS2"
|
||||||
|
|
||||||
|
# elif defined(__WINDOWS__)
|
||||||
|
# define PLATFORM_ID "Windows3x"
|
||||||
|
|
||||||
|
# elif defined(__VXWORKS__)
|
||||||
|
# define PLATFORM_ID "VxWorks"
|
||||||
|
|
||||||
|
# else /* unknown platform */
|
||||||
|
# define PLATFORM_ID
|
||||||
|
# endif
|
||||||
|
|
||||||
|
#elif defined(__INTEGRITY)
|
||||||
|
# if defined(INT_178B)
|
||||||
|
# define PLATFORM_ID "Integrity178"
|
||||||
|
|
||||||
|
# else /* regular Integrity */
|
||||||
|
# define PLATFORM_ID "Integrity"
|
||||||
|
# endif
|
||||||
|
|
||||||
|
# elif defined(_ADI_COMPILER)
|
||||||
|
# define PLATFORM_ID "ADSP"
|
||||||
|
|
||||||
|
#else /* unknown platform */
|
||||||
|
# define PLATFORM_ID
|
||||||
|
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/* For windows compilers MSVC and Intel we can determine
|
||||||
|
the architecture of the compiler being used. This is because
|
||||||
|
the compilers do not have flags that can change the architecture,
|
||||||
|
but rather depend on which compiler is being used
|
||||||
|
*/
|
||||||
|
#if defined(_WIN32) && defined(_MSC_VER)
|
||||||
|
# if defined(_M_IA64)
|
||||||
|
# define ARCHITECTURE_ID "IA64"
|
||||||
|
|
||||||
|
# elif defined(_M_ARM64EC)
|
||||||
|
# define ARCHITECTURE_ID "ARM64EC"
|
||||||
|
|
||||||
|
# elif defined(_M_X64) || defined(_M_AMD64)
|
||||||
|
# define ARCHITECTURE_ID "x64"
|
||||||
|
|
||||||
|
# elif defined(_M_IX86)
|
||||||
|
# define ARCHITECTURE_ID "X86"
|
||||||
|
|
||||||
|
# elif defined(_M_ARM64)
|
||||||
|
# define ARCHITECTURE_ID "ARM64"
|
||||||
|
|
||||||
|
# elif defined(_M_ARM)
|
||||||
|
# if _M_ARM == 4
|
||||||
|
# define ARCHITECTURE_ID "ARMV4I"
|
||||||
|
# elif _M_ARM == 5
|
||||||
|
# define ARCHITECTURE_ID "ARMV5I"
|
||||||
|
# else
|
||||||
|
# define ARCHITECTURE_ID "ARMV" STRINGIFY(_M_ARM)
|
||||||
|
# endif
|
||||||
|
|
||||||
|
# elif defined(_M_MIPS)
|
||||||
|
# define ARCHITECTURE_ID "MIPS"
|
||||||
|
|
||||||
|
# elif defined(_M_SH)
|
||||||
|
# define ARCHITECTURE_ID "SHx"
|
||||||
|
|
||||||
|
# else /* unknown architecture */
|
||||||
|
# define ARCHITECTURE_ID ""
|
||||||
|
# endif
|
||||||
|
|
||||||
|
#elif defined(__WATCOMC__)
|
||||||
|
# if defined(_M_I86)
|
||||||
|
# define ARCHITECTURE_ID "I86"
|
||||||
|
|
||||||
|
# elif defined(_M_IX86)
|
||||||
|
# define ARCHITECTURE_ID "X86"
|
||||||
|
|
||||||
|
# else /* unknown architecture */
|
||||||
|
# define ARCHITECTURE_ID ""
|
||||||
|
# endif
|
||||||
|
|
||||||
|
#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC)
|
||||||
|
# if defined(__ICCARM__)
|
||||||
|
# define ARCHITECTURE_ID "ARM"
|
||||||
|
|
||||||
|
# elif defined(__ICCRX__)
|
||||||
|
# define ARCHITECTURE_ID "RX"
|
||||||
|
|
||||||
|
# elif defined(__ICCRH850__)
|
||||||
|
# define ARCHITECTURE_ID "RH850"
|
||||||
|
|
||||||
|
# elif defined(__ICCRL78__)
|
||||||
|
# define ARCHITECTURE_ID "RL78"
|
||||||
|
|
||||||
|
# elif defined(__ICCRISCV__)
|
||||||
|
# define ARCHITECTURE_ID "RISCV"
|
||||||
|
|
||||||
|
# elif defined(__ICCAVR__)
|
||||||
|
# define ARCHITECTURE_ID "AVR"
|
||||||
|
|
||||||
|
# elif defined(__ICC430__)
|
||||||
|
# define ARCHITECTURE_ID "MSP430"
|
||||||
|
|
||||||
|
# elif defined(__ICCV850__)
|
||||||
|
# define ARCHITECTURE_ID "V850"
|
||||||
|
|
||||||
|
# elif defined(__ICC8051__)
|
||||||
|
# define ARCHITECTURE_ID "8051"
|
||||||
|
|
||||||
|
# elif defined(__ICCSTM8__)
|
||||||
|
# define ARCHITECTURE_ID "STM8"
|
||||||
|
|
||||||
|
# else /* unknown architecture */
|
||||||
|
# define ARCHITECTURE_ID ""
|
||||||
|
# endif
|
||||||
|
|
||||||
|
#elif defined(__ghs__)
|
||||||
|
# if defined(__PPC64__)
|
||||||
|
# define ARCHITECTURE_ID "PPC64"
|
||||||
|
|
||||||
|
# elif defined(__ppc__)
|
||||||
|
# define ARCHITECTURE_ID "PPC"
|
||||||
|
|
||||||
|
# elif defined(__ARM__)
|
||||||
|
# define ARCHITECTURE_ID "ARM"
|
||||||
|
|
||||||
|
# elif defined(__x86_64__)
|
||||||
|
# define ARCHITECTURE_ID "x64"
|
||||||
|
|
||||||
|
# elif defined(__i386__)
|
||||||
|
# define ARCHITECTURE_ID "X86"
|
||||||
|
|
||||||
|
# else /* unknown architecture */
|
||||||
|
# define ARCHITECTURE_ID ""
|
||||||
|
# endif
|
||||||
|
|
||||||
|
#elif defined(__TI_COMPILER_VERSION__)
|
||||||
|
# if defined(__TI_ARM__)
|
||||||
|
# define ARCHITECTURE_ID "ARM"
|
||||||
|
|
||||||
|
# elif defined(__MSP430__)
|
||||||
|
# define ARCHITECTURE_ID "MSP430"
|
||||||
|
|
||||||
|
# elif defined(__TMS320C28XX__)
|
||||||
|
# define ARCHITECTURE_ID "TMS320C28x"
|
||||||
|
|
||||||
|
# elif defined(__TMS320C6X__) || defined(_TMS320C6X)
|
||||||
|
# define ARCHITECTURE_ID "TMS320C6x"
|
||||||
|
|
||||||
|
# else /* unknown architecture */
|
||||||
|
# define ARCHITECTURE_ID ""
|
||||||
|
# endif
|
||||||
|
|
||||||
|
# elif defined(__ADSPSHARC__)
|
||||||
|
# define ARCHITECTURE_ID "SHARC"
|
||||||
|
|
||||||
|
# elif defined(__ADSPBLACKFIN__)
|
||||||
|
# define ARCHITECTURE_ID "Blackfin"
|
||||||
|
|
||||||
|
#else
|
||||||
|
# define ARCHITECTURE_ID
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/* Convert integer to decimal digit literals. */
|
||||||
|
#define DEC(n) \
|
||||||
|
('0' + (((n) / 10000000)%10)), \
|
||||||
|
('0' + (((n) / 1000000)%10)), \
|
||||||
|
('0' + (((n) / 100000)%10)), \
|
||||||
|
('0' + (((n) / 10000)%10)), \
|
||||||
|
('0' + (((n) / 1000)%10)), \
|
||||||
|
('0' + (((n) / 100)%10)), \
|
||||||
|
('0' + (((n) / 10)%10)), \
|
||||||
|
('0' + ((n) % 10))
|
||||||
|
|
||||||
|
/* Convert integer to hex digit literals. */
|
||||||
|
#define HEX(n) \
|
||||||
|
('0' + ((n)>>28 & 0xF)), \
|
||||||
|
('0' + ((n)>>24 & 0xF)), \
|
||||||
|
('0' + ((n)>>20 & 0xF)), \
|
||||||
|
('0' + ((n)>>16 & 0xF)), \
|
||||||
|
('0' + ((n)>>12 & 0xF)), \
|
||||||
|
('0' + ((n)>>8 & 0xF)), \
|
||||||
|
('0' + ((n)>>4 & 0xF)), \
|
||||||
|
('0' + ((n) & 0xF))
|
||||||
|
|
||||||
|
/* Construct a string literal encoding the version number. */
|
||||||
|
#ifdef COMPILER_VERSION
|
||||||
|
char const* info_version = "INFO" ":" "compiler_version[" COMPILER_VERSION "]";
|
||||||
|
|
||||||
|
/* Construct a string literal encoding the version number components. */
|
||||||
|
#elif defined(COMPILER_VERSION_MAJOR)
|
||||||
|
char const info_version[] = {
|
||||||
|
'I', 'N', 'F', 'O', ':',
|
||||||
|
'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','[',
|
||||||
|
COMPILER_VERSION_MAJOR,
|
||||||
|
# ifdef COMPILER_VERSION_MINOR
|
||||||
|
'.', COMPILER_VERSION_MINOR,
|
||||||
|
# ifdef COMPILER_VERSION_PATCH
|
||||||
|
'.', COMPILER_VERSION_PATCH,
|
||||||
|
# ifdef COMPILER_VERSION_TWEAK
|
||||||
|
'.', COMPILER_VERSION_TWEAK,
|
||||||
|
# endif
|
||||||
|
# endif
|
||||||
|
# endif
|
||||||
|
']','\0'};
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/* Construct a string literal encoding the internal version number. */
|
||||||
|
#ifdef COMPILER_VERSION_INTERNAL
|
||||||
|
char const info_version_internal[] = {
|
||||||
|
'I', 'N', 'F', 'O', ':',
|
||||||
|
'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','_',
|
||||||
|
'i','n','t','e','r','n','a','l','[',
|
||||||
|
COMPILER_VERSION_INTERNAL,']','\0'};
|
||||||
|
#elif defined(COMPILER_VERSION_INTERNAL_STR)
|
||||||
|
char const* info_version_internal = "INFO" ":" "compiler_version_internal[" COMPILER_VERSION_INTERNAL_STR "]";
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/* Construct a string literal encoding the version number components. */
|
||||||
|
#ifdef SIMULATE_VERSION_MAJOR
|
||||||
|
char const info_simulate_version[] = {
|
||||||
|
'I', 'N', 'F', 'O', ':',
|
||||||
|
's','i','m','u','l','a','t','e','_','v','e','r','s','i','o','n','[',
|
||||||
|
SIMULATE_VERSION_MAJOR,
|
||||||
|
# ifdef SIMULATE_VERSION_MINOR
|
||||||
|
'.', SIMULATE_VERSION_MINOR,
|
||||||
|
# ifdef SIMULATE_VERSION_PATCH
|
||||||
|
'.', SIMULATE_VERSION_PATCH,
|
||||||
|
# ifdef SIMULATE_VERSION_TWEAK
|
||||||
|
'.', SIMULATE_VERSION_TWEAK,
|
||||||
|
# endif
|
||||||
|
# endif
|
||||||
|
# endif
|
||||||
|
']','\0'};
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/* Construct the string literal in pieces to prevent the source from
|
||||||
|
getting matched. Store it in a pointer rather than an array
|
||||||
|
because some compilers will just produce instructions to fill the
|
||||||
|
array rather than assigning a pointer to a static array. */
|
||||||
|
char const* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]";
|
||||||
|
char const* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]";
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
#if !defined(__STDC__) && !defined(__clang__)
|
||||||
|
# if defined(_MSC_VER) || defined(__ibmxl__) || defined(__IBMC__)
|
||||||
|
# define C_VERSION "90"
|
||||||
|
# else
|
||||||
|
# define C_VERSION
|
||||||
|
# endif
|
||||||
|
#elif __STDC_VERSION__ > 201710L
|
||||||
|
# define C_VERSION "23"
|
||||||
|
#elif __STDC_VERSION__ >= 201710L
|
||||||
|
# define C_VERSION "17"
|
||||||
|
#elif __STDC_VERSION__ >= 201000L
|
||||||
|
# define C_VERSION "11"
|
||||||
|
#elif __STDC_VERSION__ >= 199901L
|
||||||
|
# define C_VERSION "99"
|
||||||
|
#else
|
||||||
|
# define C_VERSION "90"
|
||||||
|
#endif
|
||||||
|
const char* info_language_standard_default =
|
||||||
|
"INFO" ":" "standard_default[" C_VERSION "]";
|
||||||
|
|
||||||
|
const char* info_language_extensions_default = "INFO" ":" "extensions_default["
|
||||||
|
#if (defined(__clang__) || defined(__GNUC__) || defined(__xlC__) || \
|
||||||
|
defined(__TI_COMPILER_VERSION__)) && \
|
||||||
|
!defined(__STRICT_ANSI__)
|
||||||
|
"ON"
|
||||||
|
#else
|
||||||
|
"OFF"
|
||||||
|
#endif
|
||||||
|
"]";
|
||||||
|
|
||||||
|
/*--------------------------------------------------------------------------*/
|
||||||
|
|
||||||
|
#ifdef ID_VOID_MAIN
|
||||||
|
void main() {}
|
||||||
|
#else
|
||||||
|
# if defined(__CLASSIC_C__)
|
||||||
|
int main(argc, argv) int argc; char *argv[];
|
||||||
|
# else
|
||||||
|
int main(int argc, char* argv[])
|
||||||
|
# endif
|
||||||
|
{
|
||||||
|
int require = 0;
|
||||||
|
require += info_compiler[argc];
|
||||||
|
require += info_platform[argc];
|
||||||
|
require += info_arch[argc];
|
||||||
|
#ifdef COMPILER_VERSION_MAJOR
|
||||||
|
require += info_version[argc];
|
||||||
|
#endif
|
||||||
|
#ifdef COMPILER_VERSION_INTERNAL
|
||||||
|
require += info_version_internal[argc];
|
||||||
|
#endif
|
||||||
|
#ifdef SIMULATE_ID
|
||||||
|
require += info_simulate[argc];
|
||||||
|
#endif
|
||||||
|
#ifdef SIMULATE_VERSION_MAJOR
|
||||||
|
require += info_simulate_version[argc];
|
||||||
|
#endif
|
||||||
|
#if defined(__CRAYXT_COMPUTE_LINUX_TARGET)
|
||||||
|
require += info_cray[argc];
|
||||||
|
#endif
|
||||||
|
require += info_language_standard_default[argc];
|
||||||
|
require += info_language_extensions_default[argc];
|
||||||
|
(void)argv;
|
||||||
|
return require;
|
||||||
|
}
|
||||||
|
#endif
|
||||||
BIN
breakout/glfw-3.3.8/build/CMakeFiles/3.24.1/CompilerIdC/a.out
Executable file
BIN
breakout/glfw-3.3.8/build/CMakeFiles/3.24.1/CompilerIdC/a.out
Executable file
Binary file not shown.
@ -0,0 +1,16 @@
|
|||||||
|
# CMAKE generated file: DO NOT EDIT!
|
||||||
|
# Generated by "Unix Makefiles" Generator, CMake Version 3.24
|
||||||
|
|
||||||
|
# Relative path conversion top directories.
|
||||||
|
set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8")
|
||||||
|
set(CMAKE_RELATIVE_PATH_TOP_BINARY "/home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/build")
|
||||||
|
|
||||||
|
# Force unix paths in dependencies.
|
||||||
|
set(CMAKE_FORCE_UNIX_PATHS 1)
|
||||||
|
|
||||||
|
|
||||||
|
# The C and CXX include file regular expressions for this directory.
|
||||||
|
set(CMAKE_C_INCLUDE_REGEX_SCAN "^.*$")
|
||||||
|
set(CMAKE_C_INCLUDE_REGEX_COMPLAIN "^$")
|
||||||
|
set(CMAKE_CXX_INCLUDE_REGEX_SCAN ${CMAKE_C_INCLUDE_REGEX_SCAN})
|
||||||
|
set(CMAKE_CXX_INCLUDE_REGEX_COMPLAIN ${CMAKE_C_INCLUDE_REGEX_COMPLAIN})
|
||||||
317
breakout/glfw-3.3.8/build/CMakeFiles/CMakeOutput.log
Normal file
317
breakout/glfw-3.3.8/build/CMakeFiles/CMakeOutput.log
Normal file
@ -0,0 +1,317 @@
|
|||||||
|
The system is: Linux - 5.19.3-arch1-1 - x86_64
|
||||||
|
Compiling the C compiler identification source file "CMakeCCompilerId.c" succeeded.
|
||||||
|
Compiler: /usr/bin/cc
|
||||||
|
Build flags:
|
||||||
|
Id flags:
|
||||||
|
|
||||||
|
The output was:
|
||||||
|
0
|
||||||
|
|
||||||
|
|
||||||
|
Compilation of the C compiler identification source "CMakeCCompilerId.c" produced "a.out"
|
||||||
|
|
||||||
|
The C compiler identification is GNU, found in "/home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/build/CMakeFiles/3.24.1/CompilerIdC/a.out"
|
||||||
|
|
||||||
|
Detecting C compiler ABI info compiled with the following output:
|
||||||
|
Change Dir: /home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/build/CMakeFiles/CMakeTmp
|
||||||
|
|
||||||
|
Run Build Command(s):/usr/bin/make -f Makefile cmTC_200ff/fast && /usr/bin/make -f CMakeFiles/cmTC_200ff.dir/build.make CMakeFiles/cmTC_200ff.dir/build
|
||||||
|
make[1]: Entering directory '/home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/build/CMakeFiles/CMakeTmp'
|
||||||
|
Building C object CMakeFiles/cmTC_200ff.dir/CMakeCCompilerABI.c.o
|
||||||
|
/usr/bin/cc -v -o CMakeFiles/cmTC_200ff.dir/CMakeCCompilerABI.c.o -c /usr/share/cmake/Modules/CMakeCCompilerABI.c
|
||||||
|
Using built-in specs.
|
||||||
|
COLLECT_GCC=/usr/bin/cc
|
||||||
|
Target: x86_64-pc-linux-gnu
|
||||||
|
Configured with: /build/gcc/src/gcc/configure --enable-languages=c,c++,ada,fortran,go,lto,objc,obj-c++,d --enable-bootstrap --prefix=/usr --libdir=/usr/lib --libexecdir=/usr/lib --mandir=/usr/share/man --infodir=/usr/share/info --with-bugurl=https://bugs.archlinux.org/ --with-build-config=bootstrap-lto --with-linker-hash-style=gnu --with-system-zlib --enable-__cxa_atexit --enable-cet=auto --enable-checking=release --enable-clocale=gnu --enable-default-pie --enable-default-ssp --enable-gnu-indirect-function --enable-gnu-unique-object --enable-libstdcxx-backtrace --enable-link-serialization=1 --enable-linker-build-id --enable-lto --enable-multilib --enable-plugin --enable-shared --enable-threads=posix --disable-libssp --disable-libstdcxx-pch --disable-werror
|
||||||
|
Thread model: posix
|
||||||
|
Supported LTO compression algorithms: zlib zstd
|
||||||
|
gcc version 12.2.0 (GCC)
|
||||||
|
COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_200ff.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_200ff.dir/'
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/12.2.0/cc1 -quiet -v /usr/share/cmake/Modules/CMakeCCompilerABI.c -quiet -dumpdir CMakeFiles/cmTC_200ff.dir/ -dumpbase CMakeCCompilerABI.c.c -dumpbase-ext .c -mtune=generic -march=x86-64 -version -o /tmp/cclEQIaU.s
|
||||||
|
GNU C17 (GCC) version 12.2.0 (x86_64-pc-linux-gnu)
|
||||||
|
compiled by GNU C version 12.2.0, GMP version 6.2.1, MPFR version 4.1.0-p13, MPC version 1.2.1, isl version isl-0.25-GMP
|
||||||
|
|
||||||
|
GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072
|
||||||
|
ignoring nonexistent directory "/usr/lib/gcc/x86_64-pc-linux-gnu/12.2.0/../../../../x86_64-pc-linux-gnu/include"
|
||||||
|
#include "..." search starts here:
|
||||||
|
#include <...> search starts here:
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/12.2.0/include
|
||||||
|
/usr/local/include
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/12.2.0/include-fixed
|
||||||
|
/usr/include
|
||||||
|
End of search list.
|
||||||
|
GNU C17 (GCC) version 12.2.0 (x86_64-pc-linux-gnu)
|
||||||
|
compiled by GNU C version 12.2.0, GMP version 6.2.1, MPFR version 4.1.0-p13, MPC version 1.2.1, isl version isl-0.25-GMP
|
||||||
|
|
||||||
|
GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072
|
||||||
|
Compiler executable checksum: 4b798a352742e8322eaa4a166b8f6299
|
||||||
|
COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_200ff.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_200ff.dir/'
|
||||||
|
as -v --64 -o CMakeFiles/cmTC_200ff.dir/CMakeCCompilerABI.c.o /tmp/cclEQIaU.s
|
||||||
|
GNU assembler version 2.37 (x86_64-pc-linux-gnu) using BFD version (GNU Binutils) 2.37
|
||||||
|
COMPILER_PATH=/usr/lib/gcc/x86_64-pc-linux-gnu/12.2.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/12.2.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/:/usr/lib/gcc/x86_64-pc-linux-gnu/12.2.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/
|
||||||
|
LIBRARY_PATH=/usr/lib/gcc/x86_64-pc-linux-gnu/12.2.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/12.2.0/../../../../lib/:/lib/../lib/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-pc-linux-gnu/12.2.0/../../../:/lib/:/usr/lib/
|
||||||
|
COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_200ff.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_200ff.dir/CMakeCCompilerABI.c.'
|
||||||
|
Linking C executable cmTC_200ff
|
||||||
|
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_200ff.dir/link.txt --verbose=1
|
||||||
|
/usr/bin/cc -v CMakeFiles/cmTC_200ff.dir/CMakeCCompilerABI.c.o -o cmTC_200ff
|
||||||
|
Using built-in specs.
|
||||||
|
COLLECT_GCC=/usr/bin/cc
|
||||||
|
COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-pc-linux-gnu/12.2.0/lto-wrapper
|
||||||
|
Target: x86_64-pc-linux-gnu
|
||||||
|
Configured with: /build/gcc/src/gcc/configure --enable-languages=c,c++,ada,fortran,go,lto,objc,obj-c++,d --enable-bootstrap --prefix=/usr --libdir=/usr/lib --libexecdir=/usr/lib --mandir=/usr/share/man --infodir=/usr/share/info --with-bugurl=https://bugs.archlinux.org/ --with-build-config=bootstrap-lto --with-linker-hash-style=gnu --with-system-zlib --enable-__cxa_atexit --enable-cet=auto --enable-checking=release --enable-clocale=gnu --enable-default-pie --enable-default-ssp --enable-gnu-indirect-function --enable-gnu-unique-object --enable-libstdcxx-backtrace --enable-link-serialization=1 --enable-linker-build-id --enable-lto --enable-multilib --enable-plugin --enable-shared --enable-threads=posix --disable-libssp --disable-libstdcxx-pch --disable-werror
|
||||||
|
Thread model: posix
|
||||||
|
Supported LTO compression algorithms: zlib zstd
|
||||||
|
gcc version 12.2.0 (GCC)
|
||||||
|
COMPILER_PATH=/usr/lib/gcc/x86_64-pc-linux-gnu/12.2.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/12.2.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/:/usr/lib/gcc/x86_64-pc-linux-gnu/12.2.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/
|
||||||
|
LIBRARY_PATH=/usr/lib/gcc/x86_64-pc-linux-gnu/12.2.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/12.2.0/../../../../lib/:/lib/../lib/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-pc-linux-gnu/12.2.0/../../../:/lib/:/usr/lib/
|
||||||
|
COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_200ff' '-mtune=generic' '-march=x86-64' '-dumpdir' 'cmTC_200ff.'
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/12.2.0/collect2 -plugin /usr/lib/gcc/x86_64-pc-linux-gnu/12.2.0/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-pc-linux-gnu/12.2.0/lto-wrapper -plugin-opt=-fresolution=/tmp/ccOYK7eh.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s --build-id --eh-frame-hdr --hash-style=gnu -m elf_x86_64 -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -o cmTC_200ff /usr/lib/gcc/x86_64-pc-linux-gnu/12.2.0/../../../../lib/Scrt1.o /usr/lib/gcc/x86_64-pc-linux-gnu/12.2.0/../../../../lib/crti.o /usr/lib/gcc/x86_64-pc-linux-gnu/12.2.0/crtbeginS.o -L/usr/lib/gcc/x86_64-pc-linux-gnu/12.2.0 -L/usr/lib/gcc/x86_64-pc-linux-gnu/12.2.0/../../../../lib -L/lib/../lib -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-pc-linux-gnu/12.2.0/../../.. CMakeFiles/cmTC_200ff.dir/CMakeCCompilerABI.c.o -lgcc --push-state --as-needed -lgcc_s --pop-state -lc -lgcc --push-state --as-needed -lgcc_s --pop-state /usr/lib/gcc/x86_64-pc-linux-gnu/12.2.0/crtendS.o /usr/lib/gcc/x86_64-pc-linux-gnu/12.2.0/../../../../lib/crtn.o
|
||||||
|
COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_200ff' '-mtune=generic' '-march=x86-64' '-dumpdir' 'cmTC_200ff.'
|
||||||
|
make[1]: Leaving directory '/home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/build/CMakeFiles/CMakeTmp'
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
Parsed C implicit include dir info from above output: rv=done
|
||||||
|
found start of include info
|
||||||
|
found start of implicit include info
|
||||||
|
add: [/usr/lib/gcc/x86_64-pc-linux-gnu/12.2.0/include]
|
||||||
|
add: [/usr/local/include]
|
||||||
|
add: [/usr/lib/gcc/x86_64-pc-linux-gnu/12.2.0/include-fixed]
|
||||||
|
add: [/usr/include]
|
||||||
|
end of search list found
|
||||||
|
collapse include dir [/usr/lib/gcc/x86_64-pc-linux-gnu/12.2.0/include] ==> [/usr/lib/gcc/x86_64-pc-linux-gnu/12.2.0/include]
|
||||||
|
collapse include dir [/usr/local/include] ==> [/usr/local/include]
|
||||||
|
collapse include dir [/usr/lib/gcc/x86_64-pc-linux-gnu/12.2.0/include-fixed] ==> [/usr/lib/gcc/x86_64-pc-linux-gnu/12.2.0/include-fixed]
|
||||||
|
collapse include dir [/usr/include] ==> [/usr/include]
|
||||||
|
implicit include dirs: [/usr/lib/gcc/x86_64-pc-linux-gnu/12.2.0/include;/usr/local/include;/usr/lib/gcc/x86_64-pc-linux-gnu/12.2.0/include-fixed;/usr/include]
|
||||||
|
|
||||||
|
|
||||||
|
Parsed C implicit link information from above output:
|
||||||
|
link line regex: [^( *|.*[/\])(ld|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\]+-)?ld|collect2)[^/\]*( |$)]
|
||||||
|
ignore line: [Change Dir: /home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/build/CMakeFiles/CMakeTmp]
|
||||||
|
ignore line: []
|
||||||
|
ignore line: [Run Build Command(s):/usr/bin/make -f Makefile cmTC_200ff/fast && /usr/bin/make -f CMakeFiles/cmTC_200ff.dir/build.make CMakeFiles/cmTC_200ff.dir/build]
|
||||||
|
ignore line: [make[1]: Entering directory '/home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/build/CMakeFiles/CMakeTmp']
|
||||||
|
ignore line: [Building C object CMakeFiles/cmTC_200ff.dir/CMakeCCompilerABI.c.o]
|
||||||
|
ignore line: [/usr/bin/cc -v -o CMakeFiles/cmTC_200ff.dir/CMakeCCompilerABI.c.o -c /usr/share/cmake/Modules/CMakeCCompilerABI.c]
|
||||||
|
ignore line: [Using built-in specs.]
|
||||||
|
ignore line: [COLLECT_GCC=/usr/bin/cc]
|
||||||
|
ignore line: [Target: x86_64-pc-linux-gnu]
|
||||||
|
ignore line: [Configured with: /build/gcc/src/gcc/configure --enable-languages=c c++ ada fortran go lto objc obj-c++ d --enable-bootstrap --prefix=/usr --libdir=/usr/lib --libexecdir=/usr/lib --mandir=/usr/share/man --infodir=/usr/share/info --with-bugurl=https://bugs.archlinux.org/ --with-build-config=bootstrap-lto --with-linker-hash-style=gnu --with-system-zlib --enable-__cxa_atexit --enable-cet=auto --enable-checking=release --enable-clocale=gnu --enable-default-pie --enable-default-ssp --enable-gnu-indirect-function --enable-gnu-unique-object --enable-libstdcxx-backtrace --enable-link-serialization=1 --enable-linker-build-id --enable-lto --enable-multilib --enable-plugin --enable-shared --enable-threads=posix --disable-libssp --disable-libstdcxx-pch --disable-werror]
|
||||||
|
ignore line: [Thread model: posix]
|
||||||
|
ignore line: [Supported LTO compression algorithms: zlib zstd]
|
||||||
|
ignore line: [gcc version 12.2.0 (GCC) ]
|
||||||
|
ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_200ff.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_200ff.dir/']
|
||||||
|
ignore line: [ /usr/lib/gcc/x86_64-pc-linux-gnu/12.2.0/cc1 -quiet -v /usr/share/cmake/Modules/CMakeCCompilerABI.c -quiet -dumpdir CMakeFiles/cmTC_200ff.dir/ -dumpbase CMakeCCompilerABI.c.c -dumpbase-ext .c -mtune=generic -march=x86-64 -version -o /tmp/cclEQIaU.s]
|
||||||
|
ignore line: [GNU C17 (GCC) version 12.2.0 (x86_64-pc-linux-gnu)]
|
||||||
|
ignore line: [ compiled by GNU C version 12.2.0 GMP version 6.2.1 MPFR version 4.1.0-p13 MPC version 1.2.1 isl version isl-0.25-GMP]
|
||||||
|
ignore line: []
|
||||||
|
ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072]
|
||||||
|
ignore line: [ignoring nonexistent directory "/usr/lib/gcc/x86_64-pc-linux-gnu/12.2.0/../../../../x86_64-pc-linux-gnu/include"]
|
||||||
|
ignore line: [#include "..." search starts here:]
|
||||||
|
ignore line: [#include <...> search starts here:]
|
||||||
|
ignore line: [ /usr/lib/gcc/x86_64-pc-linux-gnu/12.2.0/include]
|
||||||
|
ignore line: [ /usr/local/include]
|
||||||
|
ignore line: [ /usr/lib/gcc/x86_64-pc-linux-gnu/12.2.0/include-fixed]
|
||||||
|
ignore line: [ /usr/include]
|
||||||
|
ignore line: [End of search list.]
|
||||||
|
ignore line: [GNU C17 (GCC) version 12.2.0 (x86_64-pc-linux-gnu)]
|
||||||
|
ignore line: [ compiled by GNU C version 12.2.0 GMP version 6.2.1 MPFR version 4.1.0-p13 MPC version 1.2.1 isl version isl-0.25-GMP]
|
||||||
|
ignore line: []
|
||||||
|
ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072]
|
||||||
|
ignore line: [Compiler executable checksum: 4b798a352742e8322eaa4a166b8f6299]
|
||||||
|
ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_200ff.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_200ff.dir/']
|
||||||
|
ignore line: [ as -v --64 -o CMakeFiles/cmTC_200ff.dir/CMakeCCompilerABI.c.o /tmp/cclEQIaU.s]
|
||||||
|
ignore line: [GNU assembler version 2.37 (x86_64-pc-linux-gnu) using BFD version (GNU Binutils) 2.37]
|
||||||
|
ignore line: [COMPILER_PATH=/usr/lib/gcc/x86_64-pc-linux-gnu/12.2.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/12.2.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/:/usr/lib/gcc/x86_64-pc-linux-gnu/12.2.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/]
|
||||||
|
ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-pc-linux-gnu/12.2.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/12.2.0/../../../../lib/:/lib/../lib/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-pc-linux-gnu/12.2.0/../../../:/lib/:/usr/lib/]
|
||||||
|
ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_200ff.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_200ff.dir/CMakeCCompilerABI.c.']
|
||||||
|
ignore line: [Linking C executable cmTC_200ff]
|
||||||
|
ignore line: [/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_200ff.dir/link.txt --verbose=1]
|
||||||
|
ignore line: [/usr/bin/cc -v CMakeFiles/cmTC_200ff.dir/CMakeCCompilerABI.c.o -o cmTC_200ff ]
|
||||||
|
ignore line: [Using built-in specs.]
|
||||||
|
ignore line: [COLLECT_GCC=/usr/bin/cc]
|
||||||
|
ignore line: [COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-pc-linux-gnu/12.2.0/lto-wrapper]
|
||||||
|
ignore line: [Target: x86_64-pc-linux-gnu]
|
||||||
|
ignore line: [Configured with: /build/gcc/src/gcc/configure --enable-languages=c c++ ada fortran go lto objc obj-c++ d --enable-bootstrap --prefix=/usr --libdir=/usr/lib --libexecdir=/usr/lib --mandir=/usr/share/man --infodir=/usr/share/info --with-bugurl=https://bugs.archlinux.org/ --with-build-config=bootstrap-lto --with-linker-hash-style=gnu --with-system-zlib --enable-__cxa_atexit --enable-cet=auto --enable-checking=release --enable-clocale=gnu --enable-default-pie --enable-default-ssp --enable-gnu-indirect-function --enable-gnu-unique-object --enable-libstdcxx-backtrace --enable-link-serialization=1 --enable-linker-build-id --enable-lto --enable-multilib --enable-plugin --enable-shared --enable-threads=posix --disable-libssp --disable-libstdcxx-pch --disable-werror]
|
||||||
|
ignore line: [Thread model: posix]
|
||||||
|
ignore line: [Supported LTO compression algorithms: zlib zstd]
|
||||||
|
ignore line: [gcc version 12.2.0 (GCC) ]
|
||||||
|
ignore line: [COMPILER_PATH=/usr/lib/gcc/x86_64-pc-linux-gnu/12.2.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/12.2.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/:/usr/lib/gcc/x86_64-pc-linux-gnu/12.2.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/]
|
||||||
|
ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-pc-linux-gnu/12.2.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/12.2.0/../../../../lib/:/lib/../lib/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-pc-linux-gnu/12.2.0/../../../:/lib/:/usr/lib/]
|
||||||
|
ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_200ff' '-mtune=generic' '-march=x86-64' '-dumpdir' 'cmTC_200ff.']
|
||||||
|
link line: [ /usr/lib/gcc/x86_64-pc-linux-gnu/12.2.0/collect2 -plugin /usr/lib/gcc/x86_64-pc-linux-gnu/12.2.0/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-pc-linux-gnu/12.2.0/lto-wrapper -plugin-opt=-fresolution=/tmp/ccOYK7eh.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s --build-id --eh-frame-hdr --hash-style=gnu -m elf_x86_64 -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -o cmTC_200ff /usr/lib/gcc/x86_64-pc-linux-gnu/12.2.0/../../../../lib/Scrt1.o /usr/lib/gcc/x86_64-pc-linux-gnu/12.2.0/../../../../lib/crti.o /usr/lib/gcc/x86_64-pc-linux-gnu/12.2.0/crtbeginS.o -L/usr/lib/gcc/x86_64-pc-linux-gnu/12.2.0 -L/usr/lib/gcc/x86_64-pc-linux-gnu/12.2.0/../../../../lib -L/lib/../lib -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-pc-linux-gnu/12.2.0/../../.. CMakeFiles/cmTC_200ff.dir/CMakeCCompilerABI.c.o -lgcc --push-state --as-needed -lgcc_s --pop-state -lc -lgcc --push-state --as-needed -lgcc_s --pop-state /usr/lib/gcc/x86_64-pc-linux-gnu/12.2.0/crtendS.o /usr/lib/gcc/x86_64-pc-linux-gnu/12.2.0/../../../../lib/crtn.o]
|
||||||
|
arg [/usr/lib/gcc/x86_64-pc-linux-gnu/12.2.0/collect2] ==> ignore
|
||||||
|
arg [-plugin] ==> ignore
|
||||||
|
arg [/usr/lib/gcc/x86_64-pc-linux-gnu/12.2.0/liblto_plugin.so] ==> ignore
|
||||||
|
arg [-plugin-opt=/usr/lib/gcc/x86_64-pc-linux-gnu/12.2.0/lto-wrapper] ==> ignore
|
||||||
|
arg [-plugin-opt=-fresolution=/tmp/ccOYK7eh.res] ==> ignore
|
||||||
|
arg [-plugin-opt=-pass-through=-lgcc] ==> ignore
|
||||||
|
arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore
|
||||||
|
arg [-plugin-opt=-pass-through=-lc] ==> ignore
|
||||||
|
arg [-plugin-opt=-pass-through=-lgcc] ==> ignore
|
||||||
|
arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore
|
||||||
|
arg [--build-id] ==> ignore
|
||||||
|
arg [--eh-frame-hdr] ==> ignore
|
||||||
|
arg [--hash-style=gnu] ==> ignore
|
||||||
|
arg [-m] ==> ignore
|
||||||
|
arg [elf_x86_64] ==> ignore
|
||||||
|
arg [-dynamic-linker] ==> ignore
|
||||||
|
arg [/lib64/ld-linux-x86-64.so.2] ==> ignore
|
||||||
|
arg [-pie] ==> ignore
|
||||||
|
arg [-o] ==> ignore
|
||||||
|
arg [cmTC_200ff] ==> ignore
|
||||||
|
arg [/usr/lib/gcc/x86_64-pc-linux-gnu/12.2.0/../../../../lib/Scrt1.o] ==> obj [/usr/lib/gcc/x86_64-pc-linux-gnu/12.2.0/../../../../lib/Scrt1.o]
|
||||||
|
arg [/usr/lib/gcc/x86_64-pc-linux-gnu/12.2.0/../../../../lib/crti.o] ==> obj [/usr/lib/gcc/x86_64-pc-linux-gnu/12.2.0/../../../../lib/crti.o]
|
||||||
|
arg [/usr/lib/gcc/x86_64-pc-linux-gnu/12.2.0/crtbeginS.o] ==> obj [/usr/lib/gcc/x86_64-pc-linux-gnu/12.2.0/crtbeginS.o]
|
||||||
|
arg [-L/usr/lib/gcc/x86_64-pc-linux-gnu/12.2.0] ==> dir [/usr/lib/gcc/x86_64-pc-linux-gnu/12.2.0]
|
||||||
|
arg [-L/usr/lib/gcc/x86_64-pc-linux-gnu/12.2.0/../../../../lib] ==> dir [/usr/lib/gcc/x86_64-pc-linux-gnu/12.2.0/../../../../lib]
|
||||||
|
arg [-L/lib/../lib] ==> dir [/lib/../lib]
|
||||||
|
arg [-L/usr/lib/../lib] ==> dir [/usr/lib/../lib]
|
||||||
|
arg [-L/usr/lib/gcc/x86_64-pc-linux-gnu/12.2.0/../../..] ==> dir [/usr/lib/gcc/x86_64-pc-linux-gnu/12.2.0/../../..]
|
||||||
|
arg [CMakeFiles/cmTC_200ff.dir/CMakeCCompilerABI.c.o] ==> ignore
|
||||||
|
arg [-lgcc] ==> lib [gcc]
|
||||||
|
arg [--push-state] ==> ignore
|
||||||
|
arg [--as-needed] ==> ignore
|
||||||
|
arg [-lgcc_s] ==> lib [gcc_s]
|
||||||
|
arg [--pop-state] ==> ignore
|
||||||
|
arg [-lc] ==> lib [c]
|
||||||
|
arg [-lgcc] ==> lib [gcc]
|
||||||
|
arg [--push-state] ==> ignore
|
||||||
|
arg [--as-needed] ==> ignore
|
||||||
|
arg [-lgcc_s] ==> lib [gcc_s]
|
||||||
|
arg [--pop-state] ==> ignore
|
||||||
|
arg [/usr/lib/gcc/x86_64-pc-linux-gnu/12.2.0/crtendS.o] ==> obj [/usr/lib/gcc/x86_64-pc-linux-gnu/12.2.0/crtendS.o]
|
||||||
|
arg [/usr/lib/gcc/x86_64-pc-linux-gnu/12.2.0/../../../../lib/crtn.o] ==> obj [/usr/lib/gcc/x86_64-pc-linux-gnu/12.2.0/../../../../lib/crtn.o]
|
||||||
|
collapse obj [/usr/lib/gcc/x86_64-pc-linux-gnu/12.2.0/../../../../lib/Scrt1.o] ==> [/usr/lib/Scrt1.o]
|
||||||
|
collapse obj [/usr/lib/gcc/x86_64-pc-linux-gnu/12.2.0/../../../../lib/crti.o] ==> [/usr/lib/crti.o]
|
||||||
|
collapse obj [/usr/lib/gcc/x86_64-pc-linux-gnu/12.2.0/../../../../lib/crtn.o] ==> [/usr/lib/crtn.o]
|
||||||
|
collapse library dir [/usr/lib/gcc/x86_64-pc-linux-gnu/12.2.0] ==> [/usr/lib/gcc/x86_64-pc-linux-gnu/12.2.0]
|
||||||
|
collapse library dir [/usr/lib/gcc/x86_64-pc-linux-gnu/12.2.0/../../../../lib] ==> [/usr/lib]
|
||||||
|
collapse library dir [/lib/../lib] ==> [/lib]
|
||||||
|
collapse library dir [/usr/lib/../lib] ==> [/usr/lib]
|
||||||
|
collapse library dir [/usr/lib/gcc/x86_64-pc-linux-gnu/12.2.0/../../..] ==> [/usr/lib]
|
||||||
|
implicit libs: [gcc;gcc_s;c;gcc;gcc_s]
|
||||||
|
implicit objs: [/usr/lib/Scrt1.o;/usr/lib/crti.o;/usr/lib/gcc/x86_64-pc-linux-gnu/12.2.0/crtbeginS.o;/usr/lib/gcc/x86_64-pc-linux-gnu/12.2.0/crtendS.o;/usr/lib/crtn.o]
|
||||||
|
implicit dirs: [/usr/lib/gcc/x86_64-pc-linux-gnu/12.2.0;/usr/lib;/lib]
|
||||||
|
implicit fwks: []
|
||||||
|
|
||||||
|
|
||||||
|
Performing C SOURCE FILE Test CMAKE_HAVE_LIBC_PTHREAD succeeded with the following output:
|
||||||
|
Change Dir: /home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/build/CMakeFiles/CMakeTmp
|
||||||
|
|
||||||
|
Run Build Command(s):/usr/bin/make -f Makefile cmTC_899d9/fast && /usr/bin/make -f CMakeFiles/cmTC_899d9.dir/build.make CMakeFiles/cmTC_899d9.dir/build
|
||||||
|
make[1]: Entering directory '/home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/build/CMakeFiles/CMakeTmp'
|
||||||
|
Building C object CMakeFiles/cmTC_899d9.dir/src.c.o
|
||||||
|
/usr/bin/cc -DCMAKE_HAVE_LIBC_PTHREAD -o CMakeFiles/cmTC_899d9.dir/src.c.o -c /home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/build/CMakeFiles/CMakeTmp/src.c
|
||||||
|
Linking C executable cmTC_899d9
|
||||||
|
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_899d9.dir/link.txt --verbose=1
|
||||||
|
/usr/bin/cc CMakeFiles/cmTC_899d9.dir/src.c.o -o cmTC_899d9
|
||||||
|
make[1]: Leaving directory '/home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/build/CMakeFiles/CMakeTmp'
|
||||||
|
|
||||||
|
|
||||||
|
Source file was:
|
||||||
|
#include <pthread.h>
|
||||||
|
|
||||||
|
static void* test_func(void* data)
|
||||||
|
{
|
||||||
|
return data;
|
||||||
|
}
|
||||||
|
|
||||||
|
int main(void)
|
||||||
|
{
|
||||||
|
pthread_t thread;
|
||||||
|
pthread_create(&thread, NULL, test_func, NULL);
|
||||||
|
pthread_detach(thread);
|
||||||
|
pthread_cancel(thread);
|
||||||
|
pthread_join(thread, NULL);
|
||||||
|
pthread_atfork(NULL, NULL, NULL);
|
||||||
|
pthread_exit(NULL);
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
Determining if the function XOpenDisplay exists in the /usr/lib/libX11.so;/usr/lib/libXext.so passed with the following output:
|
||||||
|
Change Dir: /home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/build/CMakeFiles/CMakeTmp
|
||||||
|
|
||||||
|
Run Build Command(s):/usr/bin/make -f Makefile cmTC_805e2/fast && /usr/bin/make -f CMakeFiles/cmTC_805e2.dir/build.make CMakeFiles/cmTC_805e2.dir/build
|
||||||
|
make[1]: Entering directory '/home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/build/CMakeFiles/CMakeTmp'
|
||||||
|
Building C object CMakeFiles/cmTC_805e2.dir/CheckFunctionExists.c.o
|
||||||
|
/usr/bin/cc -DCHECK_FUNCTION_EXISTS=XOpenDisplay -o CMakeFiles/cmTC_805e2.dir/CheckFunctionExists.c.o -c /usr/share/cmake/Modules/CheckFunctionExists.c
|
||||||
|
Linking C executable cmTC_805e2
|
||||||
|
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_805e2.dir/link.txt --verbose=1
|
||||||
|
/usr/bin/cc -DCHECK_FUNCTION_EXISTS=XOpenDisplay CMakeFiles/cmTC_805e2.dir/CheckFunctionExists.c.o -o cmTC_805e2 /usr/lib/libX11.so /usr/lib/libXext.so
|
||||||
|
make[1]: Leaving directory '/home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/build/CMakeFiles/CMakeTmp'
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
Determining if the function gethostbyname exists passed with the following output:
|
||||||
|
Change Dir: /home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/build/CMakeFiles/CMakeTmp
|
||||||
|
|
||||||
|
Run Build Command(s):/usr/bin/make -f Makefile cmTC_d7893/fast && /usr/bin/make -f CMakeFiles/cmTC_d7893.dir/build.make CMakeFiles/cmTC_d7893.dir/build
|
||||||
|
make[1]: Entering directory '/home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/build/CMakeFiles/CMakeTmp'
|
||||||
|
Building C object CMakeFiles/cmTC_d7893.dir/CheckFunctionExists.c.o
|
||||||
|
/usr/bin/cc -DCHECK_FUNCTION_EXISTS=gethostbyname -o CMakeFiles/cmTC_d7893.dir/CheckFunctionExists.c.o -c /usr/share/cmake/Modules/CheckFunctionExists.c
|
||||||
|
Linking C executable cmTC_d7893
|
||||||
|
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_d7893.dir/link.txt --verbose=1
|
||||||
|
/usr/bin/cc -DCHECK_FUNCTION_EXISTS=gethostbyname CMakeFiles/cmTC_d7893.dir/CheckFunctionExists.c.o -o cmTC_d7893
|
||||||
|
make[1]: Leaving directory '/home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/build/CMakeFiles/CMakeTmp'
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
Determining if the function connect exists passed with the following output:
|
||||||
|
Change Dir: /home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/build/CMakeFiles/CMakeTmp
|
||||||
|
|
||||||
|
Run Build Command(s):/usr/bin/make -f Makefile cmTC_824aa/fast && /usr/bin/make -f CMakeFiles/cmTC_824aa.dir/build.make CMakeFiles/cmTC_824aa.dir/build
|
||||||
|
make[1]: Entering directory '/home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/build/CMakeFiles/CMakeTmp'
|
||||||
|
Building C object CMakeFiles/cmTC_824aa.dir/CheckFunctionExists.c.o
|
||||||
|
/usr/bin/cc -DCHECK_FUNCTION_EXISTS=connect -o CMakeFiles/cmTC_824aa.dir/CheckFunctionExists.c.o -c /usr/share/cmake/Modules/CheckFunctionExists.c
|
||||||
|
Linking C executable cmTC_824aa
|
||||||
|
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_824aa.dir/link.txt --verbose=1
|
||||||
|
/usr/bin/cc -DCHECK_FUNCTION_EXISTS=connect CMakeFiles/cmTC_824aa.dir/CheckFunctionExists.c.o -o cmTC_824aa
|
||||||
|
make[1]: Leaving directory '/home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/build/CMakeFiles/CMakeTmp'
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
Determining if the function remove exists passed with the following output:
|
||||||
|
Change Dir: /home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/build/CMakeFiles/CMakeTmp
|
||||||
|
|
||||||
|
Run Build Command(s):/usr/bin/make -f Makefile cmTC_08539/fast && /usr/bin/make -f CMakeFiles/cmTC_08539.dir/build.make CMakeFiles/cmTC_08539.dir/build
|
||||||
|
make[1]: Entering directory '/home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/build/CMakeFiles/CMakeTmp'
|
||||||
|
Building C object CMakeFiles/cmTC_08539.dir/CheckFunctionExists.c.o
|
||||||
|
/usr/bin/cc -DCHECK_FUNCTION_EXISTS=remove -o CMakeFiles/cmTC_08539.dir/CheckFunctionExists.c.o -c /usr/share/cmake/Modules/CheckFunctionExists.c
|
||||||
|
Linking C executable cmTC_08539
|
||||||
|
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_08539.dir/link.txt --verbose=1
|
||||||
|
/usr/bin/cc -DCHECK_FUNCTION_EXISTS=remove CMakeFiles/cmTC_08539.dir/CheckFunctionExists.c.o -o cmTC_08539
|
||||||
|
make[1]: Leaving directory '/home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/build/CMakeFiles/CMakeTmp'
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
Determining if the function shmat exists passed with the following output:
|
||||||
|
Change Dir: /home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/build/CMakeFiles/CMakeTmp
|
||||||
|
|
||||||
|
Run Build Command(s):/usr/bin/make -f Makefile cmTC_f94e3/fast && /usr/bin/make -f CMakeFiles/cmTC_f94e3.dir/build.make CMakeFiles/cmTC_f94e3.dir/build
|
||||||
|
make[1]: Entering directory '/home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/build/CMakeFiles/CMakeTmp'
|
||||||
|
Building C object CMakeFiles/cmTC_f94e3.dir/CheckFunctionExists.c.o
|
||||||
|
/usr/bin/cc -DCHECK_FUNCTION_EXISTS=shmat -o CMakeFiles/cmTC_f94e3.dir/CheckFunctionExists.c.o -c /usr/share/cmake/Modules/CheckFunctionExists.c
|
||||||
|
Linking C executable cmTC_f94e3
|
||||||
|
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_f94e3.dir/link.txt --verbose=1
|
||||||
|
/usr/bin/cc -DCHECK_FUNCTION_EXISTS=shmat CMakeFiles/cmTC_f94e3.dir/CheckFunctionExists.c.o -o cmTC_f94e3
|
||||||
|
make[1]: Leaving directory '/home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/build/CMakeFiles/CMakeTmp'
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
Determining if the function IceConnectionNumber exists in the ICE passed with the following output:
|
||||||
|
Change Dir: /home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/build/CMakeFiles/CMakeTmp
|
||||||
|
|
||||||
|
Run Build Command(s):/usr/bin/make -f Makefile cmTC_04ea5/fast && /usr/bin/make -f CMakeFiles/cmTC_04ea5.dir/build.make CMakeFiles/cmTC_04ea5.dir/build
|
||||||
|
make[1]: Entering directory '/home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/build/CMakeFiles/CMakeTmp'
|
||||||
|
Building C object CMakeFiles/cmTC_04ea5.dir/CheckFunctionExists.c.o
|
||||||
|
/usr/bin/cc -DCHECK_FUNCTION_EXISTS=IceConnectionNumber -o CMakeFiles/cmTC_04ea5.dir/CheckFunctionExists.c.o -c /usr/share/cmake/Modules/CheckFunctionExists.c
|
||||||
|
Linking C executable cmTC_04ea5
|
||||||
|
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_04ea5.dir/link.txt --verbose=1
|
||||||
|
/usr/bin/cc -DCHECK_FUNCTION_EXISTS=IceConnectionNumber CMakeFiles/cmTC_04ea5.dir/CheckFunctionExists.c.o -o cmTC_04ea5 -lICE
|
||||||
|
make[1]: Leaving directory '/home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/build/CMakeFiles/CMakeTmp'
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
3
breakout/glfw-3.3.8/build/CMakeFiles/CMakeRuleHashes.txt
Normal file
3
breakout/glfw-3.3.8/build/CMakeFiles/CMakeRuleHashes.txt
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
# Hashes of file build rules.
|
||||||
|
bed397024e39bff4effecc8288903b38 CMakeFiles/uninstall
|
||||||
|
4de24b16cf6e581f31b0b5f433d84cad src/CMakeFiles/update_mappings
|
||||||
@ -0,0 +1,19 @@
|
|||||||
|
#----------------------------------------------------------------
|
||||||
|
# Generated CMake target import file.
|
||||||
|
#----------------------------------------------------------------
|
||||||
|
|
||||||
|
# Commands may need to know the format version.
|
||||||
|
set(CMAKE_IMPORT_FILE_VERSION 1)
|
||||||
|
|
||||||
|
# Import target "glfw" for configuration ""
|
||||||
|
set_property(TARGET glfw APPEND PROPERTY IMPORTED_CONFIGURATIONS NOCONFIG)
|
||||||
|
set_target_properties(glfw PROPERTIES
|
||||||
|
IMPORTED_LINK_INTERFACE_LANGUAGES_NOCONFIG "C"
|
||||||
|
IMPORTED_LOCATION_NOCONFIG "${_IMPORT_PREFIX}/lib/libglfw3.a"
|
||||||
|
)
|
||||||
|
|
||||||
|
list(APPEND _cmake_import_check_targets glfw )
|
||||||
|
list(APPEND _cmake_import_check_files_for_glfw "${_IMPORT_PREFIX}/lib/libglfw3.a" )
|
||||||
|
|
||||||
|
# Commands beyond this point should not need to know the version.
|
||||||
|
set(CMAKE_IMPORT_FILE_VERSION)
|
||||||
@ -0,0 +1,103 @@
|
|||||||
|
# Generated by CMake
|
||||||
|
|
||||||
|
if("${CMAKE_MAJOR_VERSION}.${CMAKE_MINOR_VERSION}" LESS 2.8)
|
||||||
|
message(FATAL_ERROR "CMake >= 2.8.0 required")
|
||||||
|
endif()
|
||||||
|
if(CMAKE_VERSION VERSION_LESS "2.8.3")
|
||||||
|
message(FATAL_ERROR "CMake >= 2.8.3 required")
|
||||||
|
endif()
|
||||||
|
cmake_policy(PUSH)
|
||||||
|
cmake_policy(VERSION 2.8.3...3.22)
|
||||||
|
#----------------------------------------------------------------
|
||||||
|
# Generated CMake target import file.
|
||||||
|
#----------------------------------------------------------------
|
||||||
|
|
||||||
|
# Commands may need to know the format version.
|
||||||
|
set(CMAKE_IMPORT_FILE_VERSION 1)
|
||||||
|
|
||||||
|
# Protect against multiple inclusion, which would fail when already imported targets are added once more.
|
||||||
|
set(_cmake_targets_defined "")
|
||||||
|
set(_cmake_targets_not_defined "")
|
||||||
|
set(_cmake_expected_targets "")
|
||||||
|
foreach(_cmake_expected_target IN ITEMS glfw)
|
||||||
|
list(APPEND _cmake_expected_targets "${_cmake_expected_target}")
|
||||||
|
if(TARGET "${_cmake_expected_target}")
|
||||||
|
list(APPEND _cmake_targets_defined "${_cmake_expected_target}")
|
||||||
|
else()
|
||||||
|
list(APPEND _cmake_targets_not_defined "${_cmake_expected_target}")
|
||||||
|
endif()
|
||||||
|
endforeach()
|
||||||
|
unset(_cmake_expected_target)
|
||||||
|
if(_cmake_targets_defined STREQUAL _cmake_expected_targets)
|
||||||
|
unset(_cmake_targets_defined)
|
||||||
|
unset(_cmake_targets_not_defined)
|
||||||
|
unset(_cmake_expected_targets)
|
||||||
|
unset(CMAKE_IMPORT_FILE_VERSION)
|
||||||
|
cmake_policy(POP)
|
||||||
|
return()
|
||||||
|
endif()
|
||||||
|
if(NOT _cmake_targets_defined STREQUAL "")
|
||||||
|
string(REPLACE ";" ", " _cmake_targets_defined_text "${_cmake_targets_defined}")
|
||||||
|
string(REPLACE ";" ", " _cmake_targets_not_defined_text "${_cmake_targets_not_defined}")
|
||||||
|
message(FATAL_ERROR "Some (but not all) targets in this export set were already defined.\nTargets Defined: ${_cmake_targets_defined_text}\nTargets not yet defined: ${_cmake_targets_not_defined_text}\n")
|
||||||
|
endif()
|
||||||
|
unset(_cmake_targets_defined)
|
||||||
|
unset(_cmake_targets_not_defined)
|
||||||
|
unset(_cmake_expected_targets)
|
||||||
|
|
||||||
|
|
||||||
|
# Compute the installation prefix relative to this file.
|
||||||
|
get_filename_component(_IMPORT_PREFIX "${CMAKE_CURRENT_LIST_FILE}" PATH)
|
||||||
|
get_filename_component(_IMPORT_PREFIX "${_IMPORT_PREFIX}" PATH)
|
||||||
|
get_filename_component(_IMPORT_PREFIX "${_IMPORT_PREFIX}" PATH)
|
||||||
|
get_filename_component(_IMPORT_PREFIX "${_IMPORT_PREFIX}" PATH)
|
||||||
|
if(_IMPORT_PREFIX STREQUAL "/")
|
||||||
|
set(_IMPORT_PREFIX "")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
# Create imported target glfw
|
||||||
|
add_library(glfw STATIC IMPORTED)
|
||||||
|
|
||||||
|
set_target_properties(glfw PROPERTIES
|
||||||
|
INTERFACE_INCLUDE_DIRECTORIES "${_IMPORT_PREFIX}/include"
|
||||||
|
INTERFACE_LINK_LIBRARIES "/usr/lib/librt.a;/usr/lib/libm.so;\$<LINK_ONLY:dl>;/usr/lib/libX11.so"
|
||||||
|
)
|
||||||
|
|
||||||
|
# Load information for each installed configuration.
|
||||||
|
file(GLOB _cmake_config_files "${CMAKE_CURRENT_LIST_DIR}/glfw3Targets-*.cmake")
|
||||||
|
foreach(_cmake_config_file IN LISTS _cmake_config_files)
|
||||||
|
include("${_cmake_config_file}")
|
||||||
|
endforeach()
|
||||||
|
unset(_cmake_config_file)
|
||||||
|
unset(_cmake_config_files)
|
||||||
|
|
||||||
|
# Cleanup temporary variables.
|
||||||
|
set(_IMPORT_PREFIX)
|
||||||
|
|
||||||
|
# Loop over all imported files and verify that they actually exist
|
||||||
|
foreach(_cmake_target IN LISTS _cmake_import_check_targets)
|
||||||
|
foreach(_cmake_file IN LISTS "_cmake_import_check_files_for_${_cmake_target}")
|
||||||
|
if(NOT EXISTS "${_cmake_file}")
|
||||||
|
message(FATAL_ERROR "The imported target \"${_cmake_target}\" references the file
|
||||||
|
\"${_cmake_file}\"
|
||||||
|
but this file does not exist. Possible reasons include:
|
||||||
|
* The file was deleted, renamed, or moved to another location.
|
||||||
|
* An install or uninstall procedure did not complete successfully.
|
||||||
|
* The installation package was faulty and contained
|
||||||
|
\"${CMAKE_CURRENT_LIST_FILE}\"
|
||||||
|
but not all the files it references.
|
||||||
|
")
|
||||||
|
endif()
|
||||||
|
endforeach()
|
||||||
|
unset(_cmake_file)
|
||||||
|
unset("_cmake_import_check_files_for_${_cmake_target}")
|
||||||
|
endforeach()
|
||||||
|
unset(_cmake_target)
|
||||||
|
unset(_cmake_import_check_targets)
|
||||||
|
|
||||||
|
# This file does not depend on other imported targets which have
|
||||||
|
# been exported from the same project but in a separate export set.
|
||||||
|
|
||||||
|
# Commands beyond this point should not need to know the version.
|
||||||
|
set(CMAKE_IMPORT_FILE_VERSION)
|
||||||
|
cmake_policy(POP)
|
||||||
108
breakout/glfw-3.3.8/build/CMakeFiles/Makefile.cmake
Normal file
108
breakout/glfw-3.3.8/build/CMakeFiles/Makefile.cmake
Normal file
@ -0,0 +1,108 @@
|
|||||||
|
# CMAKE generated file: DO NOT EDIT!
|
||||||
|
# Generated by "Unix Makefiles" Generator, CMake Version 3.24
|
||||||
|
|
||||||
|
# The generator used is:
|
||||||
|
set(CMAKE_DEPENDS_GENERATOR "Unix Makefiles")
|
||||||
|
|
||||||
|
# The top level Makefile was generated from the following files:
|
||||||
|
set(CMAKE_MAKEFILE_DEPENDS
|
||||||
|
"CMakeCache.txt"
|
||||||
|
"/home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/CMakeLists.txt"
|
||||||
|
"CMakeFiles/3.24.1/CMakeCCompiler.cmake"
|
||||||
|
"CMakeFiles/3.24.1/CMakeSystem.cmake"
|
||||||
|
"/home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/cmake_uninstall.cmake.in"
|
||||||
|
"/home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/examples/CMakeLists.txt"
|
||||||
|
"/home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/src/CMakeLists.txt"
|
||||||
|
"/home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/src/glfw3.pc.in"
|
||||||
|
"/home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/src/glfw3Config.cmake.in"
|
||||||
|
"/home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/src/glfw_config.h.in"
|
||||||
|
"/home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/tests/CMakeLists.txt"
|
||||||
|
"/usr/share/cmake/Modules/BasicConfigVersion-SameMajorVersion.cmake.in"
|
||||||
|
"/usr/share/cmake/Modules/CMakeCInformation.cmake"
|
||||||
|
"/usr/share/cmake/Modules/CMakeCommonLanguageInclude.cmake"
|
||||||
|
"/usr/share/cmake/Modules/CMakeDependentOption.cmake"
|
||||||
|
"/usr/share/cmake/Modules/CMakeGenericSystem.cmake"
|
||||||
|
"/usr/share/cmake/Modules/CMakeInitializeConfigs.cmake"
|
||||||
|
"/usr/share/cmake/Modules/CMakeLanguageInformation.cmake"
|
||||||
|
"/usr/share/cmake/Modules/CMakePackageConfigHelpers.cmake"
|
||||||
|
"/usr/share/cmake/Modules/CMakeSystemSpecificInformation.cmake"
|
||||||
|
"/usr/share/cmake/Modules/CMakeSystemSpecificInitialize.cmake"
|
||||||
|
"/usr/share/cmake/Modules/CheckCSourceCompiles.cmake"
|
||||||
|
"/usr/share/cmake/Modules/CheckFunctionExists.cmake"
|
||||||
|
"/usr/share/cmake/Modules/CheckIncludeFile.cmake"
|
||||||
|
"/usr/share/cmake/Modules/CheckLibraryExists.cmake"
|
||||||
|
"/usr/share/cmake/Modules/Compiler/CMakeCommonCompilerMacros.cmake"
|
||||||
|
"/usr/share/cmake/Modules/Compiler/GNU-C.cmake"
|
||||||
|
"/usr/share/cmake/Modules/Compiler/GNU.cmake"
|
||||||
|
"/usr/share/cmake/Modules/FindDoxygen.cmake"
|
||||||
|
"/usr/share/cmake/Modules/FindFontconfig.cmake"
|
||||||
|
"/usr/share/cmake/Modules/FindFreetype.cmake"
|
||||||
|
"/usr/share/cmake/Modules/FindPackageHandleStandardArgs.cmake"
|
||||||
|
"/usr/share/cmake/Modules/FindPackageMessage.cmake"
|
||||||
|
"/usr/share/cmake/Modules/FindPkgConfig.cmake"
|
||||||
|
"/usr/share/cmake/Modules/FindThreads.cmake"
|
||||||
|
"/usr/share/cmake/Modules/FindX11.cmake"
|
||||||
|
"/usr/share/cmake/Modules/GNUInstallDirs.cmake"
|
||||||
|
"/usr/share/cmake/Modules/Internal/CheckSourceCompiles.cmake"
|
||||||
|
"/usr/share/cmake/Modules/Platform/Linux-GNU-C.cmake"
|
||||||
|
"/usr/share/cmake/Modules/Platform/Linux-GNU.cmake"
|
||||||
|
"/usr/share/cmake/Modules/Platform/Linux.cmake"
|
||||||
|
"/usr/share/cmake/Modules/Platform/UnixPaths.cmake"
|
||||||
|
"/usr/share/cmake/Modules/SelectLibraryConfigurations.cmake"
|
||||||
|
"/usr/share/cmake/Modules/WriteBasicConfigVersionFile.cmake"
|
||||||
|
)
|
||||||
|
|
||||||
|
# The corresponding makefile is:
|
||||||
|
set(CMAKE_MAKEFILE_OUTPUTS
|
||||||
|
"Makefile"
|
||||||
|
"CMakeFiles/cmake.check_cache"
|
||||||
|
)
|
||||||
|
|
||||||
|
# Byproducts of CMake generate step:
|
||||||
|
set(CMAKE_MAKEFILE_PRODUCTS
|
||||||
|
"src/glfw3Config.cmake"
|
||||||
|
"src/glfw3ConfigVersion.cmake"
|
||||||
|
"src/glfw_config.h"
|
||||||
|
"src/glfw3.pc"
|
||||||
|
"cmake_uninstall.cmake"
|
||||||
|
"CMakeFiles/CMakeDirectoryInformation.cmake"
|
||||||
|
"src/CMakeFiles/CMakeDirectoryInformation.cmake"
|
||||||
|
"examples/CMakeFiles/CMakeDirectoryInformation.cmake"
|
||||||
|
"tests/CMakeFiles/CMakeDirectoryInformation.cmake"
|
||||||
|
)
|
||||||
|
|
||||||
|
# Dependency information for all targets:
|
||||||
|
set(CMAKE_DEPEND_INFO_FILES
|
||||||
|
"CMakeFiles/uninstall.dir/DependInfo.cmake"
|
||||||
|
"src/CMakeFiles/update_mappings.dir/DependInfo.cmake"
|
||||||
|
"src/CMakeFiles/glfw.dir/DependInfo.cmake"
|
||||||
|
"examples/CMakeFiles/boing.dir/DependInfo.cmake"
|
||||||
|
"examples/CMakeFiles/gears.dir/DependInfo.cmake"
|
||||||
|
"examples/CMakeFiles/heightmap.dir/DependInfo.cmake"
|
||||||
|
"examples/CMakeFiles/offscreen.dir/DependInfo.cmake"
|
||||||
|
"examples/CMakeFiles/particles.dir/DependInfo.cmake"
|
||||||
|
"examples/CMakeFiles/sharing.dir/DependInfo.cmake"
|
||||||
|
"examples/CMakeFiles/simple.dir/DependInfo.cmake"
|
||||||
|
"examples/CMakeFiles/splitview.dir/DependInfo.cmake"
|
||||||
|
"examples/CMakeFiles/wave.dir/DependInfo.cmake"
|
||||||
|
"tests/CMakeFiles/clipboard.dir/DependInfo.cmake"
|
||||||
|
"tests/CMakeFiles/events.dir/DependInfo.cmake"
|
||||||
|
"tests/CMakeFiles/msaa.dir/DependInfo.cmake"
|
||||||
|
"tests/CMakeFiles/glfwinfo.dir/DependInfo.cmake"
|
||||||
|
"tests/CMakeFiles/iconify.dir/DependInfo.cmake"
|
||||||
|
"tests/CMakeFiles/monitors.dir/DependInfo.cmake"
|
||||||
|
"tests/CMakeFiles/reopen.dir/DependInfo.cmake"
|
||||||
|
"tests/CMakeFiles/cursor.dir/DependInfo.cmake"
|
||||||
|
"tests/CMakeFiles/empty.dir/DependInfo.cmake"
|
||||||
|
"tests/CMakeFiles/gamma.dir/DependInfo.cmake"
|
||||||
|
"tests/CMakeFiles/icon.dir/DependInfo.cmake"
|
||||||
|
"tests/CMakeFiles/inputlag.dir/DependInfo.cmake"
|
||||||
|
"tests/CMakeFiles/joysticks.dir/DependInfo.cmake"
|
||||||
|
"tests/CMakeFiles/opacity.dir/DependInfo.cmake"
|
||||||
|
"tests/CMakeFiles/tearing.dir/DependInfo.cmake"
|
||||||
|
"tests/CMakeFiles/threads.dir/DependInfo.cmake"
|
||||||
|
"tests/CMakeFiles/timeout.dir/DependInfo.cmake"
|
||||||
|
"tests/CMakeFiles/title.dir/DependInfo.cmake"
|
||||||
|
"tests/CMakeFiles/triangle-vulkan.dir/DependInfo.cmake"
|
||||||
|
"tests/CMakeFiles/windows.dir/DependInfo.cmake"
|
||||||
|
)
|
||||||
1025
breakout/glfw-3.3.8/build/CMakeFiles/Makefile2
Normal file
1025
breakout/glfw-3.3.8/build/CMakeFiles/Makefile2
Normal file
File diff suppressed because it is too large
Load Diff
56
breakout/glfw-3.3.8/build/CMakeFiles/TargetDirectories.txt
Normal file
56
breakout/glfw-3.3.8/build/CMakeFiles/TargetDirectories.txt
Normal file
@ -0,0 +1,56 @@
|
|||||||
|
/home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/build/CMakeFiles/uninstall.dir
|
||||||
|
/home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/build/CMakeFiles/edit_cache.dir
|
||||||
|
/home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/build/CMakeFiles/rebuild_cache.dir
|
||||||
|
/home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/build/CMakeFiles/list_install_components.dir
|
||||||
|
/home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/build/CMakeFiles/install.dir
|
||||||
|
/home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/build/CMakeFiles/install/local.dir
|
||||||
|
/home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/build/CMakeFiles/install/strip.dir
|
||||||
|
/home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/build/src/CMakeFiles/update_mappings.dir
|
||||||
|
/home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/build/src/CMakeFiles/glfw.dir
|
||||||
|
/home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/build/src/CMakeFiles/edit_cache.dir
|
||||||
|
/home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/build/src/CMakeFiles/rebuild_cache.dir
|
||||||
|
/home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/build/src/CMakeFiles/list_install_components.dir
|
||||||
|
/home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/build/src/CMakeFiles/install.dir
|
||||||
|
/home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/build/src/CMakeFiles/install/local.dir
|
||||||
|
/home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/build/src/CMakeFiles/install/strip.dir
|
||||||
|
/home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/build/examples/CMakeFiles/boing.dir
|
||||||
|
/home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/build/examples/CMakeFiles/gears.dir
|
||||||
|
/home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/build/examples/CMakeFiles/heightmap.dir
|
||||||
|
/home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/build/examples/CMakeFiles/offscreen.dir
|
||||||
|
/home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/build/examples/CMakeFiles/particles.dir
|
||||||
|
/home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/build/examples/CMakeFiles/sharing.dir
|
||||||
|
/home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/build/examples/CMakeFiles/simple.dir
|
||||||
|
/home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/build/examples/CMakeFiles/splitview.dir
|
||||||
|
/home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/build/examples/CMakeFiles/wave.dir
|
||||||
|
/home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/build/examples/CMakeFiles/edit_cache.dir
|
||||||
|
/home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/build/examples/CMakeFiles/rebuild_cache.dir
|
||||||
|
/home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/build/examples/CMakeFiles/list_install_components.dir
|
||||||
|
/home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/build/examples/CMakeFiles/install.dir
|
||||||
|
/home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/build/examples/CMakeFiles/install/local.dir
|
||||||
|
/home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/build/examples/CMakeFiles/install/strip.dir
|
||||||
|
/home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/build/tests/CMakeFiles/clipboard.dir
|
||||||
|
/home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/build/tests/CMakeFiles/events.dir
|
||||||
|
/home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/build/tests/CMakeFiles/msaa.dir
|
||||||
|
/home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/build/tests/CMakeFiles/glfwinfo.dir
|
||||||
|
/home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/build/tests/CMakeFiles/iconify.dir
|
||||||
|
/home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/build/tests/CMakeFiles/monitors.dir
|
||||||
|
/home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/build/tests/CMakeFiles/reopen.dir
|
||||||
|
/home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/build/tests/CMakeFiles/cursor.dir
|
||||||
|
/home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/build/tests/CMakeFiles/empty.dir
|
||||||
|
/home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/build/tests/CMakeFiles/gamma.dir
|
||||||
|
/home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/build/tests/CMakeFiles/icon.dir
|
||||||
|
/home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/build/tests/CMakeFiles/inputlag.dir
|
||||||
|
/home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/build/tests/CMakeFiles/joysticks.dir
|
||||||
|
/home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/build/tests/CMakeFiles/opacity.dir
|
||||||
|
/home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/build/tests/CMakeFiles/tearing.dir
|
||||||
|
/home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/build/tests/CMakeFiles/threads.dir
|
||||||
|
/home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/build/tests/CMakeFiles/timeout.dir
|
||||||
|
/home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/build/tests/CMakeFiles/title.dir
|
||||||
|
/home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/build/tests/CMakeFiles/triangle-vulkan.dir
|
||||||
|
/home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/build/tests/CMakeFiles/windows.dir
|
||||||
|
/home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/build/tests/CMakeFiles/edit_cache.dir
|
||||||
|
/home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/build/tests/CMakeFiles/rebuild_cache.dir
|
||||||
|
/home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/build/tests/CMakeFiles/list_install_components.dir
|
||||||
|
/home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/build/tests/CMakeFiles/install.dir
|
||||||
|
/home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/build/tests/CMakeFiles/install/local.dir
|
||||||
|
/home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/build/tests/CMakeFiles/install/strip.dir
|
||||||
1
breakout/glfw-3.3.8/build/CMakeFiles/cmake.check_cache
Normal file
1
breakout/glfw-3.3.8/build/CMakeFiles/cmake.check_cache
Normal file
@ -0,0 +1 @@
|
|||||||
|
# This file is generated by cmake for dependency checking of the CMakeCache.txt file
|
||||||
1
breakout/glfw-3.3.8/build/CMakeFiles/progress.marks
Normal file
1
breakout/glfw-3.3.8/build/CMakeFiles/progress.marks
Normal file
@ -0,0 +1 @@
|
|||||||
|
99
|
||||||
@ -0,0 +1,18 @@
|
|||||||
|
|
||||||
|
# Consider dependencies only in project.
|
||||||
|
set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF)
|
||||||
|
|
||||||
|
# The set of languages for which implicit dependencies are needed:
|
||||||
|
set(CMAKE_DEPENDS_LANGUAGES
|
||||||
|
)
|
||||||
|
|
||||||
|
# The set of dependency files which are needed:
|
||||||
|
set(CMAKE_DEPENDS_DEPENDENCY_FILES
|
||||||
|
)
|
||||||
|
|
||||||
|
# Targets to which this target links.
|
||||||
|
set(CMAKE_TARGET_LINKED_INFO_FILES
|
||||||
|
)
|
||||||
|
|
||||||
|
# Fortran module output directory.
|
||||||
|
set(CMAKE_Fortran_TARGET_MODULE_DIR "")
|
||||||
@ -0,0 +1,87 @@
|
|||||||
|
# CMAKE generated file: DO NOT EDIT!
|
||||||
|
# Generated by "Unix Makefiles" Generator, CMake Version 3.24
|
||||||
|
|
||||||
|
# Delete rule output on recipe failure.
|
||||||
|
.DELETE_ON_ERROR:
|
||||||
|
|
||||||
|
#=============================================================================
|
||||||
|
# Special targets provided by cmake.
|
||||||
|
|
||||||
|
# Disable implicit rules so canonical targets will work.
|
||||||
|
.SUFFIXES:
|
||||||
|
|
||||||
|
# Disable VCS-based implicit rules.
|
||||||
|
% : %,v
|
||||||
|
|
||||||
|
# Disable VCS-based implicit rules.
|
||||||
|
% : RCS/%
|
||||||
|
|
||||||
|
# Disable VCS-based implicit rules.
|
||||||
|
% : RCS/%,v
|
||||||
|
|
||||||
|
# Disable VCS-based implicit rules.
|
||||||
|
% : SCCS/s.%
|
||||||
|
|
||||||
|
# Disable VCS-based implicit rules.
|
||||||
|
% : s.%
|
||||||
|
|
||||||
|
.SUFFIXES: .hpux_make_needs_suffix_list
|
||||||
|
|
||||||
|
# Command-line flag to silence nested $(MAKE).
|
||||||
|
$(VERBOSE)MAKESILENT = -s
|
||||||
|
|
||||||
|
#Suppress display of executed commands.
|
||||||
|
$(VERBOSE).SILENT:
|
||||||
|
|
||||||
|
# A target that is always out of date.
|
||||||
|
cmake_force:
|
||||||
|
.PHONY : cmake_force
|
||||||
|
|
||||||
|
#=============================================================================
|
||||||
|
# Set environment variables for the build.
|
||||||
|
|
||||||
|
# The shell in which to execute make rules.
|
||||||
|
SHELL = /bin/sh
|
||||||
|
|
||||||
|
# The CMake executable.
|
||||||
|
CMAKE_COMMAND = /usr/bin/cmake
|
||||||
|
|
||||||
|
# The command to remove a file.
|
||||||
|
RM = /usr/bin/cmake -E rm -f
|
||||||
|
|
||||||
|
# Escaping for special characters.
|
||||||
|
EQUALS = =
|
||||||
|
|
||||||
|
# The top-level source directory on which CMake was run.
|
||||||
|
CMAKE_SOURCE_DIR = /home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8
|
||||||
|
|
||||||
|
# The top-level build directory on which CMake was run.
|
||||||
|
CMAKE_BINARY_DIR = /home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/build
|
||||||
|
|
||||||
|
# Utility rule file for uninstall.
|
||||||
|
|
||||||
|
# Include any custom commands dependencies for this target.
|
||||||
|
include CMakeFiles/uninstall.dir/compiler_depend.make
|
||||||
|
|
||||||
|
# Include the progress variables for this target.
|
||||||
|
include CMakeFiles/uninstall.dir/progress.make
|
||||||
|
|
||||||
|
CMakeFiles/uninstall:
|
||||||
|
/usr/bin/cmake -P /home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/build/cmake_uninstall.cmake
|
||||||
|
|
||||||
|
uninstall: CMakeFiles/uninstall
|
||||||
|
uninstall: CMakeFiles/uninstall.dir/build.make
|
||||||
|
.PHONY : uninstall
|
||||||
|
|
||||||
|
# Rule to build all files generated by this target.
|
||||||
|
CMakeFiles/uninstall.dir/build: uninstall
|
||||||
|
.PHONY : CMakeFiles/uninstall.dir/build
|
||||||
|
|
||||||
|
CMakeFiles/uninstall.dir/clean:
|
||||||
|
$(CMAKE_COMMAND) -P CMakeFiles/uninstall.dir/cmake_clean.cmake
|
||||||
|
.PHONY : CMakeFiles/uninstall.dir/clean
|
||||||
|
|
||||||
|
CMakeFiles/uninstall.dir/depend:
|
||||||
|
cd /home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8 /home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8 /home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/build /home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/build /home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/build/CMakeFiles/uninstall.dir/DependInfo.cmake --color=$(COLOR)
|
||||||
|
.PHONY : CMakeFiles/uninstall.dir/depend
|
||||||
|
|
||||||
@ -0,0 +1,8 @@
|
|||||||
|
file(REMOVE_RECURSE
|
||||||
|
"CMakeFiles/uninstall"
|
||||||
|
)
|
||||||
|
|
||||||
|
# Per-language clean rules from dependency scanning.
|
||||||
|
foreach(lang )
|
||||||
|
include(CMakeFiles/uninstall.dir/cmake_clean_${lang}.cmake OPTIONAL)
|
||||||
|
endforeach()
|
||||||
@ -0,0 +1,2 @@
|
|||||||
|
# Empty custom commands generated dependencies file for uninstall.
|
||||||
|
# This may be replaced when dependencies are built.
|
||||||
@ -0,0 +1,2 @@
|
|||||||
|
# CMAKE generated file: DO NOT EDIT!
|
||||||
|
# Timestamp file for custom commands dependencies management for uninstall.
|
||||||
@ -0,0 +1 @@
|
|||||||
|
|
||||||
637
breakout/glfw-3.3.8/build/Makefile
Normal file
637
breakout/glfw-3.3.8/build/Makefile
Normal file
@ -0,0 +1,637 @@
|
|||||||
|
# CMAKE generated file: DO NOT EDIT!
|
||||||
|
# Generated by "Unix Makefiles" Generator, CMake Version 3.24
|
||||||
|
|
||||||
|
# Default target executed when no arguments are given to make.
|
||||||
|
default_target: all
|
||||||
|
.PHONY : default_target
|
||||||
|
|
||||||
|
# Allow only one "make -f Makefile2" at a time, but pass parallelism.
|
||||||
|
.NOTPARALLEL:
|
||||||
|
|
||||||
|
#=============================================================================
|
||||||
|
# Special targets provided by cmake.
|
||||||
|
|
||||||
|
# Disable implicit rules so canonical targets will work.
|
||||||
|
.SUFFIXES:
|
||||||
|
|
||||||
|
# Disable VCS-based implicit rules.
|
||||||
|
% : %,v
|
||||||
|
|
||||||
|
# Disable VCS-based implicit rules.
|
||||||
|
% : RCS/%
|
||||||
|
|
||||||
|
# Disable VCS-based implicit rules.
|
||||||
|
% : RCS/%,v
|
||||||
|
|
||||||
|
# Disable VCS-based implicit rules.
|
||||||
|
% : SCCS/s.%
|
||||||
|
|
||||||
|
# Disable VCS-based implicit rules.
|
||||||
|
% : s.%
|
||||||
|
|
||||||
|
.SUFFIXES: .hpux_make_needs_suffix_list
|
||||||
|
|
||||||
|
# Command-line flag to silence nested $(MAKE).
|
||||||
|
$(VERBOSE)MAKESILENT = -s
|
||||||
|
|
||||||
|
#Suppress display of executed commands.
|
||||||
|
$(VERBOSE).SILENT:
|
||||||
|
|
||||||
|
# A target that is always out of date.
|
||||||
|
cmake_force:
|
||||||
|
.PHONY : cmake_force
|
||||||
|
|
||||||
|
#=============================================================================
|
||||||
|
# Set environment variables for the build.
|
||||||
|
|
||||||
|
# The shell in which to execute make rules.
|
||||||
|
SHELL = /bin/sh
|
||||||
|
|
||||||
|
# The CMake executable.
|
||||||
|
CMAKE_COMMAND = /usr/bin/cmake
|
||||||
|
|
||||||
|
# The command to remove a file.
|
||||||
|
RM = /usr/bin/cmake -E rm -f
|
||||||
|
|
||||||
|
# Escaping for special characters.
|
||||||
|
EQUALS = =
|
||||||
|
|
||||||
|
# The top-level source directory on which CMake was run.
|
||||||
|
CMAKE_SOURCE_DIR = /home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8
|
||||||
|
|
||||||
|
# The top-level build directory on which CMake was run.
|
||||||
|
CMAKE_BINARY_DIR = /home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/build
|
||||||
|
|
||||||
|
#=============================================================================
|
||||||
|
# Targets provided globally by CMake.
|
||||||
|
|
||||||
|
# Special rule for the target edit_cache
|
||||||
|
edit_cache:
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running CMake cache editor..."
|
||||||
|
/usr/bin/ccmake -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR)
|
||||||
|
.PHONY : edit_cache
|
||||||
|
|
||||||
|
# Special rule for the target edit_cache
|
||||||
|
edit_cache/fast: edit_cache
|
||||||
|
.PHONY : edit_cache/fast
|
||||||
|
|
||||||
|
# Special rule for the target rebuild_cache
|
||||||
|
rebuild_cache:
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running CMake to regenerate build system..."
|
||||||
|
/usr/bin/cmake --regenerate-during-build -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR)
|
||||||
|
.PHONY : rebuild_cache
|
||||||
|
|
||||||
|
# Special rule for the target rebuild_cache
|
||||||
|
rebuild_cache/fast: rebuild_cache
|
||||||
|
.PHONY : rebuild_cache/fast
|
||||||
|
|
||||||
|
# Special rule for the target list_install_components
|
||||||
|
list_install_components:
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Available install components are: \"Unspecified\""
|
||||||
|
.PHONY : list_install_components
|
||||||
|
|
||||||
|
# Special rule for the target list_install_components
|
||||||
|
list_install_components/fast: list_install_components
|
||||||
|
.PHONY : list_install_components/fast
|
||||||
|
|
||||||
|
# Special rule for the target install
|
||||||
|
install: preinstall
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Install the project..."
|
||||||
|
/usr/bin/cmake -P cmake_install.cmake
|
||||||
|
.PHONY : install
|
||||||
|
|
||||||
|
# Special rule for the target install
|
||||||
|
install/fast: preinstall/fast
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Install the project..."
|
||||||
|
/usr/bin/cmake -P cmake_install.cmake
|
||||||
|
.PHONY : install/fast
|
||||||
|
|
||||||
|
# Special rule for the target install/local
|
||||||
|
install/local: preinstall
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing only the local directory..."
|
||||||
|
/usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake
|
||||||
|
.PHONY : install/local
|
||||||
|
|
||||||
|
# Special rule for the target install/local
|
||||||
|
install/local/fast: preinstall/fast
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing only the local directory..."
|
||||||
|
/usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake
|
||||||
|
.PHONY : install/local/fast
|
||||||
|
|
||||||
|
# Special rule for the target install/strip
|
||||||
|
install/strip: preinstall
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing the project stripped..."
|
||||||
|
/usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake
|
||||||
|
.PHONY : install/strip
|
||||||
|
|
||||||
|
# Special rule for the target install/strip
|
||||||
|
install/strip/fast: preinstall/fast
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing the project stripped..."
|
||||||
|
/usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake
|
||||||
|
.PHONY : install/strip/fast
|
||||||
|
|
||||||
|
# The main all target
|
||||||
|
all: cmake_check_build_system
|
||||||
|
$(CMAKE_COMMAND) -E cmake_progress_start /home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/build/CMakeFiles /home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/build//CMakeFiles/progress.marks
|
||||||
|
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 all
|
||||||
|
$(CMAKE_COMMAND) -E cmake_progress_start /home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/build/CMakeFiles 0
|
||||||
|
.PHONY : all
|
||||||
|
|
||||||
|
# The main clean target
|
||||||
|
clean:
|
||||||
|
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 clean
|
||||||
|
.PHONY : clean
|
||||||
|
|
||||||
|
# The main clean target
|
||||||
|
clean/fast: clean
|
||||||
|
.PHONY : clean/fast
|
||||||
|
|
||||||
|
# Prepare targets for installation.
|
||||||
|
preinstall: all
|
||||||
|
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 preinstall
|
||||||
|
.PHONY : preinstall
|
||||||
|
|
||||||
|
# Prepare targets for installation.
|
||||||
|
preinstall/fast:
|
||||||
|
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 preinstall
|
||||||
|
.PHONY : preinstall/fast
|
||||||
|
|
||||||
|
# clear depends
|
||||||
|
depend:
|
||||||
|
$(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1
|
||||||
|
.PHONY : depend
|
||||||
|
|
||||||
|
#=============================================================================
|
||||||
|
# Target rules for targets named uninstall
|
||||||
|
|
||||||
|
# Build rule for target.
|
||||||
|
uninstall: cmake_check_build_system
|
||||||
|
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 uninstall
|
||||||
|
.PHONY : uninstall
|
||||||
|
|
||||||
|
# fast build rule for target.
|
||||||
|
uninstall/fast:
|
||||||
|
$(MAKE) $(MAKESILENT) -f CMakeFiles/uninstall.dir/build.make CMakeFiles/uninstall.dir/build
|
||||||
|
.PHONY : uninstall/fast
|
||||||
|
|
||||||
|
#=============================================================================
|
||||||
|
# Target rules for targets named update_mappings
|
||||||
|
|
||||||
|
# Build rule for target.
|
||||||
|
update_mappings: cmake_check_build_system
|
||||||
|
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 update_mappings
|
||||||
|
.PHONY : update_mappings
|
||||||
|
|
||||||
|
# fast build rule for target.
|
||||||
|
update_mappings/fast:
|
||||||
|
$(MAKE) $(MAKESILENT) -f src/CMakeFiles/update_mappings.dir/build.make src/CMakeFiles/update_mappings.dir/build
|
||||||
|
.PHONY : update_mappings/fast
|
||||||
|
|
||||||
|
#=============================================================================
|
||||||
|
# Target rules for targets named glfw
|
||||||
|
|
||||||
|
# Build rule for target.
|
||||||
|
glfw: cmake_check_build_system
|
||||||
|
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 glfw
|
||||||
|
.PHONY : glfw
|
||||||
|
|
||||||
|
# fast build rule for target.
|
||||||
|
glfw/fast:
|
||||||
|
$(MAKE) $(MAKESILENT) -f src/CMakeFiles/glfw.dir/build.make src/CMakeFiles/glfw.dir/build
|
||||||
|
.PHONY : glfw/fast
|
||||||
|
|
||||||
|
#=============================================================================
|
||||||
|
# Target rules for targets named boing
|
||||||
|
|
||||||
|
# Build rule for target.
|
||||||
|
boing: cmake_check_build_system
|
||||||
|
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 boing
|
||||||
|
.PHONY : boing
|
||||||
|
|
||||||
|
# fast build rule for target.
|
||||||
|
boing/fast:
|
||||||
|
$(MAKE) $(MAKESILENT) -f examples/CMakeFiles/boing.dir/build.make examples/CMakeFiles/boing.dir/build
|
||||||
|
.PHONY : boing/fast
|
||||||
|
|
||||||
|
#=============================================================================
|
||||||
|
# Target rules for targets named gears
|
||||||
|
|
||||||
|
# Build rule for target.
|
||||||
|
gears: cmake_check_build_system
|
||||||
|
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 gears
|
||||||
|
.PHONY : gears
|
||||||
|
|
||||||
|
# fast build rule for target.
|
||||||
|
gears/fast:
|
||||||
|
$(MAKE) $(MAKESILENT) -f examples/CMakeFiles/gears.dir/build.make examples/CMakeFiles/gears.dir/build
|
||||||
|
.PHONY : gears/fast
|
||||||
|
|
||||||
|
#=============================================================================
|
||||||
|
# Target rules for targets named heightmap
|
||||||
|
|
||||||
|
# Build rule for target.
|
||||||
|
heightmap: cmake_check_build_system
|
||||||
|
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 heightmap
|
||||||
|
.PHONY : heightmap
|
||||||
|
|
||||||
|
# fast build rule for target.
|
||||||
|
heightmap/fast:
|
||||||
|
$(MAKE) $(MAKESILENT) -f examples/CMakeFiles/heightmap.dir/build.make examples/CMakeFiles/heightmap.dir/build
|
||||||
|
.PHONY : heightmap/fast
|
||||||
|
|
||||||
|
#=============================================================================
|
||||||
|
# Target rules for targets named offscreen
|
||||||
|
|
||||||
|
# Build rule for target.
|
||||||
|
offscreen: cmake_check_build_system
|
||||||
|
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 offscreen
|
||||||
|
.PHONY : offscreen
|
||||||
|
|
||||||
|
# fast build rule for target.
|
||||||
|
offscreen/fast:
|
||||||
|
$(MAKE) $(MAKESILENT) -f examples/CMakeFiles/offscreen.dir/build.make examples/CMakeFiles/offscreen.dir/build
|
||||||
|
.PHONY : offscreen/fast
|
||||||
|
|
||||||
|
#=============================================================================
|
||||||
|
# Target rules for targets named particles
|
||||||
|
|
||||||
|
# Build rule for target.
|
||||||
|
particles: cmake_check_build_system
|
||||||
|
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 particles
|
||||||
|
.PHONY : particles
|
||||||
|
|
||||||
|
# fast build rule for target.
|
||||||
|
particles/fast:
|
||||||
|
$(MAKE) $(MAKESILENT) -f examples/CMakeFiles/particles.dir/build.make examples/CMakeFiles/particles.dir/build
|
||||||
|
.PHONY : particles/fast
|
||||||
|
|
||||||
|
#=============================================================================
|
||||||
|
# Target rules for targets named sharing
|
||||||
|
|
||||||
|
# Build rule for target.
|
||||||
|
sharing: cmake_check_build_system
|
||||||
|
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 sharing
|
||||||
|
.PHONY : sharing
|
||||||
|
|
||||||
|
# fast build rule for target.
|
||||||
|
sharing/fast:
|
||||||
|
$(MAKE) $(MAKESILENT) -f examples/CMakeFiles/sharing.dir/build.make examples/CMakeFiles/sharing.dir/build
|
||||||
|
.PHONY : sharing/fast
|
||||||
|
|
||||||
|
#=============================================================================
|
||||||
|
# Target rules for targets named simple
|
||||||
|
|
||||||
|
# Build rule for target.
|
||||||
|
simple: cmake_check_build_system
|
||||||
|
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 simple
|
||||||
|
.PHONY : simple
|
||||||
|
|
||||||
|
# fast build rule for target.
|
||||||
|
simple/fast:
|
||||||
|
$(MAKE) $(MAKESILENT) -f examples/CMakeFiles/simple.dir/build.make examples/CMakeFiles/simple.dir/build
|
||||||
|
.PHONY : simple/fast
|
||||||
|
|
||||||
|
#=============================================================================
|
||||||
|
# Target rules for targets named splitview
|
||||||
|
|
||||||
|
# Build rule for target.
|
||||||
|
splitview: cmake_check_build_system
|
||||||
|
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 splitview
|
||||||
|
.PHONY : splitview
|
||||||
|
|
||||||
|
# fast build rule for target.
|
||||||
|
splitview/fast:
|
||||||
|
$(MAKE) $(MAKESILENT) -f examples/CMakeFiles/splitview.dir/build.make examples/CMakeFiles/splitview.dir/build
|
||||||
|
.PHONY : splitview/fast
|
||||||
|
|
||||||
|
#=============================================================================
|
||||||
|
# Target rules for targets named wave
|
||||||
|
|
||||||
|
# Build rule for target.
|
||||||
|
wave: cmake_check_build_system
|
||||||
|
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 wave
|
||||||
|
.PHONY : wave
|
||||||
|
|
||||||
|
# fast build rule for target.
|
||||||
|
wave/fast:
|
||||||
|
$(MAKE) $(MAKESILENT) -f examples/CMakeFiles/wave.dir/build.make examples/CMakeFiles/wave.dir/build
|
||||||
|
.PHONY : wave/fast
|
||||||
|
|
||||||
|
#=============================================================================
|
||||||
|
# Target rules for targets named clipboard
|
||||||
|
|
||||||
|
# Build rule for target.
|
||||||
|
clipboard: cmake_check_build_system
|
||||||
|
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 clipboard
|
||||||
|
.PHONY : clipboard
|
||||||
|
|
||||||
|
# fast build rule for target.
|
||||||
|
clipboard/fast:
|
||||||
|
$(MAKE) $(MAKESILENT) -f tests/CMakeFiles/clipboard.dir/build.make tests/CMakeFiles/clipboard.dir/build
|
||||||
|
.PHONY : clipboard/fast
|
||||||
|
|
||||||
|
#=============================================================================
|
||||||
|
# Target rules for targets named events
|
||||||
|
|
||||||
|
# Build rule for target.
|
||||||
|
events: cmake_check_build_system
|
||||||
|
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 events
|
||||||
|
.PHONY : events
|
||||||
|
|
||||||
|
# fast build rule for target.
|
||||||
|
events/fast:
|
||||||
|
$(MAKE) $(MAKESILENT) -f tests/CMakeFiles/events.dir/build.make tests/CMakeFiles/events.dir/build
|
||||||
|
.PHONY : events/fast
|
||||||
|
|
||||||
|
#=============================================================================
|
||||||
|
# Target rules for targets named msaa
|
||||||
|
|
||||||
|
# Build rule for target.
|
||||||
|
msaa: cmake_check_build_system
|
||||||
|
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 msaa
|
||||||
|
.PHONY : msaa
|
||||||
|
|
||||||
|
# fast build rule for target.
|
||||||
|
msaa/fast:
|
||||||
|
$(MAKE) $(MAKESILENT) -f tests/CMakeFiles/msaa.dir/build.make tests/CMakeFiles/msaa.dir/build
|
||||||
|
.PHONY : msaa/fast
|
||||||
|
|
||||||
|
#=============================================================================
|
||||||
|
# Target rules for targets named glfwinfo
|
||||||
|
|
||||||
|
# Build rule for target.
|
||||||
|
glfwinfo: cmake_check_build_system
|
||||||
|
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 glfwinfo
|
||||||
|
.PHONY : glfwinfo
|
||||||
|
|
||||||
|
# fast build rule for target.
|
||||||
|
glfwinfo/fast:
|
||||||
|
$(MAKE) $(MAKESILENT) -f tests/CMakeFiles/glfwinfo.dir/build.make tests/CMakeFiles/glfwinfo.dir/build
|
||||||
|
.PHONY : glfwinfo/fast
|
||||||
|
|
||||||
|
#=============================================================================
|
||||||
|
# Target rules for targets named iconify
|
||||||
|
|
||||||
|
# Build rule for target.
|
||||||
|
iconify: cmake_check_build_system
|
||||||
|
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 iconify
|
||||||
|
.PHONY : iconify
|
||||||
|
|
||||||
|
# fast build rule for target.
|
||||||
|
iconify/fast:
|
||||||
|
$(MAKE) $(MAKESILENT) -f tests/CMakeFiles/iconify.dir/build.make tests/CMakeFiles/iconify.dir/build
|
||||||
|
.PHONY : iconify/fast
|
||||||
|
|
||||||
|
#=============================================================================
|
||||||
|
# Target rules for targets named monitors
|
||||||
|
|
||||||
|
# Build rule for target.
|
||||||
|
monitors: cmake_check_build_system
|
||||||
|
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 monitors
|
||||||
|
.PHONY : monitors
|
||||||
|
|
||||||
|
# fast build rule for target.
|
||||||
|
monitors/fast:
|
||||||
|
$(MAKE) $(MAKESILENT) -f tests/CMakeFiles/monitors.dir/build.make tests/CMakeFiles/monitors.dir/build
|
||||||
|
.PHONY : monitors/fast
|
||||||
|
|
||||||
|
#=============================================================================
|
||||||
|
# Target rules for targets named reopen
|
||||||
|
|
||||||
|
# Build rule for target.
|
||||||
|
reopen: cmake_check_build_system
|
||||||
|
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 reopen
|
||||||
|
.PHONY : reopen
|
||||||
|
|
||||||
|
# fast build rule for target.
|
||||||
|
reopen/fast:
|
||||||
|
$(MAKE) $(MAKESILENT) -f tests/CMakeFiles/reopen.dir/build.make tests/CMakeFiles/reopen.dir/build
|
||||||
|
.PHONY : reopen/fast
|
||||||
|
|
||||||
|
#=============================================================================
|
||||||
|
# Target rules for targets named cursor
|
||||||
|
|
||||||
|
# Build rule for target.
|
||||||
|
cursor: cmake_check_build_system
|
||||||
|
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 cursor
|
||||||
|
.PHONY : cursor
|
||||||
|
|
||||||
|
# fast build rule for target.
|
||||||
|
cursor/fast:
|
||||||
|
$(MAKE) $(MAKESILENT) -f tests/CMakeFiles/cursor.dir/build.make tests/CMakeFiles/cursor.dir/build
|
||||||
|
.PHONY : cursor/fast
|
||||||
|
|
||||||
|
#=============================================================================
|
||||||
|
# Target rules for targets named empty
|
||||||
|
|
||||||
|
# Build rule for target.
|
||||||
|
empty: cmake_check_build_system
|
||||||
|
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 empty
|
||||||
|
.PHONY : empty
|
||||||
|
|
||||||
|
# fast build rule for target.
|
||||||
|
empty/fast:
|
||||||
|
$(MAKE) $(MAKESILENT) -f tests/CMakeFiles/empty.dir/build.make tests/CMakeFiles/empty.dir/build
|
||||||
|
.PHONY : empty/fast
|
||||||
|
|
||||||
|
#=============================================================================
|
||||||
|
# Target rules for targets named gamma
|
||||||
|
|
||||||
|
# Build rule for target.
|
||||||
|
gamma: cmake_check_build_system
|
||||||
|
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 gamma
|
||||||
|
.PHONY : gamma
|
||||||
|
|
||||||
|
# fast build rule for target.
|
||||||
|
gamma/fast:
|
||||||
|
$(MAKE) $(MAKESILENT) -f tests/CMakeFiles/gamma.dir/build.make tests/CMakeFiles/gamma.dir/build
|
||||||
|
.PHONY : gamma/fast
|
||||||
|
|
||||||
|
#=============================================================================
|
||||||
|
# Target rules for targets named icon
|
||||||
|
|
||||||
|
# Build rule for target.
|
||||||
|
icon: cmake_check_build_system
|
||||||
|
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 icon
|
||||||
|
.PHONY : icon
|
||||||
|
|
||||||
|
# fast build rule for target.
|
||||||
|
icon/fast:
|
||||||
|
$(MAKE) $(MAKESILENT) -f tests/CMakeFiles/icon.dir/build.make tests/CMakeFiles/icon.dir/build
|
||||||
|
.PHONY : icon/fast
|
||||||
|
|
||||||
|
#=============================================================================
|
||||||
|
# Target rules for targets named inputlag
|
||||||
|
|
||||||
|
# Build rule for target.
|
||||||
|
inputlag: cmake_check_build_system
|
||||||
|
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 inputlag
|
||||||
|
.PHONY : inputlag
|
||||||
|
|
||||||
|
# fast build rule for target.
|
||||||
|
inputlag/fast:
|
||||||
|
$(MAKE) $(MAKESILENT) -f tests/CMakeFiles/inputlag.dir/build.make tests/CMakeFiles/inputlag.dir/build
|
||||||
|
.PHONY : inputlag/fast
|
||||||
|
|
||||||
|
#=============================================================================
|
||||||
|
# Target rules for targets named joysticks
|
||||||
|
|
||||||
|
# Build rule for target.
|
||||||
|
joysticks: cmake_check_build_system
|
||||||
|
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 joysticks
|
||||||
|
.PHONY : joysticks
|
||||||
|
|
||||||
|
# fast build rule for target.
|
||||||
|
joysticks/fast:
|
||||||
|
$(MAKE) $(MAKESILENT) -f tests/CMakeFiles/joysticks.dir/build.make tests/CMakeFiles/joysticks.dir/build
|
||||||
|
.PHONY : joysticks/fast
|
||||||
|
|
||||||
|
#=============================================================================
|
||||||
|
# Target rules for targets named opacity
|
||||||
|
|
||||||
|
# Build rule for target.
|
||||||
|
opacity: cmake_check_build_system
|
||||||
|
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 opacity
|
||||||
|
.PHONY : opacity
|
||||||
|
|
||||||
|
# fast build rule for target.
|
||||||
|
opacity/fast:
|
||||||
|
$(MAKE) $(MAKESILENT) -f tests/CMakeFiles/opacity.dir/build.make tests/CMakeFiles/opacity.dir/build
|
||||||
|
.PHONY : opacity/fast
|
||||||
|
|
||||||
|
#=============================================================================
|
||||||
|
# Target rules for targets named tearing
|
||||||
|
|
||||||
|
# Build rule for target.
|
||||||
|
tearing: cmake_check_build_system
|
||||||
|
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 tearing
|
||||||
|
.PHONY : tearing
|
||||||
|
|
||||||
|
# fast build rule for target.
|
||||||
|
tearing/fast:
|
||||||
|
$(MAKE) $(MAKESILENT) -f tests/CMakeFiles/tearing.dir/build.make tests/CMakeFiles/tearing.dir/build
|
||||||
|
.PHONY : tearing/fast
|
||||||
|
|
||||||
|
#=============================================================================
|
||||||
|
# Target rules for targets named threads
|
||||||
|
|
||||||
|
# Build rule for target.
|
||||||
|
threads: cmake_check_build_system
|
||||||
|
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 threads
|
||||||
|
.PHONY : threads
|
||||||
|
|
||||||
|
# fast build rule for target.
|
||||||
|
threads/fast:
|
||||||
|
$(MAKE) $(MAKESILENT) -f tests/CMakeFiles/threads.dir/build.make tests/CMakeFiles/threads.dir/build
|
||||||
|
.PHONY : threads/fast
|
||||||
|
|
||||||
|
#=============================================================================
|
||||||
|
# Target rules for targets named timeout
|
||||||
|
|
||||||
|
# Build rule for target.
|
||||||
|
timeout: cmake_check_build_system
|
||||||
|
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 timeout
|
||||||
|
.PHONY : timeout
|
||||||
|
|
||||||
|
# fast build rule for target.
|
||||||
|
timeout/fast:
|
||||||
|
$(MAKE) $(MAKESILENT) -f tests/CMakeFiles/timeout.dir/build.make tests/CMakeFiles/timeout.dir/build
|
||||||
|
.PHONY : timeout/fast
|
||||||
|
|
||||||
|
#=============================================================================
|
||||||
|
# Target rules for targets named title
|
||||||
|
|
||||||
|
# Build rule for target.
|
||||||
|
title: cmake_check_build_system
|
||||||
|
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 title
|
||||||
|
.PHONY : title
|
||||||
|
|
||||||
|
# fast build rule for target.
|
||||||
|
title/fast:
|
||||||
|
$(MAKE) $(MAKESILENT) -f tests/CMakeFiles/title.dir/build.make tests/CMakeFiles/title.dir/build
|
||||||
|
.PHONY : title/fast
|
||||||
|
|
||||||
|
#=============================================================================
|
||||||
|
# Target rules for targets named triangle-vulkan
|
||||||
|
|
||||||
|
# Build rule for target.
|
||||||
|
triangle-vulkan: cmake_check_build_system
|
||||||
|
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 triangle-vulkan
|
||||||
|
.PHONY : triangle-vulkan
|
||||||
|
|
||||||
|
# fast build rule for target.
|
||||||
|
triangle-vulkan/fast:
|
||||||
|
$(MAKE) $(MAKESILENT) -f tests/CMakeFiles/triangle-vulkan.dir/build.make tests/CMakeFiles/triangle-vulkan.dir/build
|
||||||
|
.PHONY : triangle-vulkan/fast
|
||||||
|
|
||||||
|
#=============================================================================
|
||||||
|
# Target rules for targets named windows
|
||||||
|
|
||||||
|
# Build rule for target.
|
||||||
|
windows: cmake_check_build_system
|
||||||
|
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 windows
|
||||||
|
.PHONY : windows
|
||||||
|
|
||||||
|
# fast build rule for target.
|
||||||
|
windows/fast:
|
||||||
|
$(MAKE) $(MAKESILENT) -f tests/CMakeFiles/windows.dir/build.make tests/CMakeFiles/windows.dir/build
|
||||||
|
.PHONY : windows/fast
|
||||||
|
|
||||||
|
# Help Target
|
||||||
|
help:
|
||||||
|
@echo "The following are some of the valid targets for this Makefile:"
|
||||||
|
@echo "... all (the default if no target is provided)"
|
||||||
|
@echo "... clean"
|
||||||
|
@echo "... depend"
|
||||||
|
@echo "... edit_cache"
|
||||||
|
@echo "... install"
|
||||||
|
@echo "... install/local"
|
||||||
|
@echo "... install/strip"
|
||||||
|
@echo "... list_install_components"
|
||||||
|
@echo "... rebuild_cache"
|
||||||
|
@echo "... uninstall"
|
||||||
|
@echo "... update_mappings"
|
||||||
|
@echo "... boing"
|
||||||
|
@echo "... clipboard"
|
||||||
|
@echo "... cursor"
|
||||||
|
@echo "... empty"
|
||||||
|
@echo "... events"
|
||||||
|
@echo "... gamma"
|
||||||
|
@echo "... gears"
|
||||||
|
@echo "... glfw"
|
||||||
|
@echo "... glfwinfo"
|
||||||
|
@echo "... heightmap"
|
||||||
|
@echo "... icon"
|
||||||
|
@echo "... iconify"
|
||||||
|
@echo "... inputlag"
|
||||||
|
@echo "... joysticks"
|
||||||
|
@echo "... monitors"
|
||||||
|
@echo "... msaa"
|
||||||
|
@echo "... offscreen"
|
||||||
|
@echo "... opacity"
|
||||||
|
@echo "... particles"
|
||||||
|
@echo "... reopen"
|
||||||
|
@echo "... sharing"
|
||||||
|
@echo "... simple"
|
||||||
|
@echo "... splitview"
|
||||||
|
@echo "... tearing"
|
||||||
|
@echo "... threads"
|
||||||
|
@echo "... timeout"
|
||||||
|
@echo "... title"
|
||||||
|
@echo "... triangle-vulkan"
|
||||||
|
@echo "... wave"
|
||||||
|
@echo "... windows"
|
||||||
|
.PHONY : help
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
#=============================================================================
|
||||||
|
# Special targets to cleanup operation of make.
|
||||||
|
|
||||||
|
# Special rule to run CMake to check the build system integrity.
|
||||||
|
# No rule that depends on this can have commands that come from listfiles
|
||||||
|
# because they might be regenerated.
|
||||||
|
cmake_check_build_system:
|
||||||
|
$(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0
|
||||||
|
.PHONY : cmake_check_build_system
|
||||||
|
|
||||||
107
breakout/glfw-3.3.8/build/cmake_install.cmake
Normal file
107
breakout/glfw-3.3.8/build/cmake_install.cmake
Normal file
@ -0,0 +1,107 @@
|
|||||||
|
# Install script for directory: /home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8
|
||||||
|
|
||||||
|
# Set the install prefix
|
||||||
|
if(NOT DEFINED CMAKE_INSTALL_PREFIX)
|
||||||
|
set(CMAKE_INSTALL_PREFIX "/usr/local")
|
||||||
|
endif()
|
||||||
|
string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")
|
||||||
|
|
||||||
|
# Set the install configuration name.
|
||||||
|
if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
|
||||||
|
if(BUILD_TYPE)
|
||||||
|
string(REGEX REPLACE "^[^A-Za-z0-9_]+" ""
|
||||||
|
CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}")
|
||||||
|
else()
|
||||||
|
set(CMAKE_INSTALL_CONFIG_NAME "")
|
||||||
|
endif()
|
||||||
|
message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
# Set the component getting installed.
|
||||||
|
if(NOT CMAKE_INSTALL_COMPONENT)
|
||||||
|
if(COMPONENT)
|
||||||
|
message(STATUS "Install component: \"${COMPONENT}\"")
|
||||||
|
set(CMAKE_INSTALL_COMPONENT "${COMPONENT}")
|
||||||
|
else()
|
||||||
|
set(CMAKE_INSTALL_COMPONENT)
|
||||||
|
endif()
|
||||||
|
endif()
|
||||||
|
|
||||||
|
# Install shared libraries without execute permission?
|
||||||
|
if(NOT DEFINED CMAKE_INSTALL_SO_NO_EXE)
|
||||||
|
set(CMAKE_INSTALL_SO_NO_EXE "0")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
# Is this installation the result of a crosscompile?
|
||||||
|
if(NOT DEFINED CMAKE_CROSSCOMPILING)
|
||||||
|
set(CMAKE_CROSSCOMPILING "FALSE")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
# Set default install directory permissions.
|
||||||
|
if(NOT DEFINED CMAKE_OBJDUMP)
|
||||||
|
set(CMAKE_OBJDUMP "/usr/bin/objdump")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
if(NOT CMAKE_INSTALL_LOCAL_ONLY)
|
||||||
|
# Include the install script for the subdirectory.
|
||||||
|
include("/home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/build/src/cmake_install.cmake")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
if(NOT CMAKE_INSTALL_LOCAL_ONLY)
|
||||||
|
# Include the install script for the subdirectory.
|
||||||
|
include("/home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/build/examples/cmake_install.cmake")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
if(NOT CMAKE_INSTALL_LOCAL_ONLY)
|
||||||
|
# Include the install script for the subdirectory.
|
||||||
|
include("/home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/build/tests/cmake_install.cmake")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
if(CMAKE_INSTALL_COMPONENT STREQUAL "Unspecified" OR NOT CMAKE_INSTALL_COMPONENT)
|
||||||
|
file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/include" TYPE DIRECTORY FILES "/home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/include/GLFW" FILES_MATCHING REGEX "/glfw3\\.h$" REGEX "/glfw3native\\.h$")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
if(CMAKE_INSTALL_COMPONENT STREQUAL "Unspecified" OR NOT CMAKE_INSTALL_COMPONENT)
|
||||||
|
file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/lib/cmake/glfw3" TYPE FILE FILES
|
||||||
|
"/home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/build/src/glfw3Config.cmake"
|
||||||
|
"/home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/build/src/glfw3ConfigVersion.cmake"
|
||||||
|
)
|
||||||
|
endif()
|
||||||
|
|
||||||
|
if(CMAKE_INSTALL_COMPONENT STREQUAL "Unspecified" OR NOT CMAKE_INSTALL_COMPONENT)
|
||||||
|
if(EXISTS "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/cmake/glfw3/glfw3Targets.cmake")
|
||||||
|
file(DIFFERENT _cmake_export_file_changed FILES
|
||||||
|
"$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/cmake/glfw3/glfw3Targets.cmake"
|
||||||
|
"/home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/build/CMakeFiles/Export/f367bd07922f2ecfc14cf5547f1f7c4e/glfw3Targets.cmake")
|
||||||
|
if(_cmake_export_file_changed)
|
||||||
|
file(GLOB _cmake_old_config_files "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/cmake/glfw3/glfw3Targets-*.cmake")
|
||||||
|
if(_cmake_old_config_files)
|
||||||
|
string(REPLACE ";" ", " _cmake_old_config_files_text "${_cmake_old_config_files}")
|
||||||
|
message(STATUS "Old export file \"$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/cmake/glfw3/glfw3Targets.cmake\" will be replaced. Removing files [${_cmake_old_config_files_text}].")
|
||||||
|
unset(_cmake_old_config_files_text)
|
||||||
|
file(REMOVE ${_cmake_old_config_files})
|
||||||
|
endif()
|
||||||
|
unset(_cmake_old_config_files)
|
||||||
|
endif()
|
||||||
|
unset(_cmake_export_file_changed)
|
||||||
|
endif()
|
||||||
|
file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/lib/cmake/glfw3" TYPE FILE FILES "/home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/build/CMakeFiles/Export/f367bd07922f2ecfc14cf5547f1f7c4e/glfw3Targets.cmake")
|
||||||
|
if(CMAKE_INSTALL_CONFIG_NAME MATCHES "^()$")
|
||||||
|
file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/lib/cmake/glfw3" TYPE FILE FILES "/home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/build/CMakeFiles/Export/f367bd07922f2ecfc14cf5547f1f7c4e/glfw3Targets-noconfig.cmake")
|
||||||
|
endif()
|
||||||
|
endif()
|
||||||
|
|
||||||
|
if(CMAKE_INSTALL_COMPONENT STREQUAL "Unspecified" OR NOT CMAKE_INSTALL_COMPONENT)
|
||||||
|
file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/lib/pkgconfig" TYPE FILE FILES "/home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/build/src/glfw3.pc")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
if(CMAKE_INSTALL_COMPONENT)
|
||||||
|
set(CMAKE_INSTALL_MANIFEST "install_manifest_${CMAKE_INSTALL_COMPONENT}.txt")
|
||||||
|
else()
|
||||||
|
set(CMAKE_INSTALL_MANIFEST "install_manifest.txt")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT
|
||||||
|
"${CMAKE_INSTALL_MANIFEST_FILES}")
|
||||||
|
file(WRITE "/home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/build/${CMAKE_INSTALL_MANIFEST}"
|
||||||
|
"${CMAKE_INSTALL_MANIFEST_CONTENT}")
|
||||||
29
breakout/glfw-3.3.8/build/cmake_uninstall.cmake
Normal file
29
breakout/glfw-3.3.8/build/cmake_uninstall.cmake
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
|
||||||
|
if (NOT EXISTS "/home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/build/install_manifest.txt")
|
||||||
|
message(FATAL_ERROR "Cannot find install manifest: \"/home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/build/install_manifest.txt\"")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
file(READ "/home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/build/install_manifest.txt" files)
|
||||||
|
string(REGEX REPLACE "\n" ";" files "${files}")
|
||||||
|
|
||||||
|
foreach (file ${files})
|
||||||
|
message(STATUS "Uninstalling \"$ENV{DESTDIR}${file}\"")
|
||||||
|
if (EXISTS "$ENV{DESTDIR}${file}")
|
||||||
|
exec_program("/usr/bin/cmake" ARGS "-E remove \"$ENV{DESTDIR}${file}\""
|
||||||
|
OUTPUT_VARIABLE rm_out
|
||||||
|
RETURN_VALUE rm_retval)
|
||||||
|
if (NOT "${rm_retval}" STREQUAL 0)
|
||||||
|
MESSAGE(FATAL_ERROR "Problem when removing \"$ENV{DESTDIR}${file}\"")
|
||||||
|
endif()
|
||||||
|
elseif (IS_SYMLINK "$ENV{DESTDIR}${file}")
|
||||||
|
EXEC_PROGRAM("/usr/bin/cmake" ARGS "-E remove \"$ENV{DESTDIR}${file}\""
|
||||||
|
OUTPUT_VARIABLE rm_out
|
||||||
|
RETURN_VALUE rm_retval)
|
||||||
|
if (NOT "${rm_retval}" STREQUAL 0)
|
||||||
|
message(FATAL_ERROR "Problem when removing symlink \"$ENV{DESTDIR}${file}\"")
|
||||||
|
endif()
|
||||||
|
else()
|
||||||
|
message(STATUS "File \"$ENV{DESTDIR}${file}\" does not exist.")
|
||||||
|
endif()
|
||||||
|
endforeach()
|
||||||
|
|
||||||
@ -0,0 +1,16 @@
|
|||||||
|
# CMAKE generated file: DO NOT EDIT!
|
||||||
|
# Generated by "Unix Makefiles" Generator, CMake Version 3.24
|
||||||
|
|
||||||
|
# Relative path conversion top directories.
|
||||||
|
set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8")
|
||||||
|
set(CMAKE_RELATIVE_PATH_TOP_BINARY "/home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/build")
|
||||||
|
|
||||||
|
# Force unix paths in dependencies.
|
||||||
|
set(CMAKE_FORCE_UNIX_PATHS 1)
|
||||||
|
|
||||||
|
|
||||||
|
# The C and CXX include file regular expressions for this directory.
|
||||||
|
set(CMAKE_C_INCLUDE_REGEX_SCAN "^.*$")
|
||||||
|
set(CMAKE_C_INCLUDE_REGEX_COMPLAIN "^$")
|
||||||
|
set(CMAKE_CXX_INCLUDE_REGEX_SCAN ${CMAKE_C_INCLUDE_REGEX_SCAN})
|
||||||
|
set(CMAKE_CXX_INCLUDE_REGEX_COMPLAIN ${CMAKE_C_INCLUDE_REGEX_COMPLAIN})
|
||||||
@ -0,0 +1,21 @@
|
|||||||
|
|
||||||
|
# Consider dependencies only in project.
|
||||||
|
set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF)
|
||||||
|
|
||||||
|
# The set of languages for which implicit dependencies are needed:
|
||||||
|
set(CMAKE_DEPENDS_LANGUAGES
|
||||||
|
)
|
||||||
|
|
||||||
|
# The set of dependency files which are needed:
|
||||||
|
set(CMAKE_DEPENDS_DEPENDENCY_FILES
|
||||||
|
"/home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/deps/glad_gl.c" "examples/CMakeFiles/boing.dir/__/deps/glad_gl.c.o" "gcc" "examples/CMakeFiles/boing.dir/__/deps/glad_gl.c.o.d"
|
||||||
|
"/home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/examples/boing.c" "examples/CMakeFiles/boing.dir/boing.c.o" "gcc" "examples/CMakeFiles/boing.dir/boing.c.o.d"
|
||||||
|
)
|
||||||
|
|
||||||
|
# Targets to which this target links.
|
||||||
|
set(CMAKE_TARGET_LINKED_INFO_FILES
|
||||||
|
"/home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/build/src/CMakeFiles/glfw.dir/DependInfo.cmake"
|
||||||
|
)
|
||||||
|
|
||||||
|
# Fortran module output directory.
|
||||||
|
set(CMAKE_Fortran_TARGET_MODULE_DIR "")
|
||||||
Binary file not shown.
@ -0,0 +1,40 @@
|
|||||||
|
examples/CMakeFiles/boing.dir/__/deps/glad_gl.c.o: \
|
||||||
|
/home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/deps/glad_gl.c \
|
||||||
|
/usr/include/stdc-predef.h /usr/include/stdio.h \
|
||||||
|
/usr/include/bits/libc-header-start.h /usr/include/features.h \
|
||||||
|
/usr/include/features-time64.h /usr/include/bits/wordsize.h \
|
||||||
|
/usr/include/bits/timesize.h /usr/include/sys/cdefs.h \
|
||||||
|
/usr/include/bits/long-double.h /usr/include/gnu/stubs.h \
|
||||||
|
/usr/include/gnu/stubs-64.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/12.2.0/include/stddef.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/12.2.0/include/stdarg.h \
|
||||||
|
/usr/include/bits/types.h /usr/include/bits/typesizes.h \
|
||||||
|
/usr/include/bits/time64.h /usr/include/bits/types/__fpos_t.h \
|
||||||
|
/usr/include/bits/types/__mbstate_t.h \
|
||||||
|
/usr/include/bits/types/__fpos64_t.h /usr/include/bits/types/__FILE.h \
|
||||||
|
/usr/include/bits/types/FILE.h /usr/include/bits/types/struct_FILE.h \
|
||||||
|
/usr/include/bits/stdio_lim.h /usr/include/bits/floatn.h \
|
||||||
|
/usr/include/bits/floatn-common.h /usr/include/stdlib.h \
|
||||||
|
/usr/include/bits/waitflags.h /usr/include/bits/waitstatus.h \
|
||||||
|
/usr/include/sys/types.h /usr/include/bits/types/clock_t.h \
|
||||||
|
/usr/include/bits/types/clockid_t.h /usr/include/bits/types/time_t.h \
|
||||||
|
/usr/include/bits/types/timer_t.h /usr/include/bits/stdint-intn.h \
|
||||||
|
/usr/include/endian.h /usr/include/bits/endian.h \
|
||||||
|
/usr/include/bits/endianness.h /usr/include/bits/byteswap.h \
|
||||||
|
/usr/include/bits/uintn-identity.h /usr/include/sys/select.h \
|
||||||
|
/usr/include/bits/select.h /usr/include/bits/types/sigset_t.h \
|
||||||
|
/usr/include/bits/types/__sigset_t.h \
|
||||||
|
/usr/include/bits/types/struct_timeval.h \
|
||||||
|
/usr/include/bits/types/struct_timespec.h \
|
||||||
|
/usr/include/bits/pthreadtypes.h /usr/include/bits/thread-shared-types.h \
|
||||||
|
/usr/include/bits/pthreadtypes-arch.h \
|
||||||
|
/usr/include/bits/atomic_wide_counter.h /usr/include/bits/struct_mutex.h \
|
||||||
|
/usr/include/bits/struct_rwlock.h /usr/include/alloca.h \
|
||||||
|
/usr/include/bits/stdlib-float.h /usr/include/string.h \
|
||||||
|
/usr/include/bits/types/locale_t.h /usr/include/bits/types/__locale_t.h \
|
||||||
|
/usr/include/strings.h \
|
||||||
|
/home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/deps/glad/gl.h \
|
||||||
|
/home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/deps/glad/khrplatform.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/12.2.0/include/stdint.h \
|
||||||
|
/usr/include/stdint.h /usr/include/bits/wchar.h \
|
||||||
|
/usr/include/bits/stdint-uintn.h
|
||||||
Binary file not shown.
@ -0,0 +1,45 @@
|
|||||||
|
examples/CMakeFiles/boing.dir/boing.c.o: \
|
||||||
|
/home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/examples/boing.c \
|
||||||
|
/usr/include/stdc-predef.h /usr/include/stdio.h \
|
||||||
|
/usr/include/bits/libc-header-start.h /usr/include/features.h \
|
||||||
|
/usr/include/features-time64.h /usr/include/bits/wordsize.h \
|
||||||
|
/usr/include/bits/timesize.h /usr/include/sys/cdefs.h \
|
||||||
|
/usr/include/bits/long-double.h /usr/include/gnu/stubs.h \
|
||||||
|
/usr/include/gnu/stubs-64.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/12.2.0/include/stddef.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/12.2.0/include/stdarg.h \
|
||||||
|
/usr/include/bits/types.h /usr/include/bits/typesizes.h \
|
||||||
|
/usr/include/bits/time64.h /usr/include/bits/types/__fpos_t.h \
|
||||||
|
/usr/include/bits/types/__mbstate_t.h \
|
||||||
|
/usr/include/bits/types/__fpos64_t.h /usr/include/bits/types/__FILE.h \
|
||||||
|
/usr/include/bits/types/FILE.h /usr/include/bits/types/struct_FILE.h \
|
||||||
|
/usr/include/bits/stdio_lim.h /usr/include/bits/floatn.h \
|
||||||
|
/usr/include/bits/floatn-common.h /usr/include/stdlib.h \
|
||||||
|
/usr/include/bits/waitflags.h /usr/include/bits/waitstatus.h \
|
||||||
|
/usr/include/sys/types.h /usr/include/bits/types/clock_t.h \
|
||||||
|
/usr/include/bits/types/clockid_t.h /usr/include/bits/types/time_t.h \
|
||||||
|
/usr/include/bits/types/timer_t.h /usr/include/bits/stdint-intn.h \
|
||||||
|
/usr/include/endian.h /usr/include/bits/endian.h \
|
||||||
|
/usr/include/bits/endianness.h /usr/include/bits/byteswap.h \
|
||||||
|
/usr/include/bits/uintn-identity.h /usr/include/sys/select.h \
|
||||||
|
/usr/include/bits/select.h /usr/include/bits/types/sigset_t.h \
|
||||||
|
/usr/include/bits/types/__sigset_t.h \
|
||||||
|
/usr/include/bits/types/struct_timeval.h \
|
||||||
|
/usr/include/bits/types/struct_timespec.h \
|
||||||
|
/usr/include/bits/pthreadtypes.h /usr/include/bits/thread-shared-types.h \
|
||||||
|
/usr/include/bits/pthreadtypes-arch.h \
|
||||||
|
/usr/include/bits/atomic_wide_counter.h /usr/include/bits/struct_mutex.h \
|
||||||
|
/usr/include/bits/struct_rwlock.h /usr/include/alloca.h \
|
||||||
|
/usr/include/bits/stdlib-float.h /usr/include/math.h \
|
||||||
|
/usr/include/bits/math-vector.h /usr/include/bits/libm-simd-decl-stubs.h \
|
||||||
|
/usr/include/bits/flt-eval-method.h /usr/include/bits/fp-logb.h \
|
||||||
|
/usr/include/bits/fp-fast.h \
|
||||||
|
/usr/include/bits/mathcalls-helper-functions.h \
|
||||||
|
/usr/include/bits/mathcalls.h \
|
||||||
|
/home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/deps/glad/gl.h \
|
||||||
|
/home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/deps/glad/khrplatform.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/12.2.0/include/stdint.h \
|
||||||
|
/usr/include/stdint.h /usr/include/bits/wchar.h \
|
||||||
|
/usr/include/bits/stdint-uintn.h \
|
||||||
|
/home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/include/GLFW/glfw3.h \
|
||||||
|
/home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/deps/linmath.h
|
||||||
@ -0,0 +1,131 @@
|
|||||||
|
# CMAKE generated file: DO NOT EDIT!
|
||||||
|
# Generated by "Unix Makefiles" Generator, CMake Version 3.24
|
||||||
|
|
||||||
|
# Delete rule output on recipe failure.
|
||||||
|
.DELETE_ON_ERROR:
|
||||||
|
|
||||||
|
#=============================================================================
|
||||||
|
# Special targets provided by cmake.
|
||||||
|
|
||||||
|
# Disable implicit rules so canonical targets will work.
|
||||||
|
.SUFFIXES:
|
||||||
|
|
||||||
|
# Disable VCS-based implicit rules.
|
||||||
|
% : %,v
|
||||||
|
|
||||||
|
# Disable VCS-based implicit rules.
|
||||||
|
% : RCS/%
|
||||||
|
|
||||||
|
# Disable VCS-based implicit rules.
|
||||||
|
% : RCS/%,v
|
||||||
|
|
||||||
|
# Disable VCS-based implicit rules.
|
||||||
|
% : SCCS/s.%
|
||||||
|
|
||||||
|
# Disable VCS-based implicit rules.
|
||||||
|
% : s.%
|
||||||
|
|
||||||
|
.SUFFIXES: .hpux_make_needs_suffix_list
|
||||||
|
|
||||||
|
# Command-line flag to silence nested $(MAKE).
|
||||||
|
$(VERBOSE)MAKESILENT = -s
|
||||||
|
|
||||||
|
#Suppress display of executed commands.
|
||||||
|
$(VERBOSE).SILENT:
|
||||||
|
|
||||||
|
# A target that is always out of date.
|
||||||
|
cmake_force:
|
||||||
|
.PHONY : cmake_force
|
||||||
|
|
||||||
|
#=============================================================================
|
||||||
|
# Set environment variables for the build.
|
||||||
|
|
||||||
|
# The shell in which to execute make rules.
|
||||||
|
SHELL = /bin/sh
|
||||||
|
|
||||||
|
# The CMake executable.
|
||||||
|
CMAKE_COMMAND = /usr/bin/cmake
|
||||||
|
|
||||||
|
# The command to remove a file.
|
||||||
|
RM = /usr/bin/cmake -E rm -f
|
||||||
|
|
||||||
|
# Escaping for special characters.
|
||||||
|
EQUALS = =
|
||||||
|
|
||||||
|
# The top-level source directory on which CMake was run.
|
||||||
|
CMAKE_SOURCE_DIR = /home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8
|
||||||
|
|
||||||
|
# The top-level build directory on which CMake was run.
|
||||||
|
CMAKE_BINARY_DIR = /home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/build
|
||||||
|
|
||||||
|
# Include any dependencies generated for this target.
|
||||||
|
include examples/CMakeFiles/boing.dir/depend.make
|
||||||
|
# Include any dependencies generated by the compiler for this target.
|
||||||
|
include examples/CMakeFiles/boing.dir/compiler_depend.make
|
||||||
|
|
||||||
|
# Include the progress variables for this target.
|
||||||
|
include examples/CMakeFiles/boing.dir/progress.make
|
||||||
|
|
||||||
|
# Include the compile flags for this target's objects.
|
||||||
|
include examples/CMakeFiles/boing.dir/flags.make
|
||||||
|
|
||||||
|
examples/CMakeFiles/boing.dir/boing.c.o: examples/CMakeFiles/boing.dir/flags.make
|
||||||
|
examples/CMakeFiles/boing.dir/boing.c.o: /home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/examples/boing.c
|
||||||
|
examples/CMakeFiles/boing.dir/boing.c.o: examples/CMakeFiles/boing.dir/compiler_depend.ts
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building C object examples/CMakeFiles/boing.dir/boing.c.o"
|
||||||
|
cd /home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/build/examples && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT examples/CMakeFiles/boing.dir/boing.c.o -MF CMakeFiles/boing.dir/boing.c.o.d -o CMakeFiles/boing.dir/boing.c.o -c /home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/examples/boing.c
|
||||||
|
|
||||||
|
examples/CMakeFiles/boing.dir/boing.c.i: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/boing.dir/boing.c.i"
|
||||||
|
cd /home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/build/examples && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/examples/boing.c > CMakeFiles/boing.dir/boing.c.i
|
||||||
|
|
||||||
|
examples/CMakeFiles/boing.dir/boing.c.s: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/boing.dir/boing.c.s"
|
||||||
|
cd /home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/build/examples && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/examples/boing.c -o CMakeFiles/boing.dir/boing.c.s
|
||||||
|
|
||||||
|
examples/CMakeFiles/boing.dir/__/deps/glad_gl.c.o: examples/CMakeFiles/boing.dir/flags.make
|
||||||
|
examples/CMakeFiles/boing.dir/__/deps/glad_gl.c.o: /home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/deps/glad_gl.c
|
||||||
|
examples/CMakeFiles/boing.dir/__/deps/glad_gl.c.o: examples/CMakeFiles/boing.dir/compiler_depend.ts
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building C object examples/CMakeFiles/boing.dir/__/deps/glad_gl.c.o"
|
||||||
|
cd /home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/build/examples && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT examples/CMakeFiles/boing.dir/__/deps/glad_gl.c.o -MF CMakeFiles/boing.dir/__/deps/glad_gl.c.o.d -o CMakeFiles/boing.dir/__/deps/glad_gl.c.o -c /home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/deps/glad_gl.c
|
||||||
|
|
||||||
|
examples/CMakeFiles/boing.dir/__/deps/glad_gl.c.i: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/boing.dir/__/deps/glad_gl.c.i"
|
||||||
|
cd /home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/build/examples && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/deps/glad_gl.c > CMakeFiles/boing.dir/__/deps/glad_gl.c.i
|
||||||
|
|
||||||
|
examples/CMakeFiles/boing.dir/__/deps/glad_gl.c.s: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/boing.dir/__/deps/glad_gl.c.s"
|
||||||
|
cd /home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/build/examples && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/deps/glad_gl.c -o CMakeFiles/boing.dir/__/deps/glad_gl.c.s
|
||||||
|
|
||||||
|
# Object files for target boing
|
||||||
|
boing_OBJECTS = \
|
||||||
|
"CMakeFiles/boing.dir/boing.c.o" \
|
||||||
|
"CMakeFiles/boing.dir/__/deps/glad_gl.c.o"
|
||||||
|
|
||||||
|
# External object files for target boing
|
||||||
|
boing_EXTERNAL_OBJECTS =
|
||||||
|
|
||||||
|
examples/boing: examples/CMakeFiles/boing.dir/boing.c.o
|
||||||
|
examples/boing: examples/CMakeFiles/boing.dir/__/deps/glad_gl.c.o
|
||||||
|
examples/boing: examples/CMakeFiles/boing.dir/build.make
|
||||||
|
examples/boing: src/libglfw3.a
|
||||||
|
examples/boing: /usr/lib/libm.so
|
||||||
|
examples/boing: /usr/lib/librt.a
|
||||||
|
examples/boing: /usr/lib/libm.so
|
||||||
|
examples/boing: /usr/lib/libX11.so
|
||||||
|
examples/boing: examples/CMakeFiles/boing.dir/link.txt
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --bold --progress-dir=/home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Linking C executable boing"
|
||||||
|
cd /home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/build/examples && $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/boing.dir/link.txt --verbose=$(VERBOSE)
|
||||||
|
|
||||||
|
# Rule to build all files generated by this target.
|
||||||
|
examples/CMakeFiles/boing.dir/build: examples/boing
|
||||||
|
.PHONY : examples/CMakeFiles/boing.dir/build
|
||||||
|
|
||||||
|
examples/CMakeFiles/boing.dir/clean:
|
||||||
|
cd /home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/build/examples && $(CMAKE_COMMAND) -P CMakeFiles/boing.dir/cmake_clean.cmake
|
||||||
|
.PHONY : examples/CMakeFiles/boing.dir/clean
|
||||||
|
|
||||||
|
examples/CMakeFiles/boing.dir/depend:
|
||||||
|
cd /home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8 /home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/examples /home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/build /home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/build/examples /home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/build/examples/CMakeFiles/boing.dir/DependInfo.cmake --color=$(COLOR)
|
||||||
|
.PHONY : examples/CMakeFiles/boing.dir/depend
|
||||||
|
|
||||||
@ -0,0 +1,13 @@
|
|||||||
|
file(REMOVE_RECURSE
|
||||||
|
"CMakeFiles/boing.dir/__/deps/glad_gl.c.o"
|
||||||
|
"CMakeFiles/boing.dir/__/deps/glad_gl.c.o.d"
|
||||||
|
"CMakeFiles/boing.dir/boing.c.o"
|
||||||
|
"CMakeFiles/boing.dir/boing.c.o.d"
|
||||||
|
"boing"
|
||||||
|
"boing.pdb"
|
||||||
|
)
|
||||||
|
|
||||||
|
# Per-language clean rules from dependency scanning.
|
||||||
|
foreach(lang C)
|
||||||
|
include(CMakeFiles/boing.dir/cmake_clean_${lang}.cmake OPTIONAL)
|
||||||
|
endforeach()
|
||||||
@ -0,0 +1,2 @@
|
|||||||
|
# Empty compiler generated dependencies file for boing.
|
||||||
|
# This may be replaced when dependencies are built.
|
||||||
@ -0,0 +1,2 @@
|
|||||||
|
# CMAKE generated file: DO NOT EDIT!
|
||||||
|
# Timestamp file for compiler generated dependencies management for boing.
|
||||||
@ -0,0 +1,2 @@
|
|||||||
|
# Empty dependencies file for boing.
|
||||||
|
# This may be replaced when dependencies are built.
|
||||||
@ -0,0 +1,10 @@
|
|||||||
|
# CMAKE generated file: DO NOT EDIT!
|
||||||
|
# Generated by "Unix Makefiles" Generator, CMake Version 3.24
|
||||||
|
|
||||||
|
# compile C with /usr/bin/cc
|
||||||
|
C_DEFINES =
|
||||||
|
|
||||||
|
C_INCLUDES = -I/home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/deps -I/home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/include
|
||||||
|
|
||||||
|
C_FLAGS = -std=gnu99
|
||||||
|
|
||||||
@ -0,0 +1 @@
|
|||||||
|
/usr/bin/cc CMakeFiles/boing.dir/boing.c.o CMakeFiles/boing.dir/__/deps/glad_gl.c.o -o boing ../src/libglfw3.a -lm /usr/lib/librt.a -lm -ldl /usr/lib/libX11.so
|
||||||
@ -0,0 +1,4 @@
|
|||||||
|
CMAKE_PROGRESS_1 =
|
||||||
|
CMAKE_PROGRESS_2 = 1
|
||||||
|
CMAKE_PROGRESS_3 = 2
|
||||||
|
|
||||||
@ -0,0 +1,21 @@
|
|||||||
|
|
||||||
|
# Consider dependencies only in project.
|
||||||
|
set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF)
|
||||||
|
|
||||||
|
# The set of languages for which implicit dependencies are needed:
|
||||||
|
set(CMAKE_DEPENDS_LANGUAGES
|
||||||
|
)
|
||||||
|
|
||||||
|
# The set of dependency files which are needed:
|
||||||
|
set(CMAKE_DEPENDS_DEPENDENCY_FILES
|
||||||
|
"/home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/deps/glad_gl.c" "examples/CMakeFiles/gears.dir/__/deps/glad_gl.c.o" "gcc" "examples/CMakeFiles/gears.dir/__/deps/glad_gl.c.o.d"
|
||||||
|
"/home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/examples/gears.c" "examples/CMakeFiles/gears.dir/gears.c.o" "gcc" "examples/CMakeFiles/gears.dir/gears.c.o.d"
|
||||||
|
)
|
||||||
|
|
||||||
|
# Targets to which this target links.
|
||||||
|
set(CMAKE_TARGET_LINKED_INFO_FILES
|
||||||
|
"/home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/build/src/CMakeFiles/glfw.dir/DependInfo.cmake"
|
||||||
|
)
|
||||||
|
|
||||||
|
# Fortran module output directory.
|
||||||
|
set(CMAKE_Fortran_TARGET_MODULE_DIR "")
|
||||||
Binary file not shown.
@ -0,0 +1,40 @@
|
|||||||
|
examples/CMakeFiles/gears.dir/__/deps/glad_gl.c.o: \
|
||||||
|
/home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/deps/glad_gl.c \
|
||||||
|
/usr/include/stdc-predef.h /usr/include/stdio.h \
|
||||||
|
/usr/include/bits/libc-header-start.h /usr/include/features.h \
|
||||||
|
/usr/include/features-time64.h /usr/include/bits/wordsize.h \
|
||||||
|
/usr/include/bits/timesize.h /usr/include/sys/cdefs.h \
|
||||||
|
/usr/include/bits/long-double.h /usr/include/gnu/stubs.h \
|
||||||
|
/usr/include/gnu/stubs-64.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/12.2.0/include/stddef.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/12.2.0/include/stdarg.h \
|
||||||
|
/usr/include/bits/types.h /usr/include/bits/typesizes.h \
|
||||||
|
/usr/include/bits/time64.h /usr/include/bits/types/__fpos_t.h \
|
||||||
|
/usr/include/bits/types/__mbstate_t.h \
|
||||||
|
/usr/include/bits/types/__fpos64_t.h /usr/include/bits/types/__FILE.h \
|
||||||
|
/usr/include/bits/types/FILE.h /usr/include/bits/types/struct_FILE.h \
|
||||||
|
/usr/include/bits/stdio_lim.h /usr/include/bits/floatn.h \
|
||||||
|
/usr/include/bits/floatn-common.h /usr/include/stdlib.h \
|
||||||
|
/usr/include/bits/waitflags.h /usr/include/bits/waitstatus.h \
|
||||||
|
/usr/include/sys/types.h /usr/include/bits/types/clock_t.h \
|
||||||
|
/usr/include/bits/types/clockid_t.h /usr/include/bits/types/time_t.h \
|
||||||
|
/usr/include/bits/types/timer_t.h /usr/include/bits/stdint-intn.h \
|
||||||
|
/usr/include/endian.h /usr/include/bits/endian.h \
|
||||||
|
/usr/include/bits/endianness.h /usr/include/bits/byteswap.h \
|
||||||
|
/usr/include/bits/uintn-identity.h /usr/include/sys/select.h \
|
||||||
|
/usr/include/bits/select.h /usr/include/bits/types/sigset_t.h \
|
||||||
|
/usr/include/bits/types/__sigset_t.h \
|
||||||
|
/usr/include/bits/types/struct_timeval.h \
|
||||||
|
/usr/include/bits/types/struct_timespec.h \
|
||||||
|
/usr/include/bits/pthreadtypes.h /usr/include/bits/thread-shared-types.h \
|
||||||
|
/usr/include/bits/pthreadtypes-arch.h \
|
||||||
|
/usr/include/bits/atomic_wide_counter.h /usr/include/bits/struct_mutex.h \
|
||||||
|
/usr/include/bits/struct_rwlock.h /usr/include/alloca.h \
|
||||||
|
/usr/include/bits/stdlib-float.h /usr/include/string.h \
|
||||||
|
/usr/include/bits/types/locale_t.h /usr/include/bits/types/__locale_t.h \
|
||||||
|
/usr/include/strings.h \
|
||||||
|
/home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/deps/glad/gl.h \
|
||||||
|
/home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/deps/glad/khrplatform.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/12.2.0/include/stdint.h \
|
||||||
|
/usr/include/stdint.h /usr/include/bits/wchar.h \
|
||||||
|
/usr/include/bits/stdint-uintn.h
|
||||||
@ -0,0 +1,131 @@
|
|||||||
|
# CMAKE generated file: DO NOT EDIT!
|
||||||
|
# Generated by "Unix Makefiles" Generator, CMake Version 3.24
|
||||||
|
|
||||||
|
# Delete rule output on recipe failure.
|
||||||
|
.DELETE_ON_ERROR:
|
||||||
|
|
||||||
|
#=============================================================================
|
||||||
|
# Special targets provided by cmake.
|
||||||
|
|
||||||
|
# Disable implicit rules so canonical targets will work.
|
||||||
|
.SUFFIXES:
|
||||||
|
|
||||||
|
# Disable VCS-based implicit rules.
|
||||||
|
% : %,v
|
||||||
|
|
||||||
|
# Disable VCS-based implicit rules.
|
||||||
|
% : RCS/%
|
||||||
|
|
||||||
|
# Disable VCS-based implicit rules.
|
||||||
|
% : RCS/%,v
|
||||||
|
|
||||||
|
# Disable VCS-based implicit rules.
|
||||||
|
% : SCCS/s.%
|
||||||
|
|
||||||
|
# Disable VCS-based implicit rules.
|
||||||
|
% : s.%
|
||||||
|
|
||||||
|
.SUFFIXES: .hpux_make_needs_suffix_list
|
||||||
|
|
||||||
|
# Command-line flag to silence nested $(MAKE).
|
||||||
|
$(VERBOSE)MAKESILENT = -s
|
||||||
|
|
||||||
|
#Suppress display of executed commands.
|
||||||
|
$(VERBOSE).SILENT:
|
||||||
|
|
||||||
|
# A target that is always out of date.
|
||||||
|
cmake_force:
|
||||||
|
.PHONY : cmake_force
|
||||||
|
|
||||||
|
#=============================================================================
|
||||||
|
# Set environment variables for the build.
|
||||||
|
|
||||||
|
# The shell in which to execute make rules.
|
||||||
|
SHELL = /bin/sh
|
||||||
|
|
||||||
|
# The CMake executable.
|
||||||
|
CMAKE_COMMAND = /usr/bin/cmake
|
||||||
|
|
||||||
|
# The command to remove a file.
|
||||||
|
RM = /usr/bin/cmake -E rm -f
|
||||||
|
|
||||||
|
# Escaping for special characters.
|
||||||
|
EQUALS = =
|
||||||
|
|
||||||
|
# The top-level source directory on which CMake was run.
|
||||||
|
CMAKE_SOURCE_DIR = /home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8
|
||||||
|
|
||||||
|
# The top-level build directory on which CMake was run.
|
||||||
|
CMAKE_BINARY_DIR = /home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/build
|
||||||
|
|
||||||
|
# Include any dependencies generated for this target.
|
||||||
|
include examples/CMakeFiles/gears.dir/depend.make
|
||||||
|
# Include any dependencies generated by the compiler for this target.
|
||||||
|
include examples/CMakeFiles/gears.dir/compiler_depend.make
|
||||||
|
|
||||||
|
# Include the progress variables for this target.
|
||||||
|
include examples/CMakeFiles/gears.dir/progress.make
|
||||||
|
|
||||||
|
# Include the compile flags for this target's objects.
|
||||||
|
include examples/CMakeFiles/gears.dir/flags.make
|
||||||
|
|
||||||
|
examples/CMakeFiles/gears.dir/gears.c.o: examples/CMakeFiles/gears.dir/flags.make
|
||||||
|
examples/CMakeFiles/gears.dir/gears.c.o: /home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/examples/gears.c
|
||||||
|
examples/CMakeFiles/gears.dir/gears.c.o: examples/CMakeFiles/gears.dir/compiler_depend.ts
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building C object examples/CMakeFiles/gears.dir/gears.c.o"
|
||||||
|
cd /home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/build/examples && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT examples/CMakeFiles/gears.dir/gears.c.o -MF CMakeFiles/gears.dir/gears.c.o.d -o CMakeFiles/gears.dir/gears.c.o -c /home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/examples/gears.c
|
||||||
|
|
||||||
|
examples/CMakeFiles/gears.dir/gears.c.i: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/gears.dir/gears.c.i"
|
||||||
|
cd /home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/build/examples && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/examples/gears.c > CMakeFiles/gears.dir/gears.c.i
|
||||||
|
|
||||||
|
examples/CMakeFiles/gears.dir/gears.c.s: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/gears.dir/gears.c.s"
|
||||||
|
cd /home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/build/examples && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/examples/gears.c -o CMakeFiles/gears.dir/gears.c.s
|
||||||
|
|
||||||
|
examples/CMakeFiles/gears.dir/__/deps/glad_gl.c.o: examples/CMakeFiles/gears.dir/flags.make
|
||||||
|
examples/CMakeFiles/gears.dir/__/deps/glad_gl.c.o: /home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/deps/glad_gl.c
|
||||||
|
examples/CMakeFiles/gears.dir/__/deps/glad_gl.c.o: examples/CMakeFiles/gears.dir/compiler_depend.ts
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building C object examples/CMakeFiles/gears.dir/__/deps/glad_gl.c.o"
|
||||||
|
cd /home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/build/examples && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT examples/CMakeFiles/gears.dir/__/deps/glad_gl.c.o -MF CMakeFiles/gears.dir/__/deps/glad_gl.c.o.d -o CMakeFiles/gears.dir/__/deps/glad_gl.c.o -c /home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/deps/glad_gl.c
|
||||||
|
|
||||||
|
examples/CMakeFiles/gears.dir/__/deps/glad_gl.c.i: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/gears.dir/__/deps/glad_gl.c.i"
|
||||||
|
cd /home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/build/examples && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/deps/glad_gl.c > CMakeFiles/gears.dir/__/deps/glad_gl.c.i
|
||||||
|
|
||||||
|
examples/CMakeFiles/gears.dir/__/deps/glad_gl.c.s: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/gears.dir/__/deps/glad_gl.c.s"
|
||||||
|
cd /home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/build/examples && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/deps/glad_gl.c -o CMakeFiles/gears.dir/__/deps/glad_gl.c.s
|
||||||
|
|
||||||
|
# Object files for target gears
|
||||||
|
gears_OBJECTS = \
|
||||||
|
"CMakeFiles/gears.dir/gears.c.o" \
|
||||||
|
"CMakeFiles/gears.dir/__/deps/glad_gl.c.o"
|
||||||
|
|
||||||
|
# External object files for target gears
|
||||||
|
gears_EXTERNAL_OBJECTS =
|
||||||
|
|
||||||
|
examples/gears: examples/CMakeFiles/gears.dir/gears.c.o
|
||||||
|
examples/gears: examples/CMakeFiles/gears.dir/__/deps/glad_gl.c.o
|
||||||
|
examples/gears: examples/CMakeFiles/gears.dir/build.make
|
||||||
|
examples/gears: src/libglfw3.a
|
||||||
|
examples/gears: /usr/lib/libm.so
|
||||||
|
examples/gears: /usr/lib/librt.a
|
||||||
|
examples/gears: /usr/lib/libm.so
|
||||||
|
examples/gears: /usr/lib/libX11.so
|
||||||
|
examples/gears: examples/CMakeFiles/gears.dir/link.txt
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --bold --progress-dir=/home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Linking C executable gears"
|
||||||
|
cd /home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/build/examples && $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/gears.dir/link.txt --verbose=$(VERBOSE)
|
||||||
|
|
||||||
|
# Rule to build all files generated by this target.
|
||||||
|
examples/CMakeFiles/gears.dir/build: examples/gears
|
||||||
|
.PHONY : examples/CMakeFiles/gears.dir/build
|
||||||
|
|
||||||
|
examples/CMakeFiles/gears.dir/clean:
|
||||||
|
cd /home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/build/examples && $(CMAKE_COMMAND) -P CMakeFiles/gears.dir/cmake_clean.cmake
|
||||||
|
.PHONY : examples/CMakeFiles/gears.dir/clean
|
||||||
|
|
||||||
|
examples/CMakeFiles/gears.dir/depend:
|
||||||
|
cd /home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8 /home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/examples /home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/build /home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/build/examples /home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/build/examples/CMakeFiles/gears.dir/DependInfo.cmake --color=$(COLOR)
|
||||||
|
.PHONY : examples/CMakeFiles/gears.dir/depend
|
||||||
|
|
||||||
@ -0,0 +1,13 @@
|
|||||||
|
file(REMOVE_RECURSE
|
||||||
|
"CMakeFiles/gears.dir/__/deps/glad_gl.c.o"
|
||||||
|
"CMakeFiles/gears.dir/__/deps/glad_gl.c.o.d"
|
||||||
|
"CMakeFiles/gears.dir/gears.c.o"
|
||||||
|
"CMakeFiles/gears.dir/gears.c.o.d"
|
||||||
|
"gears"
|
||||||
|
"gears.pdb"
|
||||||
|
)
|
||||||
|
|
||||||
|
# Per-language clean rules from dependency scanning.
|
||||||
|
foreach(lang C)
|
||||||
|
include(CMakeFiles/gears.dir/cmake_clean_${lang}.cmake OPTIONAL)
|
||||||
|
endforeach()
|
||||||
@ -0,0 +1,2 @@
|
|||||||
|
# Empty compiler generated dependencies file for gears.
|
||||||
|
# This may be replaced when dependencies are built.
|
||||||
@ -0,0 +1,2 @@
|
|||||||
|
# CMAKE generated file: DO NOT EDIT!
|
||||||
|
# Timestamp file for compiler generated dependencies management for gears.
|
||||||
@ -0,0 +1,2 @@
|
|||||||
|
# Empty dependencies file for gears.
|
||||||
|
# This may be replaced when dependencies are built.
|
||||||
@ -0,0 +1,10 @@
|
|||||||
|
# CMAKE generated file: DO NOT EDIT!
|
||||||
|
# Generated by "Unix Makefiles" Generator, CMake Version 3.24
|
||||||
|
|
||||||
|
# compile C with /usr/bin/cc
|
||||||
|
C_DEFINES =
|
||||||
|
|
||||||
|
C_INCLUDES = -I/home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/deps -I/home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/include
|
||||||
|
|
||||||
|
C_FLAGS = -std=gnu99
|
||||||
|
|
||||||
Binary file not shown.
@ -0,0 +1,45 @@
|
|||||||
|
examples/CMakeFiles/gears.dir/gears.c.o: \
|
||||||
|
/home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/examples/gears.c \
|
||||||
|
/usr/include/stdc-predef.h /usr/include/math.h \
|
||||||
|
/usr/include/bits/libc-header-start.h /usr/include/features.h \
|
||||||
|
/usr/include/features-time64.h /usr/include/bits/wordsize.h \
|
||||||
|
/usr/include/bits/timesize.h /usr/include/sys/cdefs.h \
|
||||||
|
/usr/include/bits/long-double.h /usr/include/gnu/stubs.h \
|
||||||
|
/usr/include/gnu/stubs-64.h /usr/include/bits/types.h \
|
||||||
|
/usr/include/bits/typesizes.h /usr/include/bits/time64.h \
|
||||||
|
/usr/include/bits/math-vector.h /usr/include/bits/libm-simd-decl-stubs.h \
|
||||||
|
/usr/include/bits/floatn.h /usr/include/bits/floatn-common.h \
|
||||||
|
/usr/include/bits/flt-eval-method.h /usr/include/bits/fp-logb.h \
|
||||||
|
/usr/include/bits/fp-fast.h \
|
||||||
|
/usr/include/bits/mathcalls-helper-functions.h \
|
||||||
|
/usr/include/bits/mathcalls.h /usr/include/stdlib.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/12.2.0/include/stddef.h \
|
||||||
|
/usr/include/bits/waitflags.h /usr/include/bits/waitstatus.h \
|
||||||
|
/usr/include/sys/types.h /usr/include/bits/types/clock_t.h \
|
||||||
|
/usr/include/bits/types/clockid_t.h /usr/include/bits/types/time_t.h \
|
||||||
|
/usr/include/bits/types/timer_t.h /usr/include/bits/stdint-intn.h \
|
||||||
|
/usr/include/endian.h /usr/include/bits/endian.h \
|
||||||
|
/usr/include/bits/endianness.h /usr/include/bits/byteswap.h \
|
||||||
|
/usr/include/bits/uintn-identity.h /usr/include/sys/select.h \
|
||||||
|
/usr/include/bits/select.h /usr/include/bits/types/sigset_t.h \
|
||||||
|
/usr/include/bits/types/__sigset_t.h \
|
||||||
|
/usr/include/bits/types/struct_timeval.h \
|
||||||
|
/usr/include/bits/types/struct_timespec.h \
|
||||||
|
/usr/include/bits/pthreadtypes.h /usr/include/bits/thread-shared-types.h \
|
||||||
|
/usr/include/bits/pthreadtypes-arch.h \
|
||||||
|
/usr/include/bits/atomic_wide_counter.h /usr/include/bits/struct_mutex.h \
|
||||||
|
/usr/include/bits/struct_rwlock.h /usr/include/alloca.h \
|
||||||
|
/usr/include/bits/stdlib-float.h /usr/include/stdio.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/12.2.0/include/stdarg.h \
|
||||||
|
/usr/include/bits/types/__fpos_t.h /usr/include/bits/types/__mbstate_t.h \
|
||||||
|
/usr/include/bits/types/__fpos64_t.h /usr/include/bits/types/__FILE.h \
|
||||||
|
/usr/include/bits/types/FILE.h /usr/include/bits/types/struct_FILE.h \
|
||||||
|
/usr/include/bits/stdio_lim.h /usr/include/string.h \
|
||||||
|
/usr/include/bits/types/locale_t.h /usr/include/bits/types/__locale_t.h \
|
||||||
|
/usr/include/strings.h \
|
||||||
|
/home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/deps/glad/gl.h \
|
||||||
|
/home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/deps/glad/khrplatform.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/12.2.0/include/stdint.h \
|
||||||
|
/usr/include/stdint.h /usr/include/bits/wchar.h \
|
||||||
|
/usr/include/bits/stdint-uintn.h \
|
||||||
|
/home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/include/GLFW/glfw3.h
|
||||||
@ -0,0 +1 @@
|
|||||||
|
/usr/bin/cc CMakeFiles/gears.dir/gears.c.o CMakeFiles/gears.dir/__/deps/glad_gl.c.o -o gears ../src/libglfw3.a -lm /usr/lib/librt.a -lm -ldl /usr/lib/libX11.so
|
||||||
@ -0,0 +1,4 @@
|
|||||||
|
CMAKE_PROGRESS_1 = 18
|
||||||
|
CMAKE_PROGRESS_2 = 19
|
||||||
|
CMAKE_PROGRESS_3 = 20
|
||||||
|
|
||||||
@ -0,0 +1,21 @@
|
|||||||
|
|
||||||
|
# Consider dependencies only in project.
|
||||||
|
set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF)
|
||||||
|
|
||||||
|
# The set of languages for which implicit dependencies are needed:
|
||||||
|
set(CMAKE_DEPENDS_LANGUAGES
|
||||||
|
)
|
||||||
|
|
||||||
|
# The set of dependency files which are needed:
|
||||||
|
set(CMAKE_DEPENDS_DEPENDENCY_FILES
|
||||||
|
"/home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/deps/glad_gl.c" "examples/CMakeFiles/heightmap.dir/__/deps/glad_gl.c.o" "gcc" "examples/CMakeFiles/heightmap.dir/__/deps/glad_gl.c.o.d"
|
||||||
|
"/home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/examples/heightmap.c" "examples/CMakeFiles/heightmap.dir/heightmap.c.o" "gcc" "examples/CMakeFiles/heightmap.dir/heightmap.c.o.d"
|
||||||
|
)
|
||||||
|
|
||||||
|
# Targets to which this target links.
|
||||||
|
set(CMAKE_TARGET_LINKED_INFO_FILES
|
||||||
|
"/home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/build/src/CMakeFiles/glfw.dir/DependInfo.cmake"
|
||||||
|
)
|
||||||
|
|
||||||
|
# Fortran module output directory.
|
||||||
|
set(CMAKE_Fortran_TARGET_MODULE_DIR "")
|
||||||
Binary file not shown.
@ -0,0 +1,40 @@
|
|||||||
|
examples/CMakeFiles/heightmap.dir/__/deps/glad_gl.c.o: \
|
||||||
|
/home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/deps/glad_gl.c \
|
||||||
|
/usr/include/stdc-predef.h /usr/include/stdio.h \
|
||||||
|
/usr/include/bits/libc-header-start.h /usr/include/features.h \
|
||||||
|
/usr/include/features-time64.h /usr/include/bits/wordsize.h \
|
||||||
|
/usr/include/bits/timesize.h /usr/include/sys/cdefs.h \
|
||||||
|
/usr/include/bits/long-double.h /usr/include/gnu/stubs.h \
|
||||||
|
/usr/include/gnu/stubs-64.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/12.2.0/include/stddef.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/12.2.0/include/stdarg.h \
|
||||||
|
/usr/include/bits/types.h /usr/include/bits/typesizes.h \
|
||||||
|
/usr/include/bits/time64.h /usr/include/bits/types/__fpos_t.h \
|
||||||
|
/usr/include/bits/types/__mbstate_t.h \
|
||||||
|
/usr/include/bits/types/__fpos64_t.h /usr/include/bits/types/__FILE.h \
|
||||||
|
/usr/include/bits/types/FILE.h /usr/include/bits/types/struct_FILE.h \
|
||||||
|
/usr/include/bits/stdio_lim.h /usr/include/bits/floatn.h \
|
||||||
|
/usr/include/bits/floatn-common.h /usr/include/stdlib.h \
|
||||||
|
/usr/include/bits/waitflags.h /usr/include/bits/waitstatus.h \
|
||||||
|
/usr/include/sys/types.h /usr/include/bits/types/clock_t.h \
|
||||||
|
/usr/include/bits/types/clockid_t.h /usr/include/bits/types/time_t.h \
|
||||||
|
/usr/include/bits/types/timer_t.h /usr/include/bits/stdint-intn.h \
|
||||||
|
/usr/include/endian.h /usr/include/bits/endian.h \
|
||||||
|
/usr/include/bits/endianness.h /usr/include/bits/byteswap.h \
|
||||||
|
/usr/include/bits/uintn-identity.h /usr/include/sys/select.h \
|
||||||
|
/usr/include/bits/select.h /usr/include/bits/types/sigset_t.h \
|
||||||
|
/usr/include/bits/types/__sigset_t.h \
|
||||||
|
/usr/include/bits/types/struct_timeval.h \
|
||||||
|
/usr/include/bits/types/struct_timespec.h \
|
||||||
|
/usr/include/bits/pthreadtypes.h /usr/include/bits/thread-shared-types.h \
|
||||||
|
/usr/include/bits/pthreadtypes-arch.h \
|
||||||
|
/usr/include/bits/atomic_wide_counter.h /usr/include/bits/struct_mutex.h \
|
||||||
|
/usr/include/bits/struct_rwlock.h /usr/include/alloca.h \
|
||||||
|
/usr/include/bits/stdlib-float.h /usr/include/string.h \
|
||||||
|
/usr/include/bits/types/locale_t.h /usr/include/bits/types/__locale_t.h \
|
||||||
|
/usr/include/strings.h \
|
||||||
|
/home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/deps/glad/gl.h \
|
||||||
|
/home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/deps/glad/khrplatform.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/12.2.0/include/stdint.h \
|
||||||
|
/usr/include/stdint.h /usr/include/bits/wchar.h \
|
||||||
|
/usr/include/bits/stdint-uintn.h
|
||||||
@ -0,0 +1,131 @@
|
|||||||
|
# CMAKE generated file: DO NOT EDIT!
|
||||||
|
# Generated by "Unix Makefiles" Generator, CMake Version 3.24
|
||||||
|
|
||||||
|
# Delete rule output on recipe failure.
|
||||||
|
.DELETE_ON_ERROR:
|
||||||
|
|
||||||
|
#=============================================================================
|
||||||
|
# Special targets provided by cmake.
|
||||||
|
|
||||||
|
# Disable implicit rules so canonical targets will work.
|
||||||
|
.SUFFIXES:
|
||||||
|
|
||||||
|
# Disable VCS-based implicit rules.
|
||||||
|
% : %,v
|
||||||
|
|
||||||
|
# Disable VCS-based implicit rules.
|
||||||
|
% : RCS/%
|
||||||
|
|
||||||
|
# Disable VCS-based implicit rules.
|
||||||
|
% : RCS/%,v
|
||||||
|
|
||||||
|
# Disable VCS-based implicit rules.
|
||||||
|
% : SCCS/s.%
|
||||||
|
|
||||||
|
# Disable VCS-based implicit rules.
|
||||||
|
% : s.%
|
||||||
|
|
||||||
|
.SUFFIXES: .hpux_make_needs_suffix_list
|
||||||
|
|
||||||
|
# Command-line flag to silence nested $(MAKE).
|
||||||
|
$(VERBOSE)MAKESILENT = -s
|
||||||
|
|
||||||
|
#Suppress display of executed commands.
|
||||||
|
$(VERBOSE).SILENT:
|
||||||
|
|
||||||
|
# A target that is always out of date.
|
||||||
|
cmake_force:
|
||||||
|
.PHONY : cmake_force
|
||||||
|
|
||||||
|
#=============================================================================
|
||||||
|
# Set environment variables for the build.
|
||||||
|
|
||||||
|
# The shell in which to execute make rules.
|
||||||
|
SHELL = /bin/sh
|
||||||
|
|
||||||
|
# The CMake executable.
|
||||||
|
CMAKE_COMMAND = /usr/bin/cmake
|
||||||
|
|
||||||
|
# The command to remove a file.
|
||||||
|
RM = /usr/bin/cmake -E rm -f
|
||||||
|
|
||||||
|
# Escaping for special characters.
|
||||||
|
EQUALS = =
|
||||||
|
|
||||||
|
# The top-level source directory on which CMake was run.
|
||||||
|
CMAKE_SOURCE_DIR = /home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8
|
||||||
|
|
||||||
|
# The top-level build directory on which CMake was run.
|
||||||
|
CMAKE_BINARY_DIR = /home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/build
|
||||||
|
|
||||||
|
# Include any dependencies generated for this target.
|
||||||
|
include examples/CMakeFiles/heightmap.dir/depend.make
|
||||||
|
# Include any dependencies generated by the compiler for this target.
|
||||||
|
include examples/CMakeFiles/heightmap.dir/compiler_depend.make
|
||||||
|
|
||||||
|
# Include the progress variables for this target.
|
||||||
|
include examples/CMakeFiles/heightmap.dir/progress.make
|
||||||
|
|
||||||
|
# Include the compile flags for this target's objects.
|
||||||
|
include examples/CMakeFiles/heightmap.dir/flags.make
|
||||||
|
|
||||||
|
examples/CMakeFiles/heightmap.dir/heightmap.c.o: examples/CMakeFiles/heightmap.dir/flags.make
|
||||||
|
examples/CMakeFiles/heightmap.dir/heightmap.c.o: /home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/examples/heightmap.c
|
||||||
|
examples/CMakeFiles/heightmap.dir/heightmap.c.o: examples/CMakeFiles/heightmap.dir/compiler_depend.ts
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building C object examples/CMakeFiles/heightmap.dir/heightmap.c.o"
|
||||||
|
cd /home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/build/examples && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT examples/CMakeFiles/heightmap.dir/heightmap.c.o -MF CMakeFiles/heightmap.dir/heightmap.c.o.d -o CMakeFiles/heightmap.dir/heightmap.c.o -c /home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/examples/heightmap.c
|
||||||
|
|
||||||
|
examples/CMakeFiles/heightmap.dir/heightmap.c.i: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/heightmap.dir/heightmap.c.i"
|
||||||
|
cd /home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/build/examples && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/examples/heightmap.c > CMakeFiles/heightmap.dir/heightmap.c.i
|
||||||
|
|
||||||
|
examples/CMakeFiles/heightmap.dir/heightmap.c.s: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/heightmap.dir/heightmap.c.s"
|
||||||
|
cd /home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/build/examples && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/examples/heightmap.c -o CMakeFiles/heightmap.dir/heightmap.c.s
|
||||||
|
|
||||||
|
examples/CMakeFiles/heightmap.dir/__/deps/glad_gl.c.o: examples/CMakeFiles/heightmap.dir/flags.make
|
||||||
|
examples/CMakeFiles/heightmap.dir/__/deps/glad_gl.c.o: /home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/deps/glad_gl.c
|
||||||
|
examples/CMakeFiles/heightmap.dir/__/deps/glad_gl.c.o: examples/CMakeFiles/heightmap.dir/compiler_depend.ts
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building C object examples/CMakeFiles/heightmap.dir/__/deps/glad_gl.c.o"
|
||||||
|
cd /home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/build/examples && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT examples/CMakeFiles/heightmap.dir/__/deps/glad_gl.c.o -MF CMakeFiles/heightmap.dir/__/deps/glad_gl.c.o.d -o CMakeFiles/heightmap.dir/__/deps/glad_gl.c.o -c /home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/deps/glad_gl.c
|
||||||
|
|
||||||
|
examples/CMakeFiles/heightmap.dir/__/deps/glad_gl.c.i: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/heightmap.dir/__/deps/glad_gl.c.i"
|
||||||
|
cd /home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/build/examples && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/deps/glad_gl.c > CMakeFiles/heightmap.dir/__/deps/glad_gl.c.i
|
||||||
|
|
||||||
|
examples/CMakeFiles/heightmap.dir/__/deps/glad_gl.c.s: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/heightmap.dir/__/deps/glad_gl.c.s"
|
||||||
|
cd /home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/build/examples && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/deps/glad_gl.c -o CMakeFiles/heightmap.dir/__/deps/glad_gl.c.s
|
||||||
|
|
||||||
|
# Object files for target heightmap
|
||||||
|
heightmap_OBJECTS = \
|
||||||
|
"CMakeFiles/heightmap.dir/heightmap.c.o" \
|
||||||
|
"CMakeFiles/heightmap.dir/__/deps/glad_gl.c.o"
|
||||||
|
|
||||||
|
# External object files for target heightmap
|
||||||
|
heightmap_EXTERNAL_OBJECTS =
|
||||||
|
|
||||||
|
examples/heightmap: examples/CMakeFiles/heightmap.dir/heightmap.c.o
|
||||||
|
examples/heightmap: examples/CMakeFiles/heightmap.dir/__/deps/glad_gl.c.o
|
||||||
|
examples/heightmap: examples/CMakeFiles/heightmap.dir/build.make
|
||||||
|
examples/heightmap: src/libglfw3.a
|
||||||
|
examples/heightmap: /usr/lib/libm.so
|
||||||
|
examples/heightmap: /usr/lib/librt.a
|
||||||
|
examples/heightmap: /usr/lib/libm.so
|
||||||
|
examples/heightmap: /usr/lib/libX11.so
|
||||||
|
examples/heightmap: examples/CMakeFiles/heightmap.dir/link.txt
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --bold --progress-dir=/home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Linking C executable heightmap"
|
||||||
|
cd /home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/build/examples && $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/heightmap.dir/link.txt --verbose=$(VERBOSE)
|
||||||
|
|
||||||
|
# Rule to build all files generated by this target.
|
||||||
|
examples/CMakeFiles/heightmap.dir/build: examples/heightmap
|
||||||
|
.PHONY : examples/CMakeFiles/heightmap.dir/build
|
||||||
|
|
||||||
|
examples/CMakeFiles/heightmap.dir/clean:
|
||||||
|
cd /home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/build/examples && $(CMAKE_COMMAND) -P CMakeFiles/heightmap.dir/cmake_clean.cmake
|
||||||
|
.PHONY : examples/CMakeFiles/heightmap.dir/clean
|
||||||
|
|
||||||
|
examples/CMakeFiles/heightmap.dir/depend:
|
||||||
|
cd /home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8 /home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/examples /home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/build /home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/build/examples /home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/build/examples/CMakeFiles/heightmap.dir/DependInfo.cmake --color=$(COLOR)
|
||||||
|
.PHONY : examples/CMakeFiles/heightmap.dir/depend
|
||||||
|
|
||||||
@ -0,0 +1,13 @@
|
|||||||
|
file(REMOVE_RECURSE
|
||||||
|
"CMakeFiles/heightmap.dir/__/deps/glad_gl.c.o"
|
||||||
|
"CMakeFiles/heightmap.dir/__/deps/glad_gl.c.o.d"
|
||||||
|
"CMakeFiles/heightmap.dir/heightmap.c.o"
|
||||||
|
"CMakeFiles/heightmap.dir/heightmap.c.o.d"
|
||||||
|
"heightmap"
|
||||||
|
"heightmap.pdb"
|
||||||
|
)
|
||||||
|
|
||||||
|
# Per-language clean rules from dependency scanning.
|
||||||
|
foreach(lang C)
|
||||||
|
include(CMakeFiles/heightmap.dir/cmake_clean_${lang}.cmake OPTIONAL)
|
||||||
|
endforeach()
|
||||||
@ -0,0 +1,2 @@
|
|||||||
|
# Empty compiler generated dependencies file for heightmap.
|
||||||
|
# This may be replaced when dependencies are built.
|
||||||
@ -0,0 +1,2 @@
|
|||||||
|
# CMAKE generated file: DO NOT EDIT!
|
||||||
|
# Timestamp file for compiler generated dependencies management for heightmap.
|
||||||
@ -0,0 +1,2 @@
|
|||||||
|
# Empty dependencies file for heightmap.
|
||||||
|
# This may be replaced when dependencies are built.
|
||||||
@ -0,0 +1,10 @@
|
|||||||
|
# CMAKE generated file: DO NOT EDIT!
|
||||||
|
# Generated by "Unix Makefiles" Generator, CMake Version 3.24
|
||||||
|
|
||||||
|
# compile C with /usr/bin/cc
|
||||||
|
C_DEFINES =
|
||||||
|
|
||||||
|
C_INCLUDES = -I/home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/deps -I/home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/include
|
||||||
|
|
||||||
|
C_FLAGS = -std=gnu99
|
||||||
|
|
||||||
Binary file not shown.
@ -0,0 +1,43 @@
|
|||||||
|
examples/CMakeFiles/heightmap.dir/heightmap.c.o: \
|
||||||
|
/home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/examples/heightmap.c \
|
||||||
|
/usr/include/stdc-predef.h /usr/include/stdlib.h \
|
||||||
|
/usr/include/bits/libc-header-start.h /usr/include/features.h \
|
||||||
|
/usr/include/features-time64.h /usr/include/bits/wordsize.h \
|
||||||
|
/usr/include/bits/timesize.h /usr/include/sys/cdefs.h \
|
||||||
|
/usr/include/bits/long-double.h /usr/include/gnu/stubs.h \
|
||||||
|
/usr/include/gnu/stubs-64.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/12.2.0/include/stddef.h \
|
||||||
|
/usr/include/bits/waitflags.h /usr/include/bits/waitstatus.h \
|
||||||
|
/usr/include/bits/floatn.h /usr/include/bits/floatn-common.h \
|
||||||
|
/usr/include/sys/types.h /usr/include/bits/types.h \
|
||||||
|
/usr/include/bits/typesizes.h /usr/include/bits/time64.h \
|
||||||
|
/usr/include/bits/types/clock_t.h /usr/include/bits/types/clockid_t.h \
|
||||||
|
/usr/include/bits/types/time_t.h /usr/include/bits/types/timer_t.h \
|
||||||
|
/usr/include/bits/stdint-intn.h /usr/include/endian.h \
|
||||||
|
/usr/include/bits/endian.h /usr/include/bits/endianness.h \
|
||||||
|
/usr/include/bits/byteswap.h /usr/include/bits/uintn-identity.h \
|
||||||
|
/usr/include/sys/select.h /usr/include/bits/select.h \
|
||||||
|
/usr/include/bits/types/sigset_t.h /usr/include/bits/types/__sigset_t.h \
|
||||||
|
/usr/include/bits/types/struct_timeval.h \
|
||||||
|
/usr/include/bits/types/struct_timespec.h \
|
||||||
|
/usr/include/bits/pthreadtypes.h /usr/include/bits/thread-shared-types.h \
|
||||||
|
/usr/include/bits/pthreadtypes-arch.h \
|
||||||
|
/usr/include/bits/atomic_wide_counter.h /usr/include/bits/struct_mutex.h \
|
||||||
|
/usr/include/bits/struct_rwlock.h /usr/include/alloca.h \
|
||||||
|
/usr/include/bits/stdlib-float.h /usr/include/stdio.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/12.2.0/include/stdarg.h \
|
||||||
|
/usr/include/bits/types/__fpos_t.h /usr/include/bits/types/__mbstate_t.h \
|
||||||
|
/usr/include/bits/types/__fpos64_t.h /usr/include/bits/types/__FILE.h \
|
||||||
|
/usr/include/bits/types/FILE.h /usr/include/bits/types/struct_FILE.h \
|
||||||
|
/usr/include/bits/stdio_lim.h /usr/include/math.h \
|
||||||
|
/usr/include/bits/math-vector.h /usr/include/bits/libm-simd-decl-stubs.h \
|
||||||
|
/usr/include/bits/flt-eval-method.h /usr/include/bits/fp-logb.h \
|
||||||
|
/usr/include/bits/fp-fast.h \
|
||||||
|
/usr/include/bits/mathcalls-helper-functions.h \
|
||||||
|
/usr/include/bits/mathcalls.h /usr/include/assert.h \
|
||||||
|
/home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/deps/glad/gl.h \
|
||||||
|
/home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/deps/glad/khrplatform.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/12.2.0/include/stdint.h \
|
||||||
|
/usr/include/stdint.h /usr/include/bits/wchar.h \
|
||||||
|
/usr/include/bits/stdint-uintn.h \
|
||||||
|
/home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/include/GLFW/glfw3.h
|
||||||
@ -0,0 +1 @@
|
|||||||
|
/usr/bin/cc CMakeFiles/heightmap.dir/heightmap.c.o CMakeFiles/heightmap.dir/__/deps/glad_gl.c.o -o heightmap ../src/libglfw3.a -lm /usr/lib/librt.a -lm -ldl /usr/lib/libX11.so
|
||||||
@ -0,0 +1,4 @@
|
|||||||
|
CMAKE_PROGRESS_1 = 39
|
||||||
|
CMAKE_PROGRESS_2 = 40
|
||||||
|
CMAKE_PROGRESS_3 = 41
|
||||||
|
|
||||||
@ -0,0 +1,21 @@
|
|||||||
|
|
||||||
|
# Consider dependencies only in project.
|
||||||
|
set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF)
|
||||||
|
|
||||||
|
# The set of languages for which implicit dependencies are needed:
|
||||||
|
set(CMAKE_DEPENDS_LANGUAGES
|
||||||
|
)
|
||||||
|
|
||||||
|
# The set of dependency files which are needed:
|
||||||
|
set(CMAKE_DEPENDS_DEPENDENCY_FILES
|
||||||
|
"/home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/deps/glad_gl.c" "examples/CMakeFiles/offscreen.dir/__/deps/glad_gl.c.o" "gcc" "examples/CMakeFiles/offscreen.dir/__/deps/glad_gl.c.o.d"
|
||||||
|
"/home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/examples/offscreen.c" "examples/CMakeFiles/offscreen.dir/offscreen.c.o" "gcc" "examples/CMakeFiles/offscreen.dir/offscreen.c.o.d"
|
||||||
|
)
|
||||||
|
|
||||||
|
# Targets to which this target links.
|
||||||
|
set(CMAKE_TARGET_LINKED_INFO_FILES
|
||||||
|
"/home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/build/src/CMakeFiles/glfw.dir/DependInfo.cmake"
|
||||||
|
)
|
||||||
|
|
||||||
|
# Fortran module output directory.
|
||||||
|
set(CMAKE_Fortran_TARGET_MODULE_DIR "")
|
||||||
Binary file not shown.
@ -0,0 +1,40 @@
|
|||||||
|
examples/CMakeFiles/offscreen.dir/__/deps/glad_gl.c.o: \
|
||||||
|
/home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/deps/glad_gl.c \
|
||||||
|
/usr/include/stdc-predef.h /usr/include/stdio.h \
|
||||||
|
/usr/include/bits/libc-header-start.h /usr/include/features.h \
|
||||||
|
/usr/include/features-time64.h /usr/include/bits/wordsize.h \
|
||||||
|
/usr/include/bits/timesize.h /usr/include/sys/cdefs.h \
|
||||||
|
/usr/include/bits/long-double.h /usr/include/gnu/stubs.h \
|
||||||
|
/usr/include/gnu/stubs-64.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/12.2.0/include/stddef.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/12.2.0/include/stdarg.h \
|
||||||
|
/usr/include/bits/types.h /usr/include/bits/typesizes.h \
|
||||||
|
/usr/include/bits/time64.h /usr/include/bits/types/__fpos_t.h \
|
||||||
|
/usr/include/bits/types/__mbstate_t.h \
|
||||||
|
/usr/include/bits/types/__fpos64_t.h /usr/include/bits/types/__FILE.h \
|
||||||
|
/usr/include/bits/types/FILE.h /usr/include/bits/types/struct_FILE.h \
|
||||||
|
/usr/include/bits/stdio_lim.h /usr/include/bits/floatn.h \
|
||||||
|
/usr/include/bits/floatn-common.h /usr/include/stdlib.h \
|
||||||
|
/usr/include/bits/waitflags.h /usr/include/bits/waitstatus.h \
|
||||||
|
/usr/include/sys/types.h /usr/include/bits/types/clock_t.h \
|
||||||
|
/usr/include/bits/types/clockid_t.h /usr/include/bits/types/time_t.h \
|
||||||
|
/usr/include/bits/types/timer_t.h /usr/include/bits/stdint-intn.h \
|
||||||
|
/usr/include/endian.h /usr/include/bits/endian.h \
|
||||||
|
/usr/include/bits/endianness.h /usr/include/bits/byteswap.h \
|
||||||
|
/usr/include/bits/uintn-identity.h /usr/include/sys/select.h \
|
||||||
|
/usr/include/bits/select.h /usr/include/bits/types/sigset_t.h \
|
||||||
|
/usr/include/bits/types/__sigset_t.h \
|
||||||
|
/usr/include/bits/types/struct_timeval.h \
|
||||||
|
/usr/include/bits/types/struct_timespec.h \
|
||||||
|
/usr/include/bits/pthreadtypes.h /usr/include/bits/thread-shared-types.h \
|
||||||
|
/usr/include/bits/pthreadtypes-arch.h \
|
||||||
|
/usr/include/bits/atomic_wide_counter.h /usr/include/bits/struct_mutex.h \
|
||||||
|
/usr/include/bits/struct_rwlock.h /usr/include/alloca.h \
|
||||||
|
/usr/include/bits/stdlib-float.h /usr/include/string.h \
|
||||||
|
/usr/include/bits/types/locale_t.h /usr/include/bits/types/__locale_t.h \
|
||||||
|
/usr/include/strings.h \
|
||||||
|
/home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/deps/glad/gl.h \
|
||||||
|
/home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/deps/glad/khrplatform.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/12.2.0/include/stdint.h \
|
||||||
|
/usr/include/stdint.h /usr/include/bits/wchar.h \
|
||||||
|
/usr/include/bits/stdint-uintn.h
|
||||||
@ -0,0 +1,131 @@
|
|||||||
|
# CMAKE generated file: DO NOT EDIT!
|
||||||
|
# Generated by "Unix Makefiles" Generator, CMake Version 3.24
|
||||||
|
|
||||||
|
# Delete rule output on recipe failure.
|
||||||
|
.DELETE_ON_ERROR:
|
||||||
|
|
||||||
|
#=============================================================================
|
||||||
|
# Special targets provided by cmake.
|
||||||
|
|
||||||
|
# Disable implicit rules so canonical targets will work.
|
||||||
|
.SUFFIXES:
|
||||||
|
|
||||||
|
# Disable VCS-based implicit rules.
|
||||||
|
% : %,v
|
||||||
|
|
||||||
|
# Disable VCS-based implicit rules.
|
||||||
|
% : RCS/%
|
||||||
|
|
||||||
|
# Disable VCS-based implicit rules.
|
||||||
|
% : RCS/%,v
|
||||||
|
|
||||||
|
# Disable VCS-based implicit rules.
|
||||||
|
% : SCCS/s.%
|
||||||
|
|
||||||
|
# Disable VCS-based implicit rules.
|
||||||
|
% : s.%
|
||||||
|
|
||||||
|
.SUFFIXES: .hpux_make_needs_suffix_list
|
||||||
|
|
||||||
|
# Command-line flag to silence nested $(MAKE).
|
||||||
|
$(VERBOSE)MAKESILENT = -s
|
||||||
|
|
||||||
|
#Suppress display of executed commands.
|
||||||
|
$(VERBOSE).SILENT:
|
||||||
|
|
||||||
|
# A target that is always out of date.
|
||||||
|
cmake_force:
|
||||||
|
.PHONY : cmake_force
|
||||||
|
|
||||||
|
#=============================================================================
|
||||||
|
# Set environment variables for the build.
|
||||||
|
|
||||||
|
# The shell in which to execute make rules.
|
||||||
|
SHELL = /bin/sh
|
||||||
|
|
||||||
|
# The CMake executable.
|
||||||
|
CMAKE_COMMAND = /usr/bin/cmake
|
||||||
|
|
||||||
|
# The command to remove a file.
|
||||||
|
RM = /usr/bin/cmake -E rm -f
|
||||||
|
|
||||||
|
# Escaping for special characters.
|
||||||
|
EQUALS = =
|
||||||
|
|
||||||
|
# The top-level source directory on which CMake was run.
|
||||||
|
CMAKE_SOURCE_DIR = /home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8
|
||||||
|
|
||||||
|
# The top-level build directory on which CMake was run.
|
||||||
|
CMAKE_BINARY_DIR = /home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/build
|
||||||
|
|
||||||
|
# Include any dependencies generated for this target.
|
||||||
|
include examples/CMakeFiles/offscreen.dir/depend.make
|
||||||
|
# Include any dependencies generated by the compiler for this target.
|
||||||
|
include examples/CMakeFiles/offscreen.dir/compiler_depend.make
|
||||||
|
|
||||||
|
# Include the progress variables for this target.
|
||||||
|
include examples/CMakeFiles/offscreen.dir/progress.make
|
||||||
|
|
||||||
|
# Include the compile flags for this target's objects.
|
||||||
|
include examples/CMakeFiles/offscreen.dir/flags.make
|
||||||
|
|
||||||
|
examples/CMakeFiles/offscreen.dir/offscreen.c.o: examples/CMakeFiles/offscreen.dir/flags.make
|
||||||
|
examples/CMakeFiles/offscreen.dir/offscreen.c.o: /home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/examples/offscreen.c
|
||||||
|
examples/CMakeFiles/offscreen.dir/offscreen.c.o: examples/CMakeFiles/offscreen.dir/compiler_depend.ts
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building C object examples/CMakeFiles/offscreen.dir/offscreen.c.o"
|
||||||
|
cd /home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/build/examples && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT examples/CMakeFiles/offscreen.dir/offscreen.c.o -MF CMakeFiles/offscreen.dir/offscreen.c.o.d -o CMakeFiles/offscreen.dir/offscreen.c.o -c /home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/examples/offscreen.c
|
||||||
|
|
||||||
|
examples/CMakeFiles/offscreen.dir/offscreen.c.i: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/offscreen.dir/offscreen.c.i"
|
||||||
|
cd /home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/build/examples && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/examples/offscreen.c > CMakeFiles/offscreen.dir/offscreen.c.i
|
||||||
|
|
||||||
|
examples/CMakeFiles/offscreen.dir/offscreen.c.s: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/offscreen.dir/offscreen.c.s"
|
||||||
|
cd /home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/build/examples && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/examples/offscreen.c -o CMakeFiles/offscreen.dir/offscreen.c.s
|
||||||
|
|
||||||
|
examples/CMakeFiles/offscreen.dir/__/deps/glad_gl.c.o: examples/CMakeFiles/offscreen.dir/flags.make
|
||||||
|
examples/CMakeFiles/offscreen.dir/__/deps/glad_gl.c.o: /home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/deps/glad_gl.c
|
||||||
|
examples/CMakeFiles/offscreen.dir/__/deps/glad_gl.c.o: examples/CMakeFiles/offscreen.dir/compiler_depend.ts
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building C object examples/CMakeFiles/offscreen.dir/__/deps/glad_gl.c.o"
|
||||||
|
cd /home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/build/examples && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT examples/CMakeFiles/offscreen.dir/__/deps/glad_gl.c.o -MF CMakeFiles/offscreen.dir/__/deps/glad_gl.c.o.d -o CMakeFiles/offscreen.dir/__/deps/glad_gl.c.o -c /home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/deps/glad_gl.c
|
||||||
|
|
||||||
|
examples/CMakeFiles/offscreen.dir/__/deps/glad_gl.c.i: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/offscreen.dir/__/deps/glad_gl.c.i"
|
||||||
|
cd /home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/build/examples && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/deps/glad_gl.c > CMakeFiles/offscreen.dir/__/deps/glad_gl.c.i
|
||||||
|
|
||||||
|
examples/CMakeFiles/offscreen.dir/__/deps/glad_gl.c.s: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/offscreen.dir/__/deps/glad_gl.c.s"
|
||||||
|
cd /home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/build/examples && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/deps/glad_gl.c -o CMakeFiles/offscreen.dir/__/deps/glad_gl.c.s
|
||||||
|
|
||||||
|
# Object files for target offscreen
|
||||||
|
offscreen_OBJECTS = \
|
||||||
|
"CMakeFiles/offscreen.dir/offscreen.c.o" \
|
||||||
|
"CMakeFiles/offscreen.dir/__/deps/glad_gl.c.o"
|
||||||
|
|
||||||
|
# External object files for target offscreen
|
||||||
|
offscreen_EXTERNAL_OBJECTS =
|
||||||
|
|
||||||
|
examples/offscreen: examples/CMakeFiles/offscreen.dir/offscreen.c.o
|
||||||
|
examples/offscreen: examples/CMakeFiles/offscreen.dir/__/deps/glad_gl.c.o
|
||||||
|
examples/offscreen: examples/CMakeFiles/offscreen.dir/build.make
|
||||||
|
examples/offscreen: src/libglfw3.a
|
||||||
|
examples/offscreen: /usr/lib/libm.so
|
||||||
|
examples/offscreen: /usr/lib/librt.a
|
||||||
|
examples/offscreen: /usr/lib/libm.so
|
||||||
|
examples/offscreen: /usr/lib/libX11.so
|
||||||
|
examples/offscreen: examples/CMakeFiles/offscreen.dir/link.txt
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --bold --progress-dir=/home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Linking C executable offscreen"
|
||||||
|
cd /home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/build/examples && $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/offscreen.dir/link.txt --verbose=$(VERBOSE)
|
||||||
|
|
||||||
|
# Rule to build all files generated by this target.
|
||||||
|
examples/CMakeFiles/offscreen.dir/build: examples/offscreen
|
||||||
|
.PHONY : examples/CMakeFiles/offscreen.dir/build
|
||||||
|
|
||||||
|
examples/CMakeFiles/offscreen.dir/clean:
|
||||||
|
cd /home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/build/examples && $(CMAKE_COMMAND) -P CMakeFiles/offscreen.dir/cmake_clean.cmake
|
||||||
|
.PHONY : examples/CMakeFiles/offscreen.dir/clean
|
||||||
|
|
||||||
|
examples/CMakeFiles/offscreen.dir/depend:
|
||||||
|
cd /home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8 /home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/examples /home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/build /home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/build/examples /home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/build/examples/CMakeFiles/offscreen.dir/DependInfo.cmake --color=$(COLOR)
|
||||||
|
.PHONY : examples/CMakeFiles/offscreen.dir/depend
|
||||||
|
|
||||||
@ -0,0 +1,13 @@
|
|||||||
|
file(REMOVE_RECURSE
|
||||||
|
"CMakeFiles/offscreen.dir/__/deps/glad_gl.c.o"
|
||||||
|
"CMakeFiles/offscreen.dir/__/deps/glad_gl.c.o.d"
|
||||||
|
"CMakeFiles/offscreen.dir/offscreen.c.o"
|
||||||
|
"CMakeFiles/offscreen.dir/offscreen.c.o.d"
|
||||||
|
"offscreen"
|
||||||
|
"offscreen.pdb"
|
||||||
|
)
|
||||||
|
|
||||||
|
# Per-language clean rules from dependency scanning.
|
||||||
|
foreach(lang C)
|
||||||
|
include(CMakeFiles/offscreen.dir/cmake_clean_${lang}.cmake OPTIONAL)
|
||||||
|
endforeach()
|
||||||
@ -0,0 +1,2 @@
|
|||||||
|
# Empty compiler generated dependencies file for offscreen.
|
||||||
|
# This may be replaced when dependencies are built.
|
||||||
@ -0,0 +1,2 @@
|
|||||||
|
# CMAKE generated file: DO NOT EDIT!
|
||||||
|
# Timestamp file for compiler generated dependencies management for offscreen.
|
||||||
@ -0,0 +1,2 @@
|
|||||||
|
# Empty dependencies file for offscreen.
|
||||||
|
# This may be replaced when dependencies are built.
|
||||||
@ -0,0 +1,10 @@
|
|||||||
|
# CMAKE generated file: DO NOT EDIT!
|
||||||
|
# Generated by "Unix Makefiles" Generator, CMake Version 3.24
|
||||||
|
|
||||||
|
# compile C with /usr/bin/cc
|
||||||
|
C_DEFINES =
|
||||||
|
|
||||||
|
C_INCLUDES = -I/home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/deps -I/home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/include
|
||||||
|
|
||||||
|
C_FLAGS = -std=gnu99
|
||||||
|
|
||||||
@ -0,0 +1 @@
|
|||||||
|
/usr/bin/cc CMakeFiles/offscreen.dir/offscreen.c.o CMakeFiles/offscreen.dir/__/deps/glad_gl.c.o -o offscreen ../src/libglfw3.a -lm /usr/lib/librt.a -lm -ldl /usr/lib/libX11.so
|
||||||
Binary file not shown.
@ -0,0 +1,47 @@
|
|||||||
|
examples/CMakeFiles/offscreen.dir/offscreen.c.o: \
|
||||||
|
/home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/examples/offscreen.c \
|
||||||
|
/usr/include/stdc-predef.h \
|
||||||
|
/home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/deps/glad/gl.h \
|
||||||
|
/home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/deps/glad/khrplatform.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/12.2.0/include/stdint.h \
|
||||||
|
/usr/include/stdint.h /usr/include/bits/libc-header-start.h \
|
||||||
|
/usr/include/features.h /usr/include/features-time64.h \
|
||||||
|
/usr/include/bits/wordsize.h /usr/include/bits/timesize.h \
|
||||||
|
/usr/include/sys/cdefs.h /usr/include/bits/long-double.h \
|
||||||
|
/usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \
|
||||||
|
/usr/include/bits/types.h /usr/include/bits/typesizes.h \
|
||||||
|
/usr/include/bits/time64.h /usr/include/bits/wchar.h \
|
||||||
|
/usr/include/bits/stdint-intn.h /usr/include/bits/stdint-uintn.h \
|
||||||
|
/home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/include/GLFW/glfw3.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/12.2.0/include/stddef.h \
|
||||||
|
/home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/deps/linmath.h \
|
||||||
|
/usr/include/math.h /usr/include/bits/math-vector.h \
|
||||||
|
/usr/include/bits/libm-simd-decl-stubs.h /usr/include/bits/floatn.h \
|
||||||
|
/usr/include/bits/floatn-common.h /usr/include/bits/flt-eval-method.h \
|
||||||
|
/usr/include/bits/fp-logb.h /usr/include/bits/fp-fast.h \
|
||||||
|
/usr/include/bits/mathcalls-helper-functions.h \
|
||||||
|
/usr/include/bits/mathcalls.h /usr/include/stdlib.h \
|
||||||
|
/usr/include/bits/waitflags.h /usr/include/bits/waitstatus.h \
|
||||||
|
/usr/include/sys/types.h /usr/include/bits/types/clock_t.h \
|
||||||
|
/usr/include/bits/types/clockid_t.h /usr/include/bits/types/time_t.h \
|
||||||
|
/usr/include/bits/types/timer_t.h /usr/include/endian.h \
|
||||||
|
/usr/include/bits/endian.h /usr/include/bits/endianness.h \
|
||||||
|
/usr/include/bits/byteswap.h /usr/include/bits/uintn-identity.h \
|
||||||
|
/usr/include/sys/select.h /usr/include/bits/select.h \
|
||||||
|
/usr/include/bits/types/sigset_t.h /usr/include/bits/types/__sigset_t.h \
|
||||||
|
/usr/include/bits/types/struct_timeval.h \
|
||||||
|
/usr/include/bits/types/struct_timespec.h \
|
||||||
|
/usr/include/bits/pthreadtypes.h /usr/include/bits/thread-shared-types.h \
|
||||||
|
/usr/include/bits/pthreadtypes-arch.h \
|
||||||
|
/usr/include/bits/atomic_wide_counter.h /usr/include/bits/struct_mutex.h \
|
||||||
|
/usr/include/bits/struct_rwlock.h /usr/include/alloca.h \
|
||||||
|
/usr/include/bits/stdlib-float.h /usr/include/stdio.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/12.2.0/include/stdarg.h \
|
||||||
|
/usr/include/bits/types/__fpos_t.h /usr/include/bits/types/__mbstate_t.h \
|
||||||
|
/usr/include/bits/types/__fpos64_t.h /usr/include/bits/types/__FILE.h \
|
||||||
|
/usr/include/bits/types/FILE.h /usr/include/bits/types/struct_FILE.h \
|
||||||
|
/usr/include/bits/stdio_lim.h \
|
||||||
|
/home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/deps/stb_image_write.h \
|
||||||
|
/usr/include/string.h /usr/include/bits/types/locale_t.h \
|
||||||
|
/usr/include/bits/types/__locale_t.h /usr/include/strings.h \
|
||||||
|
/usr/include/assert.h
|
||||||
@ -0,0 +1,4 @@
|
|||||||
|
CMAKE_PROGRESS_1 = 61
|
||||||
|
CMAKE_PROGRESS_2 =
|
||||||
|
CMAKE_PROGRESS_3 = 62
|
||||||
|
|
||||||
@ -0,0 +1,23 @@
|
|||||||
|
|
||||||
|
# Consider dependencies only in project.
|
||||||
|
set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF)
|
||||||
|
|
||||||
|
# The set of languages for which implicit dependencies are needed:
|
||||||
|
set(CMAKE_DEPENDS_LANGUAGES
|
||||||
|
)
|
||||||
|
|
||||||
|
# The set of dependency files which are needed:
|
||||||
|
set(CMAKE_DEPENDS_DEPENDENCY_FILES
|
||||||
|
"/home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/deps/getopt.c" "examples/CMakeFiles/particles.dir/__/deps/getopt.c.o" "gcc" "examples/CMakeFiles/particles.dir/__/deps/getopt.c.o.d"
|
||||||
|
"/home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/deps/glad_gl.c" "examples/CMakeFiles/particles.dir/__/deps/glad_gl.c.o" "gcc" "examples/CMakeFiles/particles.dir/__/deps/glad_gl.c.o.d"
|
||||||
|
"/home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/deps/tinycthread.c" "examples/CMakeFiles/particles.dir/__/deps/tinycthread.c.o" "gcc" "examples/CMakeFiles/particles.dir/__/deps/tinycthread.c.o.d"
|
||||||
|
"/home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/examples/particles.c" "examples/CMakeFiles/particles.dir/particles.c.o" "gcc" "examples/CMakeFiles/particles.dir/particles.c.o.d"
|
||||||
|
)
|
||||||
|
|
||||||
|
# Targets to which this target links.
|
||||||
|
set(CMAKE_TARGET_LINKED_INFO_FILES
|
||||||
|
"/home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/build/src/CMakeFiles/glfw.dir/DependInfo.cmake"
|
||||||
|
)
|
||||||
|
|
||||||
|
# Fortran module output directory.
|
||||||
|
set(CMAKE_Fortran_TARGET_MODULE_DIR "")
|
||||||
Binary file not shown.
@ -0,0 +1,12 @@
|
|||||||
|
examples/CMakeFiles/particles.dir/__/deps/getopt.c.o: \
|
||||||
|
/home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/deps/getopt.c \
|
||||||
|
/usr/include/stdc-predef.h \
|
||||||
|
/home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/deps/getopt.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/12.2.0/include/stddef.h \
|
||||||
|
/usr/include/string.h /usr/include/bits/libc-header-start.h \
|
||||||
|
/usr/include/features.h /usr/include/features-time64.h \
|
||||||
|
/usr/include/bits/wordsize.h /usr/include/bits/timesize.h \
|
||||||
|
/usr/include/sys/cdefs.h /usr/include/bits/long-double.h \
|
||||||
|
/usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \
|
||||||
|
/usr/include/bits/types/locale_t.h /usr/include/bits/types/__locale_t.h \
|
||||||
|
/usr/include/strings.h
|
||||||
Binary file not shown.
@ -0,0 +1,40 @@
|
|||||||
|
examples/CMakeFiles/particles.dir/__/deps/glad_gl.c.o: \
|
||||||
|
/home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/deps/glad_gl.c \
|
||||||
|
/usr/include/stdc-predef.h /usr/include/stdio.h \
|
||||||
|
/usr/include/bits/libc-header-start.h /usr/include/features.h \
|
||||||
|
/usr/include/features-time64.h /usr/include/bits/wordsize.h \
|
||||||
|
/usr/include/bits/timesize.h /usr/include/sys/cdefs.h \
|
||||||
|
/usr/include/bits/long-double.h /usr/include/gnu/stubs.h \
|
||||||
|
/usr/include/gnu/stubs-64.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/12.2.0/include/stddef.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/12.2.0/include/stdarg.h \
|
||||||
|
/usr/include/bits/types.h /usr/include/bits/typesizes.h \
|
||||||
|
/usr/include/bits/time64.h /usr/include/bits/types/__fpos_t.h \
|
||||||
|
/usr/include/bits/types/__mbstate_t.h \
|
||||||
|
/usr/include/bits/types/__fpos64_t.h /usr/include/bits/types/__FILE.h \
|
||||||
|
/usr/include/bits/types/FILE.h /usr/include/bits/types/struct_FILE.h \
|
||||||
|
/usr/include/bits/stdio_lim.h /usr/include/bits/floatn.h \
|
||||||
|
/usr/include/bits/floatn-common.h /usr/include/stdlib.h \
|
||||||
|
/usr/include/bits/waitflags.h /usr/include/bits/waitstatus.h \
|
||||||
|
/usr/include/sys/types.h /usr/include/bits/types/clock_t.h \
|
||||||
|
/usr/include/bits/types/clockid_t.h /usr/include/bits/types/time_t.h \
|
||||||
|
/usr/include/bits/types/timer_t.h /usr/include/bits/stdint-intn.h \
|
||||||
|
/usr/include/endian.h /usr/include/bits/endian.h \
|
||||||
|
/usr/include/bits/endianness.h /usr/include/bits/byteswap.h \
|
||||||
|
/usr/include/bits/uintn-identity.h /usr/include/sys/select.h \
|
||||||
|
/usr/include/bits/select.h /usr/include/bits/types/sigset_t.h \
|
||||||
|
/usr/include/bits/types/__sigset_t.h \
|
||||||
|
/usr/include/bits/types/struct_timeval.h \
|
||||||
|
/usr/include/bits/types/struct_timespec.h \
|
||||||
|
/usr/include/bits/pthreadtypes.h /usr/include/bits/thread-shared-types.h \
|
||||||
|
/usr/include/bits/pthreadtypes-arch.h \
|
||||||
|
/usr/include/bits/atomic_wide_counter.h /usr/include/bits/struct_mutex.h \
|
||||||
|
/usr/include/bits/struct_rwlock.h /usr/include/alloca.h \
|
||||||
|
/usr/include/bits/stdlib-float.h /usr/include/string.h \
|
||||||
|
/usr/include/bits/types/locale_t.h /usr/include/bits/types/__locale_t.h \
|
||||||
|
/usr/include/strings.h \
|
||||||
|
/home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/deps/glad/gl.h \
|
||||||
|
/home/kuchy/Zlew/niepraca/Studia/nieprogramy/Projekty/inzynierka/engineer-thesis-WUT/Engine/glfw-3.3.8/deps/glad/khrplatform.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/12.2.0/include/stdint.h \
|
||||||
|
/usr/include/stdint.h /usr/include/bits/wchar.h \
|
||||||
|
/usr/include/bits/stdint-uintn.h
|
||||||
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
Block a user