1
0

Init opengl

This commit is contained in:
Niklas Birk 2019-12-18 18:18:55 +01:00
parent 95e874e74e
commit e7db6fdf34
339 changed files with 7351 additions and 4 deletions

View File

@ -3,4 +3,9 @@ project(Informatikprojekt C)
set(CMAKE_C_STANDARD 11)
add_executable(Informatikprojekt main.c particlesystem.h particlesystem.c)
add_executable(Informatikprojekt main.c particlesystem.h particlesystem.c)
# GLFW
add_subdirectory(./glfw-3.3)
include_directories(./glfw-3.3/include)
target_link_libraries(Informatikprojekt -lOpenGL32 glfw ${GLFW_LIBRARIES})

View File

@ -0,0 +1,76 @@
set(CMAKE_C_COMPILER "D:/Programme/MingW/mingw64/bin/gcc.exe")
set(CMAKE_C_COMPILER_ARG1 "")
set(CMAKE_C_COMPILER_ID "GNU")
set(CMAKE_C_COMPILER_VERSION "8.1.0")
set(CMAKE_C_COMPILER_VERSION_INTERNAL "")
set(CMAKE_C_COMPILER_WRAPPER "")
set(CMAKE_C_STANDARD_COMPUTED_DEFAULT "11")
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")
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_C_PLATFORM_ID "MinGW")
set(CMAKE_C_SIMULATE_ID "")
set(CMAKE_C_COMPILER_FRONTEND_VARIANT "")
set(CMAKE_C_SIMULATE_VERSION "")
set(CMAKE_AR "D:/Programme/MingW/mingw64/bin/ar.exe")
set(CMAKE_C_COMPILER_AR "D:/Programme/MingW/mingw64/bin/gcc-ar.exe")
set(CMAKE_RANLIB "D:/Programme/MingW/mingw64/bin/ranlib.exe")
set(CMAKE_C_COMPILER_RANLIB "D:/Programme/MingW/mingw64/bin/gcc-ranlib.exe")
set(CMAKE_LINKER "D:/Programme/MingW/mingw64/bin/ld.exe")
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_COMPILER_IS_MINGW 1)
set(CMAKE_COMPILER_IS_CYGWIN )
if(CMAKE_COMPILER_IS_CYGWIN)
set(CYGWIN 1)
set(UNIX 1)
endif()
set(CMAKE_C_COMPILER_ENV_VAR "CC")
if(CMAKE_COMPILER_IS_MINGW)
set(MINGW 1)
endif()
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 "")
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 "D:/Programme/MingW/mingw64/lib/gcc/x86_64-w64-mingw32/8.1.0/include;D:/Programme/MingW/mingw64/lib/gcc/x86_64-w64-mingw32/8.1.0/include-fixed;D:/Programme/MingW/mingw64/x86_64-w64-mingw32/include")
set(CMAKE_C_IMPLICIT_LINK_LIBRARIES "mingw32;gcc;moldname;mingwex;pthread;advapi32;shell32;user32;kernel32;iconv;mingw32;gcc;moldname;mingwex")
set(CMAKE_C_IMPLICIT_LINK_DIRECTORIES "D:/Programme/MingW/mingw64/lib/gcc/x86_64-w64-mingw32/8.1.0;D:/Programme/MingW/mingw64/lib/gcc;D:/Programme/MingW/mingw64/x86_64-w64-mingw32/lib;D:/Programme/MingW/mingw64/lib")
set(CMAKE_C_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "")

View File

@ -0,0 +1,6 @@
set(CMAKE_RC_COMPILER "D:/Programme/MingW/mingw64/bin/windres.exe")
set(CMAKE_RC_COMPILER_ARG1 "")
set(CMAKE_RC_COMPILER_LOADED 1)
set(CMAKE_RC_SOURCE_FILE_EXTENSIONS rc;RC)
set(CMAKE_RC_OUTPUT_EXTENSION .obj)
set(CMAKE_RC_COMPILER_ENV_VAR "RC")

View File

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

View File

@ -0,0 +1 @@
empty

View File

@ -0,0 +1 @@
empty

View File

@ -0,0 +1 @@
empty

View File

@ -0,0 +1 @@
empty

View File

@ -0,0 +1 @@
empty

View File

@ -0,0 +1 @@
empty

View File

@ -0,0 +1 @@
empty

View File

@ -0,0 +1 @@
empty

View File

@ -0,0 +1 @@
empty

View File

@ -0,0 +1 @@
empty

View File

@ -0,0 +1 @@
empty

View File

@ -0,0 +1 @@
empty

View File

@ -0,0 +1 @@
empty

View File

@ -0,0 +1 @@
empty

View File

@ -0,0 +1 @@
empty

View File

@ -0,0 +1 @@
16

View File

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

View File

@ -0,0 +1,75 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "MinGW Makefiles" Generator, CMake Version 3.15
# Delete rule output on recipe failure.
.DELETE_ON_ERROR:
#=============================================================================
# Special targets provided by cmake.
# Disable implicit rules so canonical targets will work.
.SUFFIXES:
# Remove some rules from gmake that .SUFFIXES does not remove.
SUFFIXES =
.SUFFIXES: .hpux_make_needs_suffix_list
# Suppress display of executed commands.
$(VERBOSE).SILENT:
# A target that is always out of date.
cmake_force:
.PHONY : cmake_force
#=============================================================================
# Set environment variables for the build.
SHELL = cmd.exe
# The CMake executable.
CMAKE_COMMAND = D:\Programme\JetBrains\CLion\bin\cmake\win\bin\cmake.exe
# The command to remove a file.
RM = D:\Programme\JetBrains\CLion\bin\cmake\win\bin\cmake.exe -E remove -f
# Escaping for special characters.
EQUALS = =
# The top-level source directory on which CMake was run.
CMAKE_SOURCE_DIR = "D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3"
# The top-level build directory on which CMake was run.
CMAKE_BINARY_DIR = "D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3\cmake-build-debug"
# Utility rule file for uninstall.
# Include the progress variables for this target.
include CMakeFiles/uninstall.dir/progress.make
CMakeFiles/uninstall:
D:\Programme\JetBrains\CLion\bin\cmake\win\bin\cmake.exe -P "D:/Niklas Birk/Dokumente/Programmierung/C/Informatikprojekt/glfw-3.3/cmake-build-debug/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:
$(CMAKE_COMMAND) -E cmake_depends "MinGW Makefiles" "D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3" "D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3" "D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3\cmake-build-debug" "D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3\cmake-build-debug" "D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3\cmake-build-debug\CMakeFiles\uninstall.dir\DependInfo.cmake" --color=$(COLOR)
.PHONY : CMakeFiles/uninstall.dir/depend

View File

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

View File

@ -0,0 +1,16 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "MinGW Makefiles" Generator, CMake Version 3.15
# Relative path conversion top directories.
set(CMAKE_RELATIVE_PATH_TOP_SOURCE "D:/Niklas Birk/Dokumente/Programmierung/C/Informatikprojekt/glfw-3.3")
set(CMAKE_RELATIVE_PATH_TOP_BINARY "D:/Niklas Birk/Dokumente/Programmierung/C/Informatikprojekt/glfw-3.3/cmake-build-debug")
# Force unix paths in dependencies.
set(CMAKE_FORCE_UNIX_PATHS 1)
# The C and CXX include file regular expressions for this directory.
set(CMAKE_C_INCLUDE_REGEX_SCAN "^.*$")
set(CMAKE_C_INCLUDE_REGEX_COMPLAIN "^$")
set(CMAKE_CXX_INCLUDE_REGEX_SCAN ${CMAKE_C_INCLUDE_REGEX_SCAN})
set(CMAKE_CXX_INCLUDE_REGEX_COMPLAIN ${CMAKE_C_INCLUDE_REGEX_COMPLAIN})

View File

@ -0,0 +1,94 @@
#IncludeRegexLine: ^[ ]*[#%][ ]*(include|import)[ ]*[<"]([^">]+)([">])
#IncludeRegexScan: ^.*$
#IncludeRegexComplain: ^$
#IncludeRegexTransform:
../deps/glad/gl.h
winapifamily.h
-
glad/khrplatform.h
-
../deps/glad/khrplatform.h
stdint.h
-
inttypes.h
-
stdint.h
-
../deps/linmath.h
math.h
-
../include/GLFW/glfw3.h
stddef.h
-
stdint.h
-
GLES/gl.h
-
GLES/glext.h
-
GLES2/gl2.h
-
GLES2/gl2ext.h
-
GLES3/gl3.h
-
GLES2/gl2ext.h
-
GLES3/gl31.h
-
GLES2/gl2ext.h
-
GLES3/gl32.h
-
GLES2/gl2ext.h
-
OpenGL/gl3.h
-
OpenGL/gl3ext.h
-
GL/glcorearb.h
-
OpenGL/gl.h
-
OpenGL/glu.h
-
GL/gl.h
-
GL/glext.h
-
GL/glu.h
-
vulkan/vulkan.h
-
D:/Niklas Birk/Dokumente/Programmierung/C/Informatikprojekt/glfw-3.3/deps/glad_gl.c
stdio.h
-
stdlib.h
-
string.h
-
glad/gl.h
-
D:/Niklas Birk/Dokumente/Programmierung/C/Informatikprojekt/glfw-3.3/examples/boing.c
stdio.h
-
stdlib.h
-
math.h
-
glad/gl.h
-
GLFW/glfw3.h
-
linmath.h
-

View File

@ -0,0 +1,34 @@
# The set of languages for which implicit dependencies are needed:
set(CMAKE_DEPENDS_LANGUAGES
"C"
"RC"
)
# The set of files for implicit dependencies of each language:
set(CMAKE_DEPENDS_CHECK_C
"D:/Niklas Birk/Dokumente/Programmierung/C/Informatikprojekt/glfw-3.3/deps/glad_gl.c" "D:/Niklas Birk/Dokumente/Programmierung/C/Informatikprojekt/glfw-3.3/cmake-build-debug/examples/CMakeFiles/boing.dir/__/deps/glad_gl.c.obj"
"D:/Niklas Birk/Dokumente/Programmierung/C/Informatikprojekt/glfw-3.3/examples/boing.c" "D:/Niklas Birk/Dokumente/Programmierung/C/Informatikprojekt/glfw-3.3/cmake-build-debug/examples/CMakeFiles/boing.dir/boing.c.obj"
)
set(CMAKE_C_COMPILER_ID "GNU")
# The include file search paths:
set(CMAKE_C_TARGET_INCLUDE_PATH
"../deps"
"../include"
)
set(CMAKE_DEPENDS_CHECK_RC
"D:/Niklas Birk/Dokumente/Programmierung/C/Informatikprojekt/glfw-3.3/examples/glfw.rc" "D:/Niklas Birk/Dokumente/Programmierung/C/Informatikprojekt/glfw-3.3/cmake-build-debug/examples/CMakeFiles/boing.dir/glfw.rc.obj"
)
# The include file search paths:
set(CMAKE_RC_TARGET_INCLUDE_PATH
"../deps"
"../include"
)
# Targets to which this target links.
set(CMAKE_TARGET_LINKED_INFO_FILES
"D:/Niklas Birk/Dokumente/Programmierung/C/Informatikprojekt/glfw-3.3/cmake-build-debug/src/CMakeFiles/glfw.dir/DependInfo.cmake"
)
# Fortran module output directory.
set(CMAKE_Fortran_TARGET_MODULE_DIR "")

View File

@ -0,0 +1,10 @@
#IncludeRegexLine: ^[ ]*[#%][ ]*(include|import)[ ]*[<"]([^">]+)([">])
#IncludeRegexScan: ^.*$
#IncludeRegexComplain: ^$
#IncludeRegexTransform:
D:/Niklas Birk/Dokumente/Programmierung/C/Informatikprojekt/glfw-3.3/examples/glfw.rc

View File

@ -0,0 +1,124 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "MinGW Makefiles" Generator, CMake Version 3.15
# Delete rule output on recipe failure.
.DELETE_ON_ERROR:
#=============================================================================
# Special targets provided by cmake.
# Disable implicit rules so canonical targets will work.
.SUFFIXES:
# Remove some rules from gmake that .SUFFIXES does not remove.
SUFFIXES =
.SUFFIXES: .hpux_make_needs_suffix_list
# Suppress display of executed commands.
$(VERBOSE).SILENT:
# A target that is always out of date.
cmake_force:
.PHONY : cmake_force
#=============================================================================
# Set environment variables for the build.
SHELL = cmd.exe
# The CMake executable.
CMAKE_COMMAND = D:\Programme\JetBrains\CLion\bin\cmake\win\bin\cmake.exe
# The command to remove a file.
RM = D:\Programme\JetBrains\CLion\bin\cmake\win\bin\cmake.exe -E remove -f
# Escaping for special characters.
EQUALS = =
# The top-level source directory on which CMake was run.
CMAKE_SOURCE_DIR = "D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3"
# The top-level build directory on which CMake was run.
CMAKE_BINARY_DIR = "D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3\cmake-build-debug"
# Include any dependencies generated for this target.
include examples/CMakeFiles/boing.dir/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.obj: examples/CMakeFiles/boing.dir/flags.make
examples/CMakeFiles/boing.dir/boing.c.obj: examples/CMakeFiles/boing.dir/includes_C.rsp
examples/CMakeFiles/boing.dir/boing.c.obj: ../examples/boing.c
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir="D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3\cmake-build-debug\CMakeFiles" --progress-num=$(CMAKE_PROGRESS_1) "Building C object examples/CMakeFiles/boing.dir/boing.c.obj"
cd /d "D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3\cmake-build-debug\examples" && D:\Programme\MingW\mingw64\bin\gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles\boing.dir\boing.c.obj -c "D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3\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 /d "D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3\cmake-build-debug\examples" && D:\Programme\MingW\mingw64\bin\gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E "D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3\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 /d "D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3\cmake-build-debug\examples" && D:\Programme\MingW\mingw64\bin\gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S "D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3\examples\boing.c" -o CMakeFiles\boing.dir\boing.c.s
examples/CMakeFiles/boing.dir/glfw.rc.obj: examples/CMakeFiles/boing.dir/flags.make
examples/CMakeFiles/boing.dir/glfw.rc.obj: ../examples/glfw.rc
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir="D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3\cmake-build-debug\CMakeFiles" --progress-num=$(CMAKE_PROGRESS_2) "Building RC object examples/CMakeFiles/boing.dir/glfw.rc.obj"
cd /d "D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3\cmake-build-debug\examples" && D:\Programme\MingW\mingw64\bin\windres.exe -O coff $(RC_DEFINES) $(RC_INCLUDES) $(RC_FLAGS) "D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3\examples\glfw.rc" CMakeFiles\boing.dir\glfw.rc.obj
examples/CMakeFiles/boing.dir/__/deps/glad_gl.c.obj: examples/CMakeFiles/boing.dir/flags.make
examples/CMakeFiles/boing.dir/__/deps/glad_gl.c.obj: examples/CMakeFiles/boing.dir/includes_C.rsp
examples/CMakeFiles/boing.dir/__/deps/glad_gl.c.obj: ../deps/glad_gl.c
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir="D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3\cmake-build-debug\CMakeFiles" --progress-num=$(CMAKE_PROGRESS_3) "Building C object examples/CMakeFiles/boing.dir/__/deps/glad_gl.c.obj"
cd /d "D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3\cmake-build-debug\examples" && D:\Programme\MingW\mingw64\bin\gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles\boing.dir\__\deps\glad_gl.c.obj -c "D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3\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 /d "D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3\cmake-build-debug\examples" && D:\Programme\MingW\mingw64\bin\gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E "D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3\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 /d "D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3\cmake-build-debug\examples" && D:\Programme\MingW\mingw64\bin\gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S "D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3\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.obj" \
"CMakeFiles/boing.dir/glfw.rc.obj" \
"CMakeFiles/boing.dir/__/deps/glad_gl.c.obj"
# External object files for target boing
boing_EXTERNAL_OBJECTS =
examples/boing.exe: examples/CMakeFiles/boing.dir/boing.c.obj
examples/boing.exe: examples/CMakeFiles/boing.dir/glfw.rc.obj
examples/boing.exe: examples/CMakeFiles/boing.dir/__/deps/glad_gl.c.obj
examples/boing.exe: examples/CMakeFiles/boing.dir/build.make
examples/boing.exe: src/libglfw3.a
examples/boing.exe: examples/CMakeFiles/boing.dir/linklibs.rsp
examples/boing.exe: examples/CMakeFiles/boing.dir/objects1.rsp
examples/boing.exe: examples/CMakeFiles/boing.dir/link.txt
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --bold --progress-dir="D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3\cmake-build-debug\CMakeFiles" --progress-num=$(CMAKE_PROGRESS_4) "Linking C executable boing.exe"
cd /d "D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3\cmake-build-debug\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.exe
.PHONY : examples/CMakeFiles/boing.dir/build
examples/CMakeFiles/boing.dir/clean:
cd /d "D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3\cmake-build-debug\examples" && $(CMAKE_COMMAND) -P CMakeFiles\boing.dir\cmake_clean.cmake
.PHONY : examples/CMakeFiles/boing.dir/clean
examples/CMakeFiles/boing.dir/depend:
$(CMAKE_COMMAND) -E cmake_depends "MinGW Makefiles" "D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3" "D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3\examples" "D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3\cmake-build-debug" "D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3\cmake-build-debug\examples" "D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3\cmake-build-debug\examples\CMakeFiles\boing.dir\DependInfo.cmake" --color=$(COLOR)
.PHONY : examples/CMakeFiles/boing.dir/depend

View File

@ -0,0 +1,14 @@
file(REMOVE_RECURSE
"CMakeFiles/boing.dir/__/deps/glad_gl.c.obj"
"CMakeFiles/boing.dir/boing.c.obj"
"CMakeFiles/boing.dir/glfw.rc.obj"
"boing.exe"
"boing.exe.manifest"
"boing.pdb"
"libboing.dll.a"
)
# Per-language clean rules from dependency scanning.
foreach(lang C RC)
include(CMakeFiles/boing.dir/cmake_clean_${lang}.cmake OPTIONAL)
endforeach()

View File

@ -0,0 +1,15 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "MinGW Makefiles" Generator, CMake Version 3.15
examples/CMakeFiles/boing.dir/__/deps/glad_gl.c.obj
../deps/glad/gl.h
../deps/glad/khrplatform.h
D:/Niklas Birk/Dokumente/Programmierung/C/Informatikprojekt/glfw-3.3/deps/glad_gl.c
examples/CMakeFiles/boing.dir/boing.c.obj
../deps/glad/gl.h
../deps/glad/khrplatform.h
../deps/linmath.h
../include/GLFW/glfw3.h
D:/Niklas Birk/Dokumente/Programmierung/C/Informatikprojekt/glfw-3.3/examples/boing.c
examples/CMakeFiles/boing.dir/glfw.rc.obj
D:/Niklas Birk/Dokumente/Programmierung/C/Informatikprojekt/glfw-3.3/examples/glfw.rc

View File

@ -0,0 +1,15 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "MinGW Makefiles" Generator, CMake Version 3.15
examples/CMakeFiles/boing.dir/__/deps/glad_gl.c.obj: ../deps/glad/gl.h
examples/CMakeFiles/boing.dir/__/deps/glad_gl.c.obj: ../deps/glad/khrplatform.h
examples/CMakeFiles/boing.dir/__/deps/glad_gl.c.obj: ../deps/glad_gl.c
examples/CMakeFiles/boing.dir/boing.c.obj: ../deps/glad/gl.h
examples/CMakeFiles/boing.dir/boing.c.obj: ../deps/glad/khrplatform.h
examples/CMakeFiles/boing.dir/boing.c.obj: ../deps/linmath.h
examples/CMakeFiles/boing.dir/boing.c.obj: ../include/GLFW/glfw3.h
examples/CMakeFiles/boing.dir/boing.c.obj: ../examples/boing.c
examples/CMakeFiles/boing.dir/glfw.rc.obj: ../examples/glfw.rc

View File

@ -0,0 +1,17 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "MinGW Makefiles" Generator, CMake Version 3.15
# compile C with D:/Programme/MingW/mingw64/bin/gcc.exe
# compile RC with D:/Programme/MingW/mingw64/bin/windres.exe
C_FLAGS = -g
C_DEFINES =
C_INCLUDES = @CMakeFiles/boing.dir/includes_C.rsp
RC_FLAGS =
RC_DEFINES =
RC_INCLUDES = -I"D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3\deps" -I"D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3\include"

View File

@ -0,0 +1 @@
-I"D:/Niklas Birk/Dokumente/Programmierung/C/Informatikprojekt/glfw-3.3/deps" -I"D:/Niklas Birk/Dokumente/Programmierung/C/Informatikprojekt/glfw-3.3/include"

View File

@ -0,0 +1,3 @@
D:\Programme\JetBrains\CLion\bin\cmake\win\bin\cmake.exe -E remove -f CMakeFiles\boing.dir/objects.a
D:\Programme\MingW\mingw64\bin\ar.exe cr CMakeFiles\boing.dir/objects.a @CMakeFiles\boing.dir\objects1.rsp
D:\Programme\MingW\mingw64\bin\gcc.exe -g -mwindows -Wl,--whole-archive CMakeFiles\boing.dir/objects.a -Wl,--no-whole-archive -o boing.exe -Wl,--out-implib,libboing.dll.a -Wl,--major-image-version,0,--minor-image-version,0 @CMakeFiles\boing.dir\linklibs.rsp

View File

@ -0,0 +1 @@
../src/libglfw3.a -lkernel32 -luser32 -lgdi32 -lwinspool -lshell32 -lole32 -loleaut32 -luuid -lcomdlg32 -ladvapi32

View File

@ -0,0 +1 @@
CMakeFiles/boing.dir/boing.c.obj CMakeFiles/boing.dir/glfw.rc.obj CMakeFiles/boing.dir/__/deps/glad_gl.c.obj

View File

@ -0,0 +1,5 @@
CMAKE_PROGRESS_1 =
CMAKE_PROGRESS_2 = 1
CMAKE_PROGRESS_3 = 2
CMAKE_PROGRESS_4 = 3

View File

@ -0,0 +1,34 @@
# The set of languages for which implicit dependencies are needed:
set(CMAKE_DEPENDS_LANGUAGES
"C"
"RC"
)
# The set of files for implicit dependencies of each language:
set(CMAKE_DEPENDS_CHECK_C
"D:/Niklas Birk/Dokumente/Programmierung/C/Informatikprojekt/glfw-3.3/deps/glad_gl.c" "D:/Niklas Birk/Dokumente/Programmierung/C/Informatikprojekt/glfw-3.3/cmake-build-debug/examples/CMakeFiles/gears.dir/__/deps/glad_gl.c.obj"
"D:/Niklas Birk/Dokumente/Programmierung/C/Informatikprojekt/glfw-3.3/examples/gears.c" "D:/Niklas Birk/Dokumente/Programmierung/C/Informatikprojekt/glfw-3.3/cmake-build-debug/examples/CMakeFiles/gears.dir/gears.c.obj"
)
set(CMAKE_C_COMPILER_ID "GNU")
# The include file search paths:
set(CMAKE_C_TARGET_INCLUDE_PATH
"../deps"
"../include"
)
set(CMAKE_DEPENDS_CHECK_RC
"D:/Niklas Birk/Dokumente/Programmierung/C/Informatikprojekt/glfw-3.3/examples/glfw.rc" "D:/Niklas Birk/Dokumente/Programmierung/C/Informatikprojekt/glfw-3.3/cmake-build-debug/examples/CMakeFiles/gears.dir/glfw.rc.obj"
)
# The include file search paths:
set(CMAKE_RC_TARGET_INCLUDE_PATH
"../deps"
"../include"
)
# Targets to which this target links.
set(CMAKE_TARGET_LINKED_INFO_FILES
"D:/Niklas Birk/Dokumente/Programmierung/C/Informatikprojekt/glfw-3.3/cmake-build-debug/src/CMakeFiles/glfw.dir/DependInfo.cmake"
)
# Fortran module output directory.
set(CMAKE_Fortran_TARGET_MODULE_DIR "")

View File

@ -0,0 +1,124 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "MinGW Makefiles" Generator, CMake Version 3.15
# Delete rule output on recipe failure.
.DELETE_ON_ERROR:
#=============================================================================
# Special targets provided by cmake.
# Disable implicit rules so canonical targets will work.
.SUFFIXES:
# Remove some rules from gmake that .SUFFIXES does not remove.
SUFFIXES =
.SUFFIXES: .hpux_make_needs_suffix_list
# Suppress display of executed commands.
$(VERBOSE).SILENT:
# A target that is always out of date.
cmake_force:
.PHONY : cmake_force
#=============================================================================
# Set environment variables for the build.
SHELL = cmd.exe
# The CMake executable.
CMAKE_COMMAND = D:\Programme\JetBrains\CLion\bin\cmake\win\bin\cmake.exe
# The command to remove a file.
RM = D:\Programme\JetBrains\CLion\bin\cmake\win\bin\cmake.exe -E remove -f
# Escaping for special characters.
EQUALS = =
# The top-level source directory on which CMake was run.
CMAKE_SOURCE_DIR = "D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3"
# The top-level build directory on which CMake was run.
CMAKE_BINARY_DIR = "D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3\cmake-build-debug"
# Include any dependencies generated for this target.
include examples/CMakeFiles/gears.dir/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.obj: examples/CMakeFiles/gears.dir/flags.make
examples/CMakeFiles/gears.dir/gears.c.obj: examples/CMakeFiles/gears.dir/includes_C.rsp
examples/CMakeFiles/gears.dir/gears.c.obj: ../examples/gears.c
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir="D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3\cmake-build-debug\CMakeFiles" --progress-num=$(CMAKE_PROGRESS_1) "Building C object examples/CMakeFiles/gears.dir/gears.c.obj"
cd /d "D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3\cmake-build-debug\examples" && D:\Programme\MingW\mingw64\bin\gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles\gears.dir\gears.c.obj -c "D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3\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 /d "D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3\cmake-build-debug\examples" && D:\Programme\MingW\mingw64\bin\gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E "D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3\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 /d "D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3\cmake-build-debug\examples" && D:\Programme\MingW\mingw64\bin\gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S "D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3\examples\gears.c" -o CMakeFiles\gears.dir\gears.c.s
examples/CMakeFiles/gears.dir/glfw.rc.obj: examples/CMakeFiles/gears.dir/flags.make
examples/CMakeFiles/gears.dir/glfw.rc.obj: ../examples/glfw.rc
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir="D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3\cmake-build-debug\CMakeFiles" --progress-num=$(CMAKE_PROGRESS_2) "Building RC object examples/CMakeFiles/gears.dir/glfw.rc.obj"
cd /d "D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3\cmake-build-debug\examples" && D:\Programme\MingW\mingw64\bin\windres.exe -O coff $(RC_DEFINES) $(RC_INCLUDES) $(RC_FLAGS) "D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3\examples\glfw.rc" CMakeFiles\gears.dir\glfw.rc.obj
examples/CMakeFiles/gears.dir/__/deps/glad_gl.c.obj: examples/CMakeFiles/gears.dir/flags.make
examples/CMakeFiles/gears.dir/__/deps/glad_gl.c.obj: examples/CMakeFiles/gears.dir/includes_C.rsp
examples/CMakeFiles/gears.dir/__/deps/glad_gl.c.obj: ../deps/glad_gl.c
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir="D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3\cmake-build-debug\CMakeFiles" --progress-num=$(CMAKE_PROGRESS_3) "Building C object examples/CMakeFiles/gears.dir/__/deps/glad_gl.c.obj"
cd /d "D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3\cmake-build-debug\examples" && D:\Programme\MingW\mingw64\bin\gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles\gears.dir\__\deps\glad_gl.c.obj -c "D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3\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 /d "D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3\cmake-build-debug\examples" && D:\Programme\MingW\mingw64\bin\gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E "D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3\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 /d "D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3\cmake-build-debug\examples" && D:\Programme\MingW\mingw64\bin\gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S "D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3\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.obj" \
"CMakeFiles/gears.dir/glfw.rc.obj" \
"CMakeFiles/gears.dir/__/deps/glad_gl.c.obj"
# External object files for target gears
gears_EXTERNAL_OBJECTS =
examples/gears.exe: examples/CMakeFiles/gears.dir/gears.c.obj
examples/gears.exe: examples/CMakeFiles/gears.dir/glfw.rc.obj
examples/gears.exe: examples/CMakeFiles/gears.dir/__/deps/glad_gl.c.obj
examples/gears.exe: examples/CMakeFiles/gears.dir/build.make
examples/gears.exe: src/libglfw3.a
examples/gears.exe: examples/CMakeFiles/gears.dir/linklibs.rsp
examples/gears.exe: examples/CMakeFiles/gears.dir/objects1.rsp
examples/gears.exe: examples/CMakeFiles/gears.dir/link.txt
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --bold --progress-dir="D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3\cmake-build-debug\CMakeFiles" --progress-num=$(CMAKE_PROGRESS_4) "Linking C executable gears.exe"
cd /d "D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3\cmake-build-debug\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.exe
.PHONY : examples/CMakeFiles/gears.dir/build
examples/CMakeFiles/gears.dir/clean:
cd /d "D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3\cmake-build-debug\examples" && $(CMAKE_COMMAND) -P CMakeFiles\gears.dir\cmake_clean.cmake
.PHONY : examples/CMakeFiles/gears.dir/clean
examples/CMakeFiles/gears.dir/depend:
$(CMAKE_COMMAND) -E cmake_depends "MinGW Makefiles" "D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3" "D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3\examples" "D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3\cmake-build-debug" "D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3\cmake-build-debug\examples" "D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3\cmake-build-debug\examples\CMakeFiles\gears.dir\DependInfo.cmake" --color=$(COLOR)
.PHONY : examples/CMakeFiles/gears.dir/depend

View File

@ -0,0 +1,14 @@
file(REMOVE_RECURSE
"CMakeFiles/gears.dir/__/deps/glad_gl.c.obj"
"CMakeFiles/gears.dir/gears.c.obj"
"CMakeFiles/gears.dir/glfw.rc.obj"
"gears.exe"
"gears.exe.manifest"
"gears.pdb"
"libgears.dll.a"
)
# Per-language clean rules from dependency scanning.
foreach(lang C RC)
include(CMakeFiles/gears.dir/cmake_clean_${lang}.cmake OPTIONAL)
endforeach()

View File

@ -0,0 +1,2 @@
# Empty dependencies file for gears.
# This may be replaced when dependencies are built.

View File

@ -0,0 +1,17 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "MinGW Makefiles" Generator, CMake Version 3.15
# compile C with D:/Programme/MingW/mingw64/bin/gcc.exe
# compile RC with D:/Programme/MingW/mingw64/bin/windres.exe
C_FLAGS = -g
C_DEFINES =
C_INCLUDES = @CMakeFiles/gears.dir/includes_C.rsp
RC_FLAGS =
RC_DEFINES =
RC_INCLUDES = -I"D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3\deps" -I"D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3\include"

View File

@ -0,0 +1 @@
-I"D:/Niklas Birk/Dokumente/Programmierung/C/Informatikprojekt/glfw-3.3/deps" -I"D:/Niklas Birk/Dokumente/Programmierung/C/Informatikprojekt/glfw-3.3/include"

View File

@ -0,0 +1,3 @@
D:\Programme\JetBrains\CLion\bin\cmake\win\bin\cmake.exe -E remove -f CMakeFiles\gears.dir/objects.a
D:\Programme\MingW\mingw64\bin\ar.exe cr CMakeFiles\gears.dir/objects.a @CMakeFiles\gears.dir\objects1.rsp
D:\Programme\MingW\mingw64\bin\gcc.exe -g -mwindows -Wl,--whole-archive CMakeFiles\gears.dir/objects.a -Wl,--no-whole-archive -o gears.exe -Wl,--out-implib,libgears.dll.a -Wl,--major-image-version,0,--minor-image-version,0 @CMakeFiles\gears.dir\linklibs.rsp

View File

@ -0,0 +1 @@
../src/libglfw3.a -lkernel32 -luser32 -lgdi32 -lwinspool -lshell32 -lole32 -loleaut32 -luuid -lcomdlg32 -ladvapi32

View File

@ -0,0 +1 @@
CMakeFiles/gears.dir/gears.c.obj CMakeFiles/gears.dir/glfw.rc.obj CMakeFiles/gears.dir/__/deps/glad_gl.c.obj

View File

@ -0,0 +1,5 @@
CMAKE_PROGRESS_1 = 18
CMAKE_PROGRESS_2 = 19
CMAKE_PROGRESS_3 = 20
CMAKE_PROGRESS_4 =

View File

@ -0,0 +1,34 @@
# The set of languages for which implicit dependencies are needed:
set(CMAKE_DEPENDS_LANGUAGES
"C"
"RC"
)
# The set of files for implicit dependencies of each language:
set(CMAKE_DEPENDS_CHECK_C
"D:/Niklas Birk/Dokumente/Programmierung/C/Informatikprojekt/glfw-3.3/deps/glad_gl.c" "D:/Niklas Birk/Dokumente/Programmierung/C/Informatikprojekt/glfw-3.3/cmake-build-debug/examples/CMakeFiles/heightmap.dir/__/deps/glad_gl.c.obj"
"D:/Niklas Birk/Dokumente/Programmierung/C/Informatikprojekt/glfw-3.3/examples/heightmap.c" "D:/Niklas Birk/Dokumente/Programmierung/C/Informatikprojekt/glfw-3.3/cmake-build-debug/examples/CMakeFiles/heightmap.dir/heightmap.c.obj"
)
set(CMAKE_C_COMPILER_ID "GNU")
# The include file search paths:
set(CMAKE_C_TARGET_INCLUDE_PATH
"../deps"
"../include"
)
set(CMAKE_DEPENDS_CHECK_RC
"D:/Niklas Birk/Dokumente/Programmierung/C/Informatikprojekt/glfw-3.3/examples/glfw.rc" "D:/Niklas Birk/Dokumente/Programmierung/C/Informatikprojekt/glfw-3.3/cmake-build-debug/examples/CMakeFiles/heightmap.dir/glfw.rc.obj"
)
# The include file search paths:
set(CMAKE_RC_TARGET_INCLUDE_PATH
"../deps"
"../include"
)
# Targets to which this target links.
set(CMAKE_TARGET_LINKED_INFO_FILES
"D:/Niklas Birk/Dokumente/Programmierung/C/Informatikprojekt/glfw-3.3/cmake-build-debug/src/CMakeFiles/glfw.dir/DependInfo.cmake"
)
# Fortran module output directory.
set(CMAKE_Fortran_TARGET_MODULE_DIR "")

View File

@ -0,0 +1,124 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "MinGW Makefiles" Generator, CMake Version 3.15
# Delete rule output on recipe failure.
.DELETE_ON_ERROR:
#=============================================================================
# Special targets provided by cmake.
# Disable implicit rules so canonical targets will work.
.SUFFIXES:
# Remove some rules from gmake that .SUFFIXES does not remove.
SUFFIXES =
.SUFFIXES: .hpux_make_needs_suffix_list
# Suppress display of executed commands.
$(VERBOSE).SILENT:
# A target that is always out of date.
cmake_force:
.PHONY : cmake_force
#=============================================================================
# Set environment variables for the build.
SHELL = cmd.exe
# The CMake executable.
CMAKE_COMMAND = D:\Programme\JetBrains\CLion\bin\cmake\win\bin\cmake.exe
# The command to remove a file.
RM = D:\Programme\JetBrains\CLion\bin\cmake\win\bin\cmake.exe -E remove -f
# Escaping for special characters.
EQUALS = =
# The top-level source directory on which CMake was run.
CMAKE_SOURCE_DIR = "D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3"
# The top-level build directory on which CMake was run.
CMAKE_BINARY_DIR = "D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3\cmake-build-debug"
# Include any dependencies generated for this target.
include examples/CMakeFiles/heightmap.dir/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.obj: examples/CMakeFiles/heightmap.dir/flags.make
examples/CMakeFiles/heightmap.dir/heightmap.c.obj: examples/CMakeFiles/heightmap.dir/includes_C.rsp
examples/CMakeFiles/heightmap.dir/heightmap.c.obj: ../examples/heightmap.c
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir="D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3\cmake-build-debug\CMakeFiles" --progress-num=$(CMAKE_PROGRESS_1) "Building C object examples/CMakeFiles/heightmap.dir/heightmap.c.obj"
cd /d "D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3\cmake-build-debug\examples" && D:\Programme\MingW\mingw64\bin\gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles\heightmap.dir\heightmap.c.obj -c "D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3\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 /d "D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3\cmake-build-debug\examples" && D:\Programme\MingW\mingw64\bin\gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E "D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3\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 /d "D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3\cmake-build-debug\examples" && D:\Programme\MingW\mingw64\bin\gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S "D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3\examples\heightmap.c" -o CMakeFiles\heightmap.dir\heightmap.c.s
examples/CMakeFiles/heightmap.dir/glfw.rc.obj: examples/CMakeFiles/heightmap.dir/flags.make
examples/CMakeFiles/heightmap.dir/glfw.rc.obj: ../examples/glfw.rc
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir="D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3\cmake-build-debug\CMakeFiles" --progress-num=$(CMAKE_PROGRESS_2) "Building RC object examples/CMakeFiles/heightmap.dir/glfw.rc.obj"
cd /d "D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3\cmake-build-debug\examples" && D:\Programme\MingW\mingw64\bin\windres.exe -O coff $(RC_DEFINES) $(RC_INCLUDES) $(RC_FLAGS) "D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3\examples\glfw.rc" CMakeFiles\heightmap.dir\glfw.rc.obj
examples/CMakeFiles/heightmap.dir/__/deps/glad_gl.c.obj: examples/CMakeFiles/heightmap.dir/flags.make
examples/CMakeFiles/heightmap.dir/__/deps/glad_gl.c.obj: examples/CMakeFiles/heightmap.dir/includes_C.rsp
examples/CMakeFiles/heightmap.dir/__/deps/glad_gl.c.obj: ../deps/glad_gl.c
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir="D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3\cmake-build-debug\CMakeFiles" --progress-num=$(CMAKE_PROGRESS_3) "Building C object examples/CMakeFiles/heightmap.dir/__/deps/glad_gl.c.obj"
cd /d "D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3\cmake-build-debug\examples" && D:\Programme\MingW\mingw64\bin\gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles\heightmap.dir\__\deps\glad_gl.c.obj -c "D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3\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 /d "D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3\cmake-build-debug\examples" && D:\Programme\MingW\mingw64\bin\gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E "D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3\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 /d "D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3\cmake-build-debug\examples" && D:\Programme\MingW\mingw64\bin\gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S "D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3\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.obj" \
"CMakeFiles/heightmap.dir/glfw.rc.obj" \
"CMakeFiles/heightmap.dir/__/deps/glad_gl.c.obj"
# External object files for target heightmap
heightmap_EXTERNAL_OBJECTS =
examples/heightmap.exe: examples/CMakeFiles/heightmap.dir/heightmap.c.obj
examples/heightmap.exe: examples/CMakeFiles/heightmap.dir/glfw.rc.obj
examples/heightmap.exe: examples/CMakeFiles/heightmap.dir/__/deps/glad_gl.c.obj
examples/heightmap.exe: examples/CMakeFiles/heightmap.dir/build.make
examples/heightmap.exe: src/libglfw3.a
examples/heightmap.exe: examples/CMakeFiles/heightmap.dir/linklibs.rsp
examples/heightmap.exe: examples/CMakeFiles/heightmap.dir/objects1.rsp
examples/heightmap.exe: examples/CMakeFiles/heightmap.dir/link.txt
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --bold --progress-dir="D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3\cmake-build-debug\CMakeFiles" --progress-num=$(CMAKE_PROGRESS_4) "Linking C executable heightmap.exe"
cd /d "D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3\cmake-build-debug\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.exe
.PHONY : examples/CMakeFiles/heightmap.dir/build
examples/CMakeFiles/heightmap.dir/clean:
cd /d "D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3\cmake-build-debug\examples" && $(CMAKE_COMMAND) -P CMakeFiles\heightmap.dir\cmake_clean.cmake
.PHONY : examples/CMakeFiles/heightmap.dir/clean
examples/CMakeFiles/heightmap.dir/depend:
$(CMAKE_COMMAND) -E cmake_depends "MinGW Makefiles" "D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3" "D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3\examples" "D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3\cmake-build-debug" "D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3\cmake-build-debug\examples" "D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3\cmake-build-debug\examples\CMakeFiles\heightmap.dir\DependInfo.cmake" --color=$(COLOR)
.PHONY : examples/CMakeFiles/heightmap.dir/depend

View File

@ -0,0 +1,14 @@
file(REMOVE_RECURSE
"CMakeFiles/heightmap.dir/__/deps/glad_gl.c.obj"
"CMakeFiles/heightmap.dir/glfw.rc.obj"
"CMakeFiles/heightmap.dir/heightmap.c.obj"
"heightmap.exe"
"heightmap.exe.manifest"
"heightmap.pdb"
"libheightmap.dll.a"
)
# Per-language clean rules from dependency scanning.
foreach(lang C RC)
include(CMakeFiles/heightmap.dir/cmake_clean_${lang}.cmake OPTIONAL)
endforeach()

View File

@ -0,0 +1,2 @@
# Empty dependencies file for heightmap.
# This may be replaced when dependencies are built.

View File

@ -0,0 +1,17 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "MinGW Makefiles" Generator, CMake Version 3.15
# compile C with D:/Programme/MingW/mingw64/bin/gcc.exe
# compile RC with D:/Programme/MingW/mingw64/bin/windres.exe
C_FLAGS = -g
C_DEFINES =
C_INCLUDES = @CMakeFiles/heightmap.dir/includes_C.rsp
RC_FLAGS =
RC_DEFINES =
RC_INCLUDES = -I"D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3\deps" -I"D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3\include"

View File

@ -0,0 +1 @@
-I"D:/Niklas Birk/Dokumente/Programmierung/C/Informatikprojekt/glfw-3.3/deps" -I"D:/Niklas Birk/Dokumente/Programmierung/C/Informatikprojekt/glfw-3.3/include"

View File

@ -0,0 +1,3 @@
D:\Programme\JetBrains\CLion\bin\cmake\win\bin\cmake.exe -E remove -f CMakeFiles\heightmap.dir/objects.a
D:\Programme\MingW\mingw64\bin\ar.exe cr CMakeFiles\heightmap.dir/objects.a @CMakeFiles\heightmap.dir\objects1.rsp
D:\Programme\MingW\mingw64\bin\gcc.exe -g -mwindows -Wl,--whole-archive CMakeFiles\heightmap.dir/objects.a -Wl,--no-whole-archive -o heightmap.exe -Wl,--out-implib,libheightmap.dll.a -Wl,--major-image-version,0,--minor-image-version,0 @CMakeFiles\heightmap.dir\linklibs.rsp

View File

@ -0,0 +1 @@
../src/libglfw3.a -lkernel32 -luser32 -lgdi32 -lwinspool -lshell32 -lole32 -loleaut32 -luuid -lcomdlg32 -ladvapi32

View File

@ -0,0 +1 @@
CMakeFiles/heightmap.dir/heightmap.c.obj CMakeFiles/heightmap.dir/glfw.rc.obj CMakeFiles/heightmap.dir/__/deps/glad_gl.c.obj

View File

@ -0,0 +1,5 @@
CMAKE_PROGRESS_1 = 38
CMAKE_PROGRESS_2 = 39
CMAKE_PROGRESS_3 = 40
CMAKE_PROGRESS_4 =

View File

@ -0,0 +1,34 @@
# The set of languages for which implicit dependencies are needed:
set(CMAKE_DEPENDS_LANGUAGES
"C"
"RC"
)
# The set of files for implicit dependencies of each language:
set(CMAKE_DEPENDS_CHECK_C
"D:/Niklas Birk/Dokumente/Programmierung/C/Informatikprojekt/glfw-3.3/deps/glad_gl.c" "D:/Niklas Birk/Dokumente/Programmierung/C/Informatikprojekt/glfw-3.3/cmake-build-debug/examples/CMakeFiles/offscreen.dir/__/deps/glad_gl.c.obj"
"D:/Niklas Birk/Dokumente/Programmierung/C/Informatikprojekt/glfw-3.3/examples/offscreen.c" "D:/Niklas Birk/Dokumente/Programmierung/C/Informatikprojekt/glfw-3.3/cmake-build-debug/examples/CMakeFiles/offscreen.dir/offscreen.c.obj"
)
set(CMAKE_C_COMPILER_ID "GNU")
# The include file search paths:
set(CMAKE_C_TARGET_INCLUDE_PATH
"../deps"
"../include"
)
set(CMAKE_DEPENDS_CHECK_RC
"D:/Niklas Birk/Dokumente/Programmierung/C/Informatikprojekt/glfw-3.3/examples/glfw.rc" "D:/Niklas Birk/Dokumente/Programmierung/C/Informatikprojekt/glfw-3.3/cmake-build-debug/examples/CMakeFiles/offscreen.dir/glfw.rc.obj"
)
# The include file search paths:
set(CMAKE_RC_TARGET_INCLUDE_PATH
"../deps"
"../include"
)
# Targets to which this target links.
set(CMAKE_TARGET_LINKED_INFO_FILES
"D:/Niklas Birk/Dokumente/Programmierung/C/Informatikprojekt/glfw-3.3/cmake-build-debug/src/CMakeFiles/glfw.dir/DependInfo.cmake"
)
# Fortran module output directory.
set(CMAKE_Fortran_TARGET_MODULE_DIR "")

View File

@ -0,0 +1,124 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "MinGW Makefiles" Generator, CMake Version 3.15
# Delete rule output on recipe failure.
.DELETE_ON_ERROR:
#=============================================================================
# Special targets provided by cmake.
# Disable implicit rules so canonical targets will work.
.SUFFIXES:
# Remove some rules from gmake that .SUFFIXES does not remove.
SUFFIXES =
.SUFFIXES: .hpux_make_needs_suffix_list
# Suppress display of executed commands.
$(VERBOSE).SILENT:
# A target that is always out of date.
cmake_force:
.PHONY : cmake_force
#=============================================================================
# Set environment variables for the build.
SHELL = cmd.exe
# The CMake executable.
CMAKE_COMMAND = D:\Programme\JetBrains\CLion\bin\cmake\win\bin\cmake.exe
# The command to remove a file.
RM = D:\Programme\JetBrains\CLion\bin\cmake\win\bin\cmake.exe -E remove -f
# Escaping for special characters.
EQUALS = =
# The top-level source directory on which CMake was run.
CMAKE_SOURCE_DIR = "D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3"
# The top-level build directory on which CMake was run.
CMAKE_BINARY_DIR = "D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3\cmake-build-debug"
# Include any dependencies generated for this target.
include examples/CMakeFiles/offscreen.dir/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.obj: examples/CMakeFiles/offscreen.dir/flags.make
examples/CMakeFiles/offscreen.dir/offscreen.c.obj: examples/CMakeFiles/offscreen.dir/includes_C.rsp
examples/CMakeFiles/offscreen.dir/offscreen.c.obj: ../examples/offscreen.c
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir="D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3\cmake-build-debug\CMakeFiles" --progress-num=$(CMAKE_PROGRESS_1) "Building C object examples/CMakeFiles/offscreen.dir/offscreen.c.obj"
cd /d "D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3\cmake-build-debug\examples" && D:\Programme\MingW\mingw64\bin\gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles\offscreen.dir\offscreen.c.obj -c "D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3\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 /d "D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3\cmake-build-debug\examples" && D:\Programme\MingW\mingw64\bin\gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E "D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3\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 /d "D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3\cmake-build-debug\examples" && D:\Programme\MingW\mingw64\bin\gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S "D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3\examples\offscreen.c" -o CMakeFiles\offscreen.dir\offscreen.c.s
examples/CMakeFiles/offscreen.dir/glfw.rc.obj: examples/CMakeFiles/offscreen.dir/flags.make
examples/CMakeFiles/offscreen.dir/glfw.rc.obj: ../examples/glfw.rc
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir="D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3\cmake-build-debug\CMakeFiles" --progress-num=$(CMAKE_PROGRESS_2) "Building RC object examples/CMakeFiles/offscreen.dir/glfw.rc.obj"
cd /d "D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3\cmake-build-debug\examples" && D:\Programme\MingW\mingw64\bin\windres.exe -O coff $(RC_DEFINES) $(RC_INCLUDES) $(RC_FLAGS) "D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3\examples\glfw.rc" CMakeFiles\offscreen.dir\glfw.rc.obj
examples/CMakeFiles/offscreen.dir/__/deps/glad_gl.c.obj: examples/CMakeFiles/offscreen.dir/flags.make
examples/CMakeFiles/offscreen.dir/__/deps/glad_gl.c.obj: examples/CMakeFiles/offscreen.dir/includes_C.rsp
examples/CMakeFiles/offscreen.dir/__/deps/glad_gl.c.obj: ../deps/glad_gl.c
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir="D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3\cmake-build-debug\CMakeFiles" --progress-num=$(CMAKE_PROGRESS_3) "Building C object examples/CMakeFiles/offscreen.dir/__/deps/glad_gl.c.obj"
cd /d "D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3\cmake-build-debug\examples" && D:\Programme\MingW\mingw64\bin\gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles\offscreen.dir\__\deps\glad_gl.c.obj -c "D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3\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 /d "D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3\cmake-build-debug\examples" && D:\Programme\MingW\mingw64\bin\gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E "D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3\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 /d "D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3\cmake-build-debug\examples" && D:\Programme\MingW\mingw64\bin\gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S "D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3\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.obj" \
"CMakeFiles/offscreen.dir/glfw.rc.obj" \
"CMakeFiles/offscreen.dir/__/deps/glad_gl.c.obj"
# External object files for target offscreen
offscreen_EXTERNAL_OBJECTS =
examples/offscreen.exe: examples/CMakeFiles/offscreen.dir/offscreen.c.obj
examples/offscreen.exe: examples/CMakeFiles/offscreen.dir/glfw.rc.obj
examples/offscreen.exe: examples/CMakeFiles/offscreen.dir/__/deps/glad_gl.c.obj
examples/offscreen.exe: examples/CMakeFiles/offscreen.dir/build.make
examples/offscreen.exe: src/libglfw3.a
examples/offscreen.exe: examples/CMakeFiles/offscreen.dir/linklibs.rsp
examples/offscreen.exe: examples/CMakeFiles/offscreen.dir/objects1.rsp
examples/offscreen.exe: examples/CMakeFiles/offscreen.dir/link.txt
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --bold --progress-dir="D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3\cmake-build-debug\CMakeFiles" --progress-num=$(CMAKE_PROGRESS_4) "Linking C executable offscreen.exe"
cd /d "D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3\cmake-build-debug\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.exe
.PHONY : examples/CMakeFiles/offscreen.dir/build
examples/CMakeFiles/offscreen.dir/clean:
cd /d "D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3\cmake-build-debug\examples" && $(CMAKE_COMMAND) -P CMakeFiles\offscreen.dir\cmake_clean.cmake
.PHONY : examples/CMakeFiles/offscreen.dir/clean
examples/CMakeFiles/offscreen.dir/depend:
$(CMAKE_COMMAND) -E cmake_depends "MinGW Makefiles" "D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3" "D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3\examples" "D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3\cmake-build-debug" "D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3\cmake-build-debug\examples" "D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3\cmake-build-debug\examples\CMakeFiles\offscreen.dir\DependInfo.cmake" --color=$(COLOR)
.PHONY : examples/CMakeFiles/offscreen.dir/depend

View File

@ -0,0 +1,14 @@
file(REMOVE_RECURSE
"CMakeFiles/offscreen.dir/__/deps/glad_gl.c.obj"
"CMakeFiles/offscreen.dir/glfw.rc.obj"
"CMakeFiles/offscreen.dir/offscreen.c.obj"
"liboffscreen.dll.a"
"offscreen.exe"
"offscreen.exe.manifest"
"offscreen.pdb"
)
# Per-language clean rules from dependency scanning.
foreach(lang C RC)
include(CMakeFiles/offscreen.dir/cmake_clean_${lang}.cmake OPTIONAL)
endforeach()

View File

@ -0,0 +1,2 @@
# Empty dependencies file for offscreen.
# This may be replaced when dependencies are built.

View File

@ -0,0 +1,17 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "MinGW Makefiles" Generator, CMake Version 3.15
# compile C with D:/Programme/MingW/mingw64/bin/gcc.exe
# compile RC with D:/Programme/MingW/mingw64/bin/windres.exe
C_FLAGS = -g
C_DEFINES =
C_INCLUDES = @CMakeFiles/offscreen.dir/includes_C.rsp
RC_FLAGS =
RC_DEFINES =
RC_INCLUDES = -I"D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3\deps" -I"D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3\include"

View File

@ -0,0 +1 @@
-I"D:/Niklas Birk/Dokumente/Programmierung/C/Informatikprojekt/glfw-3.3/deps" -I"D:/Niklas Birk/Dokumente/Programmierung/C/Informatikprojekt/glfw-3.3/include"

View File

@ -0,0 +1,3 @@
D:\Programme\JetBrains\CLion\bin\cmake\win\bin\cmake.exe -E remove -f CMakeFiles\offscreen.dir/objects.a
D:\Programme\MingW\mingw64\bin\ar.exe cr CMakeFiles\offscreen.dir/objects.a @CMakeFiles\offscreen.dir\objects1.rsp
D:\Programme\MingW\mingw64\bin\gcc.exe -g -Wl,--whole-archive CMakeFiles\offscreen.dir/objects.a -Wl,--no-whole-archive -o offscreen.exe -Wl,--out-implib,liboffscreen.dll.a -Wl,--major-image-version,0,--minor-image-version,0 @CMakeFiles\offscreen.dir\linklibs.rsp

View File

@ -0,0 +1 @@
../src/libglfw3.a -lkernel32 -luser32 -lgdi32 -lwinspool -lshell32 -lole32 -loleaut32 -luuid -lcomdlg32 -ladvapi32

View File

@ -0,0 +1 @@
CMakeFiles/offscreen.dir/offscreen.c.obj CMakeFiles/offscreen.dir/glfw.rc.obj CMakeFiles/offscreen.dir/__/deps/glad_gl.c.obj

View File

@ -0,0 +1,5 @@
CMAKE_PROGRESS_1 = 59
CMAKE_PROGRESS_2 = 60
CMAKE_PROGRESS_3 =
CMAKE_PROGRESS_4 = 61

View File

@ -0,0 +1,36 @@
# The set of languages for which implicit dependencies are needed:
set(CMAKE_DEPENDS_LANGUAGES
"C"
"RC"
)
# The set of files for implicit dependencies of each language:
set(CMAKE_DEPENDS_CHECK_C
"D:/Niklas Birk/Dokumente/Programmierung/C/Informatikprojekt/glfw-3.3/deps/getopt.c" "D:/Niklas Birk/Dokumente/Programmierung/C/Informatikprojekt/glfw-3.3/cmake-build-debug/examples/CMakeFiles/particles.dir/__/deps/getopt.c.obj"
"D:/Niklas Birk/Dokumente/Programmierung/C/Informatikprojekt/glfw-3.3/deps/glad_gl.c" "D:/Niklas Birk/Dokumente/Programmierung/C/Informatikprojekt/glfw-3.3/cmake-build-debug/examples/CMakeFiles/particles.dir/__/deps/glad_gl.c.obj"
"D:/Niklas Birk/Dokumente/Programmierung/C/Informatikprojekt/glfw-3.3/deps/tinycthread.c" "D:/Niklas Birk/Dokumente/Programmierung/C/Informatikprojekt/glfw-3.3/cmake-build-debug/examples/CMakeFiles/particles.dir/__/deps/tinycthread.c.obj"
"D:/Niklas Birk/Dokumente/Programmierung/C/Informatikprojekt/glfw-3.3/examples/particles.c" "D:/Niklas Birk/Dokumente/Programmierung/C/Informatikprojekt/glfw-3.3/cmake-build-debug/examples/CMakeFiles/particles.dir/particles.c.obj"
)
set(CMAKE_C_COMPILER_ID "GNU")
# The include file search paths:
set(CMAKE_C_TARGET_INCLUDE_PATH
"../deps"
"../include"
)
set(CMAKE_DEPENDS_CHECK_RC
"D:/Niklas Birk/Dokumente/Programmierung/C/Informatikprojekt/glfw-3.3/examples/glfw.rc" "D:/Niklas Birk/Dokumente/Programmierung/C/Informatikprojekt/glfw-3.3/cmake-build-debug/examples/CMakeFiles/particles.dir/glfw.rc.obj"
)
# The include file search paths:
set(CMAKE_RC_TARGET_INCLUDE_PATH
"../deps"
"../include"
)
# Targets to which this target links.
set(CMAKE_TARGET_LINKED_INFO_FILES
"D:/Niklas Birk/Dokumente/Programmierung/C/Informatikprojekt/glfw-3.3/cmake-build-debug/src/CMakeFiles/glfw.dir/DependInfo.cmake"
)
# Fortran module output directory.
set(CMAKE_Fortran_TARGET_MODULE_DIR "")

View File

@ -0,0 +1,156 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "MinGW Makefiles" Generator, CMake Version 3.15
# Delete rule output on recipe failure.
.DELETE_ON_ERROR:
#=============================================================================
# Special targets provided by cmake.
# Disable implicit rules so canonical targets will work.
.SUFFIXES:
# Remove some rules from gmake that .SUFFIXES does not remove.
SUFFIXES =
.SUFFIXES: .hpux_make_needs_suffix_list
# Suppress display of executed commands.
$(VERBOSE).SILENT:
# A target that is always out of date.
cmake_force:
.PHONY : cmake_force
#=============================================================================
# Set environment variables for the build.
SHELL = cmd.exe
# The CMake executable.
CMAKE_COMMAND = D:\Programme\JetBrains\CLion\bin\cmake\win\bin\cmake.exe
# The command to remove a file.
RM = D:\Programme\JetBrains\CLion\bin\cmake\win\bin\cmake.exe -E remove -f
# Escaping for special characters.
EQUALS = =
# The top-level source directory on which CMake was run.
CMAKE_SOURCE_DIR = "D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3"
# The top-level build directory on which CMake was run.
CMAKE_BINARY_DIR = "D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3\cmake-build-debug"
# Include any dependencies generated for this target.
include examples/CMakeFiles/particles.dir/depend.make
# Include the progress variables for this target.
include examples/CMakeFiles/particles.dir/progress.make
# Include the compile flags for this target's objects.
include examples/CMakeFiles/particles.dir/flags.make
examples/CMakeFiles/particles.dir/particles.c.obj: examples/CMakeFiles/particles.dir/flags.make
examples/CMakeFiles/particles.dir/particles.c.obj: examples/CMakeFiles/particles.dir/includes_C.rsp
examples/CMakeFiles/particles.dir/particles.c.obj: ../examples/particles.c
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir="D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3\cmake-build-debug\CMakeFiles" --progress-num=$(CMAKE_PROGRESS_1) "Building C object examples/CMakeFiles/particles.dir/particles.c.obj"
cd /d "D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3\cmake-build-debug\examples" && D:\Programme\MingW\mingw64\bin\gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles\particles.dir\particles.c.obj -c "D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3\examples\particles.c"
examples/CMakeFiles/particles.dir/particles.c.i: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/particles.dir/particles.c.i"
cd /d "D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3\cmake-build-debug\examples" && D:\Programme\MingW\mingw64\bin\gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E "D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3\examples\particles.c" > CMakeFiles\particles.dir\particles.c.i
examples/CMakeFiles/particles.dir/particles.c.s: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/particles.dir/particles.c.s"
cd /d "D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3\cmake-build-debug\examples" && D:\Programme\MingW\mingw64\bin\gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S "D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3\examples\particles.c" -o CMakeFiles\particles.dir\particles.c.s
examples/CMakeFiles/particles.dir/glfw.rc.obj: examples/CMakeFiles/particles.dir/flags.make
examples/CMakeFiles/particles.dir/glfw.rc.obj: ../examples/glfw.rc
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir="D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3\cmake-build-debug\CMakeFiles" --progress-num=$(CMAKE_PROGRESS_2) "Building RC object examples/CMakeFiles/particles.dir/glfw.rc.obj"
cd /d "D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3\cmake-build-debug\examples" && D:\Programme\MingW\mingw64\bin\windres.exe -O coff $(RC_DEFINES) $(RC_INCLUDES) $(RC_FLAGS) "D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3\examples\glfw.rc" CMakeFiles\particles.dir\glfw.rc.obj
examples/CMakeFiles/particles.dir/__/deps/tinycthread.c.obj: examples/CMakeFiles/particles.dir/flags.make
examples/CMakeFiles/particles.dir/__/deps/tinycthread.c.obj: examples/CMakeFiles/particles.dir/includes_C.rsp
examples/CMakeFiles/particles.dir/__/deps/tinycthread.c.obj: ../deps/tinycthread.c
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir="D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3\cmake-build-debug\CMakeFiles" --progress-num=$(CMAKE_PROGRESS_3) "Building C object examples/CMakeFiles/particles.dir/__/deps/tinycthread.c.obj"
cd /d "D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3\cmake-build-debug\examples" && D:\Programme\MingW\mingw64\bin\gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles\particles.dir\__\deps\tinycthread.c.obj -c "D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3\deps\tinycthread.c"
examples/CMakeFiles/particles.dir/__/deps/tinycthread.c.i: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/particles.dir/__/deps/tinycthread.c.i"
cd /d "D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3\cmake-build-debug\examples" && D:\Programme\MingW\mingw64\bin\gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E "D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3\deps\tinycthread.c" > CMakeFiles\particles.dir\__\deps\tinycthread.c.i
examples/CMakeFiles/particles.dir/__/deps/tinycthread.c.s: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/particles.dir/__/deps/tinycthread.c.s"
cd /d "D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3\cmake-build-debug\examples" && D:\Programme\MingW\mingw64\bin\gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S "D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3\deps\tinycthread.c" -o CMakeFiles\particles.dir\__\deps\tinycthread.c.s
examples/CMakeFiles/particles.dir/__/deps/getopt.c.obj: examples/CMakeFiles/particles.dir/flags.make
examples/CMakeFiles/particles.dir/__/deps/getopt.c.obj: examples/CMakeFiles/particles.dir/includes_C.rsp
examples/CMakeFiles/particles.dir/__/deps/getopt.c.obj: ../deps/getopt.c
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir="D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3\cmake-build-debug\CMakeFiles" --progress-num=$(CMAKE_PROGRESS_4) "Building C object examples/CMakeFiles/particles.dir/__/deps/getopt.c.obj"
cd /d "D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3\cmake-build-debug\examples" && D:\Programme\MingW\mingw64\bin\gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles\particles.dir\__\deps\getopt.c.obj -c "D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3\deps\getopt.c"
examples/CMakeFiles/particles.dir/__/deps/getopt.c.i: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/particles.dir/__/deps/getopt.c.i"
cd /d "D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3\cmake-build-debug\examples" && D:\Programme\MingW\mingw64\bin\gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E "D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3\deps\getopt.c" > CMakeFiles\particles.dir\__\deps\getopt.c.i
examples/CMakeFiles/particles.dir/__/deps/getopt.c.s: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/particles.dir/__/deps/getopt.c.s"
cd /d "D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3\cmake-build-debug\examples" && D:\Programme\MingW\mingw64\bin\gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S "D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3\deps\getopt.c" -o CMakeFiles\particles.dir\__\deps\getopt.c.s
examples/CMakeFiles/particles.dir/__/deps/glad_gl.c.obj: examples/CMakeFiles/particles.dir/flags.make
examples/CMakeFiles/particles.dir/__/deps/glad_gl.c.obj: examples/CMakeFiles/particles.dir/includes_C.rsp
examples/CMakeFiles/particles.dir/__/deps/glad_gl.c.obj: ../deps/glad_gl.c
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir="D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3\cmake-build-debug\CMakeFiles" --progress-num=$(CMAKE_PROGRESS_5) "Building C object examples/CMakeFiles/particles.dir/__/deps/glad_gl.c.obj"
cd /d "D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3\cmake-build-debug\examples" && D:\Programme\MingW\mingw64\bin\gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles\particles.dir\__\deps\glad_gl.c.obj -c "D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3\deps\glad_gl.c"
examples/CMakeFiles/particles.dir/__/deps/glad_gl.c.i: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/particles.dir/__/deps/glad_gl.c.i"
cd /d "D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3\cmake-build-debug\examples" && D:\Programme\MingW\mingw64\bin\gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E "D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3\deps\glad_gl.c" > CMakeFiles\particles.dir\__\deps\glad_gl.c.i
examples/CMakeFiles/particles.dir/__/deps/glad_gl.c.s: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/particles.dir/__/deps/glad_gl.c.s"
cd /d "D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3\cmake-build-debug\examples" && D:\Programme\MingW\mingw64\bin\gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S "D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3\deps\glad_gl.c" -o CMakeFiles\particles.dir\__\deps\glad_gl.c.s
# Object files for target particles
particles_OBJECTS = \
"CMakeFiles/particles.dir/particles.c.obj" \
"CMakeFiles/particles.dir/glfw.rc.obj" \
"CMakeFiles/particles.dir/__/deps/tinycthread.c.obj" \
"CMakeFiles/particles.dir/__/deps/getopt.c.obj" \
"CMakeFiles/particles.dir/__/deps/glad_gl.c.obj"
# External object files for target particles
particles_EXTERNAL_OBJECTS =
examples/particles.exe: examples/CMakeFiles/particles.dir/particles.c.obj
examples/particles.exe: examples/CMakeFiles/particles.dir/glfw.rc.obj
examples/particles.exe: examples/CMakeFiles/particles.dir/__/deps/tinycthread.c.obj
examples/particles.exe: examples/CMakeFiles/particles.dir/__/deps/getopt.c.obj
examples/particles.exe: examples/CMakeFiles/particles.dir/__/deps/glad_gl.c.obj
examples/particles.exe: examples/CMakeFiles/particles.dir/build.make
examples/particles.exe: src/libglfw3.a
examples/particles.exe: examples/CMakeFiles/particles.dir/linklibs.rsp
examples/particles.exe: examples/CMakeFiles/particles.dir/objects1.rsp
examples/particles.exe: examples/CMakeFiles/particles.dir/link.txt
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --bold --progress-dir="D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3\cmake-build-debug\CMakeFiles" --progress-num=$(CMAKE_PROGRESS_6) "Linking C executable particles.exe"
cd /d "D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3\cmake-build-debug\examples" && $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles\particles.dir\link.txt --verbose=$(VERBOSE)
# Rule to build all files generated by this target.
examples/CMakeFiles/particles.dir/build: examples/particles.exe
.PHONY : examples/CMakeFiles/particles.dir/build
examples/CMakeFiles/particles.dir/clean:
cd /d "D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3\cmake-build-debug\examples" && $(CMAKE_COMMAND) -P CMakeFiles\particles.dir\cmake_clean.cmake
.PHONY : examples/CMakeFiles/particles.dir/clean
examples/CMakeFiles/particles.dir/depend:
$(CMAKE_COMMAND) -E cmake_depends "MinGW Makefiles" "D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3" "D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3\examples" "D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3\cmake-build-debug" "D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3\cmake-build-debug\examples" "D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3\cmake-build-debug\examples\CMakeFiles\particles.dir\DependInfo.cmake" --color=$(COLOR)
.PHONY : examples/CMakeFiles/particles.dir/depend

View File

@ -0,0 +1,16 @@
file(REMOVE_RECURSE
"CMakeFiles/particles.dir/__/deps/getopt.c.obj"
"CMakeFiles/particles.dir/__/deps/glad_gl.c.obj"
"CMakeFiles/particles.dir/__/deps/tinycthread.c.obj"
"CMakeFiles/particles.dir/glfw.rc.obj"
"CMakeFiles/particles.dir/particles.c.obj"
"libparticles.dll.a"
"particles.exe"
"particles.exe.manifest"
"particles.pdb"
)
# Per-language clean rules from dependency scanning.
foreach(lang C RC)
include(CMakeFiles/particles.dir/cmake_clean_${lang}.cmake OPTIONAL)
endforeach()

View File

@ -0,0 +1,2 @@
# Empty dependencies file for particles.
# This may be replaced when dependencies are built.

View File

@ -0,0 +1,17 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "MinGW Makefiles" Generator, CMake Version 3.15
# compile C with D:/Programme/MingW/mingw64/bin/gcc.exe
# compile RC with D:/Programme/MingW/mingw64/bin/windres.exe
C_FLAGS = -g
C_DEFINES =
C_INCLUDES = @CMakeFiles/particles.dir/includes_C.rsp
RC_FLAGS =
RC_DEFINES =
RC_INCLUDES = -I"D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3\deps" -I"D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3\include"

View File

@ -0,0 +1 @@
-I"D:/Niklas Birk/Dokumente/Programmierung/C/Informatikprojekt/glfw-3.3/deps" -I"D:/Niklas Birk/Dokumente/Programmierung/C/Informatikprojekt/glfw-3.3/include"

View File

@ -0,0 +1,3 @@
D:\Programme\JetBrains\CLion\bin\cmake\win\bin\cmake.exe -E remove -f CMakeFiles\particles.dir/objects.a
D:\Programme\MingW\mingw64\bin\ar.exe cr CMakeFiles\particles.dir/objects.a @CMakeFiles\particles.dir\objects1.rsp
D:\Programme\MingW\mingw64\bin\gcc.exe -g -mwindows -Wl,--whole-archive CMakeFiles\particles.dir/objects.a -Wl,--no-whole-archive -o particles.exe -Wl,--out-implib,libparticles.dll.a -Wl,--major-image-version,0,--minor-image-version,0 @CMakeFiles\particles.dir\linklibs.rsp

View File

@ -0,0 +1 @@
../src/libglfw3.a -lkernel32 -luser32 -lgdi32 -lwinspool -lshell32 -lole32 -loleaut32 -luuid -lcomdlg32 -ladvapi32

View File

@ -0,0 +1 @@
CMakeFiles/particles.dir/particles.c.obj CMakeFiles/particles.dir/glfw.rc.obj CMakeFiles/particles.dir/__/deps/tinycthread.c.obj CMakeFiles/particles.dir/__/deps/getopt.c.obj CMakeFiles/particles.dir/__/deps/glad_gl.c.obj

View File

@ -0,0 +1 @@
41

View File

@ -0,0 +1,34 @@
# The set of languages for which implicit dependencies are needed:
set(CMAKE_DEPENDS_LANGUAGES
"C"
"RC"
)
# The set of files for implicit dependencies of each language:
set(CMAKE_DEPENDS_CHECK_C
"D:/Niklas Birk/Dokumente/Programmierung/C/Informatikprojekt/glfw-3.3/deps/glad_gl.c" "D:/Niklas Birk/Dokumente/Programmierung/C/Informatikprojekt/glfw-3.3/cmake-build-debug/examples/CMakeFiles/sharing.dir/__/deps/glad_gl.c.obj"
"D:/Niklas Birk/Dokumente/Programmierung/C/Informatikprojekt/glfw-3.3/examples/sharing.c" "D:/Niklas Birk/Dokumente/Programmierung/C/Informatikprojekt/glfw-3.3/cmake-build-debug/examples/CMakeFiles/sharing.dir/sharing.c.obj"
)
set(CMAKE_C_COMPILER_ID "GNU")
# The include file search paths:
set(CMAKE_C_TARGET_INCLUDE_PATH
"../deps"
"../include"
)
set(CMAKE_DEPENDS_CHECK_RC
"D:/Niklas Birk/Dokumente/Programmierung/C/Informatikprojekt/glfw-3.3/examples/glfw.rc" "D:/Niklas Birk/Dokumente/Programmierung/C/Informatikprojekt/glfw-3.3/cmake-build-debug/examples/CMakeFiles/sharing.dir/glfw.rc.obj"
)
# The include file search paths:
set(CMAKE_RC_TARGET_INCLUDE_PATH
"../deps"
"../include"
)
# Targets to which this target links.
set(CMAKE_TARGET_LINKED_INFO_FILES
"D:/Niklas Birk/Dokumente/Programmierung/C/Informatikprojekt/glfw-3.3/cmake-build-debug/src/CMakeFiles/glfw.dir/DependInfo.cmake"
)
# Fortran module output directory.
set(CMAKE_Fortran_TARGET_MODULE_DIR "")

View File

@ -0,0 +1,124 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "MinGW Makefiles" Generator, CMake Version 3.15
# Delete rule output on recipe failure.
.DELETE_ON_ERROR:
#=============================================================================
# Special targets provided by cmake.
# Disable implicit rules so canonical targets will work.
.SUFFIXES:
# Remove some rules from gmake that .SUFFIXES does not remove.
SUFFIXES =
.SUFFIXES: .hpux_make_needs_suffix_list
# Suppress display of executed commands.
$(VERBOSE).SILENT:
# A target that is always out of date.
cmake_force:
.PHONY : cmake_force
#=============================================================================
# Set environment variables for the build.
SHELL = cmd.exe
# The CMake executable.
CMAKE_COMMAND = D:\Programme\JetBrains\CLion\bin\cmake\win\bin\cmake.exe
# The command to remove a file.
RM = D:\Programme\JetBrains\CLion\bin\cmake\win\bin\cmake.exe -E remove -f
# Escaping for special characters.
EQUALS = =
# The top-level source directory on which CMake was run.
CMAKE_SOURCE_DIR = "D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3"
# The top-level build directory on which CMake was run.
CMAKE_BINARY_DIR = "D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3\cmake-build-debug"
# Include any dependencies generated for this target.
include examples/CMakeFiles/sharing.dir/depend.make
# Include the progress variables for this target.
include examples/CMakeFiles/sharing.dir/progress.make
# Include the compile flags for this target's objects.
include examples/CMakeFiles/sharing.dir/flags.make
examples/CMakeFiles/sharing.dir/sharing.c.obj: examples/CMakeFiles/sharing.dir/flags.make
examples/CMakeFiles/sharing.dir/sharing.c.obj: examples/CMakeFiles/sharing.dir/includes_C.rsp
examples/CMakeFiles/sharing.dir/sharing.c.obj: ../examples/sharing.c
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir="D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3\cmake-build-debug\CMakeFiles" --progress-num=$(CMAKE_PROGRESS_1) "Building C object examples/CMakeFiles/sharing.dir/sharing.c.obj"
cd /d "D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3\cmake-build-debug\examples" && D:\Programme\MingW\mingw64\bin\gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles\sharing.dir\sharing.c.obj -c "D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3\examples\sharing.c"
examples/CMakeFiles/sharing.dir/sharing.c.i: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/sharing.dir/sharing.c.i"
cd /d "D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3\cmake-build-debug\examples" && D:\Programme\MingW\mingw64\bin\gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E "D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3\examples\sharing.c" > CMakeFiles\sharing.dir\sharing.c.i
examples/CMakeFiles/sharing.dir/sharing.c.s: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/sharing.dir/sharing.c.s"
cd /d "D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3\cmake-build-debug\examples" && D:\Programme\MingW\mingw64\bin\gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S "D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3\examples\sharing.c" -o CMakeFiles\sharing.dir\sharing.c.s
examples/CMakeFiles/sharing.dir/glfw.rc.obj: examples/CMakeFiles/sharing.dir/flags.make
examples/CMakeFiles/sharing.dir/glfw.rc.obj: ../examples/glfw.rc
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir="D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3\cmake-build-debug\CMakeFiles" --progress-num=$(CMAKE_PROGRESS_2) "Building RC object examples/CMakeFiles/sharing.dir/glfw.rc.obj"
cd /d "D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3\cmake-build-debug\examples" && D:\Programme\MingW\mingw64\bin\windres.exe -O coff $(RC_DEFINES) $(RC_INCLUDES) $(RC_FLAGS) "D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3\examples\glfw.rc" CMakeFiles\sharing.dir\glfw.rc.obj
examples/CMakeFiles/sharing.dir/__/deps/glad_gl.c.obj: examples/CMakeFiles/sharing.dir/flags.make
examples/CMakeFiles/sharing.dir/__/deps/glad_gl.c.obj: examples/CMakeFiles/sharing.dir/includes_C.rsp
examples/CMakeFiles/sharing.dir/__/deps/glad_gl.c.obj: ../deps/glad_gl.c
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir="D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3\cmake-build-debug\CMakeFiles" --progress-num=$(CMAKE_PROGRESS_3) "Building C object examples/CMakeFiles/sharing.dir/__/deps/glad_gl.c.obj"
cd /d "D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3\cmake-build-debug\examples" && D:\Programme\MingW\mingw64\bin\gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles\sharing.dir\__\deps\glad_gl.c.obj -c "D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3\deps\glad_gl.c"
examples/CMakeFiles/sharing.dir/__/deps/glad_gl.c.i: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/sharing.dir/__/deps/glad_gl.c.i"
cd /d "D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3\cmake-build-debug\examples" && D:\Programme\MingW\mingw64\bin\gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E "D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3\deps\glad_gl.c" > CMakeFiles\sharing.dir\__\deps\glad_gl.c.i
examples/CMakeFiles/sharing.dir/__/deps/glad_gl.c.s: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/sharing.dir/__/deps/glad_gl.c.s"
cd /d "D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3\cmake-build-debug\examples" && D:\Programme\MingW\mingw64\bin\gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S "D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3\deps\glad_gl.c" -o CMakeFiles\sharing.dir\__\deps\glad_gl.c.s
# Object files for target sharing
sharing_OBJECTS = \
"CMakeFiles/sharing.dir/sharing.c.obj" \
"CMakeFiles/sharing.dir/glfw.rc.obj" \
"CMakeFiles/sharing.dir/__/deps/glad_gl.c.obj"
# External object files for target sharing
sharing_EXTERNAL_OBJECTS =
examples/sharing.exe: examples/CMakeFiles/sharing.dir/sharing.c.obj
examples/sharing.exe: examples/CMakeFiles/sharing.dir/glfw.rc.obj
examples/sharing.exe: examples/CMakeFiles/sharing.dir/__/deps/glad_gl.c.obj
examples/sharing.exe: examples/CMakeFiles/sharing.dir/build.make
examples/sharing.exe: src/libglfw3.a
examples/sharing.exe: examples/CMakeFiles/sharing.dir/linklibs.rsp
examples/sharing.exe: examples/CMakeFiles/sharing.dir/objects1.rsp
examples/sharing.exe: examples/CMakeFiles/sharing.dir/link.txt
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --bold --progress-dir="D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3\cmake-build-debug\CMakeFiles" --progress-num=$(CMAKE_PROGRESS_4) "Linking C executable sharing.exe"
cd /d "D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3\cmake-build-debug\examples" && $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles\sharing.dir\link.txt --verbose=$(VERBOSE)
# Rule to build all files generated by this target.
examples/CMakeFiles/sharing.dir/build: examples/sharing.exe
.PHONY : examples/CMakeFiles/sharing.dir/build
examples/CMakeFiles/sharing.dir/clean:
cd /d "D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3\cmake-build-debug\examples" && $(CMAKE_COMMAND) -P CMakeFiles\sharing.dir\cmake_clean.cmake
.PHONY : examples/CMakeFiles/sharing.dir/clean
examples/CMakeFiles/sharing.dir/depend:
$(CMAKE_COMMAND) -E cmake_depends "MinGW Makefiles" "D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3" "D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3\examples" "D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3\cmake-build-debug" "D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3\cmake-build-debug\examples" "D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3\cmake-build-debug\examples\CMakeFiles\sharing.dir\DependInfo.cmake" --color=$(COLOR)
.PHONY : examples/CMakeFiles/sharing.dir/depend

View File

@ -0,0 +1,14 @@
file(REMOVE_RECURSE
"CMakeFiles/sharing.dir/__/deps/glad_gl.c.obj"
"CMakeFiles/sharing.dir/glfw.rc.obj"
"CMakeFiles/sharing.dir/sharing.c.obj"
"libsharing.dll.a"
"sharing.exe"
"sharing.exe.manifest"
"sharing.pdb"
)
# Per-language clean rules from dependency scanning.
foreach(lang C RC)
include(CMakeFiles/sharing.dir/cmake_clean_${lang}.cmake OPTIONAL)
endforeach()

View File

@ -0,0 +1,2 @@
# Empty dependencies file for sharing.
# This may be replaced when dependencies are built.

View File

@ -0,0 +1,17 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "MinGW Makefiles" Generator, CMake Version 3.15
# compile C with D:/Programme/MingW/mingw64/bin/gcc.exe
# compile RC with D:/Programme/MingW/mingw64/bin/windres.exe
C_FLAGS = -g
C_DEFINES =
C_INCLUDES = @CMakeFiles/sharing.dir/includes_C.rsp
RC_FLAGS =
RC_DEFINES =
RC_INCLUDES = -I"D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3\deps" -I"D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3\include"

View File

@ -0,0 +1 @@
-I"D:/Niklas Birk/Dokumente/Programmierung/C/Informatikprojekt/glfw-3.3/deps" -I"D:/Niklas Birk/Dokumente/Programmierung/C/Informatikprojekt/glfw-3.3/include"

View File

@ -0,0 +1,3 @@
D:\Programme\JetBrains\CLion\bin\cmake\win\bin\cmake.exe -E remove -f CMakeFiles\sharing.dir/objects.a
D:\Programme\MingW\mingw64\bin\ar.exe cr CMakeFiles\sharing.dir/objects.a @CMakeFiles\sharing.dir\objects1.rsp
D:\Programme\MingW\mingw64\bin\gcc.exe -g -mwindows -Wl,--whole-archive CMakeFiles\sharing.dir/objects.a -Wl,--no-whole-archive -o sharing.exe -Wl,--out-implib,libsharing.dll.a -Wl,--major-image-version,0,--minor-image-version,0 @CMakeFiles\sharing.dir\linklibs.rsp

View File

@ -0,0 +1 @@
../src/libglfw3.a -lkernel32 -luser32 -lgdi32 -lwinspool -lshell32 -lole32 -loleaut32 -luuid -lcomdlg32 -ladvapi32

View File

@ -0,0 +1 @@
CMakeFiles/sharing.dir/sharing.c.obj CMakeFiles/sharing.dir/glfw.rc.obj CMakeFiles/sharing.dir/__/deps/glad_gl.c.obj

View File

@ -0,0 +1,5 @@
CMAKE_PROGRESS_1 = 72
CMAKE_PROGRESS_2 =
CMAKE_PROGRESS_3 = 73
CMAKE_PROGRESS_4 = 74

View File

@ -0,0 +1,34 @@
# The set of languages for which implicit dependencies are needed:
set(CMAKE_DEPENDS_LANGUAGES
"C"
"RC"
)
# The set of files for implicit dependencies of each language:
set(CMAKE_DEPENDS_CHECK_C
"D:/Niklas Birk/Dokumente/Programmierung/C/Informatikprojekt/glfw-3.3/deps/glad_gl.c" "D:/Niklas Birk/Dokumente/Programmierung/C/Informatikprojekt/glfw-3.3/cmake-build-debug/examples/CMakeFiles/simple.dir/__/deps/glad_gl.c.obj"
"D:/Niklas Birk/Dokumente/Programmierung/C/Informatikprojekt/glfw-3.3/examples/simple.c" "D:/Niklas Birk/Dokumente/Programmierung/C/Informatikprojekt/glfw-3.3/cmake-build-debug/examples/CMakeFiles/simple.dir/simple.c.obj"
)
set(CMAKE_C_COMPILER_ID "GNU")
# The include file search paths:
set(CMAKE_C_TARGET_INCLUDE_PATH
"../deps"
"../include"
)
set(CMAKE_DEPENDS_CHECK_RC
"D:/Niklas Birk/Dokumente/Programmierung/C/Informatikprojekt/glfw-3.3/examples/glfw.rc" "D:/Niklas Birk/Dokumente/Programmierung/C/Informatikprojekt/glfw-3.3/cmake-build-debug/examples/CMakeFiles/simple.dir/glfw.rc.obj"
)
# The include file search paths:
set(CMAKE_RC_TARGET_INCLUDE_PATH
"../deps"
"../include"
)
# Targets to which this target links.
set(CMAKE_TARGET_LINKED_INFO_FILES
"D:/Niklas Birk/Dokumente/Programmierung/C/Informatikprojekt/glfw-3.3/cmake-build-debug/src/CMakeFiles/glfw.dir/DependInfo.cmake"
)
# Fortran module output directory.
set(CMAKE_Fortran_TARGET_MODULE_DIR "")

View File

@ -0,0 +1,124 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "MinGW Makefiles" Generator, CMake Version 3.15
# Delete rule output on recipe failure.
.DELETE_ON_ERROR:
#=============================================================================
# Special targets provided by cmake.
# Disable implicit rules so canonical targets will work.
.SUFFIXES:
# Remove some rules from gmake that .SUFFIXES does not remove.
SUFFIXES =
.SUFFIXES: .hpux_make_needs_suffix_list
# Suppress display of executed commands.
$(VERBOSE).SILENT:
# A target that is always out of date.
cmake_force:
.PHONY : cmake_force
#=============================================================================
# Set environment variables for the build.
SHELL = cmd.exe
# The CMake executable.
CMAKE_COMMAND = D:\Programme\JetBrains\CLion\bin\cmake\win\bin\cmake.exe
# The command to remove a file.
RM = D:\Programme\JetBrains\CLion\bin\cmake\win\bin\cmake.exe -E remove -f
# Escaping for special characters.
EQUALS = =
# The top-level source directory on which CMake was run.
CMAKE_SOURCE_DIR = "D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3"
# The top-level build directory on which CMake was run.
CMAKE_BINARY_DIR = "D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3\cmake-build-debug"
# Include any dependencies generated for this target.
include examples/CMakeFiles/simple.dir/depend.make
# Include the progress variables for this target.
include examples/CMakeFiles/simple.dir/progress.make
# Include the compile flags for this target's objects.
include examples/CMakeFiles/simple.dir/flags.make
examples/CMakeFiles/simple.dir/simple.c.obj: examples/CMakeFiles/simple.dir/flags.make
examples/CMakeFiles/simple.dir/simple.c.obj: examples/CMakeFiles/simple.dir/includes_C.rsp
examples/CMakeFiles/simple.dir/simple.c.obj: ../examples/simple.c
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir="D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3\cmake-build-debug\CMakeFiles" --progress-num=$(CMAKE_PROGRESS_1) "Building C object examples/CMakeFiles/simple.dir/simple.c.obj"
cd /d "D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3\cmake-build-debug\examples" && D:\Programme\MingW\mingw64\bin\gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles\simple.dir\simple.c.obj -c "D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3\examples\simple.c"
examples/CMakeFiles/simple.dir/simple.c.i: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/simple.dir/simple.c.i"
cd /d "D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3\cmake-build-debug\examples" && D:\Programme\MingW\mingw64\bin\gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E "D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3\examples\simple.c" > CMakeFiles\simple.dir\simple.c.i
examples/CMakeFiles/simple.dir/simple.c.s: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/simple.dir/simple.c.s"
cd /d "D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3\cmake-build-debug\examples" && D:\Programme\MingW\mingw64\bin\gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S "D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3\examples\simple.c" -o CMakeFiles\simple.dir\simple.c.s
examples/CMakeFiles/simple.dir/glfw.rc.obj: examples/CMakeFiles/simple.dir/flags.make
examples/CMakeFiles/simple.dir/glfw.rc.obj: ../examples/glfw.rc
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir="D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3\cmake-build-debug\CMakeFiles" --progress-num=$(CMAKE_PROGRESS_2) "Building RC object examples/CMakeFiles/simple.dir/glfw.rc.obj"
cd /d "D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3\cmake-build-debug\examples" && D:\Programme\MingW\mingw64\bin\windres.exe -O coff $(RC_DEFINES) $(RC_INCLUDES) $(RC_FLAGS) "D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3\examples\glfw.rc" CMakeFiles\simple.dir\glfw.rc.obj
examples/CMakeFiles/simple.dir/__/deps/glad_gl.c.obj: examples/CMakeFiles/simple.dir/flags.make
examples/CMakeFiles/simple.dir/__/deps/glad_gl.c.obj: examples/CMakeFiles/simple.dir/includes_C.rsp
examples/CMakeFiles/simple.dir/__/deps/glad_gl.c.obj: ../deps/glad_gl.c
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir="D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3\cmake-build-debug\CMakeFiles" --progress-num=$(CMAKE_PROGRESS_3) "Building C object examples/CMakeFiles/simple.dir/__/deps/glad_gl.c.obj"
cd /d "D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3\cmake-build-debug\examples" && D:\Programme\MingW\mingw64\bin\gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles\simple.dir\__\deps\glad_gl.c.obj -c "D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3\deps\glad_gl.c"
examples/CMakeFiles/simple.dir/__/deps/glad_gl.c.i: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/simple.dir/__/deps/glad_gl.c.i"
cd /d "D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3\cmake-build-debug\examples" && D:\Programme\MingW\mingw64\bin\gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E "D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3\deps\glad_gl.c" > CMakeFiles\simple.dir\__\deps\glad_gl.c.i
examples/CMakeFiles/simple.dir/__/deps/glad_gl.c.s: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/simple.dir/__/deps/glad_gl.c.s"
cd /d "D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3\cmake-build-debug\examples" && D:\Programme\MingW\mingw64\bin\gcc.exe $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S "D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3\deps\glad_gl.c" -o CMakeFiles\simple.dir\__\deps\glad_gl.c.s
# Object files for target simple
simple_OBJECTS = \
"CMakeFiles/simple.dir/simple.c.obj" \
"CMakeFiles/simple.dir/glfw.rc.obj" \
"CMakeFiles/simple.dir/__/deps/glad_gl.c.obj"
# External object files for target simple
simple_EXTERNAL_OBJECTS =
examples/simple.exe: examples/CMakeFiles/simple.dir/simple.c.obj
examples/simple.exe: examples/CMakeFiles/simple.dir/glfw.rc.obj
examples/simple.exe: examples/CMakeFiles/simple.dir/__/deps/glad_gl.c.obj
examples/simple.exe: examples/CMakeFiles/simple.dir/build.make
examples/simple.exe: src/libglfw3.a
examples/simple.exe: examples/CMakeFiles/simple.dir/linklibs.rsp
examples/simple.exe: examples/CMakeFiles/simple.dir/objects1.rsp
examples/simple.exe: examples/CMakeFiles/simple.dir/link.txt
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --bold --progress-dir="D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3\cmake-build-debug\CMakeFiles" --progress-num=$(CMAKE_PROGRESS_4) "Linking C executable simple.exe"
cd /d "D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3\cmake-build-debug\examples" && $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles\simple.dir\link.txt --verbose=$(VERBOSE)
# Rule to build all files generated by this target.
examples/CMakeFiles/simple.dir/build: examples/simple.exe
.PHONY : examples/CMakeFiles/simple.dir/build
examples/CMakeFiles/simple.dir/clean:
cd /d "D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3\cmake-build-debug\examples" && $(CMAKE_COMMAND) -P CMakeFiles\simple.dir\cmake_clean.cmake
.PHONY : examples/CMakeFiles/simple.dir/clean
examples/CMakeFiles/simple.dir/depend:
$(CMAKE_COMMAND) -E cmake_depends "MinGW Makefiles" "D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3" "D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3\examples" "D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3\cmake-build-debug" "D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3\cmake-build-debug\examples" "D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3\cmake-build-debug\examples\CMakeFiles\simple.dir\DependInfo.cmake" --color=$(COLOR)
.PHONY : examples/CMakeFiles/simple.dir/depend

View File

@ -0,0 +1,14 @@
file(REMOVE_RECURSE
"CMakeFiles/simple.dir/__/deps/glad_gl.c.obj"
"CMakeFiles/simple.dir/glfw.rc.obj"
"CMakeFiles/simple.dir/simple.c.obj"
"libsimple.dll.a"
"simple.exe"
"simple.exe.manifest"
"simple.pdb"
)
# Per-language clean rules from dependency scanning.
foreach(lang C RC)
include(CMakeFiles/simple.dir/cmake_clean_${lang}.cmake OPTIONAL)
endforeach()

View File

@ -0,0 +1,2 @@
# Empty dependencies file for simple.
# This may be replaced when dependencies are built.

View File

@ -0,0 +1,17 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "MinGW Makefiles" Generator, CMake Version 3.15
# compile C with D:/Programme/MingW/mingw64/bin/gcc.exe
# compile RC with D:/Programme/MingW/mingw64/bin/windres.exe
C_FLAGS = -g
C_DEFINES =
C_INCLUDES = @CMakeFiles/simple.dir/includes_C.rsp
RC_FLAGS =
RC_DEFINES =
RC_INCLUDES = -I"D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3\deps" -I"D:\Niklas Birk\Dokumente\Programmierung\C\Informatikprojekt\glfw-3.3\include"

View File

@ -0,0 +1 @@
-I"D:/Niklas Birk/Dokumente/Programmierung/C/Informatikprojekt/glfw-3.3/deps" -I"D:/Niklas Birk/Dokumente/Programmierung/C/Informatikprojekt/glfw-3.3/include"

View File

@ -0,0 +1,3 @@
D:\Programme\JetBrains\CLion\bin\cmake\win\bin\cmake.exe -E remove -f CMakeFiles\simple.dir/objects.a
D:\Programme\MingW\mingw64\bin\ar.exe cr CMakeFiles\simple.dir/objects.a @CMakeFiles\simple.dir\objects1.rsp
D:\Programme\MingW\mingw64\bin\gcc.exe -g -mwindows -Wl,--whole-archive CMakeFiles\simple.dir/objects.a -Wl,--no-whole-archive -o simple.exe -Wl,--out-implib,libsimple.dll.a -Wl,--major-image-version,0,--minor-image-version,0 @CMakeFiles\simple.dir\linklibs.rsp

View File

@ -0,0 +1 @@
../src/libglfw3.a -lkernel32 -luser32 -lgdi32 -lwinspool -lshell32 -lole32 -loleaut32 -luuid -lcomdlg32 -ladvapi32

View File

@ -0,0 +1 @@
CMakeFiles/simple.dir/simple.c.obj CMakeFiles/simple.dir/glfw.rc.obj CMakeFiles/simple.dir/__/deps/glad_gl.c.obj

View File

@ -0,0 +1,5 @@
CMAKE_PROGRESS_1 = 75
CMAKE_PROGRESS_2 = 76
CMAKE_PROGRESS_3 =
CMAKE_PROGRESS_4 = 77

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