adding in client gtk cpp

This commit is contained in:
talksik
2023-07-23 06:36:27 -07:00
parent c35add8c40
commit 61a6930cbe
31 changed files with 3379 additions and 1 deletions
+19
View File
@@ -0,0 +1,19 @@
# Consider dependencies only in project.
set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF)
# The set of languages for which implicit dependencies are needed:
set(CMAKE_DEPENDS_LANGUAGES
)
# The set of dependency files which are needed:
set(CMAKE_DEPENDS_DEPENDENCY_FILES
"/home/talksik/Code/flowy/client/src/main.cpp" "CMakeFiles/flowy.dir/src/main.cpp.o" "gcc" "CMakeFiles/flowy.dir/src/main.cpp.o.d"
)
# Targets to which this target links.
set(CMAKE_TARGET_LINKED_INFO_FILES
)
# Fortran module output directory.
set(CMAKE_Fortran_TARGET_MODULE_DIR "")
+110
View File
@@ -0,0 +1,110 @@
# 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/talksik/Code/flowy/client
# The top-level build directory on which CMake was run.
CMAKE_BINARY_DIR = /home/talksik/Code/flowy/client
# Include any dependencies generated for this target.
include CMakeFiles/flowy.dir/depend.make
# Include any dependencies generated by the compiler for this target.
include CMakeFiles/flowy.dir/compiler_depend.make
# Include the progress variables for this target.
include CMakeFiles/flowy.dir/progress.make
# Include the compile flags for this target's objects.
include CMakeFiles/flowy.dir/flags.make
CMakeFiles/flowy.dir/src/main.cpp.o: CMakeFiles/flowy.dir/flags.make
CMakeFiles/flowy.dir/src/main.cpp.o: src/main.cpp
CMakeFiles/flowy.dir/src/main.cpp.o: CMakeFiles/flowy.dir/compiler_depend.ts
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/talksik/Code/flowy/client/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object CMakeFiles/flowy.dir/src/main.cpp.o"
/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/flowy.dir/src/main.cpp.o -MF CMakeFiles/flowy.dir/src/main.cpp.o.d -o CMakeFiles/flowy.dir/src/main.cpp.o -c /home/talksik/Code/flowy/client/src/main.cpp
CMakeFiles/flowy.dir/src/main.cpp.i: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/flowy.dir/src/main.cpp.i"
/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/talksik/Code/flowy/client/src/main.cpp > CMakeFiles/flowy.dir/src/main.cpp.i
CMakeFiles/flowy.dir/src/main.cpp.s: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/flowy.dir/src/main.cpp.s"
/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/talksik/Code/flowy/client/src/main.cpp -o CMakeFiles/flowy.dir/src/main.cpp.s
# Object files for target flowy
flowy_OBJECTS = \
"CMakeFiles/flowy.dir/src/main.cpp.o"
# External object files for target flowy
flowy_EXTERNAL_OBJECTS =
flowy: CMakeFiles/flowy.dir/src/main.cpp.o
flowy: CMakeFiles/flowy.dir/build.make
flowy: CMakeFiles/flowy.dir/link.txt
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --bold --progress-dir=/home/talksik/Code/flowy/client/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Linking CXX executable flowy"
$(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/flowy.dir/link.txt --verbose=$(VERBOSE)
# Rule to build all files generated by this target.
CMakeFiles/flowy.dir/build: flowy
.PHONY : CMakeFiles/flowy.dir/build
CMakeFiles/flowy.dir/clean:
$(CMAKE_COMMAND) -P CMakeFiles/flowy.dir/cmake_clean.cmake
.PHONY : CMakeFiles/flowy.dir/clean
CMakeFiles/flowy.dir/depend:
cd /home/talksik/Code/flowy/client && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/talksik/Code/flowy/client /home/talksik/Code/flowy/client /home/talksik/Code/flowy/client /home/talksik/Code/flowy/client /home/talksik/Code/flowy/client/CMakeFiles/flowy.dir/DependInfo.cmake --color=$(COLOR)
.PHONY : CMakeFiles/flowy.dir/depend
+11
View File
@@ -0,0 +1,11 @@
file(REMOVE_RECURSE
"CMakeFiles/flowy.dir/src/main.cpp.o"
"CMakeFiles/flowy.dir/src/main.cpp.o.d"
"flowy"
"flowy.pdb"
)
# Per-language clean rules from dependency scanning.
foreach(lang CXX)
include(CMakeFiles/flowy.dir/cmake_clean_${lang}.cmake OPTIONAL)
endforeach()
@@ -0,0 +1,2 @@
# Empty compiler generated dependencies file for flowy.
# This may be replaced when dependencies are built.
+2
View File
@@ -0,0 +1,2 @@
# CMAKE generated file: DO NOT EDIT!
# Timestamp file for compiler generated dependencies management for flowy.
+2
View File
@@ -0,0 +1,2 @@
# Empty dependencies file for flowy.
# This may be replaced when dependencies are built.
+10
View File
@@ -0,0 +1,10 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 3.22
# compile CXX with /usr/bin/c++
CXX_DEFINES =
CXX_INCLUDES = -I/usr/include/sigc++-3.0 -I/usr/lib/x86_64-linux-gnu/sigc++-3.0/include -I/usr/include/gtk-4.0/unix-print -I/usr/include/gtk-4.0 -I/usr/include/gio-unix-2.0 -I/usr/include/cairo -I/usr/include/pango-1.0 -I/usr/include/harfbuzz -I/usr/include/fribidi -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/pixman-1 -I/usr/include/uuid -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/graphene-1.0 -I/usr/lib/x86_64-linux-gnu/graphene-1.0/include -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/glib-2.0 -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -I/usr/include/gtkmm-4.0 -I/usr/lib/gtkmm-4.0/include -I/usr/include/pangomm-2.48 -I/usr/lib/pangomm-2.48/include -I/usr/include/giomm-2.68 -I/usr/lib/giomm-2.68/include -I/usr/include/glibmm-2.68 -I/usr/lib/glibmm-2.68/include -I/usr/include/cairomm-1.16 -I/usr/lib/cairomm-1.16/include
CXX_FLAGS =
+1
View File
@@ -0,0 +1 @@
/usr/bin/c++ CMakeFiles/flowy.dir/src/main.cpp.o -o flowy -lgtkmm-4.0 -lpangomm-2.48 -lgiomm-2.68 -lglibmm-2.68 -lcairomm-1.16 -lsigc-3.0 -lgtk-4 -lpangocairo-1.0 -lpango-1.0 -lharfbuzz -lgdk_pixbuf-2.0 -lcairo-gobject -lcairo -lgraphene-1.0 -lgio-2.0 -lgobject-2.0 -lglib-2.0
+3
View File
@@ -0,0 +1,3 @@
CMAKE_PROGRESS_1 = 1
CMAKE_PROGRESS_2 = 2