add ignore_header setup option, add unit tests for parsing by header, add string_view to possible conversion values

This commit is contained in:
ado
2022-03-27 21:04:02 +02:00
parent 45d166f93d
commit a8fa5c753c
69 changed files with 4194 additions and 33 deletions

View File

@@ -0,0 +1,15 @@
set(CMAKE_HOST_SYSTEM "Linux-5.15.0-2-amd64")
set(CMAKE_HOST_SYSTEM_NAME "Linux")
set(CMAKE_HOST_SYSTEM_VERSION "5.15.0-2-amd64")
set(CMAKE_HOST_SYSTEM_PROCESSOR "x86_64")
set(CMAKE_SYSTEM "Linux-5.15.0-2-amd64")
set(CMAKE_SYSTEM_NAME "Linux")
set(CMAKE_SYSTEM_VERSION "5.15.0-2-amd64")
set(CMAKE_SYSTEM_PROCESSOR "x86_64")
set(CMAKE_CROSSCOMPILING "FALSE")
set(CMAKE_SYSTEM_LOADED 1)

View File

@@ -0,0 +1,16 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 3.22
# Relative path conversion top directories.
set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/home/ado/git/ssp/hbuild/_deps/fast_float-subbuild")
set(CMAKE_RELATIVE_PATH_TOP_BINARY "/home/ado/git/ssp/hbuild/_deps/fast_float-subbuild")
# 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})

View File

@@ -0,0 +1 @@
The system is: Linux - 5.15.0-2-amd64 - x86_64

View File

@@ -0,0 +1,11 @@
# Hashes of file build rules.
f82acfe405592066fc782df70bc61c8d CMakeFiles/fast_float-populate
502a7f79881635b903ac65b61fffd3b0 CMakeFiles/fast_float-populate-complete
ea1e47e67a341728f05da9fd1f58a04d fast_float-populate-prefix/src/fast_float-populate-stamp/fast_float-populate-build
412a77fee93c3684502f65c3d44b2833 fast_float-populate-prefix/src/fast_float-populate-stamp/fast_float-populate-configure
dac8362160aa6fea510d32aec7c7b764 fast_float-populate-prefix/src/fast_float-populate-stamp/fast_float-populate-download
7f6260650bb36ee769e8e29ed2d7bb09 fast_float-populate-prefix/src/fast_float-populate-stamp/fast_float-populate-install
576d21ed83ec9310fb5a062ea412481b fast_float-populate-prefix/src/fast_float-populate-stamp/fast_float-populate-mkdir
af08d5ff9035565c895bdf28bbed7ab0 fast_float-populate-prefix/src/fast_float-populate-stamp/fast_float-populate-patch
78453536a0ba8eb9b50a5b5418eee1e9 fast_float-populate-prefix/src/fast_float-populate-stamp/fast_float-populate-test
76b9e1e4841b396f8ffbb5c54fbf99de fast_float-populate-prefix/src/fast_float-populate-stamp/fast_float-populate-update

View File

@@ -0,0 +1,41 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 3.22
# The generator used is:
set(CMAKE_DEPENDS_GENERATOR "Unix Makefiles")
# The top level Makefile was generated from the following files:
set(CMAKE_MAKEFILE_DEPENDS
"CMakeCache.txt"
"CMakeFiles/3.22.1/CMakeSystem.cmake"
"CMakeLists.txt"
"fast_float-populate-prefix/tmp/fast_float-populate-cfgcmd.txt.in"
"/usr/share/cmake-3.22/Modules/CMakeGenericSystem.cmake"
"/usr/share/cmake-3.22/Modules/CMakeInitializeConfigs.cmake"
"/usr/share/cmake-3.22/Modules/CMakeSystemSpecificInformation.cmake"
"/usr/share/cmake-3.22/Modules/CMakeSystemSpecificInitialize.cmake"
"/usr/share/cmake-3.22/Modules/ExternalProject-gitupdate.cmake.in"
"/usr/share/cmake-3.22/Modules/ExternalProject.cmake"
"/usr/share/cmake-3.22/Modules/Platform/Linux.cmake"
"/usr/share/cmake-3.22/Modules/Platform/UnixPaths.cmake"
"/usr/share/cmake-3.22/Modules/RepositoryInfo.txt.in"
)
# The corresponding makefile is:
set(CMAKE_MAKEFILE_OUTPUTS
"Makefile"
"CMakeFiles/cmake.check_cache"
)
# Byproducts of CMake generate step:
set(CMAKE_MAKEFILE_PRODUCTS
"fast_float-populate-prefix/src/fast_float-populate-stamp/fast_float-populate-gitinfo.txt"
"fast_float-populate-prefix/tmp/fast_float-populate-gitupdate.cmake"
"fast_float-populate-prefix/tmp/fast_float-populate-cfgcmd.txt"
"CMakeFiles/CMakeDirectoryInformation.cmake"
)
# Dependency information for all targets:
set(CMAKE_DEPEND_INFO_FILES
"CMakeFiles/fast_float-populate.dir/DependInfo.cmake"
)

View File

@@ -0,0 +1,112 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 3.22
# Default target executed when no arguments are given to make.
default_target: all
.PHONY : default_target
#=============================================================================
# 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/ado/git/ssp/hbuild/_deps/fast_float-subbuild
# The top-level build directory on which CMake was run.
CMAKE_BINARY_DIR = /home/ado/git/ssp/hbuild/_deps/fast_float-subbuild
#=============================================================================
# Directory level rules for the build root directory
# The main recursive "all" target.
all: CMakeFiles/fast_float-populate.dir/all
.PHONY : all
# The main recursive "preinstall" target.
preinstall:
.PHONY : preinstall
# The main recursive "clean" target.
clean: CMakeFiles/fast_float-populate.dir/clean
.PHONY : clean
#=============================================================================
# Target rules for target CMakeFiles/fast_float-populate.dir
# All Build rule for target.
CMakeFiles/fast_float-populate.dir/all:
$(MAKE) $(MAKESILENT) -f CMakeFiles/fast_float-populate.dir/build.make CMakeFiles/fast_float-populate.dir/depend
$(MAKE) $(MAKESILENT) -f CMakeFiles/fast_float-populate.dir/build.make CMakeFiles/fast_float-populate.dir/build
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/ado/git/ssp/hbuild/_deps/fast_float-subbuild/CMakeFiles --progress-num=1,2,3,4,5,6,7,8,9 "Built target fast_float-populate"
.PHONY : CMakeFiles/fast_float-populate.dir/all
# Build rule for subdir invocation for target.
CMakeFiles/fast_float-populate.dir/rule: cmake_check_build_system
$(CMAKE_COMMAND) -E cmake_progress_start /home/ado/git/ssp/hbuild/_deps/fast_float-subbuild/CMakeFiles 9
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 CMakeFiles/fast_float-populate.dir/all
$(CMAKE_COMMAND) -E cmake_progress_start /home/ado/git/ssp/hbuild/_deps/fast_float-subbuild/CMakeFiles 0
.PHONY : CMakeFiles/fast_float-populate.dir/rule
# Convenience name for target.
fast_float-populate: CMakeFiles/fast_float-populate.dir/rule
.PHONY : fast_float-populate
# clean rule for target.
CMakeFiles/fast_float-populate.dir/clean:
$(MAKE) $(MAKESILENT) -f CMakeFiles/fast_float-populate.dir/build.make CMakeFiles/fast_float-populate.dir/clean
.PHONY : CMakeFiles/fast_float-populate.dir/clean
#=============================================================================
# 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:
$(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0
.PHONY : cmake_check_build_system

View File

@@ -0,0 +1,3 @@
/home/ado/git/ssp/hbuild/_deps/fast_float-subbuild/CMakeFiles/fast_float-populate.dir
/home/ado/git/ssp/hbuild/_deps/fast_float-subbuild/CMakeFiles/edit_cache.dir
/home/ado/git/ssp/hbuild/_deps/fast_float-subbuild/CMakeFiles/rebuild_cache.dir

View File

@@ -0,0 +1 @@
# This file is generated by cmake for dependency checking of the CMakeCache.txt file

View File

@@ -0,0 +1,18 @@
# Consider dependencies only in project.
set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF)
# The set of languages for which implicit dependencies are needed:
set(CMAKE_DEPENDS_LANGUAGES
)
# The set of dependency files which are needed:
set(CMAKE_DEPENDS_DEPENDENCY_FILES
)
# Targets to which this target links.
set(CMAKE_TARGET_LINKED_INFO_FILES
)
# Fortran module output directory.
set(CMAKE_Fortran_TARGET_MODULE_DIR "")

View File

@@ -0,0 +1,46 @@
{
"sources" :
[
{
"file" : "/home/ado/git/ssp/hbuild/_deps/fast_float-subbuild/CMakeFiles/fast_float-populate"
},
{
"file" : "/home/ado/git/ssp/hbuild/_deps/fast_float-subbuild/CMakeFiles/fast_float-populate.rule"
},
{
"file" : "/home/ado/git/ssp/hbuild/_deps/fast_float-subbuild/CMakeFiles/fast_float-populate-complete.rule"
},
{
"file" : "/home/ado/git/ssp/hbuild/_deps/fast_float-subbuild/fast_float-populate-prefix/src/fast_float-populate-stamp/fast_float-populate-build.rule"
},
{
"file" : "/home/ado/git/ssp/hbuild/_deps/fast_float-subbuild/fast_float-populate-prefix/src/fast_float-populate-stamp/fast_float-populate-configure.rule"
},
{
"file" : "/home/ado/git/ssp/hbuild/_deps/fast_float-subbuild/fast_float-populate-prefix/src/fast_float-populate-stamp/fast_float-populate-download.rule"
},
{
"file" : "/home/ado/git/ssp/hbuild/_deps/fast_float-subbuild/fast_float-populate-prefix/src/fast_float-populate-stamp/fast_float-populate-install.rule"
},
{
"file" : "/home/ado/git/ssp/hbuild/_deps/fast_float-subbuild/fast_float-populate-prefix/src/fast_float-populate-stamp/fast_float-populate-mkdir.rule"
},
{
"file" : "/home/ado/git/ssp/hbuild/_deps/fast_float-subbuild/fast_float-populate-prefix/src/fast_float-populate-stamp/fast_float-populate-patch.rule"
},
{
"file" : "/home/ado/git/ssp/hbuild/_deps/fast_float-subbuild/fast_float-populate-prefix/src/fast_float-populate-stamp/fast_float-populate-test.rule"
},
{
"file" : "/home/ado/git/ssp/hbuild/_deps/fast_float-subbuild/fast_float-populate-prefix/src/fast_float-populate-stamp/fast_float-populate-update.rule"
}
],
"target" :
{
"labels" :
[
"fast_float-populate"
],
"name" : "fast_float-populate"
}
}

View File

@@ -0,0 +1,14 @@
# Target labels
fast_float-populate
# Source files and their labels
/home/ado/git/ssp/hbuild/_deps/fast_float-subbuild/CMakeFiles/fast_float-populate
/home/ado/git/ssp/hbuild/_deps/fast_float-subbuild/CMakeFiles/fast_float-populate.rule
/home/ado/git/ssp/hbuild/_deps/fast_float-subbuild/CMakeFiles/fast_float-populate-complete.rule
/home/ado/git/ssp/hbuild/_deps/fast_float-subbuild/fast_float-populate-prefix/src/fast_float-populate-stamp/fast_float-populate-build.rule
/home/ado/git/ssp/hbuild/_deps/fast_float-subbuild/fast_float-populate-prefix/src/fast_float-populate-stamp/fast_float-populate-configure.rule
/home/ado/git/ssp/hbuild/_deps/fast_float-subbuild/fast_float-populate-prefix/src/fast_float-populate-stamp/fast_float-populate-download.rule
/home/ado/git/ssp/hbuild/_deps/fast_float-subbuild/fast_float-populate-prefix/src/fast_float-populate-stamp/fast_float-populate-install.rule
/home/ado/git/ssp/hbuild/_deps/fast_float-subbuild/fast_float-populate-prefix/src/fast_float-populate-stamp/fast_float-populate-mkdir.rule
/home/ado/git/ssp/hbuild/_deps/fast_float-subbuild/fast_float-populate-prefix/src/fast_float-populate-stamp/fast_float-populate-patch.rule
/home/ado/git/ssp/hbuild/_deps/fast_float-subbuild/fast_float-populate-prefix/src/fast_float-populate-stamp/fast_float-populate-test.rule
/home/ado/git/ssp/hbuild/_deps/fast_float-subbuild/fast_float-populate-prefix/src/fast_float-populate-stamp/fast_float-populate-update.rule

View File

@@ -0,0 +1,162 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 3.22
# Delete rule output on recipe failure.
.DELETE_ON_ERROR:
#=============================================================================
# Special targets provided by cmake.
# Disable implicit rules so canonical targets will work.
.SUFFIXES:
# Disable VCS-based implicit rules.
% : %,v
# Disable VCS-based implicit rules.
% : RCS/%
# Disable VCS-based implicit rules.
% : RCS/%,v
# Disable VCS-based implicit rules.
% : SCCS/s.%
# Disable VCS-based implicit rules.
% : s.%
.SUFFIXES: .hpux_make_needs_suffix_list
# Command-line flag to silence nested $(MAKE).
$(VERBOSE)MAKESILENT = -s
#Suppress display of executed commands.
$(VERBOSE).SILENT:
# A target that is always out of date.
cmake_force:
.PHONY : cmake_force
#=============================================================================
# Set environment variables for the build.
# The shell in which to execute make rules.
SHELL = /bin/sh
# The CMake executable.
CMAKE_COMMAND = /usr/bin/cmake
# The command to remove a file.
RM = /usr/bin/cmake -E rm -f
# Escaping for special characters.
EQUALS = =
# The top-level source directory on which CMake was run.
CMAKE_SOURCE_DIR = /home/ado/git/ssp/hbuild/_deps/fast_float-subbuild
# The top-level build directory on which CMake was run.
CMAKE_BINARY_DIR = /home/ado/git/ssp/hbuild/_deps/fast_float-subbuild
# Utility rule file for fast_float-populate.
# Include any custom commands dependencies for this target.
include CMakeFiles/fast_float-populate.dir/compiler_depend.make
# Include the progress variables for this target.
include CMakeFiles/fast_float-populate.dir/progress.make
CMakeFiles/fast_float-populate: CMakeFiles/fast_float-populate-complete
CMakeFiles/fast_float-populate-complete: fast_float-populate-prefix/src/fast_float-populate-stamp/fast_float-populate-install
CMakeFiles/fast_float-populate-complete: fast_float-populate-prefix/src/fast_float-populate-stamp/fast_float-populate-mkdir
CMakeFiles/fast_float-populate-complete: fast_float-populate-prefix/src/fast_float-populate-stamp/fast_float-populate-download
CMakeFiles/fast_float-populate-complete: fast_float-populate-prefix/src/fast_float-populate-stamp/fast_float-populate-update
CMakeFiles/fast_float-populate-complete: fast_float-populate-prefix/src/fast_float-populate-stamp/fast_float-populate-patch
CMakeFiles/fast_float-populate-complete: fast_float-populate-prefix/src/fast_float-populate-stamp/fast_float-populate-configure
CMakeFiles/fast_float-populate-complete: fast_float-populate-prefix/src/fast_float-populate-stamp/fast_float-populate-build
CMakeFiles/fast_float-populate-complete: fast_float-populate-prefix/src/fast_float-populate-stamp/fast_float-populate-install
CMakeFiles/fast_float-populate-complete: fast_float-populate-prefix/src/fast_float-populate-stamp/fast_float-populate-test
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --blue --bold --progress-dir=/home/ado/git/ssp/hbuild/_deps/fast_float-subbuild/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Completed 'fast_float-populate'"
/usr/bin/cmake -E make_directory /home/ado/git/ssp/hbuild/_deps/fast_float-subbuild/CMakeFiles
/usr/bin/cmake -E touch /home/ado/git/ssp/hbuild/_deps/fast_float-subbuild/CMakeFiles/fast_float-populate-complete
/usr/bin/cmake -E touch /home/ado/git/ssp/hbuild/_deps/fast_float-subbuild/fast_float-populate-prefix/src/fast_float-populate-stamp/fast_float-populate-done
fast_float-populate-prefix/src/fast_float-populate-stamp/fast_float-populate-update:
.PHONY : fast_float-populate-prefix/src/fast_float-populate-stamp/fast_float-populate-update
fast_float-populate-prefix/src/fast_float-populate-stamp/fast_float-populate-build: fast_float-populate-prefix/src/fast_float-populate-stamp/fast_float-populate-configure
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --blue --bold --progress-dir=/home/ado/git/ssp/hbuild/_deps/fast_float-subbuild/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "No build step for 'fast_float-populate'"
cd /home/ado/git/ssp/hbuild/_deps/fast_float-build && /usr/bin/cmake -E echo_append
cd /home/ado/git/ssp/hbuild/_deps/fast_float-build && /usr/bin/cmake -E touch /home/ado/git/ssp/hbuild/_deps/fast_float-subbuild/fast_float-populate-prefix/src/fast_float-populate-stamp/fast_float-populate-build
fast_float-populate-prefix/src/fast_float-populate-stamp/fast_float-populate-configure: fast_float-populate-prefix/tmp/fast_float-populate-cfgcmd.txt
fast_float-populate-prefix/src/fast_float-populate-stamp/fast_float-populate-configure: fast_float-populate-prefix/src/fast_float-populate-stamp/fast_float-populate-patch
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --blue --bold --progress-dir=/home/ado/git/ssp/hbuild/_deps/fast_float-subbuild/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "No configure step for 'fast_float-populate'"
cd /home/ado/git/ssp/hbuild/_deps/fast_float-build && /usr/bin/cmake -E echo_append
cd /home/ado/git/ssp/hbuild/_deps/fast_float-build && /usr/bin/cmake -E touch /home/ado/git/ssp/hbuild/_deps/fast_float-subbuild/fast_float-populate-prefix/src/fast_float-populate-stamp/fast_float-populate-configure
fast_float-populate-prefix/src/fast_float-populate-stamp/fast_float-populate-download: fast_float-populate-prefix/src/fast_float-populate-stamp/fast_float-populate-gitinfo.txt
fast_float-populate-prefix/src/fast_float-populate-stamp/fast_float-populate-download: fast_float-populate-prefix/src/fast_float-populate-stamp/fast_float-populate-mkdir
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --blue --bold --progress-dir=/home/ado/git/ssp/hbuild/_deps/fast_float-subbuild/CMakeFiles --progress-num=$(CMAKE_PROGRESS_4) "Performing download step (git clone) for 'fast_float-populate'"
cd /home/ado/git/ssp/hbuild/_deps && /usr/bin/cmake -P /home/ado/git/ssp/hbuild/_deps/fast_float-subbuild/fast_float-populate-prefix/tmp/fast_float-populate-gitclone.cmake
cd /home/ado/git/ssp/hbuild/_deps && /usr/bin/cmake -E touch /home/ado/git/ssp/hbuild/_deps/fast_float-subbuild/fast_float-populate-prefix/src/fast_float-populate-stamp/fast_float-populate-download
fast_float-populate-prefix/src/fast_float-populate-stamp/fast_float-populate-install: fast_float-populate-prefix/src/fast_float-populate-stamp/fast_float-populate-build
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --blue --bold --progress-dir=/home/ado/git/ssp/hbuild/_deps/fast_float-subbuild/CMakeFiles --progress-num=$(CMAKE_PROGRESS_5) "No install step for 'fast_float-populate'"
cd /home/ado/git/ssp/hbuild/_deps/fast_float-build && /usr/bin/cmake -E echo_append
cd /home/ado/git/ssp/hbuild/_deps/fast_float-build && /usr/bin/cmake -E touch /home/ado/git/ssp/hbuild/_deps/fast_float-subbuild/fast_float-populate-prefix/src/fast_float-populate-stamp/fast_float-populate-install
fast_float-populate-prefix/src/fast_float-populate-stamp/fast_float-populate-mkdir:
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --blue --bold --progress-dir=/home/ado/git/ssp/hbuild/_deps/fast_float-subbuild/CMakeFiles --progress-num=$(CMAKE_PROGRESS_6) "Creating directories for 'fast_float-populate'"
/usr/bin/cmake -E make_directory /home/ado/git/ssp/hbuild/_deps/fast_float-src
/usr/bin/cmake -E make_directory /home/ado/git/ssp/hbuild/_deps/fast_float-build
/usr/bin/cmake -E make_directory /home/ado/git/ssp/hbuild/_deps/fast_float-subbuild/fast_float-populate-prefix
/usr/bin/cmake -E make_directory /home/ado/git/ssp/hbuild/_deps/fast_float-subbuild/fast_float-populate-prefix/tmp
/usr/bin/cmake -E make_directory /home/ado/git/ssp/hbuild/_deps/fast_float-subbuild/fast_float-populate-prefix/src/fast_float-populate-stamp
/usr/bin/cmake -E make_directory /home/ado/git/ssp/hbuild/_deps/fast_float-subbuild/fast_float-populate-prefix/src
/usr/bin/cmake -E make_directory /home/ado/git/ssp/hbuild/_deps/fast_float-subbuild/fast_float-populate-prefix/src/fast_float-populate-stamp
/usr/bin/cmake -E touch /home/ado/git/ssp/hbuild/_deps/fast_float-subbuild/fast_float-populate-prefix/src/fast_float-populate-stamp/fast_float-populate-mkdir
fast_float-populate-prefix/src/fast_float-populate-stamp/fast_float-populate-patch: fast_float-populate-prefix/src/fast_float-populate-stamp/fast_float-populate-update
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --blue --bold --progress-dir=/home/ado/git/ssp/hbuild/_deps/fast_float-subbuild/CMakeFiles --progress-num=$(CMAKE_PROGRESS_7) "No patch step for 'fast_float-populate'"
/usr/bin/cmake -E echo_append
/usr/bin/cmake -E touch /home/ado/git/ssp/hbuild/_deps/fast_float-subbuild/fast_float-populate-prefix/src/fast_float-populate-stamp/fast_float-populate-patch
fast_float-populate-prefix/src/fast_float-populate-stamp/fast_float-populate-update:
.PHONY : fast_float-populate-prefix/src/fast_float-populate-stamp/fast_float-populate-update
fast_float-populate-prefix/src/fast_float-populate-stamp/fast_float-populate-test: fast_float-populate-prefix/src/fast_float-populate-stamp/fast_float-populate-install
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --blue --bold --progress-dir=/home/ado/git/ssp/hbuild/_deps/fast_float-subbuild/CMakeFiles --progress-num=$(CMAKE_PROGRESS_8) "No test step for 'fast_float-populate'"
cd /home/ado/git/ssp/hbuild/_deps/fast_float-build && /usr/bin/cmake -E echo_append
cd /home/ado/git/ssp/hbuild/_deps/fast_float-build && /usr/bin/cmake -E touch /home/ado/git/ssp/hbuild/_deps/fast_float-subbuild/fast_float-populate-prefix/src/fast_float-populate-stamp/fast_float-populate-test
fast_float-populate-prefix/src/fast_float-populate-stamp/fast_float-populate-update: fast_float-populate-prefix/src/fast_float-populate-stamp/fast_float-populate-download
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --blue --bold --progress-dir=/home/ado/git/ssp/hbuild/_deps/fast_float-subbuild/CMakeFiles --progress-num=$(CMAKE_PROGRESS_9) "Performing update step for 'fast_float-populate'"
cd /home/ado/git/ssp/hbuild/_deps/fast_float-src && /usr/bin/cmake -P /home/ado/git/ssp/hbuild/_deps/fast_float-subbuild/fast_float-populate-prefix/tmp/fast_float-populate-gitupdate.cmake
fast_float-populate: CMakeFiles/fast_float-populate
fast_float-populate: CMakeFiles/fast_float-populate-complete
fast_float-populate: fast_float-populate-prefix/src/fast_float-populate-stamp/fast_float-populate-build
fast_float-populate: fast_float-populate-prefix/src/fast_float-populate-stamp/fast_float-populate-configure
fast_float-populate: fast_float-populate-prefix/src/fast_float-populate-stamp/fast_float-populate-download
fast_float-populate: fast_float-populate-prefix/src/fast_float-populate-stamp/fast_float-populate-install
fast_float-populate: fast_float-populate-prefix/src/fast_float-populate-stamp/fast_float-populate-mkdir
fast_float-populate: fast_float-populate-prefix/src/fast_float-populate-stamp/fast_float-populate-patch
fast_float-populate: fast_float-populate-prefix/src/fast_float-populate-stamp/fast_float-populate-test
fast_float-populate: fast_float-populate-prefix/src/fast_float-populate-stamp/fast_float-populate-update
fast_float-populate: CMakeFiles/fast_float-populate.dir/build.make
.PHONY : fast_float-populate
# Rule to build all files generated by this target.
CMakeFiles/fast_float-populate.dir/build: fast_float-populate
.PHONY : CMakeFiles/fast_float-populate.dir/build
CMakeFiles/fast_float-populate.dir/clean:
$(CMAKE_COMMAND) -P CMakeFiles/fast_float-populate.dir/cmake_clean.cmake
.PHONY : CMakeFiles/fast_float-populate.dir/clean
CMakeFiles/fast_float-populate.dir/depend:
cd /home/ado/git/ssp/hbuild/_deps/fast_float-subbuild && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/ado/git/ssp/hbuild/_deps/fast_float-subbuild /home/ado/git/ssp/hbuild/_deps/fast_float-subbuild /home/ado/git/ssp/hbuild/_deps/fast_float-subbuild /home/ado/git/ssp/hbuild/_deps/fast_float-subbuild /home/ado/git/ssp/hbuild/_deps/fast_float-subbuild/CMakeFiles/fast_float-populate.dir/DependInfo.cmake --color=$(COLOR)
.PHONY : CMakeFiles/fast_float-populate.dir/depend

View File

@@ -0,0 +1,17 @@
file(REMOVE_RECURSE
"CMakeFiles/fast_float-populate"
"CMakeFiles/fast_float-populate-complete"
"fast_float-populate-prefix/src/fast_float-populate-stamp/fast_float-populate-build"
"fast_float-populate-prefix/src/fast_float-populate-stamp/fast_float-populate-configure"
"fast_float-populate-prefix/src/fast_float-populate-stamp/fast_float-populate-download"
"fast_float-populate-prefix/src/fast_float-populate-stamp/fast_float-populate-install"
"fast_float-populate-prefix/src/fast_float-populate-stamp/fast_float-populate-mkdir"
"fast_float-populate-prefix/src/fast_float-populate-stamp/fast_float-populate-patch"
"fast_float-populate-prefix/src/fast_float-populate-stamp/fast_float-populate-test"
"fast_float-populate-prefix/src/fast_float-populate-stamp/fast_float-populate-update"
)
# Per-language clean rules from dependency scanning.
foreach(lang )
include(CMakeFiles/fast_float-populate.dir/cmake_clean_${lang}.cmake OPTIONAL)
endforeach()

View File

@@ -0,0 +1,2 @@
# Empty custom commands generated dependencies file for fast_float-populate.
# This may be replaced when dependencies are built.

View File

@@ -0,0 +1,2 @@
# CMAKE generated file: DO NOT EDIT!
# Timestamp file for custom commands dependencies management for fast_float-populate.

View File

@@ -0,0 +1,10 @@
CMAKE_PROGRESS_1 = 1
CMAKE_PROGRESS_2 = 2
CMAKE_PROGRESS_3 = 3
CMAKE_PROGRESS_4 = 4
CMAKE_PROGRESS_5 = 5
CMAKE_PROGRESS_6 = 6
CMAKE_PROGRESS_7 = 7
CMAKE_PROGRESS_8 = 8
CMAKE_PROGRESS_9 = 9

View File

@@ -0,0 +1 @@
9