Compare commits
No commits in common. 'bc76cd1fd7dc71980dfdefd70f4421f87793af9e' and '724c612b2863e817a15f00ba038f7480320890fd' have entirely different histories.
bc76cd1fd7
...
724c612b28
@ -1 +0,0 @@
|
||||
empty
|
@ -1 +0,0 @@
|
||||
empty
|
@ -1 +0,0 @@
|
||||
empty
|
@ -1 +0,0 @@
|
||||
empty
|
@ -1 +0,0 @@
|
||||
empty
|
@ -1 +0,0 @@
|
||||
empty
|
@ -1 +0,0 @@
|
||||
empty
|
@ -1 +0,0 @@
|
||||
empty
|
@ -1 +0,0 @@
|
||||
empty
|
@ -1 +0,0 @@
|
||||
empty
|
@ -1 +0,0 @@
|
||||
empty
|
@ -1 +0,0 @@
|
||||
empty
|
@ -1 +0,0 @@
|
||||
empty
|
@ -1 +0,0 @@
|
||||
empty
|
@ -1 +0,0 @@
|
||||
empty
|
@ -1 +0,0 @@
|
||||
empty
|
@ -1 +0,0 @@
|
||||
empty
|
@ -1 +0,0 @@
|
||||
empty
|
@ -1 +0,0 @@
|
||||
empty
|
@ -1 +0,0 @@
|
||||
empty
|
@ -1 +0,0 @@
|
||||
empty
|
@ -1 +0,0 @@
|
||||
empty
|
@ -1 +0,0 @@
|
||||
empty
|
@ -1 +0,0 @@
|
||||
empty
|
@ -1 +0,0 @@
|
||||
empty
|
@ -1 +0,0 @@
|
||||
empty
|
@ -1 +0,0 @@
|
||||
empty
|
@ -1 +0,0 @@
|
||||
empty
|
@ -1 +0,0 @@
|
||||
empty
|
@ -1 +0,0 @@
|
||||
empty
|
@ -1 +0,0 @@
|
||||
empty
|
@ -1 +0,0 @@
|
||||
empty
|
@ -1 +0,0 @@
|
||||
empty
|
@ -1 +0,0 @@
|
||||
empty
|
@ -1 +0,0 @@
|
||||
empty
|
@ -1 +0,0 @@
|
||||
empty
|
@ -1 +0,0 @@
|
||||
49
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@ -1,4 +1,4 @@
|
||||
CMAKE_PROGRESS_1 = 36
|
||||
CMAKE_PROGRESS_2 = 37
|
||||
CMAKE_PROGRESS_3 = 38
|
||||
CMAKE_PROGRESS_1 = 35
|
||||
CMAKE_PROGRESS_2 = 36
|
||||
CMAKE_PROGRESS_3 = 37
|
||||
|
||||
|
@ -1 +1 @@
|
||||
49
|
||||
48
|
||||
|
Binary file not shown.
@ -1,34 +0,0 @@
|
||||
#version 330 core
|
||||
|
||||
in vec3 FragPos;
|
||||
in vec3 Normal;
|
||||
in vec2 TexCoord;
|
||||
|
||||
out vec4 FragColor;
|
||||
|
||||
uniform sampler2D texture_diffuse1;
|
||||
|
||||
uniform vec3 lightPos;
|
||||
uniform vec3 viewPos;
|
||||
|
||||
void main() {
|
||||
// Ambient
|
||||
float ambientStrength = 0.1;
|
||||
vec3 ambient = ambientStrength * vec3(texture(texture_diffuse1, TexCoord));
|
||||
|
||||
// Diffuse
|
||||
vec3 norm = normalize(Normal);
|
||||
vec3 lightDir = normalize(lightPos - FragPos);
|
||||
float diff = max(dot(norm, lightDir), 0.0);
|
||||
vec3 diffuse = diff * vec3(texture(texture_diffuse1, TexCoord));
|
||||
|
||||
// Specular
|
||||
float specularStrength = 0.5;
|
||||
vec3 viewDir = normalize(viewPos - FragPos);
|
||||
vec3 reflectDir = reflect(-lightDir, norm);
|
||||
float spec = pow(max(dot(viewDir, reflectDir), 0.0), 32);
|
||||
vec3 specular = specularStrength * spec * vec3(texture(texture_diffuse1, TexCoord));
|
||||
|
||||
vec3 result = (ambient + diffuse + specular);
|
||||
FragColor = vec4(result, 1.0);
|
||||
}
|
@ -1,13 +0,0 @@
|
||||
#version 330 core
|
||||
|
||||
in vec2 TexCoords;
|
||||
|
||||
out vec4 color;
|
||||
|
||||
uniform sampler2D text;
|
||||
uniform vec3 textColor;
|
||||
|
||||
void main() {
|
||||
vec4 sampled = vec4(1.0, 1.0, 1.0, texture(text, TexCoords).r);
|
||||
color = vec4(textColor, 1.0) * sampled;
|
||||
}
|
@ -1,12 +0,0 @@
|
||||
#version 330 core
|
||||
|
||||
layout (location = 0) in vec4 vertex; // <vec2 position, vec2 texCoords>
|
||||
|
||||
out vec2 TexCoords;
|
||||
|
||||
uniform mat4 projection;
|
||||
|
||||
void main() {
|
||||
gl_Position = projection * vec4(vertex.xy, 0.0, 1.0);
|
||||
TexCoords = vertex.zw;
|
||||
}
|
@ -1,21 +0,0 @@
|
||||
#version 330 core
|
||||
|
||||
layout (location = 0) in vec3 aPos;
|
||||
layout (location = 1) in vec3 aNormal;
|
||||
layout (location = 2) in vec2 aTexCoord;
|
||||
|
||||
out vec3 FragPos;
|
||||
out vec3 Normal;
|
||||
out vec2 TexCoord;
|
||||
|
||||
uniform mat4 model;
|
||||
uniform mat4 view;
|
||||
uniform mat4 projection;
|
||||
|
||||
void main() {
|
||||
FragPos = vec3(model * vec4(aPos, 1.0));
|
||||
Normal = mat3(transpose(inverse(model))) * aNormal;
|
||||
TexCoord = aTexCoord;
|
||||
|
||||
gl_Position = projection * view * vec4(FragPos, 1.0);
|
||||
}
|
@ -1,14 +0,0 @@
|
||||
{
|
||||
"backtraceGraph" :
|
||||
{
|
||||
"commands" : [],
|
||||
"files" : [],
|
||||
"nodes" : []
|
||||
},
|
||||
"installers" : [],
|
||||
"paths" :
|
||||
{
|
||||
"build" : "graphics",
|
||||
"source" : "graphics"
|
||||
}
|
||||
}
|
@ -1,90 +0,0 @@
|
||||
{
|
||||
"archive" : {},
|
||||
"artifacts" :
|
||||
[
|
||||
{
|
||||
"path" : "graphics/libGFXLib.a"
|
||||
}
|
||||
],
|
||||
"backtrace" : 1,
|
||||
"backtraceGraph" :
|
||||
{
|
||||
"commands" :
|
||||
[
|
||||
"add_library"
|
||||
],
|
||||
"files" :
|
||||
[
|
||||
"graphics/CMakeLists.txt"
|
||||
],
|
||||
"nodes" :
|
||||
[
|
||||
{
|
||||
"file" : 0
|
||||
},
|
||||
{
|
||||
"command" : 0,
|
||||
"file" : 0,
|
||||
"line" : 33,
|
||||
"parent" : 0
|
||||
}
|
||||
]
|
||||
},
|
||||
"id" : "GFXLib::@708b9b26fb9b6631b242",
|
||||
"name" : "GFXLib",
|
||||
"nameOnDisk" : "libGFXLib.a",
|
||||
"paths" :
|
||||
{
|
||||
"build" : "graphics",
|
||||
"source" : "graphics"
|
||||
},
|
||||
"sourceGroups" :
|
||||
[
|
||||
{
|
||||
"name" : "Header Files",
|
||||
"sourceIndexes" :
|
||||
[
|
||||
0,
|
||||
1,
|
||||
2,
|
||||
3,
|
||||
4,
|
||||
5
|
||||
]
|
||||
}
|
||||
],
|
||||
"sources" :
|
||||
[
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"path" : "graphics/Model.h",
|
||||
"sourceGroupIndex" : 0
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"path" : "graphics/Mesh.h",
|
||||
"sourceGroupIndex" : 0
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"path" : "graphics/Shader.h",
|
||||
"sourceGroupIndex" : 0
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"path" : "graphics/Camera.h",
|
||||
"sourceGroupIndex" : 0
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"path" : "graphics/FlyingWindow.h",
|
||||
"sourceGroupIndex" : 0
|
||||
},
|
||||
{
|
||||
"backtrace" : 1,
|
||||
"path" : "graphics/TextRenderer.h",
|
||||
"sourceGroupIndex" : 0
|
||||
}
|
||||
],
|
||||
"type" : "STATIC_LIBRARY"
|
||||
}
|
@ -1,4 +1,4 @@
|
||||
CMAKE_PROGRESS_1 = 36
|
||||
CMAKE_PROGRESS_2 = 37
|
||||
CMAKE_PROGRESS_3 = 38
|
||||
CMAKE_PROGRESS_1 = 35
|
||||
CMAKE_PROGRESS_2 = 36
|
||||
CMAKE_PROGRESS_3 = 37
|
||||
|
||||
|
@ -1 +1 @@
|
||||
49
|
||||
48
|
||||
|
@ -1,16 +0,0 @@
|
||||
# CMAKE generated file: DO NOT EDIT!
|
||||
# Generated by "Unix Makefiles" Generator, CMake Version 3.22
|
||||
|
||||
# Relative path conversion top directories.
|
||||
set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/home/kanken/code/AHRS_core/src")
|
||||
set(CMAKE_RELATIVE_PATH_TOP_BINARY "/home/kanken/code/AHRS_core/src/build")
|
||||
|
||||
# Force unix paths in dependencies.
|
||||
set(CMAKE_FORCE_UNIX_PATHS 1)
|
||||
|
||||
|
||||
# The C and CXX include file regular expressions for this directory.
|
||||
set(CMAKE_C_INCLUDE_REGEX_SCAN "^.*$")
|
||||
set(CMAKE_C_INCLUDE_REGEX_COMPLAIN "^$")
|
||||
set(CMAKE_CXX_INCLUDE_REGEX_SCAN ${CMAKE_C_INCLUDE_REGEX_SCAN})
|
||||
set(CMAKE_CXX_INCLUDE_REGEX_COMPLAIN ${CMAKE_C_INCLUDE_REGEX_COMPLAIN})
|
@ -1,18 +0,0 @@
|
||||
|
||||
# Consider dependencies only in project.
|
||||
set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF)
|
||||
|
||||
# The set of languages for which implicit dependencies are needed:
|
||||
set(CMAKE_DEPENDS_LANGUAGES
|
||||
)
|
||||
|
||||
# The set of dependency files which are needed:
|
||||
set(CMAKE_DEPENDS_DEPENDENCY_FILES
|
||||
)
|
||||
|
||||
# Targets to which this target links.
|
||||
set(CMAKE_TARGET_LINKED_INFO_FILES
|
||||
)
|
||||
|
||||
# Fortran module output directory.
|
||||
set(CMAKE_Fortran_TARGET_MODULE_DIR "")
|
@ -1,95 +0,0 @@
|
||||
# CMAKE generated file: DO NOT EDIT!
|
||||
# Generated by "Unix Makefiles" Generator, CMake Version 3.22
|
||||
|
||||
# Delete rule output on recipe failure.
|
||||
.DELETE_ON_ERROR:
|
||||
|
||||
#=============================================================================
|
||||
# Special targets provided by cmake.
|
||||
|
||||
# Disable implicit rules so canonical targets will work.
|
||||
.SUFFIXES:
|
||||
|
||||
# Disable VCS-based implicit rules.
|
||||
% : %,v
|
||||
|
||||
# Disable VCS-based implicit rules.
|
||||
% : RCS/%
|
||||
|
||||
# Disable VCS-based implicit rules.
|
||||
% : RCS/%,v
|
||||
|
||||
# Disable VCS-based implicit rules.
|
||||
% : SCCS/s.%
|
||||
|
||||
# Disable VCS-based implicit rules.
|
||||
% : s.%
|
||||
|
||||
.SUFFIXES: .hpux_make_needs_suffix_list
|
||||
|
||||
# Command-line flag to silence nested $(MAKE).
|
||||
$(VERBOSE)MAKESILENT = -s
|
||||
|
||||
#Suppress display of executed commands.
|
||||
$(VERBOSE).SILENT:
|
||||
|
||||
# A target that is always out of date.
|
||||
cmake_force:
|
||||
.PHONY : cmake_force
|
||||
|
||||
#=============================================================================
|
||||
# Set environment variables for the build.
|
||||
|
||||
# The shell in which to execute make rules.
|
||||
SHELL = /bin/sh
|
||||
|
||||
# The CMake executable.
|
||||
CMAKE_COMMAND = /usr/bin/cmake
|
||||
|
||||
# The command to remove a file.
|
||||
RM = /usr/bin/cmake -E rm -f
|
||||
|
||||
# Escaping for special characters.
|
||||
EQUALS = =
|
||||
|
||||
# The top-level source directory on which CMake was run.
|
||||
CMAKE_SOURCE_DIR = /home/kanken/code/AHRS_core/src
|
||||
|
||||
# The top-level build directory on which CMake was run.
|
||||
CMAKE_BINARY_DIR = /home/kanken/code/AHRS_core/src/build
|
||||
|
||||
# Include any dependencies generated for this target.
|
||||
include graphics/CMakeFiles/GFXLib.dir/depend.make
|
||||
# Include any dependencies generated by the compiler for this target.
|
||||
include graphics/CMakeFiles/GFXLib.dir/compiler_depend.make
|
||||
|
||||
# Include the progress variables for this target.
|
||||
include graphics/CMakeFiles/GFXLib.dir/progress.make
|
||||
|
||||
# Include the compile flags for this target's objects.
|
||||
include graphics/CMakeFiles/GFXLib.dir/flags.make
|
||||
|
||||
# Object files for target GFXLib
|
||||
GFXLib_OBJECTS =
|
||||
|
||||
# External object files for target GFXLib
|
||||
GFXLib_EXTERNAL_OBJECTS =
|
||||
|
||||
graphics/libGFXLib.a: graphics/CMakeFiles/GFXLib.dir/build.make
|
||||
graphics/libGFXLib.a: graphics/CMakeFiles/GFXLib.dir/link.txt
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --bold --progress-dir=/home/kanken/code/AHRS_core/src/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Linking CXX static library libGFXLib.a"
|
||||
cd /home/kanken/code/AHRS_core/src/build/graphics && $(CMAKE_COMMAND) -P CMakeFiles/GFXLib.dir/cmake_clean_target.cmake
|
||||
cd /home/kanken/code/AHRS_core/src/build/graphics && $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/GFXLib.dir/link.txt --verbose=$(VERBOSE)
|
||||
|
||||
# Rule to build all files generated by this target.
|
||||
graphics/CMakeFiles/GFXLib.dir/build: graphics/libGFXLib.a
|
||||
.PHONY : graphics/CMakeFiles/GFXLib.dir/build
|
||||
|
||||
graphics/CMakeFiles/GFXLib.dir/clean:
|
||||
cd /home/kanken/code/AHRS_core/src/build/graphics && $(CMAKE_COMMAND) -P CMakeFiles/GFXLib.dir/cmake_clean.cmake
|
||||
.PHONY : graphics/CMakeFiles/GFXLib.dir/clean
|
||||
|
||||
graphics/CMakeFiles/GFXLib.dir/depend:
|
||||
cd /home/kanken/code/AHRS_core/src/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/kanken/code/AHRS_core/src /home/kanken/code/AHRS_core/src/graphics /home/kanken/code/AHRS_core/src/build /home/kanken/code/AHRS_core/src/build/graphics /home/kanken/code/AHRS_core/src/build/graphics/CMakeFiles/GFXLib.dir/DependInfo.cmake --color=$(COLOR)
|
||||
.PHONY : graphics/CMakeFiles/GFXLib.dir/depend
|
||||
|
@ -1,9 +0,0 @@
|
||||
file(REMOVE_RECURSE
|
||||
"libGFXLib.a"
|
||||
"libGFXLib.pdb"
|
||||
)
|
||||
|
||||
# Per-language clean rules from dependency scanning.
|
||||
foreach(lang )
|
||||
include(CMakeFiles/GFXLib.dir/cmake_clean_${lang}.cmake OPTIONAL)
|
||||
endforeach()
|
@ -1,3 +0,0 @@
|
||||
file(REMOVE_RECURSE
|
||||
"libGFXLib.a"
|
||||
)
|
@ -1,2 +0,0 @@
|
||||
# Empty compiler generated dependencies file for GFXLib.
|
||||
# This may be replaced when dependencies are built.
|
@ -1,2 +0,0 @@
|
||||
# CMAKE generated file: DO NOT EDIT!
|
||||
# Timestamp file for compiler generated dependencies management for GFXLib.
|
@ -1,2 +0,0 @@
|
||||
# Empty dependencies file for GFXLib.
|
||||
# This may be replaced when dependencies are built.
|
@ -1,3 +0,0 @@
|
||||
# CMAKE generated file: DO NOT EDIT!
|
||||
# Generated by "Unix Makefiles" Generator, CMake Version 3.22
|
||||
|
@ -1,2 +0,0 @@
|
||||
/usr/bin/ar qc libGFXLib.a
|
||||
/usr/bin/ranlib libGFXLib.a
|
@ -1,2 +0,0 @@
|
||||
CMAKE_PROGRESS_1 = 1
|
||||
|
@ -1 +0,0 @@
|
||||
1
|
@ -1,155 +0,0 @@
|
||||
# CMAKE generated file: DO NOT EDIT!
|
||||
# Generated by "Unix Makefiles" Generator, CMake Version 3.22
|
||||
|
||||
# Default target executed when no arguments are given to make.
|
||||
default_target: all
|
||||
.PHONY : default_target
|
||||
|
||||
# Allow only one "make -f Makefile2" at a time, but pass parallelism.
|
||||
.NOTPARALLEL:
|
||||
|
||||
#=============================================================================
|
||||
# Special targets provided by cmake.
|
||||
|
||||
# Disable implicit rules so canonical targets will work.
|
||||
.SUFFIXES:
|
||||
|
||||
# Disable VCS-based implicit rules.
|
||||
% : %,v
|
||||
|
||||
# Disable VCS-based implicit rules.
|
||||
% : RCS/%
|
||||
|
||||
# Disable VCS-based implicit rules.
|
||||
% : RCS/%,v
|
||||
|
||||
# Disable VCS-based implicit rules.
|
||||
% : SCCS/s.%
|
||||
|
||||
# Disable VCS-based implicit rules.
|
||||
% : s.%
|
||||
|
||||
.SUFFIXES: .hpux_make_needs_suffix_list
|
||||
|
||||
# Command-line flag to silence nested $(MAKE).
|
||||
$(VERBOSE)MAKESILENT = -s
|
||||
|
||||
#Suppress display of executed commands.
|
||||
$(VERBOSE).SILENT:
|
||||
|
||||
# A target that is always out of date.
|
||||
cmake_force:
|
||||
.PHONY : cmake_force
|
||||
|
||||
#=============================================================================
|
||||
# Set environment variables for the build.
|
||||
|
||||
# The shell in which to execute make rules.
|
||||
SHELL = /bin/sh
|
||||
|
||||
# The CMake executable.
|
||||
CMAKE_COMMAND = /usr/bin/cmake
|
||||
|
||||
# The command to remove a file.
|
||||
RM = /usr/bin/cmake -E rm -f
|
||||
|
||||
# Escaping for special characters.
|
||||
EQUALS = =
|
||||
|
||||
# The top-level source directory on which CMake was run.
|
||||
CMAKE_SOURCE_DIR = /home/kanken/code/AHRS_core/src
|
||||
|
||||
# The top-level build directory on which CMake was run.
|
||||
CMAKE_BINARY_DIR = /home/kanken/code/AHRS_core/src/build
|
||||
|
||||
#=============================================================================
|
||||
# Targets provided globally by CMake.
|
||||
|
||||
# Special rule for the target edit_cache
|
||||
edit_cache:
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "No interactive CMake dialog available..."
|
||||
/usr/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available.
|
||||
.PHONY : edit_cache
|
||||
|
||||
# Special rule for the target edit_cache
|
||||
edit_cache/fast: edit_cache
|
||||
.PHONY : edit_cache/fast
|
||||
|
||||
# Special rule for the target rebuild_cache
|
||||
rebuild_cache:
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running CMake to regenerate build system..."
|
||||
/usr/bin/cmake --regenerate-during-build -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR)
|
||||
.PHONY : rebuild_cache
|
||||
|
||||
# Special rule for the target rebuild_cache
|
||||
rebuild_cache/fast: rebuild_cache
|
||||
.PHONY : rebuild_cache/fast
|
||||
|
||||
# The main all target
|
||||
all: cmake_check_build_system
|
||||
cd /home/kanken/code/AHRS_core/src/build && $(CMAKE_COMMAND) -E cmake_progress_start /home/kanken/code/AHRS_core/src/build/CMakeFiles /home/kanken/code/AHRS_core/src/build/graphics//CMakeFiles/progress.marks
|
||||
cd /home/kanken/code/AHRS_core/src/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 graphics/all
|
||||
$(CMAKE_COMMAND) -E cmake_progress_start /home/kanken/code/AHRS_core/src/build/CMakeFiles 0
|
||||
.PHONY : all
|
||||
|
||||
# The main clean target
|
||||
clean:
|
||||
cd /home/kanken/code/AHRS_core/src/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 graphics/clean
|
||||
.PHONY : clean
|
||||
|
||||
# The main clean target
|
||||
clean/fast: clean
|
||||
.PHONY : clean/fast
|
||||
|
||||
# Prepare targets for installation.
|
||||
preinstall: all
|
||||
cd /home/kanken/code/AHRS_core/src/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 graphics/preinstall
|
||||
.PHONY : preinstall
|
||||
|
||||
# Prepare targets for installation.
|
||||
preinstall/fast:
|
||||
cd /home/kanken/code/AHRS_core/src/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 graphics/preinstall
|
||||
.PHONY : preinstall/fast
|
||||
|
||||
# clear depends
|
||||
depend:
|
||||
cd /home/kanken/code/AHRS_core/src/build && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1
|
||||
.PHONY : depend
|
||||
|
||||
# Convenience name for target.
|
||||
graphics/CMakeFiles/GFXLib.dir/rule:
|
||||
cd /home/kanken/code/AHRS_core/src/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 graphics/CMakeFiles/GFXLib.dir/rule
|
||||
.PHONY : graphics/CMakeFiles/GFXLib.dir/rule
|
||||
|
||||
# Convenience name for target.
|
||||
GFXLib: graphics/CMakeFiles/GFXLib.dir/rule
|
||||
.PHONY : GFXLib
|
||||
|
||||
# fast build rule for target.
|
||||
GFXLib/fast:
|
||||
cd /home/kanken/code/AHRS_core/src/build && $(MAKE) $(MAKESILENT) -f graphics/CMakeFiles/GFXLib.dir/build.make graphics/CMakeFiles/GFXLib.dir/build
|
||||
.PHONY : GFXLib/fast
|
||||
|
||||
# Help Target
|
||||
help:
|
||||
@echo "The following are some of the valid targets for this Makefile:"
|
||||
@echo "... all (the default if no target is provided)"
|
||||
@echo "... clean"
|
||||
@echo "... depend"
|
||||
@echo "... edit_cache"
|
||||
@echo "... rebuild_cache"
|
||||
@echo "... GFXLib"
|
||||
.PHONY : help
|
||||
|
||||
|
||||
|
||||
#=============================================================================
|
||||
# Special targets to cleanup operation of make.
|
||||
|
||||
# Special rule to run CMake to check the build system integrity.
|
||||
# No rule that depends on this can have commands that come from listfiles
|
||||
# because they might be regenerated.
|
||||
cmake_check_build_system:
|
||||
cd /home/kanken/code/AHRS_core/src/build && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0
|
||||
.PHONY : cmake_check_build_system
|
||||
|
@ -1,4 +1,4 @@
|
||||
CMAKE_PROGRESS_1 = 9
|
||||
CMAKE_PROGRESS_2 = 10
|
||||
CMAKE_PROGRESS_3 = 11
|
||||
CMAKE_PROGRESS_1 = 8
|
||||
CMAKE_PROGRESS_2 = 9
|
||||
CMAKE_PROGRESS_3 = 10
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
CMAKE_PROGRESS_1 = 5
|
||||
CMAKE_PROGRESS_2 = 6
|
||||
CMAKE_PROGRESS_3 = 7
|
||||
CMAKE_PROGRESS_1 = 4
|
||||
CMAKE_PROGRESS_2 = 5
|
||||
CMAKE_PROGRESS_3 = 6
|
||||
|
||||
|
@ -1,3 +1,3 @@
|
||||
CMAKE_PROGRESS_1 = 12
|
||||
CMAKE_PROGRESS_2 = 13
|
||||
CMAKE_PROGRESS_1 = 11
|
||||
CMAKE_PROGRESS_2 = 12
|
||||
|
||||
|
@ -1,3 +1,3 @@
|
||||
CMAKE_PROGRESS_1 = 14
|
||||
CMAKE_PROGRESS_2 = 15
|
||||
CMAKE_PROGRESS_1 = 13
|
||||
CMAKE_PROGRESS_2 = 14
|
||||
|
||||
|
@ -1,3 +1,3 @@
|
||||
CMAKE_PROGRESS_1 = 16
|
||||
CMAKE_PROGRESS_2 = 17
|
||||
CMAKE_PROGRESS_1 = 15
|
||||
CMAKE_PROGRESS_2 = 16
|
||||
|
||||
|
@ -1,3 +1,3 @@
|
||||
CMAKE_PROGRESS_1 = 39
|
||||
CMAKE_PROGRESS_2 = 40
|
||||
CMAKE_PROGRESS_1 = 38
|
||||
CMAKE_PROGRESS_2 = 39
|
||||
|
||||
|
@ -1,2 +1,2 @@
|
||||
CMAKE_PROGRESS_1 = 8
|
||||
CMAKE_PROGRESS_1 = 7
|
||||
|
||||
|
@ -1,3 +1,3 @@
|
||||
CMAKE_PROGRESS_1 = 18
|
||||
CMAKE_PROGRESS_2 = 19
|
||||
CMAKE_PROGRESS_1 = 17
|
||||
CMAKE_PROGRESS_2 = 18
|
||||
|
||||
|
@ -1,3 +1,3 @@
|
||||
CMAKE_PROGRESS_1 = 20
|
||||
CMAKE_PROGRESS_2 = 21
|
||||
CMAKE_PROGRESS_1 = 19
|
||||
CMAKE_PROGRESS_2 = 20
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
CMAKE_PROGRESS_1 = 45
|
||||
CMAKE_PROGRESS_2 = 46
|
||||
CMAKE_PROGRESS_3 = 47
|
||||
CMAKE_PROGRESS_1 = 44
|
||||
CMAKE_PROGRESS_2 = 45
|
||||
CMAKE_PROGRESS_3 = 46
|
||||
|
||||
|
@ -1,15 +1,15 @@
|
||||
CMAKE_PROGRESS_1 = 22
|
||||
CMAKE_PROGRESS_2 = 23
|
||||
CMAKE_PROGRESS_3 = 24
|
||||
CMAKE_PROGRESS_4 = 25
|
||||
CMAKE_PROGRESS_5 = 26
|
||||
CMAKE_PROGRESS_6 = 27
|
||||
CMAKE_PROGRESS_7 = 28
|
||||
CMAKE_PROGRESS_8 = 29
|
||||
CMAKE_PROGRESS_9 = 30
|
||||
CMAKE_PROGRESS_10 = 31
|
||||
CMAKE_PROGRESS_11 = 32
|
||||
CMAKE_PROGRESS_12 = 33
|
||||
CMAKE_PROGRESS_13 = 34
|
||||
CMAKE_PROGRESS_14 = 35
|
||||
CMAKE_PROGRESS_1 = 21
|
||||
CMAKE_PROGRESS_2 = 22
|
||||
CMAKE_PROGRESS_3 = 23
|
||||
CMAKE_PROGRESS_4 = 24
|
||||
CMAKE_PROGRESS_5 = 25
|
||||
CMAKE_PROGRESS_6 = 26
|
||||
CMAKE_PROGRESS_7 = 27
|
||||
CMAKE_PROGRESS_8 = 28
|
||||
CMAKE_PROGRESS_9 = 29
|
||||
CMAKE_PROGRESS_10 = 30
|
||||
CMAKE_PROGRESS_11 = 31
|
||||
CMAKE_PROGRESS_12 = 32
|
||||
CMAKE_PROGRESS_13 = 33
|
||||
CMAKE_PROGRESS_14 = 34
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
CMAKE_PROGRESS_1 = 2
|
||||
CMAKE_PROGRESS_2 = 3
|
||||
CMAKE_PROGRESS_3 = 4
|
||||
CMAKE_PROGRESS_1 = 1
|
||||
CMAKE_PROGRESS_2 = 2
|
||||
CMAKE_PROGRESS_3 = 3
|
||||
|
||||
|
@ -1,3 +1,3 @@
|
||||
CMAKE_PROGRESS_1 = 48
|
||||
CMAKE_PROGRESS_2 = 49
|
||||
CMAKE_PROGRESS_1 = 47
|
||||
CMAKE_PROGRESS_2 = 48
|
||||
|
||||
|
@ -1,3 +1,3 @@
|
||||
CMAKE_PROGRESS_1 = 43
|
||||
CMAKE_PROGRESS_2 = 44
|
||||
CMAKE_PROGRESS_1 = 42
|
||||
CMAKE_PROGRESS_2 = 43
|
||||
|
||||
|
@ -1,3 +1,3 @@
|
||||
CMAKE_PROGRESS_1 = 41
|
||||
CMAKE_PROGRESS_2 = 42
|
||||
CMAKE_PROGRESS_1 = 40
|
||||
CMAKE_PROGRESS_2 = 41
|
||||
|
||||
|
@ -1,16 +0,0 @@
|
||||
# CMAKE generated file: DO NOT EDIT!
|
||||
# Generated by "Unix Makefiles" Generator, CMake Version 3.22
|
||||
|
||||
# Relative path conversion top directories.
|
||||
set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/home/kanken/code/AHRS_core/src")
|
||||
set(CMAKE_RELATIVE_PATH_TOP_BINARY "/home/kanken/code/AHRS_core/src")
|
||||
|
||||
# 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})
|
@ -1,18 +0,0 @@
|
||||
|
||||
# Consider dependencies only in project.
|
||||
set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF)
|
||||
|
||||
# The set of languages for which implicit dependencies are needed:
|
||||
set(CMAKE_DEPENDS_LANGUAGES
|
||||
)
|
||||
|
||||
# The set of dependency files which are needed:
|
||||
set(CMAKE_DEPENDS_DEPENDENCY_FILES
|
||||
)
|
||||
|
||||
# Targets to which this target links.
|
||||
set(CMAKE_TARGET_LINKED_INFO_FILES
|
||||
)
|
||||
|
||||
# Fortran module output directory.
|
||||
set(CMAKE_Fortran_TARGET_MODULE_DIR "")
|
@ -1,95 +0,0 @@
|
||||
# CMAKE generated file: DO NOT EDIT!
|
||||
# Generated by "Unix Makefiles" Generator, CMake Version 3.22
|
||||
|
||||
# Delete rule output on recipe failure.
|
||||
.DELETE_ON_ERROR:
|
||||
|
||||
#=============================================================================
|
||||
# Special targets provided by cmake.
|
||||
|
||||
# Disable implicit rules so canonical targets will work.
|
||||
.SUFFIXES:
|
||||
|
||||
# Disable VCS-based implicit rules.
|
||||
% : %,v
|
||||
|
||||
# Disable VCS-based implicit rules.
|
||||
% : RCS/%
|
||||
|
||||
# Disable VCS-based implicit rules.
|
||||
% : RCS/%,v
|
||||
|
||||
# Disable VCS-based implicit rules.
|
||||
% : SCCS/s.%
|
||||
|
||||
# Disable VCS-based implicit rules.
|
||||
% : s.%
|
||||
|
||||
.SUFFIXES: .hpux_make_needs_suffix_list
|
||||
|
||||
# Command-line flag to silence nested $(MAKE).
|
||||
$(VERBOSE)MAKESILENT = -s
|
||||
|
||||
#Suppress display of executed commands.
|
||||
$(VERBOSE).SILENT:
|
||||
|
||||
# A target that is always out of date.
|
||||
cmake_force:
|
||||
.PHONY : cmake_force
|
||||
|
||||
#=============================================================================
|
||||
# Set environment variables for the build.
|
||||
|
||||
# The shell in which to execute make rules.
|
||||
SHELL = /bin/sh
|
||||
|
||||
# The CMake executable.
|
||||
CMAKE_COMMAND = /usr/bin/cmake
|
||||
|
||||
# The command to remove a file.
|
||||
RM = /usr/bin/cmake -E rm -f
|
||||
|
||||
# Escaping for special characters.
|
||||
EQUALS = =
|
||||
|
||||
# The top-level source directory on which CMake was run.
|
||||
CMAKE_SOURCE_DIR = /home/kanken/code/AHRS_core/src
|
||||
|
||||
# The top-level build directory on which CMake was run.
|
||||
CMAKE_BINARY_DIR = /home/kanken/code/AHRS_core/src
|
||||
|
||||
# Include any dependencies generated for this target.
|
||||
include graphics/CMakeFiles/GFXLib.dir/depend.make
|
||||
# Include any dependencies generated by the compiler for this target.
|
||||
include graphics/CMakeFiles/GFXLib.dir/compiler_depend.make
|
||||
|
||||
# Include the progress variables for this target.
|
||||
include graphics/CMakeFiles/GFXLib.dir/progress.make
|
||||
|
||||
# Include the compile flags for this target's objects.
|
||||
include graphics/CMakeFiles/GFXLib.dir/flags.make
|
||||
|
||||
# Object files for target GFXLib
|
||||
GFXLib_OBJECTS =
|
||||
|
||||
# External object files for target GFXLib
|
||||
GFXLib_EXTERNAL_OBJECTS =
|
||||
|
||||
graphics/libGFXLib.a: graphics/CMakeFiles/GFXLib.dir/build.make
|
||||
graphics/libGFXLib.a: graphics/CMakeFiles/GFXLib.dir/link.txt
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --bold --progress-dir=/home/kanken/code/AHRS_core/src/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Linking CXX static library libGFXLib.a"
|
||||
cd /home/kanken/code/AHRS_core/src/graphics && $(CMAKE_COMMAND) -P CMakeFiles/GFXLib.dir/cmake_clean_target.cmake
|
||||
cd /home/kanken/code/AHRS_core/src/graphics && $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/GFXLib.dir/link.txt --verbose=$(VERBOSE)
|
||||
|
||||
# Rule to build all files generated by this target.
|
||||
graphics/CMakeFiles/GFXLib.dir/build: graphics/libGFXLib.a
|
||||
.PHONY : graphics/CMakeFiles/GFXLib.dir/build
|
||||
|
||||
graphics/CMakeFiles/GFXLib.dir/clean:
|
||||
cd /home/kanken/code/AHRS_core/src/graphics && $(CMAKE_COMMAND) -P CMakeFiles/GFXLib.dir/cmake_clean.cmake
|
||||
.PHONY : graphics/CMakeFiles/GFXLib.dir/clean
|
||||
|
||||
graphics/CMakeFiles/GFXLib.dir/depend:
|
||||
cd /home/kanken/code/AHRS_core/src && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/kanken/code/AHRS_core/src /home/kanken/code/AHRS_core/src/graphics /home/kanken/code/AHRS_core/src /home/kanken/code/AHRS_core/src/graphics /home/kanken/code/AHRS_core/src/graphics/CMakeFiles/GFXLib.dir/DependInfo.cmake --color=$(COLOR)
|
||||
.PHONY : graphics/CMakeFiles/GFXLib.dir/depend
|
||||
|
@ -1,9 +0,0 @@
|
||||
file(REMOVE_RECURSE
|
||||
"libGFXLib.a"
|
||||
"libGFXLib.pdb"
|
||||
)
|
||||
|
||||
# Per-language clean rules from dependency scanning.
|
||||
foreach(lang )
|
||||
include(CMakeFiles/GFXLib.dir/cmake_clean_${lang}.cmake OPTIONAL)
|
||||
endforeach()
|
@ -1,3 +0,0 @@
|
||||
file(REMOVE_RECURSE
|
||||
"libGFXLib.a"
|
||||
)
|
@ -1,2 +0,0 @@
|
||||
# Empty compiler generated dependencies file for GFXLib.
|
||||
# This may be replaced when dependencies are built.
|
@ -1,2 +0,0 @@
|
||||
# CMAKE generated file: DO NOT EDIT!
|
||||
# Timestamp file for compiler generated dependencies management for GFXLib.
|
@ -1,2 +0,0 @@
|
||||
# Empty dependencies file for GFXLib.
|
||||
# This may be replaced when dependencies are built.
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in new issue