Update Files
This commit is contained in:
@ -0,0 +1,16 @@
|
||||
# CMAKE generated file: DO NOT EDIT!
|
||||
# Generated by "Unix Makefiles" Generator, CMake Version 3.30
|
||||
|
||||
# Relative path conversion top directories.
|
||||
set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/home/onek8/Development/libwebsockets")
|
||||
set(CMAKE_RELATIVE_PATH_TOP_BINARY "/home/onek8/Development/libwebsockets/build")
|
||||
|
||||
# Force unix paths in dependencies.
|
||||
set(CMAKE_FORCE_UNIX_PATHS 1)
|
||||
|
||||
|
||||
# The C and CXX include file regular expressions for this directory.
|
||||
set(CMAKE_C_INCLUDE_REGEX_SCAN "^.*$")
|
||||
set(CMAKE_C_INCLUDE_REGEX_COMPLAIN "^$")
|
||||
set(CMAKE_CXX_INCLUDE_REGEX_SCAN ${CMAKE_C_INCLUDE_REGEX_SCAN})
|
||||
set(CMAKE_CXX_INCLUDE_REGEX_COMPLAIN ${CMAKE_C_INCLUDE_REGEX_COMPLAIN})
|
@ -0,0 +1 @@
|
||||
31
|
@ -0,0 +1,15 @@
|
||||
# CMake generated Testfile for
|
||||
# Source directory: /home/onek8/Development/libwebsockets/minimal-examples
|
||||
# Build directory: /home/onek8/Development/libwebsockets/build/minimal-examples
|
||||
#
|
||||
# This file includes the relevant testing commands required for
|
||||
# testing this directory and lists subdirectories to be tested as well.
|
||||
subdirs("client/binance")
|
||||
subdirs("client/hello_world")
|
||||
subdirs("client/hello_world-policy")
|
||||
subdirs("client/http-post")
|
||||
subdirs("client/ws-echo")
|
||||
subdirs("server/hello_world")
|
||||
subdirs("sink/hello_world")
|
||||
subdirs("ssproxy/ssproxy-custom-transport-uart")
|
||||
subdirs("ssproxy/ssproxy-socket")
|
222
Kinc/Sources/kinc/libs/core/minimal-examples/Makefile
Normal file
222
Kinc/Sources/kinc/libs/core/minimal-examples/Makefile
Normal file
@ -0,0 +1,222 @@
|
||||
# CMAKE generated file: DO NOT EDIT!
|
||||
# Generated by "Unix Makefiles" Generator, CMake Version 3.30
|
||||
|
||||
# Default target executed when no arguments are given to make.
|
||||
default_target: all
|
||||
.PHONY : default_target
|
||||
|
||||
# Allow only one "make -f Makefile2" at a time, but pass parallelism.
|
||||
.NOTPARALLEL:
|
||||
|
||||
#=============================================================================
|
||||
# Special targets provided by cmake.
|
||||
|
||||
# Disable implicit rules so canonical targets will work.
|
||||
.SUFFIXES:
|
||||
|
||||
# Disable VCS-based implicit rules.
|
||||
% : %,v
|
||||
|
||||
# Disable VCS-based implicit rules.
|
||||
% : RCS/%
|
||||
|
||||
# Disable VCS-based implicit rules.
|
||||
% : RCS/%,v
|
||||
|
||||
# Disable VCS-based implicit rules.
|
||||
% : SCCS/s.%
|
||||
|
||||
# Disable VCS-based implicit rules.
|
||||
% : s.%
|
||||
|
||||
.SUFFIXES: .hpux_make_needs_suffix_list
|
||||
|
||||
# Command-line flag to silence nested $(MAKE).
|
||||
$(VERBOSE)MAKESILENT = -s
|
||||
|
||||
#Suppress display of executed commands.
|
||||
$(VERBOSE).SILENT:
|
||||
|
||||
# A target that is always out of date.
|
||||
cmake_force:
|
||||
.PHONY : cmake_force
|
||||
|
||||
#=============================================================================
|
||||
# Set environment variables for the build.
|
||||
|
||||
# The shell in which to execute make rules.
|
||||
SHELL = /bin/sh
|
||||
|
||||
# The CMake executable.
|
||||
CMAKE_COMMAND = /usr/bin/cmake
|
||||
|
||||
# The command to remove a file.
|
||||
RM = /usr/bin/cmake -E rm -f
|
||||
|
||||
# Escaping for special characters.
|
||||
EQUALS = =
|
||||
|
||||
# The top-level source directory on which CMake was run.
|
||||
CMAKE_SOURCE_DIR = /home/onek8/Development/libwebsockets
|
||||
|
||||
# The top-level build directory on which CMake was run.
|
||||
CMAKE_BINARY_DIR = /home/onek8/Development/libwebsockets/build
|
||||
|
||||
#=============================================================================
|
||||
# Targets provided globally by CMake.
|
||||
|
||||
# Special rule for the target package
|
||||
package: preinstall
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Run CPack packaging tool..."
|
||||
cd /home/onek8/Development/libwebsockets/build && /usr/bin/cpack --config ./CPackConfig.cmake
|
||||
.PHONY : package
|
||||
|
||||
# Special rule for the target package
|
||||
package/fast: package
|
||||
.PHONY : package/fast
|
||||
|
||||
# Special rule for the target package_source
|
||||
package_source:
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Run CPack packaging tool for source..."
|
||||
cd /home/onek8/Development/libwebsockets/build && /usr/bin/cpack --config ./CPackSourceConfig.cmake /home/onek8/Development/libwebsockets/build/CPackSourceConfig.cmake
|
||||
.PHONY : package_source
|
||||
|
||||
# Special rule for the target package_source
|
||||
package_source/fast: package_source
|
||||
.PHONY : package_source/fast
|
||||
|
||||
# Special rule for the target test
|
||||
test:
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Running tests..."
|
||||
/usr/bin/ctest --force-new-ctest-process $(ARGS)
|
||||
.PHONY : test
|
||||
|
||||
# Special rule for the target test
|
||||
test/fast: test
|
||||
.PHONY : test/fast
|
||||
|
||||
# Special rule for the target edit_cache
|
||||
edit_cache:
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Running CMake cache editor..."
|
||||
/usr/bin/ccmake -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR)
|
||||
.PHONY : edit_cache
|
||||
|
||||
# Special rule for the target edit_cache
|
||||
edit_cache/fast: edit_cache
|
||||
.PHONY : edit_cache/fast
|
||||
|
||||
# Special rule for the target rebuild_cache
|
||||
rebuild_cache:
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Running CMake to regenerate build system..."
|
||||
/usr/bin/cmake --regenerate-during-build -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR)
|
||||
.PHONY : rebuild_cache
|
||||
|
||||
# Special rule for the target rebuild_cache
|
||||
rebuild_cache/fast: rebuild_cache
|
||||
.PHONY : rebuild_cache/fast
|
||||
|
||||
# Special rule for the target list_install_components
|
||||
list_install_components:
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Available install components are: \"Unspecified\" \"core\" \"dev\" \"examples\""
|
||||
.PHONY : list_install_components
|
||||
|
||||
# Special rule for the target list_install_components
|
||||
list_install_components/fast: list_install_components
|
||||
.PHONY : list_install_components/fast
|
||||
|
||||
# Special rule for the target install
|
||||
install: preinstall
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Install the project..."
|
||||
/usr/bin/cmake -P cmake_install.cmake
|
||||
.PHONY : install
|
||||
|
||||
# Special rule for the target install
|
||||
install/fast: preinstall/fast
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Install the project..."
|
||||
/usr/bin/cmake -P cmake_install.cmake
|
||||
.PHONY : install/fast
|
||||
|
||||
# Special rule for the target install/local
|
||||
install/local: preinstall
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing only the local directory..."
|
||||
/usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake
|
||||
.PHONY : install/local
|
||||
|
||||
# Special rule for the target install/local
|
||||
install/local/fast: preinstall/fast
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing only the local directory..."
|
||||
/usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake
|
||||
.PHONY : install/local/fast
|
||||
|
||||
# Special rule for the target install/strip
|
||||
install/strip: preinstall
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing the project stripped..."
|
||||
/usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake
|
||||
.PHONY : install/strip
|
||||
|
||||
# Special rule for the target install/strip
|
||||
install/strip/fast: preinstall/fast
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing the project stripped..."
|
||||
/usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake
|
||||
.PHONY : install/strip/fast
|
||||
|
||||
# The main all target
|
||||
all: cmake_check_build_system
|
||||
cd /home/onek8/Development/libwebsockets/build && $(CMAKE_COMMAND) -E cmake_progress_start /home/onek8/Development/libwebsockets/build/CMakeFiles /home/onek8/Development/libwebsockets/build/minimal-examples//CMakeFiles/progress.marks
|
||||
cd /home/onek8/Development/libwebsockets/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 minimal-examples/all
|
||||
$(CMAKE_COMMAND) -E cmake_progress_start /home/onek8/Development/libwebsockets/build/CMakeFiles 0
|
||||
.PHONY : all
|
||||
|
||||
# The main clean target
|
||||
clean:
|
||||
cd /home/onek8/Development/libwebsockets/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 minimal-examples/clean
|
||||
.PHONY : clean
|
||||
|
||||
# The main clean target
|
||||
clean/fast: clean
|
||||
.PHONY : clean/fast
|
||||
|
||||
# Prepare targets for installation.
|
||||
preinstall: all
|
||||
cd /home/onek8/Development/libwebsockets/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 minimal-examples/preinstall
|
||||
.PHONY : preinstall
|
||||
|
||||
# Prepare targets for installation.
|
||||
preinstall/fast:
|
||||
cd /home/onek8/Development/libwebsockets/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 minimal-examples/preinstall
|
||||
.PHONY : preinstall/fast
|
||||
|
||||
# clear depends
|
||||
depend:
|
||||
cd /home/onek8/Development/libwebsockets/build && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1
|
||||
.PHONY : depend
|
||||
|
||||
# Help Target
|
||||
help:
|
||||
@echo "The following are some of the valid targets for this Makefile:"
|
||||
@echo "... all (the default if no target is provided)"
|
||||
@echo "... clean"
|
||||
@echo "... depend"
|
||||
@echo "... edit_cache"
|
||||
@echo "... install"
|
||||
@echo "... install/local"
|
||||
@echo "... install/strip"
|
||||
@echo "... list_install_components"
|
||||
@echo "... package"
|
||||
@echo "... package_source"
|
||||
@echo "... rebuild_cache"
|
||||
@echo "... test"
|
||||
.PHONY : help
|
||||
|
||||
|
||||
|
||||
#=============================================================================
|
||||
# Special targets to cleanup operation of make.
|
||||
|
||||
# Special rule to run CMake to check the build system integrity.
|
||||
# No rule that depends on this can have commands that come from listfiles
|
||||
# because they might be regenerated.
|
||||
cmake_check_build_system:
|
||||
cd /home/onek8/Development/libwebsockets/build && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0
|
||||
.PHONY : cmake_check_build_system
|
||||
|
@ -0,0 +1,16 @@
|
||||
# CMAKE generated file: DO NOT EDIT!
|
||||
# Generated by "Unix Makefiles" Generator, CMake Version 3.30
|
||||
|
||||
# Relative path conversion top directories.
|
||||
set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/home/onek8/Development/libwebsockets")
|
||||
set(CMAKE_RELATIVE_PATH_TOP_BINARY "/home/onek8/Development/libwebsockets/build")
|
||||
|
||||
# Force unix paths in dependencies.
|
||||
set(CMAKE_FORCE_UNIX_PATHS 1)
|
||||
|
||||
|
||||
# The C and CXX include file regular expressions for this directory.
|
||||
set(CMAKE_C_INCLUDE_REGEX_SCAN "^.*$")
|
||||
set(CMAKE_C_INCLUDE_REGEX_COMPLAIN "^$")
|
||||
set(CMAKE_CXX_INCLUDE_REGEX_SCAN ${CMAKE_C_INCLUDE_REGEX_SCAN})
|
||||
set(CMAKE_CXX_INCLUDE_REGEX_COMPLAIN ${CMAKE_C_INCLUDE_REGEX_COMPLAIN})
|
@ -0,0 +1 @@
|
||||
0
|
@ -0,0 +1,6 @@
|
||||
# CMake generated Testfile for
|
||||
# Source directory: /home/onek8/Development/libwebsockets/minimal-examples/client/binance
|
||||
# Build directory: /home/onek8/Development/libwebsockets/build/minimal-examples/client/binance
|
||||
#
|
||||
# This file includes the relevant testing commands required for
|
||||
# testing this directory and lists subdirectories to be tested as well.
|
@ -0,0 +1,222 @@
|
||||
# CMAKE generated file: DO NOT EDIT!
|
||||
# Generated by "Unix Makefiles" Generator, CMake Version 3.30
|
||||
|
||||
# Default target executed when no arguments are given to make.
|
||||
default_target: all
|
||||
.PHONY : default_target
|
||||
|
||||
# Allow only one "make -f Makefile2" at a time, but pass parallelism.
|
||||
.NOTPARALLEL:
|
||||
|
||||
#=============================================================================
|
||||
# Special targets provided by cmake.
|
||||
|
||||
# Disable implicit rules so canonical targets will work.
|
||||
.SUFFIXES:
|
||||
|
||||
# Disable VCS-based implicit rules.
|
||||
% : %,v
|
||||
|
||||
# Disable VCS-based implicit rules.
|
||||
% : RCS/%
|
||||
|
||||
# Disable VCS-based implicit rules.
|
||||
% : RCS/%,v
|
||||
|
||||
# Disable VCS-based implicit rules.
|
||||
% : SCCS/s.%
|
||||
|
||||
# Disable VCS-based implicit rules.
|
||||
% : s.%
|
||||
|
||||
.SUFFIXES: .hpux_make_needs_suffix_list
|
||||
|
||||
# Command-line flag to silence nested $(MAKE).
|
||||
$(VERBOSE)MAKESILENT = -s
|
||||
|
||||
#Suppress display of executed commands.
|
||||
$(VERBOSE).SILENT:
|
||||
|
||||
# A target that is always out of date.
|
||||
cmake_force:
|
||||
.PHONY : cmake_force
|
||||
|
||||
#=============================================================================
|
||||
# Set environment variables for the build.
|
||||
|
||||
# The shell in which to execute make rules.
|
||||
SHELL = /bin/sh
|
||||
|
||||
# The CMake executable.
|
||||
CMAKE_COMMAND = /usr/bin/cmake
|
||||
|
||||
# The command to remove a file.
|
||||
RM = /usr/bin/cmake -E rm -f
|
||||
|
||||
# Escaping for special characters.
|
||||
EQUALS = =
|
||||
|
||||
# The top-level source directory on which CMake was run.
|
||||
CMAKE_SOURCE_DIR = /home/onek8/Development/libwebsockets
|
||||
|
||||
# The top-level build directory on which CMake was run.
|
||||
CMAKE_BINARY_DIR = /home/onek8/Development/libwebsockets/build
|
||||
|
||||
#=============================================================================
|
||||
# Targets provided globally by CMake.
|
||||
|
||||
# Special rule for the target package
|
||||
package: preinstall
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Run CPack packaging tool..."
|
||||
cd /home/onek8/Development/libwebsockets/build && /usr/bin/cpack --config ./CPackConfig.cmake
|
||||
.PHONY : package
|
||||
|
||||
# Special rule for the target package
|
||||
package/fast: package
|
||||
.PHONY : package/fast
|
||||
|
||||
# Special rule for the target package_source
|
||||
package_source:
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Run CPack packaging tool for source..."
|
||||
cd /home/onek8/Development/libwebsockets/build && /usr/bin/cpack --config ./CPackSourceConfig.cmake /home/onek8/Development/libwebsockets/build/CPackSourceConfig.cmake
|
||||
.PHONY : package_source
|
||||
|
||||
# Special rule for the target package_source
|
||||
package_source/fast: package_source
|
||||
.PHONY : package_source/fast
|
||||
|
||||
# Special rule for the target test
|
||||
test:
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Running tests..."
|
||||
/usr/bin/ctest --force-new-ctest-process $(ARGS)
|
||||
.PHONY : test
|
||||
|
||||
# Special rule for the target test
|
||||
test/fast: test
|
||||
.PHONY : test/fast
|
||||
|
||||
# Special rule for the target edit_cache
|
||||
edit_cache:
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Running CMake cache editor..."
|
||||
/usr/bin/ccmake -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR)
|
||||
.PHONY : edit_cache
|
||||
|
||||
# Special rule for the target edit_cache
|
||||
edit_cache/fast: edit_cache
|
||||
.PHONY : edit_cache/fast
|
||||
|
||||
# Special rule for the target rebuild_cache
|
||||
rebuild_cache:
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Running CMake to regenerate build system..."
|
||||
/usr/bin/cmake --regenerate-during-build -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR)
|
||||
.PHONY : rebuild_cache
|
||||
|
||||
# Special rule for the target rebuild_cache
|
||||
rebuild_cache/fast: rebuild_cache
|
||||
.PHONY : rebuild_cache/fast
|
||||
|
||||
# Special rule for the target list_install_components
|
||||
list_install_components:
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Available install components are: \"Unspecified\" \"core\" \"dev\" \"examples\""
|
||||
.PHONY : list_install_components
|
||||
|
||||
# Special rule for the target list_install_components
|
||||
list_install_components/fast: list_install_components
|
||||
.PHONY : list_install_components/fast
|
||||
|
||||
# Special rule for the target install
|
||||
install: preinstall
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Install the project..."
|
||||
/usr/bin/cmake -P cmake_install.cmake
|
||||
.PHONY : install
|
||||
|
||||
# Special rule for the target install
|
||||
install/fast: preinstall/fast
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Install the project..."
|
||||
/usr/bin/cmake -P cmake_install.cmake
|
||||
.PHONY : install/fast
|
||||
|
||||
# Special rule for the target install/local
|
||||
install/local: preinstall
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing only the local directory..."
|
||||
/usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake
|
||||
.PHONY : install/local
|
||||
|
||||
# Special rule for the target install/local
|
||||
install/local/fast: preinstall/fast
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing only the local directory..."
|
||||
/usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake
|
||||
.PHONY : install/local/fast
|
||||
|
||||
# Special rule for the target install/strip
|
||||
install/strip: preinstall
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing the project stripped..."
|
||||
/usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake
|
||||
.PHONY : install/strip
|
||||
|
||||
# Special rule for the target install/strip
|
||||
install/strip/fast: preinstall/fast
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing the project stripped..."
|
||||
/usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake
|
||||
.PHONY : install/strip/fast
|
||||
|
||||
# The main all target
|
||||
all: cmake_check_build_system
|
||||
cd /home/onek8/Development/libwebsockets/build && $(CMAKE_COMMAND) -E cmake_progress_start /home/onek8/Development/libwebsockets/build/CMakeFiles /home/onek8/Development/libwebsockets/build/minimal-examples/client/binance//CMakeFiles/progress.marks
|
||||
cd /home/onek8/Development/libwebsockets/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 minimal-examples/client/binance/all
|
||||
$(CMAKE_COMMAND) -E cmake_progress_start /home/onek8/Development/libwebsockets/build/CMakeFiles 0
|
||||
.PHONY : all
|
||||
|
||||
# The main clean target
|
||||
clean:
|
||||
cd /home/onek8/Development/libwebsockets/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 minimal-examples/client/binance/clean
|
||||
.PHONY : clean
|
||||
|
||||
# The main clean target
|
||||
clean/fast: clean
|
||||
.PHONY : clean/fast
|
||||
|
||||
# Prepare targets for installation.
|
||||
preinstall: all
|
||||
cd /home/onek8/Development/libwebsockets/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 minimal-examples/client/binance/preinstall
|
||||
.PHONY : preinstall
|
||||
|
||||
# Prepare targets for installation.
|
||||
preinstall/fast:
|
||||
cd /home/onek8/Development/libwebsockets/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 minimal-examples/client/binance/preinstall
|
||||
.PHONY : preinstall/fast
|
||||
|
||||
# clear depends
|
||||
depend:
|
||||
cd /home/onek8/Development/libwebsockets/build && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1
|
||||
.PHONY : depend
|
||||
|
||||
# Help Target
|
||||
help:
|
||||
@echo "The following are some of the valid targets for this Makefile:"
|
||||
@echo "... all (the default if no target is provided)"
|
||||
@echo "... clean"
|
||||
@echo "... depend"
|
||||
@echo "... edit_cache"
|
||||
@echo "... install"
|
||||
@echo "... install/local"
|
||||
@echo "... install/strip"
|
||||
@echo "... list_install_components"
|
||||
@echo "... package"
|
||||
@echo "... package_source"
|
||||
@echo "... rebuild_cache"
|
||||
@echo "... test"
|
||||
.PHONY : help
|
||||
|
||||
|
||||
|
||||
#=============================================================================
|
||||
# Special targets to cleanup operation of make.
|
||||
|
||||
# Special rule to run CMake to check the build system integrity.
|
||||
# No rule that depends on this can have commands that come from listfiles
|
||||
# because they might be regenerated.
|
||||
cmake_check_build_system:
|
||||
cd /home/onek8/Development/libwebsockets/build && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0
|
||||
.PHONY : cmake_check_build_system
|
||||
|
@ -0,0 +1,44 @@
|
||||
# Install script for directory: /home/onek8/Development/libwebsockets/minimal-examples/client/binance
|
||||
|
||||
# Set the install prefix
|
||||
if(NOT DEFINED CMAKE_INSTALL_PREFIX)
|
||||
set(CMAKE_INSTALL_PREFIX "/usr/local")
|
||||
endif()
|
||||
string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")
|
||||
|
||||
# Set the install configuration name.
|
||||
if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
|
||||
if(BUILD_TYPE)
|
||||
string(REGEX REPLACE "^[^A-Za-z0-9_]+" ""
|
||||
CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}")
|
||||
else()
|
||||
set(CMAKE_INSTALL_CONFIG_NAME "")
|
||||
endif()
|
||||
message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
|
||||
endif()
|
||||
|
||||
# Set the component getting installed.
|
||||
if(NOT CMAKE_INSTALL_COMPONENT)
|
||||
if(COMPONENT)
|
||||
message(STATUS "Install component: \"${COMPONENT}\"")
|
||||
set(CMAKE_INSTALL_COMPONENT "${COMPONENT}")
|
||||
else()
|
||||
set(CMAKE_INSTALL_COMPONENT)
|
||||
endif()
|
||||
endif()
|
||||
|
||||
# Install shared libraries without execute permission?
|
||||
if(NOT DEFINED CMAKE_INSTALL_SO_NO_EXE)
|
||||
set(CMAKE_INSTALL_SO_NO_EXE "1")
|
||||
endif()
|
||||
|
||||
# Is this installation the result of a crosscompile?
|
||||
if(NOT DEFINED CMAKE_CROSSCOMPILING)
|
||||
set(CMAKE_CROSSCOMPILING "FALSE")
|
||||
endif()
|
||||
|
||||
# Set path to fallback-tool for dependency-resolution.
|
||||
if(NOT DEFINED CMAKE_OBJDUMP)
|
||||
set(CMAKE_OBJDUMP "/usr/bin/objdump")
|
||||
endif()
|
||||
|
@ -0,0 +1,16 @@
|
||||
# CMAKE generated file: DO NOT EDIT!
|
||||
# Generated by "Unix Makefiles" Generator, CMake Version 3.30
|
||||
|
||||
# Relative path conversion top directories.
|
||||
set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/home/onek8/Development/libwebsockets")
|
||||
set(CMAKE_RELATIVE_PATH_TOP_BINARY "/home/onek8/Development/libwebsockets/build")
|
||||
|
||||
# Force unix paths in dependencies.
|
||||
set(CMAKE_FORCE_UNIX_PATHS 1)
|
||||
|
||||
|
||||
# The C and CXX include file regular expressions for this directory.
|
||||
set(CMAKE_C_INCLUDE_REGEX_SCAN "^.*$")
|
||||
set(CMAKE_C_INCLUDE_REGEX_COMPLAIN "^$")
|
||||
set(CMAKE_CXX_INCLUDE_REGEX_SCAN ${CMAKE_C_INCLUDE_REGEX_SCAN})
|
||||
set(CMAKE_CXX_INCLUDE_REGEX_COMPLAIN ${CMAKE_C_INCLUDE_REGEX_COMPLAIN})
|
@ -0,0 +1,24 @@
|
||||
|
||||
# Consider dependencies only in project.
|
||||
set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF)
|
||||
|
||||
# The set of languages for which implicit dependencies are needed:
|
||||
set(CMAKE_DEPENDS_LANGUAGES
|
||||
)
|
||||
|
||||
# The set of dependency files which are needed:
|
||||
set(CMAKE_DEPENDS_DEPENDENCY_FILES
|
||||
"/home/onek8/Development/libwebsockets/minimal-examples/client/hello_world-policy/hello_world-ss.c" "minimal-examples/client/hello_world-policy/CMakeFiles/lws-minimal-ss-hello_world-policy.dir/hello_world-ss.c.o" "gcc" "minimal-examples/client/hello_world-policy/CMakeFiles/lws-minimal-ss-hello_world-policy.dir/hello_world-ss.c.o.d"
|
||||
"/home/onek8/Development/libwebsockets/minimal-examples/client/hello_world-policy/main.c" "minimal-examples/client/hello_world-policy/CMakeFiles/lws-minimal-ss-hello_world-policy.dir/main.c.o" "gcc" "minimal-examples/client/hello_world-policy/CMakeFiles/lws-minimal-ss-hello_world-policy.dir/main.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 "")
|
@ -0,0 +1,132 @@
|
||||
# CMAKE generated file: DO NOT EDIT!
|
||||
# Generated by "Unix Makefiles" Generator, CMake Version 3.30
|
||||
|
||||
# Delete rule output on recipe failure.
|
||||
.DELETE_ON_ERROR:
|
||||
|
||||
#=============================================================================
|
||||
# Special targets provided by cmake.
|
||||
|
||||
# Disable implicit rules so canonical targets will work.
|
||||
.SUFFIXES:
|
||||
|
||||
# Disable VCS-based implicit rules.
|
||||
% : %,v
|
||||
|
||||
# Disable VCS-based implicit rules.
|
||||
% : RCS/%
|
||||
|
||||
# Disable VCS-based implicit rules.
|
||||
% : RCS/%,v
|
||||
|
||||
# Disable VCS-based implicit rules.
|
||||
% : SCCS/s.%
|
||||
|
||||
# Disable VCS-based implicit rules.
|
||||
% : s.%
|
||||
|
||||
.SUFFIXES: .hpux_make_needs_suffix_list
|
||||
|
||||
# Command-line flag to silence nested $(MAKE).
|
||||
$(VERBOSE)MAKESILENT = -s
|
||||
|
||||
#Suppress display of executed commands.
|
||||
$(VERBOSE).SILENT:
|
||||
|
||||
# A target that is always out of date.
|
||||
cmake_force:
|
||||
.PHONY : cmake_force
|
||||
|
||||
#=============================================================================
|
||||
# Set environment variables for the build.
|
||||
|
||||
# The shell in which to execute make rules.
|
||||
SHELL = /bin/sh
|
||||
|
||||
# The CMake executable.
|
||||
CMAKE_COMMAND = /usr/bin/cmake
|
||||
|
||||
# The command to remove a file.
|
||||
RM = /usr/bin/cmake -E rm -f
|
||||
|
||||
# Escaping for special characters.
|
||||
EQUALS = =
|
||||
|
||||
# The top-level source directory on which CMake was run.
|
||||
CMAKE_SOURCE_DIR = /home/onek8/Development/libwebsockets
|
||||
|
||||
# The top-level build directory on which CMake was run.
|
||||
CMAKE_BINARY_DIR = /home/onek8/Development/libwebsockets/build
|
||||
|
||||
# Include any dependencies generated for this target.
|
||||
include minimal-examples/client/hello_world-policy/CMakeFiles/lws-minimal-ss-hello_world-policy.dir/depend.make
|
||||
# Include any dependencies generated by the compiler for this target.
|
||||
include minimal-examples/client/hello_world-policy/CMakeFiles/lws-minimal-ss-hello_world-policy.dir/compiler_depend.make
|
||||
|
||||
# Include the progress variables for this target.
|
||||
include minimal-examples/client/hello_world-policy/CMakeFiles/lws-minimal-ss-hello_world-policy.dir/progress.make
|
||||
|
||||
# Include the compile flags for this target's objects.
|
||||
include minimal-examples/client/hello_world-policy/CMakeFiles/lws-minimal-ss-hello_world-policy.dir/flags.make
|
||||
|
||||
minimal-examples/client/hello_world-policy/CMakeFiles/lws-minimal-ss-hello_world-policy.dir/main.c.o: minimal-examples/client/hello_world-policy/CMakeFiles/lws-minimal-ss-hello_world-policy.dir/flags.make
|
||||
minimal-examples/client/hello_world-policy/CMakeFiles/lws-minimal-ss-hello_world-policy.dir/main.c.o: /home/onek8/Development/libwebsockets/minimal-examples/client/hello_world-policy/main.c
|
||||
minimal-examples/client/hello_world-policy/CMakeFiles/lws-minimal-ss-hello_world-policy.dir/main.c.o: minimal-examples/client/hello_world-policy/CMakeFiles/lws-minimal-ss-hello_world-policy.dir/compiler_depend.ts
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/onek8/Development/libwebsockets/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building C object minimal-examples/client/hello_world-policy/CMakeFiles/lws-minimal-ss-hello_world-policy.dir/main.c.o"
|
||||
cd /home/onek8/Development/libwebsockets/build/minimal-examples/client/hello_world-policy && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT minimal-examples/client/hello_world-policy/CMakeFiles/lws-minimal-ss-hello_world-policy.dir/main.c.o -MF CMakeFiles/lws-minimal-ss-hello_world-policy.dir/main.c.o.d -o CMakeFiles/lws-minimal-ss-hello_world-policy.dir/main.c.o -c /home/onek8/Development/libwebsockets/minimal-examples/client/hello_world-policy/main.c
|
||||
|
||||
minimal-examples/client/hello_world-policy/CMakeFiles/lws-minimal-ss-hello_world-policy.dir/main.c.i: cmake_force
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/lws-minimal-ss-hello_world-policy.dir/main.c.i"
|
||||
cd /home/onek8/Development/libwebsockets/build/minimal-examples/client/hello_world-policy && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/onek8/Development/libwebsockets/minimal-examples/client/hello_world-policy/main.c > CMakeFiles/lws-minimal-ss-hello_world-policy.dir/main.c.i
|
||||
|
||||
minimal-examples/client/hello_world-policy/CMakeFiles/lws-minimal-ss-hello_world-policy.dir/main.c.s: cmake_force
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/lws-minimal-ss-hello_world-policy.dir/main.c.s"
|
||||
cd /home/onek8/Development/libwebsockets/build/minimal-examples/client/hello_world-policy && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/onek8/Development/libwebsockets/minimal-examples/client/hello_world-policy/main.c -o CMakeFiles/lws-minimal-ss-hello_world-policy.dir/main.c.s
|
||||
|
||||
minimal-examples/client/hello_world-policy/CMakeFiles/lws-minimal-ss-hello_world-policy.dir/hello_world-ss.c.o: minimal-examples/client/hello_world-policy/CMakeFiles/lws-minimal-ss-hello_world-policy.dir/flags.make
|
||||
minimal-examples/client/hello_world-policy/CMakeFiles/lws-minimal-ss-hello_world-policy.dir/hello_world-ss.c.o: /home/onek8/Development/libwebsockets/minimal-examples/client/hello_world-policy/hello_world-ss.c
|
||||
minimal-examples/client/hello_world-policy/CMakeFiles/lws-minimal-ss-hello_world-policy.dir/hello_world-ss.c.o: minimal-examples/client/hello_world-policy/CMakeFiles/lws-minimal-ss-hello_world-policy.dir/compiler_depend.ts
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/onek8/Development/libwebsockets/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building C object minimal-examples/client/hello_world-policy/CMakeFiles/lws-minimal-ss-hello_world-policy.dir/hello_world-ss.c.o"
|
||||
cd /home/onek8/Development/libwebsockets/build/minimal-examples/client/hello_world-policy && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT minimal-examples/client/hello_world-policy/CMakeFiles/lws-minimal-ss-hello_world-policy.dir/hello_world-ss.c.o -MF CMakeFiles/lws-minimal-ss-hello_world-policy.dir/hello_world-ss.c.o.d -o CMakeFiles/lws-minimal-ss-hello_world-policy.dir/hello_world-ss.c.o -c /home/onek8/Development/libwebsockets/minimal-examples/client/hello_world-policy/hello_world-ss.c
|
||||
|
||||
minimal-examples/client/hello_world-policy/CMakeFiles/lws-minimal-ss-hello_world-policy.dir/hello_world-ss.c.i: cmake_force
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/lws-minimal-ss-hello_world-policy.dir/hello_world-ss.c.i"
|
||||
cd /home/onek8/Development/libwebsockets/build/minimal-examples/client/hello_world-policy && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/onek8/Development/libwebsockets/minimal-examples/client/hello_world-policy/hello_world-ss.c > CMakeFiles/lws-minimal-ss-hello_world-policy.dir/hello_world-ss.c.i
|
||||
|
||||
minimal-examples/client/hello_world-policy/CMakeFiles/lws-minimal-ss-hello_world-policy.dir/hello_world-ss.c.s: cmake_force
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/lws-minimal-ss-hello_world-policy.dir/hello_world-ss.c.s"
|
||||
cd /home/onek8/Development/libwebsockets/build/minimal-examples/client/hello_world-policy && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/onek8/Development/libwebsockets/minimal-examples/client/hello_world-policy/hello_world-ss.c -o CMakeFiles/lws-minimal-ss-hello_world-policy.dir/hello_world-ss.c.s
|
||||
|
||||
# Object files for target lws-minimal-ss-hello_world-policy
|
||||
lws__minimal__ss__hello_world__policy_OBJECTS = \
|
||||
"CMakeFiles/lws-minimal-ss-hello_world-policy.dir/main.c.o" \
|
||||
"CMakeFiles/lws-minimal-ss-hello_world-policy.dir/hello_world-ss.c.o"
|
||||
|
||||
# External object files for target lws-minimal-ss-hello_world-policy
|
||||
lws__minimal__ss__hello_world__policy_EXTERNAL_OBJECTS =
|
||||
|
||||
bin/lws-minimal-ss-hello_world-policy: minimal-examples/client/hello_world-policy/CMakeFiles/lws-minimal-ss-hello_world-policy.dir/main.c.o
|
||||
bin/lws-minimal-ss-hello_world-policy: minimal-examples/client/hello_world-policy/CMakeFiles/lws-minimal-ss-hello_world-policy.dir/hello_world-ss.c.o
|
||||
bin/lws-minimal-ss-hello_world-policy: minimal-examples/client/hello_world-policy/CMakeFiles/lws-minimal-ss-hello_world-policy.dir/build.make
|
||||
bin/lws-minimal-ss-hello_world-policy: /usr/lib/x86_64-linux-gnu/libcap.so
|
||||
bin/lws-minimal-ss-hello_world-policy: lib/libwebsockets.a
|
||||
bin/lws-minimal-ss-hello_world-policy: /usr/lib/x86_64-linux-gnu/libcap.so
|
||||
bin/lws-minimal-ss-hello_world-policy: /usr/lib/x86_64-linux-gnu/libssl.so
|
||||
bin/lws-minimal-ss-hello_world-policy: /usr/lib/x86_64-linux-gnu/libcrypto.so
|
||||
bin/lws-minimal-ss-hello_world-policy: /usr/lib/x86_64-linux-gnu/libcap.so
|
||||
bin/lws-minimal-ss-hello_world-policy: minimal-examples/client/hello_world-policy/CMakeFiles/lws-minimal-ss-hello_world-policy.dir/link.txt
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --bold --progress-dir=/home/onek8/Development/libwebsockets/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Linking C executable ../../../bin/lws-minimal-ss-hello_world-policy"
|
||||
cd /home/onek8/Development/libwebsockets/build/minimal-examples/client/hello_world-policy && $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/lws-minimal-ss-hello_world-policy.dir/link.txt --verbose=$(VERBOSE)
|
||||
|
||||
# Rule to build all files generated by this target.
|
||||
minimal-examples/client/hello_world-policy/CMakeFiles/lws-minimal-ss-hello_world-policy.dir/build: bin/lws-minimal-ss-hello_world-policy
|
||||
.PHONY : minimal-examples/client/hello_world-policy/CMakeFiles/lws-minimal-ss-hello_world-policy.dir/build
|
||||
|
||||
minimal-examples/client/hello_world-policy/CMakeFiles/lws-minimal-ss-hello_world-policy.dir/clean:
|
||||
cd /home/onek8/Development/libwebsockets/build/minimal-examples/client/hello_world-policy && $(CMAKE_COMMAND) -P CMakeFiles/lws-minimal-ss-hello_world-policy.dir/cmake_clean.cmake
|
||||
.PHONY : minimal-examples/client/hello_world-policy/CMakeFiles/lws-minimal-ss-hello_world-policy.dir/clean
|
||||
|
||||
minimal-examples/client/hello_world-policy/CMakeFiles/lws-minimal-ss-hello_world-policy.dir/depend:
|
||||
cd /home/onek8/Development/libwebsockets/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/onek8/Development/libwebsockets /home/onek8/Development/libwebsockets/minimal-examples/client/hello_world-policy /home/onek8/Development/libwebsockets/build /home/onek8/Development/libwebsockets/build/minimal-examples/client/hello_world-policy /home/onek8/Development/libwebsockets/build/minimal-examples/client/hello_world-policy/CMakeFiles/lws-minimal-ss-hello_world-policy.dir/DependInfo.cmake "--color=$(COLOR)"
|
||||
.PHONY : minimal-examples/client/hello_world-policy/CMakeFiles/lws-minimal-ss-hello_world-policy.dir/depend
|
||||
|
@ -0,0 +1,13 @@
|
||||
file(REMOVE_RECURSE
|
||||
"../../../bin/lws-minimal-ss-hello_world-policy"
|
||||
"../../../bin/lws-minimal-ss-hello_world-policy.pdb"
|
||||
"CMakeFiles/lws-minimal-ss-hello_world-policy.dir/hello_world-ss.c.o"
|
||||
"CMakeFiles/lws-minimal-ss-hello_world-policy.dir/hello_world-ss.c.o.d"
|
||||
"CMakeFiles/lws-minimal-ss-hello_world-policy.dir/main.c.o"
|
||||
"CMakeFiles/lws-minimal-ss-hello_world-policy.dir/main.c.o.d"
|
||||
)
|
||||
|
||||
# Per-language clean rules from dependency scanning.
|
||||
foreach(lang C)
|
||||
include(CMakeFiles/lws-minimal-ss-hello_world-policy.dir/cmake_clean_${lang}.cmake OPTIONAL)
|
||||
endforeach()
|
@ -0,0 +1,2 @@
|
||||
# Empty compiler generated dependencies file for lws-minimal-ss-hello_world-policy.
|
||||
# This may be replaced when dependencies are built.
|
@ -0,0 +1,2 @@
|
||||
# CMAKE generated file: DO NOT EDIT!
|
||||
# Timestamp file for compiler generated dependencies management for lws-minimal-ss-hello_world-policy.
|
@ -0,0 +1,2 @@
|
||||
# Empty dependencies file for lws-minimal-ss-hello_world-policy.
|
||||
# This may be replaced when dependencies are built.
|
@ -0,0 +1,10 @@
|
||||
# CMAKE generated file: DO NOT EDIT!
|
||||
# Generated by "Unix Makefiles" Generator, CMake Version 3.30
|
||||
|
||||
# compile C with /usr/bin/cc
|
||||
C_DEFINES =
|
||||
|
||||
C_INCLUDES = -I/home/onek8/Development/libwebsockets/include -I/home/onek8/Development/libwebsockets/build -I/home/onek8/Development/libwebsockets/lib -I/home/onek8/Development/libwebsockets/lib/. -I/home/onek8/Development/libwebsockets/lib/plat/unix/. -I/home/onek8/Development/libwebsockets/lib/tls/. -I/home/onek8/Development/libwebsockets/lib/core/. -I/home/onek8/Development/libwebsockets/lib/misc/. -I/home/onek8/Development/libwebsockets/lib/misc/misc/jrpc -I/home/onek8/Development/libwebsockets/lib/system/./async-dns -I/home/onek8/Development/libwebsockets/lib/system/smd/. -I/home/onek8/Development/libwebsockets/lib/system/metrics/. -I/home/onek8/Development/libwebsockets/lib/core-net/. -I/home/onek8/Development/libwebsockets/lib/roles/. -I/home/onek8/Development/libwebsockets/lib/roles/http/. -I/home/onek8/Development/libwebsockets/lib/roles/http/./compression -I/home/onek8/Development/libwebsockets/lib/roles/h1/. -I/home/onek8/Development/libwebsockets/lib/roles/h2/. -I/home/onek8/Development/libwebsockets/lib/roles/ws/. -I/home/onek8/Development/libwebsockets/lib/roles/raw-skt/. -I/home/onek8/Development/libwebsockets/lib/roles/raw-file/. -I/home/onek8/Development/libwebsockets/lib/roles/listen/. -I/home/onek8/Development/libwebsockets/lib/secure-streams -I/home/onek8/Development/libwebsockets/lib/event-libs/. -I/home/onek8/Development/libwebsockets/lib/event-libs/poll/../poll -I/home/onek8/Development/libwebsockets/lib/secure-streams/. -I/home/onek8/Development/libwebsockets/lib/../include -I/home/onek8/Development/libwebsockets/build/lib/../include
|
||||
|
||||
C_FLAGS = -Wno-deprecated-declarations -Wno-deprecated -Wall -Wextra -Wno-unused-parameter -Wconversion -Wsign-compare -Wstrict-aliasing -fvisibility=hidden -Wundef -Wuninitialized -Wtype-limits -Wignored-qualifiers -Werror -pthread
|
||||
|
Binary file not shown.
@ -0,0 +1,252 @@
|
||||
minimal-examples/client/hello_world-policy/CMakeFiles/lws-minimal-ss-hello_world-policy.dir/hello_world-ss.c.o: \
|
||||
/home/onek8/Development/libwebsockets/minimal-examples/client/hello_world-policy/hello_world-ss.c \
|
||||
/usr/include/stdc-predef.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/14/include/stdarg.h \
|
||||
/home/onek8/Development/libwebsockets/build/lws_config.h \
|
||||
/usr/include/x86_64-linux-gnu/sys/types.h /usr/include/features.h \
|
||||
/usr/include/features-time64.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/wordsize.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/timesize.h \
|
||||
/usr/include/x86_64-linux-gnu/sys/cdefs.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/long-double.h \
|
||||
/usr/include/x86_64-linux-gnu/gnu/stubs.h \
|
||||
/usr/include/x86_64-linux-gnu/gnu/stubs-64.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/typesizes.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/time64.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/clock_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/time_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/timer_t.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/14/include/stddef.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/stdint-intn.h /usr/include/endian.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/endian.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/endianness.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/byteswap.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/uintn-identity.h \
|
||||
/usr/include/x86_64-linux-gnu/sys/select.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/select.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/struct_mutex.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/struct_rwlock.h \
|
||||
/usr/include/net/ethernet.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/14/include/stdint.h /usr/include/stdint.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/libc-header-start.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/wchar.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/stdint-least.h \
|
||||
/usr/include/linux/if_ether.h /usr/include/linux/types.h \
|
||||
/usr/include/x86_64-linux-gnu/asm/types.h \
|
||||
/usr/include/asm-generic/types.h /usr/include/asm-generic/int-ll64.h \
|
||||
/usr/include/x86_64-linux-gnu/asm/bitsperlong.h \
|
||||
/usr/include/asm-generic/bitsperlong.h /usr/include/linux/posix_types.h \
|
||||
/usr/include/linux/stddef.h \
|
||||
/usr/include/x86_64-linux-gnu/asm/posix_types.h \
|
||||
/usr/include/x86_64-linux-gnu/asm/posix_types_64.h \
|
||||
/usr/include/asm-generic/posix_types.h /usr/include/string.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/locale_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \
|
||||
/usr/include/strings.h /usr/include/stdlib.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/waitflags.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/waitstatus.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/floatn.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/floatn-common.h /usr/include/alloca.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/stdlib-float.h /usr/include/unistd.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/posix_opt.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/environments.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/confname.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/getopt_posix.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/getopt_core.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/unistd_ext.h \
|
||||
/usr/include/sys/capability.h /usr/include/linux/capability.h \
|
||||
/usr/include/poll.h /usr/include/x86_64-linux-gnu/sys/poll.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/poll.h /usr/include/netdb.h \
|
||||
/usr/include/netinet/in.h /usr/include/x86_64-linux-gnu/sys/socket.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_iovec.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/socket.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/socket_type.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/sockaddr.h \
|
||||
/usr/include/x86_64-linux-gnu/asm/socket.h \
|
||||
/usr/include/asm-generic/socket.h \
|
||||
/usr/include/x86_64-linux-gnu/asm/sockios.h \
|
||||
/usr/include/asm-generic/sockios.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_osockaddr.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/in.h /usr/include/rpc/netdb.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/netdb.h \
|
||||
/usr/include/x86_64-linux-gnu/sys/time.h /usr/include/openssl/ssl.h \
|
||||
/usr/include/openssl/macros.h \
|
||||
/usr/include/x86_64-linux-gnu/openssl/opensslconf.h \
|
||||
/usr/include/x86_64-linux-gnu/openssl/configuration.h \
|
||||
/usr/include/openssl/opensslv.h /usr/include/openssl/e_os2.h \
|
||||
/usr/include/inttypes.h /usr/include/openssl/e_ostime.h \
|
||||
/usr/include/openssl/comp.h /usr/include/openssl/crypto.h \
|
||||
/usr/include/time.h /usr/include/x86_64-linux-gnu/bits/time.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_tm.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_itimerspec.h \
|
||||
/usr/include/stdio.h /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__FILE.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/FILE.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/stdio_lim.h \
|
||||
/usr/include/openssl/safestack.h /usr/include/openssl/stack.h \
|
||||
/usr/include/openssl/types.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/14/include/limits.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/14/include/syslimits.h \
|
||||
/usr/include/limits.h /usr/include/x86_64-linux-gnu/bits/posix1_lim.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/local_lim.h \
|
||||
/usr/include/linux/limits.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/pthread_stack_min-dynamic.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/pthread_stack_min.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/posix2_lim.h \
|
||||
/usr/include/openssl/cryptoerr.h /usr/include/openssl/symhacks.h \
|
||||
/usr/include/openssl/cryptoerr_legacy.h /usr/include/openssl/core.h \
|
||||
/usr/include/pthread.h /usr/include/sched.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/sched.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_sched_param.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/cpu-set.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/setjmp.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct___jmp_buf_tag.h \
|
||||
/usr/include/openssl/comperr.h /usr/include/openssl/bio.h \
|
||||
/usr/include/openssl/bioerr.h /usr/include/openssl/x509.h \
|
||||
/usr/include/openssl/buffer.h /usr/include/openssl/buffererr.h \
|
||||
/usr/include/openssl/evp.h /usr/include/openssl/core_dispatch.h \
|
||||
/usr/include/openssl/evperr.h /usr/include/openssl/params.h \
|
||||
/usr/include/openssl/bn.h /usr/include/openssl/bnerr.h \
|
||||
/usr/include/openssl/objects.h /usr/include/openssl/obj_mac.h \
|
||||
/usr/include/openssl/asn1.h /usr/include/openssl/asn1err.h \
|
||||
/usr/include/openssl/objectserr.h /usr/include/openssl/ec.h \
|
||||
/usr/include/openssl/ecerr.h /usr/include/openssl/rsa.h \
|
||||
/usr/include/openssl/rsaerr.h /usr/include/openssl/dsa.h \
|
||||
/usr/include/openssl/dh.h /usr/include/openssl/dherr.h \
|
||||
/usr/include/openssl/dsaerr.h /usr/include/openssl/sha.h \
|
||||
/usr/include/openssl/x509err.h /usr/include/openssl/x509_vfy.h \
|
||||
/usr/include/openssl/lhash.h /usr/include/openssl/pkcs7.h \
|
||||
/usr/include/openssl/pkcs7err.h /usr/include/openssl/http.h \
|
||||
/usr/include/openssl/conf.h /usr/include/openssl/conferr.h \
|
||||
/usr/include/openssl/conftypes.h /usr/include/openssl/pem.h \
|
||||
/usr/include/openssl/pemerr.h /usr/include/openssl/hmac.h \
|
||||
/usr/include/openssl/async.h /usr/include/openssl/asyncerr.h \
|
||||
/usr/include/openssl/ct.h /usr/include/openssl/cterr.h \
|
||||
/usr/include/openssl/sslerr.h /usr/include/openssl/sslerr_legacy.h \
|
||||
/usr/include/openssl/prov_ssl.h /usr/include/openssl/ssl2.h \
|
||||
/usr/include/openssl/ssl3.h /usr/include/openssl/tls1.h \
|
||||
/usr/include/openssl/dtls1.h /usr/include/openssl/srtp.h \
|
||||
/usr/include/openssl/quic.h /usr/include/openssl/err.h \
|
||||
/usr/include/errno.h /usr/include/x86_64-linux-gnu/bits/errno.h \
|
||||
/usr/include/linux/errno.h /usr/include/x86_64-linux-gnu/asm/errno.h \
|
||||
/usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-logs.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-dll2.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-map.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-fault-injection.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-backtrace.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-timeout-timer.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-cache-ttl.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-smd.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-state.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-retry.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-adopt.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-network-helper.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-metrics.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-ota.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-system.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-ws-close.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-callbacks.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-ws-state.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-ws-ext.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-protocols-plugins.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-context-vhost.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-conmon.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-client.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-http.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-spa.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-purify.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-misc.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-dsh.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-service.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-write.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-writeable.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-ring.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-sha1-base64.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-x509.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-cgi.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-vfs.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-gencrypto.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-lejp.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-lecp.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-cose.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-struct.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-threadpool.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-tokenize.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-lwsac.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-fts.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-diskcache.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-secure-streams.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-secure-streams-serialization.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-secure-streams-policy.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-secure-streams-client.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-secure-streams-transport-proxy.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-jrpc.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-async-dns.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-tls-sessions.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-genhash.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-genrsa.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-genaes.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-genec.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-jwk.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-jose.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-jws.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-jwe.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-eventlib-exports.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-i2c.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-spi.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-gpio.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-bb-i2c.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-bb-spi.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-button.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-led.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-pwm.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-upng.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-jpeg.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-display.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-dlo.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-ssd1306-i2c.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-ili9341-spi.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-spd1656-spi.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-uc8176-spi.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-ssd1675b-spi.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-settings.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-netdev.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-html.h \
|
||||
/usr/include/signal.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/signum-generic.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/signum-arch.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/sig_atomic_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/siginfo_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__sigval_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/siginfo-arch.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/siginfo-consts.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/sigval_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/sigevent_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/sigevent-consts.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/sigaction.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/sigcontext.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/stack_t.h \
|
||||
/usr/include/x86_64-linux-gnu/sys/ucontext.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/sigstack.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/sigstksz.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/ss_flags.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_sigstack.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/sigthread.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/signal_ext.h
|
@ -0,0 +1 @@
|
||||
/usr/bin/cc -Wno-deprecated-declarations -Wno-deprecated -Wall -Wextra -Wno-unused-parameter -Wconversion -Wsign-compare -Wstrict-aliasing -fvisibility=hidden -Wundef -Wuninitialized -Wtype-limits -Wignored-qualifiers -Werror -pthread "CMakeFiles/lws-minimal-ss-hello_world-policy.dir/main.c.o" "CMakeFiles/lws-minimal-ss-hello_world-policy.dir/hello_world-ss.c.o" -o ../../../bin/lws-minimal-ss-hello_world-policy -lpthread /usr/lib/x86_64-linux-gnu/libcap.so -lm -lcap -ldl ../../../lib/libwebsockets.a -lpthread /usr/lib/x86_64-linux-gnu/libcap.so -lm -lcap -ldl /usr/lib/x86_64-linux-gnu/libssl.so /usr/lib/x86_64-linux-gnu/libcrypto.so -lpthread /usr/lib/x86_64-linux-gnu/libcap.so
|
Binary file not shown.
@ -0,0 +1,252 @@
|
||||
minimal-examples/client/hello_world-policy/CMakeFiles/lws-minimal-ss-hello_world-policy.dir/main.c.o: \
|
||||
/home/onek8/Development/libwebsockets/minimal-examples/client/hello_world-policy/main.c \
|
||||
/usr/include/stdc-predef.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/14/include/stdarg.h \
|
||||
/home/onek8/Development/libwebsockets/build/lws_config.h \
|
||||
/usr/include/x86_64-linux-gnu/sys/types.h /usr/include/features.h \
|
||||
/usr/include/features-time64.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/wordsize.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/timesize.h \
|
||||
/usr/include/x86_64-linux-gnu/sys/cdefs.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/long-double.h \
|
||||
/usr/include/x86_64-linux-gnu/gnu/stubs.h \
|
||||
/usr/include/x86_64-linux-gnu/gnu/stubs-64.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/typesizes.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/time64.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/clock_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/time_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/timer_t.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/14/include/stddef.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/stdint-intn.h /usr/include/endian.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/endian.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/endianness.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/byteswap.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/uintn-identity.h \
|
||||
/usr/include/x86_64-linux-gnu/sys/select.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/select.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/struct_mutex.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/struct_rwlock.h \
|
||||
/usr/include/net/ethernet.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/14/include/stdint.h /usr/include/stdint.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/libc-header-start.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/wchar.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/stdint-least.h \
|
||||
/usr/include/linux/if_ether.h /usr/include/linux/types.h \
|
||||
/usr/include/x86_64-linux-gnu/asm/types.h \
|
||||
/usr/include/asm-generic/types.h /usr/include/asm-generic/int-ll64.h \
|
||||
/usr/include/x86_64-linux-gnu/asm/bitsperlong.h \
|
||||
/usr/include/asm-generic/bitsperlong.h /usr/include/linux/posix_types.h \
|
||||
/usr/include/linux/stddef.h \
|
||||
/usr/include/x86_64-linux-gnu/asm/posix_types.h \
|
||||
/usr/include/x86_64-linux-gnu/asm/posix_types_64.h \
|
||||
/usr/include/asm-generic/posix_types.h /usr/include/string.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/locale_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \
|
||||
/usr/include/strings.h /usr/include/stdlib.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/waitflags.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/waitstatus.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/floatn.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/floatn-common.h /usr/include/alloca.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/stdlib-float.h /usr/include/unistd.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/posix_opt.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/environments.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/confname.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/getopt_posix.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/getopt_core.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/unistd_ext.h \
|
||||
/usr/include/sys/capability.h /usr/include/linux/capability.h \
|
||||
/usr/include/poll.h /usr/include/x86_64-linux-gnu/sys/poll.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/poll.h /usr/include/netdb.h \
|
||||
/usr/include/netinet/in.h /usr/include/x86_64-linux-gnu/sys/socket.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_iovec.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/socket.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/socket_type.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/sockaddr.h \
|
||||
/usr/include/x86_64-linux-gnu/asm/socket.h \
|
||||
/usr/include/asm-generic/socket.h \
|
||||
/usr/include/x86_64-linux-gnu/asm/sockios.h \
|
||||
/usr/include/asm-generic/sockios.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_osockaddr.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/in.h /usr/include/rpc/netdb.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/netdb.h \
|
||||
/usr/include/x86_64-linux-gnu/sys/time.h /usr/include/openssl/ssl.h \
|
||||
/usr/include/openssl/macros.h \
|
||||
/usr/include/x86_64-linux-gnu/openssl/opensslconf.h \
|
||||
/usr/include/x86_64-linux-gnu/openssl/configuration.h \
|
||||
/usr/include/openssl/opensslv.h /usr/include/openssl/e_os2.h \
|
||||
/usr/include/inttypes.h /usr/include/openssl/e_ostime.h \
|
||||
/usr/include/openssl/comp.h /usr/include/openssl/crypto.h \
|
||||
/usr/include/time.h /usr/include/x86_64-linux-gnu/bits/time.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_tm.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_itimerspec.h \
|
||||
/usr/include/stdio.h /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__FILE.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/FILE.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/stdio_lim.h \
|
||||
/usr/include/openssl/safestack.h /usr/include/openssl/stack.h \
|
||||
/usr/include/openssl/types.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/14/include/limits.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/14/include/syslimits.h \
|
||||
/usr/include/limits.h /usr/include/x86_64-linux-gnu/bits/posix1_lim.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/local_lim.h \
|
||||
/usr/include/linux/limits.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/pthread_stack_min-dynamic.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/pthread_stack_min.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/posix2_lim.h \
|
||||
/usr/include/openssl/cryptoerr.h /usr/include/openssl/symhacks.h \
|
||||
/usr/include/openssl/cryptoerr_legacy.h /usr/include/openssl/core.h \
|
||||
/usr/include/pthread.h /usr/include/sched.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/sched.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_sched_param.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/cpu-set.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/setjmp.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct___jmp_buf_tag.h \
|
||||
/usr/include/openssl/comperr.h /usr/include/openssl/bio.h \
|
||||
/usr/include/openssl/bioerr.h /usr/include/openssl/x509.h \
|
||||
/usr/include/openssl/buffer.h /usr/include/openssl/buffererr.h \
|
||||
/usr/include/openssl/evp.h /usr/include/openssl/core_dispatch.h \
|
||||
/usr/include/openssl/evperr.h /usr/include/openssl/params.h \
|
||||
/usr/include/openssl/bn.h /usr/include/openssl/bnerr.h \
|
||||
/usr/include/openssl/objects.h /usr/include/openssl/obj_mac.h \
|
||||
/usr/include/openssl/asn1.h /usr/include/openssl/asn1err.h \
|
||||
/usr/include/openssl/objectserr.h /usr/include/openssl/ec.h \
|
||||
/usr/include/openssl/ecerr.h /usr/include/openssl/rsa.h \
|
||||
/usr/include/openssl/rsaerr.h /usr/include/openssl/dsa.h \
|
||||
/usr/include/openssl/dh.h /usr/include/openssl/dherr.h \
|
||||
/usr/include/openssl/dsaerr.h /usr/include/openssl/sha.h \
|
||||
/usr/include/openssl/x509err.h /usr/include/openssl/x509_vfy.h \
|
||||
/usr/include/openssl/lhash.h /usr/include/openssl/pkcs7.h \
|
||||
/usr/include/openssl/pkcs7err.h /usr/include/openssl/http.h \
|
||||
/usr/include/openssl/conf.h /usr/include/openssl/conferr.h \
|
||||
/usr/include/openssl/conftypes.h /usr/include/openssl/pem.h \
|
||||
/usr/include/openssl/pemerr.h /usr/include/openssl/hmac.h \
|
||||
/usr/include/openssl/async.h /usr/include/openssl/asyncerr.h \
|
||||
/usr/include/openssl/ct.h /usr/include/openssl/cterr.h \
|
||||
/usr/include/openssl/sslerr.h /usr/include/openssl/sslerr_legacy.h \
|
||||
/usr/include/openssl/prov_ssl.h /usr/include/openssl/ssl2.h \
|
||||
/usr/include/openssl/ssl3.h /usr/include/openssl/tls1.h \
|
||||
/usr/include/openssl/dtls1.h /usr/include/openssl/srtp.h \
|
||||
/usr/include/openssl/quic.h /usr/include/openssl/err.h \
|
||||
/usr/include/errno.h /usr/include/x86_64-linux-gnu/bits/errno.h \
|
||||
/usr/include/linux/errno.h /usr/include/x86_64-linux-gnu/asm/errno.h \
|
||||
/usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-logs.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-dll2.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-map.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-fault-injection.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-backtrace.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-timeout-timer.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-cache-ttl.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-smd.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-state.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-retry.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-adopt.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-network-helper.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-metrics.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-ota.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-system.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-ws-close.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-callbacks.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-ws-state.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-ws-ext.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-protocols-plugins.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-context-vhost.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-conmon.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-client.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-http.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-spa.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-purify.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-misc.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-dsh.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-service.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-write.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-writeable.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-ring.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-sha1-base64.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-x509.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-cgi.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-vfs.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-gencrypto.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-lejp.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-lecp.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-cose.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-struct.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-threadpool.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-tokenize.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-lwsac.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-fts.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-diskcache.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-secure-streams.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-secure-streams-serialization.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-secure-streams-policy.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-secure-streams-client.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-secure-streams-transport-proxy.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-jrpc.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-async-dns.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-tls-sessions.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-genhash.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-genrsa.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-genaes.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-genec.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-jwk.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-jose.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-jws.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-jwe.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-eventlib-exports.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-i2c.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-spi.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-gpio.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-bb-i2c.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-bb-spi.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-button.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-led.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-pwm.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-upng.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-jpeg.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-display.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-dlo.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-ssd1306-i2c.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-ili9341-spi.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-spd1656-spi.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-uc8176-spi.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-ssd1675b-spi.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-settings.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-netdev.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-html.h \
|
||||
/usr/include/signal.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/signum-generic.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/signum-arch.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/sig_atomic_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/siginfo_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__sigval_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/siginfo-arch.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/siginfo-consts.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/sigval_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/sigevent_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/sigevent-consts.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/sigaction.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/sigcontext.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/stack_t.h \
|
||||
/usr/include/x86_64-linux-gnu/sys/ucontext.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/sigstack.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/sigstksz.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/ss_flags.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_sigstack.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/sigthread.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/signal_ext.h
|
@ -0,0 +1,4 @@
|
||||
CMAKE_PROGRESS_1 =
|
||||
CMAKE_PROGRESS_2 =
|
||||
CMAKE_PROGRESS_3 =
|
||||
|
@ -0,0 +1 @@
|
||||
27
|
@ -0,0 +1,8 @@
|
||||
# CMake generated Testfile for
|
||||
# Source directory: /home/onek8/Development/libwebsockets/minimal-examples/client/hello_world-policy
|
||||
# Build directory: /home/onek8/Development/libwebsockets/build/minimal-examples/client/hello_world-policy
|
||||
#
|
||||
# This file includes the relevant testing commands required for
|
||||
# testing this directory and lists subdirectories to be tested as well.
|
||||
add_test(mss-lws-minimal-ss-hello_world-policy-warmcat "/home/onek8/Development/libwebsockets/build/bin/lws-minimal-ss-hello_world-policy")
|
||||
set_tests_properties(mss-lws-minimal-ss-hello_world-policy-warmcat PROPERTIES TIMEOUT "40" WORKING_DIRECTORY "/home/onek8/Development/libwebsockets/minimal-examples/client/hello_world-policy" _BACKTRACE_TRIPLES "/home/onek8/Development/libwebsockets/minimal-examples/client/hello_world-policy/CMakeLists.txt;89;add_test;/home/onek8/Development/libwebsockets/minimal-examples/client/hello_world-policy/CMakeLists.txt;0;")
|
@ -0,0 +1,291 @@
|
||||
# CMAKE generated file: DO NOT EDIT!
|
||||
# Generated by "Unix Makefiles" Generator, CMake Version 3.30
|
||||
|
||||
# Default target executed when no arguments are given to make.
|
||||
default_target: all
|
||||
.PHONY : default_target
|
||||
|
||||
# Allow only one "make -f Makefile2" at a time, but pass parallelism.
|
||||
.NOTPARALLEL:
|
||||
|
||||
#=============================================================================
|
||||
# Special targets provided by cmake.
|
||||
|
||||
# Disable implicit rules so canonical targets will work.
|
||||
.SUFFIXES:
|
||||
|
||||
# Disable VCS-based implicit rules.
|
||||
% : %,v
|
||||
|
||||
# Disable VCS-based implicit rules.
|
||||
% : RCS/%
|
||||
|
||||
# Disable VCS-based implicit rules.
|
||||
% : RCS/%,v
|
||||
|
||||
# Disable VCS-based implicit rules.
|
||||
% : SCCS/s.%
|
||||
|
||||
# Disable VCS-based implicit rules.
|
||||
% : s.%
|
||||
|
||||
.SUFFIXES: .hpux_make_needs_suffix_list
|
||||
|
||||
# Command-line flag to silence nested $(MAKE).
|
||||
$(VERBOSE)MAKESILENT = -s
|
||||
|
||||
#Suppress display of executed commands.
|
||||
$(VERBOSE).SILENT:
|
||||
|
||||
# A target that is always out of date.
|
||||
cmake_force:
|
||||
.PHONY : cmake_force
|
||||
|
||||
#=============================================================================
|
||||
# Set environment variables for the build.
|
||||
|
||||
# The shell in which to execute make rules.
|
||||
SHELL = /bin/sh
|
||||
|
||||
# The CMake executable.
|
||||
CMAKE_COMMAND = /usr/bin/cmake
|
||||
|
||||
# The command to remove a file.
|
||||
RM = /usr/bin/cmake -E rm -f
|
||||
|
||||
# Escaping for special characters.
|
||||
EQUALS = =
|
||||
|
||||
# The top-level source directory on which CMake was run.
|
||||
CMAKE_SOURCE_DIR = /home/onek8/Development/libwebsockets
|
||||
|
||||
# The top-level build directory on which CMake was run.
|
||||
CMAKE_BINARY_DIR = /home/onek8/Development/libwebsockets/build
|
||||
|
||||
#=============================================================================
|
||||
# Targets provided globally by CMake.
|
||||
|
||||
# Special rule for the target package
|
||||
package: preinstall
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Run CPack packaging tool..."
|
||||
cd /home/onek8/Development/libwebsockets/build && /usr/bin/cpack --config ./CPackConfig.cmake
|
||||
.PHONY : package
|
||||
|
||||
# Special rule for the target package
|
||||
package/fast: package
|
||||
.PHONY : package/fast
|
||||
|
||||
# Special rule for the target package_source
|
||||
package_source:
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Run CPack packaging tool for source..."
|
||||
cd /home/onek8/Development/libwebsockets/build && /usr/bin/cpack --config ./CPackSourceConfig.cmake /home/onek8/Development/libwebsockets/build/CPackSourceConfig.cmake
|
||||
.PHONY : package_source
|
||||
|
||||
# Special rule for the target package_source
|
||||
package_source/fast: package_source
|
||||
.PHONY : package_source/fast
|
||||
|
||||
# Special rule for the target test
|
||||
test:
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Running tests..."
|
||||
/usr/bin/ctest --force-new-ctest-process $(ARGS)
|
||||
.PHONY : test
|
||||
|
||||
# Special rule for the target test
|
||||
test/fast: test
|
||||
.PHONY : test/fast
|
||||
|
||||
# Special rule for the target edit_cache
|
||||
edit_cache:
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Running CMake cache editor..."
|
||||
/usr/bin/ccmake -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR)
|
||||
.PHONY : edit_cache
|
||||
|
||||
# Special rule for the target edit_cache
|
||||
edit_cache/fast: edit_cache
|
||||
.PHONY : edit_cache/fast
|
||||
|
||||
# Special rule for the target rebuild_cache
|
||||
rebuild_cache:
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Running CMake to regenerate build system..."
|
||||
/usr/bin/cmake --regenerate-during-build -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR)
|
||||
.PHONY : rebuild_cache
|
||||
|
||||
# Special rule for the target rebuild_cache
|
||||
rebuild_cache/fast: rebuild_cache
|
||||
.PHONY : rebuild_cache/fast
|
||||
|
||||
# Special rule for the target list_install_components
|
||||
list_install_components:
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Available install components are: \"Unspecified\" \"core\" \"dev\" \"examples\""
|
||||
.PHONY : list_install_components
|
||||
|
||||
# Special rule for the target list_install_components
|
||||
list_install_components/fast: list_install_components
|
||||
.PHONY : list_install_components/fast
|
||||
|
||||
# Special rule for the target install
|
||||
install: preinstall
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Install the project..."
|
||||
/usr/bin/cmake -P cmake_install.cmake
|
||||
.PHONY : install
|
||||
|
||||
# Special rule for the target install
|
||||
install/fast: preinstall/fast
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Install the project..."
|
||||
/usr/bin/cmake -P cmake_install.cmake
|
||||
.PHONY : install/fast
|
||||
|
||||
# Special rule for the target install/local
|
||||
install/local: preinstall
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing only the local directory..."
|
||||
/usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake
|
||||
.PHONY : install/local
|
||||
|
||||
# Special rule for the target install/local
|
||||
install/local/fast: preinstall/fast
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing only the local directory..."
|
||||
/usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake
|
||||
.PHONY : install/local/fast
|
||||
|
||||
# Special rule for the target install/strip
|
||||
install/strip: preinstall
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing the project stripped..."
|
||||
/usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake
|
||||
.PHONY : install/strip
|
||||
|
||||
# Special rule for the target install/strip
|
||||
install/strip/fast: preinstall/fast
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing the project stripped..."
|
||||
/usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake
|
||||
.PHONY : install/strip/fast
|
||||
|
||||
# The main all target
|
||||
all: cmake_check_build_system
|
||||
cd /home/onek8/Development/libwebsockets/build && $(CMAKE_COMMAND) -E cmake_progress_start /home/onek8/Development/libwebsockets/build/CMakeFiles /home/onek8/Development/libwebsockets/build/minimal-examples/client/hello_world-policy//CMakeFiles/progress.marks
|
||||
cd /home/onek8/Development/libwebsockets/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 minimal-examples/client/hello_world-policy/all
|
||||
$(CMAKE_COMMAND) -E cmake_progress_start /home/onek8/Development/libwebsockets/build/CMakeFiles 0
|
||||
.PHONY : all
|
||||
|
||||
# The main clean target
|
||||
clean:
|
||||
cd /home/onek8/Development/libwebsockets/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 minimal-examples/client/hello_world-policy/clean
|
||||
.PHONY : clean
|
||||
|
||||
# The main clean target
|
||||
clean/fast: clean
|
||||
.PHONY : clean/fast
|
||||
|
||||
# Prepare targets for installation.
|
||||
preinstall: all
|
||||
cd /home/onek8/Development/libwebsockets/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 minimal-examples/client/hello_world-policy/preinstall
|
||||
.PHONY : preinstall
|
||||
|
||||
# Prepare targets for installation.
|
||||
preinstall/fast:
|
||||
cd /home/onek8/Development/libwebsockets/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 minimal-examples/client/hello_world-policy/preinstall
|
||||
.PHONY : preinstall/fast
|
||||
|
||||
# clear depends
|
||||
depend:
|
||||
cd /home/onek8/Development/libwebsockets/build && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1
|
||||
.PHONY : depend
|
||||
|
||||
# Convenience name for target.
|
||||
minimal-examples/client/hello_world-policy/CMakeFiles/lws-minimal-ss-hello_world-policy.dir/rule:
|
||||
cd /home/onek8/Development/libwebsockets/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 minimal-examples/client/hello_world-policy/CMakeFiles/lws-minimal-ss-hello_world-policy.dir/rule
|
||||
.PHONY : minimal-examples/client/hello_world-policy/CMakeFiles/lws-minimal-ss-hello_world-policy.dir/rule
|
||||
|
||||
# Convenience name for target.
|
||||
lws-minimal-ss-hello_world-policy: minimal-examples/client/hello_world-policy/CMakeFiles/lws-minimal-ss-hello_world-policy.dir/rule
|
||||
.PHONY : lws-minimal-ss-hello_world-policy
|
||||
|
||||
# fast build rule for target.
|
||||
lws-minimal-ss-hello_world-policy/fast:
|
||||
cd /home/onek8/Development/libwebsockets/build && $(MAKE) $(MAKESILENT) -f minimal-examples/client/hello_world-policy/CMakeFiles/lws-minimal-ss-hello_world-policy.dir/build.make minimal-examples/client/hello_world-policy/CMakeFiles/lws-minimal-ss-hello_world-policy.dir/build
|
||||
.PHONY : lws-minimal-ss-hello_world-policy/fast
|
||||
|
||||
hello_world-ss.o: hello_world-ss.c.o
|
||||
.PHONY : hello_world-ss.o
|
||||
|
||||
# target to build an object file
|
||||
hello_world-ss.c.o:
|
||||
cd /home/onek8/Development/libwebsockets/build && $(MAKE) $(MAKESILENT) -f minimal-examples/client/hello_world-policy/CMakeFiles/lws-minimal-ss-hello_world-policy.dir/build.make minimal-examples/client/hello_world-policy/CMakeFiles/lws-minimal-ss-hello_world-policy.dir/hello_world-ss.c.o
|
||||
.PHONY : hello_world-ss.c.o
|
||||
|
||||
hello_world-ss.i: hello_world-ss.c.i
|
||||
.PHONY : hello_world-ss.i
|
||||
|
||||
# target to preprocess a source file
|
||||
hello_world-ss.c.i:
|
||||
cd /home/onek8/Development/libwebsockets/build && $(MAKE) $(MAKESILENT) -f minimal-examples/client/hello_world-policy/CMakeFiles/lws-minimal-ss-hello_world-policy.dir/build.make minimal-examples/client/hello_world-policy/CMakeFiles/lws-minimal-ss-hello_world-policy.dir/hello_world-ss.c.i
|
||||
.PHONY : hello_world-ss.c.i
|
||||
|
||||
hello_world-ss.s: hello_world-ss.c.s
|
||||
.PHONY : hello_world-ss.s
|
||||
|
||||
# target to generate assembly for a file
|
||||
hello_world-ss.c.s:
|
||||
cd /home/onek8/Development/libwebsockets/build && $(MAKE) $(MAKESILENT) -f minimal-examples/client/hello_world-policy/CMakeFiles/lws-minimal-ss-hello_world-policy.dir/build.make minimal-examples/client/hello_world-policy/CMakeFiles/lws-minimal-ss-hello_world-policy.dir/hello_world-ss.c.s
|
||||
.PHONY : hello_world-ss.c.s
|
||||
|
||||
main.o: main.c.o
|
||||
.PHONY : main.o
|
||||
|
||||
# target to build an object file
|
||||
main.c.o:
|
||||
cd /home/onek8/Development/libwebsockets/build && $(MAKE) $(MAKESILENT) -f minimal-examples/client/hello_world-policy/CMakeFiles/lws-minimal-ss-hello_world-policy.dir/build.make minimal-examples/client/hello_world-policy/CMakeFiles/lws-minimal-ss-hello_world-policy.dir/main.c.o
|
||||
.PHONY : main.c.o
|
||||
|
||||
main.i: main.c.i
|
||||
.PHONY : main.i
|
||||
|
||||
# target to preprocess a source file
|
||||
main.c.i:
|
||||
cd /home/onek8/Development/libwebsockets/build && $(MAKE) $(MAKESILENT) -f minimal-examples/client/hello_world-policy/CMakeFiles/lws-minimal-ss-hello_world-policy.dir/build.make minimal-examples/client/hello_world-policy/CMakeFiles/lws-minimal-ss-hello_world-policy.dir/main.c.i
|
||||
.PHONY : main.c.i
|
||||
|
||||
main.s: main.c.s
|
||||
.PHONY : main.s
|
||||
|
||||
# target to generate assembly for a file
|
||||
main.c.s:
|
||||
cd /home/onek8/Development/libwebsockets/build && $(MAKE) $(MAKESILENT) -f minimal-examples/client/hello_world-policy/CMakeFiles/lws-minimal-ss-hello_world-policy.dir/build.make minimal-examples/client/hello_world-policy/CMakeFiles/lws-minimal-ss-hello_world-policy.dir/main.c.s
|
||||
.PHONY : main.c.s
|
||||
|
||||
# Help Target
|
||||
help:
|
||||
@echo "The following are some of the valid targets for this Makefile:"
|
||||
@echo "... all (the default if no target is provided)"
|
||||
@echo "... clean"
|
||||
@echo "... depend"
|
||||
@echo "... edit_cache"
|
||||
@echo "... install"
|
||||
@echo "... install/local"
|
||||
@echo "... install/strip"
|
||||
@echo "... list_install_components"
|
||||
@echo "... package"
|
||||
@echo "... package_source"
|
||||
@echo "... rebuild_cache"
|
||||
@echo "... test"
|
||||
@echo "... lws-minimal-ss-hello_world-policy"
|
||||
@echo "... hello_world-ss.o"
|
||||
@echo "... hello_world-ss.i"
|
||||
@echo "... hello_world-ss.s"
|
||||
@echo "... main.o"
|
||||
@echo "... main.i"
|
||||
@echo "... main.s"
|
||||
.PHONY : help
|
||||
|
||||
|
||||
|
||||
#=============================================================================
|
||||
# Special targets to cleanup operation of make.
|
||||
|
||||
# Special rule to run CMake to check the build system integrity.
|
||||
# No rule that depends on this can have commands that come from listfiles
|
||||
# because they might be regenerated.
|
||||
cmake_check_build_system:
|
||||
cd /home/onek8/Development/libwebsockets/build && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0
|
||||
.PHONY : cmake_check_build_system
|
||||
|
@ -0,0 +1,44 @@
|
||||
# Install script for directory: /home/onek8/Development/libwebsockets/minimal-examples/client/hello_world-policy
|
||||
|
||||
# Set the install prefix
|
||||
if(NOT DEFINED CMAKE_INSTALL_PREFIX)
|
||||
set(CMAKE_INSTALL_PREFIX "/usr/local")
|
||||
endif()
|
||||
string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")
|
||||
|
||||
# Set the install configuration name.
|
||||
if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
|
||||
if(BUILD_TYPE)
|
||||
string(REGEX REPLACE "^[^A-Za-z0-9_]+" ""
|
||||
CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}")
|
||||
else()
|
||||
set(CMAKE_INSTALL_CONFIG_NAME "")
|
||||
endif()
|
||||
message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
|
||||
endif()
|
||||
|
||||
# Set the component getting installed.
|
||||
if(NOT CMAKE_INSTALL_COMPONENT)
|
||||
if(COMPONENT)
|
||||
message(STATUS "Install component: \"${COMPONENT}\"")
|
||||
set(CMAKE_INSTALL_COMPONENT "${COMPONENT}")
|
||||
else()
|
||||
set(CMAKE_INSTALL_COMPONENT)
|
||||
endif()
|
||||
endif()
|
||||
|
||||
# Install shared libraries without execute permission?
|
||||
if(NOT DEFINED CMAKE_INSTALL_SO_NO_EXE)
|
||||
set(CMAKE_INSTALL_SO_NO_EXE "1")
|
||||
endif()
|
||||
|
||||
# Is this installation the result of a crosscompile?
|
||||
if(NOT DEFINED CMAKE_CROSSCOMPILING)
|
||||
set(CMAKE_CROSSCOMPILING "FALSE")
|
||||
endif()
|
||||
|
||||
# Set path to fallback-tool for dependency-resolution.
|
||||
if(NOT DEFINED CMAKE_OBJDUMP)
|
||||
set(CMAKE_OBJDUMP "/usr/bin/objdump")
|
||||
endif()
|
||||
|
@ -0,0 +1,16 @@
|
||||
# CMAKE generated file: DO NOT EDIT!
|
||||
# Generated by "Unix Makefiles" Generator, CMake Version 3.30
|
||||
|
||||
# Relative path conversion top directories.
|
||||
set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/home/onek8/Development/libwebsockets")
|
||||
set(CMAKE_RELATIVE_PATH_TOP_BINARY "/home/onek8/Development/libwebsockets/build")
|
||||
|
||||
# Force unix paths in dependencies.
|
||||
set(CMAKE_FORCE_UNIX_PATHS 1)
|
||||
|
||||
|
||||
# The C and CXX include file regular expressions for this directory.
|
||||
set(CMAKE_C_INCLUDE_REGEX_SCAN "^.*$")
|
||||
set(CMAKE_C_INCLUDE_REGEX_COMPLAIN "^$")
|
||||
set(CMAKE_CXX_INCLUDE_REGEX_SCAN ${CMAKE_C_INCLUDE_REGEX_SCAN})
|
||||
set(CMAKE_CXX_INCLUDE_REGEX_COMPLAIN ${CMAKE_C_INCLUDE_REGEX_COMPLAIN})
|
@ -0,0 +1,24 @@
|
||||
|
||||
# Consider dependencies only in project.
|
||||
set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF)
|
||||
|
||||
# The set of languages for which implicit dependencies are needed:
|
||||
set(CMAKE_DEPENDS_LANGUAGES
|
||||
)
|
||||
|
||||
# The set of dependency files which are needed:
|
||||
set(CMAKE_DEPENDS_DEPENDENCY_FILES
|
||||
"/home/onek8/Development/libwebsockets/minimal-examples/client/hello_world/hello_world-ss.c" "minimal-examples/client/hello_world/CMakeFiles/lws-minimal-ss-hello_world.dir/hello_world-ss.c.o" "gcc" "minimal-examples/client/hello_world/CMakeFiles/lws-minimal-ss-hello_world.dir/hello_world-ss.c.o.d"
|
||||
"/home/onek8/Development/libwebsockets/minimal-examples/client/hello_world/main.c" "minimal-examples/client/hello_world/CMakeFiles/lws-minimal-ss-hello_world.dir/main.c.o" "gcc" "minimal-examples/client/hello_world/CMakeFiles/lws-minimal-ss-hello_world.dir/main.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 "")
|
@ -0,0 +1,132 @@
|
||||
# CMAKE generated file: DO NOT EDIT!
|
||||
# Generated by "Unix Makefiles" Generator, CMake Version 3.30
|
||||
|
||||
# Delete rule output on recipe failure.
|
||||
.DELETE_ON_ERROR:
|
||||
|
||||
#=============================================================================
|
||||
# Special targets provided by cmake.
|
||||
|
||||
# Disable implicit rules so canonical targets will work.
|
||||
.SUFFIXES:
|
||||
|
||||
# Disable VCS-based implicit rules.
|
||||
% : %,v
|
||||
|
||||
# Disable VCS-based implicit rules.
|
||||
% : RCS/%
|
||||
|
||||
# Disable VCS-based implicit rules.
|
||||
% : RCS/%,v
|
||||
|
||||
# Disable VCS-based implicit rules.
|
||||
% : SCCS/s.%
|
||||
|
||||
# Disable VCS-based implicit rules.
|
||||
% : s.%
|
||||
|
||||
.SUFFIXES: .hpux_make_needs_suffix_list
|
||||
|
||||
# Command-line flag to silence nested $(MAKE).
|
||||
$(VERBOSE)MAKESILENT = -s
|
||||
|
||||
#Suppress display of executed commands.
|
||||
$(VERBOSE).SILENT:
|
||||
|
||||
# A target that is always out of date.
|
||||
cmake_force:
|
||||
.PHONY : cmake_force
|
||||
|
||||
#=============================================================================
|
||||
# Set environment variables for the build.
|
||||
|
||||
# The shell in which to execute make rules.
|
||||
SHELL = /bin/sh
|
||||
|
||||
# The CMake executable.
|
||||
CMAKE_COMMAND = /usr/bin/cmake
|
||||
|
||||
# The command to remove a file.
|
||||
RM = /usr/bin/cmake -E rm -f
|
||||
|
||||
# Escaping for special characters.
|
||||
EQUALS = =
|
||||
|
||||
# The top-level source directory on which CMake was run.
|
||||
CMAKE_SOURCE_DIR = /home/onek8/Development/libwebsockets
|
||||
|
||||
# The top-level build directory on which CMake was run.
|
||||
CMAKE_BINARY_DIR = /home/onek8/Development/libwebsockets/build
|
||||
|
||||
# Include any dependencies generated for this target.
|
||||
include minimal-examples/client/hello_world/CMakeFiles/lws-minimal-ss-hello_world.dir/depend.make
|
||||
# Include any dependencies generated by the compiler for this target.
|
||||
include minimal-examples/client/hello_world/CMakeFiles/lws-minimal-ss-hello_world.dir/compiler_depend.make
|
||||
|
||||
# Include the progress variables for this target.
|
||||
include minimal-examples/client/hello_world/CMakeFiles/lws-minimal-ss-hello_world.dir/progress.make
|
||||
|
||||
# Include the compile flags for this target's objects.
|
||||
include minimal-examples/client/hello_world/CMakeFiles/lws-minimal-ss-hello_world.dir/flags.make
|
||||
|
||||
minimal-examples/client/hello_world/CMakeFiles/lws-minimal-ss-hello_world.dir/main.c.o: minimal-examples/client/hello_world/CMakeFiles/lws-minimal-ss-hello_world.dir/flags.make
|
||||
minimal-examples/client/hello_world/CMakeFiles/lws-minimal-ss-hello_world.dir/main.c.o: /home/onek8/Development/libwebsockets/minimal-examples/client/hello_world/main.c
|
||||
minimal-examples/client/hello_world/CMakeFiles/lws-minimal-ss-hello_world.dir/main.c.o: minimal-examples/client/hello_world/CMakeFiles/lws-minimal-ss-hello_world.dir/compiler_depend.ts
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/onek8/Development/libwebsockets/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building C object minimal-examples/client/hello_world/CMakeFiles/lws-minimal-ss-hello_world.dir/main.c.o"
|
||||
cd /home/onek8/Development/libwebsockets/build/minimal-examples/client/hello_world && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT minimal-examples/client/hello_world/CMakeFiles/lws-minimal-ss-hello_world.dir/main.c.o -MF CMakeFiles/lws-minimal-ss-hello_world.dir/main.c.o.d -o CMakeFiles/lws-minimal-ss-hello_world.dir/main.c.o -c /home/onek8/Development/libwebsockets/minimal-examples/client/hello_world/main.c
|
||||
|
||||
minimal-examples/client/hello_world/CMakeFiles/lws-minimal-ss-hello_world.dir/main.c.i: cmake_force
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/lws-minimal-ss-hello_world.dir/main.c.i"
|
||||
cd /home/onek8/Development/libwebsockets/build/minimal-examples/client/hello_world && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/onek8/Development/libwebsockets/minimal-examples/client/hello_world/main.c > CMakeFiles/lws-minimal-ss-hello_world.dir/main.c.i
|
||||
|
||||
minimal-examples/client/hello_world/CMakeFiles/lws-minimal-ss-hello_world.dir/main.c.s: cmake_force
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/lws-minimal-ss-hello_world.dir/main.c.s"
|
||||
cd /home/onek8/Development/libwebsockets/build/minimal-examples/client/hello_world && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/onek8/Development/libwebsockets/minimal-examples/client/hello_world/main.c -o CMakeFiles/lws-minimal-ss-hello_world.dir/main.c.s
|
||||
|
||||
minimal-examples/client/hello_world/CMakeFiles/lws-minimal-ss-hello_world.dir/hello_world-ss.c.o: minimal-examples/client/hello_world/CMakeFiles/lws-minimal-ss-hello_world.dir/flags.make
|
||||
minimal-examples/client/hello_world/CMakeFiles/lws-minimal-ss-hello_world.dir/hello_world-ss.c.o: /home/onek8/Development/libwebsockets/minimal-examples/client/hello_world/hello_world-ss.c
|
||||
minimal-examples/client/hello_world/CMakeFiles/lws-minimal-ss-hello_world.dir/hello_world-ss.c.o: minimal-examples/client/hello_world/CMakeFiles/lws-minimal-ss-hello_world.dir/compiler_depend.ts
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/onek8/Development/libwebsockets/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building C object minimal-examples/client/hello_world/CMakeFiles/lws-minimal-ss-hello_world.dir/hello_world-ss.c.o"
|
||||
cd /home/onek8/Development/libwebsockets/build/minimal-examples/client/hello_world && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT minimal-examples/client/hello_world/CMakeFiles/lws-minimal-ss-hello_world.dir/hello_world-ss.c.o -MF CMakeFiles/lws-minimal-ss-hello_world.dir/hello_world-ss.c.o.d -o CMakeFiles/lws-minimal-ss-hello_world.dir/hello_world-ss.c.o -c /home/onek8/Development/libwebsockets/minimal-examples/client/hello_world/hello_world-ss.c
|
||||
|
||||
minimal-examples/client/hello_world/CMakeFiles/lws-minimal-ss-hello_world.dir/hello_world-ss.c.i: cmake_force
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/lws-minimal-ss-hello_world.dir/hello_world-ss.c.i"
|
||||
cd /home/onek8/Development/libwebsockets/build/minimal-examples/client/hello_world && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/onek8/Development/libwebsockets/minimal-examples/client/hello_world/hello_world-ss.c > CMakeFiles/lws-minimal-ss-hello_world.dir/hello_world-ss.c.i
|
||||
|
||||
minimal-examples/client/hello_world/CMakeFiles/lws-minimal-ss-hello_world.dir/hello_world-ss.c.s: cmake_force
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/lws-minimal-ss-hello_world.dir/hello_world-ss.c.s"
|
||||
cd /home/onek8/Development/libwebsockets/build/minimal-examples/client/hello_world && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/onek8/Development/libwebsockets/minimal-examples/client/hello_world/hello_world-ss.c -o CMakeFiles/lws-minimal-ss-hello_world.dir/hello_world-ss.c.s
|
||||
|
||||
# Object files for target lws-minimal-ss-hello_world
|
||||
lws__minimal__ss__hello_world_OBJECTS = \
|
||||
"CMakeFiles/lws-minimal-ss-hello_world.dir/main.c.o" \
|
||||
"CMakeFiles/lws-minimal-ss-hello_world.dir/hello_world-ss.c.o"
|
||||
|
||||
# External object files for target lws-minimal-ss-hello_world
|
||||
lws__minimal__ss__hello_world_EXTERNAL_OBJECTS =
|
||||
|
||||
bin/lws-minimal-ss-hello_world: minimal-examples/client/hello_world/CMakeFiles/lws-minimal-ss-hello_world.dir/main.c.o
|
||||
bin/lws-minimal-ss-hello_world: minimal-examples/client/hello_world/CMakeFiles/lws-minimal-ss-hello_world.dir/hello_world-ss.c.o
|
||||
bin/lws-minimal-ss-hello_world: minimal-examples/client/hello_world/CMakeFiles/lws-minimal-ss-hello_world.dir/build.make
|
||||
bin/lws-minimal-ss-hello_world: /usr/lib/x86_64-linux-gnu/libcap.so
|
||||
bin/lws-minimal-ss-hello_world: lib/libwebsockets.a
|
||||
bin/lws-minimal-ss-hello_world: /usr/lib/x86_64-linux-gnu/libcap.so
|
||||
bin/lws-minimal-ss-hello_world: /usr/lib/x86_64-linux-gnu/libssl.so
|
||||
bin/lws-minimal-ss-hello_world: /usr/lib/x86_64-linux-gnu/libcrypto.so
|
||||
bin/lws-minimal-ss-hello_world: /usr/lib/x86_64-linux-gnu/libcap.so
|
||||
bin/lws-minimal-ss-hello_world: minimal-examples/client/hello_world/CMakeFiles/lws-minimal-ss-hello_world.dir/link.txt
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --bold --progress-dir=/home/onek8/Development/libwebsockets/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Linking C executable ../../../bin/lws-minimal-ss-hello_world"
|
||||
cd /home/onek8/Development/libwebsockets/build/minimal-examples/client/hello_world && $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/lws-minimal-ss-hello_world.dir/link.txt --verbose=$(VERBOSE)
|
||||
|
||||
# Rule to build all files generated by this target.
|
||||
minimal-examples/client/hello_world/CMakeFiles/lws-minimal-ss-hello_world.dir/build: bin/lws-minimal-ss-hello_world
|
||||
.PHONY : minimal-examples/client/hello_world/CMakeFiles/lws-minimal-ss-hello_world.dir/build
|
||||
|
||||
minimal-examples/client/hello_world/CMakeFiles/lws-minimal-ss-hello_world.dir/clean:
|
||||
cd /home/onek8/Development/libwebsockets/build/minimal-examples/client/hello_world && $(CMAKE_COMMAND) -P CMakeFiles/lws-minimal-ss-hello_world.dir/cmake_clean.cmake
|
||||
.PHONY : minimal-examples/client/hello_world/CMakeFiles/lws-minimal-ss-hello_world.dir/clean
|
||||
|
||||
minimal-examples/client/hello_world/CMakeFiles/lws-minimal-ss-hello_world.dir/depend:
|
||||
cd /home/onek8/Development/libwebsockets/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/onek8/Development/libwebsockets /home/onek8/Development/libwebsockets/minimal-examples/client/hello_world /home/onek8/Development/libwebsockets/build /home/onek8/Development/libwebsockets/build/minimal-examples/client/hello_world /home/onek8/Development/libwebsockets/build/minimal-examples/client/hello_world/CMakeFiles/lws-minimal-ss-hello_world.dir/DependInfo.cmake "--color=$(COLOR)"
|
||||
.PHONY : minimal-examples/client/hello_world/CMakeFiles/lws-minimal-ss-hello_world.dir/depend
|
||||
|
@ -0,0 +1,13 @@
|
||||
file(REMOVE_RECURSE
|
||||
"../../../bin/lws-minimal-ss-hello_world"
|
||||
"../../../bin/lws-minimal-ss-hello_world.pdb"
|
||||
"CMakeFiles/lws-minimal-ss-hello_world.dir/hello_world-ss.c.o"
|
||||
"CMakeFiles/lws-minimal-ss-hello_world.dir/hello_world-ss.c.o.d"
|
||||
"CMakeFiles/lws-minimal-ss-hello_world.dir/main.c.o"
|
||||
"CMakeFiles/lws-minimal-ss-hello_world.dir/main.c.o.d"
|
||||
)
|
||||
|
||||
# Per-language clean rules from dependency scanning.
|
||||
foreach(lang C)
|
||||
include(CMakeFiles/lws-minimal-ss-hello_world.dir/cmake_clean_${lang}.cmake OPTIONAL)
|
||||
endforeach()
|
@ -0,0 +1,2 @@
|
||||
# Empty compiler generated dependencies file for lws-minimal-ss-hello_world.
|
||||
# This may be replaced when dependencies are built.
|
@ -0,0 +1,2 @@
|
||||
# CMAKE generated file: DO NOT EDIT!
|
||||
# Timestamp file for compiler generated dependencies management for lws-minimal-ss-hello_world.
|
@ -0,0 +1,2 @@
|
||||
# Empty dependencies file for lws-minimal-ss-hello_world.
|
||||
# This may be replaced when dependencies are built.
|
@ -0,0 +1,10 @@
|
||||
# CMAKE generated file: DO NOT EDIT!
|
||||
# Generated by "Unix Makefiles" Generator, CMake Version 3.30
|
||||
|
||||
# compile C with /usr/bin/cc
|
||||
C_DEFINES =
|
||||
|
||||
C_INCLUDES = -I/home/onek8/Development/libwebsockets/include -I/home/onek8/Development/libwebsockets/build -I/home/onek8/Development/libwebsockets/lib -I/home/onek8/Development/libwebsockets/lib/. -I/home/onek8/Development/libwebsockets/lib/plat/unix/. -I/home/onek8/Development/libwebsockets/lib/tls/. -I/home/onek8/Development/libwebsockets/lib/core/. -I/home/onek8/Development/libwebsockets/lib/misc/. -I/home/onek8/Development/libwebsockets/lib/misc/misc/jrpc -I/home/onek8/Development/libwebsockets/lib/system/./async-dns -I/home/onek8/Development/libwebsockets/lib/system/smd/. -I/home/onek8/Development/libwebsockets/lib/system/metrics/. -I/home/onek8/Development/libwebsockets/lib/core-net/. -I/home/onek8/Development/libwebsockets/lib/roles/. -I/home/onek8/Development/libwebsockets/lib/roles/http/. -I/home/onek8/Development/libwebsockets/lib/roles/http/./compression -I/home/onek8/Development/libwebsockets/lib/roles/h1/. -I/home/onek8/Development/libwebsockets/lib/roles/h2/. -I/home/onek8/Development/libwebsockets/lib/roles/ws/. -I/home/onek8/Development/libwebsockets/lib/roles/raw-skt/. -I/home/onek8/Development/libwebsockets/lib/roles/raw-file/. -I/home/onek8/Development/libwebsockets/lib/roles/listen/. -I/home/onek8/Development/libwebsockets/lib/secure-streams -I/home/onek8/Development/libwebsockets/lib/event-libs/. -I/home/onek8/Development/libwebsockets/lib/event-libs/poll/../poll -I/home/onek8/Development/libwebsockets/lib/secure-streams/. -I/home/onek8/Development/libwebsockets/lib/../include -I/home/onek8/Development/libwebsockets/build/lib/../include
|
||||
|
||||
C_FLAGS = -Wno-deprecated-declarations -Wno-deprecated -Wall -Wextra -Wno-unused-parameter -Wconversion -Wsign-compare -Wstrict-aliasing -fvisibility=hidden -Wundef -Wuninitialized -Wtype-limits -Wignored-qualifiers -Werror -pthread
|
||||
|
Binary file not shown.
@ -0,0 +1,252 @@
|
||||
minimal-examples/client/hello_world/CMakeFiles/lws-minimal-ss-hello_world.dir/hello_world-ss.c.o: \
|
||||
/home/onek8/Development/libwebsockets/minimal-examples/client/hello_world/hello_world-ss.c \
|
||||
/usr/include/stdc-predef.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/14/include/stdarg.h \
|
||||
/home/onek8/Development/libwebsockets/build/lws_config.h \
|
||||
/usr/include/x86_64-linux-gnu/sys/types.h /usr/include/features.h \
|
||||
/usr/include/features-time64.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/wordsize.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/timesize.h \
|
||||
/usr/include/x86_64-linux-gnu/sys/cdefs.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/long-double.h \
|
||||
/usr/include/x86_64-linux-gnu/gnu/stubs.h \
|
||||
/usr/include/x86_64-linux-gnu/gnu/stubs-64.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/typesizes.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/time64.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/clock_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/time_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/timer_t.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/14/include/stddef.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/stdint-intn.h /usr/include/endian.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/endian.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/endianness.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/byteswap.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/uintn-identity.h \
|
||||
/usr/include/x86_64-linux-gnu/sys/select.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/select.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/struct_mutex.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/struct_rwlock.h \
|
||||
/usr/include/net/ethernet.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/14/include/stdint.h /usr/include/stdint.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/libc-header-start.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/wchar.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/stdint-least.h \
|
||||
/usr/include/linux/if_ether.h /usr/include/linux/types.h \
|
||||
/usr/include/x86_64-linux-gnu/asm/types.h \
|
||||
/usr/include/asm-generic/types.h /usr/include/asm-generic/int-ll64.h \
|
||||
/usr/include/x86_64-linux-gnu/asm/bitsperlong.h \
|
||||
/usr/include/asm-generic/bitsperlong.h /usr/include/linux/posix_types.h \
|
||||
/usr/include/linux/stddef.h \
|
||||
/usr/include/x86_64-linux-gnu/asm/posix_types.h \
|
||||
/usr/include/x86_64-linux-gnu/asm/posix_types_64.h \
|
||||
/usr/include/asm-generic/posix_types.h /usr/include/string.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/locale_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \
|
||||
/usr/include/strings.h /usr/include/stdlib.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/waitflags.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/waitstatus.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/floatn.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/floatn-common.h /usr/include/alloca.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/stdlib-float.h /usr/include/unistd.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/posix_opt.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/environments.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/confname.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/getopt_posix.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/getopt_core.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/unistd_ext.h \
|
||||
/usr/include/sys/capability.h /usr/include/linux/capability.h \
|
||||
/usr/include/poll.h /usr/include/x86_64-linux-gnu/sys/poll.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/poll.h /usr/include/netdb.h \
|
||||
/usr/include/netinet/in.h /usr/include/x86_64-linux-gnu/sys/socket.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_iovec.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/socket.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/socket_type.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/sockaddr.h \
|
||||
/usr/include/x86_64-linux-gnu/asm/socket.h \
|
||||
/usr/include/asm-generic/socket.h \
|
||||
/usr/include/x86_64-linux-gnu/asm/sockios.h \
|
||||
/usr/include/asm-generic/sockios.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_osockaddr.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/in.h /usr/include/rpc/netdb.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/netdb.h \
|
||||
/usr/include/x86_64-linux-gnu/sys/time.h /usr/include/openssl/ssl.h \
|
||||
/usr/include/openssl/macros.h \
|
||||
/usr/include/x86_64-linux-gnu/openssl/opensslconf.h \
|
||||
/usr/include/x86_64-linux-gnu/openssl/configuration.h \
|
||||
/usr/include/openssl/opensslv.h /usr/include/openssl/e_os2.h \
|
||||
/usr/include/inttypes.h /usr/include/openssl/e_ostime.h \
|
||||
/usr/include/openssl/comp.h /usr/include/openssl/crypto.h \
|
||||
/usr/include/time.h /usr/include/x86_64-linux-gnu/bits/time.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_tm.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_itimerspec.h \
|
||||
/usr/include/stdio.h /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__FILE.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/FILE.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/stdio_lim.h \
|
||||
/usr/include/openssl/safestack.h /usr/include/openssl/stack.h \
|
||||
/usr/include/openssl/types.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/14/include/limits.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/14/include/syslimits.h \
|
||||
/usr/include/limits.h /usr/include/x86_64-linux-gnu/bits/posix1_lim.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/local_lim.h \
|
||||
/usr/include/linux/limits.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/pthread_stack_min-dynamic.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/pthread_stack_min.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/posix2_lim.h \
|
||||
/usr/include/openssl/cryptoerr.h /usr/include/openssl/symhacks.h \
|
||||
/usr/include/openssl/cryptoerr_legacy.h /usr/include/openssl/core.h \
|
||||
/usr/include/pthread.h /usr/include/sched.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/sched.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_sched_param.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/cpu-set.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/setjmp.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct___jmp_buf_tag.h \
|
||||
/usr/include/openssl/comperr.h /usr/include/openssl/bio.h \
|
||||
/usr/include/openssl/bioerr.h /usr/include/openssl/x509.h \
|
||||
/usr/include/openssl/buffer.h /usr/include/openssl/buffererr.h \
|
||||
/usr/include/openssl/evp.h /usr/include/openssl/core_dispatch.h \
|
||||
/usr/include/openssl/evperr.h /usr/include/openssl/params.h \
|
||||
/usr/include/openssl/bn.h /usr/include/openssl/bnerr.h \
|
||||
/usr/include/openssl/objects.h /usr/include/openssl/obj_mac.h \
|
||||
/usr/include/openssl/asn1.h /usr/include/openssl/asn1err.h \
|
||||
/usr/include/openssl/objectserr.h /usr/include/openssl/ec.h \
|
||||
/usr/include/openssl/ecerr.h /usr/include/openssl/rsa.h \
|
||||
/usr/include/openssl/rsaerr.h /usr/include/openssl/dsa.h \
|
||||
/usr/include/openssl/dh.h /usr/include/openssl/dherr.h \
|
||||
/usr/include/openssl/dsaerr.h /usr/include/openssl/sha.h \
|
||||
/usr/include/openssl/x509err.h /usr/include/openssl/x509_vfy.h \
|
||||
/usr/include/openssl/lhash.h /usr/include/openssl/pkcs7.h \
|
||||
/usr/include/openssl/pkcs7err.h /usr/include/openssl/http.h \
|
||||
/usr/include/openssl/conf.h /usr/include/openssl/conferr.h \
|
||||
/usr/include/openssl/conftypes.h /usr/include/openssl/pem.h \
|
||||
/usr/include/openssl/pemerr.h /usr/include/openssl/hmac.h \
|
||||
/usr/include/openssl/async.h /usr/include/openssl/asyncerr.h \
|
||||
/usr/include/openssl/ct.h /usr/include/openssl/cterr.h \
|
||||
/usr/include/openssl/sslerr.h /usr/include/openssl/sslerr_legacy.h \
|
||||
/usr/include/openssl/prov_ssl.h /usr/include/openssl/ssl2.h \
|
||||
/usr/include/openssl/ssl3.h /usr/include/openssl/tls1.h \
|
||||
/usr/include/openssl/dtls1.h /usr/include/openssl/srtp.h \
|
||||
/usr/include/openssl/quic.h /usr/include/openssl/err.h \
|
||||
/usr/include/errno.h /usr/include/x86_64-linux-gnu/bits/errno.h \
|
||||
/usr/include/linux/errno.h /usr/include/x86_64-linux-gnu/asm/errno.h \
|
||||
/usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-logs.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-dll2.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-map.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-fault-injection.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-backtrace.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-timeout-timer.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-cache-ttl.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-smd.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-state.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-retry.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-adopt.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-network-helper.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-metrics.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-ota.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-system.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-ws-close.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-callbacks.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-ws-state.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-ws-ext.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-protocols-plugins.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-context-vhost.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-conmon.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-client.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-http.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-spa.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-purify.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-misc.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-dsh.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-service.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-write.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-writeable.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-ring.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-sha1-base64.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-x509.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-cgi.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-vfs.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-gencrypto.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-lejp.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-lecp.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-cose.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-struct.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-threadpool.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-tokenize.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-lwsac.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-fts.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-diskcache.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-secure-streams.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-secure-streams-serialization.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-secure-streams-policy.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-secure-streams-client.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-secure-streams-transport-proxy.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-jrpc.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-async-dns.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-tls-sessions.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-genhash.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-genrsa.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-genaes.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-genec.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-jwk.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-jose.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-jws.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-jwe.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-eventlib-exports.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-i2c.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-spi.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-gpio.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-bb-i2c.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-bb-spi.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-button.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-led.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-pwm.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-upng.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-jpeg.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-display.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-dlo.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-ssd1306-i2c.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-ili9341-spi.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-spd1656-spi.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-uc8176-spi.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-ssd1675b-spi.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-settings.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-netdev.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-html.h \
|
||||
/usr/include/signal.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/signum-generic.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/signum-arch.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/sig_atomic_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/siginfo_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__sigval_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/siginfo-arch.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/siginfo-consts.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/sigval_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/sigevent_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/sigevent-consts.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/sigaction.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/sigcontext.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/stack_t.h \
|
||||
/usr/include/x86_64-linux-gnu/sys/ucontext.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/sigstack.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/sigstksz.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/ss_flags.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_sigstack.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/sigthread.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/signal_ext.h
|
@ -0,0 +1 @@
|
||||
/usr/bin/cc -Wno-deprecated-declarations -Wno-deprecated -Wall -Wextra -Wno-unused-parameter -Wconversion -Wsign-compare -Wstrict-aliasing -fvisibility=hidden -Wundef -Wuninitialized -Wtype-limits -Wignored-qualifiers -Werror -pthread "CMakeFiles/lws-minimal-ss-hello_world.dir/main.c.o" "CMakeFiles/lws-minimal-ss-hello_world.dir/hello_world-ss.c.o" -o ../../../bin/lws-minimal-ss-hello_world -lpthread /usr/lib/x86_64-linux-gnu/libcap.so -lm -lcap -ldl ../../../lib/libwebsockets.a -lpthread /usr/lib/x86_64-linux-gnu/libcap.so -lm -lcap -ldl /usr/lib/x86_64-linux-gnu/libssl.so /usr/lib/x86_64-linux-gnu/libcrypto.so -lpthread /usr/lib/x86_64-linux-gnu/libcap.so
|
Binary file not shown.
@ -0,0 +1,252 @@
|
||||
minimal-examples/client/hello_world/CMakeFiles/lws-minimal-ss-hello_world.dir/main.c.o: \
|
||||
/home/onek8/Development/libwebsockets/minimal-examples/client/hello_world/main.c \
|
||||
/usr/include/stdc-predef.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/14/include/stdarg.h \
|
||||
/home/onek8/Development/libwebsockets/build/lws_config.h \
|
||||
/usr/include/x86_64-linux-gnu/sys/types.h /usr/include/features.h \
|
||||
/usr/include/features-time64.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/wordsize.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/timesize.h \
|
||||
/usr/include/x86_64-linux-gnu/sys/cdefs.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/long-double.h \
|
||||
/usr/include/x86_64-linux-gnu/gnu/stubs.h \
|
||||
/usr/include/x86_64-linux-gnu/gnu/stubs-64.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/typesizes.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/time64.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/clock_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/time_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/timer_t.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/14/include/stddef.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/stdint-intn.h /usr/include/endian.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/endian.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/endianness.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/byteswap.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/uintn-identity.h \
|
||||
/usr/include/x86_64-linux-gnu/sys/select.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/select.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/struct_mutex.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/struct_rwlock.h \
|
||||
/usr/include/net/ethernet.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/14/include/stdint.h /usr/include/stdint.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/libc-header-start.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/wchar.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/stdint-least.h \
|
||||
/usr/include/linux/if_ether.h /usr/include/linux/types.h \
|
||||
/usr/include/x86_64-linux-gnu/asm/types.h \
|
||||
/usr/include/asm-generic/types.h /usr/include/asm-generic/int-ll64.h \
|
||||
/usr/include/x86_64-linux-gnu/asm/bitsperlong.h \
|
||||
/usr/include/asm-generic/bitsperlong.h /usr/include/linux/posix_types.h \
|
||||
/usr/include/linux/stddef.h \
|
||||
/usr/include/x86_64-linux-gnu/asm/posix_types.h \
|
||||
/usr/include/x86_64-linux-gnu/asm/posix_types_64.h \
|
||||
/usr/include/asm-generic/posix_types.h /usr/include/string.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/locale_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \
|
||||
/usr/include/strings.h /usr/include/stdlib.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/waitflags.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/waitstatus.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/floatn.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/floatn-common.h /usr/include/alloca.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/stdlib-float.h /usr/include/unistd.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/posix_opt.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/environments.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/confname.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/getopt_posix.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/getopt_core.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/unistd_ext.h \
|
||||
/usr/include/sys/capability.h /usr/include/linux/capability.h \
|
||||
/usr/include/poll.h /usr/include/x86_64-linux-gnu/sys/poll.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/poll.h /usr/include/netdb.h \
|
||||
/usr/include/netinet/in.h /usr/include/x86_64-linux-gnu/sys/socket.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_iovec.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/socket.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/socket_type.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/sockaddr.h \
|
||||
/usr/include/x86_64-linux-gnu/asm/socket.h \
|
||||
/usr/include/asm-generic/socket.h \
|
||||
/usr/include/x86_64-linux-gnu/asm/sockios.h \
|
||||
/usr/include/asm-generic/sockios.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_osockaddr.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/in.h /usr/include/rpc/netdb.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/netdb.h \
|
||||
/usr/include/x86_64-linux-gnu/sys/time.h /usr/include/openssl/ssl.h \
|
||||
/usr/include/openssl/macros.h \
|
||||
/usr/include/x86_64-linux-gnu/openssl/opensslconf.h \
|
||||
/usr/include/x86_64-linux-gnu/openssl/configuration.h \
|
||||
/usr/include/openssl/opensslv.h /usr/include/openssl/e_os2.h \
|
||||
/usr/include/inttypes.h /usr/include/openssl/e_ostime.h \
|
||||
/usr/include/openssl/comp.h /usr/include/openssl/crypto.h \
|
||||
/usr/include/time.h /usr/include/x86_64-linux-gnu/bits/time.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_tm.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_itimerspec.h \
|
||||
/usr/include/stdio.h /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__FILE.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/FILE.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/stdio_lim.h \
|
||||
/usr/include/openssl/safestack.h /usr/include/openssl/stack.h \
|
||||
/usr/include/openssl/types.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/14/include/limits.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/14/include/syslimits.h \
|
||||
/usr/include/limits.h /usr/include/x86_64-linux-gnu/bits/posix1_lim.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/local_lim.h \
|
||||
/usr/include/linux/limits.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/pthread_stack_min-dynamic.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/pthread_stack_min.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/posix2_lim.h \
|
||||
/usr/include/openssl/cryptoerr.h /usr/include/openssl/symhacks.h \
|
||||
/usr/include/openssl/cryptoerr_legacy.h /usr/include/openssl/core.h \
|
||||
/usr/include/pthread.h /usr/include/sched.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/sched.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_sched_param.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/cpu-set.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/setjmp.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct___jmp_buf_tag.h \
|
||||
/usr/include/openssl/comperr.h /usr/include/openssl/bio.h \
|
||||
/usr/include/openssl/bioerr.h /usr/include/openssl/x509.h \
|
||||
/usr/include/openssl/buffer.h /usr/include/openssl/buffererr.h \
|
||||
/usr/include/openssl/evp.h /usr/include/openssl/core_dispatch.h \
|
||||
/usr/include/openssl/evperr.h /usr/include/openssl/params.h \
|
||||
/usr/include/openssl/bn.h /usr/include/openssl/bnerr.h \
|
||||
/usr/include/openssl/objects.h /usr/include/openssl/obj_mac.h \
|
||||
/usr/include/openssl/asn1.h /usr/include/openssl/asn1err.h \
|
||||
/usr/include/openssl/objectserr.h /usr/include/openssl/ec.h \
|
||||
/usr/include/openssl/ecerr.h /usr/include/openssl/rsa.h \
|
||||
/usr/include/openssl/rsaerr.h /usr/include/openssl/dsa.h \
|
||||
/usr/include/openssl/dh.h /usr/include/openssl/dherr.h \
|
||||
/usr/include/openssl/dsaerr.h /usr/include/openssl/sha.h \
|
||||
/usr/include/openssl/x509err.h /usr/include/openssl/x509_vfy.h \
|
||||
/usr/include/openssl/lhash.h /usr/include/openssl/pkcs7.h \
|
||||
/usr/include/openssl/pkcs7err.h /usr/include/openssl/http.h \
|
||||
/usr/include/openssl/conf.h /usr/include/openssl/conferr.h \
|
||||
/usr/include/openssl/conftypes.h /usr/include/openssl/pem.h \
|
||||
/usr/include/openssl/pemerr.h /usr/include/openssl/hmac.h \
|
||||
/usr/include/openssl/async.h /usr/include/openssl/asyncerr.h \
|
||||
/usr/include/openssl/ct.h /usr/include/openssl/cterr.h \
|
||||
/usr/include/openssl/sslerr.h /usr/include/openssl/sslerr_legacy.h \
|
||||
/usr/include/openssl/prov_ssl.h /usr/include/openssl/ssl2.h \
|
||||
/usr/include/openssl/ssl3.h /usr/include/openssl/tls1.h \
|
||||
/usr/include/openssl/dtls1.h /usr/include/openssl/srtp.h \
|
||||
/usr/include/openssl/quic.h /usr/include/openssl/err.h \
|
||||
/usr/include/errno.h /usr/include/x86_64-linux-gnu/bits/errno.h \
|
||||
/usr/include/linux/errno.h /usr/include/x86_64-linux-gnu/asm/errno.h \
|
||||
/usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-logs.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-dll2.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-map.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-fault-injection.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-backtrace.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-timeout-timer.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-cache-ttl.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-smd.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-state.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-retry.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-adopt.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-network-helper.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-metrics.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-ota.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-system.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-ws-close.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-callbacks.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-ws-state.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-ws-ext.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-protocols-plugins.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-context-vhost.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-conmon.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-client.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-http.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-spa.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-purify.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-misc.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-dsh.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-service.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-write.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-writeable.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-ring.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-sha1-base64.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-x509.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-cgi.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-vfs.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-gencrypto.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-lejp.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-lecp.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-cose.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-struct.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-threadpool.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-tokenize.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-lwsac.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-fts.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-diskcache.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-secure-streams.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-secure-streams-serialization.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-secure-streams-policy.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-secure-streams-client.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-secure-streams-transport-proxy.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-jrpc.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-async-dns.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-tls-sessions.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-genhash.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-genrsa.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-genaes.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-genec.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-jwk.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-jose.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-jws.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-jwe.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-eventlib-exports.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-i2c.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-spi.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-gpio.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-bb-i2c.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-bb-spi.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-button.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-led.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-pwm.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-upng.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-jpeg.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-display.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-dlo.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-ssd1306-i2c.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-ili9341-spi.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-spd1656-spi.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-uc8176-spi.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-ssd1675b-spi.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-settings.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-netdev.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-html.h \
|
||||
/usr/include/signal.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/signum-generic.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/signum-arch.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/sig_atomic_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/siginfo_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__sigval_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/siginfo-arch.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/siginfo-consts.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/sigval_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/sigevent_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/sigevent-consts.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/sigaction.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/sigcontext.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/stack_t.h \
|
||||
/usr/include/x86_64-linux-gnu/sys/ucontext.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/sigstack.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/sigstksz.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/ss_flags.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_sigstack.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/sigthread.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/signal_ext.h
|
@ -0,0 +1,4 @@
|
||||
CMAKE_PROGRESS_1 =
|
||||
CMAKE_PROGRESS_2 =
|
||||
CMAKE_PROGRESS_3 = 33
|
||||
|
@ -0,0 +1 @@
|
||||
28
|
@ -0,0 +1,8 @@
|
||||
# CMake generated Testfile for
|
||||
# Source directory: /home/onek8/Development/libwebsockets/minimal-examples/client/hello_world
|
||||
# Build directory: /home/onek8/Development/libwebsockets/build/minimal-examples/client/hello_world
|
||||
#
|
||||
# This file includes the relevant testing commands required for
|
||||
# testing this directory and lists subdirectories to be tested as well.
|
||||
add_test(mss-lws-minimal-ss-hello_world "/home/onek8/Development/libwebsockets/build/bin/lws-minimal-ss-hello_world")
|
||||
set_tests_properties(mss-lws-minimal-ss-hello_world PROPERTIES TIMEOUT "40" WORKING_DIRECTORY "/home/onek8/Development/libwebsockets/minimal-examples/client/hello_world" _BACKTRACE_TRIPLES "/home/onek8/Development/libwebsockets/minimal-examples/client/hello_world/CMakeLists.txt;95;add_test;/home/onek8/Development/libwebsockets/minimal-examples/client/hello_world/CMakeLists.txt;0;")
|
@ -0,0 +1,291 @@
|
||||
# CMAKE generated file: DO NOT EDIT!
|
||||
# Generated by "Unix Makefiles" Generator, CMake Version 3.30
|
||||
|
||||
# Default target executed when no arguments are given to make.
|
||||
default_target: all
|
||||
.PHONY : default_target
|
||||
|
||||
# Allow only one "make -f Makefile2" at a time, but pass parallelism.
|
||||
.NOTPARALLEL:
|
||||
|
||||
#=============================================================================
|
||||
# Special targets provided by cmake.
|
||||
|
||||
# Disable implicit rules so canonical targets will work.
|
||||
.SUFFIXES:
|
||||
|
||||
# Disable VCS-based implicit rules.
|
||||
% : %,v
|
||||
|
||||
# Disable VCS-based implicit rules.
|
||||
% : RCS/%
|
||||
|
||||
# Disable VCS-based implicit rules.
|
||||
% : RCS/%,v
|
||||
|
||||
# Disable VCS-based implicit rules.
|
||||
% : SCCS/s.%
|
||||
|
||||
# Disable VCS-based implicit rules.
|
||||
% : s.%
|
||||
|
||||
.SUFFIXES: .hpux_make_needs_suffix_list
|
||||
|
||||
# Command-line flag to silence nested $(MAKE).
|
||||
$(VERBOSE)MAKESILENT = -s
|
||||
|
||||
#Suppress display of executed commands.
|
||||
$(VERBOSE).SILENT:
|
||||
|
||||
# A target that is always out of date.
|
||||
cmake_force:
|
||||
.PHONY : cmake_force
|
||||
|
||||
#=============================================================================
|
||||
# Set environment variables for the build.
|
||||
|
||||
# The shell in which to execute make rules.
|
||||
SHELL = /bin/sh
|
||||
|
||||
# The CMake executable.
|
||||
CMAKE_COMMAND = /usr/bin/cmake
|
||||
|
||||
# The command to remove a file.
|
||||
RM = /usr/bin/cmake -E rm -f
|
||||
|
||||
# Escaping for special characters.
|
||||
EQUALS = =
|
||||
|
||||
# The top-level source directory on which CMake was run.
|
||||
CMAKE_SOURCE_DIR = /home/onek8/Development/libwebsockets
|
||||
|
||||
# The top-level build directory on which CMake was run.
|
||||
CMAKE_BINARY_DIR = /home/onek8/Development/libwebsockets/build
|
||||
|
||||
#=============================================================================
|
||||
# Targets provided globally by CMake.
|
||||
|
||||
# Special rule for the target package
|
||||
package: preinstall
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Run CPack packaging tool..."
|
||||
cd /home/onek8/Development/libwebsockets/build && /usr/bin/cpack --config ./CPackConfig.cmake
|
||||
.PHONY : package
|
||||
|
||||
# Special rule for the target package
|
||||
package/fast: package
|
||||
.PHONY : package/fast
|
||||
|
||||
# Special rule for the target package_source
|
||||
package_source:
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Run CPack packaging tool for source..."
|
||||
cd /home/onek8/Development/libwebsockets/build && /usr/bin/cpack --config ./CPackSourceConfig.cmake /home/onek8/Development/libwebsockets/build/CPackSourceConfig.cmake
|
||||
.PHONY : package_source
|
||||
|
||||
# Special rule for the target package_source
|
||||
package_source/fast: package_source
|
||||
.PHONY : package_source/fast
|
||||
|
||||
# Special rule for the target test
|
||||
test:
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Running tests..."
|
||||
/usr/bin/ctest --force-new-ctest-process $(ARGS)
|
||||
.PHONY : test
|
||||
|
||||
# Special rule for the target test
|
||||
test/fast: test
|
||||
.PHONY : test/fast
|
||||
|
||||
# Special rule for the target edit_cache
|
||||
edit_cache:
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Running CMake cache editor..."
|
||||
/usr/bin/ccmake -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR)
|
||||
.PHONY : edit_cache
|
||||
|
||||
# Special rule for the target edit_cache
|
||||
edit_cache/fast: edit_cache
|
||||
.PHONY : edit_cache/fast
|
||||
|
||||
# Special rule for the target rebuild_cache
|
||||
rebuild_cache:
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Running CMake to regenerate build system..."
|
||||
/usr/bin/cmake --regenerate-during-build -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR)
|
||||
.PHONY : rebuild_cache
|
||||
|
||||
# Special rule for the target rebuild_cache
|
||||
rebuild_cache/fast: rebuild_cache
|
||||
.PHONY : rebuild_cache/fast
|
||||
|
||||
# Special rule for the target list_install_components
|
||||
list_install_components:
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Available install components are: \"Unspecified\" \"core\" \"dev\" \"examples\""
|
||||
.PHONY : list_install_components
|
||||
|
||||
# Special rule for the target list_install_components
|
||||
list_install_components/fast: list_install_components
|
||||
.PHONY : list_install_components/fast
|
||||
|
||||
# Special rule for the target install
|
||||
install: preinstall
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Install the project..."
|
||||
/usr/bin/cmake -P cmake_install.cmake
|
||||
.PHONY : install
|
||||
|
||||
# Special rule for the target install
|
||||
install/fast: preinstall/fast
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Install the project..."
|
||||
/usr/bin/cmake -P cmake_install.cmake
|
||||
.PHONY : install/fast
|
||||
|
||||
# Special rule for the target install/local
|
||||
install/local: preinstall
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing only the local directory..."
|
||||
/usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake
|
||||
.PHONY : install/local
|
||||
|
||||
# Special rule for the target install/local
|
||||
install/local/fast: preinstall/fast
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing only the local directory..."
|
||||
/usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake
|
||||
.PHONY : install/local/fast
|
||||
|
||||
# Special rule for the target install/strip
|
||||
install/strip: preinstall
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing the project stripped..."
|
||||
/usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake
|
||||
.PHONY : install/strip
|
||||
|
||||
# Special rule for the target install/strip
|
||||
install/strip/fast: preinstall/fast
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing the project stripped..."
|
||||
/usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake
|
||||
.PHONY : install/strip/fast
|
||||
|
||||
# The main all target
|
||||
all: cmake_check_build_system
|
||||
cd /home/onek8/Development/libwebsockets/build && $(CMAKE_COMMAND) -E cmake_progress_start /home/onek8/Development/libwebsockets/build/CMakeFiles /home/onek8/Development/libwebsockets/build/minimal-examples/client/hello_world//CMakeFiles/progress.marks
|
||||
cd /home/onek8/Development/libwebsockets/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 minimal-examples/client/hello_world/all
|
||||
$(CMAKE_COMMAND) -E cmake_progress_start /home/onek8/Development/libwebsockets/build/CMakeFiles 0
|
||||
.PHONY : all
|
||||
|
||||
# The main clean target
|
||||
clean:
|
||||
cd /home/onek8/Development/libwebsockets/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 minimal-examples/client/hello_world/clean
|
||||
.PHONY : clean
|
||||
|
||||
# The main clean target
|
||||
clean/fast: clean
|
||||
.PHONY : clean/fast
|
||||
|
||||
# Prepare targets for installation.
|
||||
preinstall: all
|
||||
cd /home/onek8/Development/libwebsockets/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 minimal-examples/client/hello_world/preinstall
|
||||
.PHONY : preinstall
|
||||
|
||||
# Prepare targets for installation.
|
||||
preinstall/fast:
|
||||
cd /home/onek8/Development/libwebsockets/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 minimal-examples/client/hello_world/preinstall
|
||||
.PHONY : preinstall/fast
|
||||
|
||||
# clear depends
|
||||
depend:
|
||||
cd /home/onek8/Development/libwebsockets/build && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1
|
||||
.PHONY : depend
|
||||
|
||||
# Convenience name for target.
|
||||
minimal-examples/client/hello_world/CMakeFiles/lws-minimal-ss-hello_world.dir/rule:
|
||||
cd /home/onek8/Development/libwebsockets/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 minimal-examples/client/hello_world/CMakeFiles/lws-minimal-ss-hello_world.dir/rule
|
||||
.PHONY : minimal-examples/client/hello_world/CMakeFiles/lws-minimal-ss-hello_world.dir/rule
|
||||
|
||||
# Convenience name for target.
|
||||
lws-minimal-ss-hello_world: minimal-examples/client/hello_world/CMakeFiles/lws-minimal-ss-hello_world.dir/rule
|
||||
.PHONY : lws-minimal-ss-hello_world
|
||||
|
||||
# fast build rule for target.
|
||||
lws-minimal-ss-hello_world/fast:
|
||||
cd /home/onek8/Development/libwebsockets/build && $(MAKE) $(MAKESILENT) -f minimal-examples/client/hello_world/CMakeFiles/lws-minimal-ss-hello_world.dir/build.make minimal-examples/client/hello_world/CMakeFiles/lws-minimal-ss-hello_world.dir/build
|
||||
.PHONY : lws-minimal-ss-hello_world/fast
|
||||
|
||||
hello_world-ss.o: hello_world-ss.c.o
|
||||
.PHONY : hello_world-ss.o
|
||||
|
||||
# target to build an object file
|
||||
hello_world-ss.c.o:
|
||||
cd /home/onek8/Development/libwebsockets/build && $(MAKE) $(MAKESILENT) -f minimal-examples/client/hello_world/CMakeFiles/lws-minimal-ss-hello_world.dir/build.make minimal-examples/client/hello_world/CMakeFiles/lws-minimal-ss-hello_world.dir/hello_world-ss.c.o
|
||||
.PHONY : hello_world-ss.c.o
|
||||
|
||||
hello_world-ss.i: hello_world-ss.c.i
|
||||
.PHONY : hello_world-ss.i
|
||||
|
||||
# target to preprocess a source file
|
||||
hello_world-ss.c.i:
|
||||
cd /home/onek8/Development/libwebsockets/build && $(MAKE) $(MAKESILENT) -f minimal-examples/client/hello_world/CMakeFiles/lws-minimal-ss-hello_world.dir/build.make minimal-examples/client/hello_world/CMakeFiles/lws-minimal-ss-hello_world.dir/hello_world-ss.c.i
|
||||
.PHONY : hello_world-ss.c.i
|
||||
|
||||
hello_world-ss.s: hello_world-ss.c.s
|
||||
.PHONY : hello_world-ss.s
|
||||
|
||||
# target to generate assembly for a file
|
||||
hello_world-ss.c.s:
|
||||
cd /home/onek8/Development/libwebsockets/build && $(MAKE) $(MAKESILENT) -f minimal-examples/client/hello_world/CMakeFiles/lws-minimal-ss-hello_world.dir/build.make minimal-examples/client/hello_world/CMakeFiles/lws-minimal-ss-hello_world.dir/hello_world-ss.c.s
|
||||
.PHONY : hello_world-ss.c.s
|
||||
|
||||
main.o: main.c.o
|
||||
.PHONY : main.o
|
||||
|
||||
# target to build an object file
|
||||
main.c.o:
|
||||
cd /home/onek8/Development/libwebsockets/build && $(MAKE) $(MAKESILENT) -f minimal-examples/client/hello_world/CMakeFiles/lws-minimal-ss-hello_world.dir/build.make minimal-examples/client/hello_world/CMakeFiles/lws-minimal-ss-hello_world.dir/main.c.o
|
||||
.PHONY : main.c.o
|
||||
|
||||
main.i: main.c.i
|
||||
.PHONY : main.i
|
||||
|
||||
# target to preprocess a source file
|
||||
main.c.i:
|
||||
cd /home/onek8/Development/libwebsockets/build && $(MAKE) $(MAKESILENT) -f minimal-examples/client/hello_world/CMakeFiles/lws-minimal-ss-hello_world.dir/build.make minimal-examples/client/hello_world/CMakeFiles/lws-minimal-ss-hello_world.dir/main.c.i
|
||||
.PHONY : main.c.i
|
||||
|
||||
main.s: main.c.s
|
||||
.PHONY : main.s
|
||||
|
||||
# target to generate assembly for a file
|
||||
main.c.s:
|
||||
cd /home/onek8/Development/libwebsockets/build && $(MAKE) $(MAKESILENT) -f minimal-examples/client/hello_world/CMakeFiles/lws-minimal-ss-hello_world.dir/build.make minimal-examples/client/hello_world/CMakeFiles/lws-minimal-ss-hello_world.dir/main.c.s
|
||||
.PHONY : main.c.s
|
||||
|
||||
# Help Target
|
||||
help:
|
||||
@echo "The following are some of the valid targets for this Makefile:"
|
||||
@echo "... all (the default if no target is provided)"
|
||||
@echo "... clean"
|
||||
@echo "... depend"
|
||||
@echo "... edit_cache"
|
||||
@echo "... install"
|
||||
@echo "... install/local"
|
||||
@echo "... install/strip"
|
||||
@echo "... list_install_components"
|
||||
@echo "... package"
|
||||
@echo "... package_source"
|
||||
@echo "... rebuild_cache"
|
||||
@echo "... test"
|
||||
@echo "... lws-minimal-ss-hello_world"
|
||||
@echo "... hello_world-ss.o"
|
||||
@echo "... hello_world-ss.i"
|
||||
@echo "... hello_world-ss.s"
|
||||
@echo "... main.o"
|
||||
@echo "... main.i"
|
||||
@echo "... main.s"
|
||||
.PHONY : help
|
||||
|
||||
|
||||
|
||||
#=============================================================================
|
||||
# Special targets to cleanup operation of make.
|
||||
|
||||
# Special rule to run CMake to check the build system integrity.
|
||||
# No rule that depends on this can have commands that come from listfiles
|
||||
# because they might be regenerated.
|
||||
cmake_check_build_system:
|
||||
cd /home/onek8/Development/libwebsockets/build && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0
|
||||
.PHONY : cmake_check_build_system
|
||||
|
@ -0,0 +1,44 @@
|
||||
# Install script for directory: /home/onek8/Development/libwebsockets/minimal-examples/client/hello_world
|
||||
|
||||
# Set the install prefix
|
||||
if(NOT DEFINED CMAKE_INSTALL_PREFIX)
|
||||
set(CMAKE_INSTALL_PREFIX "/usr/local")
|
||||
endif()
|
||||
string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")
|
||||
|
||||
# Set the install configuration name.
|
||||
if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
|
||||
if(BUILD_TYPE)
|
||||
string(REGEX REPLACE "^[^A-Za-z0-9_]+" ""
|
||||
CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}")
|
||||
else()
|
||||
set(CMAKE_INSTALL_CONFIG_NAME "")
|
||||
endif()
|
||||
message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
|
||||
endif()
|
||||
|
||||
# Set the component getting installed.
|
||||
if(NOT CMAKE_INSTALL_COMPONENT)
|
||||
if(COMPONENT)
|
||||
message(STATUS "Install component: \"${COMPONENT}\"")
|
||||
set(CMAKE_INSTALL_COMPONENT "${COMPONENT}")
|
||||
else()
|
||||
set(CMAKE_INSTALL_COMPONENT)
|
||||
endif()
|
||||
endif()
|
||||
|
||||
# Install shared libraries without execute permission?
|
||||
if(NOT DEFINED CMAKE_INSTALL_SO_NO_EXE)
|
||||
set(CMAKE_INSTALL_SO_NO_EXE "1")
|
||||
endif()
|
||||
|
||||
# Is this installation the result of a crosscompile?
|
||||
if(NOT DEFINED CMAKE_CROSSCOMPILING)
|
||||
set(CMAKE_CROSSCOMPILING "FALSE")
|
||||
endif()
|
||||
|
||||
# Set path to fallback-tool for dependency-resolution.
|
||||
if(NOT DEFINED CMAKE_OBJDUMP)
|
||||
set(CMAKE_OBJDUMP "/usr/bin/objdump")
|
||||
endif()
|
||||
|
@ -0,0 +1,16 @@
|
||||
# CMAKE generated file: DO NOT EDIT!
|
||||
# Generated by "Unix Makefiles" Generator, CMake Version 3.30
|
||||
|
||||
# Relative path conversion top directories.
|
||||
set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/home/onek8/Development/libwebsockets")
|
||||
set(CMAKE_RELATIVE_PATH_TOP_BINARY "/home/onek8/Development/libwebsockets/build")
|
||||
|
||||
# Force unix paths in dependencies.
|
||||
set(CMAKE_FORCE_UNIX_PATHS 1)
|
||||
|
||||
|
||||
# The C and CXX include file regular expressions for this directory.
|
||||
set(CMAKE_C_INCLUDE_REGEX_SCAN "^.*$")
|
||||
set(CMAKE_C_INCLUDE_REGEX_COMPLAIN "^$")
|
||||
set(CMAKE_CXX_INCLUDE_REGEX_SCAN ${CMAKE_C_INCLUDE_REGEX_SCAN})
|
||||
set(CMAKE_CXX_INCLUDE_REGEX_COMPLAIN ${CMAKE_C_INCLUDE_REGEX_COMPLAIN})
|
@ -0,0 +1,24 @@
|
||||
|
||||
# Consider dependencies only in project.
|
||||
set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF)
|
||||
|
||||
# The set of languages for which implicit dependencies are needed:
|
||||
set(CMAKE_DEPENDS_LANGUAGES
|
||||
)
|
||||
|
||||
# The set of dependency files which are needed:
|
||||
set(CMAKE_DEPENDS_DEPENDENCY_FILES
|
||||
"/home/onek8/Development/libwebsockets/minimal-examples/client/http-post/http-post-ss.c" "minimal-examples/client/http-post/CMakeFiles/lws-minimal-ss-http-post.dir/http-post-ss.c.o" "gcc" "minimal-examples/client/http-post/CMakeFiles/lws-minimal-ss-http-post.dir/http-post-ss.c.o.d"
|
||||
"/home/onek8/Development/libwebsockets/minimal-examples/client/http-post/main.c" "minimal-examples/client/http-post/CMakeFiles/lws-minimal-ss-http-post.dir/main.c.o" "gcc" "minimal-examples/client/http-post/CMakeFiles/lws-minimal-ss-http-post.dir/main.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 "")
|
@ -0,0 +1,132 @@
|
||||
# CMAKE generated file: DO NOT EDIT!
|
||||
# Generated by "Unix Makefiles" Generator, CMake Version 3.30
|
||||
|
||||
# Delete rule output on recipe failure.
|
||||
.DELETE_ON_ERROR:
|
||||
|
||||
#=============================================================================
|
||||
# Special targets provided by cmake.
|
||||
|
||||
# Disable implicit rules so canonical targets will work.
|
||||
.SUFFIXES:
|
||||
|
||||
# Disable VCS-based implicit rules.
|
||||
% : %,v
|
||||
|
||||
# Disable VCS-based implicit rules.
|
||||
% : RCS/%
|
||||
|
||||
# Disable VCS-based implicit rules.
|
||||
% : RCS/%,v
|
||||
|
||||
# Disable VCS-based implicit rules.
|
||||
% : SCCS/s.%
|
||||
|
||||
# Disable VCS-based implicit rules.
|
||||
% : s.%
|
||||
|
||||
.SUFFIXES: .hpux_make_needs_suffix_list
|
||||
|
||||
# Command-line flag to silence nested $(MAKE).
|
||||
$(VERBOSE)MAKESILENT = -s
|
||||
|
||||
#Suppress display of executed commands.
|
||||
$(VERBOSE).SILENT:
|
||||
|
||||
# A target that is always out of date.
|
||||
cmake_force:
|
||||
.PHONY : cmake_force
|
||||
|
||||
#=============================================================================
|
||||
# Set environment variables for the build.
|
||||
|
||||
# The shell in which to execute make rules.
|
||||
SHELL = /bin/sh
|
||||
|
||||
# The CMake executable.
|
||||
CMAKE_COMMAND = /usr/bin/cmake
|
||||
|
||||
# The command to remove a file.
|
||||
RM = /usr/bin/cmake -E rm -f
|
||||
|
||||
# Escaping for special characters.
|
||||
EQUALS = =
|
||||
|
||||
# The top-level source directory on which CMake was run.
|
||||
CMAKE_SOURCE_DIR = /home/onek8/Development/libwebsockets
|
||||
|
||||
# The top-level build directory on which CMake was run.
|
||||
CMAKE_BINARY_DIR = /home/onek8/Development/libwebsockets/build
|
||||
|
||||
# Include any dependencies generated for this target.
|
||||
include minimal-examples/client/http-post/CMakeFiles/lws-minimal-ss-http-post.dir/depend.make
|
||||
# Include any dependencies generated by the compiler for this target.
|
||||
include minimal-examples/client/http-post/CMakeFiles/lws-minimal-ss-http-post.dir/compiler_depend.make
|
||||
|
||||
# Include the progress variables for this target.
|
||||
include minimal-examples/client/http-post/CMakeFiles/lws-minimal-ss-http-post.dir/progress.make
|
||||
|
||||
# Include the compile flags for this target's objects.
|
||||
include minimal-examples/client/http-post/CMakeFiles/lws-minimal-ss-http-post.dir/flags.make
|
||||
|
||||
minimal-examples/client/http-post/CMakeFiles/lws-minimal-ss-http-post.dir/main.c.o: minimal-examples/client/http-post/CMakeFiles/lws-minimal-ss-http-post.dir/flags.make
|
||||
minimal-examples/client/http-post/CMakeFiles/lws-minimal-ss-http-post.dir/main.c.o: /home/onek8/Development/libwebsockets/minimal-examples/client/http-post/main.c
|
||||
minimal-examples/client/http-post/CMakeFiles/lws-minimal-ss-http-post.dir/main.c.o: minimal-examples/client/http-post/CMakeFiles/lws-minimal-ss-http-post.dir/compiler_depend.ts
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/onek8/Development/libwebsockets/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building C object minimal-examples/client/http-post/CMakeFiles/lws-minimal-ss-http-post.dir/main.c.o"
|
||||
cd /home/onek8/Development/libwebsockets/build/minimal-examples/client/http-post && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT minimal-examples/client/http-post/CMakeFiles/lws-minimal-ss-http-post.dir/main.c.o -MF CMakeFiles/lws-minimal-ss-http-post.dir/main.c.o.d -o CMakeFiles/lws-minimal-ss-http-post.dir/main.c.o -c /home/onek8/Development/libwebsockets/minimal-examples/client/http-post/main.c
|
||||
|
||||
minimal-examples/client/http-post/CMakeFiles/lws-minimal-ss-http-post.dir/main.c.i: cmake_force
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/lws-minimal-ss-http-post.dir/main.c.i"
|
||||
cd /home/onek8/Development/libwebsockets/build/minimal-examples/client/http-post && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/onek8/Development/libwebsockets/minimal-examples/client/http-post/main.c > CMakeFiles/lws-minimal-ss-http-post.dir/main.c.i
|
||||
|
||||
minimal-examples/client/http-post/CMakeFiles/lws-minimal-ss-http-post.dir/main.c.s: cmake_force
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/lws-minimal-ss-http-post.dir/main.c.s"
|
||||
cd /home/onek8/Development/libwebsockets/build/minimal-examples/client/http-post && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/onek8/Development/libwebsockets/minimal-examples/client/http-post/main.c -o CMakeFiles/lws-minimal-ss-http-post.dir/main.c.s
|
||||
|
||||
minimal-examples/client/http-post/CMakeFiles/lws-minimal-ss-http-post.dir/http-post-ss.c.o: minimal-examples/client/http-post/CMakeFiles/lws-minimal-ss-http-post.dir/flags.make
|
||||
minimal-examples/client/http-post/CMakeFiles/lws-minimal-ss-http-post.dir/http-post-ss.c.o: /home/onek8/Development/libwebsockets/minimal-examples/client/http-post/http-post-ss.c
|
||||
minimal-examples/client/http-post/CMakeFiles/lws-minimal-ss-http-post.dir/http-post-ss.c.o: minimal-examples/client/http-post/CMakeFiles/lws-minimal-ss-http-post.dir/compiler_depend.ts
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/onek8/Development/libwebsockets/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building C object minimal-examples/client/http-post/CMakeFiles/lws-minimal-ss-http-post.dir/http-post-ss.c.o"
|
||||
cd /home/onek8/Development/libwebsockets/build/minimal-examples/client/http-post && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT minimal-examples/client/http-post/CMakeFiles/lws-minimal-ss-http-post.dir/http-post-ss.c.o -MF CMakeFiles/lws-minimal-ss-http-post.dir/http-post-ss.c.o.d -o CMakeFiles/lws-minimal-ss-http-post.dir/http-post-ss.c.o -c /home/onek8/Development/libwebsockets/minimal-examples/client/http-post/http-post-ss.c
|
||||
|
||||
minimal-examples/client/http-post/CMakeFiles/lws-minimal-ss-http-post.dir/http-post-ss.c.i: cmake_force
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/lws-minimal-ss-http-post.dir/http-post-ss.c.i"
|
||||
cd /home/onek8/Development/libwebsockets/build/minimal-examples/client/http-post && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/onek8/Development/libwebsockets/minimal-examples/client/http-post/http-post-ss.c > CMakeFiles/lws-minimal-ss-http-post.dir/http-post-ss.c.i
|
||||
|
||||
minimal-examples/client/http-post/CMakeFiles/lws-minimal-ss-http-post.dir/http-post-ss.c.s: cmake_force
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/lws-minimal-ss-http-post.dir/http-post-ss.c.s"
|
||||
cd /home/onek8/Development/libwebsockets/build/minimal-examples/client/http-post && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/onek8/Development/libwebsockets/minimal-examples/client/http-post/http-post-ss.c -o CMakeFiles/lws-minimal-ss-http-post.dir/http-post-ss.c.s
|
||||
|
||||
# Object files for target lws-minimal-ss-http-post
|
||||
lws__minimal__ss__http__post_OBJECTS = \
|
||||
"CMakeFiles/lws-minimal-ss-http-post.dir/main.c.o" \
|
||||
"CMakeFiles/lws-minimal-ss-http-post.dir/http-post-ss.c.o"
|
||||
|
||||
# External object files for target lws-minimal-ss-http-post
|
||||
lws__minimal__ss__http__post_EXTERNAL_OBJECTS =
|
||||
|
||||
bin/lws-minimal-ss-http-post: minimal-examples/client/http-post/CMakeFiles/lws-minimal-ss-http-post.dir/main.c.o
|
||||
bin/lws-minimal-ss-http-post: minimal-examples/client/http-post/CMakeFiles/lws-minimal-ss-http-post.dir/http-post-ss.c.o
|
||||
bin/lws-minimal-ss-http-post: minimal-examples/client/http-post/CMakeFiles/lws-minimal-ss-http-post.dir/build.make
|
||||
bin/lws-minimal-ss-http-post: /usr/lib/x86_64-linux-gnu/libcap.so
|
||||
bin/lws-minimal-ss-http-post: lib/libwebsockets.a
|
||||
bin/lws-minimal-ss-http-post: /usr/lib/x86_64-linux-gnu/libcap.so
|
||||
bin/lws-minimal-ss-http-post: /usr/lib/x86_64-linux-gnu/libssl.so
|
||||
bin/lws-minimal-ss-http-post: /usr/lib/x86_64-linux-gnu/libcrypto.so
|
||||
bin/lws-minimal-ss-http-post: /usr/lib/x86_64-linux-gnu/libcap.so
|
||||
bin/lws-minimal-ss-http-post: minimal-examples/client/http-post/CMakeFiles/lws-minimal-ss-http-post.dir/link.txt
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --bold --progress-dir=/home/onek8/Development/libwebsockets/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Linking C executable ../../../bin/lws-minimal-ss-http-post"
|
||||
cd /home/onek8/Development/libwebsockets/build/minimal-examples/client/http-post && $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/lws-minimal-ss-http-post.dir/link.txt --verbose=$(VERBOSE)
|
||||
|
||||
# Rule to build all files generated by this target.
|
||||
minimal-examples/client/http-post/CMakeFiles/lws-minimal-ss-http-post.dir/build: bin/lws-minimal-ss-http-post
|
||||
.PHONY : minimal-examples/client/http-post/CMakeFiles/lws-minimal-ss-http-post.dir/build
|
||||
|
||||
minimal-examples/client/http-post/CMakeFiles/lws-minimal-ss-http-post.dir/clean:
|
||||
cd /home/onek8/Development/libwebsockets/build/minimal-examples/client/http-post && $(CMAKE_COMMAND) -P CMakeFiles/lws-minimal-ss-http-post.dir/cmake_clean.cmake
|
||||
.PHONY : minimal-examples/client/http-post/CMakeFiles/lws-minimal-ss-http-post.dir/clean
|
||||
|
||||
minimal-examples/client/http-post/CMakeFiles/lws-minimal-ss-http-post.dir/depend:
|
||||
cd /home/onek8/Development/libwebsockets/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/onek8/Development/libwebsockets /home/onek8/Development/libwebsockets/minimal-examples/client/http-post /home/onek8/Development/libwebsockets/build /home/onek8/Development/libwebsockets/build/minimal-examples/client/http-post /home/onek8/Development/libwebsockets/build/minimal-examples/client/http-post/CMakeFiles/lws-minimal-ss-http-post.dir/DependInfo.cmake "--color=$(COLOR)"
|
||||
.PHONY : minimal-examples/client/http-post/CMakeFiles/lws-minimal-ss-http-post.dir/depend
|
||||
|
@ -0,0 +1,13 @@
|
||||
file(REMOVE_RECURSE
|
||||
"../../../bin/lws-minimal-ss-http-post"
|
||||
"../../../bin/lws-minimal-ss-http-post.pdb"
|
||||
"CMakeFiles/lws-minimal-ss-http-post.dir/http-post-ss.c.o"
|
||||
"CMakeFiles/lws-minimal-ss-http-post.dir/http-post-ss.c.o.d"
|
||||
"CMakeFiles/lws-minimal-ss-http-post.dir/main.c.o"
|
||||
"CMakeFiles/lws-minimal-ss-http-post.dir/main.c.o.d"
|
||||
)
|
||||
|
||||
# Per-language clean rules from dependency scanning.
|
||||
foreach(lang C)
|
||||
include(CMakeFiles/lws-minimal-ss-http-post.dir/cmake_clean_${lang}.cmake OPTIONAL)
|
||||
endforeach()
|
@ -0,0 +1,2 @@
|
||||
# Empty compiler generated dependencies file for lws-minimal-ss-http-post.
|
||||
# This may be replaced when dependencies are built.
|
@ -0,0 +1,2 @@
|
||||
# CMAKE generated file: DO NOT EDIT!
|
||||
# Timestamp file for compiler generated dependencies management for lws-minimal-ss-http-post.
|
@ -0,0 +1,2 @@
|
||||
# Empty dependencies file for lws-minimal-ss-http-post.
|
||||
# This may be replaced when dependencies are built.
|
@ -0,0 +1,10 @@
|
||||
# CMAKE generated file: DO NOT EDIT!
|
||||
# Generated by "Unix Makefiles" Generator, CMake Version 3.30
|
||||
|
||||
# compile C with /usr/bin/cc
|
||||
C_DEFINES =
|
||||
|
||||
C_INCLUDES = -I/home/onek8/Development/libwebsockets/include -I/home/onek8/Development/libwebsockets/build -I/home/onek8/Development/libwebsockets/lib -I/home/onek8/Development/libwebsockets/lib/. -I/home/onek8/Development/libwebsockets/lib/plat/unix/. -I/home/onek8/Development/libwebsockets/lib/tls/. -I/home/onek8/Development/libwebsockets/lib/core/. -I/home/onek8/Development/libwebsockets/lib/misc/. -I/home/onek8/Development/libwebsockets/lib/misc/misc/jrpc -I/home/onek8/Development/libwebsockets/lib/system/./async-dns -I/home/onek8/Development/libwebsockets/lib/system/smd/. -I/home/onek8/Development/libwebsockets/lib/system/metrics/. -I/home/onek8/Development/libwebsockets/lib/core-net/. -I/home/onek8/Development/libwebsockets/lib/roles/. -I/home/onek8/Development/libwebsockets/lib/roles/http/. -I/home/onek8/Development/libwebsockets/lib/roles/http/./compression -I/home/onek8/Development/libwebsockets/lib/roles/h1/. -I/home/onek8/Development/libwebsockets/lib/roles/h2/. -I/home/onek8/Development/libwebsockets/lib/roles/ws/. -I/home/onek8/Development/libwebsockets/lib/roles/raw-skt/. -I/home/onek8/Development/libwebsockets/lib/roles/raw-file/. -I/home/onek8/Development/libwebsockets/lib/roles/listen/. -I/home/onek8/Development/libwebsockets/lib/secure-streams -I/home/onek8/Development/libwebsockets/lib/event-libs/. -I/home/onek8/Development/libwebsockets/lib/event-libs/poll/../poll -I/home/onek8/Development/libwebsockets/lib/secure-streams/. -I/home/onek8/Development/libwebsockets/lib/../include -I/home/onek8/Development/libwebsockets/build/lib/../include
|
||||
|
||||
C_FLAGS = -Wno-deprecated-declarations -Wno-deprecated -Wall -Wextra -Wno-unused-parameter -Wconversion -Wsign-compare -Wstrict-aliasing -fvisibility=hidden -Wundef -Wuninitialized -Wtype-limits -Wignored-qualifiers -Werror -pthread
|
||||
|
Binary file not shown.
@ -0,0 +1,252 @@
|
||||
minimal-examples/client/http-post/CMakeFiles/lws-minimal-ss-http-post.dir/http-post-ss.c.o: \
|
||||
/home/onek8/Development/libwebsockets/minimal-examples/client/http-post/http-post-ss.c \
|
||||
/usr/include/stdc-predef.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/14/include/stdarg.h \
|
||||
/home/onek8/Development/libwebsockets/build/lws_config.h \
|
||||
/usr/include/x86_64-linux-gnu/sys/types.h /usr/include/features.h \
|
||||
/usr/include/features-time64.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/wordsize.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/timesize.h \
|
||||
/usr/include/x86_64-linux-gnu/sys/cdefs.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/long-double.h \
|
||||
/usr/include/x86_64-linux-gnu/gnu/stubs.h \
|
||||
/usr/include/x86_64-linux-gnu/gnu/stubs-64.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/typesizes.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/time64.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/clock_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/time_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/timer_t.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/14/include/stddef.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/stdint-intn.h /usr/include/endian.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/endian.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/endianness.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/byteswap.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/uintn-identity.h \
|
||||
/usr/include/x86_64-linux-gnu/sys/select.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/select.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/struct_mutex.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/struct_rwlock.h \
|
||||
/usr/include/net/ethernet.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/14/include/stdint.h /usr/include/stdint.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/libc-header-start.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/wchar.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/stdint-least.h \
|
||||
/usr/include/linux/if_ether.h /usr/include/linux/types.h \
|
||||
/usr/include/x86_64-linux-gnu/asm/types.h \
|
||||
/usr/include/asm-generic/types.h /usr/include/asm-generic/int-ll64.h \
|
||||
/usr/include/x86_64-linux-gnu/asm/bitsperlong.h \
|
||||
/usr/include/asm-generic/bitsperlong.h /usr/include/linux/posix_types.h \
|
||||
/usr/include/linux/stddef.h \
|
||||
/usr/include/x86_64-linux-gnu/asm/posix_types.h \
|
||||
/usr/include/x86_64-linux-gnu/asm/posix_types_64.h \
|
||||
/usr/include/asm-generic/posix_types.h /usr/include/string.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/locale_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \
|
||||
/usr/include/strings.h /usr/include/stdlib.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/waitflags.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/waitstatus.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/floatn.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/floatn-common.h /usr/include/alloca.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/stdlib-float.h /usr/include/unistd.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/posix_opt.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/environments.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/confname.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/getopt_posix.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/getopt_core.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/unistd_ext.h \
|
||||
/usr/include/sys/capability.h /usr/include/linux/capability.h \
|
||||
/usr/include/poll.h /usr/include/x86_64-linux-gnu/sys/poll.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/poll.h /usr/include/netdb.h \
|
||||
/usr/include/netinet/in.h /usr/include/x86_64-linux-gnu/sys/socket.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_iovec.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/socket.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/socket_type.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/sockaddr.h \
|
||||
/usr/include/x86_64-linux-gnu/asm/socket.h \
|
||||
/usr/include/asm-generic/socket.h \
|
||||
/usr/include/x86_64-linux-gnu/asm/sockios.h \
|
||||
/usr/include/asm-generic/sockios.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_osockaddr.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/in.h /usr/include/rpc/netdb.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/netdb.h \
|
||||
/usr/include/x86_64-linux-gnu/sys/time.h /usr/include/openssl/ssl.h \
|
||||
/usr/include/openssl/macros.h \
|
||||
/usr/include/x86_64-linux-gnu/openssl/opensslconf.h \
|
||||
/usr/include/x86_64-linux-gnu/openssl/configuration.h \
|
||||
/usr/include/openssl/opensslv.h /usr/include/openssl/e_os2.h \
|
||||
/usr/include/inttypes.h /usr/include/openssl/e_ostime.h \
|
||||
/usr/include/openssl/comp.h /usr/include/openssl/crypto.h \
|
||||
/usr/include/time.h /usr/include/x86_64-linux-gnu/bits/time.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_tm.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_itimerspec.h \
|
||||
/usr/include/stdio.h /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__FILE.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/FILE.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/stdio_lim.h \
|
||||
/usr/include/openssl/safestack.h /usr/include/openssl/stack.h \
|
||||
/usr/include/openssl/types.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/14/include/limits.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/14/include/syslimits.h \
|
||||
/usr/include/limits.h /usr/include/x86_64-linux-gnu/bits/posix1_lim.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/local_lim.h \
|
||||
/usr/include/linux/limits.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/pthread_stack_min-dynamic.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/pthread_stack_min.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/posix2_lim.h \
|
||||
/usr/include/openssl/cryptoerr.h /usr/include/openssl/symhacks.h \
|
||||
/usr/include/openssl/cryptoerr_legacy.h /usr/include/openssl/core.h \
|
||||
/usr/include/pthread.h /usr/include/sched.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/sched.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_sched_param.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/cpu-set.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/setjmp.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct___jmp_buf_tag.h \
|
||||
/usr/include/openssl/comperr.h /usr/include/openssl/bio.h \
|
||||
/usr/include/openssl/bioerr.h /usr/include/openssl/x509.h \
|
||||
/usr/include/openssl/buffer.h /usr/include/openssl/buffererr.h \
|
||||
/usr/include/openssl/evp.h /usr/include/openssl/core_dispatch.h \
|
||||
/usr/include/openssl/evperr.h /usr/include/openssl/params.h \
|
||||
/usr/include/openssl/bn.h /usr/include/openssl/bnerr.h \
|
||||
/usr/include/openssl/objects.h /usr/include/openssl/obj_mac.h \
|
||||
/usr/include/openssl/asn1.h /usr/include/openssl/asn1err.h \
|
||||
/usr/include/openssl/objectserr.h /usr/include/openssl/ec.h \
|
||||
/usr/include/openssl/ecerr.h /usr/include/openssl/rsa.h \
|
||||
/usr/include/openssl/rsaerr.h /usr/include/openssl/dsa.h \
|
||||
/usr/include/openssl/dh.h /usr/include/openssl/dherr.h \
|
||||
/usr/include/openssl/dsaerr.h /usr/include/openssl/sha.h \
|
||||
/usr/include/openssl/x509err.h /usr/include/openssl/x509_vfy.h \
|
||||
/usr/include/openssl/lhash.h /usr/include/openssl/pkcs7.h \
|
||||
/usr/include/openssl/pkcs7err.h /usr/include/openssl/http.h \
|
||||
/usr/include/openssl/conf.h /usr/include/openssl/conferr.h \
|
||||
/usr/include/openssl/conftypes.h /usr/include/openssl/pem.h \
|
||||
/usr/include/openssl/pemerr.h /usr/include/openssl/hmac.h \
|
||||
/usr/include/openssl/async.h /usr/include/openssl/asyncerr.h \
|
||||
/usr/include/openssl/ct.h /usr/include/openssl/cterr.h \
|
||||
/usr/include/openssl/sslerr.h /usr/include/openssl/sslerr_legacy.h \
|
||||
/usr/include/openssl/prov_ssl.h /usr/include/openssl/ssl2.h \
|
||||
/usr/include/openssl/ssl3.h /usr/include/openssl/tls1.h \
|
||||
/usr/include/openssl/dtls1.h /usr/include/openssl/srtp.h \
|
||||
/usr/include/openssl/quic.h /usr/include/openssl/err.h \
|
||||
/usr/include/errno.h /usr/include/x86_64-linux-gnu/bits/errno.h \
|
||||
/usr/include/linux/errno.h /usr/include/x86_64-linux-gnu/asm/errno.h \
|
||||
/usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-logs.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-dll2.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-map.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-fault-injection.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-backtrace.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-timeout-timer.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-cache-ttl.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-smd.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-state.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-retry.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-adopt.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-network-helper.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-metrics.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-ota.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-system.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-ws-close.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-callbacks.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-ws-state.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-ws-ext.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-protocols-plugins.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-context-vhost.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-conmon.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-client.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-http.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-spa.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-purify.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-misc.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-dsh.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-service.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-write.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-writeable.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-ring.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-sha1-base64.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-x509.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-cgi.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-vfs.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-gencrypto.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-lejp.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-lecp.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-cose.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-struct.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-threadpool.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-tokenize.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-lwsac.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-fts.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-diskcache.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-secure-streams.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-secure-streams-serialization.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-secure-streams-policy.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-secure-streams-client.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-secure-streams-transport-proxy.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-jrpc.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-async-dns.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-tls-sessions.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-genhash.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-genrsa.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-genaes.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-genec.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-jwk.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-jose.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-jws.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-jwe.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-eventlib-exports.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-i2c.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-spi.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-gpio.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-bb-i2c.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-bb-spi.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-button.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-led.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-pwm.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-upng.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-jpeg.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-display.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-dlo.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-ssd1306-i2c.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-ili9341-spi.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-spd1656-spi.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-uc8176-spi.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-ssd1675b-spi.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-settings.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-netdev.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-html.h \
|
||||
/usr/include/signal.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/signum-generic.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/signum-arch.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/sig_atomic_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/siginfo_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__sigval_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/siginfo-arch.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/siginfo-consts.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/sigval_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/sigevent_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/sigevent-consts.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/sigaction.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/sigcontext.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/stack_t.h \
|
||||
/usr/include/x86_64-linux-gnu/sys/ucontext.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/sigstack.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/sigstksz.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/ss_flags.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_sigstack.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/sigthread.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/signal_ext.h
|
@ -0,0 +1 @@
|
||||
/usr/bin/cc -Wno-deprecated-declarations -Wno-deprecated -Wall -Wextra -Wno-unused-parameter -Wconversion -Wsign-compare -Wstrict-aliasing -fvisibility=hidden -Wundef -Wuninitialized -Wtype-limits -Wignored-qualifiers -Werror -pthread "CMakeFiles/lws-minimal-ss-http-post.dir/main.c.o" "CMakeFiles/lws-minimal-ss-http-post.dir/http-post-ss.c.o" -o ../../../bin/lws-minimal-ss-http-post -lpthread /usr/lib/x86_64-linux-gnu/libcap.so -lm -lcap -ldl ../../../lib/libwebsockets.a -lpthread /usr/lib/x86_64-linux-gnu/libcap.so -lm -lcap -ldl /usr/lib/x86_64-linux-gnu/libssl.so /usr/lib/x86_64-linux-gnu/libcrypto.so -lpthread /usr/lib/x86_64-linux-gnu/libcap.so
|
Binary file not shown.
@ -0,0 +1,252 @@
|
||||
minimal-examples/client/http-post/CMakeFiles/lws-minimal-ss-http-post.dir/main.c.o: \
|
||||
/home/onek8/Development/libwebsockets/minimal-examples/client/http-post/main.c \
|
||||
/usr/include/stdc-predef.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/14/include/stdarg.h \
|
||||
/home/onek8/Development/libwebsockets/build/lws_config.h \
|
||||
/usr/include/x86_64-linux-gnu/sys/types.h /usr/include/features.h \
|
||||
/usr/include/features-time64.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/wordsize.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/timesize.h \
|
||||
/usr/include/x86_64-linux-gnu/sys/cdefs.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/long-double.h \
|
||||
/usr/include/x86_64-linux-gnu/gnu/stubs.h \
|
||||
/usr/include/x86_64-linux-gnu/gnu/stubs-64.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/typesizes.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/time64.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/clock_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/time_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/timer_t.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/14/include/stddef.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/stdint-intn.h /usr/include/endian.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/endian.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/endianness.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/byteswap.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/uintn-identity.h \
|
||||
/usr/include/x86_64-linux-gnu/sys/select.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/select.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/struct_mutex.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/struct_rwlock.h \
|
||||
/usr/include/net/ethernet.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/14/include/stdint.h /usr/include/stdint.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/libc-header-start.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/wchar.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/stdint-least.h \
|
||||
/usr/include/linux/if_ether.h /usr/include/linux/types.h \
|
||||
/usr/include/x86_64-linux-gnu/asm/types.h \
|
||||
/usr/include/asm-generic/types.h /usr/include/asm-generic/int-ll64.h \
|
||||
/usr/include/x86_64-linux-gnu/asm/bitsperlong.h \
|
||||
/usr/include/asm-generic/bitsperlong.h /usr/include/linux/posix_types.h \
|
||||
/usr/include/linux/stddef.h \
|
||||
/usr/include/x86_64-linux-gnu/asm/posix_types.h \
|
||||
/usr/include/x86_64-linux-gnu/asm/posix_types_64.h \
|
||||
/usr/include/asm-generic/posix_types.h /usr/include/string.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/locale_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \
|
||||
/usr/include/strings.h /usr/include/stdlib.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/waitflags.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/waitstatus.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/floatn.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/floatn-common.h /usr/include/alloca.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/stdlib-float.h /usr/include/unistd.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/posix_opt.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/environments.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/confname.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/getopt_posix.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/getopt_core.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/unistd_ext.h \
|
||||
/usr/include/sys/capability.h /usr/include/linux/capability.h \
|
||||
/usr/include/poll.h /usr/include/x86_64-linux-gnu/sys/poll.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/poll.h /usr/include/netdb.h \
|
||||
/usr/include/netinet/in.h /usr/include/x86_64-linux-gnu/sys/socket.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_iovec.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/socket.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/socket_type.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/sockaddr.h \
|
||||
/usr/include/x86_64-linux-gnu/asm/socket.h \
|
||||
/usr/include/asm-generic/socket.h \
|
||||
/usr/include/x86_64-linux-gnu/asm/sockios.h \
|
||||
/usr/include/asm-generic/sockios.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_osockaddr.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/in.h /usr/include/rpc/netdb.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/netdb.h \
|
||||
/usr/include/x86_64-linux-gnu/sys/time.h /usr/include/openssl/ssl.h \
|
||||
/usr/include/openssl/macros.h \
|
||||
/usr/include/x86_64-linux-gnu/openssl/opensslconf.h \
|
||||
/usr/include/x86_64-linux-gnu/openssl/configuration.h \
|
||||
/usr/include/openssl/opensslv.h /usr/include/openssl/e_os2.h \
|
||||
/usr/include/inttypes.h /usr/include/openssl/e_ostime.h \
|
||||
/usr/include/openssl/comp.h /usr/include/openssl/crypto.h \
|
||||
/usr/include/time.h /usr/include/x86_64-linux-gnu/bits/time.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_tm.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_itimerspec.h \
|
||||
/usr/include/stdio.h /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__FILE.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/FILE.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/stdio_lim.h \
|
||||
/usr/include/openssl/safestack.h /usr/include/openssl/stack.h \
|
||||
/usr/include/openssl/types.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/14/include/limits.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/14/include/syslimits.h \
|
||||
/usr/include/limits.h /usr/include/x86_64-linux-gnu/bits/posix1_lim.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/local_lim.h \
|
||||
/usr/include/linux/limits.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/pthread_stack_min-dynamic.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/pthread_stack_min.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/posix2_lim.h \
|
||||
/usr/include/openssl/cryptoerr.h /usr/include/openssl/symhacks.h \
|
||||
/usr/include/openssl/cryptoerr_legacy.h /usr/include/openssl/core.h \
|
||||
/usr/include/pthread.h /usr/include/sched.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/sched.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_sched_param.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/cpu-set.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/setjmp.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct___jmp_buf_tag.h \
|
||||
/usr/include/openssl/comperr.h /usr/include/openssl/bio.h \
|
||||
/usr/include/openssl/bioerr.h /usr/include/openssl/x509.h \
|
||||
/usr/include/openssl/buffer.h /usr/include/openssl/buffererr.h \
|
||||
/usr/include/openssl/evp.h /usr/include/openssl/core_dispatch.h \
|
||||
/usr/include/openssl/evperr.h /usr/include/openssl/params.h \
|
||||
/usr/include/openssl/bn.h /usr/include/openssl/bnerr.h \
|
||||
/usr/include/openssl/objects.h /usr/include/openssl/obj_mac.h \
|
||||
/usr/include/openssl/asn1.h /usr/include/openssl/asn1err.h \
|
||||
/usr/include/openssl/objectserr.h /usr/include/openssl/ec.h \
|
||||
/usr/include/openssl/ecerr.h /usr/include/openssl/rsa.h \
|
||||
/usr/include/openssl/rsaerr.h /usr/include/openssl/dsa.h \
|
||||
/usr/include/openssl/dh.h /usr/include/openssl/dherr.h \
|
||||
/usr/include/openssl/dsaerr.h /usr/include/openssl/sha.h \
|
||||
/usr/include/openssl/x509err.h /usr/include/openssl/x509_vfy.h \
|
||||
/usr/include/openssl/lhash.h /usr/include/openssl/pkcs7.h \
|
||||
/usr/include/openssl/pkcs7err.h /usr/include/openssl/http.h \
|
||||
/usr/include/openssl/conf.h /usr/include/openssl/conferr.h \
|
||||
/usr/include/openssl/conftypes.h /usr/include/openssl/pem.h \
|
||||
/usr/include/openssl/pemerr.h /usr/include/openssl/hmac.h \
|
||||
/usr/include/openssl/async.h /usr/include/openssl/asyncerr.h \
|
||||
/usr/include/openssl/ct.h /usr/include/openssl/cterr.h \
|
||||
/usr/include/openssl/sslerr.h /usr/include/openssl/sslerr_legacy.h \
|
||||
/usr/include/openssl/prov_ssl.h /usr/include/openssl/ssl2.h \
|
||||
/usr/include/openssl/ssl3.h /usr/include/openssl/tls1.h \
|
||||
/usr/include/openssl/dtls1.h /usr/include/openssl/srtp.h \
|
||||
/usr/include/openssl/quic.h /usr/include/openssl/err.h \
|
||||
/usr/include/errno.h /usr/include/x86_64-linux-gnu/bits/errno.h \
|
||||
/usr/include/linux/errno.h /usr/include/x86_64-linux-gnu/asm/errno.h \
|
||||
/usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-logs.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-dll2.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-map.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-fault-injection.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-backtrace.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-timeout-timer.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-cache-ttl.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-smd.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-state.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-retry.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-adopt.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-network-helper.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-metrics.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-ota.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-system.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-ws-close.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-callbacks.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-ws-state.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-ws-ext.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-protocols-plugins.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-context-vhost.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-conmon.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-client.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-http.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-spa.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-purify.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-misc.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-dsh.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-service.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-write.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-writeable.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-ring.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-sha1-base64.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-x509.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-cgi.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-vfs.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-gencrypto.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-lejp.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-lecp.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-cose.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-struct.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-threadpool.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-tokenize.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-lwsac.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-fts.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-diskcache.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-secure-streams.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-secure-streams-serialization.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-secure-streams-policy.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-secure-streams-client.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-secure-streams-transport-proxy.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-jrpc.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-async-dns.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-tls-sessions.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-genhash.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-genrsa.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-genaes.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-genec.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-jwk.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-jose.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-jws.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-jwe.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-eventlib-exports.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-i2c.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-spi.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-gpio.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-bb-i2c.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-bb-spi.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-button.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-led.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-pwm.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-upng.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-jpeg.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-display.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-dlo.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-ssd1306-i2c.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-ili9341-spi.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-spd1656-spi.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-uc8176-spi.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-ssd1675b-spi.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-settings.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-netdev.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-html.h \
|
||||
/usr/include/signal.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/signum-generic.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/signum-arch.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/sig_atomic_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/siginfo_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__sigval_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/siginfo-arch.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/siginfo-consts.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/sigval_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/sigevent_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/sigevent-consts.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/sigaction.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/sigcontext.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/stack_t.h \
|
||||
/usr/include/x86_64-linux-gnu/sys/ucontext.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/sigstack.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/sigstksz.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/ss_flags.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_sigstack.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/sigthread.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/signal_ext.h
|
@ -0,0 +1,4 @@
|
||||
CMAKE_PROGRESS_1 = 34
|
||||
CMAKE_PROGRESS_2 =
|
||||
CMAKE_PROGRESS_3 =
|
||||
|
@ -0,0 +1 @@
|
||||
28
|
@ -0,0 +1,8 @@
|
||||
# CMake generated Testfile for
|
||||
# Source directory: /home/onek8/Development/libwebsockets/minimal-examples/client/http-post
|
||||
# Build directory: /home/onek8/Development/libwebsockets/build/minimal-examples/client/http-post
|
||||
#
|
||||
# This file includes the relevant testing commands required for
|
||||
# testing this directory and lists subdirectories to be tested as well.
|
||||
add_test(msshttp-post-warmcat "/home/onek8/Development/libwebsockets/build/bin/lws-minimal-ss-http-post")
|
||||
set_tests_properties(msshttp-post-warmcat PROPERTIES TIMEOUT "40" WORKING_DIRECTORY "/home/onek8/Development/libwebsockets/minimal-examples/client/http-post" _BACKTRACE_TRIPLES "/home/onek8/Development/libwebsockets/minimal-examples/client/http-post/CMakeLists.txt;90;add_test;/home/onek8/Development/libwebsockets/minimal-examples/client/http-post/CMakeLists.txt;0;")
|
@ -0,0 +1,291 @@
|
||||
# CMAKE generated file: DO NOT EDIT!
|
||||
# Generated by "Unix Makefiles" Generator, CMake Version 3.30
|
||||
|
||||
# Default target executed when no arguments are given to make.
|
||||
default_target: all
|
||||
.PHONY : default_target
|
||||
|
||||
# Allow only one "make -f Makefile2" at a time, but pass parallelism.
|
||||
.NOTPARALLEL:
|
||||
|
||||
#=============================================================================
|
||||
# Special targets provided by cmake.
|
||||
|
||||
# Disable implicit rules so canonical targets will work.
|
||||
.SUFFIXES:
|
||||
|
||||
# Disable VCS-based implicit rules.
|
||||
% : %,v
|
||||
|
||||
# Disable VCS-based implicit rules.
|
||||
% : RCS/%
|
||||
|
||||
# Disable VCS-based implicit rules.
|
||||
% : RCS/%,v
|
||||
|
||||
# Disable VCS-based implicit rules.
|
||||
% : SCCS/s.%
|
||||
|
||||
# Disable VCS-based implicit rules.
|
||||
% : s.%
|
||||
|
||||
.SUFFIXES: .hpux_make_needs_suffix_list
|
||||
|
||||
# Command-line flag to silence nested $(MAKE).
|
||||
$(VERBOSE)MAKESILENT = -s
|
||||
|
||||
#Suppress display of executed commands.
|
||||
$(VERBOSE).SILENT:
|
||||
|
||||
# A target that is always out of date.
|
||||
cmake_force:
|
||||
.PHONY : cmake_force
|
||||
|
||||
#=============================================================================
|
||||
# Set environment variables for the build.
|
||||
|
||||
# The shell in which to execute make rules.
|
||||
SHELL = /bin/sh
|
||||
|
||||
# The CMake executable.
|
||||
CMAKE_COMMAND = /usr/bin/cmake
|
||||
|
||||
# The command to remove a file.
|
||||
RM = /usr/bin/cmake -E rm -f
|
||||
|
||||
# Escaping for special characters.
|
||||
EQUALS = =
|
||||
|
||||
# The top-level source directory on which CMake was run.
|
||||
CMAKE_SOURCE_DIR = /home/onek8/Development/libwebsockets
|
||||
|
||||
# The top-level build directory on which CMake was run.
|
||||
CMAKE_BINARY_DIR = /home/onek8/Development/libwebsockets/build
|
||||
|
||||
#=============================================================================
|
||||
# Targets provided globally by CMake.
|
||||
|
||||
# Special rule for the target package
|
||||
package: preinstall
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Run CPack packaging tool..."
|
||||
cd /home/onek8/Development/libwebsockets/build && /usr/bin/cpack --config ./CPackConfig.cmake
|
||||
.PHONY : package
|
||||
|
||||
# Special rule for the target package
|
||||
package/fast: package
|
||||
.PHONY : package/fast
|
||||
|
||||
# Special rule for the target package_source
|
||||
package_source:
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Run CPack packaging tool for source..."
|
||||
cd /home/onek8/Development/libwebsockets/build && /usr/bin/cpack --config ./CPackSourceConfig.cmake /home/onek8/Development/libwebsockets/build/CPackSourceConfig.cmake
|
||||
.PHONY : package_source
|
||||
|
||||
# Special rule for the target package_source
|
||||
package_source/fast: package_source
|
||||
.PHONY : package_source/fast
|
||||
|
||||
# Special rule for the target test
|
||||
test:
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Running tests..."
|
||||
/usr/bin/ctest --force-new-ctest-process $(ARGS)
|
||||
.PHONY : test
|
||||
|
||||
# Special rule for the target test
|
||||
test/fast: test
|
||||
.PHONY : test/fast
|
||||
|
||||
# Special rule for the target edit_cache
|
||||
edit_cache:
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Running CMake cache editor..."
|
||||
/usr/bin/ccmake -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR)
|
||||
.PHONY : edit_cache
|
||||
|
||||
# Special rule for the target edit_cache
|
||||
edit_cache/fast: edit_cache
|
||||
.PHONY : edit_cache/fast
|
||||
|
||||
# Special rule for the target rebuild_cache
|
||||
rebuild_cache:
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Running CMake to regenerate build system..."
|
||||
/usr/bin/cmake --regenerate-during-build -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR)
|
||||
.PHONY : rebuild_cache
|
||||
|
||||
# Special rule for the target rebuild_cache
|
||||
rebuild_cache/fast: rebuild_cache
|
||||
.PHONY : rebuild_cache/fast
|
||||
|
||||
# Special rule for the target list_install_components
|
||||
list_install_components:
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Available install components are: \"Unspecified\" \"core\" \"dev\" \"examples\""
|
||||
.PHONY : list_install_components
|
||||
|
||||
# Special rule for the target list_install_components
|
||||
list_install_components/fast: list_install_components
|
||||
.PHONY : list_install_components/fast
|
||||
|
||||
# Special rule for the target install
|
||||
install: preinstall
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Install the project..."
|
||||
/usr/bin/cmake -P cmake_install.cmake
|
||||
.PHONY : install
|
||||
|
||||
# Special rule for the target install
|
||||
install/fast: preinstall/fast
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Install the project..."
|
||||
/usr/bin/cmake -P cmake_install.cmake
|
||||
.PHONY : install/fast
|
||||
|
||||
# Special rule for the target install/local
|
||||
install/local: preinstall
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing only the local directory..."
|
||||
/usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake
|
||||
.PHONY : install/local
|
||||
|
||||
# Special rule for the target install/local
|
||||
install/local/fast: preinstall/fast
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing only the local directory..."
|
||||
/usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake
|
||||
.PHONY : install/local/fast
|
||||
|
||||
# Special rule for the target install/strip
|
||||
install/strip: preinstall
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing the project stripped..."
|
||||
/usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake
|
||||
.PHONY : install/strip
|
||||
|
||||
# Special rule for the target install/strip
|
||||
install/strip/fast: preinstall/fast
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing the project stripped..."
|
||||
/usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake
|
||||
.PHONY : install/strip/fast
|
||||
|
||||
# The main all target
|
||||
all: cmake_check_build_system
|
||||
cd /home/onek8/Development/libwebsockets/build && $(CMAKE_COMMAND) -E cmake_progress_start /home/onek8/Development/libwebsockets/build/CMakeFiles /home/onek8/Development/libwebsockets/build/minimal-examples/client/http-post//CMakeFiles/progress.marks
|
||||
cd /home/onek8/Development/libwebsockets/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 minimal-examples/client/http-post/all
|
||||
$(CMAKE_COMMAND) -E cmake_progress_start /home/onek8/Development/libwebsockets/build/CMakeFiles 0
|
||||
.PHONY : all
|
||||
|
||||
# The main clean target
|
||||
clean:
|
||||
cd /home/onek8/Development/libwebsockets/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 minimal-examples/client/http-post/clean
|
||||
.PHONY : clean
|
||||
|
||||
# The main clean target
|
||||
clean/fast: clean
|
||||
.PHONY : clean/fast
|
||||
|
||||
# Prepare targets for installation.
|
||||
preinstall: all
|
||||
cd /home/onek8/Development/libwebsockets/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 minimal-examples/client/http-post/preinstall
|
||||
.PHONY : preinstall
|
||||
|
||||
# Prepare targets for installation.
|
||||
preinstall/fast:
|
||||
cd /home/onek8/Development/libwebsockets/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 minimal-examples/client/http-post/preinstall
|
||||
.PHONY : preinstall/fast
|
||||
|
||||
# clear depends
|
||||
depend:
|
||||
cd /home/onek8/Development/libwebsockets/build && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1
|
||||
.PHONY : depend
|
||||
|
||||
# Convenience name for target.
|
||||
minimal-examples/client/http-post/CMakeFiles/lws-minimal-ss-http-post.dir/rule:
|
||||
cd /home/onek8/Development/libwebsockets/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 minimal-examples/client/http-post/CMakeFiles/lws-minimal-ss-http-post.dir/rule
|
||||
.PHONY : minimal-examples/client/http-post/CMakeFiles/lws-minimal-ss-http-post.dir/rule
|
||||
|
||||
# Convenience name for target.
|
||||
lws-minimal-ss-http-post: minimal-examples/client/http-post/CMakeFiles/lws-minimal-ss-http-post.dir/rule
|
||||
.PHONY : lws-minimal-ss-http-post
|
||||
|
||||
# fast build rule for target.
|
||||
lws-minimal-ss-http-post/fast:
|
||||
cd /home/onek8/Development/libwebsockets/build && $(MAKE) $(MAKESILENT) -f minimal-examples/client/http-post/CMakeFiles/lws-minimal-ss-http-post.dir/build.make minimal-examples/client/http-post/CMakeFiles/lws-minimal-ss-http-post.dir/build
|
||||
.PHONY : lws-minimal-ss-http-post/fast
|
||||
|
||||
http-post-ss.o: http-post-ss.c.o
|
||||
.PHONY : http-post-ss.o
|
||||
|
||||
# target to build an object file
|
||||
http-post-ss.c.o:
|
||||
cd /home/onek8/Development/libwebsockets/build && $(MAKE) $(MAKESILENT) -f minimal-examples/client/http-post/CMakeFiles/lws-minimal-ss-http-post.dir/build.make minimal-examples/client/http-post/CMakeFiles/lws-minimal-ss-http-post.dir/http-post-ss.c.o
|
||||
.PHONY : http-post-ss.c.o
|
||||
|
||||
http-post-ss.i: http-post-ss.c.i
|
||||
.PHONY : http-post-ss.i
|
||||
|
||||
# target to preprocess a source file
|
||||
http-post-ss.c.i:
|
||||
cd /home/onek8/Development/libwebsockets/build && $(MAKE) $(MAKESILENT) -f minimal-examples/client/http-post/CMakeFiles/lws-minimal-ss-http-post.dir/build.make minimal-examples/client/http-post/CMakeFiles/lws-minimal-ss-http-post.dir/http-post-ss.c.i
|
||||
.PHONY : http-post-ss.c.i
|
||||
|
||||
http-post-ss.s: http-post-ss.c.s
|
||||
.PHONY : http-post-ss.s
|
||||
|
||||
# target to generate assembly for a file
|
||||
http-post-ss.c.s:
|
||||
cd /home/onek8/Development/libwebsockets/build && $(MAKE) $(MAKESILENT) -f minimal-examples/client/http-post/CMakeFiles/lws-minimal-ss-http-post.dir/build.make minimal-examples/client/http-post/CMakeFiles/lws-minimal-ss-http-post.dir/http-post-ss.c.s
|
||||
.PHONY : http-post-ss.c.s
|
||||
|
||||
main.o: main.c.o
|
||||
.PHONY : main.o
|
||||
|
||||
# target to build an object file
|
||||
main.c.o:
|
||||
cd /home/onek8/Development/libwebsockets/build && $(MAKE) $(MAKESILENT) -f minimal-examples/client/http-post/CMakeFiles/lws-minimal-ss-http-post.dir/build.make minimal-examples/client/http-post/CMakeFiles/lws-minimal-ss-http-post.dir/main.c.o
|
||||
.PHONY : main.c.o
|
||||
|
||||
main.i: main.c.i
|
||||
.PHONY : main.i
|
||||
|
||||
# target to preprocess a source file
|
||||
main.c.i:
|
||||
cd /home/onek8/Development/libwebsockets/build && $(MAKE) $(MAKESILENT) -f minimal-examples/client/http-post/CMakeFiles/lws-minimal-ss-http-post.dir/build.make minimal-examples/client/http-post/CMakeFiles/lws-minimal-ss-http-post.dir/main.c.i
|
||||
.PHONY : main.c.i
|
||||
|
||||
main.s: main.c.s
|
||||
.PHONY : main.s
|
||||
|
||||
# target to generate assembly for a file
|
||||
main.c.s:
|
||||
cd /home/onek8/Development/libwebsockets/build && $(MAKE) $(MAKESILENT) -f minimal-examples/client/http-post/CMakeFiles/lws-minimal-ss-http-post.dir/build.make minimal-examples/client/http-post/CMakeFiles/lws-minimal-ss-http-post.dir/main.c.s
|
||||
.PHONY : main.c.s
|
||||
|
||||
# Help Target
|
||||
help:
|
||||
@echo "The following are some of the valid targets for this Makefile:"
|
||||
@echo "... all (the default if no target is provided)"
|
||||
@echo "... clean"
|
||||
@echo "... depend"
|
||||
@echo "... edit_cache"
|
||||
@echo "... install"
|
||||
@echo "... install/local"
|
||||
@echo "... install/strip"
|
||||
@echo "... list_install_components"
|
||||
@echo "... package"
|
||||
@echo "... package_source"
|
||||
@echo "... rebuild_cache"
|
||||
@echo "... test"
|
||||
@echo "... lws-minimal-ss-http-post"
|
||||
@echo "... http-post-ss.o"
|
||||
@echo "... http-post-ss.i"
|
||||
@echo "... http-post-ss.s"
|
||||
@echo "... main.o"
|
||||
@echo "... main.i"
|
||||
@echo "... main.s"
|
||||
.PHONY : help
|
||||
|
||||
|
||||
|
||||
#=============================================================================
|
||||
# Special targets to cleanup operation of make.
|
||||
|
||||
# Special rule to run CMake to check the build system integrity.
|
||||
# No rule that depends on this can have commands that come from listfiles
|
||||
# because they might be regenerated.
|
||||
cmake_check_build_system:
|
||||
cd /home/onek8/Development/libwebsockets/build && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0
|
||||
.PHONY : cmake_check_build_system
|
||||
|
@ -0,0 +1,44 @@
|
||||
# Install script for directory: /home/onek8/Development/libwebsockets/minimal-examples/client/http-post
|
||||
|
||||
# Set the install prefix
|
||||
if(NOT DEFINED CMAKE_INSTALL_PREFIX)
|
||||
set(CMAKE_INSTALL_PREFIX "/usr/local")
|
||||
endif()
|
||||
string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")
|
||||
|
||||
# Set the install configuration name.
|
||||
if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
|
||||
if(BUILD_TYPE)
|
||||
string(REGEX REPLACE "^[^A-Za-z0-9_]+" ""
|
||||
CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}")
|
||||
else()
|
||||
set(CMAKE_INSTALL_CONFIG_NAME "")
|
||||
endif()
|
||||
message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
|
||||
endif()
|
||||
|
||||
# Set the component getting installed.
|
||||
if(NOT CMAKE_INSTALL_COMPONENT)
|
||||
if(COMPONENT)
|
||||
message(STATUS "Install component: \"${COMPONENT}\"")
|
||||
set(CMAKE_INSTALL_COMPONENT "${COMPONENT}")
|
||||
else()
|
||||
set(CMAKE_INSTALL_COMPONENT)
|
||||
endif()
|
||||
endif()
|
||||
|
||||
# Install shared libraries without execute permission?
|
||||
if(NOT DEFINED CMAKE_INSTALL_SO_NO_EXE)
|
||||
set(CMAKE_INSTALL_SO_NO_EXE "1")
|
||||
endif()
|
||||
|
||||
# Is this installation the result of a crosscompile?
|
||||
if(NOT DEFINED CMAKE_CROSSCOMPILING)
|
||||
set(CMAKE_CROSSCOMPILING "FALSE")
|
||||
endif()
|
||||
|
||||
# Set path to fallback-tool for dependency-resolution.
|
||||
if(NOT DEFINED CMAKE_OBJDUMP)
|
||||
set(CMAKE_OBJDUMP "/usr/bin/objdump")
|
||||
endif()
|
||||
|
@ -0,0 +1,16 @@
|
||||
# CMAKE generated file: DO NOT EDIT!
|
||||
# Generated by "Unix Makefiles" Generator, CMake Version 3.30
|
||||
|
||||
# Relative path conversion top directories.
|
||||
set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/home/onek8/Development/libwebsockets")
|
||||
set(CMAKE_RELATIVE_PATH_TOP_BINARY "/home/onek8/Development/libwebsockets/build")
|
||||
|
||||
# Force unix paths in dependencies.
|
||||
set(CMAKE_FORCE_UNIX_PATHS 1)
|
||||
|
||||
|
||||
# The C and CXX include file regular expressions for this directory.
|
||||
set(CMAKE_C_INCLUDE_REGEX_SCAN "^.*$")
|
||||
set(CMAKE_C_INCLUDE_REGEX_COMPLAIN "^$")
|
||||
set(CMAKE_CXX_INCLUDE_REGEX_SCAN ${CMAKE_C_INCLUDE_REGEX_SCAN})
|
||||
set(CMAKE_CXX_INCLUDE_REGEX_COMPLAIN ${CMAKE_C_INCLUDE_REGEX_COMPLAIN})
|
@ -0,0 +1,24 @@
|
||||
|
||||
# Consider dependencies only in project.
|
||||
set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF)
|
||||
|
||||
# The set of languages for which implicit dependencies are needed:
|
||||
set(CMAKE_DEPENDS_LANGUAGES
|
||||
)
|
||||
|
||||
# The set of dependency files which are needed:
|
||||
set(CMAKE_DEPENDS_DEPENDENCY_FILES
|
||||
"/home/onek8/Development/libwebsockets/minimal-examples/client/ws-echo/main.c" "minimal-examples/client/ws-echo/CMakeFiles/lws-minimal-ss-ws-echo.dir/main.c.o" "gcc" "minimal-examples/client/ws-echo/CMakeFiles/lws-minimal-ss-ws-echo.dir/main.c.o.d"
|
||||
"/home/onek8/Development/libwebsockets/minimal-examples/client/ws-echo/ws-echo-ss.c" "minimal-examples/client/ws-echo/CMakeFiles/lws-minimal-ss-ws-echo.dir/ws-echo-ss.c.o" "gcc" "minimal-examples/client/ws-echo/CMakeFiles/lws-minimal-ss-ws-echo.dir/ws-echo-ss.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 "")
|
@ -0,0 +1,132 @@
|
||||
# CMAKE generated file: DO NOT EDIT!
|
||||
# Generated by "Unix Makefiles" Generator, CMake Version 3.30
|
||||
|
||||
# Delete rule output on recipe failure.
|
||||
.DELETE_ON_ERROR:
|
||||
|
||||
#=============================================================================
|
||||
# Special targets provided by cmake.
|
||||
|
||||
# Disable implicit rules so canonical targets will work.
|
||||
.SUFFIXES:
|
||||
|
||||
# Disable VCS-based implicit rules.
|
||||
% : %,v
|
||||
|
||||
# Disable VCS-based implicit rules.
|
||||
% : RCS/%
|
||||
|
||||
# Disable VCS-based implicit rules.
|
||||
% : RCS/%,v
|
||||
|
||||
# Disable VCS-based implicit rules.
|
||||
% : SCCS/s.%
|
||||
|
||||
# Disable VCS-based implicit rules.
|
||||
% : s.%
|
||||
|
||||
.SUFFIXES: .hpux_make_needs_suffix_list
|
||||
|
||||
# Command-line flag to silence nested $(MAKE).
|
||||
$(VERBOSE)MAKESILENT = -s
|
||||
|
||||
#Suppress display of executed commands.
|
||||
$(VERBOSE).SILENT:
|
||||
|
||||
# A target that is always out of date.
|
||||
cmake_force:
|
||||
.PHONY : cmake_force
|
||||
|
||||
#=============================================================================
|
||||
# Set environment variables for the build.
|
||||
|
||||
# The shell in which to execute make rules.
|
||||
SHELL = /bin/sh
|
||||
|
||||
# The CMake executable.
|
||||
CMAKE_COMMAND = /usr/bin/cmake
|
||||
|
||||
# The command to remove a file.
|
||||
RM = /usr/bin/cmake -E rm -f
|
||||
|
||||
# Escaping for special characters.
|
||||
EQUALS = =
|
||||
|
||||
# The top-level source directory on which CMake was run.
|
||||
CMAKE_SOURCE_DIR = /home/onek8/Development/libwebsockets
|
||||
|
||||
# The top-level build directory on which CMake was run.
|
||||
CMAKE_BINARY_DIR = /home/onek8/Development/libwebsockets/build
|
||||
|
||||
# Include any dependencies generated for this target.
|
||||
include minimal-examples/client/ws-echo/CMakeFiles/lws-minimal-ss-ws-echo.dir/depend.make
|
||||
# Include any dependencies generated by the compiler for this target.
|
||||
include minimal-examples/client/ws-echo/CMakeFiles/lws-minimal-ss-ws-echo.dir/compiler_depend.make
|
||||
|
||||
# Include the progress variables for this target.
|
||||
include minimal-examples/client/ws-echo/CMakeFiles/lws-minimal-ss-ws-echo.dir/progress.make
|
||||
|
||||
# Include the compile flags for this target's objects.
|
||||
include minimal-examples/client/ws-echo/CMakeFiles/lws-minimal-ss-ws-echo.dir/flags.make
|
||||
|
||||
minimal-examples/client/ws-echo/CMakeFiles/lws-minimal-ss-ws-echo.dir/main.c.o: minimal-examples/client/ws-echo/CMakeFiles/lws-minimal-ss-ws-echo.dir/flags.make
|
||||
minimal-examples/client/ws-echo/CMakeFiles/lws-minimal-ss-ws-echo.dir/main.c.o: /home/onek8/Development/libwebsockets/minimal-examples/client/ws-echo/main.c
|
||||
minimal-examples/client/ws-echo/CMakeFiles/lws-minimal-ss-ws-echo.dir/main.c.o: minimal-examples/client/ws-echo/CMakeFiles/lws-minimal-ss-ws-echo.dir/compiler_depend.ts
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/onek8/Development/libwebsockets/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building C object minimal-examples/client/ws-echo/CMakeFiles/lws-minimal-ss-ws-echo.dir/main.c.o"
|
||||
cd /home/onek8/Development/libwebsockets/build/minimal-examples/client/ws-echo && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT minimal-examples/client/ws-echo/CMakeFiles/lws-minimal-ss-ws-echo.dir/main.c.o -MF CMakeFiles/lws-minimal-ss-ws-echo.dir/main.c.o.d -o CMakeFiles/lws-minimal-ss-ws-echo.dir/main.c.o -c /home/onek8/Development/libwebsockets/minimal-examples/client/ws-echo/main.c
|
||||
|
||||
minimal-examples/client/ws-echo/CMakeFiles/lws-minimal-ss-ws-echo.dir/main.c.i: cmake_force
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/lws-minimal-ss-ws-echo.dir/main.c.i"
|
||||
cd /home/onek8/Development/libwebsockets/build/minimal-examples/client/ws-echo && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/onek8/Development/libwebsockets/minimal-examples/client/ws-echo/main.c > CMakeFiles/lws-minimal-ss-ws-echo.dir/main.c.i
|
||||
|
||||
minimal-examples/client/ws-echo/CMakeFiles/lws-minimal-ss-ws-echo.dir/main.c.s: cmake_force
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/lws-minimal-ss-ws-echo.dir/main.c.s"
|
||||
cd /home/onek8/Development/libwebsockets/build/minimal-examples/client/ws-echo && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/onek8/Development/libwebsockets/minimal-examples/client/ws-echo/main.c -o CMakeFiles/lws-minimal-ss-ws-echo.dir/main.c.s
|
||||
|
||||
minimal-examples/client/ws-echo/CMakeFiles/lws-minimal-ss-ws-echo.dir/ws-echo-ss.c.o: minimal-examples/client/ws-echo/CMakeFiles/lws-minimal-ss-ws-echo.dir/flags.make
|
||||
minimal-examples/client/ws-echo/CMakeFiles/lws-minimal-ss-ws-echo.dir/ws-echo-ss.c.o: /home/onek8/Development/libwebsockets/minimal-examples/client/ws-echo/ws-echo-ss.c
|
||||
minimal-examples/client/ws-echo/CMakeFiles/lws-minimal-ss-ws-echo.dir/ws-echo-ss.c.o: minimal-examples/client/ws-echo/CMakeFiles/lws-minimal-ss-ws-echo.dir/compiler_depend.ts
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/onek8/Development/libwebsockets/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building C object minimal-examples/client/ws-echo/CMakeFiles/lws-minimal-ss-ws-echo.dir/ws-echo-ss.c.o"
|
||||
cd /home/onek8/Development/libwebsockets/build/minimal-examples/client/ws-echo && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT minimal-examples/client/ws-echo/CMakeFiles/lws-minimal-ss-ws-echo.dir/ws-echo-ss.c.o -MF CMakeFiles/lws-minimal-ss-ws-echo.dir/ws-echo-ss.c.o.d -o CMakeFiles/lws-minimal-ss-ws-echo.dir/ws-echo-ss.c.o -c /home/onek8/Development/libwebsockets/minimal-examples/client/ws-echo/ws-echo-ss.c
|
||||
|
||||
minimal-examples/client/ws-echo/CMakeFiles/lws-minimal-ss-ws-echo.dir/ws-echo-ss.c.i: cmake_force
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/lws-minimal-ss-ws-echo.dir/ws-echo-ss.c.i"
|
||||
cd /home/onek8/Development/libwebsockets/build/minimal-examples/client/ws-echo && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/onek8/Development/libwebsockets/minimal-examples/client/ws-echo/ws-echo-ss.c > CMakeFiles/lws-minimal-ss-ws-echo.dir/ws-echo-ss.c.i
|
||||
|
||||
minimal-examples/client/ws-echo/CMakeFiles/lws-minimal-ss-ws-echo.dir/ws-echo-ss.c.s: cmake_force
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/lws-minimal-ss-ws-echo.dir/ws-echo-ss.c.s"
|
||||
cd /home/onek8/Development/libwebsockets/build/minimal-examples/client/ws-echo && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/onek8/Development/libwebsockets/minimal-examples/client/ws-echo/ws-echo-ss.c -o CMakeFiles/lws-minimal-ss-ws-echo.dir/ws-echo-ss.c.s
|
||||
|
||||
# Object files for target lws-minimal-ss-ws-echo
|
||||
lws__minimal__ss__ws__echo_OBJECTS = \
|
||||
"CMakeFiles/lws-minimal-ss-ws-echo.dir/main.c.o" \
|
||||
"CMakeFiles/lws-minimal-ss-ws-echo.dir/ws-echo-ss.c.o"
|
||||
|
||||
# External object files for target lws-minimal-ss-ws-echo
|
||||
lws__minimal__ss__ws__echo_EXTERNAL_OBJECTS =
|
||||
|
||||
bin/lws-minimal-ss-ws-echo: minimal-examples/client/ws-echo/CMakeFiles/lws-minimal-ss-ws-echo.dir/main.c.o
|
||||
bin/lws-minimal-ss-ws-echo: minimal-examples/client/ws-echo/CMakeFiles/lws-minimal-ss-ws-echo.dir/ws-echo-ss.c.o
|
||||
bin/lws-minimal-ss-ws-echo: minimal-examples/client/ws-echo/CMakeFiles/lws-minimal-ss-ws-echo.dir/build.make
|
||||
bin/lws-minimal-ss-ws-echo: /usr/lib/x86_64-linux-gnu/libcap.so
|
||||
bin/lws-minimal-ss-ws-echo: lib/libwebsockets.a
|
||||
bin/lws-minimal-ss-ws-echo: /usr/lib/x86_64-linux-gnu/libcap.so
|
||||
bin/lws-minimal-ss-ws-echo: /usr/lib/x86_64-linux-gnu/libssl.so
|
||||
bin/lws-minimal-ss-ws-echo: /usr/lib/x86_64-linux-gnu/libcrypto.so
|
||||
bin/lws-minimal-ss-ws-echo: /usr/lib/x86_64-linux-gnu/libcap.so
|
||||
bin/lws-minimal-ss-ws-echo: minimal-examples/client/ws-echo/CMakeFiles/lws-minimal-ss-ws-echo.dir/link.txt
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --bold --progress-dir=/home/onek8/Development/libwebsockets/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Linking C executable ../../../bin/lws-minimal-ss-ws-echo"
|
||||
cd /home/onek8/Development/libwebsockets/build/minimal-examples/client/ws-echo && $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/lws-minimal-ss-ws-echo.dir/link.txt --verbose=$(VERBOSE)
|
||||
|
||||
# Rule to build all files generated by this target.
|
||||
minimal-examples/client/ws-echo/CMakeFiles/lws-minimal-ss-ws-echo.dir/build: bin/lws-minimal-ss-ws-echo
|
||||
.PHONY : minimal-examples/client/ws-echo/CMakeFiles/lws-minimal-ss-ws-echo.dir/build
|
||||
|
||||
minimal-examples/client/ws-echo/CMakeFiles/lws-minimal-ss-ws-echo.dir/clean:
|
||||
cd /home/onek8/Development/libwebsockets/build/minimal-examples/client/ws-echo && $(CMAKE_COMMAND) -P CMakeFiles/lws-minimal-ss-ws-echo.dir/cmake_clean.cmake
|
||||
.PHONY : minimal-examples/client/ws-echo/CMakeFiles/lws-minimal-ss-ws-echo.dir/clean
|
||||
|
||||
minimal-examples/client/ws-echo/CMakeFiles/lws-minimal-ss-ws-echo.dir/depend:
|
||||
cd /home/onek8/Development/libwebsockets/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/onek8/Development/libwebsockets /home/onek8/Development/libwebsockets/minimal-examples/client/ws-echo /home/onek8/Development/libwebsockets/build /home/onek8/Development/libwebsockets/build/minimal-examples/client/ws-echo /home/onek8/Development/libwebsockets/build/minimal-examples/client/ws-echo/CMakeFiles/lws-minimal-ss-ws-echo.dir/DependInfo.cmake "--color=$(COLOR)"
|
||||
.PHONY : minimal-examples/client/ws-echo/CMakeFiles/lws-minimal-ss-ws-echo.dir/depend
|
||||
|
@ -0,0 +1,13 @@
|
||||
file(REMOVE_RECURSE
|
||||
"../../../bin/lws-minimal-ss-ws-echo"
|
||||
"../../../bin/lws-minimal-ss-ws-echo.pdb"
|
||||
"CMakeFiles/lws-minimal-ss-ws-echo.dir/main.c.o"
|
||||
"CMakeFiles/lws-minimal-ss-ws-echo.dir/main.c.o.d"
|
||||
"CMakeFiles/lws-minimal-ss-ws-echo.dir/ws-echo-ss.c.o"
|
||||
"CMakeFiles/lws-minimal-ss-ws-echo.dir/ws-echo-ss.c.o.d"
|
||||
)
|
||||
|
||||
# Per-language clean rules from dependency scanning.
|
||||
foreach(lang C)
|
||||
include(CMakeFiles/lws-minimal-ss-ws-echo.dir/cmake_clean_${lang}.cmake OPTIONAL)
|
||||
endforeach()
|
@ -0,0 +1,2 @@
|
||||
# Empty compiler generated dependencies file for lws-minimal-ss-ws-echo.
|
||||
# This may be replaced when dependencies are built.
|
@ -0,0 +1,2 @@
|
||||
# CMAKE generated file: DO NOT EDIT!
|
||||
# Timestamp file for compiler generated dependencies management for lws-minimal-ss-ws-echo.
|
@ -0,0 +1,2 @@
|
||||
# Empty dependencies file for lws-minimal-ss-ws-echo.
|
||||
# This may be replaced when dependencies are built.
|
@ -0,0 +1,10 @@
|
||||
# CMAKE generated file: DO NOT EDIT!
|
||||
# Generated by "Unix Makefiles" Generator, CMake Version 3.30
|
||||
|
||||
# compile C with /usr/bin/cc
|
||||
C_DEFINES =
|
||||
|
||||
C_INCLUDES = -I/home/onek8/Development/libwebsockets/include -I/home/onek8/Development/libwebsockets/build -I/home/onek8/Development/libwebsockets/lib -I/home/onek8/Development/libwebsockets/lib/. -I/home/onek8/Development/libwebsockets/lib/plat/unix/. -I/home/onek8/Development/libwebsockets/lib/tls/. -I/home/onek8/Development/libwebsockets/lib/core/. -I/home/onek8/Development/libwebsockets/lib/misc/. -I/home/onek8/Development/libwebsockets/lib/misc/misc/jrpc -I/home/onek8/Development/libwebsockets/lib/system/./async-dns -I/home/onek8/Development/libwebsockets/lib/system/smd/. -I/home/onek8/Development/libwebsockets/lib/system/metrics/. -I/home/onek8/Development/libwebsockets/lib/core-net/. -I/home/onek8/Development/libwebsockets/lib/roles/. -I/home/onek8/Development/libwebsockets/lib/roles/http/. -I/home/onek8/Development/libwebsockets/lib/roles/http/./compression -I/home/onek8/Development/libwebsockets/lib/roles/h1/. -I/home/onek8/Development/libwebsockets/lib/roles/h2/. -I/home/onek8/Development/libwebsockets/lib/roles/ws/. -I/home/onek8/Development/libwebsockets/lib/roles/raw-skt/. -I/home/onek8/Development/libwebsockets/lib/roles/raw-file/. -I/home/onek8/Development/libwebsockets/lib/roles/listen/. -I/home/onek8/Development/libwebsockets/lib/secure-streams -I/home/onek8/Development/libwebsockets/lib/event-libs/. -I/home/onek8/Development/libwebsockets/lib/event-libs/poll/../poll -I/home/onek8/Development/libwebsockets/lib/secure-streams/. -I/home/onek8/Development/libwebsockets/lib/../include -I/home/onek8/Development/libwebsockets/build/lib/../include
|
||||
|
||||
C_FLAGS = -Wno-deprecated-declarations -Wno-deprecated -Wall -Wextra -Wno-unused-parameter -Wconversion -Wsign-compare -Wstrict-aliasing -fvisibility=hidden -Wundef -Wuninitialized -Wtype-limits -Wignored-qualifiers -Werror -pthread
|
||||
|
@ -0,0 +1 @@
|
||||
/usr/bin/cc -Wno-deprecated-declarations -Wno-deprecated -Wall -Wextra -Wno-unused-parameter -Wconversion -Wsign-compare -Wstrict-aliasing -fvisibility=hidden -Wundef -Wuninitialized -Wtype-limits -Wignored-qualifiers -Werror -pthread "CMakeFiles/lws-minimal-ss-ws-echo.dir/main.c.o" "CMakeFiles/lws-minimal-ss-ws-echo.dir/ws-echo-ss.c.o" -o ../../../bin/lws-minimal-ss-ws-echo -lpthread /usr/lib/x86_64-linux-gnu/libcap.so -lm -lcap -ldl ../../../lib/libwebsockets.a -lpthread /usr/lib/x86_64-linux-gnu/libcap.so -lm -lcap -ldl /usr/lib/x86_64-linux-gnu/libssl.so /usr/lib/x86_64-linux-gnu/libcrypto.so -lpthread /usr/lib/x86_64-linux-gnu/libcap.so
|
Binary file not shown.
@ -0,0 +1,252 @@
|
||||
minimal-examples/client/ws-echo/CMakeFiles/lws-minimal-ss-ws-echo.dir/main.c.o: \
|
||||
/home/onek8/Development/libwebsockets/minimal-examples/client/ws-echo/main.c \
|
||||
/usr/include/stdc-predef.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/14/include/stdarg.h \
|
||||
/home/onek8/Development/libwebsockets/build/lws_config.h \
|
||||
/usr/include/x86_64-linux-gnu/sys/types.h /usr/include/features.h \
|
||||
/usr/include/features-time64.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/wordsize.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/timesize.h \
|
||||
/usr/include/x86_64-linux-gnu/sys/cdefs.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/long-double.h \
|
||||
/usr/include/x86_64-linux-gnu/gnu/stubs.h \
|
||||
/usr/include/x86_64-linux-gnu/gnu/stubs-64.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/typesizes.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/time64.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/clock_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/time_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/timer_t.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/14/include/stddef.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/stdint-intn.h /usr/include/endian.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/endian.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/endianness.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/byteswap.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/uintn-identity.h \
|
||||
/usr/include/x86_64-linux-gnu/sys/select.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/select.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/struct_mutex.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/struct_rwlock.h \
|
||||
/usr/include/net/ethernet.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/14/include/stdint.h /usr/include/stdint.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/libc-header-start.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/wchar.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/stdint-least.h \
|
||||
/usr/include/linux/if_ether.h /usr/include/linux/types.h \
|
||||
/usr/include/x86_64-linux-gnu/asm/types.h \
|
||||
/usr/include/asm-generic/types.h /usr/include/asm-generic/int-ll64.h \
|
||||
/usr/include/x86_64-linux-gnu/asm/bitsperlong.h \
|
||||
/usr/include/asm-generic/bitsperlong.h /usr/include/linux/posix_types.h \
|
||||
/usr/include/linux/stddef.h \
|
||||
/usr/include/x86_64-linux-gnu/asm/posix_types.h \
|
||||
/usr/include/x86_64-linux-gnu/asm/posix_types_64.h \
|
||||
/usr/include/asm-generic/posix_types.h /usr/include/string.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/locale_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \
|
||||
/usr/include/strings.h /usr/include/stdlib.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/waitflags.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/waitstatus.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/floatn.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/floatn-common.h /usr/include/alloca.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/stdlib-float.h /usr/include/unistd.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/posix_opt.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/environments.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/confname.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/getopt_posix.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/getopt_core.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/unistd_ext.h \
|
||||
/usr/include/sys/capability.h /usr/include/linux/capability.h \
|
||||
/usr/include/poll.h /usr/include/x86_64-linux-gnu/sys/poll.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/poll.h /usr/include/netdb.h \
|
||||
/usr/include/netinet/in.h /usr/include/x86_64-linux-gnu/sys/socket.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_iovec.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/socket.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/socket_type.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/sockaddr.h \
|
||||
/usr/include/x86_64-linux-gnu/asm/socket.h \
|
||||
/usr/include/asm-generic/socket.h \
|
||||
/usr/include/x86_64-linux-gnu/asm/sockios.h \
|
||||
/usr/include/asm-generic/sockios.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_osockaddr.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/in.h /usr/include/rpc/netdb.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/netdb.h \
|
||||
/usr/include/x86_64-linux-gnu/sys/time.h /usr/include/openssl/ssl.h \
|
||||
/usr/include/openssl/macros.h \
|
||||
/usr/include/x86_64-linux-gnu/openssl/opensslconf.h \
|
||||
/usr/include/x86_64-linux-gnu/openssl/configuration.h \
|
||||
/usr/include/openssl/opensslv.h /usr/include/openssl/e_os2.h \
|
||||
/usr/include/inttypes.h /usr/include/openssl/e_ostime.h \
|
||||
/usr/include/openssl/comp.h /usr/include/openssl/crypto.h \
|
||||
/usr/include/time.h /usr/include/x86_64-linux-gnu/bits/time.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_tm.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_itimerspec.h \
|
||||
/usr/include/stdio.h /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__FILE.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/FILE.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/stdio_lim.h \
|
||||
/usr/include/openssl/safestack.h /usr/include/openssl/stack.h \
|
||||
/usr/include/openssl/types.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/14/include/limits.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/14/include/syslimits.h \
|
||||
/usr/include/limits.h /usr/include/x86_64-linux-gnu/bits/posix1_lim.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/local_lim.h \
|
||||
/usr/include/linux/limits.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/pthread_stack_min-dynamic.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/pthread_stack_min.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/posix2_lim.h \
|
||||
/usr/include/openssl/cryptoerr.h /usr/include/openssl/symhacks.h \
|
||||
/usr/include/openssl/cryptoerr_legacy.h /usr/include/openssl/core.h \
|
||||
/usr/include/pthread.h /usr/include/sched.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/sched.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_sched_param.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/cpu-set.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/setjmp.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct___jmp_buf_tag.h \
|
||||
/usr/include/openssl/comperr.h /usr/include/openssl/bio.h \
|
||||
/usr/include/openssl/bioerr.h /usr/include/openssl/x509.h \
|
||||
/usr/include/openssl/buffer.h /usr/include/openssl/buffererr.h \
|
||||
/usr/include/openssl/evp.h /usr/include/openssl/core_dispatch.h \
|
||||
/usr/include/openssl/evperr.h /usr/include/openssl/params.h \
|
||||
/usr/include/openssl/bn.h /usr/include/openssl/bnerr.h \
|
||||
/usr/include/openssl/objects.h /usr/include/openssl/obj_mac.h \
|
||||
/usr/include/openssl/asn1.h /usr/include/openssl/asn1err.h \
|
||||
/usr/include/openssl/objectserr.h /usr/include/openssl/ec.h \
|
||||
/usr/include/openssl/ecerr.h /usr/include/openssl/rsa.h \
|
||||
/usr/include/openssl/rsaerr.h /usr/include/openssl/dsa.h \
|
||||
/usr/include/openssl/dh.h /usr/include/openssl/dherr.h \
|
||||
/usr/include/openssl/dsaerr.h /usr/include/openssl/sha.h \
|
||||
/usr/include/openssl/x509err.h /usr/include/openssl/x509_vfy.h \
|
||||
/usr/include/openssl/lhash.h /usr/include/openssl/pkcs7.h \
|
||||
/usr/include/openssl/pkcs7err.h /usr/include/openssl/http.h \
|
||||
/usr/include/openssl/conf.h /usr/include/openssl/conferr.h \
|
||||
/usr/include/openssl/conftypes.h /usr/include/openssl/pem.h \
|
||||
/usr/include/openssl/pemerr.h /usr/include/openssl/hmac.h \
|
||||
/usr/include/openssl/async.h /usr/include/openssl/asyncerr.h \
|
||||
/usr/include/openssl/ct.h /usr/include/openssl/cterr.h \
|
||||
/usr/include/openssl/sslerr.h /usr/include/openssl/sslerr_legacy.h \
|
||||
/usr/include/openssl/prov_ssl.h /usr/include/openssl/ssl2.h \
|
||||
/usr/include/openssl/ssl3.h /usr/include/openssl/tls1.h \
|
||||
/usr/include/openssl/dtls1.h /usr/include/openssl/srtp.h \
|
||||
/usr/include/openssl/quic.h /usr/include/openssl/err.h \
|
||||
/usr/include/errno.h /usr/include/x86_64-linux-gnu/bits/errno.h \
|
||||
/usr/include/linux/errno.h /usr/include/x86_64-linux-gnu/asm/errno.h \
|
||||
/usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-logs.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-dll2.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-map.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-fault-injection.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-backtrace.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-timeout-timer.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-cache-ttl.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-smd.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-state.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-retry.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-adopt.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-network-helper.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-metrics.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-ota.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-system.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-ws-close.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-callbacks.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-ws-state.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-ws-ext.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-protocols-plugins.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-context-vhost.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-conmon.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-client.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-http.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-spa.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-purify.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-misc.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-dsh.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-service.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-write.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-writeable.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-ring.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-sha1-base64.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-x509.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-cgi.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-vfs.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-gencrypto.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-lejp.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-lecp.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-cose.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-struct.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-threadpool.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-tokenize.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-lwsac.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-fts.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-diskcache.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-secure-streams.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-secure-streams-serialization.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-secure-streams-policy.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-secure-streams-client.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-secure-streams-transport-proxy.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-jrpc.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-async-dns.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-tls-sessions.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-genhash.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-genrsa.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-genaes.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-genec.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-jwk.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-jose.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-jws.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-jwe.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-eventlib-exports.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-i2c.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-spi.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-gpio.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-bb-i2c.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-bb-spi.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-button.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-led.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-pwm.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-upng.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-jpeg.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-display.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-dlo.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-ssd1306-i2c.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-ili9341-spi.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-spd1656-spi.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-uc8176-spi.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-ssd1675b-spi.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-settings.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-netdev.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-html.h \
|
||||
/usr/include/signal.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/signum-generic.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/signum-arch.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/sig_atomic_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/siginfo_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__sigval_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/siginfo-arch.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/siginfo-consts.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/sigval_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/sigevent_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/sigevent-consts.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/sigaction.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/sigcontext.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/stack_t.h \
|
||||
/usr/include/x86_64-linux-gnu/sys/ucontext.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/sigstack.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/sigstksz.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/ss_flags.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_sigstack.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/sigthread.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/signal_ext.h
|
@ -0,0 +1,4 @@
|
||||
CMAKE_PROGRESS_1 =
|
||||
CMAKE_PROGRESS_2 =
|
||||
CMAKE_PROGRESS_3 =
|
||||
|
Binary file not shown.
@ -0,0 +1,252 @@
|
||||
minimal-examples/client/ws-echo/CMakeFiles/lws-minimal-ss-ws-echo.dir/ws-echo-ss.c.o: \
|
||||
/home/onek8/Development/libwebsockets/minimal-examples/client/ws-echo/ws-echo-ss.c \
|
||||
/usr/include/stdc-predef.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/14/include/stdarg.h \
|
||||
/home/onek8/Development/libwebsockets/build/lws_config.h \
|
||||
/usr/include/x86_64-linux-gnu/sys/types.h /usr/include/features.h \
|
||||
/usr/include/features-time64.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/wordsize.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/timesize.h \
|
||||
/usr/include/x86_64-linux-gnu/sys/cdefs.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/long-double.h \
|
||||
/usr/include/x86_64-linux-gnu/gnu/stubs.h \
|
||||
/usr/include/x86_64-linux-gnu/gnu/stubs-64.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/typesizes.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/time64.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/clock_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/time_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/timer_t.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/14/include/stddef.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/stdint-intn.h /usr/include/endian.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/endian.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/endianness.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/byteswap.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/uintn-identity.h \
|
||||
/usr/include/x86_64-linux-gnu/sys/select.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/select.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/struct_mutex.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/struct_rwlock.h \
|
||||
/usr/include/net/ethernet.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/14/include/stdint.h /usr/include/stdint.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/libc-header-start.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/wchar.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/stdint-least.h \
|
||||
/usr/include/linux/if_ether.h /usr/include/linux/types.h \
|
||||
/usr/include/x86_64-linux-gnu/asm/types.h \
|
||||
/usr/include/asm-generic/types.h /usr/include/asm-generic/int-ll64.h \
|
||||
/usr/include/x86_64-linux-gnu/asm/bitsperlong.h \
|
||||
/usr/include/asm-generic/bitsperlong.h /usr/include/linux/posix_types.h \
|
||||
/usr/include/linux/stddef.h \
|
||||
/usr/include/x86_64-linux-gnu/asm/posix_types.h \
|
||||
/usr/include/x86_64-linux-gnu/asm/posix_types_64.h \
|
||||
/usr/include/asm-generic/posix_types.h /usr/include/string.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/locale_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \
|
||||
/usr/include/strings.h /usr/include/stdlib.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/waitflags.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/waitstatus.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/floatn.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/floatn-common.h /usr/include/alloca.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/stdlib-float.h /usr/include/unistd.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/posix_opt.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/environments.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/confname.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/getopt_posix.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/getopt_core.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/unistd_ext.h \
|
||||
/usr/include/sys/capability.h /usr/include/linux/capability.h \
|
||||
/usr/include/poll.h /usr/include/x86_64-linux-gnu/sys/poll.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/poll.h /usr/include/netdb.h \
|
||||
/usr/include/netinet/in.h /usr/include/x86_64-linux-gnu/sys/socket.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_iovec.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/socket.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/socket_type.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/sockaddr.h \
|
||||
/usr/include/x86_64-linux-gnu/asm/socket.h \
|
||||
/usr/include/asm-generic/socket.h \
|
||||
/usr/include/x86_64-linux-gnu/asm/sockios.h \
|
||||
/usr/include/asm-generic/sockios.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_osockaddr.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/in.h /usr/include/rpc/netdb.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/netdb.h \
|
||||
/usr/include/x86_64-linux-gnu/sys/time.h /usr/include/openssl/ssl.h \
|
||||
/usr/include/openssl/macros.h \
|
||||
/usr/include/x86_64-linux-gnu/openssl/opensslconf.h \
|
||||
/usr/include/x86_64-linux-gnu/openssl/configuration.h \
|
||||
/usr/include/openssl/opensslv.h /usr/include/openssl/e_os2.h \
|
||||
/usr/include/inttypes.h /usr/include/openssl/e_ostime.h \
|
||||
/usr/include/openssl/comp.h /usr/include/openssl/crypto.h \
|
||||
/usr/include/time.h /usr/include/x86_64-linux-gnu/bits/time.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_tm.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_itimerspec.h \
|
||||
/usr/include/stdio.h /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__FILE.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/FILE.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/stdio_lim.h \
|
||||
/usr/include/openssl/safestack.h /usr/include/openssl/stack.h \
|
||||
/usr/include/openssl/types.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/14/include/limits.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/14/include/syslimits.h \
|
||||
/usr/include/limits.h /usr/include/x86_64-linux-gnu/bits/posix1_lim.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/local_lim.h \
|
||||
/usr/include/linux/limits.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/pthread_stack_min-dynamic.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/pthread_stack_min.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/posix2_lim.h \
|
||||
/usr/include/openssl/cryptoerr.h /usr/include/openssl/symhacks.h \
|
||||
/usr/include/openssl/cryptoerr_legacy.h /usr/include/openssl/core.h \
|
||||
/usr/include/pthread.h /usr/include/sched.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/sched.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_sched_param.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/cpu-set.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/setjmp.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct___jmp_buf_tag.h \
|
||||
/usr/include/openssl/comperr.h /usr/include/openssl/bio.h \
|
||||
/usr/include/openssl/bioerr.h /usr/include/openssl/x509.h \
|
||||
/usr/include/openssl/buffer.h /usr/include/openssl/buffererr.h \
|
||||
/usr/include/openssl/evp.h /usr/include/openssl/core_dispatch.h \
|
||||
/usr/include/openssl/evperr.h /usr/include/openssl/params.h \
|
||||
/usr/include/openssl/bn.h /usr/include/openssl/bnerr.h \
|
||||
/usr/include/openssl/objects.h /usr/include/openssl/obj_mac.h \
|
||||
/usr/include/openssl/asn1.h /usr/include/openssl/asn1err.h \
|
||||
/usr/include/openssl/objectserr.h /usr/include/openssl/ec.h \
|
||||
/usr/include/openssl/ecerr.h /usr/include/openssl/rsa.h \
|
||||
/usr/include/openssl/rsaerr.h /usr/include/openssl/dsa.h \
|
||||
/usr/include/openssl/dh.h /usr/include/openssl/dherr.h \
|
||||
/usr/include/openssl/dsaerr.h /usr/include/openssl/sha.h \
|
||||
/usr/include/openssl/x509err.h /usr/include/openssl/x509_vfy.h \
|
||||
/usr/include/openssl/lhash.h /usr/include/openssl/pkcs7.h \
|
||||
/usr/include/openssl/pkcs7err.h /usr/include/openssl/http.h \
|
||||
/usr/include/openssl/conf.h /usr/include/openssl/conferr.h \
|
||||
/usr/include/openssl/conftypes.h /usr/include/openssl/pem.h \
|
||||
/usr/include/openssl/pemerr.h /usr/include/openssl/hmac.h \
|
||||
/usr/include/openssl/async.h /usr/include/openssl/asyncerr.h \
|
||||
/usr/include/openssl/ct.h /usr/include/openssl/cterr.h \
|
||||
/usr/include/openssl/sslerr.h /usr/include/openssl/sslerr_legacy.h \
|
||||
/usr/include/openssl/prov_ssl.h /usr/include/openssl/ssl2.h \
|
||||
/usr/include/openssl/ssl3.h /usr/include/openssl/tls1.h \
|
||||
/usr/include/openssl/dtls1.h /usr/include/openssl/srtp.h \
|
||||
/usr/include/openssl/quic.h /usr/include/openssl/err.h \
|
||||
/usr/include/errno.h /usr/include/x86_64-linux-gnu/bits/errno.h \
|
||||
/usr/include/linux/errno.h /usr/include/x86_64-linux-gnu/asm/errno.h \
|
||||
/usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-logs.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-dll2.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-map.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-fault-injection.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-backtrace.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-timeout-timer.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-cache-ttl.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-smd.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-state.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-retry.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-adopt.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-network-helper.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-metrics.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-ota.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-system.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-ws-close.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-callbacks.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-ws-state.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-ws-ext.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-protocols-plugins.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-context-vhost.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-conmon.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-client.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-http.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-spa.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-purify.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-misc.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-dsh.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-service.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-write.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-writeable.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-ring.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-sha1-base64.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-x509.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-cgi.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-vfs.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-gencrypto.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-lejp.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-lecp.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-cose.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-struct.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-threadpool.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-tokenize.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-lwsac.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-fts.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-diskcache.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-secure-streams.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-secure-streams-serialization.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-secure-streams-policy.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-secure-streams-client.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-secure-streams-transport-proxy.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-jrpc.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-async-dns.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-tls-sessions.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-genhash.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-genrsa.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-genaes.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-genec.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-jwk.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-jose.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-jws.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-jwe.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-eventlib-exports.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-i2c.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-spi.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-gpio.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-bb-i2c.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-bb-spi.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-button.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-led.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-pwm.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-upng.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-jpeg.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-display.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-dlo.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-ssd1306-i2c.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-ili9341-spi.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-spd1656-spi.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-uc8176-spi.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-ssd1675b-spi.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-settings.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-netdev.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-html.h \
|
||||
/usr/include/signal.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/signum-generic.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/signum-arch.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/sig_atomic_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/siginfo_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__sigval_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/siginfo-arch.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/siginfo-consts.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/sigval_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/sigevent_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/sigevent-consts.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/sigaction.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/sigcontext.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/stack_t.h \
|
||||
/usr/include/x86_64-linux-gnu/sys/ucontext.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/sigstack.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/sigstksz.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/ss_flags.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_sigstack.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/sigthread.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/signal_ext.h
|
@ -0,0 +1 @@
|
||||
27
|
@ -0,0 +1,8 @@
|
||||
# CMake generated Testfile for
|
||||
# Source directory: /home/onek8/Development/libwebsockets/minimal-examples/client/ws-echo
|
||||
# Build directory: /home/onek8/Development/libwebsockets/build/minimal-examples/client/ws-echo
|
||||
#
|
||||
# This file includes the relevant testing commands required for
|
||||
# testing this directory and lists subdirectories to be tested as well.
|
||||
add_test(mssws_echo-warmcat "/home/onek8/Development/libwebsockets/build/bin/lws-minimal-ss-ws-echo")
|
||||
set_tests_properties(mssws_echo-warmcat PROPERTIES TIMEOUT "40" WORKING_DIRECTORY "/home/onek8/Development/libwebsockets/minimal-examples/client/ws-echo" _BACKTRACE_TRIPLES "/home/onek8/Development/libwebsockets/minimal-examples/client/ws-echo/CMakeLists.txt;91;add_test;/home/onek8/Development/libwebsockets/minimal-examples/client/ws-echo/CMakeLists.txt;0;")
|
@ -0,0 +1,291 @@
|
||||
# CMAKE generated file: DO NOT EDIT!
|
||||
# Generated by "Unix Makefiles" Generator, CMake Version 3.30
|
||||
|
||||
# Default target executed when no arguments are given to make.
|
||||
default_target: all
|
||||
.PHONY : default_target
|
||||
|
||||
# Allow only one "make -f Makefile2" at a time, but pass parallelism.
|
||||
.NOTPARALLEL:
|
||||
|
||||
#=============================================================================
|
||||
# Special targets provided by cmake.
|
||||
|
||||
# Disable implicit rules so canonical targets will work.
|
||||
.SUFFIXES:
|
||||
|
||||
# Disable VCS-based implicit rules.
|
||||
% : %,v
|
||||
|
||||
# Disable VCS-based implicit rules.
|
||||
% : RCS/%
|
||||
|
||||
# Disable VCS-based implicit rules.
|
||||
% : RCS/%,v
|
||||
|
||||
# Disable VCS-based implicit rules.
|
||||
% : SCCS/s.%
|
||||
|
||||
# Disable VCS-based implicit rules.
|
||||
% : s.%
|
||||
|
||||
.SUFFIXES: .hpux_make_needs_suffix_list
|
||||
|
||||
# Command-line flag to silence nested $(MAKE).
|
||||
$(VERBOSE)MAKESILENT = -s
|
||||
|
||||
#Suppress display of executed commands.
|
||||
$(VERBOSE).SILENT:
|
||||
|
||||
# A target that is always out of date.
|
||||
cmake_force:
|
||||
.PHONY : cmake_force
|
||||
|
||||
#=============================================================================
|
||||
# Set environment variables for the build.
|
||||
|
||||
# The shell in which to execute make rules.
|
||||
SHELL = /bin/sh
|
||||
|
||||
# The CMake executable.
|
||||
CMAKE_COMMAND = /usr/bin/cmake
|
||||
|
||||
# The command to remove a file.
|
||||
RM = /usr/bin/cmake -E rm -f
|
||||
|
||||
# Escaping for special characters.
|
||||
EQUALS = =
|
||||
|
||||
# The top-level source directory on which CMake was run.
|
||||
CMAKE_SOURCE_DIR = /home/onek8/Development/libwebsockets
|
||||
|
||||
# The top-level build directory on which CMake was run.
|
||||
CMAKE_BINARY_DIR = /home/onek8/Development/libwebsockets/build
|
||||
|
||||
#=============================================================================
|
||||
# Targets provided globally by CMake.
|
||||
|
||||
# Special rule for the target package
|
||||
package: preinstall
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Run CPack packaging tool..."
|
||||
cd /home/onek8/Development/libwebsockets/build && /usr/bin/cpack --config ./CPackConfig.cmake
|
||||
.PHONY : package
|
||||
|
||||
# Special rule for the target package
|
||||
package/fast: package
|
||||
.PHONY : package/fast
|
||||
|
||||
# Special rule for the target package_source
|
||||
package_source:
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Run CPack packaging tool for source..."
|
||||
cd /home/onek8/Development/libwebsockets/build && /usr/bin/cpack --config ./CPackSourceConfig.cmake /home/onek8/Development/libwebsockets/build/CPackSourceConfig.cmake
|
||||
.PHONY : package_source
|
||||
|
||||
# Special rule for the target package_source
|
||||
package_source/fast: package_source
|
||||
.PHONY : package_source/fast
|
||||
|
||||
# Special rule for the target test
|
||||
test:
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Running tests..."
|
||||
/usr/bin/ctest --force-new-ctest-process $(ARGS)
|
||||
.PHONY : test
|
||||
|
||||
# Special rule for the target test
|
||||
test/fast: test
|
||||
.PHONY : test/fast
|
||||
|
||||
# Special rule for the target edit_cache
|
||||
edit_cache:
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Running CMake cache editor..."
|
||||
/usr/bin/ccmake -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR)
|
||||
.PHONY : edit_cache
|
||||
|
||||
# Special rule for the target edit_cache
|
||||
edit_cache/fast: edit_cache
|
||||
.PHONY : edit_cache/fast
|
||||
|
||||
# Special rule for the target rebuild_cache
|
||||
rebuild_cache:
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Running CMake to regenerate build system..."
|
||||
/usr/bin/cmake --regenerate-during-build -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR)
|
||||
.PHONY : rebuild_cache
|
||||
|
||||
# Special rule for the target rebuild_cache
|
||||
rebuild_cache/fast: rebuild_cache
|
||||
.PHONY : rebuild_cache/fast
|
||||
|
||||
# Special rule for the target list_install_components
|
||||
list_install_components:
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Available install components are: \"Unspecified\" \"core\" \"dev\" \"examples\""
|
||||
.PHONY : list_install_components
|
||||
|
||||
# Special rule for the target list_install_components
|
||||
list_install_components/fast: list_install_components
|
||||
.PHONY : list_install_components/fast
|
||||
|
||||
# Special rule for the target install
|
||||
install: preinstall
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Install the project..."
|
||||
/usr/bin/cmake -P cmake_install.cmake
|
||||
.PHONY : install
|
||||
|
||||
# Special rule for the target install
|
||||
install/fast: preinstall/fast
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Install the project..."
|
||||
/usr/bin/cmake -P cmake_install.cmake
|
||||
.PHONY : install/fast
|
||||
|
||||
# Special rule for the target install/local
|
||||
install/local: preinstall
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing only the local directory..."
|
||||
/usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake
|
||||
.PHONY : install/local
|
||||
|
||||
# Special rule for the target install/local
|
||||
install/local/fast: preinstall/fast
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing only the local directory..."
|
||||
/usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake
|
||||
.PHONY : install/local/fast
|
||||
|
||||
# Special rule for the target install/strip
|
||||
install/strip: preinstall
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing the project stripped..."
|
||||
/usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake
|
||||
.PHONY : install/strip
|
||||
|
||||
# Special rule for the target install/strip
|
||||
install/strip/fast: preinstall/fast
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing the project stripped..."
|
||||
/usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake
|
||||
.PHONY : install/strip/fast
|
||||
|
||||
# The main all target
|
||||
all: cmake_check_build_system
|
||||
cd /home/onek8/Development/libwebsockets/build && $(CMAKE_COMMAND) -E cmake_progress_start /home/onek8/Development/libwebsockets/build/CMakeFiles /home/onek8/Development/libwebsockets/build/minimal-examples/client/ws-echo//CMakeFiles/progress.marks
|
||||
cd /home/onek8/Development/libwebsockets/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 minimal-examples/client/ws-echo/all
|
||||
$(CMAKE_COMMAND) -E cmake_progress_start /home/onek8/Development/libwebsockets/build/CMakeFiles 0
|
||||
.PHONY : all
|
||||
|
||||
# The main clean target
|
||||
clean:
|
||||
cd /home/onek8/Development/libwebsockets/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 minimal-examples/client/ws-echo/clean
|
||||
.PHONY : clean
|
||||
|
||||
# The main clean target
|
||||
clean/fast: clean
|
||||
.PHONY : clean/fast
|
||||
|
||||
# Prepare targets for installation.
|
||||
preinstall: all
|
||||
cd /home/onek8/Development/libwebsockets/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 minimal-examples/client/ws-echo/preinstall
|
||||
.PHONY : preinstall
|
||||
|
||||
# Prepare targets for installation.
|
||||
preinstall/fast:
|
||||
cd /home/onek8/Development/libwebsockets/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 minimal-examples/client/ws-echo/preinstall
|
||||
.PHONY : preinstall/fast
|
||||
|
||||
# clear depends
|
||||
depend:
|
||||
cd /home/onek8/Development/libwebsockets/build && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1
|
||||
.PHONY : depend
|
||||
|
||||
# Convenience name for target.
|
||||
minimal-examples/client/ws-echo/CMakeFiles/lws-minimal-ss-ws-echo.dir/rule:
|
||||
cd /home/onek8/Development/libwebsockets/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 minimal-examples/client/ws-echo/CMakeFiles/lws-minimal-ss-ws-echo.dir/rule
|
||||
.PHONY : minimal-examples/client/ws-echo/CMakeFiles/lws-minimal-ss-ws-echo.dir/rule
|
||||
|
||||
# Convenience name for target.
|
||||
lws-minimal-ss-ws-echo: minimal-examples/client/ws-echo/CMakeFiles/lws-minimal-ss-ws-echo.dir/rule
|
||||
.PHONY : lws-minimal-ss-ws-echo
|
||||
|
||||
# fast build rule for target.
|
||||
lws-minimal-ss-ws-echo/fast:
|
||||
cd /home/onek8/Development/libwebsockets/build && $(MAKE) $(MAKESILENT) -f minimal-examples/client/ws-echo/CMakeFiles/lws-minimal-ss-ws-echo.dir/build.make minimal-examples/client/ws-echo/CMakeFiles/lws-minimal-ss-ws-echo.dir/build
|
||||
.PHONY : lws-minimal-ss-ws-echo/fast
|
||||
|
||||
main.o: main.c.o
|
||||
.PHONY : main.o
|
||||
|
||||
# target to build an object file
|
||||
main.c.o:
|
||||
cd /home/onek8/Development/libwebsockets/build && $(MAKE) $(MAKESILENT) -f minimal-examples/client/ws-echo/CMakeFiles/lws-minimal-ss-ws-echo.dir/build.make minimal-examples/client/ws-echo/CMakeFiles/lws-minimal-ss-ws-echo.dir/main.c.o
|
||||
.PHONY : main.c.o
|
||||
|
||||
main.i: main.c.i
|
||||
.PHONY : main.i
|
||||
|
||||
# target to preprocess a source file
|
||||
main.c.i:
|
||||
cd /home/onek8/Development/libwebsockets/build && $(MAKE) $(MAKESILENT) -f minimal-examples/client/ws-echo/CMakeFiles/lws-minimal-ss-ws-echo.dir/build.make minimal-examples/client/ws-echo/CMakeFiles/lws-minimal-ss-ws-echo.dir/main.c.i
|
||||
.PHONY : main.c.i
|
||||
|
||||
main.s: main.c.s
|
||||
.PHONY : main.s
|
||||
|
||||
# target to generate assembly for a file
|
||||
main.c.s:
|
||||
cd /home/onek8/Development/libwebsockets/build && $(MAKE) $(MAKESILENT) -f minimal-examples/client/ws-echo/CMakeFiles/lws-minimal-ss-ws-echo.dir/build.make minimal-examples/client/ws-echo/CMakeFiles/lws-minimal-ss-ws-echo.dir/main.c.s
|
||||
.PHONY : main.c.s
|
||||
|
||||
ws-echo-ss.o: ws-echo-ss.c.o
|
||||
.PHONY : ws-echo-ss.o
|
||||
|
||||
# target to build an object file
|
||||
ws-echo-ss.c.o:
|
||||
cd /home/onek8/Development/libwebsockets/build && $(MAKE) $(MAKESILENT) -f minimal-examples/client/ws-echo/CMakeFiles/lws-minimal-ss-ws-echo.dir/build.make minimal-examples/client/ws-echo/CMakeFiles/lws-minimal-ss-ws-echo.dir/ws-echo-ss.c.o
|
||||
.PHONY : ws-echo-ss.c.o
|
||||
|
||||
ws-echo-ss.i: ws-echo-ss.c.i
|
||||
.PHONY : ws-echo-ss.i
|
||||
|
||||
# target to preprocess a source file
|
||||
ws-echo-ss.c.i:
|
||||
cd /home/onek8/Development/libwebsockets/build && $(MAKE) $(MAKESILENT) -f minimal-examples/client/ws-echo/CMakeFiles/lws-minimal-ss-ws-echo.dir/build.make minimal-examples/client/ws-echo/CMakeFiles/lws-minimal-ss-ws-echo.dir/ws-echo-ss.c.i
|
||||
.PHONY : ws-echo-ss.c.i
|
||||
|
||||
ws-echo-ss.s: ws-echo-ss.c.s
|
||||
.PHONY : ws-echo-ss.s
|
||||
|
||||
# target to generate assembly for a file
|
||||
ws-echo-ss.c.s:
|
||||
cd /home/onek8/Development/libwebsockets/build && $(MAKE) $(MAKESILENT) -f minimal-examples/client/ws-echo/CMakeFiles/lws-minimal-ss-ws-echo.dir/build.make minimal-examples/client/ws-echo/CMakeFiles/lws-minimal-ss-ws-echo.dir/ws-echo-ss.c.s
|
||||
.PHONY : ws-echo-ss.c.s
|
||||
|
||||
# Help Target
|
||||
help:
|
||||
@echo "The following are some of the valid targets for this Makefile:"
|
||||
@echo "... all (the default if no target is provided)"
|
||||
@echo "... clean"
|
||||
@echo "... depend"
|
||||
@echo "... edit_cache"
|
||||
@echo "... install"
|
||||
@echo "... install/local"
|
||||
@echo "... install/strip"
|
||||
@echo "... list_install_components"
|
||||
@echo "... package"
|
||||
@echo "... package_source"
|
||||
@echo "... rebuild_cache"
|
||||
@echo "... test"
|
||||
@echo "... lws-minimal-ss-ws-echo"
|
||||
@echo "... main.o"
|
||||
@echo "... main.i"
|
||||
@echo "... main.s"
|
||||
@echo "... ws-echo-ss.o"
|
||||
@echo "... ws-echo-ss.i"
|
||||
@echo "... ws-echo-ss.s"
|
||||
.PHONY : help
|
||||
|
||||
|
||||
|
||||
#=============================================================================
|
||||
# Special targets to cleanup operation of make.
|
||||
|
||||
# Special rule to run CMake to check the build system integrity.
|
||||
# No rule that depends on this can have commands that come from listfiles
|
||||
# because they might be regenerated.
|
||||
cmake_check_build_system:
|
||||
cd /home/onek8/Development/libwebsockets/build && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0
|
||||
.PHONY : cmake_check_build_system
|
||||
|
@ -0,0 +1,44 @@
|
||||
# Install script for directory: /home/onek8/Development/libwebsockets/minimal-examples/client/ws-echo
|
||||
|
||||
# Set the install prefix
|
||||
if(NOT DEFINED CMAKE_INSTALL_PREFIX)
|
||||
set(CMAKE_INSTALL_PREFIX "/usr/local")
|
||||
endif()
|
||||
string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")
|
||||
|
||||
# Set the install configuration name.
|
||||
if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
|
||||
if(BUILD_TYPE)
|
||||
string(REGEX REPLACE "^[^A-Za-z0-9_]+" ""
|
||||
CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}")
|
||||
else()
|
||||
set(CMAKE_INSTALL_CONFIG_NAME "")
|
||||
endif()
|
||||
message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
|
||||
endif()
|
||||
|
||||
# Set the component getting installed.
|
||||
if(NOT CMAKE_INSTALL_COMPONENT)
|
||||
if(COMPONENT)
|
||||
message(STATUS "Install component: \"${COMPONENT}\"")
|
||||
set(CMAKE_INSTALL_COMPONENT "${COMPONENT}")
|
||||
else()
|
||||
set(CMAKE_INSTALL_COMPONENT)
|
||||
endif()
|
||||
endif()
|
||||
|
||||
# Install shared libraries without execute permission?
|
||||
if(NOT DEFINED CMAKE_INSTALL_SO_NO_EXE)
|
||||
set(CMAKE_INSTALL_SO_NO_EXE "1")
|
||||
endif()
|
||||
|
||||
# Is this installation the result of a crosscompile?
|
||||
if(NOT DEFINED CMAKE_CROSSCOMPILING)
|
||||
set(CMAKE_CROSSCOMPILING "FALSE")
|
||||
endif()
|
||||
|
||||
# Set path to fallback-tool for dependency-resolution.
|
||||
if(NOT DEFINED CMAKE_OBJDUMP)
|
||||
set(CMAKE_OBJDUMP "/usr/bin/objdump")
|
||||
endif()
|
||||
|
@ -0,0 +1,58 @@
|
||||
# Install script for directory: /home/onek8/Development/libwebsockets/minimal-examples
|
||||
|
||||
# Set the install prefix
|
||||
if(NOT DEFINED CMAKE_INSTALL_PREFIX)
|
||||
set(CMAKE_INSTALL_PREFIX "/usr/local")
|
||||
endif()
|
||||
string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")
|
||||
|
||||
# Set the install configuration name.
|
||||
if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
|
||||
if(BUILD_TYPE)
|
||||
string(REGEX REPLACE "^[^A-Za-z0-9_]+" ""
|
||||
CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}")
|
||||
else()
|
||||
set(CMAKE_INSTALL_CONFIG_NAME "")
|
||||
endif()
|
||||
message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
|
||||
endif()
|
||||
|
||||
# Set the component getting installed.
|
||||
if(NOT CMAKE_INSTALL_COMPONENT)
|
||||
if(COMPONENT)
|
||||
message(STATUS "Install component: \"${COMPONENT}\"")
|
||||
set(CMAKE_INSTALL_COMPONENT "${COMPONENT}")
|
||||
else()
|
||||
set(CMAKE_INSTALL_COMPONENT)
|
||||
endif()
|
||||
endif()
|
||||
|
||||
# Install shared libraries without execute permission?
|
||||
if(NOT DEFINED CMAKE_INSTALL_SO_NO_EXE)
|
||||
set(CMAKE_INSTALL_SO_NO_EXE "1")
|
||||
endif()
|
||||
|
||||
# Is this installation the result of a crosscompile?
|
||||
if(NOT DEFINED CMAKE_CROSSCOMPILING)
|
||||
set(CMAKE_CROSSCOMPILING "FALSE")
|
||||
endif()
|
||||
|
||||
# Set path to fallback-tool for dependency-resolution.
|
||||
if(NOT DEFINED CMAKE_OBJDUMP)
|
||||
set(CMAKE_OBJDUMP "/usr/bin/objdump")
|
||||
endif()
|
||||
|
||||
if(NOT CMAKE_INSTALL_LOCAL_ONLY)
|
||||
# Include the install script for each subdirectory.
|
||||
include("/home/onek8/Development/libwebsockets/build/minimal-examples/client/binance/cmake_install.cmake")
|
||||
include("/home/onek8/Development/libwebsockets/build/minimal-examples/client/hello_world/cmake_install.cmake")
|
||||
include("/home/onek8/Development/libwebsockets/build/minimal-examples/client/hello_world-policy/cmake_install.cmake")
|
||||
include("/home/onek8/Development/libwebsockets/build/minimal-examples/client/http-post/cmake_install.cmake")
|
||||
include("/home/onek8/Development/libwebsockets/build/minimal-examples/client/ws-echo/cmake_install.cmake")
|
||||
include("/home/onek8/Development/libwebsockets/build/minimal-examples/server/hello_world/cmake_install.cmake")
|
||||
include("/home/onek8/Development/libwebsockets/build/minimal-examples/sink/hello_world/cmake_install.cmake")
|
||||
include("/home/onek8/Development/libwebsockets/build/minimal-examples/ssproxy/ssproxy-custom-transport-uart/cmake_install.cmake")
|
||||
include("/home/onek8/Development/libwebsockets/build/minimal-examples/ssproxy/ssproxy-socket/cmake_install.cmake")
|
||||
|
||||
endif()
|
||||
|
@ -0,0 +1,16 @@
|
||||
# CMAKE generated file: DO NOT EDIT!
|
||||
# Generated by "Unix Makefiles" Generator, CMake Version 3.30
|
||||
|
||||
# Relative path conversion top directories.
|
||||
set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/home/onek8/Development/libwebsockets")
|
||||
set(CMAKE_RELATIVE_PATH_TOP_BINARY "/home/onek8/Development/libwebsockets/build")
|
||||
|
||||
# Force unix paths in dependencies.
|
||||
set(CMAKE_FORCE_UNIX_PATHS 1)
|
||||
|
||||
|
||||
# The C and CXX include file regular expressions for this directory.
|
||||
set(CMAKE_C_INCLUDE_REGEX_SCAN "^.*$")
|
||||
set(CMAKE_C_INCLUDE_REGEX_COMPLAIN "^$")
|
||||
set(CMAKE_CXX_INCLUDE_REGEX_SCAN ${CMAKE_C_INCLUDE_REGEX_SCAN})
|
||||
set(CMAKE_CXX_INCLUDE_REGEX_COMPLAIN ${CMAKE_C_INCLUDE_REGEX_COMPLAIN})
|
@ -0,0 +1,24 @@
|
||||
|
||||
# Consider dependencies only in project.
|
||||
set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF)
|
||||
|
||||
# The set of languages for which implicit dependencies are needed:
|
||||
set(CMAKE_DEPENDS_LANGUAGES
|
||||
)
|
||||
|
||||
# The set of dependency files which are needed:
|
||||
set(CMAKE_DEPENDS_DEPENDENCY_FILES
|
||||
"/home/onek8/Development/libwebsockets/minimal-examples/server/hello_world/main.c" "minimal-examples/server/hello_world/CMakeFiles/lws-minimal-ss-server-hello_world.dir/main.c.o" "gcc" "minimal-examples/server/hello_world/CMakeFiles/lws-minimal-ss-server-hello_world.dir/main.c.o.d"
|
||||
"/home/onek8/Development/libwebsockets/minimal-examples/server/hello_world/ss-server.c" "minimal-examples/server/hello_world/CMakeFiles/lws-minimal-ss-server-hello_world.dir/ss-server.c.o" "gcc" "minimal-examples/server/hello_world/CMakeFiles/lws-minimal-ss-server-hello_world.dir/ss-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 "")
|
@ -0,0 +1,132 @@
|
||||
# CMAKE generated file: DO NOT EDIT!
|
||||
# Generated by "Unix Makefiles" Generator, CMake Version 3.30
|
||||
|
||||
# Delete rule output on recipe failure.
|
||||
.DELETE_ON_ERROR:
|
||||
|
||||
#=============================================================================
|
||||
# Special targets provided by cmake.
|
||||
|
||||
# Disable implicit rules so canonical targets will work.
|
||||
.SUFFIXES:
|
||||
|
||||
# Disable VCS-based implicit rules.
|
||||
% : %,v
|
||||
|
||||
# Disable VCS-based implicit rules.
|
||||
% : RCS/%
|
||||
|
||||
# Disable VCS-based implicit rules.
|
||||
% : RCS/%,v
|
||||
|
||||
# Disable VCS-based implicit rules.
|
||||
% : SCCS/s.%
|
||||
|
||||
# Disable VCS-based implicit rules.
|
||||
% : s.%
|
||||
|
||||
.SUFFIXES: .hpux_make_needs_suffix_list
|
||||
|
||||
# Command-line flag to silence nested $(MAKE).
|
||||
$(VERBOSE)MAKESILENT = -s
|
||||
|
||||
#Suppress display of executed commands.
|
||||
$(VERBOSE).SILENT:
|
||||
|
||||
# A target that is always out of date.
|
||||
cmake_force:
|
||||
.PHONY : cmake_force
|
||||
|
||||
#=============================================================================
|
||||
# Set environment variables for the build.
|
||||
|
||||
# The shell in which to execute make rules.
|
||||
SHELL = /bin/sh
|
||||
|
||||
# The CMake executable.
|
||||
CMAKE_COMMAND = /usr/bin/cmake
|
||||
|
||||
# The command to remove a file.
|
||||
RM = /usr/bin/cmake -E rm -f
|
||||
|
||||
# Escaping for special characters.
|
||||
EQUALS = =
|
||||
|
||||
# The top-level source directory on which CMake was run.
|
||||
CMAKE_SOURCE_DIR = /home/onek8/Development/libwebsockets
|
||||
|
||||
# The top-level build directory on which CMake was run.
|
||||
CMAKE_BINARY_DIR = /home/onek8/Development/libwebsockets/build
|
||||
|
||||
# Include any dependencies generated for this target.
|
||||
include minimal-examples/server/hello_world/CMakeFiles/lws-minimal-ss-server-hello_world.dir/depend.make
|
||||
# Include any dependencies generated by the compiler for this target.
|
||||
include minimal-examples/server/hello_world/CMakeFiles/lws-minimal-ss-server-hello_world.dir/compiler_depend.make
|
||||
|
||||
# Include the progress variables for this target.
|
||||
include minimal-examples/server/hello_world/CMakeFiles/lws-minimal-ss-server-hello_world.dir/progress.make
|
||||
|
||||
# Include the compile flags for this target's objects.
|
||||
include minimal-examples/server/hello_world/CMakeFiles/lws-minimal-ss-server-hello_world.dir/flags.make
|
||||
|
||||
minimal-examples/server/hello_world/CMakeFiles/lws-minimal-ss-server-hello_world.dir/main.c.o: minimal-examples/server/hello_world/CMakeFiles/lws-minimal-ss-server-hello_world.dir/flags.make
|
||||
minimal-examples/server/hello_world/CMakeFiles/lws-minimal-ss-server-hello_world.dir/main.c.o: /home/onek8/Development/libwebsockets/minimal-examples/server/hello_world/main.c
|
||||
minimal-examples/server/hello_world/CMakeFiles/lws-minimal-ss-server-hello_world.dir/main.c.o: minimal-examples/server/hello_world/CMakeFiles/lws-minimal-ss-server-hello_world.dir/compiler_depend.ts
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/onek8/Development/libwebsockets/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building C object minimal-examples/server/hello_world/CMakeFiles/lws-minimal-ss-server-hello_world.dir/main.c.o"
|
||||
cd /home/onek8/Development/libwebsockets/build/minimal-examples/server/hello_world && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT minimal-examples/server/hello_world/CMakeFiles/lws-minimal-ss-server-hello_world.dir/main.c.o -MF CMakeFiles/lws-minimal-ss-server-hello_world.dir/main.c.o.d -o CMakeFiles/lws-minimal-ss-server-hello_world.dir/main.c.o -c /home/onek8/Development/libwebsockets/minimal-examples/server/hello_world/main.c
|
||||
|
||||
minimal-examples/server/hello_world/CMakeFiles/lws-minimal-ss-server-hello_world.dir/main.c.i: cmake_force
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/lws-minimal-ss-server-hello_world.dir/main.c.i"
|
||||
cd /home/onek8/Development/libwebsockets/build/minimal-examples/server/hello_world && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/onek8/Development/libwebsockets/minimal-examples/server/hello_world/main.c > CMakeFiles/lws-minimal-ss-server-hello_world.dir/main.c.i
|
||||
|
||||
minimal-examples/server/hello_world/CMakeFiles/lws-minimal-ss-server-hello_world.dir/main.c.s: cmake_force
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/lws-minimal-ss-server-hello_world.dir/main.c.s"
|
||||
cd /home/onek8/Development/libwebsockets/build/minimal-examples/server/hello_world && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/onek8/Development/libwebsockets/minimal-examples/server/hello_world/main.c -o CMakeFiles/lws-minimal-ss-server-hello_world.dir/main.c.s
|
||||
|
||||
minimal-examples/server/hello_world/CMakeFiles/lws-minimal-ss-server-hello_world.dir/ss-server.c.o: minimal-examples/server/hello_world/CMakeFiles/lws-minimal-ss-server-hello_world.dir/flags.make
|
||||
minimal-examples/server/hello_world/CMakeFiles/lws-minimal-ss-server-hello_world.dir/ss-server.c.o: /home/onek8/Development/libwebsockets/minimal-examples/server/hello_world/ss-server.c
|
||||
minimal-examples/server/hello_world/CMakeFiles/lws-minimal-ss-server-hello_world.dir/ss-server.c.o: minimal-examples/server/hello_world/CMakeFiles/lws-minimal-ss-server-hello_world.dir/compiler_depend.ts
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/onek8/Development/libwebsockets/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building C object minimal-examples/server/hello_world/CMakeFiles/lws-minimal-ss-server-hello_world.dir/ss-server.c.o"
|
||||
cd /home/onek8/Development/libwebsockets/build/minimal-examples/server/hello_world && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT minimal-examples/server/hello_world/CMakeFiles/lws-minimal-ss-server-hello_world.dir/ss-server.c.o -MF CMakeFiles/lws-minimal-ss-server-hello_world.dir/ss-server.c.o.d -o CMakeFiles/lws-minimal-ss-server-hello_world.dir/ss-server.c.o -c /home/onek8/Development/libwebsockets/minimal-examples/server/hello_world/ss-server.c
|
||||
|
||||
minimal-examples/server/hello_world/CMakeFiles/lws-minimal-ss-server-hello_world.dir/ss-server.c.i: cmake_force
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/lws-minimal-ss-server-hello_world.dir/ss-server.c.i"
|
||||
cd /home/onek8/Development/libwebsockets/build/minimal-examples/server/hello_world && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/onek8/Development/libwebsockets/minimal-examples/server/hello_world/ss-server.c > CMakeFiles/lws-minimal-ss-server-hello_world.dir/ss-server.c.i
|
||||
|
||||
minimal-examples/server/hello_world/CMakeFiles/lws-minimal-ss-server-hello_world.dir/ss-server.c.s: cmake_force
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/lws-minimal-ss-server-hello_world.dir/ss-server.c.s"
|
||||
cd /home/onek8/Development/libwebsockets/build/minimal-examples/server/hello_world && /usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/onek8/Development/libwebsockets/minimal-examples/server/hello_world/ss-server.c -o CMakeFiles/lws-minimal-ss-server-hello_world.dir/ss-server.c.s
|
||||
|
||||
# Object files for target lws-minimal-ss-server-hello_world
|
||||
lws__minimal__ss__server__hello_world_OBJECTS = \
|
||||
"CMakeFiles/lws-minimal-ss-server-hello_world.dir/main.c.o" \
|
||||
"CMakeFiles/lws-minimal-ss-server-hello_world.dir/ss-server.c.o"
|
||||
|
||||
# External object files for target lws-minimal-ss-server-hello_world
|
||||
lws__minimal__ss__server__hello_world_EXTERNAL_OBJECTS =
|
||||
|
||||
bin/lws-minimal-ss-server-hello_world: minimal-examples/server/hello_world/CMakeFiles/lws-minimal-ss-server-hello_world.dir/main.c.o
|
||||
bin/lws-minimal-ss-server-hello_world: minimal-examples/server/hello_world/CMakeFiles/lws-minimal-ss-server-hello_world.dir/ss-server.c.o
|
||||
bin/lws-minimal-ss-server-hello_world: minimal-examples/server/hello_world/CMakeFiles/lws-minimal-ss-server-hello_world.dir/build.make
|
||||
bin/lws-minimal-ss-server-hello_world: /usr/lib/x86_64-linux-gnu/libcap.so
|
||||
bin/lws-minimal-ss-server-hello_world: lib/libwebsockets.a
|
||||
bin/lws-minimal-ss-server-hello_world: /usr/lib/x86_64-linux-gnu/libcap.so
|
||||
bin/lws-minimal-ss-server-hello_world: /usr/lib/x86_64-linux-gnu/libssl.so
|
||||
bin/lws-minimal-ss-server-hello_world: /usr/lib/x86_64-linux-gnu/libcrypto.so
|
||||
bin/lws-minimal-ss-server-hello_world: /usr/lib/x86_64-linux-gnu/libcap.so
|
||||
bin/lws-minimal-ss-server-hello_world: minimal-examples/server/hello_world/CMakeFiles/lws-minimal-ss-server-hello_world.dir/link.txt
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --bold --progress-dir=/home/onek8/Development/libwebsockets/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Linking C executable ../../../bin/lws-minimal-ss-server-hello_world"
|
||||
cd /home/onek8/Development/libwebsockets/build/minimal-examples/server/hello_world && $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/lws-minimal-ss-server-hello_world.dir/link.txt --verbose=$(VERBOSE)
|
||||
|
||||
# Rule to build all files generated by this target.
|
||||
minimal-examples/server/hello_world/CMakeFiles/lws-minimal-ss-server-hello_world.dir/build: bin/lws-minimal-ss-server-hello_world
|
||||
.PHONY : minimal-examples/server/hello_world/CMakeFiles/lws-minimal-ss-server-hello_world.dir/build
|
||||
|
||||
minimal-examples/server/hello_world/CMakeFiles/lws-minimal-ss-server-hello_world.dir/clean:
|
||||
cd /home/onek8/Development/libwebsockets/build/minimal-examples/server/hello_world && $(CMAKE_COMMAND) -P CMakeFiles/lws-minimal-ss-server-hello_world.dir/cmake_clean.cmake
|
||||
.PHONY : minimal-examples/server/hello_world/CMakeFiles/lws-minimal-ss-server-hello_world.dir/clean
|
||||
|
||||
minimal-examples/server/hello_world/CMakeFiles/lws-minimal-ss-server-hello_world.dir/depend:
|
||||
cd /home/onek8/Development/libwebsockets/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/onek8/Development/libwebsockets /home/onek8/Development/libwebsockets/minimal-examples/server/hello_world /home/onek8/Development/libwebsockets/build /home/onek8/Development/libwebsockets/build/minimal-examples/server/hello_world /home/onek8/Development/libwebsockets/build/minimal-examples/server/hello_world/CMakeFiles/lws-minimal-ss-server-hello_world.dir/DependInfo.cmake "--color=$(COLOR)"
|
||||
.PHONY : minimal-examples/server/hello_world/CMakeFiles/lws-minimal-ss-server-hello_world.dir/depend
|
||||
|
@ -0,0 +1,13 @@
|
||||
file(REMOVE_RECURSE
|
||||
"../../../bin/lws-minimal-ss-server-hello_world"
|
||||
"../../../bin/lws-minimal-ss-server-hello_world.pdb"
|
||||
"CMakeFiles/lws-minimal-ss-server-hello_world.dir/main.c.o"
|
||||
"CMakeFiles/lws-minimal-ss-server-hello_world.dir/main.c.o.d"
|
||||
"CMakeFiles/lws-minimal-ss-server-hello_world.dir/ss-server.c.o"
|
||||
"CMakeFiles/lws-minimal-ss-server-hello_world.dir/ss-server.c.o.d"
|
||||
)
|
||||
|
||||
# Per-language clean rules from dependency scanning.
|
||||
foreach(lang C)
|
||||
include(CMakeFiles/lws-minimal-ss-server-hello_world.dir/cmake_clean_${lang}.cmake OPTIONAL)
|
||||
endforeach()
|
@ -0,0 +1,2 @@
|
||||
# Empty compiler generated dependencies file for lws-minimal-ss-server-hello_world.
|
||||
# This may be replaced when dependencies are built.
|
@ -0,0 +1,2 @@
|
||||
# CMAKE generated file: DO NOT EDIT!
|
||||
# Timestamp file for compiler generated dependencies management for lws-minimal-ss-server-hello_world.
|
@ -0,0 +1,2 @@
|
||||
# Empty dependencies file for lws-minimal-ss-server-hello_world.
|
||||
# This may be replaced when dependencies are built.
|
@ -0,0 +1,10 @@
|
||||
# CMAKE generated file: DO NOT EDIT!
|
||||
# Generated by "Unix Makefiles" Generator, CMake Version 3.30
|
||||
|
||||
# compile C with /usr/bin/cc
|
||||
C_DEFINES =
|
||||
|
||||
C_INCLUDES = -I/home/onek8/Development/libwebsockets/include -I/home/onek8/Development/libwebsockets/build -I/home/onek8/Development/libwebsockets/lib -I/home/onek8/Development/libwebsockets/lib/. -I/home/onek8/Development/libwebsockets/lib/plat/unix/. -I/home/onek8/Development/libwebsockets/lib/tls/. -I/home/onek8/Development/libwebsockets/lib/core/. -I/home/onek8/Development/libwebsockets/lib/misc/. -I/home/onek8/Development/libwebsockets/lib/misc/misc/jrpc -I/home/onek8/Development/libwebsockets/lib/system/./async-dns -I/home/onek8/Development/libwebsockets/lib/system/smd/. -I/home/onek8/Development/libwebsockets/lib/system/metrics/. -I/home/onek8/Development/libwebsockets/lib/core-net/. -I/home/onek8/Development/libwebsockets/lib/roles/. -I/home/onek8/Development/libwebsockets/lib/roles/http/. -I/home/onek8/Development/libwebsockets/lib/roles/http/./compression -I/home/onek8/Development/libwebsockets/lib/roles/h1/. -I/home/onek8/Development/libwebsockets/lib/roles/h2/. -I/home/onek8/Development/libwebsockets/lib/roles/ws/. -I/home/onek8/Development/libwebsockets/lib/roles/raw-skt/. -I/home/onek8/Development/libwebsockets/lib/roles/raw-file/. -I/home/onek8/Development/libwebsockets/lib/roles/listen/. -I/home/onek8/Development/libwebsockets/lib/secure-streams -I/home/onek8/Development/libwebsockets/lib/event-libs/. -I/home/onek8/Development/libwebsockets/lib/event-libs/poll/../poll -I/home/onek8/Development/libwebsockets/lib/secure-streams/. -I/home/onek8/Development/libwebsockets/lib/../include -I/home/onek8/Development/libwebsockets/build/lib/../include
|
||||
|
||||
C_FLAGS = -Wno-deprecated-declarations -Wno-deprecated -Wall -Wextra -Wno-unused-parameter -Wconversion -Wsign-compare -Wstrict-aliasing -fvisibility=hidden -Wundef -Wuninitialized -Wtype-limits -Wignored-qualifiers -Werror -pthread
|
||||
|
@ -0,0 +1 @@
|
||||
/usr/bin/cc -Wno-deprecated-declarations -Wno-deprecated -Wall -Wextra -Wno-unused-parameter -Wconversion -Wsign-compare -Wstrict-aliasing -fvisibility=hidden -Wundef -Wuninitialized -Wtype-limits -Wignored-qualifiers -Werror -pthread "CMakeFiles/lws-minimal-ss-server-hello_world.dir/main.c.o" "CMakeFiles/lws-minimal-ss-server-hello_world.dir/ss-server.c.o" -o ../../../bin/lws-minimal-ss-server-hello_world -lpthread /usr/lib/x86_64-linux-gnu/libcap.so -lm -lcap -ldl ../../../lib/libwebsockets.a -lpthread /usr/lib/x86_64-linux-gnu/libcap.so -lm -lcap -ldl /usr/lib/x86_64-linux-gnu/libssl.so /usr/lib/x86_64-linux-gnu/libcrypto.so -lpthread /usr/lib/x86_64-linux-gnu/libcap.so
|
Binary file not shown.
@ -0,0 +1,252 @@
|
||||
minimal-examples/server/hello_world/CMakeFiles/lws-minimal-ss-server-hello_world.dir/main.c.o: \
|
||||
/home/onek8/Development/libwebsockets/minimal-examples/server/hello_world/main.c \
|
||||
/usr/include/stdc-predef.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/14/include/stdarg.h \
|
||||
/home/onek8/Development/libwebsockets/build/lws_config.h \
|
||||
/usr/include/x86_64-linux-gnu/sys/types.h /usr/include/features.h \
|
||||
/usr/include/features-time64.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/wordsize.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/timesize.h \
|
||||
/usr/include/x86_64-linux-gnu/sys/cdefs.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/long-double.h \
|
||||
/usr/include/x86_64-linux-gnu/gnu/stubs.h \
|
||||
/usr/include/x86_64-linux-gnu/gnu/stubs-64.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/typesizes.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/time64.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/clock_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/time_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/timer_t.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/14/include/stddef.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/stdint-intn.h /usr/include/endian.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/endian.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/endianness.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/byteswap.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/uintn-identity.h \
|
||||
/usr/include/x86_64-linux-gnu/sys/select.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/select.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/struct_mutex.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/struct_rwlock.h \
|
||||
/usr/include/net/ethernet.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/14/include/stdint.h /usr/include/stdint.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/libc-header-start.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/wchar.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/stdint-least.h \
|
||||
/usr/include/linux/if_ether.h /usr/include/linux/types.h \
|
||||
/usr/include/x86_64-linux-gnu/asm/types.h \
|
||||
/usr/include/asm-generic/types.h /usr/include/asm-generic/int-ll64.h \
|
||||
/usr/include/x86_64-linux-gnu/asm/bitsperlong.h \
|
||||
/usr/include/asm-generic/bitsperlong.h /usr/include/linux/posix_types.h \
|
||||
/usr/include/linux/stddef.h \
|
||||
/usr/include/x86_64-linux-gnu/asm/posix_types.h \
|
||||
/usr/include/x86_64-linux-gnu/asm/posix_types_64.h \
|
||||
/usr/include/asm-generic/posix_types.h /usr/include/string.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/locale_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \
|
||||
/usr/include/strings.h /usr/include/stdlib.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/waitflags.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/waitstatus.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/floatn.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/floatn-common.h /usr/include/alloca.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/stdlib-float.h /usr/include/unistd.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/posix_opt.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/environments.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/confname.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/getopt_posix.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/getopt_core.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/unistd_ext.h \
|
||||
/usr/include/sys/capability.h /usr/include/linux/capability.h \
|
||||
/usr/include/poll.h /usr/include/x86_64-linux-gnu/sys/poll.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/poll.h /usr/include/netdb.h \
|
||||
/usr/include/netinet/in.h /usr/include/x86_64-linux-gnu/sys/socket.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_iovec.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/socket.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/socket_type.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/sockaddr.h \
|
||||
/usr/include/x86_64-linux-gnu/asm/socket.h \
|
||||
/usr/include/asm-generic/socket.h \
|
||||
/usr/include/x86_64-linux-gnu/asm/sockios.h \
|
||||
/usr/include/asm-generic/sockios.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_osockaddr.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/in.h /usr/include/rpc/netdb.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/netdb.h \
|
||||
/usr/include/x86_64-linux-gnu/sys/time.h /usr/include/openssl/ssl.h \
|
||||
/usr/include/openssl/macros.h \
|
||||
/usr/include/x86_64-linux-gnu/openssl/opensslconf.h \
|
||||
/usr/include/x86_64-linux-gnu/openssl/configuration.h \
|
||||
/usr/include/openssl/opensslv.h /usr/include/openssl/e_os2.h \
|
||||
/usr/include/inttypes.h /usr/include/openssl/e_ostime.h \
|
||||
/usr/include/openssl/comp.h /usr/include/openssl/crypto.h \
|
||||
/usr/include/time.h /usr/include/x86_64-linux-gnu/bits/time.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_tm.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_itimerspec.h \
|
||||
/usr/include/stdio.h /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__FILE.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/FILE.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/stdio_lim.h \
|
||||
/usr/include/openssl/safestack.h /usr/include/openssl/stack.h \
|
||||
/usr/include/openssl/types.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/14/include/limits.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/14/include/syslimits.h \
|
||||
/usr/include/limits.h /usr/include/x86_64-linux-gnu/bits/posix1_lim.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/local_lim.h \
|
||||
/usr/include/linux/limits.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/pthread_stack_min-dynamic.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/pthread_stack_min.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/posix2_lim.h \
|
||||
/usr/include/openssl/cryptoerr.h /usr/include/openssl/symhacks.h \
|
||||
/usr/include/openssl/cryptoerr_legacy.h /usr/include/openssl/core.h \
|
||||
/usr/include/pthread.h /usr/include/sched.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/sched.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_sched_param.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/cpu-set.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/setjmp.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct___jmp_buf_tag.h \
|
||||
/usr/include/openssl/comperr.h /usr/include/openssl/bio.h \
|
||||
/usr/include/openssl/bioerr.h /usr/include/openssl/x509.h \
|
||||
/usr/include/openssl/buffer.h /usr/include/openssl/buffererr.h \
|
||||
/usr/include/openssl/evp.h /usr/include/openssl/core_dispatch.h \
|
||||
/usr/include/openssl/evperr.h /usr/include/openssl/params.h \
|
||||
/usr/include/openssl/bn.h /usr/include/openssl/bnerr.h \
|
||||
/usr/include/openssl/objects.h /usr/include/openssl/obj_mac.h \
|
||||
/usr/include/openssl/asn1.h /usr/include/openssl/asn1err.h \
|
||||
/usr/include/openssl/objectserr.h /usr/include/openssl/ec.h \
|
||||
/usr/include/openssl/ecerr.h /usr/include/openssl/rsa.h \
|
||||
/usr/include/openssl/rsaerr.h /usr/include/openssl/dsa.h \
|
||||
/usr/include/openssl/dh.h /usr/include/openssl/dherr.h \
|
||||
/usr/include/openssl/dsaerr.h /usr/include/openssl/sha.h \
|
||||
/usr/include/openssl/x509err.h /usr/include/openssl/x509_vfy.h \
|
||||
/usr/include/openssl/lhash.h /usr/include/openssl/pkcs7.h \
|
||||
/usr/include/openssl/pkcs7err.h /usr/include/openssl/http.h \
|
||||
/usr/include/openssl/conf.h /usr/include/openssl/conferr.h \
|
||||
/usr/include/openssl/conftypes.h /usr/include/openssl/pem.h \
|
||||
/usr/include/openssl/pemerr.h /usr/include/openssl/hmac.h \
|
||||
/usr/include/openssl/async.h /usr/include/openssl/asyncerr.h \
|
||||
/usr/include/openssl/ct.h /usr/include/openssl/cterr.h \
|
||||
/usr/include/openssl/sslerr.h /usr/include/openssl/sslerr_legacy.h \
|
||||
/usr/include/openssl/prov_ssl.h /usr/include/openssl/ssl2.h \
|
||||
/usr/include/openssl/ssl3.h /usr/include/openssl/tls1.h \
|
||||
/usr/include/openssl/dtls1.h /usr/include/openssl/srtp.h \
|
||||
/usr/include/openssl/quic.h /usr/include/openssl/err.h \
|
||||
/usr/include/errno.h /usr/include/x86_64-linux-gnu/bits/errno.h \
|
||||
/usr/include/linux/errno.h /usr/include/x86_64-linux-gnu/asm/errno.h \
|
||||
/usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-logs.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-dll2.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-map.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-fault-injection.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-backtrace.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-timeout-timer.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-cache-ttl.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-smd.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-state.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-retry.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-adopt.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-network-helper.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-metrics.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-ota.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-system.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-ws-close.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-callbacks.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-ws-state.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-ws-ext.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-protocols-plugins.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-context-vhost.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-conmon.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-client.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-http.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-spa.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-purify.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-misc.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-dsh.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-service.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-write.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-writeable.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-ring.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-sha1-base64.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-x509.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-cgi.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-vfs.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-gencrypto.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-lejp.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-lecp.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-cose.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-struct.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-threadpool.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-tokenize.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-lwsac.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-fts.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-diskcache.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-secure-streams.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-secure-streams-serialization.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-secure-streams-policy.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-secure-streams-client.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-secure-streams-transport-proxy.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-jrpc.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-async-dns.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-tls-sessions.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-genhash.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-genrsa.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-genaes.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-genec.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-jwk.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-jose.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-jws.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-jwe.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-eventlib-exports.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-i2c.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-spi.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-gpio.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-bb-i2c.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-bb-spi.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-button.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-led.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-pwm.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-upng.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-jpeg.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-display.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-dlo.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-ssd1306-i2c.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-ili9341-spi.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-spd1656-spi.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-uc8176-spi.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-ssd1675b-spi.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-settings.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-netdev.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-html.h \
|
||||
/usr/include/signal.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/signum-generic.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/signum-arch.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/sig_atomic_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/siginfo_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__sigval_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/siginfo-arch.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/siginfo-consts.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/sigval_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/sigevent_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/sigevent-consts.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/sigaction.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/sigcontext.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/stack_t.h \
|
||||
/usr/include/x86_64-linux-gnu/sys/ucontext.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/sigstack.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/sigstksz.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/ss_flags.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_sigstack.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/sigthread.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/signal_ext.h
|
@ -0,0 +1,4 @@
|
||||
CMAKE_PROGRESS_1 =
|
||||
CMAKE_PROGRESS_2 = 35
|
||||
CMAKE_PROGRESS_3 =
|
||||
|
Binary file not shown.
@ -0,0 +1,231 @@
|
||||
minimal-examples/server/hello_world/CMakeFiles/lws-minimal-ss-server-hello_world.dir/ss-server.c.o: \
|
||||
/home/onek8/Development/libwebsockets/minimal-examples/server/hello_world/ss-server.c \
|
||||
/usr/include/stdc-predef.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/14/include/stdarg.h \
|
||||
/home/onek8/Development/libwebsockets/build/lws_config.h \
|
||||
/usr/include/x86_64-linux-gnu/sys/types.h /usr/include/features.h \
|
||||
/usr/include/features-time64.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/wordsize.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/timesize.h \
|
||||
/usr/include/x86_64-linux-gnu/sys/cdefs.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/long-double.h \
|
||||
/usr/include/x86_64-linux-gnu/gnu/stubs.h \
|
||||
/usr/include/x86_64-linux-gnu/gnu/stubs-64.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/typesizes.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/time64.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/clock_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/clockid_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/time_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/timer_t.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/14/include/stddef.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/stdint-intn.h /usr/include/endian.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/endian.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/endianness.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/byteswap.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/uintn-identity.h \
|
||||
/usr/include/x86_64-linux-gnu/sys/select.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/select.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/sigset_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/pthreadtypes.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/thread-shared-types.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/atomic_wide_counter.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/struct_mutex.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/struct_rwlock.h \
|
||||
/usr/include/net/ethernet.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/14/include/stdint.h /usr/include/stdint.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/libc-header-start.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/wchar.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/stdint-uintn.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/stdint-least.h \
|
||||
/usr/include/linux/if_ether.h /usr/include/linux/types.h \
|
||||
/usr/include/x86_64-linux-gnu/asm/types.h \
|
||||
/usr/include/asm-generic/types.h /usr/include/asm-generic/int-ll64.h \
|
||||
/usr/include/x86_64-linux-gnu/asm/bitsperlong.h \
|
||||
/usr/include/asm-generic/bitsperlong.h /usr/include/linux/posix_types.h \
|
||||
/usr/include/linux/stddef.h \
|
||||
/usr/include/x86_64-linux-gnu/asm/posix_types.h \
|
||||
/usr/include/x86_64-linux-gnu/asm/posix_types_64.h \
|
||||
/usr/include/asm-generic/posix_types.h /usr/include/string.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/locale_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__locale_t.h \
|
||||
/usr/include/strings.h /usr/include/stdlib.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/waitflags.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/waitstatus.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/floatn.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/floatn-common.h /usr/include/alloca.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/stdlib-float.h /usr/include/unistd.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/posix_opt.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/environments.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/confname.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/getopt_posix.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/getopt_core.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/unistd_ext.h \
|
||||
/usr/include/sys/capability.h /usr/include/linux/capability.h \
|
||||
/usr/include/poll.h /usr/include/x86_64-linux-gnu/sys/poll.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/poll.h /usr/include/netdb.h \
|
||||
/usr/include/netinet/in.h /usr/include/x86_64-linux-gnu/sys/socket.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_iovec.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/socket.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/socket_type.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/sockaddr.h \
|
||||
/usr/include/x86_64-linux-gnu/asm/socket.h \
|
||||
/usr/include/asm-generic/socket.h \
|
||||
/usr/include/x86_64-linux-gnu/asm/sockios.h \
|
||||
/usr/include/asm-generic/sockios.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_osockaddr.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/in.h /usr/include/rpc/netdb.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/netdb.h \
|
||||
/usr/include/x86_64-linux-gnu/sys/time.h /usr/include/openssl/ssl.h \
|
||||
/usr/include/openssl/macros.h \
|
||||
/usr/include/x86_64-linux-gnu/openssl/opensslconf.h \
|
||||
/usr/include/x86_64-linux-gnu/openssl/configuration.h \
|
||||
/usr/include/openssl/opensslv.h /usr/include/openssl/e_os2.h \
|
||||
/usr/include/inttypes.h /usr/include/openssl/e_ostime.h \
|
||||
/usr/include/openssl/comp.h /usr/include/openssl/crypto.h \
|
||||
/usr/include/time.h /usr/include/x86_64-linux-gnu/bits/time.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_tm.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_itimerspec.h \
|
||||
/usr/include/stdio.h /usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/__FILE.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/FILE.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/stdio_lim.h \
|
||||
/usr/include/openssl/safestack.h /usr/include/openssl/stack.h \
|
||||
/usr/include/openssl/types.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/14/include/limits.h \
|
||||
/usr/lib/gcc/x86_64-linux-gnu/14/include/syslimits.h \
|
||||
/usr/include/limits.h /usr/include/x86_64-linux-gnu/bits/posix1_lim.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/local_lim.h \
|
||||
/usr/include/linux/limits.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/pthread_stack_min-dynamic.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/pthread_stack_min.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/posix2_lim.h \
|
||||
/usr/include/openssl/cryptoerr.h /usr/include/openssl/symhacks.h \
|
||||
/usr/include/openssl/cryptoerr_legacy.h /usr/include/openssl/core.h \
|
||||
/usr/include/pthread.h /usr/include/sched.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/sched.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct_sched_param.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/cpu-set.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/setjmp.h \
|
||||
/usr/include/x86_64-linux-gnu/bits/types/struct___jmp_buf_tag.h \
|
||||
/usr/include/openssl/comperr.h /usr/include/openssl/bio.h \
|
||||
/usr/include/openssl/bioerr.h /usr/include/openssl/x509.h \
|
||||
/usr/include/openssl/buffer.h /usr/include/openssl/buffererr.h \
|
||||
/usr/include/openssl/evp.h /usr/include/openssl/core_dispatch.h \
|
||||
/usr/include/openssl/evperr.h /usr/include/openssl/params.h \
|
||||
/usr/include/openssl/bn.h /usr/include/openssl/bnerr.h \
|
||||
/usr/include/openssl/objects.h /usr/include/openssl/obj_mac.h \
|
||||
/usr/include/openssl/asn1.h /usr/include/openssl/asn1err.h \
|
||||
/usr/include/openssl/objectserr.h /usr/include/openssl/ec.h \
|
||||
/usr/include/openssl/ecerr.h /usr/include/openssl/rsa.h \
|
||||
/usr/include/openssl/rsaerr.h /usr/include/openssl/dsa.h \
|
||||
/usr/include/openssl/dh.h /usr/include/openssl/dherr.h \
|
||||
/usr/include/openssl/dsaerr.h /usr/include/openssl/sha.h \
|
||||
/usr/include/openssl/x509err.h /usr/include/openssl/x509_vfy.h \
|
||||
/usr/include/openssl/lhash.h /usr/include/openssl/pkcs7.h \
|
||||
/usr/include/openssl/pkcs7err.h /usr/include/openssl/http.h \
|
||||
/usr/include/openssl/conf.h /usr/include/openssl/conferr.h \
|
||||
/usr/include/openssl/conftypes.h /usr/include/openssl/pem.h \
|
||||
/usr/include/openssl/pemerr.h /usr/include/openssl/hmac.h \
|
||||
/usr/include/openssl/async.h /usr/include/openssl/asyncerr.h \
|
||||
/usr/include/openssl/ct.h /usr/include/openssl/cterr.h \
|
||||
/usr/include/openssl/sslerr.h /usr/include/openssl/sslerr_legacy.h \
|
||||
/usr/include/openssl/prov_ssl.h /usr/include/openssl/ssl2.h \
|
||||
/usr/include/openssl/ssl3.h /usr/include/openssl/tls1.h \
|
||||
/usr/include/openssl/dtls1.h /usr/include/openssl/srtp.h \
|
||||
/usr/include/openssl/quic.h /usr/include/openssl/err.h \
|
||||
/usr/include/errno.h /usr/include/x86_64-linux-gnu/bits/errno.h \
|
||||
/usr/include/linux/errno.h /usr/include/x86_64-linux-gnu/asm/errno.h \
|
||||
/usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-logs.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-dll2.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-map.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-fault-injection.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-backtrace.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-timeout-timer.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-cache-ttl.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-smd.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-state.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-retry.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-adopt.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-network-helper.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-metrics.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-ota.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-system.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-ws-close.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-callbacks.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-ws-state.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-ws-ext.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-protocols-plugins.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-context-vhost.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-conmon.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-client.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-http.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-spa.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-purify.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-misc.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-dsh.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-service.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-write.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-writeable.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-ring.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-sha1-base64.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-x509.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-cgi.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-vfs.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-gencrypto.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-lejp.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-lecp.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-cose.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-struct.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-threadpool.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-tokenize.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-lwsac.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-fts.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-diskcache.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-secure-streams.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-secure-streams-serialization.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-secure-streams-policy.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-secure-streams-client.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-secure-streams-transport-proxy.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-jrpc.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-async-dns.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-tls-sessions.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-genhash.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-genrsa.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-genaes.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-genec.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-jwk.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-jose.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-jws.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-jwe.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-eventlib-exports.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-i2c.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-spi.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-gpio.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-bb-i2c.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-bb-spi.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-button.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-led.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-pwm.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-upng.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-jpeg.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-display.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-dlo.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-ssd1306-i2c.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-ili9341-spi.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-spd1656-spi.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-uc8176-spi.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-ssd1675b-spi.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-settings.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-netdev.h \
|
||||
/home/onek8/Development/libwebsockets/include/libwebsockets/lws-html.h
|
@ -0,0 +1 @@
|
||||
28
|
@ -0,0 +1,6 @@
|
||||
# CMake generated Testfile for
|
||||
# Source directory: /home/onek8/Development/libwebsockets/minimal-examples/server/hello_world
|
||||
# Build directory: /home/onek8/Development/libwebsockets/build/minimal-examples/server/hello_world
|
||||
#
|
||||
# This file includes the relevant testing commands required for
|
||||
# testing this directory and lists subdirectories to be tested as well.
|
@ -0,0 +1,291 @@
|
||||
# CMAKE generated file: DO NOT EDIT!
|
||||
# Generated by "Unix Makefiles" Generator, CMake Version 3.30
|
||||
|
||||
# Default target executed when no arguments are given to make.
|
||||
default_target: all
|
||||
.PHONY : default_target
|
||||
|
||||
# Allow only one "make -f Makefile2" at a time, but pass parallelism.
|
||||
.NOTPARALLEL:
|
||||
|
||||
#=============================================================================
|
||||
# Special targets provided by cmake.
|
||||
|
||||
# Disable implicit rules so canonical targets will work.
|
||||
.SUFFIXES:
|
||||
|
||||
# Disable VCS-based implicit rules.
|
||||
% : %,v
|
||||
|
||||
# Disable VCS-based implicit rules.
|
||||
% : RCS/%
|
||||
|
||||
# Disable VCS-based implicit rules.
|
||||
% : RCS/%,v
|
||||
|
||||
# Disable VCS-based implicit rules.
|
||||
% : SCCS/s.%
|
||||
|
||||
# Disable VCS-based implicit rules.
|
||||
% : s.%
|
||||
|
||||
.SUFFIXES: .hpux_make_needs_suffix_list
|
||||
|
||||
# Command-line flag to silence nested $(MAKE).
|
||||
$(VERBOSE)MAKESILENT = -s
|
||||
|
||||
#Suppress display of executed commands.
|
||||
$(VERBOSE).SILENT:
|
||||
|
||||
# A target that is always out of date.
|
||||
cmake_force:
|
||||
.PHONY : cmake_force
|
||||
|
||||
#=============================================================================
|
||||
# Set environment variables for the build.
|
||||
|
||||
# The shell in which to execute make rules.
|
||||
SHELL = /bin/sh
|
||||
|
||||
# The CMake executable.
|
||||
CMAKE_COMMAND = /usr/bin/cmake
|
||||
|
||||
# The command to remove a file.
|
||||
RM = /usr/bin/cmake -E rm -f
|
||||
|
||||
# Escaping for special characters.
|
||||
EQUALS = =
|
||||
|
||||
# The top-level source directory on which CMake was run.
|
||||
CMAKE_SOURCE_DIR = /home/onek8/Development/libwebsockets
|
||||
|
||||
# The top-level build directory on which CMake was run.
|
||||
CMAKE_BINARY_DIR = /home/onek8/Development/libwebsockets/build
|
||||
|
||||
#=============================================================================
|
||||
# Targets provided globally by CMake.
|
||||
|
||||
# Special rule for the target package
|
||||
package: preinstall
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Run CPack packaging tool..."
|
||||
cd /home/onek8/Development/libwebsockets/build && /usr/bin/cpack --config ./CPackConfig.cmake
|
||||
.PHONY : package
|
||||
|
||||
# Special rule for the target package
|
||||
package/fast: package
|
||||
.PHONY : package/fast
|
||||
|
||||
# Special rule for the target package_source
|
||||
package_source:
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Run CPack packaging tool for source..."
|
||||
cd /home/onek8/Development/libwebsockets/build && /usr/bin/cpack --config ./CPackSourceConfig.cmake /home/onek8/Development/libwebsockets/build/CPackSourceConfig.cmake
|
||||
.PHONY : package_source
|
||||
|
||||
# Special rule for the target package_source
|
||||
package_source/fast: package_source
|
||||
.PHONY : package_source/fast
|
||||
|
||||
# Special rule for the target test
|
||||
test:
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Running tests..."
|
||||
/usr/bin/ctest --force-new-ctest-process $(ARGS)
|
||||
.PHONY : test
|
||||
|
||||
# Special rule for the target test
|
||||
test/fast: test
|
||||
.PHONY : test/fast
|
||||
|
||||
# Special rule for the target edit_cache
|
||||
edit_cache:
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Running CMake cache editor..."
|
||||
/usr/bin/ccmake -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR)
|
||||
.PHONY : edit_cache
|
||||
|
||||
# Special rule for the target edit_cache
|
||||
edit_cache/fast: edit_cache
|
||||
.PHONY : edit_cache/fast
|
||||
|
||||
# Special rule for the target rebuild_cache
|
||||
rebuild_cache:
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Running CMake to regenerate build system..."
|
||||
/usr/bin/cmake --regenerate-during-build -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR)
|
||||
.PHONY : rebuild_cache
|
||||
|
||||
# Special rule for the target rebuild_cache
|
||||
rebuild_cache/fast: rebuild_cache
|
||||
.PHONY : rebuild_cache/fast
|
||||
|
||||
# Special rule for the target list_install_components
|
||||
list_install_components:
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Available install components are: \"Unspecified\" \"core\" \"dev\" \"examples\""
|
||||
.PHONY : list_install_components
|
||||
|
||||
# Special rule for the target list_install_components
|
||||
list_install_components/fast: list_install_components
|
||||
.PHONY : list_install_components/fast
|
||||
|
||||
# Special rule for the target install
|
||||
install: preinstall
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Install the project..."
|
||||
/usr/bin/cmake -P cmake_install.cmake
|
||||
.PHONY : install
|
||||
|
||||
# Special rule for the target install
|
||||
install/fast: preinstall/fast
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Install the project..."
|
||||
/usr/bin/cmake -P cmake_install.cmake
|
||||
.PHONY : install/fast
|
||||
|
||||
# Special rule for the target install/local
|
||||
install/local: preinstall
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing only the local directory..."
|
||||
/usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake
|
||||
.PHONY : install/local
|
||||
|
||||
# Special rule for the target install/local
|
||||
install/local/fast: preinstall/fast
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing only the local directory..."
|
||||
/usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake
|
||||
.PHONY : install/local/fast
|
||||
|
||||
# Special rule for the target install/strip
|
||||
install/strip: preinstall
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing the project stripped..."
|
||||
/usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake
|
||||
.PHONY : install/strip
|
||||
|
||||
# Special rule for the target install/strip
|
||||
install/strip/fast: preinstall/fast
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing the project stripped..."
|
||||
/usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake
|
||||
.PHONY : install/strip/fast
|
||||
|
||||
# The main all target
|
||||
all: cmake_check_build_system
|
||||
cd /home/onek8/Development/libwebsockets/build && $(CMAKE_COMMAND) -E cmake_progress_start /home/onek8/Development/libwebsockets/build/CMakeFiles /home/onek8/Development/libwebsockets/build/minimal-examples/server/hello_world//CMakeFiles/progress.marks
|
||||
cd /home/onek8/Development/libwebsockets/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 minimal-examples/server/hello_world/all
|
||||
$(CMAKE_COMMAND) -E cmake_progress_start /home/onek8/Development/libwebsockets/build/CMakeFiles 0
|
||||
.PHONY : all
|
||||
|
||||
# The main clean target
|
||||
clean:
|
||||
cd /home/onek8/Development/libwebsockets/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 minimal-examples/server/hello_world/clean
|
||||
.PHONY : clean
|
||||
|
||||
# The main clean target
|
||||
clean/fast: clean
|
||||
.PHONY : clean/fast
|
||||
|
||||
# Prepare targets for installation.
|
||||
preinstall: all
|
||||
cd /home/onek8/Development/libwebsockets/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 minimal-examples/server/hello_world/preinstall
|
||||
.PHONY : preinstall
|
||||
|
||||
# Prepare targets for installation.
|
||||
preinstall/fast:
|
||||
cd /home/onek8/Development/libwebsockets/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 minimal-examples/server/hello_world/preinstall
|
||||
.PHONY : preinstall/fast
|
||||
|
||||
# clear depends
|
||||
depend:
|
||||
cd /home/onek8/Development/libwebsockets/build && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1
|
||||
.PHONY : depend
|
||||
|
||||
# Convenience name for target.
|
||||
minimal-examples/server/hello_world/CMakeFiles/lws-minimal-ss-server-hello_world.dir/rule:
|
||||
cd /home/onek8/Development/libwebsockets/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 minimal-examples/server/hello_world/CMakeFiles/lws-minimal-ss-server-hello_world.dir/rule
|
||||
.PHONY : minimal-examples/server/hello_world/CMakeFiles/lws-minimal-ss-server-hello_world.dir/rule
|
||||
|
||||
# Convenience name for target.
|
||||
lws-minimal-ss-server-hello_world: minimal-examples/server/hello_world/CMakeFiles/lws-minimal-ss-server-hello_world.dir/rule
|
||||
.PHONY : lws-minimal-ss-server-hello_world
|
||||
|
||||
# fast build rule for target.
|
||||
lws-minimal-ss-server-hello_world/fast:
|
||||
cd /home/onek8/Development/libwebsockets/build && $(MAKE) $(MAKESILENT) -f minimal-examples/server/hello_world/CMakeFiles/lws-minimal-ss-server-hello_world.dir/build.make minimal-examples/server/hello_world/CMakeFiles/lws-minimal-ss-server-hello_world.dir/build
|
||||
.PHONY : lws-minimal-ss-server-hello_world/fast
|
||||
|
||||
main.o: main.c.o
|
||||
.PHONY : main.o
|
||||
|
||||
# target to build an object file
|
||||
main.c.o:
|
||||
cd /home/onek8/Development/libwebsockets/build && $(MAKE) $(MAKESILENT) -f minimal-examples/server/hello_world/CMakeFiles/lws-minimal-ss-server-hello_world.dir/build.make minimal-examples/server/hello_world/CMakeFiles/lws-minimal-ss-server-hello_world.dir/main.c.o
|
||||
.PHONY : main.c.o
|
||||
|
||||
main.i: main.c.i
|
||||
.PHONY : main.i
|
||||
|
||||
# target to preprocess a source file
|
||||
main.c.i:
|
||||
cd /home/onek8/Development/libwebsockets/build && $(MAKE) $(MAKESILENT) -f minimal-examples/server/hello_world/CMakeFiles/lws-minimal-ss-server-hello_world.dir/build.make minimal-examples/server/hello_world/CMakeFiles/lws-minimal-ss-server-hello_world.dir/main.c.i
|
||||
.PHONY : main.c.i
|
||||
|
||||
main.s: main.c.s
|
||||
.PHONY : main.s
|
||||
|
||||
# target to generate assembly for a file
|
||||
main.c.s:
|
||||
cd /home/onek8/Development/libwebsockets/build && $(MAKE) $(MAKESILENT) -f minimal-examples/server/hello_world/CMakeFiles/lws-minimal-ss-server-hello_world.dir/build.make minimal-examples/server/hello_world/CMakeFiles/lws-minimal-ss-server-hello_world.dir/main.c.s
|
||||
.PHONY : main.c.s
|
||||
|
||||
ss-server.o: ss-server.c.o
|
||||
.PHONY : ss-server.o
|
||||
|
||||
# target to build an object file
|
||||
ss-server.c.o:
|
||||
cd /home/onek8/Development/libwebsockets/build && $(MAKE) $(MAKESILENT) -f minimal-examples/server/hello_world/CMakeFiles/lws-minimal-ss-server-hello_world.dir/build.make minimal-examples/server/hello_world/CMakeFiles/lws-minimal-ss-server-hello_world.dir/ss-server.c.o
|
||||
.PHONY : ss-server.c.o
|
||||
|
||||
ss-server.i: ss-server.c.i
|
||||
.PHONY : ss-server.i
|
||||
|
||||
# target to preprocess a source file
|
||||
ss-server.c.i:
|
||||
cd /home/onek8/Development/libwebsockets/build && $(MAKE) $(MAKESILENT) -f minimal-examples/server/hello_world/CMakeFiles/lws-minimal-ss-server-hello_world.dir/build.make minimal-examples/server/hello_world/CMakeFiles/lws-minimal-ss-server-hello_world.dir/ss-server.c.i
|
||||
.PHONY : ss-server.c.i
|
||||
|
||||
ss-server.s: ss-server.c.s
|
||||
.PHONY : ss-server.s
|
||||
|
||||
# target to generate assembly for a file
|
||||
ss-server.c.s:
|
||||
cd /home/onek8/Development/libwebsockets/build && $(MAKE) $(MAKESILENT) -f minimal-examples/server/hello_world/CMakeFiles/lws-minimal-ss-server-hello_world.dir/build.make minimal-examples/server/hello_world/CMakeFiles/lws-minimal-ss-server-hello_world.dir/ss-server.c.s
|
||||
.PHONY : ss-server.c.s
|
||||
|
||||
# Help Target
|
||||
help:
|
||||
@echo "The following are some of the valid targets for this Makefile:"
|
||||
@echo "... all (the default if no target is provided)"
|
||||
@echo "... clean"
|
||||
@echo "... depend"
|
||||
@echo "... edit_cache"
|
||||
@echo "... install"
|
||||
@echo "... install/local"
|
||||
@echo "... install/strip"
|
||||
@echo "... list_install_components"
|
||||
@echo "... package"
|
||||
@echo "... package_source"
|
||||
@echo "... rebuild_cache"
|
||||
@echo "... test"
|
||||
@echo "... lws-minimal-ss-server-hello_world"
|
||||
@echo "... main.o"
|
||||
@echo "... main.i"
|
||||
@echo "... main.s"
|
||||
@echo "... ss-server.o"
|
||||
@echo "... ss-server.i"
|
||||
@echo "... ss-server.s"
|
||||
.PHONY : help
|
||||
|
||||
|
||||
|
||||
#=============================================================================
|
||||
# Special targets to cleanup operation of make.
|
||||
|
||||
# Special rule to run CMake to check the build system integrity.
|
||||
# No rule that depends on this can have commands that come from listfiles
|
||||
# because they might be regenerated.
|
||||
cmake_check_build_system:
|
||||
cd /home/onek8/Development/libwebsockets/build && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0
|
||||
.PHONY : cmake_check_build_system
|
||||
|
@ -0,0 +1,44 @@
|
||||
# Install script for directory: /home/onek8/Development/libwebsockets/minimal-examples/server/hello_world
|
||||
|
||||
# Set the install prefix
|
||||
if(NOT DEFINED CMAKE_INSTALL_PREFIX)
|
||||
set(CMAKE_INSTALL_PREFIX "/usr/local")
|
||||
endif()
|
||||
string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")
|
||||
|
||||
# Set the install configuration name.
|
||||
if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
|
||||
if(BUILD_TYPE)
|
||||
string(REGEX REPLACE "^[^A-Za-z0-9_]+" ""
|
||||
CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}")
|
||||
else()
|
||||
set(CMAKE_INSTALL_CONFIG_NAME "")
|
||||
endif()
|
||||
message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
|
||||
endif()
|
||||
|
||||
# Set the component getting installed.
|
||||
if(NOT CMAKE_INSTALL_COMPONENT)
|
||||
if(COMPONENT)
|
||||
message(STATUS "Install component: \"${COMPONENT}\"")
|
||||
set(CMAKE_INSTALL_COMPONENT "${COMPONENT}")
|
||||
else()
|
||||
set(CMAKE_INSTALL_COMPONENT)
|
||||
endif()
|
||||
endif()
|
||||
|
||||
# Install shared libraries without execute permission?
|
||||
if(NOT DEFINED CMAKE_INSTALL_SO_NO_EXE)
|
||||
set(CMAKE_INSTALL_SO_NO_EXE "1")
|
||||
endif()
|
||||
|
||||
# Is this installation the result of a crosscompile?
|
||||
if(NOT DEFINED CMAKE_CROSSCOMPILING)
|
||||
set(CMAKE_CROSSCOMPILING "FALSE")
|
||||
endif()
|
||||
|
||||
# Set path to fallback-tool for dependency-resolution.
|
||||
if(NOT DEFINED CMAKE_OBJDUMP)
|
||||
set(CMAKE_OBJDUMP "/usr/bin/objdump")
|
||||
endif()
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user