This commit is contained in:
2022-09-26 23:22:38 +02:00
parent 83382c4e31
commit d9b7544a04
39 changed files with 3197 additions and 9 deletions

View File

@@ -0,0 +1,22 @@
# The set of languages for which implicit dependencies are needed:
set(CMAKE_DEPENDS_LANGUAGES
"CXX"
)
# The set of files for implicit dependencies of each language:
set(CMAKE_DEPENDS_CHECK_CXX
"/home/phillipk/Projekte/Software/DS-Homebrew/snakePlus/source/main.cpp" "/home/phillipk/Projekte/Software/DS-Homebrew/snakePlus/cmake-build-debug/CMakeFiles/snakePlus.dir/source/main.cpp.o"
)
set(CMAKE_CXX_COMPILER_ID "GNU")
# The include file search paths:
set(CMAKE_CXX_TARGET_INCLUDE_PATH
"../build"
"../include"
)
# 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,98 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "Unix 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.
# The shell in which to execute make rules.
SHELL = /bin/sh
# The CMake executable.
CMAKE_COMMAND = /opt/clion/bin/cmake/linux/bin/cmake
# The command to remove a file.
RM = /opt/clion/bin/cmake/linux/bin/cmake -E remove -f
# Escaping for special characters.
EQUALS = =
# The top-level source directory on which CMake was run.
CMAKE_SOURCE_DIR = /home/phillipk/Projekte/Software/DS-Homebrew/snakePlus
# The top-level build directory on which CMake was run.
CMAKE_BINARY_DIR = /home/phillipk/Projekte/Software/DS-Homebrew/snakePlus/cmake-build-debug
# Include any dependencies generated for this target.
include CMakeFiles/snakePlus.dir/depend.make
# Include the progress variables for this target.
include CMakeFiles/snakePlus.dir/progress.make
# Include the compile flags for this target's objects.
include CMakeFiles/snakePlus.dir/flags.make
CMakeFiles/snakePlus.dir/source/main.cpp.o: CMakeFiles/snakePlus.dir/flags.make
CMakeFiles/snakePlus.dir/source/main.cpp.o: ../source/main.cpp
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/phillipk/Projekte/Software/DS-Homebrew/snakePlus/cmake-build-debug/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object CMakeFiles/snakePlus.dir/source/main.cpp.o"
/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -o CMakeFiles/snakePlus.dir/source/main.cpp.o -c /home/phillipk/Projekte/Software/DS-Homebrew/snakePlus/source/main.cpp
CMakeFiles/snakePlus.dir/source/main.cpp.i: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/snakePlus.dir/source/main.cpp.i"
/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/phillipk/Projekte/Software/DS-Homebrew/snakePlus/source/main.cpp > CMakeFiles/snakePlus.dir/source/main.cpp.i
CMakeFiles/snakePlus.dir/source/main.cpp.s: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/snakePlus.dir/source/main.cpp.s"
/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/phillipk/Projekte/Software/DS-Homebrew/snakePlus/source/main.cpp -o CMakeFiles/snakePlus.dir/source/main.cpp.s
# Object files for target snakePlus
snakePlus_OBJECTS = \
"CMakeFiles/snakePlus.dir/source/main.cpp.o"
# External object files for target snakePlus
snakePlus_EXTERNAL_OBJECTS =
snakePlus: CMakeFiles/snakePlus.dir/source/main.cpp.o
snakePlus: CMakeFiles/snakePlus.dir/build.make
snakePlus: CMakeFiles/snakePlus.dir/link.txt
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --bold --progress-dir=/home/phillipk/Projekte/Software/DS-Homebrew/snakePlus/cmake-build-debug/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Linking CXX executable snakePlus"
$(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/snakePlus.dir/link.txt --verbose=$(VERBOSE)
# Rule to build all files generated by this target.
CMakeFiles/snakePlus.dir/build: snakePlus
.PHONY : CMakeFiles/snakePlus.dir/build
CMakeFiles/snakePlus.dir/clean:
$(CMAKE_COMMAND) -P CMakeFiles/snakePlus.dir/cmake_clean.cmake
.PHONY : CMakeFiles/snakePlus.dir/clean
CMakeFiles/snakePlus.dir/depend:
cd /home/phillipk/Projekte/Software/DS-Homebrew/snakePlus/cmake-build-debug && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/phillipk/Projekte/Software/DS-Homebrew/snakePlus /home/phillipk/Projekte/Software/DS-Homebrew/snakePlus /home/phillipk/Projekte/Software/DS-Homebrew/snakePlus/cmake-build-debug /home/phillipk/Projekte/Software/DS-Homebrew/snakePlus/cmake-build-debug /home/phillipk/Projekte/Software/DS-Homebrew/snakePlus/cmake-build-debug/CMakeFiles/snakePlus.dir/DependInfo.cmake --color=$(COLOR)
.PHONY : CMakeFiles/snakePlus.dir/depend

View File

@@ -0,0 +1,10 @@
file(REMOVE_RECURSE
"CMakeFiles/snakePlus.dir/source/main.cpp.o"
"snakePlus"
"snakePlus.pdb"
)
# Per-language clean rules from dependency scanning.
foreach(lang CXX)
include(CMakeFiles/snakePlus.dir/cmake_clean_${lang}.cmake OPTIONAL)
endforeach()

View File

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

View File

@@ -0,0 +1,10 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 3.15
# compile CXX with /usr/bin/c++
CXX_FLAGS = -g -std=gnu++14
CXX_DEFINES =
CXX_INCLUDES = -I/home/phillipk/Projekte/Software/DS-Homebrew/snakePlus/build -I/home/phillipk/Projekte/Software/DS-Homebrew/snakePlus/include

View File

@@ -0,0 +1 @@
/usr/bin/c++ -g CMakeFiles/snakePlus.dir/source/main.cpp.o -o snakePlus

View File

@@ -0,0 +1,3 @@
CMAKE_PROGRESS_1 = 1
CMAKE_PROGRESS_2 = 2