Created the server side
This commit is contained in:
parent
7dd12105a9
commit
9f41258198
@ -17,7 +17,7 @@ set(CMAKE_C_STANDARD 17)
|
||||
# Include header files from the include directory
|
||||
include_directories(${CMAKE_SOURCE_DIR}/include)
|
||||
|
||||
add_executable(${APP_NAME} ${SOURCE}/main.c)
|
||||
add_executable(${APP_NAME}_server ${SOURCE}/server.c)
|
||||
|
||||
# Display a message when compiling
|
||||
message(STATUS "Compiling ${APP_NAME}...")
|
||||
Binary file not shown.
10
build.sh
10
build.sh
@ -1,13 +1,7 @@
|
||||
if [ -z "$1" ]; then
|
||||
echo "Error: Invalid Argument"
|
||||
echo "Usage: $0 <executable_name>"
|
||||
exit 1
|
||||
fi
|
||||
# Description: Build script for KeyMaster
|
||||
|
||||
cd ./build
|
||||
cmake ..
|
||||
make
|
||||
cp "$1" ../bin
|
||||
|
||||
# DEBUGGING
|
||||
mv "$1" ../
|
||||
cp "KeyMaster_server" ../bin
|
||||
|
||||
Binary file not shown.
23
build/CMakeFiles/KeyMaster_server.dir/DependInfo.cmake
Normal file
23
build/CMakeFiles/KeyMaster_server.dir/DependInfo.cmake
Normal file
@ -0,0 +1,23 @@
|
||||
|
||||
# Consider dependencies only in project.
|
||||
set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF)
|
||||
|
||||
# The set of languages for which implicit dependencies are needed:
|
||||
set(CMAKE_DEPENDS_LANGUAGES
|
||||
)
|
||||
|
||||
# The set of dependency files which are needed:
|
||||
set(CMAKE_DEPENDS_DEPENDENCY_FILES
|
||||
"/Users/AfonsoCMSosua/Developer/KeyMaster/src/server.c" "CMakeFiles/KeyMaster_server.dir/src/server.c.o" "gcc" "CMakeFiles/KeyMaster_server.dir/src/server.c.o.d"
|
||||
)
|
||||
|
||||
# Targets to which this target links which contain Fortran sources.
|
||||
set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES
|
||||
)
|
||||
|
||||
# Targets to which this target links which contain Fortran sources.
|
||||
set(CMAKE_Fortran_TARGET_FORWARD_LINKED_INFO_FILES
|
||||
)
|
||||
|
||||
# Fortran module output directory.
|
||||
set(CMAKE_Fortran_TARGET_MODULE_DIR "")
|
||||
113
build/CMakeFiles/KeyMaster_server.dir/build.make
Normal file
113
build/CMakeFiles/KeyMaster_server.dir/build.make
Normal file
@ -0,0 +1,113 @@
|
||||
# CMAKE generated file: DO NOT EDIT!
|
||||
# Generated by "Unix Makefiles" Generator, CMake Version 3.31
|
||||
|
||||
# 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/local/bin/cmake
|
||||
|
||||
# The command to remove a file.
|
||||
RM = /usr/local/bin/cmake -E rm -f
|
||||
|
||||
# Escaping for special characters.
|
||||
EQUALS = =
|
||||
|
||||
# The top-level source directory on which CMake was run.
|
||||
CMAKE_SOURCE_DIR = /Users/AfonsoCMSosua/Developer/KeyMaster
|
||||
|
||||
# The top-level build directory on which CMake was run.
|
||||
CMAKE_BINARY_DIR = /Users/AfonsoCMSosua/Developer/KeyMaster/build
|
||||
|
||||
# Include any dependencies generated for this target.
|
||||
include CMakeFiles/KeyMaster_server.dir/depend.make
|
||||
# Include any dependencies generated by the compiler for this target.
|
||||
include CMakeFiles/KeyMaster_server.dir/compiler_depend.make
|
||||
|
||||
# Include the progress variables for this target.
|
||||
include CMakeFiles/KeyMaster_server.dir/progress.make
|
||||
|
||||
# Include the compile flags for this target's objects.
|
||||
include CMakeFiles/KeyMaster_server.dir/flags.make
|
||||
|
||||
CMakeFiles/KeyMaster_server.dir/codegen:
|
||||
.PHONY : CMakeFiles/KeyMaster_server.dir/codegen
|
||||
|
||||
CMakeFiles/KeyMaster_server.dir/src/server.c.o: CMakeFiles/KeyMaster_server.dir/flags.make
|
||||
CMakeFiles/KeyMaster_server.dir/src/server.c.o: /Users/AfonsoCMSosua/Developer/KeyMaster/src/server.c
|
||||
CMakeFiles/KeyMaster_server.dir/src/server.c.o: CMakeFiles/KeyMaster_server.dir/compiler_depend.ts
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/AfonsoCMSosua/Developer/KeyMaster/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building C object CMakeFiles/KeyMaster_server.dir/src/server.c.o"
|
||||
/Library/Developer/CommandLineTools/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/KeyMaster_server.dir/src/server.c.o -MF CMakeFiles/KeyMaster_server.dir/src/server.c.o.d -o CMakeFiles/KeyMaster_server.dir/src/server.c.o -c /Users/AfonsoCMSosua/Developer/KeyMaster/src/server.c
|
||||
|
||||
CMakeFiles/KeyMaster_server.dir/src/server.c.i: cmake_force
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/KeyMaster_server.dir/src/server.c.i"
|
||||
/Library/Developer/CommandLineTools/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /Users/AfonsoCMSosua/Developer/KeyMaster/src/server.c > CMakeFiles/KeyMaster_server.dir/src/server.c.i
|
||||
|
||||
CMakeFiles/KeyMaster_server.dir/src/server.c.s: cmake_force
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/KeyMaster_server.dir/src/server.c.s"
|
||||
/Library/Developer/CommandLineTools/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /Users/AfonsoCMSosua/Developer/KeyMaster/src/server.c -o CMakeFiles/KeyMaster_server.dir/src/server.c.s
|
||||
|
||||
# Object files for target KeyMaster_server
|
||||
KeyMaster_server_OBJECTS = \
|
||||
"CMakeFiles/KeyMaster_server.dir/src/server.c.o"
|
||||
|
||||
# External object files for target KeyMaster_server
|
||||
KeyMaster_server_EXTERNAL_OBJECTS =
|
||||
|
||||
KeyMaster_server: CMakeFiles/KeyMaster_server.dir/src/server.c.o
|
||||
KeyMaster_server: CMakeFiles/KeyMaster_server.dir/build.make
|
||||
KeyMaster_server: CMakeFiles/KeyMaster_server.dir/link.txt
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --bold --progress-dir=/Users/AfonsoCMSosua/Developer/KeyMaster/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Linking C executable KeyMaster_server"
|
||||
$(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/KeyMaster_server.dir/link.txt --verbose=$(VERBOSE)
|
||||
|
||||
# Rule to build all files generated by this target.
|
||||
CMakeFiles/KeyMaster_server.dir/build: KeyMaster_server
|
||||
.PHONY : CMakeFiles/KeyMaster_server.dir/build
|
||||
|
||||
CMakeFiles/KeyMaster_server.dir/clean:
|
||||
$(CMAKE_COMMAND) -P CMakeFiles/KeyMaster_server.dir/cmake_clean.cmake
|
||||
.PHONY : CMakeFiles/KeyMaster_server.dir/clean
|
||||
|
||||
CMakeFiles/KeyMaster_server.dir/depend:
|
||||
cd /Users/AfonsoCMSosua/Developer/KeyMaster/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/AfonsoCMSosua/Developer/KeyMaster /Users/AfonsoCMSosua/Developer/KeyMaster /Users/AfonsoCMSosua/Developer/KeyMaster/build /Users/AfonsoCMSosua/Developer/KeyMaster/build /Users/AfonsoCMSosua/Developer/KeyMaster/build/CMakeFiles/KeyMaster_server.dir/DependInfo.cmake "--color=$(COLOR)"
|
||||
.PHONY : CMakeFiles/KeyMaster_server.dir/depend
|
||||
|
||||
11
build/CMakeFiles/KeyMaster_server.dir/cmake_clean.cmake
Normal file
11
build/CMakeFiles/KeyMaster_server.dir/cmake_clean.cmake
Normal file
@ -0,0 +1,11 @@
|
||||
file(REMOVE_RECURSE
|
||||
"CMakeFiles/KeyMaster_server.dir/src/server.c.o"
|
||||
"CMakeFiles/KeyMaster_server.dir/src/server.c.o.d"
|
||||
"KeyMaster_server"
|
||||
"KeyMaster_server.pdb"
|
||||
)
|
||||
|
||||
# Per-language clean rules from dependency scanning.
|
||||
foreach(lang C)
|
||||
include(CMakeFiles/KeyMaster_server.dir/cmake_clean_${lang}.cmake OPTIONAL)
|
||||
endforeach()
|
||||
160
build/CMakeFiles/KeyMaster_server.dir/compiler_depend.internal
Normal file
160
build/CMakeFiles/KeyMaster_server.dir/compiler_depend.internal
Normal file
@ -0,0 +1,160 @@
|
||||
# CMAKE generated file: DO NOT EDIT!
|
||||
# Generated by "Unix Makefiles" Generator, CMake Version 3.31
|
||||
|
||||
CMakeFiles/KeyMaster_server.dir/src/server.c.o
|
||||
/Users/AfonsoCMSosua/Developer/KeyMaster/src/server.c
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/Availability.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/AvailabilityInternal.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/AvailabilityInternalLegacy.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/AvailabilityVersions.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/_ctermid.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/_stdio.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/_types.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/_types/_intmax_t.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/_types/_uint16_t.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/_types/_uint32_t.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/_types/_uint64_t.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/_types/_uint8_t.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/_types/_uintmax_t.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/alloca.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/fcntl.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/gethostuuid.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/i386/_mcontext.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/i386/_param.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/i386/_types.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/i386/endian.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/i386/signal.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/i386/types.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/libkern/_OSByteOrder.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/libkern/i386/_OSByteOrder.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/mach/i386/_structs.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/mach/machine/_structs.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/machine/_mcontext.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/machine/_param.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/machine/_types.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/machine/endian.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/machine/signal.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/machine/types.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/malloc/_malloc.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/malloc/_malloc_type.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/net/net_kev.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/netinet/in.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/netinet6/in6.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/secure/_common.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/secure/_stdio.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/secure/_string.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/secure/_strings.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/setjmp.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/stdint.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/stdio.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/stdlib.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/string.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/strings.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_endian.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_posix_availability.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_pthread/_pthread_attr_t.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_pthread/_pthread_cond_t.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_pthread/_pthread_condattr_t.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_pthread/_pthread_key_t.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_pthread/_pthread_mutex_t.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_pthread/_pthread_mutexattr_t.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_pthread/_pthread_once_t.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_pthread/_pthread_rwlock_t.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_pthread/_pthread_rwlockattr_t.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_pthread/_pthread_t.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_pthread/_pthread_types.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_select.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_symbol_aliasing.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_blkcnt_t.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_blksize_t.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_caddr_t.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_clock_t.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_ct_rune_t.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_dev_t.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_errno_t.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_fd_clr.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_fd_copy.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_fd_def.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_fd_isset.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_fd_set.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_fd_setsize.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_fd_zero.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_filesec_t.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_fsblkcnt_t.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_fsfilcnt_t.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_gid_t.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_id_t.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_in_addr_t.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_in_port_t.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_ino64_t.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_ino_t.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_int16_t.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_int32_t.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_int64_t.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_int8_t.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_intptr_t.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_iovec_t.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_key_t.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_mode_t.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_nlink_t.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_null.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_o_dsync.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_o_sync.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_off_t.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_pid_t.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_posix_vdisable.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_rsize_t.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_rune_t.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_s_ifmt.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_sa_family_t.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_seek_set.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_sigaltstack.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_sigset_t.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_size_t.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_socklen_t.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_ssize_t.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_suseconds_t.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_time_t.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_timespec.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_timeval.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_u_char.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_u_int.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_u_int16_t.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_u_int32_t.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_u_int64_t.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_u_int8_t.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_u_short.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_ucontext.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_uid_t.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_uintptr_t.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_useconds_t.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_uuid_t.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_va_list.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_wchar_t.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/appleapiopts.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/cdefs.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/constrained_ctypes.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/fcntl.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/ioccom.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/resource.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/select.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/signal.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/socket.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/stat.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/stdio.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/termios.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/ttycom.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/ttydefaults.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/types.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/unistd.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/wait.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/termios.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/unistd.h
|
||||
/Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/include/stdint.h
|
||||
/Users/AfonsoCMSosua/Developer/KeyMaster/include/dynmem.c
|
||||
/Users/AfonsoCMSosua/Developer/KeyMaster/include/dynmem.h
|
||||
/Users/AfonsoCMSosua/Developer/KeyMaster/include/herror.h
|
||||
/Users/AfonsoCMSosua/Developer/KeyMaster/include/ui/ui.c
|
||||
/Users/AfonsoCMSosua/Developer/KeyMaster/include/ui/ui.h
|
||||
|
||||
469
build/CMakeFiles/KeyMaster_server.dir/compiler_depend.make
Normal file
469
build/CMakeFiles/KeyMaster_server.dir/compiler_depend.make
Normal file
@ -0,0 +1,469 @@
|
||||
# CMAKE generated file: DO NOT EDIT!
|
||||
# Generated by "Unix Makefiles" Generator, CMake Version 3.31
|
||||
|
||||
CMakeFiles/KeyMaster_server.dir/src/server.c.o: /Users/AfonsoCMSosua/Developer/KeyMaster/src/server.c \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/Availability.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/AvailabilityInternal.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/AvailabilityInternalLegacy.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/AvailabilityVersions.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/_ctermid.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/_stdio.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/_types.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/_types/_intmax_t.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/_types/_uint16_t.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/_types/_uint32_t.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/_types/_uint64_t.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/_types/_uint8_t.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/_types/_uintmax_t.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/alloca.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/fcntl.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/gethostuuid.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/i386/_mcontext.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/i386/_param.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/i386/_types.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/i386/endian.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/i386/signal.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/i386/types.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/libkern/_OSByteOrder.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/libkern/i386/_OSByteOrder.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/mach/i386/_structs.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/mach/machine/_structs.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/machine/_mcontext.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/machine/_param.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/machine/_types.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/machine/endian.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/machine/signal.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/machine/types.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/malloc/_malloc.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/malloc/_malloc_type.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/net/net_kev.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/netinet/in.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/netinet6/in6.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/secure/_common.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/secure/_stdio.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/secure/_string.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/secure/_strings.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/setjmp.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/stdint.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/stdio.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/stdlib.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/string.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/strings.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_endian.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_posix_availability.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_pthread/_pthread_attr_t.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_pthread/_pthread_cond_t.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_pthread/_pthread_condattr_t.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_pthread/_pthread_key_t.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_pthread/_pthread_mutex_t.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_pthread/_pthread_mutexattr_t.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_pthread/_pthread_once_t.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_pthread/_pthread_rwlock_t.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_pthread/_pthread_rwlockattr_t.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_pthread/_pthread_t.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_pthread/_pthread_types.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_select.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_symbol_aliasing.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_blkcnt_t.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_blksize_t.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_caddr_t.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_clock_t.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_ct_rune_t.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_dev_t.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_errno_t.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_fd_clr.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_fd_copy.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_fd_def.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_fd_isset.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_fd_set.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_fd_setsize.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_fd_zero.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_filesec_t.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_fsblkcnt_t.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_fsfilcnt_t.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_gid_t.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_id_t.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_in_addr_t.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_in_port_t.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_ino64_t.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_ino_t.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_int16_t.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_int32_t.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_int64_t.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_int8_t.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_intptr_t.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_iovec_t.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_key_t.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_mode_t.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_nlink_t.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_null.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_o_dsync.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_o_sync.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_off_t.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_pid_t.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_posix_vdisable.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_rsize_t.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_rune_t.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_s_ifmt.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_sa_family_t.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_seek_set.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_sigaltstack.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_sigset_t.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_size_t.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_socklen_t.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_ssize_t.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_suseconds_t.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_time_t.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_timespec.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_timeval.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_u_char.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_u_int.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_u_int16_t.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_u_int32_t.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_u_int64_t.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_u_int8_t.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_u_short.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_ucontext.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_uid_t.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_uintptr_t.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_useconds_t.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_uuid_t.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_va_list.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_wchar_t.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/appleapiopts.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/cdefs.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/constrained_ctypes.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/fcntl.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/ioccom.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/resource.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/select.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/signal.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/socket.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/stat.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/stdio.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/termios.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/ttycom.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/ttydefaults.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/types.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/unistd.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/wait.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/termios.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/unistd.h \
|
||||
/Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/include/stdint.h \
|
||||
/Users/AfonsoCMSosua/Developer/KeyMaster/include/dynmem.c \
|
||||
/Users/AfonsoCMSosua/Developer/KeyMaster/include/dynmem.h \
|
||||
/Users/AfonsoCMSosua/Developer/KeyMaster/include/herror.h \
|
||||
/Users/AfonsoCMSosua/Developer/KeyMaster/include/ui/ui.c \
|
||||
/Users/AfonsoCMSosua/Developer/KeyMaster/include/ui/ui.h
|
||||
|
||||
|
||||
/Users/AfonsoCMSosua/Developer/KeyMaster/include/ui/ui.h:
|
||||
|
||||
/Users/AfonsoCMSosua/Developer/KeyMaster/include/herror.h:
|
||||
|
||||
/Users/AfonsoCMSosua/Developer/KeyMaster/include/dynmem.c:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/unistd.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/termios.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/types.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/ttydefaults.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/termios.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/stdio.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/stat.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/socket.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/resource.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_va_list.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/appleapiopts.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_uintptr_t.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_uid_t.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_ucontext.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_useconds_t.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_u_int64_t.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_u_int16_t.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_u_int.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/signal.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_u_char.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_timeval.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_time_t.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_suseconds_t.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/ttycom.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_ssize_t.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_sigaltstack.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_seek_set.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_sa_family_t.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_s_ifmt.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_rune_t.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_posix_vdisable.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_pid_t.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_off_t.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_timespec.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_o_sync.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_o_dsync.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_socklen_t.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_intptr_t.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_iovec_t.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/setjmp.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_int16_t.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_ino_t.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_fsblkcnt_t.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_in_addr_t.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_gid_t.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_u_int8_t.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_fsfilcnt_t.h:
|
||||
|
||||
/Users/AfonsoCMSosua/Developer/KeyMaster/include/dynmem.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_in_port_t.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_id_t.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_filesec_t.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/unistd.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_u_short.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_fd_zero.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_fd_set.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_fd_def.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_fd_clr.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_fd_isset.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_ct_rune_t.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_clock_t.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_fd_setsize.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_caddr_t.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_int64_t.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_dev_t.h:
|
||||
|
||||
/Users/AfonsoCMSosua/Developer/KeyMaster/include/ui/ui.c:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_posix_availability.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_blksize_t.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_pthread/_pthread_types.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_pthread/_pthread_t.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_blkcnt_t.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_pthread/_pthread_mutexattr_t.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/wait.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/constrained_ctypes.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/alloca.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_pthread/_pthread_rwlock_t.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/_types/_uint8_t.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_null.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/malloc/_malloc_type.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_pthread/_pthread_mutex_t.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_uuid_t.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_symbol_aliasing.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_pthread/_pthread_once_t.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_pthread/_pthread_key_t.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/strings.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_endian.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_ino64_t.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/mach/i386/_structs.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/string.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/_stdio.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/i386/_param.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_errno_t.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_u_int32_t.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_pthread/_pthread_condattr_t.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/Availability.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/mach/machine/_structs.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/stdlib.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/ioccom.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/AvailabilityInternal.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_pthread/_pthread_cond_t.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_wchar_t.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/_types/_uint16_t.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/stdint.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/select.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_mode_t.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/machine/_types.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/secure/_string.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/netinet6/in6.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/malloc/_malloc.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/stdio.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/machine/types.h:
|
||||
|
||||
/Users/AfonsoCMSosua/Developer/KeyMaster/src/server.c:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_nlink_t.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/_types/_uint64_t.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/libkern/i386/_OSByteOrder.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/libkern/_OSByteOrder.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/i386/_types.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/i386/signal.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_int32_t.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/i386/endian.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/net/net_kev.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_rsize_t.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/_types/_uint32_t.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/AvailabilityInternalLegacy.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/secure/_common.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/fcntl.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/AvailabilityVersions.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/machine/_mcontext.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/_types/_intmax_t.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/netinet/in.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/_types/_uintmax_t.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/cdefs.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_int8_t.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/_types.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/fcntl.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_pthread/_pthread_attr_t.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/include/stdint.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_key_t.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/i386/_mcontext.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_sigset_t.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/machine/signal.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/secure/_strings.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/secure/_stdio.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/machine/endian.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/machine/_param.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/_ctermid.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_size_t.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/i386/types.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_pthread/_pthread_rwlockattr_t.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_fd_copy.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_select.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/gethostuuid.h:
|
||||
2
build/CMakeFiles/KeyMaster_server.dir/compiler_depend.ts
Normal file
2
build/CMakeFiles/KeyMaster_server.dir/compiler_depend.ts
Normal file
@ -0,0 +1,2 @@
|
||||
# CMAKE generated file: DO NOT EDIT!
|
||||
# Timestamp file for compiler generated dependencies management for KeyMaster_server.
|
||||
2
build/CMakeFiles/KeyMaster_server.dir/depend.make
Normal file
2
build/CMakeFiles/KeyMaster_server.dir/depend.make
Normal file
@ -0,0 +1,2 @@
|
||||
# Empty dependencies file for KeyMaster_server.
|
||||
# This may be replaced when dependencies are built.
|
||||
10
build/CMakeFiles/KeyMaster_server.dir/flags.make
Normal file
10
build/CMakeFiles/KeyMaster_server.dir/flags.make
Normal file
@ -0,0 +1,10 @@
|
||||
# CMAKE generated file: DO NOT EDIT!
|
||||
# Generated by "Unix Makefiles" Generator, CMake Version 3.31
|
||||
|
||||
# compile C with /Library/Developer/CommandLineTools/usr/bin/cc
|
||||
C_DEFINES =
|
||||
|
||||
C_INCLUDES = -I/Users/AfonsoCMSosua/Developer/KeyMaster/include
|
||||
|
||||
C_FLAGS = -std=gnu17 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk -mmacosx-version-min=13.7
|
||||
|
||||
1
build/CMakeFiles/KeyMaster_server.dir/link.txt
Normal file
1
build/CMakeFiles/KeyMaster_server.dir/link.txt
Normal file
@ -0,0 +1 @@
|
||||
/Library/Developer/CommandLineTools/usr/bin/cc -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk -mmacosx-version-min=13.7 -Wl,-search_paths_first -Wl,-headerpad_max_install_names -L/usr/local/opt/tcl-tk/lib CMakeFiles/KeyMaster_server.dir/src/server.c.o -o KeyMaster_server
|
||||
3
build/CMakeFiles/KeyMaster_server.dir/progress.make
Normal file
3
build/CMakeFiles/KeyMaster_server.dir/progress.make
Normal file
@ -0,0 +1,3 @@
|
||||
CMAKE_PROGRESS_1 = 1
|
||||
CMAKE_PROGRESS_2 = 2
|
||||
|
||||
156
build/CMakeFiles/KeyMaster_server.dir/src/server.c.o.d
Normal file
156
build/CMakeFiles/KeyMaster_server.dir/src/server.c.o.d
Normal file
@ -0,0 +1,156 @@
|
||||
CMakeFiles/KeyMaster_server.dir/src/server.c.o: \
|
||||
/Users/AfonsoCMSosua/Developer/KeyMaster/src/server.c \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/stdio.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/_stdio.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/cdefs.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_symbol_aliasing.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_posix_availability.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/Availability.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/AvailabilityVersions.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/AvailabilityInternal.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/AvailabilityInternalLegacy.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/_types.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/machine/_types.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/i386/_types.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_pthread/_pthread_types.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_va_list.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/machine/types.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/i386/types.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_int8_t.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_int16_t.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_int32_t.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_int64_t.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_u_int8_t.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_u_int16_t.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_u_int32_t.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_u_int64_t.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_intptr_t.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_uintptr_t.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_size_t.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_null.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/stdio.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_seek_set.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/_ctermid.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_off_t.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_ssize_t.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/secure/_stdio.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/secure/_common.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/stdlib.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/wait.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_pid_t.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_id_t.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/signal.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/appleapiopts.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/machine/signal.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/i386/signal.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/machine/_mcontext.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/i386/_mcontext.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/mach/machine/_structs.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/mach/i386/_structs.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_pthread/_pthread_attr_t.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_sigaltstack.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_ucontext.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_sigset_t.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_uid_t.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/resource.h \
|
||||
/Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/include/stdint.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/stdint.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/_types/_uint8_t.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/_types/_uint16_t.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/_types/_uint32_t.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/_types/_uint64_t.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/_types/_intmax_t.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/_types/_uintmax_t.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_timeval.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/machine/endian.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/i386/endian.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_endian.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/libkern/_OSByteOrder.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/libkern/i386/_OSByteOrder.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/alloca.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_ct_rune_t.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_rune_t.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_wchar_t.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/malloc/_malloc.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/malloc/_malloc_type.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_dev_t.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_mode_t.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/termios.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/termios.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_posix_vdisable.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/ttycom.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/ioccom.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/ttydefaults.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/socket.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/types.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_u_char.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_u_short.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_u_int.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_caddr_t.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_blkcnt_t.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_blksize_t.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_gid_t.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_in_addr_t.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_in_port_t.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_ino_t.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_ino64_t.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_key_t.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_nlink_t.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_clock_t.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_time_t.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_useconds_t.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_suseconds_t.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_rsize_t.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_errno_t.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_fd_def.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_fd_setsize.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_fd_set.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_fd_clr.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_fd_zero.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_fd_isset.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_fd_copy.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_pthread/_pthread_cond_t.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_pthread/_pthread_condattr_t.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_pthread/_pthread_mutex_t.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_pthread/_pthread_mutexattr_t.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_pthread/_pthread_once_t.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_pthread/_pthread_rwlock_t.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_pthread/_pthread_rwlockattr_t.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_pthread/_pthread_t.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_pthread/_pthread_key_t.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_fsblkcnt_t.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_fsfilcnt_t.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/constrained_ctypes.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/machine/_param.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/i386/_param.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/net/net_kev.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_sa_family_t.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_socklen_t.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_iovec_t.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/netinet/in.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/netinet6/in6.h \
|
||||
/Users/AfonsoCMSosua/Developer/KeyMaster/include/herror.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/setjmp.h \
|
||||
/Users/AfonsoCMSosua/Developer/KeyMaster/include/dynmem.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/stat.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_timespec.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_s_ifmt.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_filesec_t.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/string.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/strings.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/secure/_strings.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/secure/_string.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/unistd.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/unistd.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/select.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_select.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_uuid_t.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/gethostuuid.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/fcntl.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/fcntl.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_o_sync.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_o_dsync.h \
|
||||
/Users/AfonsoCMSosua/Developer/KeyMaster/include/dynmem.c \
|
||||
/Users/AfonsoCMSosua/Developer/KeyMaster/include/ui/ui.h \
|
||||
/Users/AfonsoCMSosua/Developer/KeyMaster/include/ui/ui.c
|
||||
@ -56,5 +56,5 @@ set(CMAKE_MAKEFILE_PRODUCTS
|
||||
|
||||
# Dependency information for all targets:
|
||||
set(CMAKE_DEPEND_INFO_FILES
|
||||
"CMakeFiles/KeyMaster.dir/DependInfo.cmake"
|
||||
"CMakeFiles/KeyMaster_server.dir/DependInfo.cmake"
|
||||
)
|
||||
|
||||
@ -63,11 +63,11 @@ CMAKE_BINARY_DIR = /Users/AfonsoCMSosua/Developer/KeyMaster/build
|
||||
# Directory level rules for the build root directory
|
||||
|
||||
# The main recursive "all" target.
|
||||
all: CMakeFiles/KeyMaster.dir/all
|
||||
all: CMakeFiles/KeyMaster_server.dir/all
|
||||
.PHONY : all
|
||||
|
||||
# The main recursive "codegen" target.
|
||||
codegen: CMakeFiles/KeyMaster.dir/codegen
|
||||
codegen: CMakeFiles/KeyMaster_server.dir/codegen
|
||||
.PHONY : codegen
|
||||
|
||||
# The main recursive "preinstall" target.
|
||||
@ -75,40 +75,40 @@ preinstall:
|
||||
.PHONY : preinstall
|
||||
|
||||
# The main recursive "clean" target.
|
||||
clean: CMakeFiles/KeyMaster.dir/clean
|
||||
clean: CMakeFiles/KeyMaster_server.dir/clean
|
||||
.PHONY : clean
|
||||
|
||||
#=============================================================================
|
||||
# Target rules for target CMakeFiles/KeyMaster.dir
|
||||
# Target rules for target CMakeFiles/KeyMaster_server.dir
|
||||
|
||||
# All Build rule for target.
|
||||
CMakeFiles/KeyMaster.dir/all:
|
||||
$(MAKE) $(MAKESILENT) -f CMakeFiles/KeyMaster.dir/build.make CMakeFiles/KeyMaster.dir/depend
|
||||
$(MAKE) $(MAKESILENT) -f CMakeFiles/KeyMaster.dir/build.make CMakeFiles/KeyMaster.dir/build
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/AfonsoCMSosua/Developer/KeyMaster/build/CMakeFiles --progress-num=1,2 "Built target KeyMaster"
|
||||
.PHONY : CMakeFiles/KeyMaster.dir/all
|
||||
CMakeFiles/KeyMaster_server.dir/all:
|
||||
$(MAKE) $(MAKESILENT) -f CMakeFiles/KeyMaster_server.dir/build.make CMakeFiles/KeyMaster_server.dir/depend
|
||||
$(MAKE) $(MAKESILENT) -f CMakeFiles/KeyMaster_server.dir/build.make CMakeFiles/KeyMaster_server.dir/build
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/AfonsoCMSosua/Developer/KeyMaster/build/CMakeFiles --progress-num=1,2 "Built target KeyMaster_server"
|
||||
.PHONY : CMakeFiles/KeyMaster_server.dir/all
|
||||
|
||||
# Build rule for subdir invocation for target.
|
||||
CMakeFiles/KeyMaster.dir/rule: cmake_check_build_system
|
||||
CMakeFiles/KeyMaster_server.dir/rule: cmake_check_build_system
|
||||
$(CMAKE_COMMAND) -E cmake_progress_start /Users/AfonsoCMSosua/Developer/KeyMaster/build/CMakeFiles 2
|
||||
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 CMakeFiles/KeyMaster.dir/all
|
||||
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 CMakeFiles/KeyMaster_server.dir/all
|
||||
$(CMAKE_COMMAND) -E cmake_progress_start /Users/AfonsoCMSosua/Developer/KeyMaster/build/CMakeFiles 0
|
||||
.PHONY : CMakeFiles/KeyMaster.dir/rule
|
||||
.PHONY : CMakeFiles/KeyMaster_server.dir/rule
|
||||
|
||||
# Convenience name for target.
|
||||
KeyMaster: CMakeFiles/KeyMaster.dir/rule
|
||||
.PHONY : KeyMaster
|
||||
KeyMaster_server: CMakeFiles/KeyMaster_server.dir/rule
|
||||
.PHONY : KeyMaster_server
|
||||
|
||||
# codegen rule for target.
|
||||
CMakeFiles/KeyMaster.dir/codegen:
|
||||
$(MAKE) $(MAKESILENT) -f CMakeFiles/KeyMaster.dir/build.make CMakeFiles/KeyMaster.dir/codegen
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/AfonsoCMSosua/Developer/KeyMaster/build/CMakeFiles --progress-num=1,2 "Finished codegen for target KeyMaster"
|
||||
.PHONY : CMakeFiles/KeyMaster.dir/codegen
|
||||
CMakeFiles/KeyMaster_server.dir/codegen:
|
||||
$(MAKE) $(MAKESILENT) -f CMakeFiles/KeyMaster_server.dir/build.make CMakeFiles/KeyMaster_server.dir/codegen
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/AfonsoCMSosua/Developer/KeyMaster/build/CMakeFiles --progress-num=1,2 "Finished codegen for target KeyMaster_server"
|
||||
.PHONY : CMakeFiles/KeyMaster_server.dir/codegen
|
||||
|
||||
# clean rule for target.
|
||||
CMakeFiles/KeyMaster.dir/clean:
|
||||
$(MAKE) $(MAKESILENT) -f CMakeFiles/KeyMaster.dir/build.make CMakeFiles/KeyMaster.dir/clean
|
||||
.PHONY : CMakeFiles/KeyMaster.dir/clean
|
||||
CMakeFiles/KeyMaster_server.dir/clean:
|
||||
$(MAKE) $(MAKESILENT) -f CMakeFiles/KeyMaster_server.dir/build.make CMakeFiles/KeyMaster_server.dir/clean
|
||||
.PHONY : CMakeFiles/KeyMaster_server.dir/clean
|
||||
|
||||
#=============================================================================
|
||||
# Special targets to cleanup operation of make.
|
||||
|
||||
1
build/CMakeFiles/Progress/1
Normal file
1
build/CMakeFiles/Progress/1
Normal file
@ -0,0 +1 @@
|
||||
empty
|
||||
1
build/CMakeFiles/Progress/count.txt
Normal file
1
build/CMakeFiles/Progress/count.txt
Normal file
@ -0,0 +1 @@
|
||||
2
|
||||
@ -1,3 +1,3 @@
|
||||
/Users/AfonsoCMSosua/Developer/KeyMaster/build/CMakeFiles/KeyMaster.dir
|
||||
/Users/AfonsoCMSosua/Developer/KeyMaster/build/CMakeFiles/KeyMaster_server.dir
|
||||
/Users/AfonsoCMSosua/Developer/KeyMaster/build/CMakeFiles/edit_cache.dir
|
||||
/Users/AfonsoCMSosua/Developer/KeyMaster/build/CMakeFiles/rebuild_cache.dir
|
||||
|
||||
23
build/CMakeFiles/server.dir/DependInfo.cmake
Normal file
23
build/CMakeFiles/server.dir/DependInfo.cmake
Normal file
@ -0,0 +1,23 @@
|
||||
|
||||
# Consider dependencies only in project.
|
||||
set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF)
|
||||
|
||||
# The set of languages for which implicit dependencies are needed:
|
||||
set(CMAKE_DEPENDS_LANGUAGES
|
||||
)
|
||||
|
||||
# The set of dependency files which are needed:
|
||||
set(CMAKE_DEPENDS_DEPENDENCY_FILES
|
||||
"/Users/AfonsoCMSosua/Developer/KeyMaster/src/server.c" "CMakeFiles/server.dir/src/server.c.o" "gcc" "CMakeFiles/server.dir/src/server.c.o.d"
|
||||
)
|
||||
|
||||
# Targets to which this target links which contain Fortran sources.
|
||||
set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES
|
||||
)
|
||||
|
||||
# Targets to which this target links which contain Fortran sources.
|
||||
set(CMAKE_Fortran_TARGET_FORWARD_LINKED_INFO_FILES
|
||||
)
|
||||
|
||||
# Fortran module output directory.
|
||||
set(CMAKE_Fortran_TARGET_MODULE_DIR "")
|
||||
113
build/CMakeFiles/server.dir/build.make
Normal file
113
build/CMakeFiles/server.dir/build.make
Normal file
@ -0,0 +1,113 @@
|
||||
# CMAKE generated file: DO NOT EDIT!
|
||||
# Generated by "Unix Makefiles" Generator, CMake Version 3.31
|
||||
|
||||
# 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/local/bin/cmake
|
||||
|
||||
# The command to remove a file.
|
||||
RM = /usr/local/bin/cmake -E rm -f
|
||||
|
||||
# Escaping for special characters.
|
||||
EQUALS = =
|
||||
|
||||
# The top-level source directory on which CMake was run.
|
||||
CMAKE_SOURCE_DIR = /Users/AfonsoCMSosua/Developer/KeyMaster
|
||||
|
||||
# The top-level build directory on which CMake was run.
|
||||
CMAKE_BINARY_DIR = /Users/AfonsoCMSosua/Developer/KeyMaster/build
|
||||
|
||||
# Include any dependencies generated for this target.
|
||||
include CMakeFiles/server.dir/depend.make
|
||||
# Include any dependencies generated by the compiler for this target.
|
||||
include CMakeFiles/server.dir/compiler_depend.make
|
||||
|
||||
# Include the progress variables for this target.
|
||||
include CMakeFiles/server.dir/progress.make
|
||||
|
||||
# Include the compile flags for this target's objects.
|
||||
include CMakeFiles/server.dir/flags.make
|
||||
|
||||
CMakeFiles/server.dir/codegen:
|
||||
.PHONY : CMakeFiles/server.dir/codegen
|
||||
|
||||
CMakeFiles/server.dir/src/server.c.o: CMakeFiles/server.dir/flags.make
|
||||
CMakeFiles/server.dir/src/server.c.o: /Users/AfonsoCMSosua/Developer/KeyMaster/src/server.c
|
||||
CMakeFiles/server.dir/src/server.c.o: CMakeFiles/server.dir/compiler_depend.ts
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Users/AfonsoCMSosua/Developer/KeyMaster/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building C object CMakeFiles/server.dir/src/server.c.o"
|
||||
/Library/Developer/CommandLineTools/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/server.dir/src/server.c.o -MF CMakeFiles/server.dir/src/server.c.o.d -o CMakeFiles/server.dir/src/server.c.o -c /Users/AfonsoCMSosua/Developer/KeyMaster/src/server.c
|
||||
|
||||
CMakeFiles/server.dir/src/server.c.i: cmake_force
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/server.dir/src/server.c.i"
|
||||
/Library/Developer/CommandLineTools/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /Users/AfonsoCMSosua/Developer/KeyMaster/src/server.c > CMakeFiles/server.dir/src/server.c.i
|
||||
|
||||
CMakeFiles/server.dir/src/server.c.s: cmake_force
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/server.dir/src/server.c.s"
|
||||
/Library/Developer/CommandLineTools/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /Users/AfonsoCMSosua/Developer/KeyMaster/src/server.c -o CMakeFiles/server.dir/src/server.c.s
|
||||
|
||||
# Object files for target server
|
||||
server_OBJECTS = \
|
||||
"CMakeFiles/server.dir/src/server.c.o"
|
||||
|
||||
# External object files for target server
|
||||
server_EXTERNAL_OBJECTS =
|
||||
|
||||
server: CMakeFiles/server.dir/src/server.c.o
|
||||
server: CMakeFiles/server.dir/build.make
|
||||
server: CMakeFiles/server.dir/link.txt
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --bold --progress-dir=/Users/AfonsoCMSosua/Developer/KeyMaster/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Linking C executable server"
|
||||
$(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/server.dir/link.txt --verbose=$(VERBOSE)
|
||||
|
||||
# Rule to build all files generated by this target.
|
||||
CMakeFiles/server.dir/build: server
|
||||
.PHONY : CMakeFiles/server.dir/build
|
||||
|
||||
CMakeFiles/server.dir/clean:
|
||||
$(CMAKE_COMMAND) -P CMakeFiles/server.dir/cmake_clean.cmake
|
||||
.PHONY : CMakeFiles/server.dir/clean
|
||||
|
||||
CMakeFiles/server.dir/depend:
|
||||
cd /Users/AfonsoCMSosua/Developer/KeyMaster/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/AfonsoCMSosua/Developer/KeyMaster /Users/AfonsoCMSosua/Developer/KeyMaster /Users/AfonsoCMSosua/Developer/KeyMaster/build /Users/AfonsoCMSosua/Developer/KeyMaster/build /Users/AfonsoCMSosua/Developer/KeyMaster/build/CMakeFiles/server.dir/DependInfo.cmake "--color=$(COLOR)"
|
||||
.PHONY : CMakeFiles/server.dir/depend
|
||||
|
||||
11
build/CMakeFiles/server.dir/cmake_clean.cmake
Normal file
11
build/CMakeFiles/server.dir/cmake_clean.cmake
Normal file
@ -0,0 +1,11 @@
|
||||
file(REMOVE_RECURSE
|
||||
"CMakeFiles/server.dir/src/server.c.o"
|
||||
"CMakeFiles/server.dir/src/server.c.o.d"
|
||||
"server"
|
||||
"server.pdb"
|
||||
)
|
||||
|
||||
# Per-language clean rules from dependency scanning.
|
||||
foreach(lang C)
|
||||
include(CMakeFiles/server.dir/cmake_clean_${lang}.cmake OPTIONAL)
|
||||
endforeach()
|
||||
130
build/CMakeFiles/server.dir/compiler_depend.internal
Normal file
130
build/CMakeFiles/server.dir/compiler_depend.internal
Normal file
@ -0,0 +1,130 @@
|
||||
# CMAKE generated file: DO NOT EDIT!
|
||||
# Generated by "Unix Makefiles" Generator, CMake Version 3.31
|
||||
|
||||
CMakeFiles/server.dir/src/server.c.o
|
||||
/Users/AfonsoCMSosua/Developer/KeyMaster/src/server.c
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/Availability.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/AvailabilityInternal.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/AvailabilityInternalLegacy.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/AvailabilityVersions.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/_ctermid.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/_stdio.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/_types.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/_types/_intmax_t.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/_types/_uint16_t.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/_types/_uint32_t.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/_types/_uint64_t.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/_types/_uint8_t.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/_types/_uintmax_t.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/alloca.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/fcntl.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/gethostuuid.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/i386/_mcontext.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/i386/_types.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/i386/endian.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/i386/signal.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/i386/types.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/libkern/_OSByteOrder.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/libkern/i386/_OSByteOrder.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/mach/i386/_structs.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/mach/machine/_structs.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/machine/_mcontext.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/machine/_types.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/machine/endian.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/machine/signal.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/machine/types.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/malloc/_malloc.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/malloc/_malloc_type.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/secure/_common.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/secure/_stdio.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/secure/_string.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/secure/_strings.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/setjmp.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/stdint.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/stdio.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/stdlib.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/string.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/strings.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_endian.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_posix_availability.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_pthread/_pthread_attr_t.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_pthread/_pthread_types.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_select.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_symbol_aliasing.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_blkcnt_t.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_blksize_t.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_ct_rune_t.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_dev_t.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_errno_t.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_fd_clr.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_fd_copy.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_fd_def.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_fd_isset.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_fd_set.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_fd_setsize.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_fd_zero.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_filesec_t.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_gid_t.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_id_t.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_ino64_t.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_ino_t.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_int16_t.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_int32_t.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_int64_t.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_int8_t.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_intptr_t.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_mode_t.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_nlink_t.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_null.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_o_dsync.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_o_sync.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_off_t.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_pid_t.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_posix_vdisable.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_rsize_t.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_rune_t.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_s_ifmt.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_seek_set.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_sigaltstack.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_sigset_t.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_size_t.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_ssize_t.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_suseconds_t.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_time_t.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_timespec.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_timeval.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_u_int16_t.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_u_int32_t.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_u_int64_t.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_u_int8_t.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_ucontext.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_uid_t.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_uintptr_t.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_useconds_t.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_uuid_t.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_va_list.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_wchar_t.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/appleapiopts.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/cdefs.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/fcntl.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/ioccom.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/resource.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/select.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/signal.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/stat.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/stdio.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/termios.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/ttycom.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/ttydefaults.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/unistd.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/wait.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/termios.h
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/unistd.h
|
||||
/Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/include/stdint.h
|
||||
/Users/AfonsoCMSosua/Developer/KeyMaster/include/dynmem.c
|
||||
/Users/AfonsoCMSosua/Developer/KeyMaster/include/dynmem.h
|
||||
/Users/AfonsoCMSosua/Developer/KeyMaster/include/herror.h
|
||||
/Users/AfonsoCMSosua/Developer/KeyMaster/include/ui/ui.c
|
||||
/Users/AfonsoCMSosua/Developer/KeyMaster/include/ui/ui.h
|
||||
|
||||
379
build/CMakeFiles/server.dir/compiler_depend.make
Normal file
379
build/CMakeFiles/server.dir/compiler_depend.make
Normal file
@ -0,0 +1,379 @@
|
||||
# CMAKE generated file: DO NOT EDIT!
|
||||
# Generated by "Unix Makefiles" Generator, CMake Version 3.31
|
||||
|
||||
CMakeFiles/server.dir/src/server.c.o: /Users/AfonsoCMSosua/Developer/KeyMaster/src/server.c \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/Availability.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/AvailabilityInternal.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/AvailabilityInternalLegacy.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/AvailabilityVersions.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/_ctermid.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/_stdio.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/_types.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/_types/_intmax_t.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/_types/_uint16_t.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/_types/_uint32_t.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/_types/_uint64_t.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/_types/_uint8_t.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/_types/_uintmax_t.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/alloca.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/fcntl.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/gethostuuid.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/i386/_mcontext.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/i386/_types.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/i386/endian.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/i386/signal.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/i386/types.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/libkern/_OSByteOrder.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/libkern/i386/_OSByteOrder.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/mach/i386/_structs.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/mach/machine/_structs.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/machine/_mcontext.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/machine/_types.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/machine/endian.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/machine/signal.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/machine/types.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/malloc/_malloc.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/malloc/_malloc_type.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/secure/_common.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/secure/_stdio.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/secure/_string.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/secure/_strings.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/setjmp.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/stdint.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/stdio.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/stdlib.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/string.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/strings.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_endian.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_posix_availability.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_pthread/_pthread_attr_t.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_pthread/_pthread_types.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_select.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_symbol_aliasing.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_blkcnt_t.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_blksize_t.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_ct_rune_t.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_dev_t.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_errno_t.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_fd_clr.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_fd_copy.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_fd_def.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_fd_isset.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_fd_set.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_fd_setsize.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_fd_zero.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_filesec_t.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_gid_t.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_id_t.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_ino64_t.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_ino_t.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_int16_t.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_int32_t.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_int64_t.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_int8_t.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_intptr_t.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_mode_t.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_nlink_t.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_null.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_o_dsync.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_o_sync.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_off_t.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_pid_t.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_posix_vdisable.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_rsize_t.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_rune_t.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_s_ifmt.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_seek_set.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_sigaltstack.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_sigset_t.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_size_t.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_ssize_t.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_suseconds_t.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_time_t.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_timespec.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_timeval.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_u_int16_t.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_u_int32_t.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_u_int64_t.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_u_int8_t.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_ucontext.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_uid_t.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_uintptr_t.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_useconds_t.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_uuid_t.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_va_list.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_wchar_t.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/appleapiopts.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/cdefs.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/fcntl.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/ioccom.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/resource.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/select.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/signal.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/stat.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/stdio.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/termios.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/ttycom.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/ttydefaults.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/unistd.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/wait.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/termios.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/unistd.h \
|
||||
/Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/include/stdint.h \
|
||||
/Users/AfonsoCMSosua/Developer/KeyMaster/include/dynmem.c \
|
||||
/Users/AfonsoCMSosua/Developer/KeyMaster/include/dynmem.h \
|
||||
/Users/AfonsoCMSosua/Developer/KeyMaster/include/herror.h \
|
||||
/Users/AfonsoCMSosua/Developer/KeyMaster/include/ui/ui.c \
|
||||
/Users/AfonsoCMSosua/Developer/KeyMaster/include/ui/ui.h
|
||||
|
||||
|
||||
/Users/AfonsoCMSosua/Developer/KeyMaster/include/ui/ui.h:
|
||||
|
||||
/Users/AfonsoCMSosua/Developer/KeyMaster/include/herror.h:
|
||||
|
||||
/Users/AfonsoCMSosua/Developer/KeyMaster/include/dynmem.h:
|
||||
|
||||
/Users/AfonsoCMSosua/Developer/KeyMaster/include/dynmem.c:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/unistd.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/termios.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/ttydefaults.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/termios.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/stdio.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/stat.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/signal.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/resource.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_va_list.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/appleapiopts.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_uintptr_t.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_uid_t.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_useconds_t.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_u_int64_t.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_u_int32_t.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_suseconds_t.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/ttycom.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_ssize_t.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/machine/signal.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_sigset_t.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_timespec.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_o_sync.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_o_dsync.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/wait.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/alloca.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/_types/_uint8_t.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_null.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_intptr_t.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_rune_t.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/setjmp.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_int16_t.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_ino_t.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_ucontext.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_gid_t.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_id_t.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_filesec_t.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/unistd.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_fd_zero.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_fd_set.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_fd_def.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_fd_clr.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_timeval.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_fd_isset.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_ct_rune_t.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_u_int16_t.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_int64_t.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_dev_t.h:
|
||||
|
||||
/Users/AfonsoCMSosua/Developer/KeyMaster/include/ui/ui.c:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_posix_availability.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_blksize_t.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_blkcnt_t.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_seek_set.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_s_ifmt.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_uuid_t.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_symbol_aliasing.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_pthread/_pthread_types.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/strings.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_endian.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/mach/i386/_structs.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/string.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/_stdio.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_errno_t.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/Availability.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/mach/machine/_structs.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/stdlib.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_wchar_t.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/_types/_uint16_t.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/stdint.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/include/stdint.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/i386/_mcontext.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_pthread/_pthread_attr_t.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/select.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_mode_t.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/machine/_types.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/secure/_string.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/malloc/_malloc_type.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_pid_t.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/malloc/_malloc.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/stdio.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_u_int8_t.h:
|
||||
|
||||
/Users/AfonsoCMSosua/Developer/KeyMaster/src/server.c:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/machine/types.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_time_t.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_nlink_t.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/_types/_uint64_t.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/libkern/i386/_OSByteOrder.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/libkern/_OSByteOrder.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/i386/types.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_size_t.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/i386/_types.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/i386/signal.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_int32_t.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/i386/endian.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/secure/_common.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/_types/_uintmax_t.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_off_t.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/cdefs.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_int8_t.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/_types.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/fcntl.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_rsize_t.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/_types/_uint32_t.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/AvailabilityInternalLegacy.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/fcntl.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/AvailabilityVersions.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/machine/_mcontext.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_sigaltstack.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_fd_setsize.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/ioccom.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/AvailabilityInternal.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/secure/_strings.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/secure/_stdio.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_posix_vdisable.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/_ctermid.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_ino64_t.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/machine/endian.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_fd_copy.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_select.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/_types/_intmax_t.h:
|
||||
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/gethostuuid.h:
|
||||
2
build/CMakeFiles/server.dir/compiler_depend.ts
Normal file
2
build/CMakeFiles/server.dir/compiler_depend.ts
Normal file
@ -0,0 +1,2 @@
|
||||
# CMAKE generated file: DO NOT EDIT!
|
||||
# Timestamp file for compiler generated dependencies management for server.
|
||||
2
build/CMakeFiles/server.dir/depend.make
Normal file
2
build/CMakeFiles/server.dir/depend.make
Normal file
@ -0,0 +1,2 @@
|
||||
# Empty dependencies file for server.
|
||||
# This may be replaced when dependencies are built.
|
||||
10
build/CMakeFiles/server.dir/flags.make
Normal file
10
build/CMakeFiles/server.dir/flags.make
Normal file
@ -0,0 +1,10 @@
|
||||
# CMAKE generated file: DO NOT EDIT!
|
||||
# Generated by "Unix Makefiles" Generator, CMake Version 3.31
|
||||
|
||||
# compile C with /Library/Developer/CommandLineTools/usr/bin/cc
|
||||
C_DEFINES =
|
||||
|
||||
C_INCLUDES = -I/Users/AfonsoCMSosua/Developer/KeyMaster/include
|
||||
|
||||
C_FLAGS = -std=gnu17 -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk -mmacosx-version-min=13.7
|
||||
|
||||
1
build/CMakeFiles/server.dir/link.txt
Normal file
1
build/CMakeFiles/server.dir/link.txt
Normal file
@ -0,0 +1 @@
|
||||
/Library/Developer/CommandLineTools/usr/bin/cc -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk -mmacosx-version-min=13.7 -Wl,-search_paths_first -Wl,-headerpad_max_install_names -L/usr/local/opt/tcl-tk/lib CMakeFiles/server.dir/src/server.c.o -o server
|
||||
3
build/CMakeFiles/server.dir/progress.make
Normal file
3
build/CMakeFiles/server.dir/progress.make
Normal file
@ -0,0 +1,3 @@
|
||||
CMAKE_PROGRESS_1 = 3
|
||||
CMAKE_PROGRESS_2 = 4
|
||||
|
||||
BIN
build/CMakeFiles/server.dir/src/server.c.o
Normal file
BIN
build/CMakeFiles/server.dir/src/server.c.o
Normal file
Binary file not shown.
126
build/CMakeFiles/server.dir/src/server.c.o.d
Normal file
126
build/CMakeFiles/server.dir/src/server.c.o.d
Normal file
@ -0,0 +1,126 @@
|
||||
CMakeFiles/server.dir/src/server.c.o: \
|
||||
/Users/AfonsoCMSosua/Developer/KeyMaster/src/server.c \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/stdio.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/_stdio.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/cdefs.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_symbol_aliasing.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_posix_availability.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/Availability.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/AvailabilityVersions.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/AvailabilityInternal.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/AvailabilityInternalLegacy.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/_types.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/machine/_types.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/i386/_types.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_pthread/_pthread_types.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_va_list.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/machine/types.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/i386/types.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_int8_t.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_int16_t.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_int32_t.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_int64_t.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_u_int8_t.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_u_int16_t.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_u_int32_t.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_u_int64_t.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_intptr_t.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_uintptr_t.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_size_t.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_null.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/stdio.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_seek_set.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/_ctermid.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_off_t.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_ssize_t.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/secure/_stdio.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/secure/_common.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/stdlib.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/wait.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_pid_t.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_id_t.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/signal.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/appleapiopts.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/machine/signal.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/i386/signal.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/machine/_mcontext.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/i386/_mcontext.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/mach/machine/_structs.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/mach/i386/_structs.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_pthread/_pthread_attr_t.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_sigaltstack.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_ucontext.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_sigset_t.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_uid_t.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/resource.h \
|
||||
/Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/include/stdint.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/stdint.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/_types/_uint8_t.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/_types/_uint16_t.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/_types/_uint32_t.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/_types/_uint64_t.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/_types/_intmax_t.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/_types/_uintmax_t.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_timeval.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/machine/endian.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/i386/endian.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_endian.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/libkern/_OSByteOrder.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/libkern/i386/_OSByteOrder.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/alloca.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_ct_rune_t.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_rune_t.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_wchar_t.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/malloc/_malloc.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/malloc/_malloc_type.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_dev_t.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_mode_t.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/termios.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/termios.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_posix_vdisable.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/ttycom.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/ioccom.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/ttydefaults.h \
|
||||
/Users/AfonsoCMSosua/Developer/KeyMaster/include/herror.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/setjmp.h \
|
||||
/Users/AfonsoCMSosua/Developer/KeyMaster/include/dynmem.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/stat.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_timespec.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_blkcnt_t.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_blksize_t.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_ino_t.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_ino64_t.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_nlink_t.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_gid_t.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_time_t.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_s_ifmt.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_filesec_t.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/string.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_rsize_t.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_errno_t.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/strings.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/secure/_strings.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/secure/_string.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/unistd.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/unistd.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_useconds_t.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/select.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_fd_def.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_suseconds_t.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_fd_setsize.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_fd_set.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_fd_clr.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_fd_isset.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_fd_zero.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_fd_copy.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_select.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_uuid_t.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/gethostuuid.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/fcntl.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/fcntl.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_o_sync.h \
|
||||
/Library/Developer/CommandLineTools/SDKs/MacOSX14.2.sdk/usr/include/sys/_types/_o_dsync.h \
|
||||
/Users/AfonsoCMSosua/Developer/KeyMaster/include/dynmem.c \
|
||||
/Users/AfonsoCMSosua/Developer/KeyMaster/include/ui/ui.h \
|
||||
/Users/AfonsoCMSosua/Developer/KeyMaster/include/ui/ui.c
|
||||
Binary file not shown.
@ -117,41 +117,41 @@ depend:
|
||||
.PHONY : depend
|
||||
|
||||
#=============================================================================
|
||||
# Target rules for targets named KeyMaster
|
||||
# Target rules for targets named KeyMaster_server
|
||||
|
||||
# Build rule for target.
|
||||
KeyMaster: cmake_check_build_system
|
||||
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 KeyMaster
|
||||
.PHONY : KeyMaster
|
||||
KeyMaster_server: cmake_check_build_system
|
||||
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 KeyMaster_server
|
||||
.PHONY : KeyMaster_server
|
||||
|
||||
# fast build rule for target.
|
||||
KeyMaster/fast:
|
||||
$(MAKE) $(MAKESILENT) -f CMakeFiles/KeyMaster.dir/build.make CMakeFiles/KeyMaster.dir/build
|
||||
.PHONY : KeyMaster/fast
|
||||
KeyMaster_server/fast:
|
||||
$(MAKE) $(MAKESILENT) -f CMakeFiles/KeyMaster_server.dir/build.make CMakeFiles/KeyMaster_server.dir/build
|
||||
.PHONY : KeyMaster_server/fast
|
||||
|
||||
src/main.o: src/main.c.o
|
||||
.PHONY : src/main.o
|
||||
src/server.o: src/server.c.o
|
||||
.PHONY : src/server.o
|
||||
|
||||
# target to build an object file
|
||||
src/main.c.o:
|
||||
$(MAKE) $(MAKESILENT) -f CMakeFiles/KeyMaster.dir/build.make CMakeFiles/KeyMaster.dir/src/main.c.o
|
||||
.PHONY : src/main.c.o
|
||||
src/server.c.o:
|
||||
$(MAKE) $(MAKESILENT) -f CMakeFiles/KeyMaster_server.dir/build.make CMakeFiles/KeyMaster_server.dir/src/server.c.o
|
||||
.PHONY : src/server.c.o
|
||||
|
||||
src/main.i: src/main.c.i
|
||||
.PHONY : src/main.i
|
||||
src/server.i: src/server.c.i
|
||||
.PHONY : src/server.i
|
||||
|
||||
# target to preprocess a source file
|
||||
src/main.c.i:
|
||||
$(MAKE) $(MAKESILENT) -f CMakeFiles/KeyMaster.dir/build.make CMakeFiles/KeyMaster.dir/src/main.c.i
|
||||
.PHONY : src/main.c.i
|
||||
src/server.c.i:
|
||||
$(MAKE) $(MAKESILENT) -f CMakeFiles/KeyMaster_server.dir/build.make CMakeFiles/KeyMaster_server.dir/src/server.c.i
|
||||
.PHONY : src/server.c.i
|
||||
|
||||
src/main.s: src/main.c.s
|
||||
.PHONY : src/main.s
|
||||
src/server.s: src/server.c.s
|
||||
.PHONY : src/server.s
|
||||
|
||||
# target to generate assembly for a file
|
||||
src/main.c.s:
|
||||
$(MAKE) $(MAKESILENT) -f CMakeFiles/KeyMaster.dir/build.make CMakeFiles/KeyMaster.dir/src/main.c.s
|
||||
.PHONY : src/main.c.s
|
||||
src/server.c.s:
|
||||
$(MAKE) $(MAKESILENT) -f CMakeFiles/KeyMaster_server.dir/build.make CMakeFiles/KeyMaster_server.dir/src/server.c.s
|
||||
.PHONY : src/server.c.s
|
||||
|
||||
# Help Target
|
||||
help:
|
||||
@ -161,10 +161,10 @@ help:
|
||||
@echo "... depend"
|
||||
@echo "... edit_cache"
|
||||
@echo "... rebuild_cache"
|
||||
@echo "... KeyMaster"
|
||||
@echo "... src/main.o"
|
||||
@echo "... src/main.i"
|
||||
@echo "... src/main.s"
|
||||
@echo "... KeyMaster_server"
|
||||
@echo "... src/server.o"
|
||||
@echo "... src/server.i"
|
||||
@echo "... src/server.s"
|
||||
.PHONY : help
|
||||
|
||||
|
||||
|
||||
@ -145,8 +145,6 @@ int main(void)
|
||||
{
|
||||
printf("Invalid command (%s)\n\"Q\" or \"quit\" or \"exit\" to close the program\n", choice);
|
||||
}
|
||||
|
||||
// Connect to the server and get the list of passwords tro HTTP GET
|
||||
}
|
||||
free(choice);
|
||||
|
||||
|
||||
27
src/server.c
Normal file
27
src/server.c
Normal file
@ -0,0 +1,27 @@
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <termios.h>
|
||||
#include <sys/socket.h>
|
||||
#include <netinet/in.h>
|
||||
|
||||
#include "herror.h"
|
||||
#include "dynmem.h"
|
||||
#include "ui/ui.h"
|
||||
|
||||
#define SERVER_IP "XXX.XXX.XXX.XXX"
|
||||
|
||||
int main(void)
|
||||
{
|
||||
// Connect and bind to a port (8080) on the server
|
||||
int sockfd = socket(AF_INET, SOCK_STREAM, 0);
|
||||
if (sockfd == -1)
|
||||
{
|
||||
fprintf(stderr, "Socket creation failed\n");
|
||||
return 1;
|
||||
}
|
||||
|
||||
struct sockaddr_in servaddr;
|
||||
servaddr.sin_family = AF_INET;
|
||||
servaddr.sin_port = htons(8080);
|
||||
servaddr.sin_addr.s_addr = inet_addr(SERVER_IP);
|
||||
}
|
||||
Loading…
x
Reference in New Issue
Block a user