Streamlined project structure
This commit is contained in:
parent
0fc8ea919d
commit
2f6a1b34b0
43
Hazelnupp/CMakeLists.txt
Normal file
43
Hazelnupp/CMakeLists.txt
Normal file
@ -0,0 +1,43 @@
|
|||||||
|
cmake_minimum_required(VERSION 3.16)
|
||||||
|
project(Hazelnupp)
|
||||||
|
|
||||||
|
###################
|
||||||
|
# Library project #
|
||||||
|
###################
|
||||||
|
set(CMAKE_CXX_STANDARD 17)
|
||||||
|
|
||||||
|
FILE(GLOB main_src src/*.cpp)
|
||||||
|
add_library(${PROJECT_NAME}
|
||||||
|
${main_src}
|
||||||
|
)
|
||||||
|
|
||||||
|
target_include_directories(${PROJECT_NAME} PRIVATE
|
||||||
|
include
|
||||||
|
)
|
||||||
|
|
||||||
|
#########
|
||||||
|
# Tests #
|
||||||
|
#########
|
||||||
|
FILE(GLOB test_src test/*.cpp)
|
||||||
|
add_executable(test
|
||||||
|
test/Catch2.h
|
||||||
|
${test_src}
|
||||||
|
)
|
||||||
|
target_link_libraries(test ${PROJECT_NAME})
|
||||||
|
|
||||||
|
target_include_directories(test PRIVATE
|
||||||
|
include
|
||||||
|
)
|
||||||
|
|
||||||
|
##############
|
||||||
|
# Executable #
|
||||||
|
##############
|
||||||
|
FILE(GLOB exec_src exec/*.cpp)
|
||||||
|
add_executable(exec
|
||||||
|
${exec_src}
|
||||||
|
)
|
||||||
|
target_link_libraries(exec ${PROJECT_NAME})
|
||||||
|
|
||||||
|
target_include_directories(exec PRIVATE
|
||||||
|
include
|
||||||
|
)
|
@ -1,171 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
||||||
<ItemGroup Label="ProjectConfigurations">
|
|
||||||
<ProjectConfiguration Include="Debug|Win32">
|
|
||||||
<Configuration>Debug</Configuration>
|
|
||||||
<Platform>Win32</Platform>
|
|
||||||
</ProjectConfiguration>
|
|
||||||
<ProjectConfiguration Include="Release|Win32">
|
|
||||||
<Configuration>Release</Configuration>
|
|
||||||
<Platform>Win32</Platform>
|
|
||||||
</ProjectConfiguration>
|
|
||||||
<ProjectConfiguration Include="Debug|x64">
|
|
||||||
<Configuration>Debug</Configuration>
|
|
||||||
<Platform>x64</Platform>
|
|
||||||
</ProjectConfiguration>
|
|
||||||
<ProjectConfiguration Include="Release|x64">
|
|
||||||
<Configuration>Release</Configuration>
|
|
||||||
<Platform>x64</Platform>
|
|
||||||
</ProjectConfiguration>
|
|
||||||
</ItemGroup>
|
|
||||||
<PropertyGroup Label="Globals">
|
|
||||||
<VCProjectVersion>16.0</VCProjectVersion>
|
|
||||||
<Keyword>Win32Proj</Keyword>
|
|
||||||
<ProjectGuid>{9aeaa0c6-9088-4f6e-9224-5c67d3163a17}</ProjectGuid>
|
|
||||||
<RootNamespace>Hazelnupp</RootNamespace>
|
|
||||||
<WindowsTargetPlatformVersion>10.0</WindowsTargetPlatformVersion>
|
|
||||||
</PropertyGroup>
|
|
||||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
|
|
||||||
<ConfigurationType>StaticLibrary</ConfigurationType>
|
|
||||||
<UseDebugLibraries>true</UseDebugLibraries>
|
|
||||||
<PlatformToolset>v142</PlatformToolset>
|
|
||||||
<CharacterSet>Unicode</CharacterSet>
|
|
||||||
</PropertyGroup>
|
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
|
|
||||||
<ConfigurationType>StaticLibrary</ConfigurationType>
|
|
||||||
<UseDebugLibraries>false</UseDebugLibraries>
|
|
||||||
<PlatformToolset>v142</PlatformToolset>
|
|
||||||
<WholeProgramOptimization>true</WholeProgramOptimization>
|
|
||||||
<CharacterSet>Unicode</CharacterSet>
|
|
||||||
</PropertyGroup>
|
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
|
|
||||||
<ConfigurationType>StaticLibrary</ConfigurationType>
|
|
||||||
<UseDebugLibraries>true</UseDebugLibraries>
|
|
||||||
<PlatformToolset>v142</PlatformToolset>
|
|
||||||
<CharacterSet>Unicode</CharacterSet>
|
|
||||||
</PropertyGroup>
|
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
|
|
||||||
<ConfigurationType>StaticLibrary</ConfigurationType>
|
|
||||||
<UseDebugLibraries>false</UseDebugLibraries>
|
|
||||||
<PlatformToolset>v142</PlatformToolset>
|
|
||||||
<WholeProgramOptimization>true</WholeProgramOptimization>
|
|
||||||
<CharacterSet>Unicode</CharacterSet>
|
|
||||||
</PropertyGroup>
|
|
||||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
|
||||||
<ImportGroup Label="ExtensionSettings">
|
|
||||||
</ImportGroup>
|
|
||||||
<ImportGroup Label="Shared">
|
|
||||||
</ImportGroup>
|
|
||||||
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
|
||||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
|
||||||
</ImportGroup>
|
|
||||||
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
|
||||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
|
||||||
</ImportGroup>
|
|
||||||
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
|
||||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
|
||||||
</ImportGroup>
|
|
||||||
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
|
|
||||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
|
||||||
</ImportGroup>
|
|
||||||
<PropertyGroup Label="UserMacros" />
|
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
|
||||||
<LinkIncremental>true</LinkIncremental>
|
|
||||||
</PropertyGroup>
|
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
|
||||||
<LinkIncremental>false</LinkIncremental>
|
|
||||||
</PropertyGroup>
|
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
|
||||||
<LinkIncremental>true</LinkIncremental>
|
|
||||||
</PropertyGroup>
|
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
|
|
||||||
<LinkIncremental>false</LinkIncremental>
|
|
||||||
</PropertyGroup>
|
|
||||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
|
||||||
<ClCompile>
|
|
||||||
<WarningLevel>Level3</WarningLevel>
|
|
||||||
<SDLCheck>true</SDLCheck>
|
|
||||||
<PreprocessorDefinitions>WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
||||||
<ConformanceMode>true</ConformanceMode>
|
|
||||||
</ClCompile>
|
|
||||||
<Link>
|
|
||||||
<SubSystem>Console</SubSystem>
|
|
||||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
|
||||||
</Link>
|
|
||||||
</ItemDefinitionGroup>
|
|
||||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
|
||||||
<ClCompile>
|
|
||||||
<WarningLevel>Level3</WarningLevel>
|
|
||||||
<FunctionLevelLinking>true</FunctionLevelLinking>
|
|
||||||
<IntrinsicFunctions>true</IntrinsicFunctions>
|
|
||||||
<SDLCheck>true</SDLCheck>
|
|
||||||
<PreprocessorDefinitions>WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
||||||
<ConformanceMode>true</ConformanceMode>
|
|
||||||
</ClCompile>
|
|
||||||
<Link>
|
|
||||||
<SubSystem>Console</SubSystem>
|
|
||||||
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
|
||||||
<OptimizeReferences>true</OptimizeReferences>
|
|
||||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
|
||||||
</Link>
|
|
||||||
</ItemDefinitionGroup>
|
|
||||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
|
||||||
<ClCompile>
|
|
||||||
<WarningLevel>Level3</WarningLevel>
|
|
||||||
<SDLCheck>true</SDLCheck>
|
|
||||||
<PreprocessorDefinitions>_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
||||||
<ConformanceMode>true</ConformanceMode>
|
|
||||||
</ClCompile>
|
|
||||||
<Link>
|
|
||||||
<SubSystem>Console</SubSystem>
|
|
||||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
|
||||||
</Link>
|
|
||||||
</ItemDefinitionGroup>
|
|
||||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
|
|
||||||
<ClCompile>
|
|
||||||
<WarningLevel>Level3</WarningLevel>
|
|
||||||
<FunctionLevelLinking>true</FunctionLevelLinking>
|
|
||||||
<IntrinsicFunctions>true</IntrinsicFunctions>
|
|
||||||
<SDLCheck>true</SDLCheck>
|
|
||||||
<PreprocessorDefinitions>NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
||||||
<ConformanceMode>true</ConformanceMode>
|
|
||||||
</ClCompile>
|
|
||||||
<Link>
|
|
||||||
<SubSystem>Console</SubSystem>
|
|
||||||
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
|
||||||
<OptimizeReferences>true</OptimizeReferences>
|
|
||||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
|
||||||
</Link>
|
|
||||||
</ItemDefinitionGroup>
|
|
||||||
<ItemGroup>
|
|
||||||
<ClCompile Include="FloatValue.cpp" />
|
|
||||||
<ClCompile Include="CmdArgsInterface.cpp" />
|
|
||||||
<ClCompile Include="IntValue.cpp" />
|
|
||||||
<ClCompile Include="ListValue.cpp" />
|
|
||||||
<ClCompile Include="Parameter.cpp" />
|
|
||||||
<ClCompile Include="StringTools.cpp" />
|
|
||||||
<ClCompile Include="StringValue.cpp" />
|
|
||||||
<ClCompile Include="Value.cpp" />
|
|
||||||
<ClCompile Include="VoidValue.cpp" />
|
|
||||||
</ItemGroup>
|
|
||||||
<ItemGroup>
|
|
||||||
<ClInclude Include="FloatValue.h" />
|
|
||||||
<ClInclude Include="CmdArgsInterface.h" />
|
|
||||||
<ClInclude Include="HazelnuppException.h" />
|
|
||||||
<ClInclude Include="IntValue.h" />
|
|
||||||
<ClInclude Include="ListValue.h" />
|
|
||||||
<ClInclude Include="ParamConstraint.h" />
|
|
||||||
<ClInclude Include="Parameter.h" />
|
|
||||||
<ClInclude Include="DataType.h" />
|
|
||||||
<ClInclude Include="Placeholders.h" />
|
|
||||||
<ClInclude Include="StringTools.h" />
|
|
||||||
<ClInclude Include="StringValue.h" />
|
|
||||||
<ClInclude Include="Value.h" />
|
|
||||||
<ClInclude Include="Version.h" />
|
|
||||||
<ClInclude Include="VoidValue.h" />
|
|
||||||
</ItemGroup>
|
|
||||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
|
||||||
<ImportGroup Label="ExtensionTargets">
|
|
||||||
</ImportGroup>
|
|
||||||
</Project>
|
|
@ -1,90 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
||||||
<ItemGroup>
|
|
||||||
<Filter Include="Quelldateien">
|
|
||||||
<UniqueIdentifier>{4FC737F1-C7A5-4376-A066-2A32D752A2FF}</UniqueIdentifier>
|
|
||||||
<Extensions>cpp;c;cc;cxx;c++;cppm;ixx;def;odl;idl;hpj;bat;asm;asmx</Extensions>
|
|
||||||
</Filter>
|
|
||||||
<Filter Include="Headerdateien">
|
|
||||||
<UniqueIdentifier>{93995380-89BD-4b04-88EB-625FBE52EBFB}</UniqueIdentifier>
|
|
||||||
<Extensions>h;hh;hpp;hxx;h++;hm;inl;inc;ipp;xsd</Extensions>
|
|
||||||
</Filter>
|
|
||||||
<Filter Include="Ressourcendateien">
|
|
||||||
<UniqueIdentifier>{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}</UniqueIdentifier>
|
|
||||||
<Extensions>rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms</Extensions>
|
|
||||||
</Filter>
|
|
||||||
</ItemGroup>
|
|
||||||
<ItemGroup>
|
|
||||||
<ClCompile Include="Parameter.cpp">
|
|
||||||
<Filter>Quelldateien</Filter>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="Value.cpp">
|
|
||||||
<Filter>Quelldateien</Filter>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="IntValue.cpp">
|
|
||||||
<Filter>Quelldateien</Filter>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="FloatValue.cpp">
|
|
||||||
<Filter>Quelldateien</Filter>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="VoidValue.cpp">
|
|
||||||
<Filter>Quelldateien</Filter>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="StringValue.cpp">
|
|
||||||
<Filter>Quelldateien</Filter>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="ListValue.cpp">
|
|
||||||
<Filter>Quelldateien</Filter>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="StringTools.cpp">
|
|
||||||
<Filter>Quelldateien</Filter>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="CmdArgsInterface.cpp">
|
|
||||||
<Filter>Quelldateien</Filter>
|
|
||||||
</ClCompile>
|
|
||||||
</ItemGroup>
|
|
||||||
<ItemGroup>
|
|
||||||
<ClInclude Include="Parameter.h">
|
|
||||||
<Filter>Headerdateien</Filter>
|
|
||||||
</ClInclude>
|
|
||||||
<ClInclude Include="Value.h">
|
|
||||||
<Filter>Headerdateien</Filter>
|
|
||||||
</ClInclude>
|
|
||||||
<ClInclude Include="DataType.h">
|
|
||||||
<Filter>Headerdateien</Filter>
|
|
||||||
</ClInclude>
|
|
||||||
<ClInclude Include="VoidValue.h">
|
|
||||||
<Filter>Headerdateien</Filter>
|
|
||||||
</ClInclude>
|
|
||||||
<ClInclude Include="StringValue.h">
|
|
||||||
<Filter>Headerdateien</Filter>
|
|
||||||
</ClInclude>
|
|
||||||
<ClInclude Include="ListValue.h">
|
|
||||||
<Filter>Headerdateien</Filter>
|
|
||||||
</ClInclude>
|
|
||||||
<ClInclude Include="IntValue.h">
|
|
||||||
<Filter>Headerdateien</Filter>
|
|
||||||
</ClInclude>
|
|
||||||
<ClInclude Include="FloatValue.h">
|
|
||||||
<Filter>Headerdateien</Filter>
|
|
||||||
</ClInclude>
|
|
||||||
<ClInclude Include="StringTools.h">
|
|
||||||
<Filter>Headerdateien</Filter>
|
|
||||||
</ClInclude>
|
|
||||||
<ClInclude Include="ParamConstraint.h">
|
|
||||||
<Filter>Headerdateien</Filter>
|
|
||||||
</ClInclude>
|
|
||||||
<ClInclude Include="HazelnuppException.h">
|
|
||||||
<Filter>Headerdateien</Filter>
|
|
||||||
</ClInclude>
|
|
||||||
<ClInclude Include="Placeholders.h">
|
|
||||||
<Filter>Headerdateien</Filter>
|
|
||||||
</ClInclude>
|
|
||||||
<ClInclude Include="CmdArgsInterface.h">
|
|
||||||
<Filter>Headerdateien</Filter>
|
|
||||||
</ClInclude>
|
|
||||||
<ClInclude Include="Version.h">
|
|
||||||
<Filter>Headerdateien</Filter>
|
|
||||||
</ClInclude>
|
|
||||||
</ItemGroup>
|
|
||||||
</Project>
|
|
371
Hazelnupp/build/CMakeCache.txt
Normal file
371
Hazelnupp/build/CMakeCache.txt
Normal file
@ -0,0 +1,371 @@
|
|||||||
|
# This is the CMakeCache file.
|
||||||
|
# For build in directory: /home/menethil/projects/private_work/Hazelnupp/Hazelnupp/build
|
||||||
|
# It was generated by CMake: /usr/bin/cmake
|
||||||
|
# You can edit this file to change values found and used by cmake.
|
||||||
|
# If you do not want to change any of the values, simply exit the editor.
|
||||||
|
# If you do want to change a value, simply edit, save, and exit the editor.
|
||||||
|
# The syntax for the file is as follows:
|
||||||
|
# KEY:TYPE=VALUE
|
||||||
|
# KEY is the name of a variable in the cache.
|
||||||
|
# TYPE is a hint to GUIs for the type of VALUE, DO NOT EDIT TYPE!.
|
||||||
|
# VALUE is the current value for the KEY.
|
||||||
|
|
||||||
|
########################
|
||||||
|
# EXTERNAL cache entries
|
||||||
|
########################
|
||||||
|
|
||||||
|
//Path to a program.
|
||||||
|
CMAKE_ADDR2LINE:FILEPATH=/usr/bin/addr2line
|
||||||
|
|
||||||
|
//Path to a program.
|
||||||
|
CMAKE_AR:FILEPATH=/usr/bin/ar
|
||||||
|
|
||||||
|
//Choose the type of build, options are: None Debug Release RelWithDebInfo
|
||||||
|
// MinSizeRel ...
|
||||||
|
CMAKE_BUILD_TYPE:STRING=
|
||||||
|
|
||||||
|
//Enable/Disable color output during build.
|
||||||
|
CMAKE_COLOR_MAKEFILE:BOOL=ON
|
||||||
|
|
||||||
|
//CXX compiler
|
||||||
|
CMAKE_CXX_COMPILER:FILEPATH=/usr/bin/c++
|
||||||
|
|
||||||
|
//A wrapper around 'ar' adding the appropriate '--plugin' option
|
||||||
|
// for the GCC compiler
|
||||||
|
CMAKE_CXX_COMPILER_AR:FILEPATH=/usr/bin/gcc-ar
|
||||||
|
|
||||||
|
//A wrapper around 'ranlib' adding the appropriate '--plugin' option
|
||||||
|
// for the GCC compiler
|
||||||
|
CMAKE_CXX_COMPILER_RANLIB:FILEPATH=/usr/bin/gcc-ranlib
|
||||||
|
|
||||||
|
//Flags used by the CXX compiler during all build types.
|
||||||
|
CMAKE_CXX_FLAGS:STRING=
|
||||||
|
|
||||||
|
//Flags used by the CXX compiler during DEBUG builds.
|
||||||
|
CMAKE_CXX_FLAGS_DEBUG:STRING=-g
|
||||||
|
|
||||||
|
//Flags used by the CXX compiler during MINSIZEREL builds.
|
||||||
|
CMAKE_CXX_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG
|
||||||
|
|
||||||
|
//Flags used by the CXX compiler during RELEASE builds.
|
||||||
|
CMAKE_CXX_FLAGS_RELEASE:STRING=-O3 -DNDEBUG
|
||||||
|
|
||||||
|
//Flags used by the CXX compiler during RELWITHDEBINFO builds.
|
||||||
|
CMAKE_CXX_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG
|
||||||
|
|
||||||
|
//C compiler
|
||||||
|
CMAKE_C_COMPILER:FILEPATH=/usr/bin/cc
|
||||||
|
|
||||||
|
//A wrapper around 'ar' adding the appropriate '--plugin' option
|
||||||
|
// for the GCC compiler
|
||||||
|
CMAKE_C_COMPILER_AR:FILEPATH=/usr/bin/gcc-ar
|
||||||
|
|
||||||
|
//A wrapper around 'ranlib' adding the appropriate '--plugin' option
|
||||||
|
// for the GCC compiler
|
||||||
|
CMAKE_C_COMPILER_RANLIB:FILEPATH=/usr/bin/gcc-ranlib
|
||||||
|
|
||||||
|
//Flags used by the C compiler during all build types.
|
||||||
|
CMAKE_C_FLAGS:STRING=
|
||||||
|
|
||||||
|
//Flags used by the C compiler during DEBUG builds.
|
||||||
|
CMAKE_C_FLAGS_DEBUG:STRING=-g
|
||||||
|
|
||||||
|
//Flags used by the C compiler during MINSIZEREL builds.
|
||||||
|
CMAKE_C_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG
|
||||||
|
|
||||||
|
//Flags used by the C compiler during RELEASE builds.
|
||||||
|
CMAKE_C_FLAGS_RELEASE:STRING=-O3 -DNDEBUG
|
||||||
|
|
||||||
|
//Flags used by the C compiler during RELWITHDEBINFO builds.
|
||||||
|
CMAKE_C_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG
|
||||||
|
|
||||||
|
//Path to a program.
|
||||||
|
CMAKE_DLLTOOL:FILEPATH=CMAKE_DLLTOOL-NOTFOUND
|
||||||
|
|
||||||
|
//Flags used by the linker during all build types.
|
||||||
|
CMAKE_EXE_LINKER_FLAGS:STRING=
|
||||||
|
|
||||||
|
//Flags used by the linker during DEBUG builds.
|
||||||
|
CMAKE_EXE_LINKER_FLAGS_DEBUG:STRING=
|
||||||
|
|
||||||
|
//Flags used by the linker during MINSIZEREL builds.
|
||||||
|
CMAKE_EXE_LINKER_FLAGS_MINSIZEREL:STRING=
|
||||||
|
|
||||||
|
//Flags used by the linker during RELEASE builds.
|
||||||
|
CMAKE_EXE_LINKER_FLAGS_RELEASE:STRING=
|
||||||
|
|
||||||
|
//Flags used by the linker during RELWITHDEBINFO builds.
|
||||||
|
CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO:STRING=
|
||||||
|
|
||||||
|
//Enable/Disable output of compile commands during generation.
|
||||||
|
CMAKE_EXPORT_COMPILE_COMMANDS:BOOL=
|
||||||
|
|
||||||
|
//Install path prefix, prepended onto install directories.
|
||||||
|
CMAKE_INSTALL_PREFIX:PATH=/usr/local
|
||||||
|
|
||||||
|
//Path to a program.
|
||||||
|
CMAKE_LINKER:FILEPATH=/usr/bin/ld
|
||||||
|
|
||||||
|
//Path to a program.
|
||||||
|
CMAKE_MAKE_PROGRAM:FILEPATH=/usr/bin/make
|
||||||
|
|
||||||
|
//Flags used by the linker during the creation of modules during
|
||||||
|
// all build types.
|
||||||
|
CMAKE_MODULE_LINKER_FLAGS:STRING=
|
||||||
|
|
||||||
|
//Flags used by the linker during the creation of modules during
|
||||||
|
// DEBUG builds.
|
||||||
|
CMAKE_MODULE_LINKER_FLAGS_DEBUG:STRING=
|
||||||
|
|
||||||
|
//Flags used by the linker during the creation of modules during
|
||||||
|
// MINSIZEREL builds.
|
||||||
|
CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL:STRING=
|
||||||
|
|
||||||
|
//Flags used by the linker during the creation of modules during
|
||||||
|
// RELEASE builds.
|
||||||
|
CMAKE_MODULE_LINKER_FLAGS_RELEASE:STRING=
|
||||||
|
|
||||||
|
//Flags used by the linker during the creation of modules during
|
||||||
|
// RELWITHDEBINFO builds.
|
||||||
|
CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO:STRING=
|
||||||
|
|
||||||
|
//Path to a program.
|
||||||
|
CMAKE_NM:FILEPATH=/usr/bin/nm
|
||||||
|
|
||||||
|
//Path to a program.
|
||||||
|
CMAKE_OBJCOPY:FILEPATH=/usr/bin/objcopy
|
||||||
|
|
||||||
|
//Path to a program.
|
||||||
|
CMAKE_OBJDUMP:FILEPATH=/usr/bin/objdump
|
||||||
|
|
||||||
|
//Value Computed by CMake
|
||||||
|
CMAKE_PROJECT_DESCRIPTION:STATIC=
|
||||||
|
|
||||||
|
//Value Computed by CMake
|
||||||
|
CMAKE_PROJECT_HOMEPAGE_URL:STATIC=
|
||||||
|
|
||||||
|
//Value Computed by CMake
|
||||||
|
CMAKE_PROJECT_NAME:STATIC=Hazelnupp
|
||||||
|
|
||||||
|
//Path to a program.
|
||||||
|
CMAKE_RANLIB:FILEPATH=/usr/bin/ranlib
|
||||||
|
|
||||||
|
//Path to a program.
|
||||||
|
CMAKE_READELF:FILEPATH=/usr/bin/readelf
|
||||||
|
|
||||||
|
//Flags used by the linker during the creation of shared libraries
|
||||||
|
// during all build types.
|
||||||
|
CMAKE_SHARED_LINKER_FLAGS:STRING=
|
||||||
|
|
||||||
|
//Flags used by the linker during the creation of shared libraries
|
||||||
|
// during DEBUG builds.
|
||||||
|
CMAKE_SHARED_LINKER_FLAGS_DEBUG:STRING=
|
||||||
|
|
||||||
|
//Flags used by the linker during the creation of shared libraries
|
||||||
|
// during MINSIZEREL builds.
|
||||||
|
CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL:STRING=
|
||||||
|
|
||||||
|
//Flags used by the linker during the creation of shared libraries
|
||||||
|
// during RELEASE builds.
|
||||||
|
CMAKE_SHARED_LINKER_FLAGS_RELEASE:STRING=
|
||||||
|
|
||||||
|
//Flags used by the linker during the creation of shared libraries
|
||||||
|
// during RELWITHDEBINFO builds.
|
||||||
|
CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO:STRING=
|
||||||
|
|
||||||
|
//If set, runtime paths are not added when installing shared libraries,
|
||||||
|
// but are added when building.
|
||||||
|
CMAKE_SKIP_INSTALL_RPATH:BOOL=NO
|
||||||
|
|
||||||
|
//If set, runtime paths are not added when using shared libraries.
|
||||||
|
CMAKE_SKIP_RPATH:BOOL=NO
|
||||||
|
|
||||||
|
//Flags used by the linker during the creation of static libraries
|
||||||
|
// during all build types.
|
||||||
|
CMAKE_STATIC_LINKER_FLAGS:STRING=
|
||||||
|
|
||||||
|
//Flags used by the linker during the creation of static libraries
|
||||||
|
// during DEBUG builds.
|
||||||
|
CMAKE_STATIC_LINKER_FLAGS_DEBUG:STRING=
|
||||||
|
|
||||||
|
//Flags used by the linker during the creation of static libraries
|
||||||
|
// during MINSIZEREL builds.
|
||||||
|
CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL:STRING=
|
||||||
|
|
||||||
|
//Flags used by the linker during the creation of static libraries
|
||||||
|
// during RELEASE builds.
|
||||||
|
CMAKE_STATIC_LINKER_FLAGS_RELEASE:STRING=
|
||||||
|
|
||||||
|
//Flags used by the linker during the creation of static libraries
|
||||||
|
// during RELWITHDEBINFO builds.
|
||||||
|
CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO:STRING=
|
||||||
|
|
||||||
|
//Path to a program.
|
||||||
|
CMAKE_STRIP:FILEPATH=/usr/bin/strip
|
||||||
|
|
||||||
|
//If this value is on, makefiles will be generated without the
|
||||||
|
// .SILENT directive, and all commands will be echoed to the console
|
||||||
|
// during the make. This is useful for debugging only. With Visual
|
||||||
|
// Studio IDE projects all commands are done without /nologo.
|
||||||
|
CMAKE_VERBOSE_MAKEFILE:BOOL=FALSE
|
||||||
|
|
||||||
|
//Value Computed by CMake
|
||||||
|
Hazelnupp_BINARY_DIR:STATIC=/home/menethil/projects/private_work/Hazelnupp/Hazelnupp/build
|
||||||
|
|
||||||
|
//Value Computed by CMake
|
||||||
|
Hazelnupp_IS_TOP_LEVEL:STATIC=ON
|
||||||
|
|
||||||
|
//Value Computed by CMake
|
||||||
|
Hazelnupp_SOURCE_DIR:STATIC=/home/menethil/projects/private_work/Hazelnupp/Hazelnupp
|
||||||
|
|
||||||
|
|
||||||
|
########################
|
||||||
|
# INTERNAL cache entries
|
||||||
|
########################
|
||||||
|
|
||||||
|
//ADVANCED property for variable: CMAKE_ADDR2LINE
|
||||||
|
CMAKE_ADDR2LINE-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_AR
|
||||||
|
CMAKE_AR-ADVANCED:INTERNAL=1
|
||||||
|
//This is the directory where this CMakeCache.txt was created
|
||||||
|
CMAKE_CACHEFILE_DIR:INTERNAL=/home/menethil/projects/private_work/Hazelnupp/Hazelnupp/build
|
||||||
|
//Major version of cmake used to create the current loaded cache
|
||||||
|
CMAKE_CACHE_MAJOR_VERSION:INTERNAL=3
|
||||||
|
//Minor version of cmake used to create the current loaded cache
|
||||||
|
CMAKE_CACHE_MINOR_VERSION:INTERNAL=23
|
||||||
|
//Patch version of cmake used to create the current loaded cache
|
||||||
|
CMAKE_CACHE_PATCH_VERSION:INTERNAL=0
|
||||||
|
//ADVANCED property for variable: CMAKE_COLOR_MAKEFILE
|
||||||
|
CMAKE_COLOR_MAKEFILE-ADVANCED:INTERNAL=1
|
||||||
|
//Path to CMake executable.
|
||||||
|
CMAKE_COMMAND:INTERNAL=/usr/bin/cmake
|
||||||
|
//Path to cpack program executable.
|
||||||
|
CMAKE_CPACK_COMMAND:INTERNAL=/usr/bin/cpack
|
||||||
|
//Path to ctest program executable.
|
||||||
|
CMAKE_CTEST_COMMAND:INTERNAL=/usr/bin/ctest
|
||||||
|
//ADVANCED property for variable: CMAKE_CXX_COMPILER
|
||||||
|
CMAKE_CXX_COMPILER-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_CXX_COMPILER_AR
|
||||||
|
CMAKE_CXX_COMPILER_AR-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_CXX_COMPILER_RANLIB
|
||||||
|
CMAKE_CXX_COMPILER_RANLIB-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_CXX_FLAGS
|
||||||
|
CMAKE_CXX_FLAGS-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_CXX_FLAGS_DEBUG
|
||||||
|
CMAKE_CXX_FLAGS_DEBUG-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_CXX_FLAGS_MINSIZEREL
|
||||||
|
CMAKE_CXX_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELEASE
|
||||||
|
CMAKE_CXX_FLAGS_RELEASE-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELWITHDEBINFO
|
||||||
|
CMAKE_CXX_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_C_COMPILER
|
||||||
|
CMAKE_C_COMPILER-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_C_COMPILER_AR
|
||||||
|
CMAKE_C_COMPILER_AR-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_C_COMPILER_RANLIB
|
||||||
|
CMAKE_C_COMPILER_RANLIB-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_C_FLAGS
|
||||||
|
CMAKE_C_FLAGS-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_C_FLAGS_DEBUG
|
||||||
|
CMAKE_C_FLAGS_DEBUG-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_C_FLAGS_MINSIZEREL
|
||||||
|
CMAKE_C_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_C_FLAGS_RELEASE
|
||||||
|
CMAKE_C_FLAGS_RELEASE-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_C_FLAGS_RELWITHDEBINFO
|
||||||
|
CMAKE_C_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_DLLTOOL
|
||||||
|
CMAKE_DLLTOOL-ADVANCED:INTERNAL=1
|
||||||
|
//Path to cache edit program executable.
|
||||||
|
CMAKE_EDIT_COMMAND:INTERNAL=/usr/bin/ccmake
|
||||||
|
//Executable file format
|
||||||
|
CMAKE_EXECUTABLE_FORMAT:INTERNAL=ELF
|
||||||
|
//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS
|
||||||
|
CMAKE_EXE_LINKER_FLAGS-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_DEBUG
|
||||||
|
CMAKE_EXE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_MINSIZEREL
|
||||||
|
CMAKE_EXE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELEASE
|
||||||
|
CMAKE_EXE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO
|
||||||
|
CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_EXPORT_COMPILE_COMMANDS
|
||||||
|
CMAKE_EXPORT_COMPILE_COMMANDS-ADVANCED:INTERNAL=1
|
||||||
|
//Name of external makefile project generator.
|
||||||
|
CMAKE_EXTRA_GENERATOR:INTERNAL=
|
||||||
|
//Name of generator.
|
||||||
|
CMAKE_GENERATOR:INTERNAL=Unix Makefiles
|
||||||
|
//Generator instance identifier.
|
||||||
|
CMAKE_GENERATOR_INSTANCE:INTERNAL=
|
||||||
|
//Name of generator platform.
|
||||||
|
CMAKE_GENERATOR_PLATFORM:INTERNAL=
|
||||||
|
//Name of generator toolset.
|
||||||
|
CMAKE_GENERATOR_TOOLSET:INTERNAL=
|
||||||
|
//Source directory with the top level CMakeLists.txt file for this
|
||||||
|
// project
|
||||||
|
CMAKE_HOME_DIRECTORY:INTERNAL=/home/menethil/projects/private_work/Hazelnupp/Hazelnupp
|
||||||
|
//Install .so files without execute permission.
|
||||||
|
CMAKE_INSTALL_SO_NO_EXE:INTERNAL=0
|
||||||
|
//ADVANCED property for variable: CMAKE_LINKER
|
||||||
|
CMAKE_LINKER-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_MAKE_PROGRAM
|
||||||
|
CMAKE_MAKE_PROGRAM-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS
|
||||||
|
CMAKE_MODULE_LINKER_FLAGS-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_DEBUG
|
||||||
|
CMAKE_MODULE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL
|
||||||
|
CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELEASE
|
||||||
|
CMAKE_MODULE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO
|
||||||
|
CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_NM
|
||||||
|
CMAKE_NM-ADVANCED:INTERNAL=1
|
||||||
|
//number of local generators
|
||||||
|
CMAKE_NUMBER_OF_MAKEFILES:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_OBJCOPY
|
||||||
|
CMAKE_OBJCOPY-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_OBJDUMP
|
||||||
|
CMAKE_OBJDUMP-ADVANCED:INTERNAL=1
|
||||||
|
//Platform information initialized
|
||||||
|
CMAKE_PLATFORM_INFO_INITIALIZED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_RANLIB
|
||||||
|
CMAKE_RANLIB-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_READELF
|
||||||
|
CMAKE_READELF-ADVANCED:INTERNAL=1
|
||||||
|
//Path to CMake installation.
|
||||||
|
CMAKE_ROOT:INTERNAL=/usr/share/cmake
|
||||||
|
//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS
|
||||||
|
CMAKE_SHARED_LINKER_FLAGS-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_DEBUG
|
||||||
|
CMAKE_SHARED_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL
|
||||||
|
CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELEASE
|
||||||
|
CMAKE_SHARED_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO
|
||||||
|
CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_SKIP_INSTALL_RPATH
|
||||||
|
CMAKE_SKIP_INSTALL_RPATH-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_SKIP_RPATH
|
||||||
|
CMAKE_SKIP_RPATH-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS
|
||||||
|
CMAKE_STATIC_LINKER_FLAGS-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_DEBUG
|
||||||
|
CMAKE_STATIC_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL
|
||||||
|
CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELEASE
|
||||||
|
CMAKE_STATIC_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO
|
||||||
|
CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
|
||||||
|
//ADVANCED property for variable: CMAKE_STRIP
|
||||||
|
CMAKE_STRIP-ADVANCED:INTERNAL=1
|
||||||
|
//uname command
|
||||||
|
CMAKE_UNAME:INTERNAL=/usr/bin/uname
|
||||||
|
//ADVANCED property for variable: CMAKE_VERBOSE_MAKEFILE
|
||||||
|
CMAKE_VERBOSE_MAKEFILE-ADVANCED:INTERNAL=1
|
||||||
|
|
72
Hazelnupp/build/CMakeFiles/3.23.0/CMakeCCompiler.cmake
Normal file
72
Hazelnupp/build/CMakeFiles/3.23.0/CMakeCCompiler.cmake
Normal file
@ -0,0 +1,72 @@
|
|||||||
|
set(CMAKE_C_COMPILER "/usr/bin/cc")
|
||||||
|
set(CMAKE_C_COMPILER_ARG1 "")
|
||||||
|
set(CMAKE_C_COMPILER_ID "GNU")
|
||||||
|
set(CMAKE_C_COMPILER_VERSION "11.2.0")
|
||||||
|
set(CMAKE_C_COMPILER_VERSION_INTERNAL "")
|
||||||
|
set(CMAKE_C_COMPILER_WRAPPER "")
|
||||||
|
set(CMAKE_C_STANDARD_COMPUTED_DEFAULT "17")
|
||||||
|
set(CMAKE_C_EXTENSIONS_COMPUTED_DEFAULT "ON")
|
||||||
|
set(CMAKE_C_COMPILE_FEATURES "c_std_90;c_function_prototypes;c_std_99;c_restrict;c_variadic_macros;c_std_11;c_static_assert;c_std_17;c_std_23")
|
||||||
|
set(CMAKE_C90_COMPILE_FEATURES "c_std_90;c_function_prototypes")
|
||||||
|
set(CMAKE_C99_COMPILE_FEATURES "c_std_99;c_restrict;c_variadic_macros")
|
||||||
|
set(CMAKE_C11_COMPILE_FEATURES "c_std_11;c_static_assert")
|
||||||
|
set(CMAKE_C17_COMPILE_FEATURES "c_std_17")
|
||||||
|
set(CMAKE_C23_COMPILE_FEATURES "c_std_23")
|
||||||
|
|
||||||
|
set(CMAKE_C_PLATFORM_ID "Linux")
|
||||||
|
set(CMAKE_C_SIMULATE_ID "")
|
||||||
|
set(CMAKE_C_COMPILER_FRONTEND_VARIANT "")
|
||||||
|
set(CMAKE_C_SIMULATE_VERSION "")
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
set(CMAKE_AR "/usr/bin/ar")
|
||||||
|
set(CMAKE_C_COMPILER_AR "/usr/bin/gcc-ar")
|
||||||
|
set(CMAKE_RANLIB "/usr/bin/ranlib")
|
||||||
|
set(CMAKE_C_COMPILER_RANLIB "/usr/bin/gcc-ranlib")
|
||||||
|
set(CMAKE_LINKER "/usr/bin/ld")
|
||||||
|
set(CMAKE_MT "")
|
||||||
|
set(CMAKE_COMPILER_IS_GNUCC 1)
|
||||||
|
set(CMAKE_C_COMPILER_LOADED 1)
|
||||||
|
set(CMAKE_C_COMPILER_WORKS TRUE)
|
||||||
|
set(CMAKE_C_ABI_COMPILED TRUE)
|
||||||
|
|
||||||
|
set(CMAKE_C_COMPILER_ENV_VAR "CC")
|
||||||
|
|
||||||
|
set(CMAKE_C_COMPILER_ID_RUN 1)
|
||||||
|
set(CMAKE_C_SOURCE_FILE_EXTENSIONS c;m)
|
||||||
|
set(CMAKE_C_IGNORE_EXTENSIONS h;H;o;O;obj;OBJ;def;DEF;rc;RC)
|
||||||
|
set(CMAKE_C_LINKER_PREFERENCE 10)
|
||||||
|
|
||||||
|
# Save compiler ABI information.
|
||||||
|
set(CMAKE_C_SIZEOF_DATA_PTR "8")
|
||||||
|
set(CMAKE_C_COMPILER_ABI "ELF")
|
||||||
|
set(CMAKE_C_BYTE_ORDER "LITTLE_ENDIAN")
|
||||||
|
set(CMAKE_C_LIBRARY_ARCHITECTURE "")
|
||||||
|
|
||||||
|
if(CMAKE_C_SIZEOF_DATA_PTR)
|
||||||
|
set(CMAKE_SIZEOF_VOID_P "${CMAKE_C_SIZEOF_DATA_PTR}")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
if(CMAKE_C_COMPILER_ABI)
|
||||||
|
set(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_C_COMPILER_ABI}")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
if(CMAKE_C_LIBRARY_ARCHITECTURE)
|
||||||
|
set(CMAKE_LIBRARY_ARCHITECTURE "")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
set(CMAKE_C_CL_SHOWINCLUDES_PREFIX "")
|
||||||
|
if(CMAKE_C_CL_SHOWINCLUDES_PREFIX)
|
||||||
|
set(CMAKE_CL_SHOWINCLUDES_PREFIX "${CMAKE_C_CL_SHOWINCLUDES_PREFIX}")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
set(CMAKE_C_IMPLICIT_INCLUDE_DIRECTORIES "/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/include;/usr/local/include;/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/include-fixed;/usr/include")
|
||||||
|
set(CMAKE_C_IMPLICIT_LINK_LIBRARIES "gcc;gcc_s;c;gcc;gcc_s")
|
||||||
|
set(CMAKE_C_IMPLICIT_LINK_DIRECTORIES "/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0;/usr/lib;/lib")
|
||||||
|
set(CMAKE_C_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "")
|
83
Hazelnupp/build/CMakeFiles/3.23.0/CMakeCXXCompiler.cmake
Normal file
83
Hazelnupp/build/CMakeFiles/3.23.0/CMakeCXXCompiler.cmake
Normal file
@ -0,0 +1,83 @@
|
|||||||
|
set(CMAKE_CXX_COMPILER "/usr/bin/c++")
|
||||||
|
set(CMAKE_CXX_COMPILER_ARG1 "")
|
||||||
|
set(CMAKE_CXX_COMPILER_ID "GNU")
|
||||||
|
set(CMAKE_CXX_COMPILER_VERSION "11.2.0")
|
||||||
|
set(CMAKE_CXX_COMPILER_VERSION_INTERNAL "")
|
||||||
|
set(CMAKE_CXX_COMPILER_WRAPPER "")
|
||||||
|
set(CMAKE_CXX_STANDARD_COMPUTED_DEFAULT "17")
|
||||||
|
set(CMAKE_CXX_EXTENSIONS_COMPUTED_DEFAULT "ON")
|
||||||
|
set(CMAKE_CXX_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters;cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates;cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates;cxx_std_17;cxx_std_20;cxx_std_23")
|
||||||
|
set(CMAKE_CXX98_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters")
|
||||||
|
set(CMAKE_CXX11_COMPILE_FEATURES "cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates")
|
||||||
|
set(CMAKE_CXX14_COMPILE_FEATURES "cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates")
|
||||||
|
set(CMAKE_CXX17_COMPILE_FEATURES "cxx_std_17")
|
||||||
|
set(CMAKE_CXX20_COMPILE_FEATURES "cxx_std_20")
|
||||||
|
set(CMAKE_CXX23_COMPILE_FEATURES "cxx_std_23")
|
||||||
|
|
||||||
|
set(CMAKE_CXX_PLATFORM_ID "Linux")
|
||||||
|
set(CMAKE_CXX_SIMULATE_ID "")
|
||||||
|
set(CMAKE_CXX_COMPILER_FRONTEND_VARIANT "")
|
||||||
|
set(CMAKE_CXX_SIMULATE_VERSION "")
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
set(CMAKE_AR "/usr/bin/ar")
|
||||||
|
set(CMAKE_CXX_COMPILER_AR "/usr/bin/gcc-ar")
|
||||||
|
set(CMAKE_RANLIB "/usr/bin/ranlib")
|
||||||
|
set(CMAKE_CXX_COMPILER_RANLIB "/usr/bin/gcc-ranlib")
|
||||||
|
set(CMAKE_LINKER "/usr/bin/ld")
|
||||||
|
set(CMAKE_MT "")
|
||||||
|
set(CMAKE_COMPILER_IS_GNUCXX 1)
|
||||||
|
set(CMAKE_CXX_COMPILER_LOADED 1)
|
||||||
|
set(CMAKE_CXX_COMPILER_WORKS TRUE)
|
||||||
|
set(CMAKE_CXX_ABI_COMPILED TRUE)
|
||||||
|
|
||||||
|
set(CMAKE_CXX_COMPILER_ENV_VAR "CXX")
|
||||||
|
|
||||||
|
set(CMAKE_CXX_COMPILER_ID_RUN 1)
|
||||||
|
set(CMAKE_CXX_SOURCE_FILE_EXTENSIONS C;M;c++;cc;cpp;cxx;m;mm;mpp;CPP;ixx;cppm)
|
||||||
|
set(CMAKE_CXX_IGNORE_EXTENSIONS inl;h;hpp;HPP;H;o;O;obj;OBJ;def;DEF;rc;RC)
|
||||||
|
|
||||||
|
foreach (lang C OBJC OBJCXX)
|
||||||
|
if (CMAKE_${lang}_COMPILER_ID_RUN)
|
||||||
|
foreach(extension IN LISTS CMAKE_${lang}_SOURCE_FILE_EXTENSIONS)
|
||||||
|
list(REMOVE_ITEM CMAKE_CXX_SOURCE_FILE_EXTENSIONS ${extension})
|
||||||
|
endforeach()
|
||||||
|
endif()
|
||||||
|
endforeach()
|
||||||
|
|
||||||
|
set(CMAKE_CXX_LINKER_PREFERENCE 30)
|
||||||
|
set(CMAKE_CXX_LINKER_PREFERENCE_PROPAGATES 1)
|
||||||
|
|
||||||
|
# Save compiler ABI information.
|
||||||
|
set(CMAKE_CXX_SIZEOF_DATA_PTR "8")
|
||||||
|
set(CMAKE_CXX_COMPILER_ABI "ELF")
|
||||||
|
set(CMAKE_CXX_BYTE_ORDER "LITTLE_ENDIAN")
|
||||||
|
set(CMAKE_CXX_LIBRARY_ARCHITECTURE "")
|
||||||
|
|
||||||
|
if(CMAKE_CXX_SIZEOF_DATA_PTR)
|
||||||
|
set(CMAKE_SIZEOF_VOID_P "${CMAKE_CXX_SIZEOF_DATA_PTR}")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
if(CMAKE_CXX_COMPILER_ABI)
|
||||||
|
set(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_CXX_COMPILER_ABI}")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
if(CMAKE_CXX_LIBRARY_ARCHITECTURE)
|
||||||
|
set(CMAKE_LIBRARY_ARCHITECTURE "")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
set(CMAKE_CXX_CL_SHOWINCLUDES_PREFIX "")
|
||||||
|
if(CMAKE_CXX_CL_SHOWINCLUDES_PREFIX)
|
||||||
|
set(CMAKE_CL_SHOWINCLUDES_PREFIX "${CMAKE_CXX_CL_SHOWINCLUDES_PREFIX}")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
set(CMAKE_CXX_IMPLICIT_INCLUDE_DIRECTORIES "/usr/include/c++/11.2.0;/usr/include/c++/11.2.0/x86_64-pc-linux-gnu;/usr/include/c++/11.2.0/backward;/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/include;/usr/local/include;/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/include-fixed;/usr/include")
|
||||||
|
set(CMAKE_CXX_IMPLICIT_LINK_LIBRARIES "stdc++;m;gcc_s;gcc;c;gcc_s;gcc")
|
||||||
|
set(CMAKE_CXX_IMPLICIT_LINK_DIRECTORIES "/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0;/usr/lib;/lib")
|
||||||
|
set(CMAKE_CXX_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "")
|
BIN
Hazelnupp/build/CMakeFiles/3.23.0/CMakeDetermineCompilerABI_C.bin
Executable file
BIN
Hazelnupp/build/CMakeFiles/3.23.0/CMakeDetermineCompilerABI_C.bin
Executable file
Binary file not shown.
BIN
Hazelnupp/build/CMakeFiles/3.23.0/CMakeDetermineCompilerABI_CXX.bin
Executable file
BIN
Hazelnupp/build/CMakeFiles/3.23.0/CMakeDetermineCompilerABI_CXX.bin
Executable file
Binary file not shown.
15
Hazelnupp/build/CMakeFiles/3.23.0/CMakeSystem.cmake
Normal file
15
Hazelnupp/build/CMakeFiles/3.23.0/CMakeSystem.cmake
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
set(CMAKE_HOST_SYSTEM "Linux-5.17.1-arch1-1")
|
||||||
|
set(CMAKE_HOST_SYSTEM_NAME "Linux")
|
||||||
|
set(CMAKE_HOST_SYSTEM_VERSION "5.17.1-arch1-1")
|
||||||
|
set(CMAKE_HOST_SYSTEM_PROCESSOR "x86_64")
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
set(CMAKE_SYSTEM "Linux-5.17.1-arch1-1")
|
||||||
|
set(CMAKE_SYSTEM_NAME "Linux")
|
||||||
|
set(CMAKE_SYSTEM_VERSION "5.17.1-arch1-1")
|
||||||
|
set(CMAKE_SYSTEM_PROCESSOR "x86_64")
|
||||||
|
|
||||||
|
set(CMAKE_CROSSCOMPILING "FALSE")
|
||||||
|
|
||||||
|
set(CMAKE_SYSTEM_LOADED 1)
|
828
Hazelnupp/build/CMakeFiles/3.23.0/CompilerIdC/CMakeCCompilerId.c
Normal file
828
Hazelnupp/build/CMakeFiles/3.23.0/CompilerIdC/CMakeCCompilerId.c
Normal file
@ -0,0 +1,828 @@
|
|||||||
|
#ifdef __cplusplus
|
||||||
|
# error "A C++ compiler has been selected for C."
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if defined(__18CXX)
|
||||||
|
# define ID_VOID_MAIN
|
||||||
|
#endif
|
||||||
|
#if defined(__CLASSIC_C__)
|
||||||
|
/* cv-qualifiers did not exist in K&R C */
|
||||||
|
# define const
|
||||||
|
# define volatile
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if !defined(__has_include)
|
||||||
|
/* If the compiler does not have __has_include, pretend the answer is
|
||||||
|
always no. */
|
||||||
|
# define __has_include(x) 0
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
/* Version number components: V=Version, R=Revision, P=Patch
|
||||||
|
Version date components: YYYY=Year, MM=Month, DD=Day */
|
||||||
|
|
||||||
|
#if defined(__INTEL_COMPILER) || defined(__ICC)
|
||||||
|
# define COMPILER_ID "Intel"
|
||||||
|
# if defined(_MSC_VER)
|
||||||
|
# define SIMULATE_ID "MSVC"
|
||||||
|
# endif
|
||||||
|
# if defined(__GNUC__)
|
||||||
|
# define SIMULATE_ID "GNU"
|
||||||
|
# endif
|
||||||
|
/* __INTEL_COMPILER = VRP prior to 2021, and then VVVV for 2021 and later,
|
||||||
|
except that a few beta releases use the old format with V=2021. */
|
||||||
|
# if __INTEL_COMPILER < 2021 || __INTEL_COMPILER == 202110 || __INTEL_COMPILER == 202111
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER/100)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER/10 % 10)
|
||||||
|
# if defined(__INTEL_COMPILER_UPDATE)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER_UPDATE)
|
||||||
|
# else
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER % 10)
|
||||||
|
# endif
|
||||||
|
# else
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER_UPDATE)
|
||||||
|
/* The third version component from --version is an update index,
|
||||||
|
but no macro is provided for it. */
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(0)
|
||||||
|
# endif
|
||||||
|
# if defined(__INTEL_COMPILER_BUILD_DATE)
|
||||||
|
/* __INTEL_COMPILER_BUILD_DATE = YYYYMMDD */
|
||||||
|
# define COMPILER_VERSION_TWEAK DEC(__INTEL_COMPILER_BUILD_DATE)
|
||||||
|
# endif
|
||||||
|
# if defined(_MSC_VER)
|
||||||
|
/* _MSC_VER = VVRR */
|
||||||
|
# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100)
|
||||||
|
# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100)
|
||||||
|
# endif
|
||||||
|
# if defined(__GNUC__)
|
||||||
|
# define SIMULATE_VERSION_MAJOR DEC(__GNUC__)
|
||||||
|
# elif defined(__GNUG__)
|
||||||
|
# define SIMULATE_VERSION_MAJOR DEC(__GNUG__)
|
||||||
|
# endif
|
||||||
|
# if defined(__GNUC_MINOR__)
|
||||||
|
# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__)
|
||||||
|
# endif
|
||||||
|
# if defined(__GNUC_PATCHLEVEL__)
|
||||||
|
# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__)
|
||||||
|
# endif
|
||||||
|
|
||||||
|
#elif (defined(__clang__) && defined(__INTEL_CLANG_COMPILER)) || defined(__INTEL_LLVM_COMPILER)
|
||||||
|
# define COMPILER_ID "IntelLLVM"
|
||||||
|
#if defined(_MSC_VER)
|
||||||
|
# define SIMULATE_ID "MSVC"
|
||||||
|
#endif
|
||||||
|
#if defined(__GNUC__)
|
||||||
|
# define SIMULATE_ID "GNU"
|
||||||
|
#endif
|
||||||
|
/* __INTEL_LLVM_COMPILER = VVVVRP prior to 2021.2.0, VVVVRRPP for 2021.2.0 and
|
||||||
|
* later. Look for 6 digit vs. 8 digit version number to decide encoding.
|
||||||
|
* VVVV is no smaller than the current year when a version is released.
|
||||||
|
*/
|
||||||
|
#if __INTEL_LLVM_COMPILER < 1000000L
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/100)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/10 % 10)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 10)
|
||||||
|
#else
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/10000)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/100 % 100)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 100)
|
||||||
|
#endif
|
||||||
|
#if defined(_MSC_VER)
|
||||||
|
/* _MSC_VER = VVRR */
|
||||||
|
# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100)
|
||||||
|
# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100)
|
||||||
|
#endif
|
||||||
|
#if defined(__GNUC__)
|
||||||
|
# define SIMULATE_VERSION_MAJOR DEC(__GNUC__)
|
||||||
|
#elif defined(__GNUG__)
|
||||||
|
# define SIMULATE_VERSION_MAJOR DEC(__GNUG__)
|
||||||
|
#endif
|
||||||
|
#if defined(__GNUC_MINOR__)
|
||||||
|
# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__)
|
||||||
|
#endif
|
||||||
|
#if defined(__GNUC_PATCHLEVEL__)
|
||||||
|
# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__)
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#elif defined(__PATHCC__)
|
||||||
|
# define COMPILER_ID "PathScale"
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__PATHCC__)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__PATHCC_MINOR__)
|
||||||
|
# if defined(__PATHCC_PATCHLEVEL__)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__PATHCC_PATCHLEVEL__)
|
||||||
|
# endif
|
||||||
|
|
||||||
|
#elif defined(__BORLANDC__) && defined(__CODEGEARC_VERSION__)
|
||||||
|
# define COMPILER_ID "Embarcadero"
|
||||||
|
# define COMPILER_VERSION_MAJOR HEX(__CODEGEARC_VERSION__>>24 & 0x00FF)
|
||||||
|
# define COMPILER_VERSION_MINOR HEX(__CODEGEARC_VERSION__>>16 & 0x00FF)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__CODEGEARC_VERSION__ & 0xFFFF)
|
||||||
|
|
||||||
|
#elif defined(__BORLANDC__)
|
||||||
|
# define COMPILER_ID "Borland"
|
||||||
|
/* __BORLANDC__ = 0xVRR */
|
||||||
|
# define COMPILER_VERSION_MAJOR HEX(__BORLANDC__>>8)
|
||||||
|
# define COMPILER_VERSION_MINOR HEX(__BORLANDC__ & 0xFF)
|
||||||
|
|
||||||
|
#elif defined(__WATCOMC__) && __WATCOMC__ < 1200
|
||||||
|
# define COMPILER_ID "Watcom"
|
||||||
|
/* __WATCOMC__ = VVRR */
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__WATCOMC__ / 100)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10)
|
||||||
|
# if (__WATCOMC__ % 10) > 0
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10)
|
||||||
|
# endif
|
||||||
|
|
||||||
|
#elif defined(__WATCOMC__)
|
||||||
|
# define COMPILER_ID "OpenWatcom"
|
||||||
|
/* __WATCOMC__ = VVRP + 1100 */
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC((__WATCOMC__ - 1100) / 100)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10)
|
||||||
|
# if (__WATCOMC__ % 10) > 0
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10)
|
||||||
|
# endif
|
||||||
|
|
||||||
|
#elif defined(__SUNPRO_C)
|
||||||
|
# define COMPILER_ID "SunPro"
|
||||||
|
# if __SUNPRO_C >= 0x5100
|
||||||
|
/* __SUNPRO_C = 0xVRRP */
|
||||||
|
# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_C>>12)
|
||||||
|
# define COMPILER_VERSION_MINOR HEX(__SUNPRO_C>>4 & 0xFF)
|
||||||
|
# define COMPILER_VERSION_PATCH HEX(__SUNPRO_C & 0xF)
|
||||||
|
# else
|
||||||
|
/* __SUNPRO_CC = 0xVRP */
|
||||||
|
# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_C>>8)
|
||||||
|
# define COMPILER_VERSION_MINOR HEX(__SUNPRO_C>>4 & 0xF)
|
||||||
|
# define COMPILER_VERSION_PATCH HEX(__SUNPRO_C & 0xF)
|
||||||
|
# endif
|
||||||
|
|
||||||
|
#elif defined(__HP_cc)
|
||||||
|
# define COMPILER_ID "HP"
|
||||||
|
/* __HP_cc = VVRRPP */
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__HP_cc/10000)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__HP_cc/100 % 100)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__HP_cc % 100)
|
||||||
|
|
||||||
|
#elif defined(__DECC)
|
||||||
|
# define COMPILER_ID "Compaq"
|
||||||
|
/* __DECC_VER = VVRRTPPPP */
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__DECC_VER/10000000)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__DECC_VER/100000 % 100)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__DECC_VER % 10000)
|
||||||
|
|
||||||
|
#elif defined(__IBMC__) && defined(__COMPILER_VER__)
|
||||||
|
# define COMPILER_ID "zOS"
|
||||||
|
/* __IBMC__ = VRP */
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10)
|
||||||
|
|
||||||
|
#elif defined(__open_xl__) && defined(__clang__)
|
||||||
|
# define COMPILER_ID "IBMClang"
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__open_xl_version__)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__open_xl_release__)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__open_xl_modification__)
|
||||||
|
# define COMPILER_VERSION_TWEAK DEC(__open_xl_ptf_fix_level__)
|
||||||
|
|
||||||
|
|
||||||
|
#elif defined(__ibmxl__) && defined(__clang__)
|
||||||
|
# define COMPILER_ID "XLClang"
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__ibmxl_version__)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__ibmxl_release__)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__ibmxl_modification__)
|
||||||
|
# define COMPILER_VERSION_TWEAK DEC(__ibmxl_ptf_fix_level__)
|
||||||
|
|
||||||
|
|
||||||
|
#elif defined(__IBMC__) && !defined(__COMPILER_VER__) && __IBMC__ >= 800
|
||||||
|
# define COMPILER_ID "XL"
|
||||||
|
/* __IBMC__ = VRP */
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10)
|
||||||
|
|
||||||
|
#elif defined(__IBMC__) && !defined(__COMPILER_VER__) && __IBMC__ < 800
|
||||||
|
# define COMPILER_ID "VisualAge"
|
||||||
|
/* __IBMC__ = VRP */
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10)
|
||||||
|
|
||||||
|
#elif defined(__NVCOMPILER)
|
||||||
|
# define COMPILER_ID "NVHPC"
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__NVCOMPILER_MAJOR__)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__NVCOMPILER_MINOR__)
|
||||||
|
# if defined(__NVCOMPILER_PATCHLEVEL__)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__NVCOMPILER_PATCHLEVEL__)
|
||||||
|
# endif
|
||||||
|
|
||||||
|
#elif defined(__PGI)
|
||||||
|
# define COMPILER_ID "PGI"
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__PGIC__)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__PGIC_MINOR__)
|
||||||
|
# if defined(__PGIC_PATCHLEVEL__)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__PGIC_PATCHLEVEL__)
|
||||||
|
# endif
|
||||||
|
|
||||||
|
#elif defined(_CRAYC)
|
||||||
|
# define COMPILER_ID "Cray"
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(_RELEASE_MAJOR)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(_RELEASE_MINOR)
|
||||||
|
|
||||||
|
#elif defined(__TI_COMPILER_VERSION__)
|
||||||
|
# define COMPILER_ID "TI"
|
||||||
|
/* __TI_COMPILER_VERSION__ = VVVRRRPPP */
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__TI_COMPILER_VERSION__/1000000)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__TI_COMPILER_VERSION__/1000 % 1000)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__TI_COMPILER_VERSION__ % 1000)
|
||||||
|
|
||||||
|
#elif defined(__CLANG_FUJITSU)
|
||||||
|
# define COMPILER_ID "FujitsuClang"
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__FCC_major__)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__FCC_minor__)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__)
|
||||||
|
# define COMPILER_VERSION_INTERNAL_STR __clang_version__
|
||||||
|
|
||||||
|
|
||||||
|
#elif defined(__FUJITSU)
|
||||||
|
# define COMPILER_ID "Fujitsu"
|
||||||
|
# if defined(__FCC_version__)
|
||||||
|
# define COMPILER_VERSION __FCC_version__
|
||||||
|
# elif defined(__FCC_major__)
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__FCC_major__)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__FCC_minor__)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__)
|
||||||
|
# endif
|
||||||
|
# if defined(__fcc_version)
|
||||||
|
# define COMPILER_VERSION_INTERNAL DEC(__fcc_version)
|
||||||
|
# elif defined(__FCC_VERSION)
|
||||||
|
# define COMPILER_VERSION_INTERNAL DEC(__FCC_VERSION)
|
||||||
|
# endif
|
||||||
|
|
||||||
|
|
||||||
|
#elif defined(__ghs__)
|
||||||
|
# define COMPILER_ID "GHS"
|
||||||
|
/* __GHS_VERSION_NUMBER = VVVVRP */
|
||||||
|
# ifdef __GHS_VERSION_NUMBER
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__GHS_VERSION_NUMBER / 100)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__GHS_VERSION_NUMBER / 10 % 10)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__GHS_VERSION_NUMBER % 10)
|
||||||
|
# endif
|
||||||
|
|
||||||
|
#elif defined(__TINYC__)
|
||||||
|
# define COMPILER_ID "TinyCC"
|
||||||
|
|
||||||
|
#elif defined(__BCC__)
|
||||||
|
# define COMPILER_ID "Bruce"
|
||||||
|
|
||||||
|
#elif defined(__SCO_VERSION__)
|
||||||
|
# define COMPILER_ID "SCO"
|
||||||
|
|
||||||
|
#elif defined(__ARMCC_VERSION) && !defined(__clang__)
|
||||||
|
# define COMPILER_ID "ARMCC"
|
||||||
|
#if __ARMCC_VERSION >= 1000000
|
||||||
|
/* __ARMCC_VERSION = VRRPPPP */
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/1000000)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 100)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000)
|
||||||
|
#else
|
||||||
|
/* __ARMCC_VERSION = VRPPPP */
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/100000)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 10)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000)
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
#elif defined(__clang__) && defined(__apple_build_version__)
|
||||||
|
# define COMPILER_ID "AppleClang"
|
||||||
|
# if defined(_MSC_VER)
|
||||||
|
# define SIMULATE_ID "MSVC"
|
||||||
|
# endif
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__clang_major__)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__clang_minor__)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__)
|
||||||
|
# if defined(_MSC_VER)
|
||||||
|
/* _MSC_VER = VVRR */
|
||||||
|
# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100)
|
||||||
|
# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100)
|
||||||
|
# endif
|
||||||
|
# define COMPILER_VERSION_TWEAK DEC(__apple_build_version__)
|
||||||
|
|
||||||
|
#elif defined(__clang__) && defined(__ARMCOMPILER_VERSION)
|
||||||
|
# define COMPILER_ID "ARMClang"
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__ARMCOMPILER_VERSION/1000000)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__ARMCOMPILER_VERSION/10000 % 100)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__ARMCOMPILER_VERSION % 10000)
|
||||||
|
# define COMPILER_VERSION_INTERNAL DEC(__ARMCOMPILER_VERSION)
|
||||||
|
|
||||||
|
#elif defined(__clang__)
|
||||||
|
# define COMPILER_ID "Clang"
|
||||||
|
# if defined(_MSC_VER)
|
||||||
|
# define SIMULATE_ID "MSVC"
|
||||||
|
# endif
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__clang_major__)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__clang_minor__)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__)
|
||||||
|
# if defined(_MSC_VER)
|
||||||
|
/* _MSC_VER = VVRR */
|
||||||
|
# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100)
|
||||||
|
# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100)
|
||||||
|
# endif
|
||||||
|
|
||||||
|
#elif defined(__LCC__) && (defined(__GNUC__) || defined(__GNUG__) || defined(__MCST__))
|
||||||
|
# define COMPILER_ID "LCC"
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(1)
|
||||||
|
# if defined(__LCC__)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__LCC__- 100)
|
||||||
|
# endif
|
||||||
|
# if defined(__LCC_MINOR__)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__LCC_MINOR__)
|
||||||
|
# endif
|
||||||
|
# if defined(__GNUC__) && defined(__GNUC_MINOR__)
|
||||||
|
# define SIMULATE_ID "GNU"
|
||||||
|
# define SIMULATE_VERSION_MAJOR DEC(__GNUC__)
|
||||||
|
# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__)
|
||||||
|
# if defined(__GNUC_PATCHLEVEL__)
|
||||||
|
# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__)
|
||||||
|
# endif
|
||||||
|
# endif
|
||||||
|
|
||||||
|
#elif defined(__GNUC__)
|
||||||
|
# define COMPILER_ID "GNU"
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__GNUC__)
|
||||||
|
# if defined(__GNUC_MINOR__)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__GNUC_MINOR__)
|
||||||
|
# endif
|
||||||
|
# if defined(__GNUC_PATCHLEVEL__)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__)
|
||||||
|
# endif
|
||||||
|
|
||||||
|
#elif defined(_MSC_VER)
|
||||||
|
# define COMPILER_ID "MSVC"
|
||||||
|
/* _MSC_VER = VVRR */
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(_MSC_VER / 100)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(_MSC_VER % 100)
|
||||||
|
# if defined(_MSC_FULL_VER)
|
||||||
|
# if _MSC_VER >= 1400
|
||||||
|
/* _MSC_FULL_VER = VVRRPPPPP */
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 100000)
|
||||||
|
# else
|
||||||
|
/* _MSC_FULL_VER = VVRRPPPP */
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 10000)
|
||||||
|
# endif
|
||||||
|
# endif
|
||||||
|
# if defined(_MSC_BUILD)
|
||||||
|
# define COMPILER_VERSION_TWEAK DEC(_MSC_BUILD)
|
||||||
|
# endif
|
||||||
|
|
||||||
|
#elif defined(__VISUALDSPVERSION__) || defined(__ADSPBLACKFIN__) || defined(__ADSPTS__) || defined(__ADSP21000__)
|
||||||
|
# define COMPILER_ID "ADSP"
|
||||||
|
#if defined(__VISUALDSPVERSION__)
|
||||||
|
/* __VISUALDSPVERSION__ = 0xVVRRPP00 */
|
||||||
|
# define COMPILER_VERSION_MAJOR HEX(__VISUALDSPVERSION__>>24)
|
||||||
|
# define COMPILER_VERSION_MINOR HEX(__VISUALDSPVERSION__>>16 & 0xFF)
|
||||||
|
# define COMPILER_VERSION_PATCH HEX(__VISUALDSPVERSION__>>8 & 0xFF)
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC)
|
||||||
|
# define COMPILER_ID "IAR"
|
||||||
|
# if defined(__VER__) && defined(__ICCARM__)
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC((__VER__) / 1000000)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(((__VER__) / 1000) % 1000)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC((__VER__) % 1000)
|
||||||
|
# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__)
|
||||||
|
# elif defined(__VER__) && (defined(__ICCAVR__) || defined(__ICCRX__) || defined(__ICCRH850__) || defined(__ICCRL78__) || defined(__ICC430__) || defined(__ICCRISCV__) || defined(__ICCV850__) || defined(__ICC8051__) || defined(__ICCSTM8__))
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC((__VER__) / 100)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC((__VER__) - (((__VER__) / 100)*100))
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__SUBVERSION__)
|
||||||
|
# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__)
|
||||||
|
# endif
|
||||||
|
|
||||||
|
#elif defined(__SDCC_VERSION_MAJOR) || defined(SDCC)
|
||||||
|
# define COMPILER_ID "SDCC"
|
||||||
|
# if defined(__SDCC_VERSION_MAJOR)
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__SDCC_VERSION_MAJOR)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__SDCC_VERSION_MINOR)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__SDCC_VERSION_PATCH)
|
||||||
|
# else
|
||||||
|
/* SDCC = VRP */
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(SDCC/100)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(SDCC/10 % 10)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(SDCC % 10)
|
||||||
|
# endif
|
||||||
|
|
||||||
|
|
||||||
|
/* These compilers are either not known or too old to define an
|
||||||
|
identification macro. Try to identify the platform and guess that
|
||||||
|
it is the native compiler. */
|
||||||
|
#elif defined(__hpux) || defined(__hpua)
|
||||||
|
# define COMPILER_ID "HP"
|
||||||
|
|
||||||
|
#else /* unknown compiler */
|
||||||
|
# define COMPILER_ID ""
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/* Construct the string literal in pieces to prevent the source from
|
||||||
|
getting matched. Store it in a pointer rather than an array
|
||||||
|
because some compilers will just produce instructions to fill the
|
||||||
|
array rather than assigning a pointer to a static array. */
|
||||||
|
char const* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]";
|
||||||
|
#ifdef SIMULATE_ID
|
||||||
|
char const* info_simulate = "INFO" ":" "simulate[" SIMULATE_ID "]";
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#ifdef __QNXNTO__
|
||||||
|
char const* qnxnto = "INFO" ":" "qnxnto[]";
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if defined(__CRAYXT_COMPUTE_LINUX_TARGET)
|
||||||
|
char const *info_cray = "INFO" ":" "compiler_wrapper[CrayPrgEnv]";
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#define STRINGIFY_HELPER(X) #X
|
||||||
|
#define STRINGIFY(X) STRINGIFY_HELPER(X)
|
||||||
|
|
||||||
|
/* Identify known platforms by name. */
|
||||||
|
#if defined(__linux) || defined(__linux__) || defined(linux)
|
||||||
|
# define PLATFORM_ID "Linux"
|
||||||
|
|
||||||
|
#elif defined(__MSYS__)
|
||||||
|
# define PLATFORM_ID "MSYS"
|
||||||
|
|
||||||
|
#elif defined(__CYGWIN__)
|
||||||
|
# define PLATFORM_ID "Cygwin"
|
||||||
|
|
||||||
|
#elif defined(__MINGW32__)
|
||||||
|
# define PLATFORM_ID "MinGW"
|
||||||
|
|
||||||
|
#elif defined(__APPLE__)
|
||||||
|
# define PLATFORM_ID "Darwin"
|
||||||
|
|
||||||
|
#elif defined(_WIN32) || defined(__WIN32__) || defined(WIN32)
|
||||||
|
# define PLATFORM_ID "Windows"
|
||||||
|
|
||||||
|
#elif defined(__FreeBSD__) || defined(__FreeBSD)
|
||||||
|
# define PLATFORM_ID "FreeBSD"
|
||||||
|
|
||||||
|
#elif defined(__NetBSD__) || defined(__NetBSD)
|
||||||
|
# define PLATFORM_ID "NetBSD"
|
||||||
|
|
||||||
|
#elif defined(__OpenBSD__) || defined(__OPENBSD)
|
||||||
|
# define PLATFORM_ID "OpenBSD"
|
||||||
|
|
||||||
|
#elif defined(__sun) || defined(sun)
|
||||||
|
# define PLATFORM_ID "SunOS"
|
||||||
|
|
||||||
|
#elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__)
|
||||||
|
# define PLATFORM_ID "AIX"
|
||||||
|
|
||||||
|
#elif defined(__hpux) || defined(__hpux__)
|
||||||
|
# define PLATFORM_ID "HP-UX"
|
||||||
|
|
||||||
|
#elif defined(__HAIKU__)
|
||||||
|
# define PLATFORM_ID "Haiku"
|
||||||
|
|
||||||
|
#elif defined(__BeOS) || defined(__BEOS__) || defined(_BEOS)
|
||||||
|
# define PLATFORM_ID "BeOS"
|
||||||
|
|
||||||
|
#elif defined(__QNX__) || defined(__QNXNTO__)
|
||||||
|
# define PLATFORM_ID "QNX"
|
||||||
|
|
||||||
|
#elif defined(__tru64) || defined(_tru64) || defined(__TRU64__)
|
||||||
|
# define PLATFORM_ID "Tru64"
|
||||||
|
|
||||||
|
#elif defined(__riscos) || defined(__riscos__)
|
||||||
|
# define PLATFORM_ID "RISCos"
|
||||||
|
|
||||||
|
#elif defined(__sinix) || defined(__sinix__) || defined(__SINIX__)
|
||||||
|
# define PLATFORM_ID "SINIX"
|
||||||
|
|
||||||
|
#elif defined(__UNIX_SV__)
|
||||||
|
# define PLATFORM_ID "UNIX_SV"
|
||||||
|
|
||||||
|
#elif defined(__bsdos__)
|
||||||
|
# define PLATFORM_ID "BSDOS"
|
||||||
|
|
||||||
|
#elif defined(_MPRAS) || defined(MPRAS)
|
||||||
|
# define PLATFORM_ID "MP-RAS"
|
||||||
|
|
||||||
|
#elif defined(__osf) || defined(__osf__)
|
||||||
|
# define PLATFORM_ID "OSF1"
|
||||||
|
|
||||||
|
#elif defined(_SCO_SV) || defined(SCO_SV) || defined(sco_sv)
|
||||||
|
# define PLATFORM_ID "SCO_SV"
|
||||||
|
|
||||||
|
#elif defined(__ultrix) || defined(__ultrix__) || defined(_ULTRIX)
|
||||||
|
# define PLATFORM_ID "ULTRIX"
|
||||||
|
|
||||||
|
#elif defined(__XENIX__) || defined(_XENIX) || defined(XENIX)
|
||||||
|
# define PLATFORM_ID "Xenix"
|
||||||
|
|
||||||
|
#elif defined(__WATCOMC__)
|
||||||
|
# if defined(__LINUX__)
|
||||||
|
# define PLATFORM_ID "Linux"
|
||||||
|
|
||||||
|
# elif defined(__DOS__)
|
||||||
|
# define PLATFORM_ID "DOS"
|
||||||
|
|
||||||
|
# elif defined(__OS2__)
|
||||||
|
# define PLATFORM_ID "OS2"
|
||||||
|
|
||||||
|
# elif defined(__WINDOWS__)
|
||||||
|
# define PLATFORM_ID "Windows3x"
|
||||||
|
|
||||||
|
# elif defined(__VXWORKS__)
|
||||||
|
# define PLATFORM_ID "VxWorks"
|
||||||
|
|
||||||
|
# else /* unknown platform */
|
||||||
|
# define PLATFORM_ID
|
||||||
|
# endif
|
||||||
|
|
||||||
|
#elif defined(__INTEGRITY)
|
||||||
|
# if defined(INT_178B)
|
||||||
|
# define PLATFORM_ID "Integrity178"
|
||||||
|
|
||||||
|
# else /* regular Integrity */
|
||||||
|
# define PLATFORM_ID "Integrity"
|
||||||
|
# endif
|
||||||
|
|
||||||
|
#else /* unknown platform */
|
||||||
|
# define PLATFORM_ID
|
||||||
|
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/* For windows compilers MSVC and Intel we can determine
|
||||||
|
the architecture of the compiler being used. This is because
|
||||||
|
the compilers do not have flags that can change the architecture,
|
||||||
|
but rather depend on which compiler is being used
|
||||||
|
*/
|
||||||
|
#if defined(_WIN32) && defined(_MSC_VER)
|
||||||
|
# if defined(_M_IA64)
|
||||||
|
# define ARCHITECTURE_ID "IA64"
|
||||||
|
|
||||||
|
# elif defined(_M_ARM64EC)
|
||||||
|
# define ARCHITECTURE_ID "ARM64EC"
|
||||||
|
|
||||||
|
# elif defined(_M_X64) || defined(_M_AMD64)
|
||||||
|
# define ARCHITECTURE_ID "x64"
|
||||||
|
|
||||||
|
# elif defined(_M_IX86)
|
||||||
|
# define ARCHITECTURE_ID "X86"
|
||||||
|
|
||||||
|
# elif defined(_M_ARM64)
|
||||||
|
# define ARCHITECTURE_ID "ARM64"
|
||||||
|
|
||||||
|
# elif defined(_M_ARM)
|
||||||
|
# if _M_ARM == 4
|
||||||
|
# define ARCHITECTURE_ID "ARMV4I"
|
||||||
|
# elif _M_ARM == 5
|
||||||
|
# define ARCHITECTURE_ID "ARMV5I"
|
||||||
|
# else
|
||||||
|
# define ARCHITECTURE_ID "ARMV" STRINGIFY(_M_ARM)
|
||||||
|
# endif
|
||||||
|
|
||||||
|
# elif defined(_M_MIPS)
|
||||||
|
# define ARCHITECTURE_ID "MIPS"
|
||||||
|
|
||||||
|
# elif defined(_M_SH)
|
||||||
|
# define ARCHITECTURE_ID "SHx"
|
||||||
|
|
||||||
|
# else /* unknown architecture */
|
||||||
|
# define ARCHITECTURE_ID ""
|
||||||
|
# endif
|
||||||
|
|
||||||
|
#elif defined(__WATCOMC__)
|
||||||
|
# if defined(_M_I86)
|
||||||
|
# define ARCHITECTURE_ID "I86"
|
||||||
|
|
||||||
|
# elif defined(_M_IX86)
|
||||||
|
# define ARCHITECTURE_ID "X86"
|
||||||
|
|
||||||
|
# else /* unknown architecture */
|
||||||
|
# define ARCHITECTURE_ID ""
|
||||||
|
# endif
|
||||||
|
|
||||||
|
#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC)
|
||||||
|
# if defined(__ICCARM__)
|
||||||
|
# define ARCHITECTURE_ID "ARM"
|
||||||
|
|
||||||
|
# elif defined(__ICCRX__)
|
||||||
|
# define ARCHITECTURE_ID "RX"
|
||||||
|
|
||||||
|
# elif defined(__ICCRH850__)
|
||||||
|
# define ARCHITECTURE_ID "RH850"
|
||||||
|
|
||||||
|
# elif defined(__ICCRL78__)
|
||||||
|
# define ARCHITECTURE_ID "RL78"
|
||||||
|
|
||||||
|
# elif defined(__ICCRISCV__)
|
||||||
|
# define ARCHITECTURE_ID "RISCV"
|
||||||
|
|
||||||
|
# elif defined(__ICCAVR__)
|
||||||
|
# define ARCHITECTURE_ID "AVR"
|
||||||
|
|
||||||
|
# elif defined(__ICC430__)
|
||||||
|
# define ARCHITECTURE_ID "MSP430"
|
||||||
|
|
||||||
|
# elif defined(__ICCV850__)
|
||||||
|
# define ARCHITECTURE_ID "V850"
|
||||||
|
|
||||||
|
# elif defined(__ICC8051__)
|
||||||
|
# define ARCHITECTURE_ID "8051"
|
||||||
|
|
||||||
|
# elif defined(__ICCSTM8__)
|
||||||
|
# define ARCHITECTURE_ID "STM8"
|
||||||
|
|
||||||
|
# else /* unknown architecture */
|
||||||
|
# define ARCHITECTURE_ID ""
|
||||||
|
# endif
|
||||||
|
|
||||||
|
#elif defined(__ghs__)
|
||||||
|
# if defined(__PPC64__)
|
||||||
|
# define ARCHITECTURE_ID "PPC64"
|
||||||
|
|
||||||
|
# elif defined(__ppc__)
|
||||||
|
# define ARCHITECTURE_ID "PPC"
|
||||||
|
|
||||||
|
# elif defined(__ARM__)
|
||||||
|
# define ARCHITECTURE_ID "ARM"
|
||||||
|
|
||||||
|
# elif defined(__x86_64__)
|
||||||
|
# define ARCHITECTURE_ID "x64"
|
||||||
|
|
||||||
|
# elif defined(__i386__)
|
||||||
|
# define ARCHITECTURE_ID "X86"
|
||||||
|
|
||||||
|
# else /* unknown architecture */
|
||||||
|
# define ARCHITECTURE_ID ""
|
||||||
|
# endif
|
||||||
|
|
||||||
|
#elif defined(__TI_COMPILER_VERSION__)
|
||||||
|
# if defined(__TI_ARM__)
|
||||||
|
# define ARCHITECTURE_ID "ARM"
|
||||||
|
|
||||||
|
# elif defined(__MSP430__)
|
||||||
|
# define ARCHITECTURE_ID "MSP430"
|
||||||
|
|
||||||
|
# elif defined(__TMS320C28XX__)
|
||||||
|
# define ARCHITECTURE_ID "TMS320C28x"
|
||||||
|
|
||||||
|
# elif defined(__TMS320C6X__) || defined(_TMS320C6X)
|
||||||
|
# define ARCHITECTURE_ID "TMS320C6x"
|
||||||
|
|
||||||
|
# else /* unknown architecture */
|
||||||
|
# define ARCHITECTURE_ID ""
|
||||||
|
# endif
|
||||||
|
|
||||||
|
#else
|
||||||
|
# define ARCHITECTURE_ID
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/* Convert integer to decimal digit literals. */
|
||||||
|
#define DEC(n) \
|
||||||
|
('0' + (((n) / 10000000)%10)), \
|
||||||
|
('0' + (((n) / 1000000)%10)), \
|
||||||
|
('0' + (((n) / 100000)%10)), \
|
||||||
|
('0' + (((n) / 10000)%10)), \
|
||||||
|
('0' + (((n) / 1000)%10)), \
|
||||||
|
('0' + (((n) / 100)%10)), \
|
||||||
|
('0' + (((n) / 10)%10)), \
|
||||||
|
('0' + ((n) % 10))
|
||||||
|
|
||||||
|
/* Convert integer to hex digit literals. */
|
||||||
|
#define HEX(n) \
|
||||||
|
('0' + ((n)>>28 & 0xF)), \
|
||||||
|
('0' + ((n)>>24 & 0xF)), \
|
||||||
|
('0' + ((n)>>20 & 0xF)), \
|
||||||
|
('0' + ((n)>>16 & 0xF)), \
|
||||||
|
('0' + ((n)>>12 & 0xF)), \
|
||||||
|
('0' + ((n)>>8 & 0xF)), \
|
||||||
|
('0' + ((n)>>4 & 0xF)), \
|
||||||
|
('0' + ((n) & 0xF))
|
||||||
|
|
||||||
|
/* Construct a string literal encoding the version number. */
|
||||||
|
#ifdef COMPILER_VERSION
|
||||||
|
char const* info_version = "INFO" ":" "compiler_version[" COMPILER_VERSION "]";
|
||||||
|
|
||||||
|
/* Construct a string literal encoding the version number components. */
|
||||||
|
#elif defined(COMPILER_VERSION_MAJOR)
|
||||||
|
char const info_version[] = {
|
||||||
|
'I', 'N', 'F', 'O', ':',
|
||||||
|
'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','[',
|
||||||
|
COMPILER_VERSION_MAJOR,
|
||||||
|
# ifdef COMPILER_VERSION_MINOR
|
||||||
|
'.', COMPILER_VERSION_MINOR,
|
||||||
|
# ifdef COMPILER_VERSION_PATCH
|
||||||
|
'.', COMPILER_VERSION_PATCH,
|
||||||
|
# ifdef COMPILER_VERSION_TWEAK
|
||||||
|
'.', COMPILER_VERSION_TWEAK,
|
||||||
|
# endif
|
||||||
|
# endif
|
||||||
|
# endif
|
||||||
|
']','\0'};
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/* Construct a string literal encoding the internal version number. */
|
||||||
|
#ifdef COMPILER_VERSION_INTERNAL
|
||||||
|
char const info_version_internal[] = {
|
||||||
|
'I', 'N', 'F', 'O', ':',
|
||||||
|
'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','_',
|
||||||
|
'i','n','t','e','r','n','a','l','[',
|
||||||
|
COMPILER_VERSION_INTERNAL,']','\0'};
|
||||||
|
#elif defined(COMPILER_VERSION_INTERNAL_STR)
|
||||||
|
char const* info_version_internal = "INFO" ":" "compiler_version_internal[" COMPILER_VERSION_INTERNAL_STR "]";
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/* Construct a string literal encoding the version number components. */
|
||||||
|
#ifdef SIMULATE_VERSION_MAJOR
|
||||||
|
char const info_simulate_version[] = {
|
||||||
|
'I', 'N', 'F', 'O', ':',
|
||||||
|
's','i','m','u','l','a','t','e','_','v','e','r','s','i','o','n','[',
|
||||||
|
SIMULATE_VERSION_MAJOR,
|
||||||
|
# ifdef SIMULATE_VERSION_MINOR
|
||||||
|
'.', SIMULATE_VERSION_MINOR,
|
||||||
|
# ifdef SIMULATE_VERSION_PATCH
|
||||||
|
'.', SIMULATE_VERSION_PATCH,
|
||||||
|
# ifdef SIMULATE_VERSION_TWEAK
|
||||||
|
'.', SIMULATE_VERSION_TWEAK,
|
||||||
|
# endif
|
||||||
|
# endif
|
||||||
|
# endif
|
||||||
|
']','\0'};
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/* Construct the string literal in pieces to prevent the source from
|
||||||
|
getting matched. Store it in a pointer rather than an array
|
||||||
|
because some compilers will just produce instructions to fill the
|
||||||
|
array rather than assigning a pointer to a static array. */
|
||||||
|
char const* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]";
|
||||||
|
char const* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]";
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
#if !defined(__STDC__) && !defined(__clang__)
|
||||||
|
# if defined(_MSC_VER) || defined(__ibmxl__) || defined(__IBMC__)
|
||||||
|
# define C_VERSION "90"
|
||||||
|
# else
|
||||||
|
# define C_VERSION
|
||||||
|
# endif
|
||||||
|
#elif __STDC_VERSION__ > 201710L
|
||||||
|
# define C_VERSION "23"
|
||||||
|
#elif __STDC_VERSION__ >= 201710L
|
||||||
|
# define C_VERSION "17"
|
||||||
|
#elif __STDC_VERSION__ >= 201000L
|
||||||
|
# define C_VERSION "11"
|
||||||
|
#elif __STDC_VERSION__ >= 199901L
|
||||||
|
# define C_VERSION "99"
|
||||||
|
#else
|
||||||
|
# define C_VERSION "90"
|
||||||
|
#endif
|
||||||
|
const char* info_language_standard_default =
|
||||||
|
"INFO" ":" "standard_default[" C_VERSION "]";
|
||||||
|
|
||||||
|
const char* info_language_extensions_default = "INFO" ":" "extensions_default["
|
||||||
|
#if (defined(__clang__) || defined(__GNUC__) || defined(__xlC__) || \
|
||||||
|
defined(__TI_COMPILER_VERSION__)) && \
|
||||||
|
!defined(__STRICT_ANSI__)
|
||||||
|
"ON"
|
||||||
|
#else
|
||||||
|
"OFF"
|
||||||
|
#endif
|
||||||
|
"]";
|
||||||
|
|
||||||
|
/*--------------------------------------------------------------------------*/
|
||||||
|
|
||||||
|
#ifdef ID_VOID_MAIN
|
||||||
|
void main() {}
|
||||||
|
#else
|
||||||
|
# if defined(__CLASSIC_C__)
|
||||||
|
int main(argc, argv) int argc; char *argv[];
|
||||||
|
# else
|
||||||
|
int main(int argc, char* argv[])
|
||||||
|
# endif
|
||||||
|
{
|
||||||
|
int require = 0;
|
||||||
|
require += info_compiler[argc];
|
||||||
|
require += info_platform[argc];
|
||||||
|
require += info_arch[argc];
|
||||||
|
#ifdef COMPILER_VERSION_MAJOR
|
||||||
|
require += info_version[argc];
|
||||||
|
#endif
|
||||||
|
#ifdef COMPILER_VERSION_INTERNAL
|
||||||
|
require += info_version_internal[argc];
|
||||||
|
#endif
|
||||||
|
#ifdef SIMULATE_ID
|
||||||
|
require += info_simulate[argc];
|
||||||
|
#endif
|
||||||
|
#ifdef SIMULATE_VERSION_MAJOR
|
||||||
|
require += info_simulate_version[argc];
|
||||||
|
#endif
|
||||||
|
#if defined(__CRAYXT_COMPUTE_LINUX_TARGET)
|
||||||
|
require += info_cray[argc];
|
||||||
|
#endif
|
||||||
|
require += info_language_standard_default[argc];
|
||||||
|
require += info_language_extensions_default[argc];
|
||||||
|
(void)argv;
|
||||||
|
return require;
|
||||||
|
}
|
||||||
|
#endif
|
@ -0,0 +1,816 @@
|
|||||||
|
/* This source file must have a .cpp extension so that all C++ compilers
|
||||||
|
recognize the extension without flags. Borland does not know .cxx for
|
||||||
|
example. */
|
||||||
|
#ifndef __cplusplus
|
||||||
|
# error "A C compiler has been selected for C++."
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if !defined(__has_include)
|
||||||
|
/* If the compiler does not have __has_include, pretend the answer is
|
||||||
|
always no. */
|
||||||
|
# define __has_include(x) 0
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
/* Version number components: V=Version, R=Revision, P=Patch
|
||||||
|
Version date components: YYYY=Year, MM=Month, DD=Day */
|
||||||
|
|
||||||
|
#if defined(__COMO__)
|
||||||
|
# define COMPILER_ID "Comeau"
|
||||||
|
/* __COMO_VERSION__ = VRR */
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__COMO_VERSION__ / 100)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__COMO_VERSION__ % 100)
|
||||||
|
|
||||||
|
#elif defined(__INTEL_COMPILER) || defined(__ICC)
|
||||||
|
# define COMPILER_ID "Intel"
|
||||||
|
# if defined(_MSC_VER)
|
||||||
|
# define SIMULATE_ID "MSVC"
|
||||||
|
# endif
|
||||||
|
# if defined(__GNUC__)
|
||||||
|
# define SIMULATE_ID "GNU"
|
||||||
|
# endif
|
||||||
|
/* __INTEL_COMPILER = VRP prior to 2021, and then VVVV for 2021 and later,
|
||||||
|
except that a few beta releases use the old format with V=2021. */
|
||||||
|
# if __INTEL_COMPILER < 2021 || __INTEL_COMPILER == 202110 || __INTEL_COMPILER == 202111
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER/100)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER/10 % 10)
|
||||||
|
# if defined(__INTEL_COMPILER_UPDATE)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER_UPDATE)
|
||||||
|
# else
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER % 10)
|
||||||
|
# endif
|
||||||
|
# else
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER_UPDATE)
|
||||||
|
/* The third version component from --version is an update index,
|
||||||
|
but no macro is provided for it. */
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(0)
|
||||||
|
# endif
|
||||||
|
# if defined(__INTEL_COMPILER_BUILD_DATE)
|
||||||
|
/* __INTEL_COMPILER_BUILD_DATE = YYYYMMDD */
|
||||||
|
# define COMPILER_VERSION_TWEAK DEC(__INTEL_COMPILER_BUILD_DATE)
|
||||||
|
# endif
|
||||||
|
# if defined(_MSC_VER)
|
||||||
|
/* _MSC_VER = VVRR */
|
||||||
|
# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100)
|
||||||
|
# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100)
|
||||||
|
# endif
|
||||||
|
# if defined(__GNUC__)
|
||||||
|
# define SIMULATE_VERSION_MAJOR DEC(__GNUC__)
|
||||||
|
# elif defined(__GNUG__)
|
||||||
|
# define SIMULATE_VERSION_MAJOR DEC(__GNUG__)
|
||||||
|
# endif
|
||||||
|
# if defined(__GNUC_MINOR__)
|
||||||
|
# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__)
|
||||||
|
# endif
|
||||||
|
# if defined(__GNUC_PATCHLEVEL__)
|
||||||
|
# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__)
|
||||||
|
# endif
|
||||||
|
|
||||||
|
#elif (defined(__clang__) && defined(__INTEL_CLANG_COMPILER)) || defined(__INTEL_LLVM_COMPILER)
|
||||||
|
# define COMPILER_ID "IntelLLVM"
|
||||||
|
#if defined(_MSC_VER)
|
||||||
|
# define SIMULATE_ID "MSVC"
|
||||||
|
#endif
|
||||||
|
#if defined(__GNUC__)
|
||||||
|
# define SIMULATE_ID "GNU"
|
||||||
|
#endif
|
||||||
|
/* __INTEL_LLVM_COMPILER = VVVVRP prior to 2021.2.0, VVVVRRPP for 2021.2.0 and
|
||||||
|
* later. Look for 6 digit vs. 8 digit version number to decide encoding.
|
||||||
|
* VVVV is no smaller than the current year when a version is released.
|
||||||
|
*/
|
||||||
|
#if __INTEL_LLVM_COMPILER < 1000000L
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/100)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/10 % 10)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 10)
|
||||||
|
#else
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/10000)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/100 % 100)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 100)
|
||||||
|
#endif
|
||||||
|
#if defined(_MSC_VER)
|
||||||
|
/* _MSC_VER = VVRR */
|
||||||
|
# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100)
|
||||||
|
# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100)
|
||||||
|
#endif
|
||||||
|
#if defined(__GNUC__)
|
||||||
|
# define SIMULATE_VERSION_MAJOR DEC(__GNUC__)
|
||||||
|
#elif defined(__GNUG__)
|
||||||
|
# define SIMULATE_VERSION_MAJOR DEC(__GNUG__)
|
||||||
|
#endif
|
||||||
|
#if defined(__GNUC_MINOR__)
|
||||||
|
# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__)
|
||||||
|
#endif
|
||||||
|
#if defined(__GNUC_PATCHLEVEL__)
|
||||||
|
# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__)
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#elif defined(__PATHCC__)
|
||||||
|
# define COMPILER_ID "PathScale"
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__PATHCC__)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__PATHCC_MINOR__)
|
||||||
|
# if defined(__PATHCC_PATCHLEVEL__)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__PATHCC_PATCHLEVEL__)
|
||||||
|
# endif
|
||||||
|
|
||||||
|
#elif defined(__BORLANDC__) && defined(__CODEGEARC_VERSION__)
|
||||||
|
# define COMPILER_ID "Embarcadero"
|
||||||
|
# define COMPILER_VERSION_MAJOR HEX(__CODEGEARC_VERSION__>>24 & 0x00FF)
|
||||||
|
# define COMPILER_VERSION_MINOR HEX(__CODEGEARC_VERSION__>>16 & 0x00FF)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__CODEGEARC_VERSION__ & 0xFFFF)
|
||||||
|
|
||||||
|
#elif defined(__BORLANDC__)
|
||||||
|
# define COMPILER_ID "Borland"
|
||||||
|
/* __BORLANDC__ = 0xVRR */
|
||||||
|
# define COMPILER_VERSION_MAJOR HEX(__BORLANDC__>>8)
|
||||||
|
# define COMPILER_VERSION_MINOR HEX(__BORLANDC__ & 0xFF)
|
||||||
|
|
||||||
|
#elif defined(__WATCOMC__) && __WATCOMC__ < 1200
|
||||||
|
# define COMPILER_ID "Watcom"
|
||||||
|
/* __WATCOMC__ = VVRR */
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__WATCOMC__ / 100)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10)
|
||||||
|
# if (__WATCOMC__ % 10) > 0
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10)
|
||||||
|
# endif
|
||||||
|
|
||||||
|
#elif defined(__WATCOMC__)
|
||||||
|
# define COMPILER_ID "OpenWatcom"
|
||||||
|
/* __WATCOMC__ = VVRP + 1100 */
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC((__WATCOMC__ - 1100) / 100)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10)
|
||||||
|
# if (__WATCOMC__ % 10) > 0
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10)
|
||||||
|
# endif
|
||||||
|
|
||||||
|
#elif defined(__SUNPRO_CC)
|
||||||
|
# define COMPILER_ID "SunPro"
|
||||||
|
# if __SUNPRO_CC >= 0x5100
|
||||||
|
/* __SUNPRO_CC = 0xVRRP */
|
||||||
|
# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_CC>>12)
|
||||||
|
# define COMPILER_VERSION_MINOR HEX(__SUNPRO_CC>>4 & 0xFF)
|
||||||
|
# define COMPILER_VERSION_PATCH HEX(__SUNPRO_CC & 0xF)
|
||||||
|
# else
|
||||||
|
/* __SUNPRO_CC = 0xVRP */
|
||||||
|
# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_CC>>8)
|
||||||
|
# define COMPILER_VERSION_MINOR HEX(__SUNPRO_CC>>4 & 0xF)
|
||||||
|
# define COMPILER_VERSION_PATCH HEX(__SUNPRO_CC & 0xF)
|
||||||
|
# endif
|
||||||
|
|
||||||
|
#elif defined(__HP_aCC)
|
||||||
|
# define COMPILER_ID "HP"
|
||||||
|
/* __HP_aCC = VVRRPP */
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__HP_aCC/10000)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__HP_aCC/100 % 100)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__HP_aCC % 100)
|
||||||
|
|
||||||
|
#elif defined(__DECCXX)
|
||||||
|
# define COMPILER_ID "Compaq"
|
||||||
|
/* __DECCXX_VER = VVRRTPPPP */
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__DECCXX_VER/10000000)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__DECCXX_VER/100000 % 100)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__DECCXX_VER % 10000)
|
||||||
|
|
||||||
|
#elif defined(__IBMCPP__) && defined(__COMPILER_VER__)
|
||||||
|
# define COMPILER_ID "zOS"
|
||||||
|
/* __IBMCPP__ = VRP */
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10)
|
||||||
|
|
||||||
|
#elif defined(__open_xl__) && defined(__clang__)
|
||||||
|
# define COMPILER_ID "IBMClang"
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__open_xl_version__)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__open_xl_release__)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__open_xl_modification__)
|
||||||
|
# define COMPILER_VERSION_TWEAK DEC(__open_xl_ptf_fix_level__)
|
||||||
|
|
||||||
|
|
||||||
|
#elif defined(__ibmxl__) && defined(__clang__)
|
||||||
|
# define COMPILER_ID "XLClang"
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__ibmxl_version__)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__ibmxl_release__)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__ibmxl_modification__)
|
||||||
|
# define COMPILER_VERSION_TWEAK DEC(__ibmxl_ptf_fix_level__)
|
||||||
|
|
||||||
|
|
||||||
|
#elif defined(__IBMCPP__) && !defined(__COMPILER_VER__) && __IBMCPP__ >= 800
|
||||||
|
# define COMPILER_ID "XL"
|
||||||
|
/* __IBMCPP__ = VRP */
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10)
|
||||||
|
|
||||||
|
#elif defined(__IBMCPP__) && !defined(__COMPILER_VER__) && __IBMCPP__ < 800
|
||||||
|
# define COMPILER_ID "VisualAge"
|
||||||
|
/* __IBMCPP__ = VRP */
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10)
|
||||||
|
|
||||||
|
#elif defined(__NVCOMPILER)
|
||||||
|
# define COMPILER_ID "NVHPC"
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__NVCOMPILER_MAJOR__)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__NVCOMPILER_MINOR__)
|
||||||
|
# if defined(__NVCOMPILER_PATCHLEVEL__)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__NVCOMPILER_PATCHLEVEL__)
|
||||||
|
# endif
|
||||||
|
|
||||||
|
#elif defined(__PGI)
|
||||||
|
# define COMPILER_ID "PGI"
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__PGIC__)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__PGIC_MINOR__)
|
||||||
|
# if defined(__PGIC_PATCHLEVEL__)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__PGIC_PATCHLEVEL__)
|
||||||
|
# endif
|
||||||
|
|
||||||
|
#elif defined(_CRAYC)
|
||||||
|
# define COMPILER_ID "Cray"
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(_RELEASE_MAJOR)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(_RELEASE_MINOR)
|
||||||
|
|
||||||
|
#elif defined(__TI_COMPILER_VERSION__)
|
||||||
|
# define COMPILER_ID "TI"
|
||||||
|
/* __TI_COMPILER_VERSION__ = VVVRRRPPP */
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__TI_COMPILER_VERSION__/1000000)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__TI_COMPILER_VERSION__/1000 % 1000)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__TI_COMPILER_VERSION__ % 1000)
|
||||||
|
|
||||||
|
#elif defined(__CLANG_FUJITSU)
|
||||||
|
# define COMPILER_ID "FujitsuClang"
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__FCC_major__)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__FCC_minor__)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__)
|
||||||
|
# define COMPILER_VERSION_INTERNAL_STR __clang_version__
|
||||||
|
|
||||||
|
|
||||||
|
#elif defined(__FUJITSU)
|
||||||
|
# define COMPILER_ID "Fujitsu"
|
||||||
|
# if defined(__FCC_version__)
|
||||||
|
# define COMPILER_VERSION __FCC_version__
|
||||||
|
# elif defined(__FCC_major__)
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__FCC_major__)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__FCC_minor__)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__)
|
||||||
|
# endif
|
||||||
|
# if defined(__fcc_version)
|
||||||
|
# define COMPILER_VERSION_INTERNAL DEC(__fcc_version)
|
||||||
|
# elif defined(__FCC_VERSION)
|
||||||
|
# define COMPILER_VERSION_INTERNAL DEC(__FCC_VERSION)
|
||||||
|
# endif
|
||||||
|
|
||||||
|
|
||||||
|
#elif defined(__ghs__)
|
||||||
|
# define COMPILER_ID "GHS"
|
||||||
|
/* __GHS_VERSION_NUMBER = VVVVRP */
|
||||||
|
# ifdef __GHS_VERSION_NUMBER
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__GHS_VERSION_NUMBER / 100)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__GHS_VERSION_NUMBER / 10 % 10)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__GHS_VERSION_NUMBER % 10)
|
||||||
|
# endif
|
||||||
|
|
||||||
|
#elif defined(__SCO_VERSION__)
|
||||||
|
# define COMPILER_ID "SCO"
|
||||||
|
|
||||||
|
#elif defined(__ARMCC_VERSION) && !defined(__clang__)
|
||||||
|
# define COMPILER_ID "ARMCC"
|
||||||
|
#if __ARMCC_VERSION >= 1000000
|
||||||
|
/* __ARMCC_VERSION = VRRPPPP */
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/1000000)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 100)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000)
|
||||||
|
#else
|
||||||
|
/* __ARMCC_VERSION = VRPPPP */
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/100000)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 10)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000)
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
#elif defined(__clang__) && defined(__apple_build_version__)
|
||||||
|
# define COMPILER_ID "AppleClang"
|
||||||
|
# if defined(_MSC_VER)
|
||||||
|
# define SIMULATE_ID "MSVC"
|
||||||
|
# endif
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__clang_major__)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__clang_minor__)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__)
|
||||||
|
# if defined(_MSC_VER)
|
||||||
|
/* _MSC_VER = VVRR */
|
||||||
|
# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100)
|
||||||
|
# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100)
|
||||||
|
# endif
|
||||||
|
# define COMPILER_VERSION_TWEAK DEC(__apple_build_version__)
|
||||||
|
|
||||||
|
#elif defined(__clang__) && defined(__ARMCOMPILER_VERSION)
|
||||||
|
# define COMPILER_ID "ARMClang"
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__ARMCOMPILER_VERSION/1000000)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__ARMCOMPILER_VERSION/10000 % 100)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__ARMCOMPILER_VERSION % 10000)
|
||||||
|
# define COMPILER_VERSION_INTERNAL DEC(__ARMCOMPILER_VERSION)
|
||||||
|
|
||||||
|
#elif defined(__clang__)
|
||||||
|
# define COMPILER_ID "Clang"
|
||||||
|
# if defined(_MSC_VER)
|
||||||
|
# define SIMULATE_ID "MSVC"
|
||||||
|
# endif
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__clang_major__)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__clang_minor__)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__)
|
||||||
|
# if defined(_MSC_VER)
|
||||||
|
/* _MSC_VER = VVRR */
|
||||||
|
# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100)
|
||||||
|
# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100)
|
||||||
|
# endif
|
||||||
|
|
||||||
|
#elif defined(__LCC__) && (defined(__GNUC__) || defined(__GNUG__) || defined(__MCST__))
|
||||||
|
# define COMPILER_ID "LCC"
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(1)
|
||||||
|
# if defined(__LCC__)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__LCC__- 100)
|
||||||
|
# endif
|
||||||
|
# if defined(__LCC_MINOR__)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__LCC_MINOR__)
|
||||||
|
# endif
|
||||||
|
# if defined(__GNUC__) && defined(__GNUC_MINOR__)
|
||||||
|
# define SIMULATE_ID "GNU"
|
||||||
|
# define SIMULATE_VERSION_MAJOR DEC(__GNUC__)
|
||||||
|
# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__)
|
||||||
|
# if defined(__GNUC_PATCHLEVEL__)
|
||||||
|
# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__)
|
||||||
|
# endif
|
||||||
|
# endif
|
||||||
|
|
||||||
|
#elif defined(__GNUC__) || defined(__GNUG__)
|
||||||
|
# define COMPILER_ID "GNU"
|
||||||
|
# if defined(__GNUC__)
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__GNUC__)
|
||||||
|
# else
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(__GNUG__)
|
||||||
|
# endif
|
||||||
|
# if defined(__GNUC_MINOR__)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(__GNUC_MINOR__)
|
||||||
|
# endif
|
||||||
|
# if defined(__GNUC_PATCHLEVEL__)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__)
|
||||||
|
# endif
|
||||||
|
|
||||||
|
#elif defined(_MSC_VER)
|
||||||
|
# define COMPILER_ID "MSVC"
|
||||||
|
/* _MSC_VER = VVRR */
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC(_MSC_VER / 100)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(_MSC_VER % 100)
|
||||||
|
# if defined(_MSC_FULL_VER)
|
||||||
|
# if _MSC_VER >= 1400
|
||||||
|
/* _MSC_FULL_VER = VVRRPPPPP */
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 100000)
|
||||||
|
# else
|
||||||
|
/* _MSC_FULL_VER = VVRRPPPP */
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 10000)
|
||||||
|
# endif
|
||||||
|
# endif
|
||||||
|
# if defined(_MSC_BUILD)
|
||||||
|
# define COMPILER_VERSION_TWEAK DEC(_MSC_BUILD)
|
||||||
|
# endif
|
||||||
|
|
||||||
|
#elif defined(__VISUALDSPVERSION__) || defined(__ADSPBLACKFIN__) || defined(__ADSPTS__) || defined(__ADSP21000__)
|
||||||
|
# define COMPILER_ID "ADSP"
|
||||||
|
#if defined(__VISUALDSPVERSION__)
|
||||||
|
/* __VISUALDSPVERSION__ = 0xVVRRPP00 */
|
||||||
|
# define COMPILER_VERSION_MAJOR HEX(__VISUALDSPVERSION__>>24)
|
||||||
|
# define COMPILER_VERSION_MINOR HEX(__VISUALDSPVERSION__>>16 & 0xFF)
|
||||||
|
# define COMPILER_VERSION_PATCH HEX(__VISUALDSPVERSION__>>8 & 0xFF)
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC)
|
||||||
|
# define COMPILER_ID "IAR"
|
||||||
|
# if defined(__VER__) && defined(__ICCARM__)
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC((__VER__) / 1000000)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC(((__VER__) / 1000) % 1000)
|
||||||
|
# define COMPILER_VERSION_PATCH DEC((__VER__) % 1000)
|
||||||
|
# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__)
|
||||||
|
# elif defined(__VER__) && (defined(__ICCAVR__) || defined(__ICCRX__) || defined(__ICCRH850__) || defined(__ICCRL78__) || defined(__ICC430__) || defined(__ICCRISCV__) || defined(__ICCV850__) || defined(__ICC8051__) || defined(__ICCSTM8__))
|
||||||
|
# define COMPILER_VERSION_MAJOR DEC((__VER__) / 100)
|
||||||
|
# define COMPILER_VERSION_MINOR DEC((__VER__) - (((__VER__) / 100)*100))
|
||||||
|
# define COMPILER_VERSION_PATCH DEC(__SUBVERSION__)
|
||||||
|
# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__)
|
||||||
|
# endif
|
||||||
|
|
||||||
|
|
||||||
|
/* These compilers are either not known or too old to define an
|
||||||
|
identification macro. Try to identify the platform and guess that
|
||||||
|
it is the native compiler. */
|
||||||
|
#elif defined(__hpux) || defined(__hpua)
|
||||||
|
# define COMPILER_ID "HP"
|
||||||
|
|
||||||
|
#else /* unknown compiler */
|
||||||
|
# define COMPILER_ID ""
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/* Construct the string literal in pieces to prevent the source from
|
||||||
|
getting matched. Store it in a pointer rather than an array
|
||||||
|
because some compilers will just produce instructions to fill the
|
||||||
|
array rather than assigning a pointer to a static array. */
|
||||||
|
char const* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]";
|
||||||
|
#ifdef SIMULATE_ID
|
||||||
|
char const* info_simulate = "INFO" ":" "simulate[" SIMULATE_ID "]";
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#ifdef __QNXNTO__
|
||||||
|
char const* qnxnto = "INFO" ":" "qnxnto[]";
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if defined(__CRAYXT_COMPUTE_LINUX_TARGET)
|
||||||
|
char const *info_cray = "INFO" ":" "compiler_wrapper[CrayPrgEnv]";
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#define STRINGIFY_HELPER(X) #X
|
||||||
|
#define STRINGIFY(X) STRINGIFY_HELPER(X)
|
||||||
|
|
||||||
|
/* Identify known platforms by name. */
|
||||||
|
#if defined(__linux) || defined(__linux__) || defined(linux)
|
||||||
|
# define PLATFORM_ID "Linux"
|
||||||
|
|
||||||
|
#elif defined(__MSYS__)
|
||||||
|
# define PLATFORM_ID "MSYS"
|
||||||
|
|
||||||
|
#elif defined(__CYGWIN__)
|
||||||
|
# define PLATFORM_ID "Cygwin"
|
||||||
|
|
||||||
|
#elif defined(__MINGW32__)
|
||||||
|
# define PLATFORM_ID "MinGW"
|
||||||
|
|
||||||
|
#elif defined(__APPLE__)
|
||||||
|
# define PLATFORM_ID "Darwin"
|
||||||
|
|
||||||
|
#elif defined(_WIN32) || defined(__WIN32__) || defined(WIN32)
|
||||||
|
# define PLATFORM_ID "Windows"
|
||||||
|
|
||||||
|
#elif defined(__FreeBSD__) || defined(__FreeBSD)
|
||||||
|
# define PLATFORM_ID "FreeBSD"
|
||||||
|
|
||||||
|
#elif defined(__NetBSD__) || defined(__NetBSD)
|
||||||
|
# define PLATFORM_ID "NetBSD"
|
||||||
|
|
||||||
|
#elif defined(__OpenBSD__) || defined(__OPENBSD)
|
||||||
|
# define PLATFORM_ID "OpenBSD"
|
||||||
|
|
||||||
|
#elif defined(__sun) || defined(sun)
|
||||||
|
# define PLATFORM_ID "SunOS"
|
||||||
|
|
||||||
|
#elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__)
|
||||||
|
# define PLATFORM_ID "AIX"
|
||||||
|
|
||||||
|
#elif defined(__hpux) || defined(__hpux__)
|
||||||
|
# define PLATFORM_ID "HP-UX"
|
||||||
|
|
||||||
|
#elif defined(__HAIKU__)
|
||||||
|
# define PLATFORM_ID "Haiku"
|
||||||
|
|
||||||
|
#elif defined(__BeOS) || defined(__BEOS__) || defined(_BEOS)
|
||||||
|
# define PLATFORM_ID "BeOS"
|
||||||
|
|
||||||
|
#elif defined(__QNX__) || defined(__QNXNTO__)
|
||||||
|
# define PLATFORM_ID "QNX"
|
||||||
|
|
||||||
|
#elif defined(__tru64) || defined(_tru64) || defined(__TRU64__)
|
||||||
|
# define PLATFORM_ID "Tru64"
|
||||||
|
|
||||||
|
#elif defined(__riscos) || defined(__riscos__)
|
||||||
|
# define PLATFORM_ID "RISCos"
|
||||||
|
|
||||||
|
#elif defined(__sinix) || defined(__sinix__) || defined(__SINIX__)
|
||||||
|
# define PLATFORM_ID "SINIX"
|
||||||
|
|
||||||
|
#elif defined(__UNIX_SV__)
|
||||||
|
# define PLATFORM_ID "UNIX_SV"
|
||||||
|
|
||||||
|
#elif defined(__bsdos__)
|
||||||
|
# define PLATFORM_ID "BSDOS"
|
||||||
|
|
||||||
|
#elif defined(_MPRAS) || defined(MPRAS)
|
||||||
|
# define PLATFORM_ID "MP-RAS"
|
||||||
|
|
||||||
|
#elif defined(__osf) || defined(__osf__)
|
||||||
|
# define PLATFORM_ID "OSF1"
|
||||||
|
|
||||||
|
#elif defined(_SCO_SV) || defined(SCO_SV) || defined(sco_sv)
|
||||||
|
# define PLATFORM_ID "SCO_SV"
|
||||||
|
|
||||||
|
#elif defined(__ultrix) || defined(__ultrix__) || defined(_ULTRIX)
|
||||||
|
# define PLATFORM_ID "ULTRIX"
|
||||||
|
|
||||||
|
#elif defined(__XENIX__) || defined(_XENIX) || defined(XENIX)
|
||||||
|
# define PLATFORM_ID "Xenix"
|
||||||
|
|
||||||
|
#elif defined(__WATCOMC__)
|
||||||
|
# if defined(__LINUX__)
|
||||||
|
# define PLATFORM_ID "Linux"
|
||||||
|
|
||||||
|
# elif defined(__DOS__)
|
||||||
|
# define PLATFORM_ID "DOS"
|
||||||
|
|
||||||
|
# elif defined(__OS2__)
|
||||||
|
# define PLATFORM_ID "OS2"
|
||||||
|
|
||||||
|
# elif defined(__WINDOWS__)
|
||||||
|
# define PLATFORM_ID "Windows3x"
|
||||||
|
|
||||||
|
# elif defined(__VXWORKS__)
|
||||||
|
# define PLATFORM_ID "VxWorks"
|
||||||
|
|
||||||
|
# else /* unknown platform */
|
||||||
|
# define PLATFORM_ID
|
||||||
|
# endif
|
||||||
|
|
||||||
|
#elif defined(__INTEGRITY)
|
||||||
|
# if defined(INT_178B)
|
||||||
|
# define PLATFORM_ID "Integrity178"
|
||||||
|
|
||||||
|
# else /* regular Integrity */
|
||||||
|
# define PLATFORM_ID "Integrity"
|
||||||
|
# endif
|
||||||
|
|
||||||
|
#else /* unknown platform */
|
||||||
|
# define PLATFORM_ID
|
||||||
|
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/* For windows compilers MSVC and Intel we can determine
|
||||||
|
the architecture of the compiler being used. This is because
|
||||||
|
the compilers do not have flags that can change the architecture,
|
||||||
|
but rather depend on which compiler is being used
|
||||||
|
*/
|
||||||
|
#if defined(_WIN32) && defined(_MSC_VER)
|
||||||
|
# if defined(_M_IA64)
|
||||||
|
# define ARCHITECTURE_ID "IA64"
|
||||||
|
|
||||||
|
# elif defined(_M_ARM64EC)
|
||||||
|
# define ARCHITECTURE_ID "ARM64EC"
|
||||||
|
|
||||||
|
# elif defined(_M_X64) || defined(_M_AMD64)
|
||||||
|
# define ARCHITECTURE_ID "x64"
|
||||||
|
|
||||||
|
# elif defined(_M_IX86)
|
||||||
|
# define ARCHITECTURE_ID "X86"
|
||||||
|
|
||||||
|
# elif defined(_M_ARM64)
|
||||||
|
# define ARCHITECTURE_ID "ARM64"
|
||||||
|
|
||||||
|
# elif defined(_M_ARM)
|
||||||
|
# if _M_ARM == 4
|
||||||
|
# define ARCHITECTURE_ID "ARMV4I"
|
||||||
|
# elif _M_ARM == 5
|
||||||
|
# define ARCHITECTURE_ID "ARMV5I"
|
||||||
|
# else
|
||||||
|
# define ARCHITECTURE_ID "ARMV" STRINGIFY(_M_ARM)
|
||||||
|
# endif
|
||||||
|
|
||||||
|
# elif defined(_M_MIPS)
|
||||||
|
# define ARCHITECTURE_ID "MIPS"
|
||||||
|
|
||||||
|
# elif defined(_M_SH)
|
||||||
|
# define ARCHITECTURE_ID "SHx"
|
||||||
|
|
||||||
|
# else /* unknown architecture */
|
||||||
|
# define ARCHITECTURE_ID ""
|
||||||
|
# endif
|
||||||
|
|
||||||
|
#elif defined(__WATCOMC__)
|
||||||
|
# if defined(_M_I86)
|
||||||
|
# define ARCHITECTURE_ID "I86"
|
||||||
|
|
||||||
|
# elif defined(_M_IX86)
|
||||||
|
# define ARCHITECTURE_ID "X86"
|
||||||
|
|
||||||
|
# else /* unknown architecture */
|
||||||
|
# define ARCHITECTURE_ID ""
|
||||||
|
# endif
|
||||||
|
|
||||||
|
#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC)
|
||||||
|
# if defined(__ICCARM__)
|
||||||
|
# define ARCHITECTURE_ID "ARM"
|
||||||
|
|
||||||
|
# elif defined(__ICCRX__)
|
||||||
|
# define ARCHITECTURE_ID "RX"
|
||||||
|
|
||||||
|
# elif defined(__ICCRH850__)
|
||||||
|
# define ARCHITECTURE_ID "RH850"
|
||||||
|
|
||||||
|
# elif defined(__ICCRL78__)
|
||||||
|
# define ARCHITECTURE_ID "RL78"
|
||||||
|
|
||||||
|
# elif defined(__ICCRISCV__)
|
||||||
|
# define ARCHITECTURE_ID "RISCV"
|
||||||
|
|
||||||
|
# elif defined(__ICCAVR__)
|
||||||
|
# define ARCHITECTURE_ID "AVR"
|
||||||
|
|
||||||
|
# elif defined(__ICC430__)
|
||||||
|
# define ARCHITECTURE_ID "MSP430"
|
||||||
|
|
||||||
|
# elif defined(__ICCV850__)
|
||||||
|
# define ARCHITECTURE_ID "V850"
|
||||||
|
|
||||||
|
# elif defined(__ICC8051__)
|
||||||
|
# define ARCHITECTURE_ID "8051"
|
||||||
|
|
||||||
|
# elif defined(__ICCSTM8__)
|
||||||
|
# define ARCHITECTURE_ID "STM8"
|
||||||
|
|
||||||
|
# else /* unknown architecture */
|
||||||
|
# define ARCHITECTURE_ID ""
|
||||||
|
# endif
|
||||||
|
|
||||||
|
#elif defined(__ghs__)
|
||||||
|
# if defined(__PPC64__)
|
||||||
|
# define ARCHITECTURE_ID "PPC64"
|
||||||
|
|
||||||
|
# elif defined(__ppc__)
|
||||||
|
# define ARCHITECTURE_ID "PPC"
|
||||||
|
|
||||||
|
# elif defined(__ARM__)
|
||||||
|
# define ARCHITECTURE_ID "ARM"
|
||||||
|
|
||||||
|
# elif defined(__x86_64__)
|
||||||
|
# define ARCHITECTURE_ID "x64"
|
||||||
|
|
||||||
|
# elif defined(__i386__)
|
||||||
|
# define ARCHITECTURE_ID "X86"
|
||||||
|
|
||||||
|
# else /* unknown architecture */
|
||||||
|
# define ARCHITECTURE_ID ""
|
||||||
|
# endif
|
||||||
|
|
||||||
|
#elif defined(__TI_COMPILER_VERSION__)
|
||||||
|
# if defined(__TI_ARM__)
|
||||||
|
# define ARCHITECTURE_ID "ARM"
|
||||||
|
|
||||||
|
# elif defined(__MSP430__)
|
||||||
|
# define ARCHITECTURE_ID "MSP430"
|
||||||
|
|
||||||
|
# elif defined(__TMS320C28XX__)
|
||||||
|
# define ARCHITECTURE_ID "TMS320C28x"
|
||||||
|
|
||||||
|
# elif defined(__TMS320C6X__) || defined(_TMS320C6X)
|
||||||
|
# define ARCHITECTURE_ID "TMS320C6x"
|
||||||
|
|
||||||
|
# else /* unknown architecture */
|
||||||
|
# define ARCHITECTURE_ID ""
|
||||||
|
# endif
|
||||||
|
|
||||||
|
#else
|
||||||
|
# define ARCHITECTURE_ID
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/* Convert integer to decimal digit literals. */
|
||||||
|
#define DEC(n) \
|
||||||
|
('0' + (((n) / 10000000)%10)), \
|
||||||
|
('0' + (((n) / 1000000)%10)), \
|
||||||
|
('0' + (((n) / 100000)%10)), \
|
||||||
|
('0' + (((n) / 10000)%10)), \
|
||||||
|
('0' + (((n) / 1000)%10)), \
|
||||||
|
('0' + (((n) / 100)%10)), \
|
||||||
|
('0' + (((n) / 10)%10)), \
|
||||||
|
('0' + ((n) % 10))
|
||||||
|
|
||||||
|
/* Convert integer to hex digit literals. */
|
||||||
|
#define HEX(n) \
|
||||||
|
('0' + ((n)>>28 & 0xF)), \
|
||||||
|
('0' + ((n)>>24 & 0xF)), \
|
||||||
|
('0' + ((n)>>20 & 0xF)), \
|
||||||
|
('0' + ((n)>>16 & 0xF)), \
|
||||||
|
('0' + ((n)>>12 & 0xF)), \
|
||||||
|
('0' + ((n)>>8 & 0xF)), \
|
||||||
|
('0' + ((n)>>4 & 0xF)), \
|
||||||
|
('0' + ((n) & 0xF))
|
||||||
|
|
||||||
|
/* Construct a string literal encoding the version number. */
|
||||||
|
#ifdef COMPILER_VERSION
|
||||||
|
char const* info_version = "INFO" ":" "compiler_version[" COMPILER_VERSION "]";
|
||||||
|
|
||||||
|
/* Construct a string literal encoding the version number components. */
|
||||||
|
#elif defined(COMPILER_VERSION_MAJOR)
|
||||||
|
char const info_version[] = {
|
||||||
|
'I', 'N', 'F', 'O', ':',
|
||||||
|
'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','[',
|
||||||
|
COMPILER_VERSION_MAJOR,
|
||||||
|
# ifdef COMPILER_VERSION_MINOR
|
||||||
|
'.', COMPILER_VERSION_MINOR,
|
||||||
|
# ifdef COMPILER_VERSION_PATCH
|
||||||
|
'.', COMPILER_VERSION_PATCH,
|
||||||
|
# ifdef COMPILER_VERSION_TWEAK
|
||||||
|
'.', COMPILER_VERSION_TWEAK,
|
||||||
|
# endif
|
||||||
|
# endif
|
||||||
|
# endif
|
||||||
|
']','\0'};
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/* Construct a string literal encoding the internal version number. */
|
||||||
|
#ifdef COMPILER_VERSION_INTERNAL
|
||||||
|
char const info_version_internal[] = {
|
||||||
|
'I', 'N', 'F', 'O', ':',
|
||||||
|
'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','_',
|
||||||
|
'i','n','t','e','r','n','a','l','[',
|
||||||
|
COMPILER_VERSION_INTERNAL,']','\0'};
|
||||||
|
#elif defined(COMPILER_VERSION_INTERNAL_STR)
|
||||||
|
char const* info_version_internal = "INFO" ":" "compiler_version_internal[" COMPILER_VERSION_INTERNAL_STR "]";
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/* Construct a string literal encoding the version number components. */
|
||||||
|
#ifdef SIMULATE_VERSION_MAJOR
|
||||||
|
char const info_simulate_version[] = {
|
||||||
|
'I', 'N', 'F', 'O', ':',
|
||||||
|
's','i','m','u','l','a','t','e','_','v','e','r','s','i','o','n','[',
|
||||||
|
SIMULATE_VERSION_MAJOR,
|
||||||
|
# ifdef SIMULATE_VERSION_MINOR
|
||||||
|
'.', SIMULATE_VERSION_MINOR,
|
||||||
|
# ifdef SIMULATE_VERSION_PATCH
|
||||||
|
'.', SIMULATE_VERSION_PATCH,
|
||||||
|
# ifdef SIMULATE_VERSION_TWEAK
|
||||||
|
'.', SIMULATE_VERSION_TWEAK,
|
||||||
|
# endif
|
||||||
|
# endif
|
||||||
|
# endif
|
||||||
|
']','\0'};
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/* Construct the string literal in pieces to prevent the source from
|
||||||
|
getting matched. Store it in a pointer rather than an array
|
||||||
|
because some compilers will just produce instructions to fill the
|
||||||
|
array rather than assigning a pointer to a static array. */
|
||||||
|
char const* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]";
|
||||||
|
char const* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]";
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
#if defined(__INTEL_COMPILER) && defined(_MSVC_LANG) && _MSVC_LANG < 201403L
|
||||||
|
# if defined(__INTEL_CXX11_MODE__)
|
||||||
|
# if defined(__cpp_aggregate_nsdmi)
|
||||||
|
# define CXX_STD 201402L
|
||||||
|
# else
|
||||||
|
# define CXX_STD 201103L
|
||||||
|
# endif
|
||||||
|
# else
|
||||||
|
# define CXX_STD 199711L
|
||||||
|
# endif
|
||||||
|
#elif defined(_MSC_VER) && defined(_MSVC_LANG)
|
||||||
|
# define CXX_STD _MSVC_LANG
|
||||||
|
#else
|
||||||
|
# define CXX_STD __cplusplus
|
||||||
|
#endif
|
||||||
|
|
||||||
|
const char* info_language_standard_default = "INFO" ":" "standard_default["
|
||||||
|
#if CXX_STD > 202002L
|
||||||
|
"23"
|
||||||
|
#elif CXX_STD > 201703L
|
||||||
|
"20"
|
||||||
|
#elif CXX_STD >= 201703L
|
||||||
|
"17"
|
||||||
|
#elif CXX_STD >= 201402L
|
||||||
|
"14"
|
||||||
|
#elif CXX_STD >= 201103L
|
||||||
|
"11"
|
||||||
|
#else
|
||||||
|
"98"
|
||||||
|
#endif
|
||||||
|
"]";
|
||||||
|
|
||||||
|
const char* info_language_extensions_default = "INFO" ":" "extensions_default["
|
||||||
|
#if (defined(__clang__) || defined(__GNUC__) || defined(__xlC__) || \
|
||||||
|
defined(__TI_COMPILER_VERSION__)) && \
|
||||||
|
!defined(__STRICT_ANSI__)
|
||||||
|
"ON"
|
||||||
|
#else
|
||||||
|
"OFF"
|
||||||
|
#endif
|
||||||
|
"]";
|
||||||
|
|
||||||
|
/*--------------------------------------------------------------------------*/
|
||||||
|
|
||||||
|
int main(int argc, char* argv[])
|
||||||
|
{
|
||||||
|
int require = 0;
|
||||||
|
require += info_compiler[argc];
|
||||||
|
require += info_platform[argc];
|
||||||
|
#ifdef COMPILER_VERSION_MAJOR
|
||||||
|
require += info_version[argc];
|
||||||
|
#endif
|
||||||
|
#ifdef COMPILER_VERSION_INTERNAL
|
||||||
|
require += info_version_internal[argc];
|
||||||
|
#endif
|
||||||
|
#ifdef SIMULATE_ID
|
||||||
|
require += info_simulate[argc];
|
||||||
|
#endif
|
||||||
|
#ifdef SIMULATE_VERSION_MAJOR
|
||||||
|
require += info_simulate_version[argc];
|
||||||
|
#endif
|
||||||
|
#if defined(__CRAYXT_COMPUTE_LINUX_TARGET)
|
||||||
|
require += info_cray[argc];
|
||||||
|
#endif
|
||||||
|
require += info_language_standard_default[argc];
|
||||||
|
require += info_language_extensions_default[argc];
|
||||||
|
(void)argv;
|
||||||
|
return require;
|
||||||
|
}
|
16
Hazelnupp/build/CMakeFiles/CMakeDirectoryInformation.cmake
Normal file
16
Hazelnupp/build/CMakeFiles/CMakeDirectoryInformation.cmake
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
# CMAKE generated file: DO NOT EDIT!
|
||||||
|
# Generated by "Unix Makefiles" Generator, CMake Version 3.23
|
||||||
|
|
||||||
|
# Relative path conversion top directories.
|
||||||
|
set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/home/menethil/projects/private_work/Hazelnupp/Hazelnupp")
|
||||||
|
set(CMAKE_RELATIVE_PATH_TOP_BINARY "/home/menethil/projects/private_work/Hazelnupp/Hazelnupp/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})
|
27
Hazelnupp/build/CMakeFiles/Hazelnupp.dir/DependInfo.cmake
Normal file
27
Hazelnupp/build/CMakeFiles/Hazelnupp.dir/DependInfo.cmake
Normal file
@ -0,0 +1,27 @@
|
|||||||
|
|
||||||
|
# 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/menethil/projects/private_work/Hazelnupp/Hazelnupp/src/CmdArgsInterface.cpp" "CMakeFiles/Hazelnupp.dir/src/CmdArgsInterface.cpp.o" "gcc" "CMakeFiles/Hazelnupp.dir/src/CmdArgsInterface.cpp.o.d"
|
||||||
|
"/home/menethil/projects/private_work/Hazelnupp/Hazelnupp/src/FloatValue.cpp" "CMakeFiles/Hazelnupp.dir/src/FloatValue.cpp.o" "gcc" "CMakeFiles/Hazelnupp.dir/src/FloatValue.cpp.o.d"
|
||||||
|
"/home/menethil/projects/private_work/Hazelnupp/Hazelnupp/src/IntValue.cpp" "CMakeFiles/Hazelnupp.dir/src/IntValue.cpp.o" "gcc" "CMakeFiles/Hazelnupp.dir/src/IntValue.cpp.o.d"
|
||||||
|
"/home/menethil/projects/private_work/Hazelnupp/Hazelnupp/src/ListValue.cpp" "CMakeFiles/Hazelnupp.dir/src/ListValue.cpp.o" "gcc" "CMakeFiles/Hazelnupp.dir/src/ListValue.cpp.o.d"
|
||||||
|
"/home/menethil/projects/private_work/Hazelnupp/Hazelnupp/src/Parameter.cpp" "CMakeFiles/Hazelnupp.dir/src/Parameter.cpp.o" "gcc" "CMakeFiles/Hazelnupp.dir/src/Parameter.cpp.o.d"
|
||||||
|
"/home/menethil/projects/private_work/Hazelnupp/Hazelnupp/src/StringTools.cpp" "CMakeFiles/Hazelnupp.dir/src/StringTools.cpp.o" "gcc" "CMakeFiles/Hazelnupp.dir/src/StringTools.cpp.o.d"
|
||||||
|
"/home/menethil/projects/private_work/Hazelnupp/Hazelnupp/src/StringValue.cpp" "CMakeFiles/Hazelnupp.dir/src/StringValue.cpp.o" "gcc" "CMakeFiles/Hazelnupp.dir/src/StringValue.cpp.o.d"
|
||||||
|
"/home/menethil/projects/private_work/Hazelnupp/Hazelnupp/src/Value.cpp" "CMakeFiles/Hazelnupp.dir/src/Value.cpp.o" "gcc" "CMakeFiles/Hazelnupp.dir/src/Value.cpp.o.d"
|
||||||
|
"/home/menethil/projects/private_work/Hazelnupp/Hazelnupp/src/VoidValue.cpp" "CMakeFiles/Hazelnupp.dir/src/VoidValue.cpp.o" "gcc" "CMakeFiles/Hazelnupp.dir/src/VoidValue.cpp.o.d"
|
||||||
|
)
|
||||||
|
|
||||||
|
# Targets to which this target links.
|
||||||
|
set(CMAKE_TARGET_LINKED_INFO_FILES
|
||||||
|
)
|
||||||
|
|
||||||
|
# Fortran module output directory.
|
||||||
|
set(CMAKE_Fortran_TARGET_MODULE_DIR "")
|
239
Hazelnupp/build/CMakeFiles/Hazelnupp.dir/build.make
Normal file
239
Hazelnupp/build/CMakeFiles/Hazelnupp.dir/build.make
Normal file
@ -0,0 +1,239 @@
|
|||||||
|
# CMAKE generated file: DO NOT EDIT!
|
||||||
|
# Generated by "Unix Makefiles" Generator, CMake Version 3.23
|
||||||
|
|
||||||
|
# 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/menethil/projects/private_work/Hazelnupp/Hazelnupp
|
||||||
|
|
||||||
|
# The top-level build directory on which CMake was run.
|
||||||
|
CMAKE_BINARY_DIR = /home/menethil/projects/private_work/Hazelnupp/Hazelnupp/build
|
||||||
|
|
||||||
|
# Include any dependencies generated for this target.
|
||||||
|
include CMakeFiles/Hazelnupp.dir/depend.make
|
||||||
|
# Include any dependencies generated by the compiler for this target.
|
||||||
|
include CMakeFiles/Hazelnupp.dir/compiler_depend.make
|
||||||
|
|
||||||
|
# Include the progress variables for this target.
|
||||||
|
include CMakeFiles/Hazelnupp.dir/progress.make
|
||||||
|
|
||||||
|
# Include the compile flags for this target's objects.
|
||||||
|
include CMakeFiles/Hazelnupp.dir/flags.make
|
||||||
|
|
||||||
|
CMakeFiles/Hazelnupp.dir/src/CmdArgsInterface.cpp.o: CMakeFiles/Hazelnupp.dir/flags.make
|
||||||
|
CMakeFiles/Hazelnupp.dir/src/CmdArgsInterface.cpp.o: ../src/CmdArgsInterface.cpp
|
||||||
|
CMakeFiles/Hazelnupp.dir/src/CmdArgsInterface.cpp.o: CMakeFiles/Hazelnupp.dir/compiler_depend.ts
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/menethil/projects/private_work/Hazelnupp/Hazelnupp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object CMakeFiles/Hazelnupp.dir/src/CmdArgsInterface.cpp.o"
|
||||||
|
/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/Hazelnupp.dir/src/CmdArgsInterface.cpp.o -MF CMakeFiles/Hazelnupp.dir/src/CmdArgsInterface.cpp.o.d -o CMakeFiles/Hazelnupp.dir/src/CmdArgsInterface.cpp.o -c /home/menethil/projects/private_work/Hazelnupp/Hazelnupp/src/CmdArgsInterface.cpp
|
||||||
|
|
||||||
|
CMakeFiles/Hazelnupp.dir/src/CmdArgsInterface.cpp.i: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/Hazelnupp.dir/src/CmdArgsInterface.cpp.i"
|
||||||
|
/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/menethil/projects/private_work/Hazelnupp/Hazelnupp/src/CmdArgsInterface.cpp > CMakeFiles/Hazelnupp.dir/src/CmdArgsInterface.cpp.i
|
||||||
|
|
||||||
|
CMakeFiles/Hazelnupp.dir/src/CmdArgsInterface.cpp.s: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/Hazelnupp.dir/src/CmdArgsInterface.cpp.s"
|
||||||
|
/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/menethil/projects/private_work/Hazelnupp/Hazelnupp/src/CmdArgsInterface.cpp -o CMakeFiles/Hazelnupp.dir/src/CmdArgsInterface.cpp.s
|
||||||
|
|
||||||
|
CMakeFiles/Hazelnupp.dir/src/FloatValue.cpp.o: CMakeFiles/Hazelnupp.dir/flags.make
|
||||||
|
CMakeFiles/Hazelnupp.dir/src/FloatValue.cpp.o: ../src/FloatValue.cpp
|
||||||
|
CMakeFiles/Hazelnupp.dir/src/FloatValue.cpp.o: CMakeFiles/Hazelnupp.dir/compiler_depend.ts
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/menethil/projects/private_work/Hazelnupp/Hazelnupp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building CXX object CMakeFiles/Hazelnupp.dir/src/FloatValue.cpp.o"
|
||||||
|
/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/Hazelnupp.dir/src/FloatValue.cpp.o -MF CMakeFiles/Hazelnupp.dir/src/FloatValue.cpp.o.d -o CMakeFiles/Hazelnupp.dir/src/FloatValue.cpp.o -c /home/menethil/projects/private_work/Hazelnupp/Hazelnupp/src/FloatValue.cpp
|
||||||
|
|
||||||
|
CMakeFiles/Hazelnupp.dir/src/FloatValue.cpp.i: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/Hazelnupp.dir/src/FloatValue.cpp.i"
|
||||||
|
/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/menethil/projects/private_work/Hazelnupp/Hazelnupp/src/FloatValue.cpp > CMakeFiles/Hazelnupp.dir/src/FloatValue.cpp.i
|
||||||
|
|
||||||
|
CMakeFiles/Hazelnupp.dir/src/FloatValue.cpp.s: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/Hazelnupp.dir/src/FloatValue.cpp.s"
|
||||||
|
/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/menethil/projects/private_work/Hazelnupp/Hazelnupp/src/FloatValue.cpp -o CMakeFiles/Hazelnupp.dir/src/FloatValue.cpp.s
|
||||||
|
|
||||||
|
CMakeFiles/Hazelnupp.dir/src/IntValue.cpp.o: CMakeFiles/Hazelnupp.dir/flags.make
|
||||||
|
CMakeFiles/Hazelnupp.dir/src/IntValue.cpp.o: ../src/IntValue.cpp
|
||||||
|
CMakeFiles/Hazelnupp.dir/src/IntValue.cpp.o: CMakeFiles/Hazelnupp.dir/compiler_depend.ts
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/menethil/projects/private_work/Hazelnupp/Hazelnupp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Building CXX object CMakeFiles/Hazelnupp.dir/src/IntValue.cpp.o"
|
||||||
|
/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/Hazelnupp.dir/src/IntValue.cpp.o -MF CMakeFiles/Hazelnupp.dir/src/IntValue.cpp.o.d -o CMakeFiles/Hazelnupp.dir/src/IntValue.cpp.o -c /home/menethil/projects/private_work/Hazelnupp/Hazelnupp/src/IntValue.cpp
|
||||||
|
|
||||||
|
CMakeFiles/Hazelnupp.dir/src/IntValue.cpp.i: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/Hazelnupp.dir/src/IntValue.cpp.i"
|
||||||
|
/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/menethil/projects/private_work/Hazelnupp/Hazelnupp/src/IntValue.cpp > CMakeFiles/Hazelnupp.dir/src/IntValue.cpp.i
|
||||||
|
|
||||||
|
CMakeFiles/Hazelnupp.dir/src/IntValue.cpp.s: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/Hazelnupp.dir/src/IntValue.cpp.s"
|
||||||
|
/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/menethil/projects/private_work/Hazelnupp/Hazelnupp/src/IntValue.cpp -o CMakeFiles/Hazelnupp.dir/src/IntValue.cpp.s
|
||||||
|
|
||||||
|
CMakeFiles/Hazelnupp.dir/src/ListValue.cpp.o: CMakeFiles/Hazelnupp.dir/flags.make
|
||||||
|
CMakeFiles/Hazelnupp.dir/src/ListValue.cpp.o: ../src/ListValue.cpp
|
||||||
|
CMakeFiles/Hazelnupp.dir/src/ListValue.cpp.o: CMakeFiles/Hazelnupp.dir/compiler_depend.ts
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/menethil/projects/private_work/Hazelnupp/Hazelnupp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_4) "Building CXX object CMakeFiles/Hazelnupp.dir/src/ListValue.cpp.o"
|
||||||
|
/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/Hazelnupp.dir/src/ListValue.cpp.o -MF CMakeFiles/Hazelnupp.dir/src/ListValue.cpp.o.d -o CMakeFiles/Hazelnupp.dir/src/ListValue.cpp.o -c /home/menethil/projects/private_work/Hazelnupp/Hazelnupp/src/ListValue.cpp
|
||||||
|
|
||||||
|
CMakeFiles/Hazelnupp.dir/src/ListValue.cpp.i: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/Hazelnupp.dir/src/ListValue.cpp.i"
|
||||||
|
/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/menethil/projects/private_work/Hazelnupp/Hazelnupp/src/ListValue.cpp > CMakeFiles/Hazelnupp.dir/src/ListValue.cpp.i
|
||||||
|
|
||||||
|
CMakeFiles/Hazelnupp.dir/src/ListValue.cpp.s: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/Hazelnupp.dir/src/ListValue.cpp.s"
|
||||||
|
/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/menethil/projects/private_work/Hazelnupp/Hazelnupp/src/ListValue.cpp -o CMakeFiles/Hazelnupp.dir/src/ListValue.cpp.s
|
||||||
|
|
||||||
|
CMakeFiles/Hazelnupp.dir/src/Parameter.cpp.o: CMakeFiles/Hazelnupp.dir/flags.make
|
||||||
|
CMakeFiles/Hazelnupp.dir/src/Parameter.cpp.o: ../src/Parameter.cpp
|
||||||
|
CMakeFiles/Hazelnupp.dir/src/Parameter.cpp.o: CMakeFiles/Hazelnupp.dir/compiler_depend.ts
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/menethil/projects/private_work/Hazelnupp/Hazelnupp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_5) "Building CXX object CMakeFiles/Hazelnupp.dir/src/Parameter.cpp.o"
|
||||||
|
/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/Hazelnupp.dir/src/Parameter.cpp.o -MF CMakeFiles/Hazelnupp.dir/src/Parameter.cpp.o.d -o CMakeFiles/Hazelnupp.dir/src/Parameter.cpp.o -c /home/menethil/projects/private_work/Hazelnupp/Hazelnupp/src/Parameter.cpp
|
||||||
|
|
||||||
|
CMakeFiles/Hazelnupp.dir/src/Parameter.cpp.i: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/Hazelnupp.dir/src/Parameter.cpp.i"
|
||||||
|
/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/menethil/projects/private_work/Hazelnupp/Hazelnupp/src/Parameter.cpp > CMakeFiles/Hazelnupp.dir/src/Parameter.cpp.i
|
||||||
|
|
||||||
|
CMakeFiles/Hazelnupp.dir/src/Parameter.cpp.s: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/Hazelnupp.dir/src/Parameter.cpp.s"
|
||||||
|
/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/menethil/projects/private_work/Hazelnupp/Hazelnupp/src/Parameter.cpp -o CMakeFiles/Hazelnupp.dir/src/Parameter.cpp.s
|
||||||
|
|
||||||
|
CMakeFiles/Hazelnupp.dir/src/StringTools.cpp.o: CMakeFiles/Hazelnupp.dir/flags.make
|
||||||
|
CMakeFiles/Hazelnupp.dir/src/StringTools.cpp.o: ../src/StringTools.cpp
|
||||||
|
CMakeFiles/Hazelnupp.dir/src/StringTools.cpp.o: CMakeFiles/Hazelnupp.dir/compiler_depend.ts
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/menethil/projects/private_work/Hazelnupp/Hazelnupp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_6) "Building CXX object CMakeFiles/Hazelnupp.dir/src/StringTools.cpp.o"
|
||||||
|
/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/Hazelnupp.dir/src/StringTools.cpp.o -MF CMakeFiles/Hazelnupp.dir/src/StringTools.cpp.o.d -o CMakeFiles/Hazelnupp.dir/src/StringTools.cpp.o -c /home/menethil/projects/private_work/Hazelnupp/Hazelnupp/src/StringTools.cpp
|
||||||
|
|
||||||
|
CMakeFiles/Hazelnupp.dir/src/StringTools.cpp.i: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/Hazelnupp.dir/src/StringTools.cpp.i"
|
||||||
|
/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/menethil/projects/private_work/Hazelnupp/Hazelnupp/src/StringTools.cpp > CMakeFiles/Hazelnupp.dir/src/StringTools.cpp.i
|
||||||
|
|
||||||
|
CMakeFiles/Hazelnupp.dir/src/StringTools.cpp.s: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/Hazelnupp.dir/src/StringTools.cpp.s"
|
||||||
|
/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/menethil/projects/private_work/Hazelnupp/Hazelnupp/src/StringTools.cpp -o CMakeFiles/Hazelnupp.dir/src/StringTools.cpp.s
|
||||||
|
|
||||||
|
CMakeFiles/Hazelnupp.dir/src/StringValue.cpp.o: CMakeFiles/Hazelnupp.dir/flags.make
|
||||||
|
CMakeFiles/Hazelnupp.dir/src/StringValue.cpp.o: ../src/StringValue.cpp
|
||||||
|
CMakeFiles/Hazelnupp.dir/src/StringValue.cpp.o: CMakeFiles/Hazelnupp.dir/compiler_depend.ts
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/menethil/projects/private_work/Hazelnupp/Hazelnupp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_7) "Building CXX object CMakeFiles/Hazelnupp.dir/src/StringValue.cpp.o"
|
||||||
|
/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/Hazelnupp.dir/src/StringValue.cpp.o -MF CMakeFiles/Hazelnupp.dir/src/StringValue.cpp.o.d -o CMakeFiles/Hazelnupp.dir/src/StringValue.cpp.o -c /home/menethil/projects/private_work/Hazelnupp/Hazelnupp/src/StringValue.cpp
|
||||||
|
|
||||||
|
CMakeFiles/Hazelnupp.dir/src/StringValue.cpp.i: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/Hazelnupp.dir/src/StringValue.cpp.i"
|
||||||
|
/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/menethil/projects/private_work/Hazelnupp/Hazelnupp/src/StringValue.cpp > CMakeFiles/Hazelnupp.dir/src/StringValue.cpp.i
|
||||||
|
|
||||||
|
CMakeFiles/Hazelnupp.dir/src/StringValue.cpp.s: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/Hazelnupp.dir/src/StringValue.cpp.s"
|
||||||
|
/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/menethil/projects/private_work/Hazelnupp/Hazelnupp/src/StringValue.cpp -o CMakeFiles/Hazelnupp.dir/src/StringValue.cpp.s
|
||||||
|
|
||||||
|
CMakeFiles/Hazelnupp.dir/src/Value.cpp.o: CMakeFiles/Hazelnupp.dir/flags.make
|
||||||
|
CMakeFiles/Hazelnupp.dir/src/Value.cpp.o: ../src/Value.cpp
|
||||||
|
CMakeFiles/Hazelnupp.dir/src/Value.cpp.o: CMakeFiles/Hazelnupp.dir/compiler_depend.ts
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/menethil/projects/private_work/Hazelnupp/Hazelnupp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_8) "Building CXX object CMakeFiles/Hazelnupp.dir/src/Value.cpp.o"
|
||||||
|
/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/Hazelnupp.dir/src/Value.cpp.o -MF CMakeFiles/Hazelnupp.dir/src/Value.cpp.o.d -o CMakeFiles/Hazelnupp.dir/src/Value.cpp.o -c /home/menethil/projects/private_work/Hazelnupp/Hazelnupp/src/Value.cpp
|
||||||
|
|
||||||
|
CMakeFiles/Hazelnupp.dir/src/Value.cpp.i: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/Hazelnupp.dir/src/Value.cpp.i"
|
||||||
|
/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/menethil/projects/private_work/Hazelnupp/Hazelnupp/src/Value.cpp > CMakeFiles/Hazelnupp.dir/src/Value.cpp.i
|
||||||
|
|
||||||
|
CMakeFiles/Hazelnupp.dir/src/Value.cpp.s: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/Hazelnupp.dir/src/Value.cpp.s"
|
||||||
|
/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/menethil/projects/private_work/Hazelnupp/Hazelnupp/src/Value.cpp -o CMakeFiles/Hazelnupp.dir/src/Value.cpp.s
|
||||||
|
|
||||||
|
CMakeFiles/Hazelnupp.dir/src/VoidValue.cpp.o: CMakeFiles/Hazelnupp.dir/flags.make
|
||||||
|
CMakeFiles/Hazelnupp.dir/src/VoidValue.cpp.o: ../src/VoidValue.cpp
|
||||||
|
CMakeFiles/Hazelnupp.dir/src/VoidValue.cpp.o: CMakeFiles/Hazelnupp.dir/compiler_depend.ts
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/menethil/projects/private_work/Hazelnupp/Hazelnupp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_9) "Building CXX object CMakeFiles/Hazelnupp.dir/src/VoidValue.cpp.o"
|
||||||
|
/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/Hazelnupp.dir/src/VoidValue.cpp.o -MF CMakeFiles/Hazelnupp.dir/src/VoidValue.cpp.o.d -o CMakeFiles/Hazelnupp.dir/src/VoidValue.cpp.o -c /home/menethil/projects/private_work/Hazelnupp/Hazelnupp/src/VoidValue.cpp
|
||||||
|
|
||||||
|
CMakeFiles/Hazelnupp.dir/src/VoidValue.cpp.i: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/Hazelnupp.dir/src/VoidValue.cpp.i"
|
||||||
|
/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/menethil/projects/private_work/Hazelnupp/Hazelnupp/src/VoidValue.cpp > CMakeFiles/Hazelnupp.dir/src/VoidValue.cpp.i
|
||||||
|
|
||||||
|
CMakeFiles/Hazelnupp.dir/src/VoidValue.cpp.s: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/Hazelnupp.dir/src/VoidValue.cpp.s"
|
||||||
|
/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/menethil/projects/private_work/Hazelnupp/Hazelnupp/src/VoidValue.cpp -o CMakeFiles/Hazelnupp.dir/src/VoidValue.cpp.s
|
||||||
|
|
||||||
|
# Object files for target Hazelnupp
|
||||||
|
Hazelnupp_OBJECTS = \
|
||||||
|
"CMakeFiles/Hazelnupp.dir/src/CmdArgsInterface.cpp.o" \
|
||||||
|
"CMakeFiles/Hazelnupp.dir/src/FloatValue.cpp.o" \
|
||||||
|
"CMakeFiles/Hazelnupp.dir/src/IntValue.cpp.o" \
|
||||||
|
"CMakeFiles/Hazelnupp.dir/src/ListValue.cpp.o" \
|
||||||
|
"CMakeFiles/Hazelnupp.dir/src/Parameter.cpp.o" \
|
||||||
|
"CMakeFiles/Hazelnupp.dir/src/StringTools.cpp.o" \
|
||||||
|
"CMakeFiles/Hazelnupp.dir/src/StringValue.cpp.o" \
|
||||||
|
"CMakeFiles/Hazelnupp.dir/src/Value.cpp.o" \
|
||||||
|
"CMakeFiles/Hazelnupp.dir/src/VoidValue.cpp.o"
|
||||||
|
|
||||||
|
# External object files for target Hazelnupp
|
||||||
|
Hazelnupp_EXTERNAL_OBJECTS =
|
||||||
|
|
||||||
|
libHazelnupp.a: CMakeFiles/Hazelnupp.dir/src/CmdArgsInterface.cpp.o
|
||||||
|
libHazelnupp.a: CMakeFiles/Hazelnupp.dir/src/FloatValue.cpp.o
|
||||||
|
libHazelnupp.a: CMakeFiles/Hazelnupp.dir/src/IntValue.cpp.o
|
||||||
|
libHazelnupp.a: CMakeFiles/Hazelnupp.dir/src/ListValue.cpp.o
|
||||||
|
libHazelnupp.a: CMakeFiles/Hazelnupp.dir/src/Parameter.cpp.o
|
||||||
|
libHazelnupp.a: CMakeFiles/Hazelnupp.dir/src/StringTools.cpp.o
|
||||||
|
libHazelnupp.a: CMakeFiles/Hazelnupp.dir/src/StringValue.cpp.o
|
||||||
|
libHazelnupp.a: CMakeFiles/Hazelnupp.dir/src/Value.cpp.o
|
||||||
|
libHazelnupp.a: CMakeFiles/Hazelnupp.dir/src/VoidValue.cpp.o
|
||||||
|
libHazelnupp.a: CMakeFiles/Hazelnupp.dir/build.make
|
||||||
|
libHazelnupp.a: CMakeFiles/Hazelnupp.dir/link.txt
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --bold --progress-dir=/home/menethil/projects/private_work/Hazelnupp/Hazelnupp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_10) "Linking CXX static library libHazelnupp.a"
|
||||||
|
$(CMAKE_COMMAND) -P CMakeFiles/Hazelnupp.dir/cmake_clean_target.cmake
|
||||||
|
$(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/Hazelnupp.dir/link.txt --verbose=$(VERBOSE)
|
||||||
|
|
||||||
|
# Rule to build all files generated by this target.
|
||||||
|
CMakeFiles/Hazelnupp.dir/build: libHazelnupp.a
|
||||||
|
.PHONY : CMakeFiles/Hazelnupp.dir/build
|
||||||
|
|
||||||
|
CMakeFiles/Hazelnupp.dir/clean:
|
||||||
|
$(CMAKE_COMMAND) -P CMakeFiles/Hazelnupp.dir/cmake_clean.cmake
|
||||||
|
.PHONY : CMakeFiles/Hazelnupp.dir/clean
|
||||||
|
|
||||||
|
CMakeFiles/Hazelnupp.dir/depend:
|
||||||
|
cd /home/menethil/projects/private_work/Hazelnupp/Hazelnupp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/menethil/projects/private_work/Hazelnupp/Hazelnupp /home/menethil/projects/private_work/Hazelnupp/Hazelnupp /home/menethil/projects/private_work/Hazelnupp/Hazelnupp/build /home/menethil/projects/private_work/Hazelnupp/Hazelnupp/build /home/menethil/projects/private_work/Hazelnupp/Hazelnupp/build/CMakeFiles/Hazelnupp.dir/DependInfo.cmake --color=$(COLOR)
|
||||||
|
.PHONY : CMakeFiles/Hazelnupp.dir/depend
|
||||||
|
|
27
Hazelnupp/build/CMakeFiles/Hazelnupp.dir/cmake_clean.cmake
Normal file
27
Hazelnupp/build/CMakeFiles/Hazelnupp.dir/cmake_clean.cmake
Normal file
@ -0,0 +1,27 @@
|
|||||||
|
file(REMOVE_RECURSE
|
||||||
|
"CMakeFiles/Hazelnupp.dir/src/CmdArgsInterface.cpp.o"
|
||||||
|
"CMakeFiles/Hazelnupp.dir/src/CmdArgsInterface.cpp.o.d"
|
||||||
|
"CMakeFiles/Hazelnupp.dir/src/FloatValue.cpp.o"
|
||||||
|
"CMakeFiles/Hazelnupp.dir/src/FloatValue.cpp.o.d"
|
||||||
|
"CMakeFiles/Hazelnupp.dir/src/IntValue.cpp.o"
|
||||||
|
"CMakeFiles/Hazelnupp.dir/src/IntValue.cpp.o.d"
|
||||||
|
"CMakeFiles/Hazelnupp.dir/src/ListValue.cpp.o"
|
||||||
|
"CMakeFiles/Hazelnupp.dir/src/ListValue.cpp.o.d"
|
||||||
|
"CMakeFiles/Hazelnupp.dir/src/Parameter.cpp.o"
|
||||||
|
"CMakeFiles/Hazelnupp.dir/src/Parameter.cpp.o.d"
|
||||||
|
"CMakeFiles/Hazelnupp.dir/src/StringTools.cpp.o"
|
||||||
|
"CMakeFiles/Hazelnupp.dir/src/StringTools.cpp.o.d"
|
||||||
|
"CMakeFiles/Hazelnupp.dir/src/StringValue.cpp.o"
|
||||||
|
"CMakeFiles/Hazelnupp.dir/src/StringValue.cpp.o.d"
|
||||||
|
"CMakeFiles/Hazelnupp.dir/src/Value.cpp.o"
|
||||||
|
"CMakeFiles/Hazelnupp.dir/src/Value.cpp.o.d"
|
||||||
|
"CMakeFiles/Hazelnupp.dir/src/VoidValue.cpp.o"
|
||||||
|
"CMakeFiles/Hazelnupp.dir/src/VoidValue.cpp.o.d"
|
||||||
|
"libHazelnupp.a"
|
||||||
|
"libHazelnupp.pdb"
|
||||||
|
)
|
||||||
|
|
||||||
|
# Per-language clean rules from dependency scanning.
|
||||||
|
foreach(lang CXX)
|
||||||
|
include(CMakeFiles/Hazelnupp.dir/cmake_clean_${lang}.cmake OPTIONAL)
|
||||||
|
endforeach()
|
@ -0,0 +1,3 @@
|
|||||||
|
file(REMOVE_RECURSE
|
||||||
|
"libHazelnupp.a"
|
||||||
|
)
|
1791
Hazelnupp/build/CMakeFiles/Hazelnupp.dir/compiler_depend.internal
Normal file
1791
Hazelnupp/build/CMakeFiles/Hazelnupp.dir/compiler_depend.internal
Normal file
File diff suppressed because it is too large
Load Diff
2276
Hazelnupp/build/CMakeFiles/Hazelnupp.dir/compiler_depend.make
Normal file
2276
Hazelnupp/build/CMakeFiles/Hazelnupp.dir/compiler_depend.make
Normal file
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,2 @@
|
|||||||
|
# CMAKE generated file: DO NOT EDIT!
|
||||||
|
# Timestamp file for compiler generated dependencies management for Hazelnupp.
|
2
Hazelnupp/build/CMakeFiles/Hazelnupp.dir/depend.make
Normal file
2
Hazelnupp/build/CMakeFiles/Hazelnupp.dir/depend.make
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
# Empty dependencies file for Hazelnupp.
|
||||||
|
# This may be replaced when dependencies are built.
|
10
Hazelnupp/build/CMakeFiles/Hazelnupp.dir/flags.make
Normal file
10
Hazelnupp/build/CMakeFiles/Hazelnupp.dir/flags.make
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
# CMAKE generated file: DO NOT EDIT!
|
||||||
|
# Generated by "Unix Makefiles" Generator, CMake Version 3.23
|
||||||
|
|
||||||
|
# compile CXX with /usr/bin/c++
|
||||||
|
CXX_DEFINES =
|
||||||
|
|
||||||
|
CXX_INCLUDES = -I/home/menethil/projects/private_work/Hazelnupp/Hazelnupp/include
|
||||||
|
|
||||||
|
CXX_FLAGS = -std=gnu++17
|
||||||
|
|
2
Hazelnupp/build/CMakeFiles/Hazelnupp.dir/link.txt
Normal file
2
Hazelnupp/build/CMakeFiles/Hazelnupp.dir/link.txt
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
/usr/bin/ar qc libHazelnupp.a CMakeFiles/Hazelnupp.dir/src/CmdArgsInterface.cpp.o CMakeFiles/Hazelnupp.dir/src/FloatValue.cpp.o CMakeFiles/Hazelnupp.dir/src/IntValue.cpp.o CMakeFiles/Hazelnupp.dir/src/ListValue.cpp.o CMakeFiles/Hazelnupp.dir/src/Parameter.cpp.o CMakeFiles/Hazelnupp.dir/src/StringTools.cpp.o CMakeFiles/Hazelnupp.dir/src/StringValue.cpp.o CMakeFiles/Hazelnupp.dir/src/Value.cpp.o CMakeFiles/Hazelnupp.dir/src/VoidValue.cpp.o
|
||||||
|
/usr/bin/ranlib libHazelnupp.a
|
11
Hazelnupp/build/CMakeFiles/Hazelnupp.dir/progress.make
Normal file
11
Hazelnupp/build/CMakeFiles/Hazelnupp.dir/progress.make
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
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
|
||||||
|
CMAKE_PROGRESS_10 = 10
|
||||||
|
|
Binary file not shown.
@ -0,0 +1,184 @@
|
|||||||
|
CMakeFiles/Hazelnupp.dir/src/CmdArgsInterface.cpp.o: \
|
||||||
|
/home/menethil/projects/private_work/Hazelnupp/Hazelnupp/src/CmdArgsInterface.cpp \
|
||||||
|
/usr/include/stdc-predef.h \
|
||||||
|
/home/menethil/projects/private_work/Hazelnupp/Hazelnupp/include/Hazelnupp/CmdArgsInterface.h \
|
||||||
|
/home/menethil/projects/private_work/Hazelnupp/Hazelnupp/include/Hazelnupp/Parameter.h \
|
||||||
|
/home/menethil/projects/private_work/Hazelnupp/Hazelnupp/include/Hazelnupp/Value.h \
|
||||||
|
/home/menethil/projects/private_work/Hazelnupp/Hazelnupp/include/Hazelnupp/DataType.h \
|
||||||
|
/usr/include/c++/11.2.0/string \
|
||||||
|
/usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/c++config.h \
|
||||||
|
/usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/os_defines.h \
|
||||||
|
/usr/include/features.h /usr/include/features-time64.h \
|
||||||
|
/usr/include/bits/wordsize.h /usr/include/bits/timesize.h \
|
||||||
|
/usr/include/sys/cdefs.h /usr/include/bits/long-double.h \
|
||||||
|
/usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \
|
||||||
|
/usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/cpu_defines.h \
|
||||||
|
/usr/include/c++/11.2.0/pstl/pstl_config.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/stringfwd.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/memoryfwd.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/char_traits.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/stl_algobase.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/functexcept.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/exception_defines.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/cpp_type_traits.h \
|
||||||
|
/usr/include/c++/11.2.0/ext/type_traits.h \
|
||||||
|
/usr/include/c++/11.2.0/ext/numeric_traits.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/stl_pair.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/move.h /usr/include/c++/11.2.0/type_traits \
|
||||||
|
/usr/include/c++/11.2.0/bits/stl_iterator_base_types.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/stl_iterator_base_funcs.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/concept_check.h \
|
||||||
|
/usr/include/c++/11.2.0/debug/assertions.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/stl_iterator.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/ptr_traits.h \
|
||||||
|
/usr/include/c++/11.2.0/debug/debug.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/predefined_ops.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/postypes.h /usr/include/c++/11.2.0/cwchar \
|
||||||
|
/usr/include/wchar.h /usr/include/bits/libc-header-start.h \
|
||||||
|
/usr/include/bits/floatn.h /usr/include/bits/floatn-common.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/include/stddef.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/include/stdarg.h \
|
||||||
|
/usr/include/bits/wchar.h /usr/include/bits/types/wint_t.h \
|
||||||
|
/usr/include/bits/types/mbstate_t.h \
|
||||||
|
/usr/include/bits/types/__mbstate_t.h /usr/include/bits/types/__FILE.h \
|
||||||
|
/usr/include/bits/types/FILE.h /usr/include/bits/types/locale_t.h \
|
||||||
|
/usr/include/bits/types/__locale_t.h /usr/include/c++/11.2.0/cstdint \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/include/stdint.h \
|
||||||
|
/usr/include/stdint.h /usr/include/bits/types.h \
|
||||||
|
/usr/include/bits/typesizes.h /usr/include/bits/time64.h \
|
||||||
|
/usr/include/bits/stdint-intn.h /usr/include/bits/stdint-uintn.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/allocator.h \
|
||||||
|
/usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/c++allocator.h \
|
||||||
|
/usr/include/c++/11.2.0/ext/new_allocator.h /usr/include/c++/11.2.0/new \
|
||||||
|
/usr/include/c++/11.2.0/bits/exception.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/localefwd.h \
|
||||||
|
/usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/c++locale.h \
|
||||||
|
/usr/include/c++/11.2.0/clocale /usr/include/locale.h \
|
||||||
|
/usr/include/bits/locale.h /usr/include/c++/11.2.0/iosfwd \
|
||||||
|
/usr/include/c++/11.2.0/cctype /usr/include/ctype.h \
|
||||||
|
/usr/include/bits/endian.h /usr/include/bits/endianness.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/ostream_insert.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/cxxabi_forced.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/stl_function.h \
|
||||||
|
/usr/include/c++/11.2.0/backward/binders.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/range_access.h \
|
||||||
|
/usr/include/c++/11.2.0/initializer_list \
|
||||||
|
/usr/include/c++/11.2.0/bits/basic_string.h \
|
||||||
|
/usr/include/c++/11.2.0/ext/atomicity.h \
|
||||||
|
/usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/gthr.h \
|
||||||
|
/usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/gthr-default.h \
|
||||||
|
/usr/include/pthread.h /usr/include/sched.h \
|
||||||
|
/usr/include/bits/types/time_t.h \
|
||||||
|
/usr/include/bits/types/struct_timespec.h /usr/include/bits/sched.h \
|
||||||
|
/usr/include/bits/types/struct_sched_param.h /usr/include/bits/cpu-set.h \
|
||||||
|
/usr/include/time.h /usr/include/bits/time.h /usr/include/bits/timex.h \
|
||||||
|
/usr/include/bits/types/struct_timeval.h \
|
||||||
|
/usr/include/bits/types/clock_t.h /usr/include/bits/types/struct_tm.h \
|
||||||
|
/usr/include/bits/types/clockid_t.h /usr/include/bits/types/timer_t.h \
|
||||||
|
/usr/include/bits/types/struct_itimerspec.h \
|
||||||
|
/usr/include/bits/pthreadtypes.h /usr/include/bits/thread-shared-types.h \
|
||||||
|
/usr/include/bits/pthreadtypes-arch.h \
|
||||||
|
/usr/include/bits/atomic_wide_counter.h /usr/include/bits/struct_mutex.h \
|
||||||
|
/usr/include/bits/struct_rwlock.h /usr/include/bits/setjmp.h \
|
||||||
|
/usr/include/bits/types/__sigset_t.h \
|
||||||
|
/usr/include/bits/types/struct___jmp_buf_tag.h \
|
||||||
|
/usr/include/bits/pthread_stack_min-dynamic.h \
|
||||||
|
/usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/atomic_word.h \
|
||||||
|
/usr/include/sys/single_threaded.h \
|
||||||
|
/usr/include/c++/11.2.0/ext/alloc_traits.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/alloc_traits.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/stl_construct.h \
|
||||||
|
/usr/include/c++/11.2.0/string_view \
|
||||||
|
/usr/include/c++/11.2.0/bits/functional_hash.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/hash_bytes.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/string_view.tcc \
|
||||||
|
/usr/include/c++/11.2.0/ext/string_conversions.h \
|
||||||
|
/usr/include/c++/11.2.0/cstdlib /usr/include/stdlib.h \
|
||||||
|
/usr/include/bits/waitflags.h /usr/include/bits/waitstatus.h \
|
||||||
|
/usr/include/sys/types.h /usr/include/endian.h \
|
||||||
|
/usr/include/bits/byteswap.h /usr/include/bits/uintn-identity.h \
|
||||||
|
/usr/include/sys/select.h /usr/include/bits/select.h \
|
||||||
|
/usr/include/bits/types/sigset_t.h /usr/include/alloca.h \
|
||||||
|
/usr/include/bits/stdlib-float.h /usr/include/c++/11.2.0/bits/std_abs.h \
|
||||||
|
/usr/include/c++/11.2.0/cstdio /usr/include/stdio.h \
|
||||||
|
/usr/include/bits/types/__fpos_t.h /usr/include/bits/types/__fpos64_t.h \
|
||||||
|
/usr/include/bits/types/struct_FILE.h \
|
||||||
|
/usr/include/bits/types/cookie_io_functions_t.h \
|
||||||
|
/usr/include/bits/stdio_lim.h /usr/include/c++/11.2.0/cerrno \
|
||||||
|
/usr/include/errno.h /usr/include/bits/errno.h \
|
||||||
|
/usr/include/linux/errno.h /usr/include/asm/errno.h \
|
||||||
|
/usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \
|
||||||
|
/usr/include/bits/types/error_t.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/charconv.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/basic_string.tcc \
|
||||||
|
/usr/include/c++/11.2.0/ostream /usr/include/c++/11.2.0/ios \
|
||||||
|
/usr/include/c++/11.2.0/exception \
|
||||||
|
/usr/include/c++/11.2.0/bits/exception_ptr.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/cxxabi_init_exception.h \
|
||||||
|
/usr/include/c++/11.2.0/typeinfo \
|
||||||
|
/usr/include/c++/11.2.0/bits/nested_exception.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/ios_base.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/locale_classes.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/locale_classes.tcc \
|
||||||
|
/usr/include/c++/11.2.0/system_error \
|
||||||
|
/usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/error_constants.h \
|
||||||
|
/usr/include/c++/11.2.0/stdexcept /usr/include/c++/11.2.0/streambuf \
|
||||||
|
/usr/include/c++/11.2.0/bits/streambuf.tcc \
|
||||||
|
/usr/include/c++/11.2.0/bits/basic_ios.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/locale_facets.h \
|
||||||
|
/usr/include/c++/11.2.0/cwctype /usr/include/wctype.h \
|
||||||
|
/usr/include/bits/wctype-wchar.h \
|
||||||
|
/usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/ctype_base.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/streambuf_iterator.h \
|
||||||
|
/usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/ctype_inline.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/locale_facets.tcc \
|
||||||
|
/usr/include/c++/11.2.0/bits/basic_ios.tcc \
|
||||||
|
/usr/include/c++/11.2.0/bits/ostream.tcc /usr/include/c++/11.2.0/vector \
|
||||||
|
/usr/include/c++/11.2.0/bits/stl_uninitialized.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/stl_vector.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/stl_bvector.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/vector.tcc \
|
||||||
|
/home/menethil/projects/private_work/Hazelnupp/Hazelnupp/include/Hazelnupp/ParamConstraint.h \
|
||||||
|
/usr/include/c++/11.2.0/unordered_map \
|
||||||
|
/usr/include/c++/11.2.0/ext/aligned_buffer.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/hashtable.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/hashtable_policy.h \
|
||||||
|
/usr/include/c++/11.2.0/tuple /usr/include/c++/11.2.0/utility \
|
||||||
|
/usr/include/c++/11.2.0/bits/stl_relops.h /usr/include/c++/11.2.0/array \
|
||||||
|
/usr/include/c++/11.2.0/bits/uses_allocator.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/invoke.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/node_handle.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/unordered_map.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/erase_if.h \
|
||||||
|
/home/menethil/projects/private_work/Hazelnupp/Hazelnupp/include/Hazelnupp/Version.h \
|
||||||
|
/home/menethil/projects/private_work/Hazelnupp/Hazelnupp/include/Hazelnupp/VoidValue.h \
|
||||||
|
/home/menethil/projects/private_work/Hazelnupp/Hazelnupp/include/Hazelnupp/IntValue.h \
|
||||||
|
/home/menethil/projects/private_work/Hazelnupp/Hazelnupp/include/Hazelnupp/FloatValue.h \
|
||||||
|
/home/menethil/projects/private_work/Hazelnupp/Hazelnupp/include/Hazelnupp/StringValue.h \
|
||||||
|
/home/menethil/projects/private_work/Hazelnupp/Hazelnupp/include/Hazelnupp/ListValue.h \
|
||||||
|
/home/menethil/projects/private_work/Hazelnupp/Hazelnupp/include/Hazelnupp/HazelnuppException.h \
|
||||||
|
/usr/include/c++/11.2.0/sstream /usr/include/c++/11.2.0/istream \
|
||||||
|
/usr/include/c++/11.2.0/bits/istream.tcc \
|
||||||
|
/usr/include/c++/11.2.0/bits/sstream.tcc \
|
||||||
|
/home/menethil/projects/private_work/Hazelnupp/Hazelnupp/include/Hazelnupp/Placeholders.h \
|
||||||
|
/home/menethil/projects/private_work/Hazelnupp/Hazelnupp/include/Hazelnupp/StringTools.h \
|
||||||
|
/usr/include/c++/11.2.0/cmath /usr/include/math.h \
|
||||||
|
/usr/include/bits/math-vector.h /usr/include/bits/libm-simd-decl-stubs.h \
|
||||||
|
/usr/include/bits/flt-eval-method.h /usr/include/bits/fp-logb.h \
|
||||||
|
/usr/include/bits/fp-fast.h \
|
||||||
|
/usr/include/bits/mathcalls-helper-functions.h \
|
||||||
|
/usr/include/bits/mathcalls.h /usr/include/bits/mathcalls-narrow.h \
|
||||||
|
/usr/include/bits/iscanonical.h /usr/include/c++/11.2.0/bits/specfun.h \
|
||||||
|
/usr/include/c++/11.2.0/limits /usr/include/c++/11.2.0/tr1/gamma.tcc \
|
||||||
|
/usr/include/c++/11.2.0/tr1/special_function_util.h \
|
||||||
|
/usr/include/c++/11.2.0/tr1/bessel_function.tcc \
|
||||||
|
/usr/include/c++/11.2.0/tr1/beta_function.tcc \
|
||||||
|
/usr/include/c++/11.2.0/tr1/ell_integral.tcc \
|
||||||
|
/usr/include/c++/11.2.0/tr1/exp_integral.tcc \
|
||||||
|
/usr/include/c++/11.2.0/tr1/hypergeometric.tcc \
|
||||||
|
/usr/include/c++/11.2.0/tr1/legendre_function.tcc \
|
||||||
|
/usr/include/c++/11.2.0/tr1/modified_bessel_func.tcc \
|
||||||
|
/usr/include/c++/11.2.0/tr1/poly_hermite.tcc \
|
||||||
|
/usr/include/c++/11.2.0/tr1/poly_laguerre.tcc \
|
||||||
|
/usr/include/c++/11.2.0/tr1/riemann_zeta.tcc \
|
||||||
|
/usr/include/c++/11.2.0/iostream
|
BIN
Hazelnupp/build/CMakeFiles/Hazelnupp.dir/src/FloatValue.cpp.o
Normal file
BIN
Hazelnupp/build/CMakeFiles/Hazelnupp.dir/src/FloatValue.cpp.o
Normal file
Binary file not shown.
143
Hazelnupp/build/CMakeFiles/Hazelnupp.dir/src/FloatValue.cpp.o.d
Normal file
143
Hazelnupp/build/CMakeFiles/Hazelnupp.dir/src/FloatValue.cpp.o.d
Normal file
@ -0,0 +1,143 @@
|
|||||||
|
CMakeFiles/Hazelnupp.dir/src/FloatValue.cpp.o: \
|
||||||
|
/home/menethil/projects/private_work/Hazelnupp/Hazelnupp/src/FloatValue.cpp \
|
||||||
|
/usr/include/stdc-predef.h \
|
||||||
|
/home/menethil/projects/private_work/Hazelnupp/Hazelnupp/include/Hazelnupp/FloatValue.h \
|
||||||
|
/home/menethil/projects/private_work/Hazelnupp/Hazelnupp/include/Hazelnupp/Value.h \
|
||||||
|
/home/menethil/projects/private_work/Hazelnupp/Hazelnupp/include/Hazelnupp/DataType.h \
|
||||||
|
/usr/include/c++/11.2.0/string \
|
||||||
|
/usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/c++config.h \
|
||||||
|
/usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/os_defines.h \
|
||||||
|
/usr/include/features.h /usr/include/features-time64.h \
|
||||||
|
/usr/include/bits/wordsize.h /usr/include/bits/timesize.h \
|
||||||
|
/usr/include/sys/cdefs.h /usr/include/bits/long-double.h \
|
||||||
|
/usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \
|
||||||
|
/usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/cpu_defines.h \
|
||||||
|
/usr/include/c++/11.2.0/pstl/pstl_config.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/stringfwd.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/memoryfwd.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/char_traits.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/stl_algobase.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/functexcept.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/exception_defines.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/cpp_type_traits.h \
|
||||||
|
/usr/include/c++/11.2.0/ext/type_traits.h \
|
||||||
|
/usr/include/c++/11.2.0/ext/numeric_traits.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/stl_pair.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/move.h /usr/include/c++/11.2.0/type_traits \
|
||||||
|
/usr/include/c++/11.2.0/bits/stl_iterator_base_types.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/stl_iterator_base_funcs.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/concept_check.h \
|
||||||
|
/usr/include/c++/11.2.0/debug/assertions.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/stl_iterator.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/ptr_traits.h \
|
||||||
|
/usr/include/c++/11.2.0/debug/debug.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/predefined_ops.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/postypes.h /usr/include/c++/11.2.0/cwchar \
|
||||||
|
/usr/include/wchar.h /usr/include/bits/libc-header-start.h \
|
||||||
|
/usr/include/bits/floatn.h /usr/include/bits/floatn-common.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/include/stddef.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/include/stdarg.h \
|
||||||
|
/usr/include/bits/wchar.h /usr/include/bits/types/wint_t.h \
|
||||||
|
/usr/include/bits/types/mbstate_t.h \
|
||||||
|
/usr/include/bits/types/__mbstate_t.h /usr/include/bits/types/__FILE.h \
|
||||||
|
/usr/include/bits/types/FILE.h /usr/include/bits/types/locale_t.h \
|
||||||
|
/usr/include/bits/types/__locale_t.h /usr/include/c++/11.2.0/cstdint \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/include/stdint.h \
|
||||||
|
/usr/include/stdint.h /usr/include/bits/types.h \
|
||||||
|
/usr/include/bits/typesizes.h /usr/include/bits/time64.h \
|
||||||
|
/usr/include/bits/stdint-intn.h /usr/include/bits/stdint-uintn.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/allocator.h \
|
||||||
|
/usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/c++allocator.h \
|
||||||
|
/usr/include/c++/11.2.0/ext/new_allocator.h /usr/include/c++/11.2.0/new \
|
||||||
|
/usr/include/c++/11.2.0/bits/exception.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/localefwd.h \
|
||||||
|
/usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/c++locale.h \
|
||||||
|
/usr/include/c++/11.2.0/clocale /usr/include/locale.h \
|
||||||
|
/usr/include/bits/locale.h /usr/include/c++/11.2.0/iosfwd \
|
||||||
|
/usr/include/c++/11.2.0/cctype /usr/include/ctype.h \
|
||||||
|
/usr/include/bits/endian.h /usr/include/bits/endianness.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/ostream_insert.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/cxxabi_forced.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/stl_function.h \
|
||||||
|
/usr/include/c++/11.2.0/backward/binders.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/range_access.h \
|
||||||
|
/usr/include/c++/11.2.0/initializer_list \
|
||||||
|
/usr/include/c++/11.2.0/bits/basic_string.h \
|
||||||
|
/usr/include/c++/11.2.0/ext/atomicity.h \
|
||||||
|
/usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/gthr.h \
|
||||||
|
/usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/gthr-default.h \
|
||||||
|
/usr/include/pthread.h /usr/include/sched.h \
|
||||||
|
/usr/include/bits/types/time_t.h \
|
||||||
|
/usr/include/bits/types/struct_timespec.h /usr/include/bits/sched.h \
|
||||||
|
/usr/include/bits/types/struct_sched_param.h /usr/include/bits/cpu-set.h \
|
||||||
|
/usr/include/time.h /usr/include/bits/time.h /usr/include/bits/timex.h \
|
||||||
|
/usr/include/bits/types/struct_timeval.h \
|
||||||
|
/usr/include/bits/types/clock_t.h /usr/include/bits/types/struct_tm.h \
|
||||||
|
/usr/include/bits/types/clockid_t.h /usr/include/bits/types/timer_t.h \
|
||||||
|
/usr/include/bits/types/struct_itimerspec.h \
|
||||||
|
/usr/include/bits/pthreadtypes.h /usr/include/bits/thread-shared-types.h \
|
||||||
|
/usr/include/bits/pthreadtypes-arch.h \
|
||||||
|
/usr/include/bits/atomic_wide_counter.h /usr/include/bits/struct_mutex.h \
|
||||||
|
/usr/include/bits/struct_rwlock.h /usr/include/bits/setjmp.h \
|
||||||
|
/usr/include/bits/types/__sigset_t.h \
|
||||||
|
/usr/include/bits/types/struct___jmp_buf_tag.h \
|
||||||
|
/usr/include/bits/pthread_stack_min-dynamic.h \
|
||||||
|
/usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/atomic_word.h \
|
||||||
|
/usr/include/sys/single_threaded.h \
|
||||||
|
/usr/include/c++/11.2.0/ext/alloc_traits.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/alloc_traits.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/stl_construct.h \
|
||||||
|
/usr/include/c++/11.2.0/string_view \
|
||||||
|
/usr/include/c++/11.2.0/bits/functional_hash.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/hash_bytes.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/string_view.tcc \
|
||||||
|
/usr/include/c++/11.2.0/ext/string_conversions.h \
|
||||||
|
/usr/include/c++/11.2.0/cstdlib /usr/include/stdlib.h \
|
||||||
|
/usr/include/bits/waitflags.h /usr/include/bits/waitstatus.h \
|
||||||
|
/usr/include/sys/types.h /usr/include/endian.h \
|
||||||
|
/usr/include/bits/byteswap.h /usr/include/bits/uintn-identity.h \
|
||||||
|
/usr/include/sys/select.h /usr/include/bits/select.h \
|
||||||
|
/usr/include/bits/types/sigset_t.h /usr/include/alloca.h \
|
||||||
|
/usr/include/bits/stdlib-float.h /usr/include/c++/11.2.0/bits/std_abs.h \
|
||||||
|
/usr/include/c++/11.2.0/cstdio /usr/include/stdio.h \
|
||||||
|
/usr/include/bits/types/__fpos_t.h /usr/include/bits/types/__fpos64_t.h \
|
||||||
|
/usr/include/bits/types/struct_FILE.h \
|
||||||
|
/usr/include/bits/types/cookie_io_functions_t.h \
|
||||||
|
/usr/include/bits/stdio_lim.h /usr/include/c++/11.2.0/cerrno \
|
||||||
|
/usr/include/errno.h /usr/include/bits/errno.h \
|
||||||
|
/usr/include/linux/errno.h /usr/include/asm/errno.h \
|
||||||
|
/usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \
|
||||||
|
/usr/include/bits/types/error_t.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/charconv.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/basic_string.tcc \
|
||||||
|
/usr/include/c++/11.2.0/ostream /usr/include/c++/11.2.0/ios \
|
||||||
|
/usr/include/c++/11.2.0/exception \
|
||||||
|
/usr/include/c++/11.2.0/bits/exception_ptr.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/cxxabi_init_exception.h \
|
||||||
|
/usr/include/c++/11.2.0/typeinfo \
|
||||||
|
/usr/include/c++/11.2.0/bits/nested_exception.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/ios_base.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/locale_classes.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/locale_classes.tcc \
|
||||||
|
/usr/include/c++/11.2.0/system_error \
|
||||||
|
/usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/error_constants.h \
|
||||||
|
/usr/include/c++/11.2.0/stdexcept /usr/include/c++/11.2.0/streambuf \
|
||||||
|
/usr/include/c++/11.2.0/bits/streambuf.tcc \
|
||||||
|
/usr/include/c++/11.2.0/bits/basic_ios.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/locale_facets.h \
|
||||||
|
/usr/include/c++/11.2.0/cwctype /usr/include/wctype.h \
|
||||||
|
/usr/include/bits/wctype-wchar.h \
|
||||||
|
/usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/ctype_base.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/streambuf_iterator.h \
|
||||||
|
/usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/ctype_inline.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/locale_facets.tcc \
|
||||||
|
/usr/include/c++/11.2.0/bits/basic_ios.tcc \
|
||||||
|
/usr/include/c++/11.2.0/bits/ostream.tcc /usr/include/c++/11.2.0/vector \
|
||||||
|
/usr/include/c++/11.2.0/bits/stl_uninitialized.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/stl_vector.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/stl_bvector.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/vector.tcc \
|
||||||
|
/home/menethil/projects/private_work/Hazelnupp/Hazelnupp/include/Hazelnupp/HazelnuppException.h \
|
||||||
|
/usr/include/c++/11.2.0/sstream /usr/include/c++/11.2.0/istream \
|
||||||
|
/usr/include/c++/11.2.0/bits/istream.tcc \
|
||||||
|
/usr/include/c++/11.2.0/bits/sstream.tcc
|
BIN
Hazelnupp/build/CMakeFiles/Hazelnupp.dir/src/IntValue.cpp.o
Normal file
BIN
Hazelnupp/build/CMakeFiles/Hazelnupp.dir/src/IntValue.cpp.o
Normal file
Binary file not shown.
143
Hazelnupp/build/CMakeFiles/Hazelnupp.dir/src/IntValue.cpp.o.d
Normal file
143
Hazelnupp/build/CMakeFiles/Hazelnupp.dir/src/IntValue.cpp.o.d
Normal file
@ -0,0 +1,143 @@
|
|||||||
|
CMakeFiles/Hazelnupp.dir/src/IntValue.cpp.o: \
|
||||||
|
/home/menethil/projects/private_work/Hazelnupp/Hazelnupp/src/IntValue.cpp \
|
||||||
|
/usr/include/stdc-predef.h \
|
||||||
|
/home/menethil/projects/private_work/Hazelnupp/Hazelnupp/include/Hazelnupp/IntValue.h \
|
||||||
|
/home/menethil/projects/private_work/Hazelnupp/Hazelnupp/include/Hazelnupp/Value.h \
|
||||||
|
/home/menethil/projects/private_work/Hazelnupp/Hazelnupp/include/Hazelnupp/DataType.h \
|
||||||
|
/usr/include/c++/11.2.0/string \
|
||||||
|
/usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/c++config.h \
|
||||||
|
/usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/os_defines.h \
|
||||||
|
/usr/include/features.h /usr/include/features-time64.h \
|
||||||
|
/usr/include/bits/wordsize.h /usr/include/bits/timesize.h \
|
||||||
|
/usr/include/sys/cdefs.h /usr/include/bits/long-double.h \
|
||||||
|
/usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \
|
||||||
|
/usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/cpu_defines.h \
|
||||||
|
/usr/include/c++/11.2.0/pstl/pstl_config.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/stringfwd.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/memoryfwd.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/char_traits.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/stl_algobase.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/functexcept.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/exception_defines.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/cpp_type_traits.h \
|
||||||
|
/usr/include/c++/11.2.0/ext/type_traits.h \
|
||||||
|
/usr/include/c++/11.2.0/ext/numeric_traits.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/stl_pair.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/move.h /usr/include/c++/11.2.0/type_traits \
|
||||||
|
/usr/include/c++/11.2.0/bits/stl_iterator_base_types.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/stl_iterator_base_funcs.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/concept_check.h \
|
||||||
|
/usr/include/c++/11.2.0/debug/assertions.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/stl_iterator.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/ptr_traits.h \
|
||||||
|
/usr/include/c++/11.2.0/debug/debug.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/predefined_ops.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/postypes.h /usr/include/c++/11.2.0/cwchar \
|
||||||
|
/usr/include/wchar.h /usr/include/bits/libc-header-start.h \
|
||||||
|
/usr/include/bits/floatn.h /usr/include/bits/floatn-common.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/include/stddef.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/include/stdarg.h \
|
||||||
|
/usr/include/bits/wchar.h /usr/include/bits/types/wint_t.h \
|
||||||
|
/usr/include/bits/types/mbstate_t.h \
|
||||||
|
/usr/include/bits/types/__mbstate_t.h /usr/include/bits/types/__FILE.h \
|
||||||
|
/usr/include/bits/types/FILE.h /usr/include/bits/types/locale_t.h \
|
||||||
|
/usr/include/bits/types/__locale_t.h /usr/include/c++/11.2.0/cstdint \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/include/stdint.h \
|
||||||
|
/usr/include/stdint.h /usr/include/bits/types.h \
|
||||||
|
/usr/include/bits/typesizes.h /usr/include/bits/time64.h \
|
||||||
|
/usr/include/bits/stdint-intn.h /usr/include/bits/stdint-uintn.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/allocator.h \
|
||||||
|
/usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/c++allocator.h \
|
||||||
|
/usr/include/c++/11.2.0/ext/new_allocator.h /usr/include/c++/11.2.0/new \
|
||||||
|
/usr/include/c++/11.2.0/bits/exception.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/localefwd.h \
|
||||||
|
/usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/c++locale.h \
|
||||||
|
/usr/include/c++/11.2.0/clocale /usr/include/locale.h \
|
||||||
|
/usr/include/bits/locale.h /usr/include/c++/11.2.0/iosfwd \
|
||||||
|
/usr/include/c++/11.2.0/cctype /usr/include/ctype.h \
|
||||||
|
/usr/include/bits/endian.h /usr/include/bits/endianness.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/ostream_insert.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/cxxabi_forced.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/stl_function.h \
|
||||||
|
/usr/include/c++/11.2.0/backward/binders.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/range_access.h \
|
||||||
|
/usr/include/c++/11.2.0/initializer_list \
|
||||||
|
/usr/include/c++/11.2.0/bits/basic_string.h \
|
||||||
|
/usr/include/c++/11.2.0/ext/atomicity.h \
|
||||||
|
/usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/gthr.h \
|
||||||
|
/usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/gthr-default.h \
|
||||||
|
/usr/include/pthread.h /usr/include/sched.h \
|
||||||
|
/usr/include/bits/types/time_t.h \
|
||||||
|
/usr/include/bits/types/struct_timespec.h /usr/include/bits/sched.h \
|
||||||
|
/usr/include/bits/types/struct_sched_param.h /usr/include/bits/cpu-set.h \
|
||||||
|
/usr/include/time.h /usr/include/bits/time.h /usr/include/bits/timex.h \
|
||||||
|
/usr/include/bits/types/struct_timeval.h \
|
||||||
|
/usr/include/bits/types/clock_t.h /usr/include/bits/types/struct_tm.h \
|
||||||
|
/usr/include/bits/types/clockid_t.h /usr/include/bits/types/timer_t.h \
|
||||||
|
/usr/include/bits/types/struct_itimerspec.h \
|
||||||
|
/usr/include/bits/pthreadtypes.h /usr/include/bits/thread-shared-types.h \
|
||||||
|
/usr/include/bits/pthreadtypes-arch.h \
|
||||||
|
/usr/include/bits/atomic_wide_counter.h /usr/include/bits/struct_mutex.h \
|
||||||
|
/usr/include/bits/struct_rwlock.h /usr/include/bits/setjmp.h \
|
||||||
|
/usr/include/bits/types/__sigset_t.h \
|
||||||
|
/usr/include/bits/types/struct___jmp_buf_tag.h \
|
||||||
|
/usr/include/bits/pthread_stack_min-dynamic.h \
|
||||||
|
/usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/atomic_word.h \
|
||||||
|
/usr/include/sys/single_threaded.h \
|
||||||
|
/usr/include/c++/11.2.0/ext/alloc_traits.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/alloc_traits.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/stl_construct.h \
|
||||||
|
/usr/include/c++/11.2.0/string_view \
|
||||||
|
/usr/include/c++/11.2.0/bits/functional_hash.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/hash_bytes.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/string_view.tcc \
|
||||||
|
/usr/include/c++/11.2.0/ext/string_conversions.h \
|
||||||
|
/usr/include/c++/11.2.0/cstdlib /usr/include/stdlib.h \
|
||||||
|
/usr/include/bits/waitflags.h /usr/include/bits/waitstatus.h \
|
||||||
|
/usr/include/sys/types.h /usr/include/endian.h \
|
||||||
|
/usr/include/bits/byteswap.h /usr/include/bits/uintn-identity.h \
|
||||||
|
/usr/include/sys/select.h /usr/include/bits/select.h \
|
||||||
|
/usr/include/bits/types/sigset_t.h /usr/include/alloca.h \
|
||||||
|
/usr/include/bits/stdlib-float.h /usr/include/c++/11.2.0/bits/std_abs.h \
|
||||||
|
/usr/include/c++/11.2.0/cstdio /usr/include/stdio.h \
|
||||||
|
/usr/include/bits/types/__fpos_t.h /usr/include/bits/types/__fpos64_t.h \
|
||||||
|
/usr/include/bits/types/struct_FILE.h \
|
||||||
|
/usr/include/bits/types/cookie_io_functions_t.h \
|
||||||
|
/usr/include/bits/stdio_lim.h /usr/include/c++/11.2.0/cerrno \
|
||||||
|
/usr/include/errno.h /usr/include/bits/errno.h \
|
||||||
|
/usr/include/linux/errno.h /usr/include/asm/errno.h \
|
||||||
|
/usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \
|
||||||
|
/usr/include/bits/types/error_t.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/charconv.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/basic_string.tcc \
|
||||||
|
/usr/include/c++/11.2.0/ostream /usr/include/c++/11.2.0/ios \
|
||||||
|
/usr/include/c++/11.2.0/exception \
|
||||||
|
/usr/include/c++/11.2.0/bits/exception_ptr.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/cxxabi_init_exception.h \
|
||||||
|
/usr/include/c++/11.2.0/typeinfo \
|
||||||
|
/usr/include/c++/11.2.0/bits/nested_exception.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/ios_base.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/locale_classes.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/locale_classes.tcc \
|
||||||
|
/usr/include/c++/11.2.0/system_error \
|
||||||
|
/usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/error_constants.h \
|
||||||
|
/usr/include/c++/11.2.0/stdexcept /usr/include/c++/11.2.0/streambuf \
|
||||||
|
/usr/include/c++/11.2.0/bits/streambuf.tcc \
|
||||||
|
/usr/include/c++/11.2.0/bits/basic_ios.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/locale_facets.h \
|
||||||
|
/usr/include/c++/11.2.0/cwctype /usr/include/wctype.h \
|
||||||
|
/usr/include/bits/wctype-wchar.h \
|
||||||
|
/usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/ctype_base.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/streambuf_iterator.h \
|
||||||
|
/usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/ctype_inline.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/locale_facets.tcc \
|
||||||
|
/usr/include/c++/11.2.0/bits/basic_ios.tcc \
|
||||||
|
/usr/include/c++/11.2.0/bits/ostream.tcc /usr/include/c++/11.2.0/vector \
|
||||||
|
/usr/include/c++/11.2.0/bits/stl_uninitialized.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/stl_vector.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/stl_bvector.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/vector.tcc \
|
||||||
|
/home/menethil/projects/private_work/Hazelnupp/Hazelnupp/include/Hazelnupp/HazelnuppException.h \
|
||||||
|
/usr/include/c++/11.2.0/sstream /usr/include/c++/11.2.0/istream \
|
||||||
|
/usr/include/c++/11.2.0/bits/istream.tcc \
|
||||||
|
/usr/include/c++/11.2.0/bits/sstream.tcc
|
BIN
Hazelnupp/build/CMakeFiles/Hazelnupp.dir/src/ListValue.cpp.o
Normal file
BIN
Hazelnupp/build/CMakeFiles/Hazelnupp.dir/src/ListValue.cpp.o
Normal file
Binary file not shown.
143
Hazelnupp/build/CMakeFiles/Hazelnupp.dir/src/ListValue.cpp.o.d
Normal file
143
Hazelnupp/build/CMakeFiles/Hazelnupp.dir/src/ListValue.cpp.o.d
Normal file
@ -0,0 +1,143 @@
|
|||||||
|
CMakeFiles/Hazelnupp.dir/src/ListValue.cpp.o: \
|
||||||
|
/home/menethil/projects/private_work/Hazelnupp/Hazelnupp/src/ListValue.cpp \
|
||||||
|
/usr/include/stdc-predef.h \
|
||||||
|
/home/menethil/projects/private_work/Hazelnupp/Hazelnupp/include/Hazelnupp/ListValue.h \
|
||||||
|
/home/menethil/projects/private_work/Hazelnupp/Hazelnupp/include/Hazelnupp/Value.h \
|
||||||
|
/home/menethil/projects/private_work/Hazelnupp/Hazelnupp/include/Hazelnupp/DataType.h \
|
||||||
|
/usr/include/c++/11.2.0/string \
|
||||||
|
/usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/c++config.h \
|
||||||
|
/usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/os_defines.h \
|
||||||
|
/usr/include/features.h /usr/include/features-time64.h \
|
||||||
|
/usr/include/bits/wordsize.h /usr/include/bits/timesize.h \
|
||||||
|
/usr/include/sys/cdefs.h /usr/include/bits/long-double.h \
|
||||||
|
/usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \
|
||||||
|
/usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/cpu_defines.h \
|
||||||
|
/usr/include/c++/11.2.0/pstl/pstl_config.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/stringfwd.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/memoryfwd.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/char_traits.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/stl_algobase.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/functexcept.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/exception_defines.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/cpp_type_traits.h \
|
||||||
|
/usr/include/c++/11.2.0/ext/type_traits.h \
|
||||||
|
/usr/include/c++/11.2.0/ext/numeric_traits.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/stl_pair.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/move.h /usr/include/c++/11.2.0/type_traits \
|
||||||
|
/usr/include/c++/11.2.0/bits/stl_iterator_base_types.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/stl_iterator_base_funcs.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/concept_check.h \
|
||||||
|
/usr/include/c++/11.2.0/debug/assertions.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/stl_iterator.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/ptr_traits.h \
|
||||||
|
/usr/include/c++/11.2.0/debug/debug.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/predefined_ops.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/postypes.h /usr/include/c++/11.2.0/cwchar \
|
||||||
|
/usr/include/wchar.h /usr/include/bits/libc-header-start.h \
|
||||||
|
/usr/include/bits/floatn.h /usr/include/bits/floatn-common.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/include/stddef.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/include/stdarg.h \
|
||||||
|
/usr/include/bits/wchar.h /usr/include/bits/types/wint_t.h \
|
||||||
|
/usr/include/bits/types/mbstate_t.h \
|
||||||
|
/usr/include/bits/types/__mbstate_t.h /usr/include/bits/types/__FILE.h \
|
||||||
|
/usr/include/bits/types/FILE.h /usr/include/bits/types/locale_t.h \
|
||||||
|
/usr/include/bits/types/__locale_t.h /usr/include/c++/11.2.0/cstdint \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/include/stdint.h \
|
||||||
|
/usr/include/stdint.h /usr/include/bits/types.h \
|
||||||
|
/usr/include/bits/typesizes.h /usr/include/bits/time64.h \
|
||||||
|
/usr/include/bits/stdint-intn.h /usr/include/bits/stdint-uintn.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/allocator.h \
|
||||||
|
/usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/c++allocator.h \
|
||||||
|
/usr/include/c++/11.2.0/ext/new_allocator.h /usr/include/c++/11.2.0/new \
|
||||||
|
/usr/include/c++/11.2.0/bits/exception.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/localefwd.h \
|
||||||
|
/usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/c++locale.h \
|
||||||
|
/usr/include/c++/11.2.0/clocale /usr/include/locale.h \
|
||||||
|
/usr/include/bits/locale.h /usr/include/c++/11.2.0/iosfwd \
|
||||||
|
/usr/include/c++/11.2.0/cctype /usr/include/ctype.h \
|
||||||
|
/usr/include/bits/endian.h /usr/include/bits/endianness.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/ostream_insert.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/cxxabi_forced.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/stl_function.h \
|
||||||
|
/usr/include/c++/11.2.0/backward/binders.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/range_access.h \
|
||||||
|
/usr/include/c++/11.2.0/initializer_list \
|
||||||
|
/usr/include/c++/11.2.0/bits/basic_string.h \
|
||||||
|
/usr/include/c++/11.2.0/ext/atomicity.h \
|
||||||
|
/usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/gthr.h \
|
||||||
|
/usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/gthr-default.h \
|
||||||
|
/usr/include/pthread.h /usr/include/sched.h \
|
||||||
|
/usr/include/bits/types/time_t.h \
|
||||||
|
/usr/include/bits/types/struct_timespec.h /usr/include/bits/sched.h \
|
||||||
|
/usr/include/bits/types/struct_sched_param.h /usr/include/bits/cpu-set.h \
|
||||||
|
/usr/include/time.h /usr/include/bits/time.h /usr/include/bits/timex.h \
|
||||||
|
/usr/include/bits/types/struct_timeval.h \
|
||||||
|
/usr/include/bits/types/clock_t.h /usr/include/bits/types/struct_tm.h \
|
||||||
|
/usr/include/bits/types/clockid_t.h /usr/include/bits/types/timer_t.h \
|
||||||
|
/usr/include/bits/types/struct_itimerspec.h \
|
||||||
|
/usr/include/bits/pthreadtypes.h /usr/include/bits/thread-shared-types.h \
|
||||||
|
/usr/include/bits/pthreadtypes-arch.h \
|
||||||
|
/usr/include/bits/atomic_wide_counter.h /usr/include/bits/struct_mutex.h \
|
||||||
|
/usr/include/bits/struct_rwlock.h /usr/include/bits/setjmp.h \
|
||||||
|
/usr/include/bits/types/__sigset_t.h \
|
||||||
|
/usr/include/bits/types/struct___jmp_buf_tag.h \
|
||||||
|
/usr/include/bits/pthread_stack_min-dynamic.h \
|
||||||
|
/usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/atomic_word.h \
|
||||||
|
/usr/include/sys/single_threaded.h \
|
||||||
|
/usr/include/c++/11.2.0/ext/alloc_traits.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/alloc_traits.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/stl_construct.h \
|
||||||
|
/usr/include/c++/11.2.0/string_view \
|
||||||
|
/usr/include/c++/11.2.0/bits/functional_hash.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/hash_bytes.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/string_view.tcc \
|
||||||
|
/usr/include/c++/11.2.0/ext/string_conversions.h \
|
||||||
|
/usr/include/c++/11.2.0/cstdlib /usr/include/stdlib.h \
|
||||||
|
/usr/include/bits/waitflags.h /usr/include/bits/waitstatus.h \
|
||||||
|
/usr/include/sys/types.h /usr/include/endian.h \
|
||||||
|
/usr/include/bits/byteswap.h /usr/include/bits/uintn-identity.h \
|
||||||
|
/usr/include/sys/select.h /usr/include/bits/select.h \
|
||||||
|
/usr/include/bits/types/sigset_t.h /usr/include/alloca.h \
|
||||||
|
/usr/include/bits/stdlib-float.h /usr/include/c++/11.2.0/bits/std_abs.h \
|
||||||
|
/usr/include/c++/11.2.0/cstdio /usr/include/stdio.h \
|
||||||
|
/usr/include/bits/types/__fpos_t.h /usr/include/bits/types/__fpos64_t.h \
|
||||||
|
/usr/include/bits/types/struct_FILE.h \
|
||||||
|
/usr/include/bits/types/cookie_io_functions_t.h \
|
||||||
|
/usr/include/bits/stdio_lim.h /usr/include/c++/11.2.0/cerrno \
|
||||||
|
/usr/include/errno.h /usr/include/bits/errno.h \
|
||||||
|
/usr/include/linux/errno.h /usr/include/asm/errno.h \
|
||||||
|
/usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \
|
||||||
|
/usr/include/bits/types/error_t.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/charconv.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/basic_string.tcc \
|
||||||
|
/usr/include/c++/11.2.0/ostream /usr/include/c++/11.2.0/ios \
|
||||||
|
/usr/include/c++/11.2.0/exception \
|
||||||
|
/usr/include/c++/11.2.0/bits/exception_ptr.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/cxxabi_init_exception.h \
|
||||||
|
/usr/include/c++/11.2.0/typeinfo \
|
||||||
|
/usr/include/c++/11.2.0/bits/nested_exception.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/ios_base.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/locale_classes.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/locale_classes.tcc \
|
||||||
|
/usr/include/c++/11.2.0/system_error \
|
||||||
|
/usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/error_constants.h \
|
||||||
|
/usr/include/c++/11.2.0/stdexcept /usr/include/c++/11.2.0/streambuf \
|
||||||
|
/usr/include/c++/11.2.0/bits/streambuf.tcc \
|
||||||
|
/usr/include/c++/11.2.0/bits/basic_ios.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/locale_facets.h \
|
||||||
|
/usr/include/c++/11.2.0/cwctype /usr/include/wctype.h \
|
||||||
|
/usr/include/bits/wctype-wchar.h \
|
||||||
|
/usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/ctype_base.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/streambuf_iterator.h \
|
||||||
|
/usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/ctype_inline.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/locale_facets.tcc \
|
||||||
|
/usr/include/c++/11.2.0/bits/basic_ios.tcc \
|
||||||
|
/usr/include/c++/11.2.0/bits/ostream.tcc /usr/include/c++/11.2.0/vector \
|
||||||
|
/usr/include/c++/11.2.0/bits/stl_uninitialized.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/stl_vector.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/stl_bvector.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/vector.tcc \
|
||||||
|
/home/menethil/projects/private_work/Hazelnupp/Hazelnupp/include/Hazelnupp/HazelnuppException.h \
|
||||||
|
/usr/include/c++/11.2.0/sstream /usr/include/c++/11.2.0/istream \
|
||||||
|
/usr/include/c++/11.2.0/bits/istream.tcc \
|
||||||
|
/usr/include/c++/11.2.0/bits/sstream.tcc
|
BIN
Hazelnupp/build/CMakeFiles/Hazelnupp.dir/src/Parameter.cpp.o
Normal file
BIN
Hazelnupp/build/CMakeFiles/Hazelnupp.dir/src/Parameter.cpp.o
Normal file
Binary file not shown.
139
Hazelnupp/build/CMakeFiles/Hazelnupp.dir/src/Parameter.cpp.o.d
Normal file
139
Hazelnupp/build/CMakeFiles/Hazelnupp.dir/src/Parameter.cpp.o.d
Normal file
@ -0,0 +1,139 @@
|
|||||||
|
CMakeFiles/Hazelnupp.dir/src/Parameter.cpp.o: \
|
||||||
|
/home/menethil/projects/private_work/Hazelnupp/Hazelnupp/src/Parameter.cpp \
|
||||||
|
/usr/include/stdc-predef.h \
|
||||||
|
/home/menethil/projects/private_work/Hazelnupp/Hazelnupp/include/Hazelnupp/Parameter.h \
|
||||||
|
/home/menethil/projects/private_work/Hazelnupp/Hazelnupp/include/Hazelnupp/Value.h \
|
||||||
|
/home/menethil/projects/private_work/Hazelnupp/Hazelnupp/include/Hazelnupp/DataType.h \
|
||||||
|
/usr/include/c++/11.2.0/string \
|
||||||
|
/usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/c++config.h \
|
||||||
|
/usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/os_defines.h \
|
||||||
|
/usr/include/features.h /usr/include/features-time64.h \
|
||||||
|
/usr/include/bits/wordsize.h /usr/include/bits/timesize.h \
|
||||||
|
/usr/include/sys/cdefs.h /usr/include/bits/long-double.h \
|
||||||
|
/usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \
|
||||||
|
/usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/cpu_defines.h \
|
||||||
|
/usr/include/c++/11.2.0/pstl/pstl_config.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/stringfwd.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/memoryfwd.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/char_traits.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/stl_algobase.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/functexcept.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/exception_defines.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/cpp_type_traits.h \
|
||||||
|
/usr/include/c++/11.2.0/ext/type_traits.h \
|
||||||
|
/usr/include/c++/11.2.0/ext/numeric_traits.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/stl_pair.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/move.h /usr/include/c++/11.2.0/type_traits \
|
||||||
|
/usr/include/c++/11.2.0/bits/stl_iterator_base_types.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/stl_iterator_base_funcs.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/concept_check.h \
|
||||||
|
/usr/include/c++/11.2.0/debug/assertions.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/stl_iterator.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/ptr_traits.h \
|
||||||
|
/usr/include/c++/11.2.0/debug/debug.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/predefined_ops.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/postypes.h /usr/include/c++/11.2.0/cwchar \
|
||||||
|
/usr/include/wchar.h /usr/include/bits/libc-header-start.h \
|
||||||
|
/usr/include/bits/floatn.h /usr/include/bits/floatn-common.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/include/stddef.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/include/stdarg.h \
|
||||||
|
/usr/include/bits/wchar.h /usr/include/bits/types/wint_t.h \
|
||||||
|
/usr/include/bits/types/mbstate_t.h \
|
||||||
|
/usr/include/bits/types/__mbstate_t.h /usr/include/bits/types/__FILE.h \
|
||||||
|
/usr/include/bits/types/FILE.h /usr/include/bits/types/locale_t.h \
|
||||||
|
/usr/include/bits/types/__locale_t.h /usr/include/c++/11.2.0/cstdint \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/include/stdint.h \
|
||||||
|
/usr/include/stdint.h /usr/include/bits/types.h \
|
||||||
|
/usr/include/bits/typesizes.h /usr/include/bits/time64.h \
|
||||||
|
/usr/include/bits/stdint-intn.h /usr/include/bits/stdint-uintn.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/allocator.h \
|
||||||
|
/usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/c++allocator.h \
|
||||||
|
/usr/include/c++/11.2.0/ext/new_allocator.h /usr/include/c++/11.2.0/new \
|
||||||
|
/usr/include/c++/11.2.0/bits/exception.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/localefwd.h \
|
||||||
|
/usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/c++locale.h \
|
||||||
|
/usr/include/c++/11.2.0/clocale /usr/include/locale.h \
|
||||||
|
/usr/include/bits/locale.h /usr/include/c++/11.2.0/iosfwd \
|
||||||
|
/usr/include/c++/11.2.0/cctype /usr/include/ctype.h \
|
||||||
|
/usr/include/bits/endian.h /usr/include/bits/endianness.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/ostream_insert.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/cxxabi_forced.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/stl_function.h \
|
||||||
|
/usr/include/c++/11.2.0/backward/binders.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/range_access.h \
|
||||||
|
/usr/include/c++/11.2.0/initializer_list \
|
||||||
|
/usr/include/c++/11.2.0/bits/basic_string.h \
|
||||||
|
/usr/include/c++/11.2.0/ext/atomicity.h \
|
||||||
|
/usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/gthr.h \
|
||||||
|
/usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/gthr-default.h \
|
||||||
|
/usr/include/pthread.h /usr/include/sched.h \
|
||||||
|
/usr/include/bits/types/time_t.h \
|
||||||
|
/usr/include/bits/types/struct_timespec.h /usr/include/bits/sched.h \
|
||||||
|
/usr/include/bits/types/struct_sched_param.h /usr/include/bits/cpu-set.h \
|
||||||
|
/usr/include/time.h /usr/include/bits/time.h /usr/include/bits/timex.h \
|
||||||
|
/usr/include/bits/types/struct_timeval.h \
|
||||||
|
/usr/include/bits/types/clock_t.h /usr/include/bits/types/struct_tm.h \
|
||||||
|
/usr/include/bits/types/clockid_t.h /usr/include/bits/types/timer_t.h \
|
||||||
|
/usr/include/bits/types/struct_itimerspec.h \
|
||||||
|
/usr/include/bits/pthreadtypes.h /usr/include/bits/thread-shared-types.h \
|
||||||
|
/usr/include/bits/pthreadtypes-arch.h \
|
||||||
|
/usr/include/bits/atomic_wide_counter.h /usr/include/bits/struct_mutex.h \
|
||||||
|
/usr/include/bits/struct_rwlock.h /usr/include/bits/setjmp.h \
|
||||||
|
/usr/include/bits/types/__sigset_t.h \
|
||||||
|
/usr/include/bits/types/struct___jmp_buf_tag.h \
|
||||||
|
/usr/include/bits/pthread_stack_min-dynamic.h \
|
||||||
|
/usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/atomic_word.h \
|
||||||
|
/usr/include/sys/single_threaded.h \
|
||||||
|
/usr/include/c++/11.2.0/ext/alloc_traits.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/alloc_traits.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/stl_construct.h \
|
||||||
|
/usr/include/c++/11.2.0/string_view \
|
||||||
|
/usr/include/c++/11.2.0/bits/functional_hash.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/hash_bytes.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/string_view.tcc \
|
||||||
|
/usr/include/c++/11.2.0/ext/string_conversions.h \
|
||||||
|
/usr/include/c++/11.2.0/cstdlib /usr/include/stdlib.h \
|
||||||
|
/usr/include/bits/waitflags.h /usr/include/bits/waitstatus.h \
|
||||||
|
/usr/include/sys/types.h /usr/include/endian.h \
|
||||||
|
/usr/include/bits/byteswap.h /usr/include/bits/uintn-identity.h \
|
||||||
|
/usr/include/sys/select.h /usr/include/bits/select.h \
|
||||||
|
/usr/include/bits/types/sigset_t.h /usr/include/alloca.h \
|
||||||
|
/usr/include/bits/stdlib-float.h /usr/include/c++/11.2.0/bits/std_abs.h \
|
||||||
|
/usr/include/c++/11.2.0/cstdio /usr/include/stdio.h \
|
||||||
|
/usr/include/bits/types/__fpos_t.h /usr/include/bits/types/__fpos64_t.h \
|
||||||
|
/usr/include/bits/types/struct_FILE.h \
|
||||||
|
/usr/include/bits/types/cookie_io_functions_t.h \
|
||||||
|
/usr/include/bits/stdio_lim.h /usr/include/c++/11.2.0/cerrno \
|
||||||
|
/usr/include/errno.h /usr/include/bits/errno.h \
|
||||||
|
/usr/include/linux/errno.h /usr/include/asm/errno.h \
|
||||||
|
/usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \
|
||||||
|
/usr/include/bits/types/error_t.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/charconv.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/basic_string.tcc \
|
||||||
|
/usr/include/c++/11.2.0/ostream /usr/include/c++/11.2.0/ios \
|
||||||
|
/usr/include/c++/11.2.0/exception \
|
||||||
|
/usr/include/c++/11.2.0/bits/exception_ptr.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/cxxabi_init_exception.h \
|
||||||
|
/usr/include/c++/11.2.0/typeinfo \
|
||||||
|
/usr/include/c++/11.2.0/bits/nested_exception.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/ios_base.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/locale_classes.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/locale_classes.tcc \
|
||||||
|
/usr/include/c++/11.2.0/system_error \
|
||||||
|
/usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/error_constants.h \
|
||||||
|
/usr/include/c++/11.2.0/stdexcept /usr/include/c++/11.2.0/streambuf \
|
||||||
|
/usr/include/c++/11.2.0/bits/streambuf.tcc \
|
||||||
|
/usr/include/c++/11.2.0/bits/basic_ios.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/locale_facets.h \
|
||||||
|
/usr/include/c++/11.2.0/cwctype /usr/include/wctype.h \
|
||||||
|
/usr/include/bits/wctype-wchar.h \
|
||||||
|
/usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/ctype_base.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/streambuf_iterator.h \
|
||||||
|
/usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/ctype_inline.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/locale_facets.tcc \
|
||||||
|
/usr/include/c++/11.2.0/bits/basic_ios.tcc \
|
||||||
|
/usr/include/c++/11.2.0/bits/ostream.tcc /usr/include/c++/11.2.0/vector \
|
||||||
|
/usr/include/c++/11.2.0/bits/stl_uninitialized.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/stl_vector.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/stl_bvector.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/vector.tcc
|
BIN
Hazelnupp/build/CMakeFiles/Hazelnupp.dir/src/StringTools.cpp.o
Normal file
BIN
Hazelnupp/build/CMakeFiles/Hazelnupp.dir/src/StringTools.cpp.o
Normal file
Binary file not shown.
158
Hazelnupp/build/CMakeFiles/Hazelnupp.dir/src/StringTools.cpp.o.d
Normal file
158
Hazelnupp/build/CMakeFiles/Hazelnupp.dir/src/StringTools.cpp.o.d
Normal file
@ -0,0 +1,158 @@
|
|||||||
|
CMakeFiles/Hazelnupp.dir/src/StringTools.cpp.o: \
|
||||||
|
/home/menethil/projects/private_work/Hazelnupp/Hazelnupp/src/StringTools.cpp \
|
||||||
|
/usr/include/stdc-predef.h \
|
||||||
|
/home/menethil/projects/private_work/Hazelnupp/Hazelnupp/include/Hazelnupp/StringTools.h \
|
||||||
|
/usr/include/c++/11.2.0/string \
|
||||||
|
/usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/c++config.h \
|
||||||
|
/usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/os_defines.h \
|
||||||
|
/usr/include/features.h /usr/include/features-time64.h \
|
||||||
|
/usr/include/bits/wordsize.h /usr/include/bits/timesize.h \
|
||||||
|
/usr/include/sys/cdefs.h /usr/include/bits/long-double.h \
|
||||||
|
/usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \
|
||||||
|
/usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/cpu_defines.h \
|
||||||
|
/usr/include/c++/11.2.0/pstl/pstl_config.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/stringfwd.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/memoryfwd.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/char_traits.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/stl_algobase.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/functexcept.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/exception_defines.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/cpp_type_traits.h \
|
||||||
|
/usr/include/c++/11.2.0/ext/type_traits.h \
|
||||||
|
/usr/include/c++/11.2.0/ext/numeric_traits.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/stl_pair.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/move.h /usr/include/c++/11.2.0/type_traits \
|
||||||
|
/usr/include/c++/11.2.0/bits/stl_iterator_base_types.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/stl_iterator_base_funcs.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/concept_check.h \
|
||||||
|
/usr/include/c++/11.2.0/debug/assertions.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/stl_iterator.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/ptr_traits.h \
|
||||||
|
/usr/include/c++/11.2.0/debug/debug.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/predefined_ops.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/postypes.h /usr/include/c++/11.2.0/cwchar \
|
||||||
|
/usr/include/wchar.h /usr/include/bits/libc-header-start.h \
|
||||||
|
/usr/include/bits/floatn.h /usr/include/bits/floatn-common.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/include/stddef.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/include/stdarg.h \
|
||||||
|
/usr/include/bits/wchar.h /usr/include/bits/types/wint_t.h \
|
||||||
|
/usr/include/bits/types/mbstate_t.h \
|
||||||
|
/usr/include/bits/types/__mbstate_t.h /usr/include/bits/types/__FILE.h \
|
||||||
|
/usr/include/bits/types/FILE.h /usr/include/bits/types/locale_t.h \
|
||||||
|
/usr/include/bits/types/__locale_t.h /usr/include/c++/11.2.0/cstdint \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/include/stdint.h \
|
||||||
|
/usr/include/stdint.h /usr/include/bits/types.h \
|
||||||
|
/usr/include/bits/typesizes.h /usr/include/bits/time64.h \
|
||||||
|
/usr/include/bits/stdint-intn.h /usr/include/bits/stdint-uintn.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/allocator.h \
|
||||||
|
/usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/c++allocator.h \
|
||||||
|
/usr/include/c++/11.2.0/ext/new_allocator.h /usr/include/c++/11.2.0/new \
|
||||||
|
/usr/include/c++/11.2.0/bits/exception.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/localefwd.h \
|
||||||
|
/usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/c++locale.h \
|
||||||
|
/usr/include/c++/11.2.0/clocale /usr/include/locale.h \
|
||||||
|
/usr/include/bits/locale.h /usr/include/c++/11.2.0/iosfwd \
|
||||||
|
/usr/include/c++/11.2.0/cctype /usr/include/ctype.h \
|
||||||
|
/usr/include/bits/endian.h /usr/include/bits/endianness.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/ostream_insert.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/cxxabi_forced.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/stl_function.h \
|
||||||
|
/usr/include/c++/11.2.0/backward/binders.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/range_access.h \
|
||||||
|
/usr/include/c++/11.2.0/initializer_list \
|
||||||
|
/usr/include/c++/11.2.0/bits/basic_string.h \
|
||||||
|
/usr/include/c++/11.2.0/ext/atomicity.h \
|
||||||
|
/usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/gthr.h \
|
||||||
|
/usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/gthr-default.h \
|
||||||
|
/usr/include/pthread.h /usr/include/sched.h \
|
||||||
|
/usr/include/bits/types/time_t.h \
|
||||||
|
/usr/include/bits/types/struct_timespec.h /usr/include/bits/sched.h \
|
||||||
|
/usr/include/bits/types/struct_sched_param.h /usr/include/bits/cpu-set.h \
|
||||||
|
/usr/include/time.h /usr/include/bits/time.h /usr/include/bits/timex.h \
|
||||||
|
/usr/include/bits/types/struct_timeval.h \
|
||||||
|
/usr/include/bits/types/clock_t.h /usr/include/bits/types/struct_tm.h \
|
||||||
|
/usr/include/bits/types/clockid_t.h /usr/include/bits/types/timer_t.h \
|
||||||
|
/usr/include/bits/types/struct_itimerspec.h \
|
||||||
|
/usr/include/bits/pthreadtypes.h /usr/include/bits/thread-shared-types.h \
|
||||||
|
/usr/include/bits/pthreadtypes-arch.h \
|
||||||
|
/usr/include/bits/atomic_wide_counter.h /usr/include/bits/struct_mutex.h \
|
||||||
|
/usr/include/bits/struct_rwlock.h /usr/include/bits/setjmp.h \
|
||||||
|
/usr/include/bits/types/__sigset_t.h \
|
||||||
|
/usr/include/bits/types/struct___jmp_buf_tag.h \
|
||||||
|
/usr/include/bits/pthread_stack_min-dynamic.h \
|
||||||
|
/usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/atomic_word.h \
|
||||||
|
/usr/include/sys/single_threaded.h \
|
||||||
|
/usr/include/c++/11.2.0/ext/alloc_traits.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/alloc_traits.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/stl_construct.h \
|
||||||
|
/usr/include/c++/11.2.0/string_view \
|
||||||
|
/usr/include/c++/11.2.0/bits/functional_hash.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/hash_bytes.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/string_view.tcc \
|
||||||
|
/usr/include/c++/11.2.0/ext/string_conversions.h \
|
||||||
|
/usr/include/c++/11.2.0/cstdlib /usr/include/stdlib.h \
|
||||||
|
/usr/include/bits/waitflags.h /usr/include/bits/waitstatus.h \
|
||||||
|
/usr/include/sys/types.h /usr/include/endian.h \
|
||||||
|
/usr/include/bits/byteswap.h /usr/include/bits/uintn-identity.h \
|
||||||
|
/usr/include/sys/select.h /usr/include/bits/select.h \
|
||||||
|
/usr/include/bits/types/sigset_t.h /usr/include/alloca.h \
|
||||||
|
/usr/include/bits/stdlib-float.h /usr/include/c++/11.2.0/bits/std_abs.h \
|
||||||
|
/usr/include/c++/11.2.0/cstdio /usr/include/stdio.h \
|
||||||
|
/usr/include/bits/types/__fpos_t.h /usr/include/bits/types/__fpos64_t.h \
|
||||||
|
/usr/include/bits/types/struct_FILE.h \
|
||||||
|
/usr/include/bits/types/cookie_io_functions_t.h \
|
||||||
|
/usr/include/bits/stdio_lim.h /usr/include/c++/11.2.0/cerrno \
|
||||||
|
/usr/include/errno.h /usr/include/bits/errno.h \
|
||||||
|
/usr/include/linux/errno.h /usr/include/asm/errno.h \
|
||||||
|
/usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \
|
||||||
|
/usr/include/bits/types/error_t.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/charconv.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/basic_string.tcc \
|
||||||
|
/usr/include/c++/11.2.0/sstream /usr/include/c++/11.2.0/istream \
|
||||||
|
/usr/include/c++/11.2.0/ios /usr/include/c++/11.2.0/exception \
|
||||||
|
/usr/include/c++/11.2.0/bits/exception_ptr.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/cxxabi_init_exception.h \
|
||||||
|
/usr/include/c++/11.2.0/typeinfo \
|
||||||
|
/usr/include/c++/11.2.0/bits/nested_exception.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/ios_base.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/locale_classes.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/locale_classes.tcc \
|
||||||
|
/usr/include/c++/11.2.0/system_error \
|
||||||
|
/usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/error_constants.h \
|
||||||
|
/usr/include/c++/11.2.0/stdexcept /usr/include/c++/11.2.0/streambuf \
|
||||||
|
/usr/include/c++/11.2.0/bits/streambuf.tcc \
|
||||||
|
/usr/include/c++/11.2.0/bits/basic_ios.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/locale_facets.h \
|
||||||
|
/usr/include/c++/11.2.0/cwctype /usr/include/wctype.h \
|
||||||
|
/usr/include/bits/wctype-wchar.h \
|
||||||
|
/usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/ctype_base.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/streambuf_iterator.h \
|
||||||
|
/usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/ctype_inline.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/locale_facets.tcc \
|
||||||
|
/usr/include/c++/11.2.0/bits/basic_ios.tcc \
|
||||||
|
/usr/include/c++/11.2.0/ostream /usr/include/c++/11.2.0/bits/ostream.tcc \
|
||||||
|
/usr/include/c++/11.2.0/bits/istream.tcc \
|
||||||
|
/usr/include/c++/11.2.0/bits/sstream.tcc /usr/include/c++/11.2.0/vector \
|
||||||
|
/usr/include/c++/11.2.0/bits/stl_uninitialized.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/stl_vector.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/stl_bvector.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/vector.tcc /usr/include/c++/11.2.0/cmath \
|
||||||
|
/usr/include/math.h /usr/include/bits/math-vector.h \
|
||||||
|
/usr/include/bits/libm-simd-decl-stubs.h \
|
||||||
|
/usr/include/bits/flt-eval-method.h /usr/include/bits/fp-logb.h \
|
||||||
|
/usr/include/bits/fp-fast.h \
|
||||||
|
/usr/include/bits/mathcalls-helper-functions.h \
|
||||||
|
/usr/include/bits/mathcalls.h /usr/include/bits/mathcalls-narrow.h \
|
||||||
|
/usr/include/bits/iscanonical.h /usr/include/c++/11.2.0/bits/specfun.h \
|
||||||
|
/usr/include/c++/11.2.0/limits /usr/include/c++/11.2.0/tr1/gamma.tcc \
|
||||||
|
/usr/include/c++/11.2.0/tr1/special_function_util.h \
|
||||||
|
/usr/include/c++/11.2.0/tr1/bessel_function.tcc \
|
||||||
|
/usr/include/c++/11.2.0/tr1/beta_function.tcc \
|
||||||
|
/usr/include/c++/11.2.0/tr1/ell_integral.tcc \
|
||||||
|
/usr/include/c++/11.2.0/tr1/exp_integral.tcc \
|
||||||
|
/usr/include/c++/11.2.0/tr1/hypergeometric.tcc \
|
||||||
|
/usr/include/c++/11.2.0/tr1/legendre_function.tcc \
|
||||||
|
/usr/include/c++/11.2.0/tr1/modified_bessel_func.tcc \
|
||||||
|
/usr/include/c++/11.2.0/tr1/poly_hermite.tcc \
|
||||||
|
/usr/include/c++/11.2.0/tr1/poly_laguerre.tcc \
|
||||||
|
/usr/include/c++/11.2.0/tr1/riemann_zeta.tcc
|
BIN
Hazelnupp/build/CMakeFiles/Hazelnupp.dir/src/StringValue.cpp.o
Normal file
BIN
Hazelnupp/build/CMakeFiles/Hazelnupp.dir/src/StringValue.cpp.o
Normal file
Binary file not shown.
143
Hazelnupp/build/CMakeFiles/Hazelnupp.dir/src/StringValue.cpp.o.d
Normal file
143
Hazelnupp/build/CMakeFiles/Hazelnupp.dir/src/StringValue.cpp.o.d
Normal file
@ -0,0 +1,143 @@
|
|||||||
|
CMakeFiles/Hazelnupp.dir/src/StringValue.cpp.o: \
|
||||||
|
/home/menethil/projects/private_work/Hazelnupp/Hazelnupp/src/StringValue.cpp \
|
||||||
|
/usr/include/stdc-predef.h \
|
||||||
|
/home/menethil/projects/private_work/Hazelnupp/Hazelnupp/include/Hazelnupp/StringValue.h \
|
||||||
|
/home/menethil/projects/private_work/Hazelnupp/Hazelnupp/include/Hazelnupp/Value.h \
|
||||||
|
/home/menethil/projects/private_work/Hazelnupp/Hazelnupp/include/Hazelnupp/DataType.h \
|
||||||
|
/usr/include/c++/11.2.0/string \
|
||||||
|
/usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/c++config.h \
|
||||||
|
/usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/os_defines.h \
|
||||||
|
/usr/include/features.h /usr/include/features-time64.h \
|
||||||
|
/usr/include/bits/wordsize.h /usr/include/bits/timesize.h \
|
||||||
|
/usr/include/sys/cdefs.h /usr/include/bits/long-double.h \
|
||||||
|
/usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \
|
||||||
|
/usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/cpu_defines.h \
|
||||||
|
/usr/include/c++/11.2.0/pstl/pstl_config.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/stringfwd.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/memoryfwd.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/char_traits.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/stl_algobase.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/functexcept.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/exception_defines.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/cpp_type_traits.h \
|
||||||
|
/usr/include/c++/11.2.0/ext/type_traits.h \
|
||||||
|
/usr/include/c++/11.2.0/ext/numeric_traits.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/stl_pair.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/move.h /usr/include/c++/11.2.0/type_traits \
|
||||||
|
/usr/include/c++/11.2.0/bits/stl_iterator_base_types.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/stl_iterator_base_funcs.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/concept_check.h \
|
||||||
|
/usr/include/c++/11.2.0/debug/assertions.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/stl_iterator.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/ptr_traits.h \
|
||||||
|
/usr/include/c++/11.2.0/debug/debug.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/predefined_ops.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/postypes.h /usr/include/c++/11.2.0/cwchar \
|
||||||
|
/usr/include/wchar.h /usr/include/bits/libc-header-start.h \
|
||||||
|
/usr/include/bits/floatn.h /usr/include/bits/floatn-common.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/include/stddef.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/include/stdarg.h \
|
||||||
|
/usr/include/bits/wchar.h /usr/include/bits/types/wint_t.h \
|
||||||
|
/usr/include/bits/types/mbstate_t.h \
|
||||||
|
/usr/include/bits/types/__mbstate_t.h /usr/include/bits/types/__FILE.h \
|
||||||
|
/usr/include/bits/types/FILE.h /usr/include/bits/types/locale_t.h \
|
||||||
|
/usr/include/bits/types/__locale_t.h /usr/include/c++/11.2.0/cstdint \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/include/stdint.h \
|
||||||
|
/usr/include/stdint.h /usr/include/bits/types.h \
|
||||||
|
/usr/include/bits/typesizes.h /usr/include/bits/time64.h \
|
||||||
|
/usr/include/bits/stdint-intn.h /usr/include/bits/stdint-uintn.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/allocator.h \
|
||||||
|
/usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/c++allocator.h \
|
||||||
|
/usr/include/c++/11.2.0/ext/new_allocator.h /usr/include/c++/11.2.0/new \
|
||||||
|
/usr/include/c++/11.2.0/bits/exception.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/localefwd.h \
|
||||||
|
/usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/c++locale.h \
|
||||||
|
/usr/include/c++/11.2.0/clocale /usr/include/locale.h \
|
||||||
|
/usr/include/bits/locale.h /usr/include/c++/11.2.0/iosfwd \
|
||||||
|
/usr/include/c++/11.2.0/cctype /usr/include/ctype.h \
|
||||||
|
/usr/include/bits/endian.h /usr/include/bits/endianness.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/ostream_insert.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/cxxabi_forced.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/stl_function.h \
|
||||||
|
/usr/include/c++/11.2.0/backward/binders.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/range_access.h \
|
||||||
|
/usr/include/c++/11.2.0/initializer_list \
|
||||||
|
/usr/include/c++/11.2.0/bits/basic_string.h \
|
||||||
|
/usr/include/c++/11.2.0/ext/atomicity.h \
|
||||||
|
/usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/gthr.h \
|
||||||
|
/usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/gthr-default.h \
|
||||||
|
/usr/include/pthread.h /usr/include/sched.h \
|
||||||
|
/usr/include/bits/types/time_t.h \
|
||||||
|
/usr/include/bits/types/struct_timespec.h /usr/include/bits/sched.h \
|
||||||
|
/usr/include/bits/types/struct_sched_param.h /usr/include/bits/cpu-set.h \
|
||||||
|
/usr/include/time.h /usr/include/bits/time.h /usr/include/bits/timex.h \
|
||||||
|
/usr/include/bits/types/struct_timeval.h \
|
||||||
|
/usr/include/bits/types/clock_t.h /usr/include/bits/types/struct_tm.h \
|
||||||
|
/usr/include/bits/types/clockid_t.h /usr/include/bits/types/timer_t.h \
|
||||||
|
/usr/include/bits/types/struct_itimerspec.h \
|
||||||
|
/usr/include/bits/pthreadtypes.h /usr/include/bits/thread-shared-types.h \
|
||||||
|
/usr/include/bits/pthreadtypes-arch.h \
|
||||||
|
/usr/include/bits/atomic_wide_counter.h /usr/include/bits/struct_mutex.h \
|
||||||
|
/usr/include/bits/struct_rwlock.h /usr/include/bits/setjmp.h \
|
||||||
|
/usr/include/bits/types/__sigset_t.h \
|
||||||
|
/usr/include/bits/types/struct___jmp_buf_tag.h \
|
||||||
|
/usr/include/bits/pthread_stack_min-dynamic.h \
|
||||||
|
/usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/atomic_word.h \
|
||||||
|
/usr/include/sys/single_threaded.h \
|
||||||
|
/usr/include/c++/11.2.0/ext/alloc_traits.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/alloc_traits.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/stl_construct.h \
|
||||||
|
/usr/include/c++/11.2.0/string_view \
|
||||||
|
/usr/include/c++/11.2.0/bits/functional_hash.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/hash_bytes.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/string_view.tcc \
|
||||||
|
/usr/include/c++/11.2.0/ext/string_conversions.h \
|
||||||
|
/usr/include/c++/11.2.0/cstdlib /usr/include/stdlib.h \
|
||||||
|
/usr/include/bits/waitflags.h /usr/include/bits/waitstatus.h \
|
||||||
|
/usr/include/sys/types.h /usr/include/endian.h \
|
||||||
|
/usr/include/bits/byteswap.h /usr/include/bits/uintn-identity.h \
|
||||||
|
/usr/include/sys/select.h /usr/include/bits/select.h \
|
||||||
|
/usr/include/bits/types/sigset_t.h /usr/include/alloca.h \
|
||||||
|
/usr/include/bits/stdlib-float.h /usr/include/c++/11.2.0/bits/std_abs.h \
|
||||||
|
/usr/include/c++/11.2.0/cstdio /usr/include/stdio.h \
|
||||||
|
/usr/include/bits/types/__fpos_t.h /usr/include/bits/types/__fpos64_t.h \
|
||||||
|
/usr/include/bits/types/struct_FILE.h \
|
||||||
|
/usr/include/bits/types/cookie_io_functions_t.h \
|
||||||
|
/usr/include/bits/stdio_lim.h /usr/include/c++/11.2.0/cerrno \
|
||||||
|
/usr/include/errno.h /usr/include/bits/errno.h \
|
||||||
|
/usr/include/linux/errno.h /usr/include/asm/errno.h \
|
||||||
|
/usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \
|
||||||
|
/usr/include/bits/types/error_t.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/charconv.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/basic_string.tcc \
|
||||||
|
/usr/include/c++/11.2.0/ostream /usr/include/c++/11.2.0/ios \
|
||||||
|
/usr/include/c++/11.2.0/exception \
|
||||||
|
/usr/include/c++/11.2.0/bits/exception_ptr.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/cxxabi_init_exception.h \
|
||||||
|
/usr/include/c++/11.2.0/typeinfo \
|
||||||
|
/usr/include/c++/11.2.0/bits/nested_exception.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/ios_base.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/locale_classes.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/locale_classes.tcc \
|
||||||
|
/usr/include/c++/11.2.0/system_error \
|
||||||
|
/usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/error_constants.h \
|
||||||
|
/usr/include/c++/11.2.0/stdexcept /usr/include/c++/11.2.0/streambuf \
|
||||||
|
/usr/include/c++/11.2.0/bits/streambuf.tcc \
|
||||||
|
/usr/include/c++/11.2.0/bits/basic_ios.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/locale_facets.h \
|
||||||
|
/usr/include/c++/11.2.0/cwctype /usr/include/wctype.h \
|
||||||
|
/usr/include/bits/wctype-wchar.h \
|
||||||
|
/usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/ctype_base.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/streambuf_iterator.h \
|
||||||
|
/usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/ctype_inline.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/locale_facets.tcc \
|
||||||
|
/usr/include/c++/11.2.0/bits/basic_ios.tcc \
|
||||||
|
/usr/include/c++/11.2.0/bits/ostream.tcc /usr/include/c++/11.2.0/vector \
|
||||||
|
/usr/include/c++/11.2.0/bits/stl_uninitialized.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/stl_vector.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/stl_bvector.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/vector.tcc \
|
||||||
|
/home/menethil/projects/private_work/Hazelnupp/Hazelnupp/include/Hazelnupp/HazelnuppException.h \
|
||||||
|
/usr/include/c++/11.2.0/sstream /usr/include/c++/11.2.0/istream \
|
||||||
|
/usr/include/c++/11.2.0/bits/istream.tcc \
|
||||||
|
/usr/include/c++/11.2.0/bits/sstream.tcc
|
BIN
Hazelnupp/build/CMakeFiles/Hazelnupp.dir/src/Value.cpp.o
Normal file
BIN
Hazelnupp/build/CMakeFiles/Hazelnupp.dir/src/Value.cpp.o
Normal file
Binary file not shown.
138
Hazelnupp/build/CMakeFiles/Hazelnupp.dir/src/Value.cpp.o.d
Normal file
138
Hazelnupp/build/CMakeFiles/Hazelnupp.dir/src/Value.cpp.o.d
Normal file
@ -0,0 +1,138 @@
|
|||||||
|
CMakeFiles/Hazelnupp.dir/src/Value.cpp.o: \
|
||||||
|
/home/menethil/projects/private_work/Hazelnupp/Hazelnupp/src/Value.cpp \
|
||||||
|
/usr/include/stdc-predef.h \
|
||||||
|
/home/menethil/projects/private_work/Hazelnupp/Hazelnupp/include/Hazelnupp/Value.h \
|
||||||
|
/home/menethil/projects/private_work/Hazelnupp/Hazelnupp/include/Hazelnupp/DataType.h \
|
||||||
|
/usr/include/c++/11.2.0/string \
|
||||||
|
/usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/c++config.h \
|
||||||
|
/usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/os_defines.h \
|
||||||
|
/usr/include/features.h /usr/include/features-time64.h \
|
||||||
|
/usr/include/bits/wordsize.h /usr/include/bits/timesize.h \
|
||||||
|
/usr/include/sys/cdefs.h /usr/include/bits/long-double.h \
|
||||||
|
/usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \
|
||||||
|
/usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/cpu_defines.h \
|
||||||
|
/usr/include/c++/11.2.0/pstl/pstl_config.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/stringfwd.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/memoryfwd.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/char_traits.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/stl_algobase.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/functexcept.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/exception_defines.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/cpp_type_traits.h \
|
||||||
|
/usr/include/c++/11.2.0/ext/type_traits.h \
|
||||||
|
/usr/include/c++/11.2.0/ext/numeric_traits.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/stl_pair.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/move.h /usr/include/c++/11.2.0/type_traits \
|
||||||
|
/usr/include/c++/11.2.0/bits/stl_iterator_base_types.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/stl_iterator_base_funcs.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/concept_check.h \
|
||||||
|
/usr/include/c++/11.2.0/debug/assertions.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/stl_iterator.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/ptr_traits.h \
|
||||||
|
/usr/include/c++/11.2.0/debug/debug.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/predefined_ops.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/postypes.h /usr/include/c++/11.2.0/cwchar \
|
||||||
|
/usr/include/wchar.h /usr/include/bits/libc-header-start.h \
|
||||||
|
/usr/include/bits/floatn.h /usr/include/bits/floatn-common.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/include/stddef.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/include/stdarg.h \
|
||||||
|
/usr/include/bits/wchar.h /usr/include/bits/types/wint_t.h \
|
||||||
|
/usr/include/bits/types/mbstate_t.h \
|
||||||
|
/usr/include/bits/types/__mbstate_t.h /usr/include/bits/types/__FILE.h \
|
||||||
|
/usr/include/bits/types/FILE.h /usr/include/bits/types/locale_t.h \
|
||||||
|
/usr/include/bits/types/__locale_t.h /usr/include/c++/11.2.0/cstdint \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/include/stdint.h \
|
||||||
|
/usr/include/stdint.h /usr/include/bits/types.h \
|
||||||
|
/usr/include/bits/typesizes.h /usr/include/bits/time64.h \
|
||||||
|
/usr/include/bits/stdint-intn.h /usr/include/bits/stdint-uintn.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/allocator.h \
|
||||||
|
/usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/c++allocator.h \
|
||||||
|
/usr/include/c++/11.2.0/ext/new_allocator.h /usr/include/c++/11.2.0/new \
|
||||||
|
/usr/include/c++/11.2.0/bits/exception.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/localefwd.h \
|
||||||
|
/usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/c++locale.h \
|
||||||
|
/usr/include/c++/11.2.0/clocale /usr/include/locale.h \
|
||||||
|
/usr/include/bits/locale.h /usr/include/c++/11.2.0/iosfwd \
|
||||||
|
/usr/include/c++/11.2.0/cctype /usr/include/ctype.h \
|
||||||
|
/usr/include/bits/endian.h /usr/include/bits/endianness.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/ostream_insert.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/cxxabi_forced.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/stl_function.h \
|
||||||
|
/usr/include/c++/11.2.0/backward/binders.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/range_access.h \
|
||||||
|
/usr/include/c++/11.2.0/initializer_list \
|
||||||
|
/usr/include/c++/11.2.0/bits/basic_string.h \
|
||||||
|
/usr/include/c++/11.2.0/ext/atomicity.h \
|
||||||
|
/usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/gthr.h \
|
||||||
|
/usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/gthr-default.h \
|
||||||
|
/usr/include/pthread.h /usr/include/sched.h \
|
||||||
|
/usr/include/bits/types/time_t.h \
|
||||||
|
/usr/include/bits/types/struct_timespec.h /usr/include/bits/sched.h \
|
||||||
|
/usr/include/bits/types/struct_sched_param.h /usr/include/bits/cpu-set.h \
|
||||||
|
/usr/include/time.h /usr/include/bits/time.h /usr/include/bits/timex.h \
|
||||||
|
/usr/include/bits/types/struct_timeval.h \
|
||||||
|
/usr/include/bits/types/clock_t.h /usr/include/bits/types/struct_tm.h \
|
||||||
|
/usr/include/bits/types/clockid_t.h /usr/include/bits/types/timer_t.h \
|
||||||
|
/usr/include/bits/types/struct_itimerspec.h \
|
||||||
|
/usr/include/bits/pthreadtypes.h /usr/include/bits/thread-shared-types.h \
|
||||||
|
/usr/include/bits/pthreadtypes-arch.h \
|
||||||
|
/usr/include/bits/atomic_wide_counter.h /usr/include/bits/struct_mutex.h \
|
||||||
|
/usr/include/bits/struct_rwlock.h /usr/include/bits/setjmp.h \
|
||||||
|
/usr/include/bits/types/__sigset_t.h \
|
||||||
|
/usr/include/bits/types/struct___jmp_buf_tag.h \
|
||||||
|
/usr/include/bits/pthread_stack_min-dynamic.h \
|
||||||
|
/usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/atomic_word.h \
|
||||||
|
/usr/include/sys/single_threaded.h \
|
||||||
|
/usr/include/c++/11.2.0/ext/alloc_traits.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/alloc_traits.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/stl_construct.h \
|
||||||
|
/usr/include/c++/11.2.0/string_view \
|
||||||
|
/usr/include/c++/11.2.0/bits/functional_hash.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/hash_bytes.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/string_view.tcc \
|
||||||
|
/usr/include/c++/11.2.0/ext/string_conversions.h \
|
||||||
|
/usr/include/c++/11.2.0/cstdlib /usr/include/stdlib.h \
|
||||||
|
/usr/include/bits/waitflags.h /usr/include/bits/waitstatus.h \
|
||||||
|
/usr/include/sys/types.h /usr/include/endian.h \
|
||||||
|
/usr/include/bits/byteswap.h /usr/include/bits/uintn-identity.h \
|
||||||
|
/usr/include/sys/select.h /usr/include/bits/select.h \
|
||||||
|
/usr/include/bits/types/sigset_t.h /usr/include/alloca.h \
|
||||||
|
/usr/include/bits/stdlib-float.h /usr/include/c++/11.2.0/bits/std_abs.h \
|
||||||
|
/usr/include/c++/11.2.0/cstdio /usr/include/stdio.h \
|
||||||
|
/usr/include/bits/types/__fpos_t.h /usr/include/bits/types/__fpos64_t.h \
|
||||||
|
/usr/include/bits/types/struct_FILE.h \
|
||||||
|
/usr/include/bits/types/cookie_io_functions_t.h \
|
||||||
|
/usr/include/bits/stdio_lim.h /usr/include/c++/11.2.0/cerrno \
|
||||||
|
/usr/include/errno.h /usr/include/bits/errno.h \
|
||||||
|
/usr/include/linux/errno.h /usr/include/asm/errno.h \
|
||||||
|
/usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \
|
||||||
|
/usr/include/bits/types/error_t.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/charconv.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/basic_string.tcc \
|
||||||
|
/usr/include/c++/11.2.0/ostream /usr/include/c++/11.2.0/ios \
|
||||||
|
/usr/include/c++/11.2.0/exception \
|
||||||
|
/usr/include/c++/11.2.0/bits/exception_ptr.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/cxxabi_init_exception.h \
|
||||||
|
/usr/include/c++/11.2.0/typeinfo \
|
||||||
|
/usr/include/c++/11.2.0/bits/nested_exception.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/ios_base.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/locale_classes.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/locale_classes.tcc \
|
||||||
|
/usr/include/c++/11.2.0/system_error \
|
||||||
|
/usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/error_constants.h \
|
||||||
|
/usr/include/c++/11.2.0/stdexcept /usr/include/c++/11.2.0/streambuf \
|
||||||
|
/usr/include/c++/11.2.0/bits/streambuf.tcc \
|
||||||
|
/usr/include/c++/11.2.0/bits/basic_ios.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/locale_facets.h \
|
||||||
|
/usr/include/c++/11.2.0/cwctype /usr/include/wctype.h \
|
||||||
|
/usr/include/bits/wctype-wchar.h \
|
||||||
|
/usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/ctype_base.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/streambuf_iterator.h \
|
||||||
|
/usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/ctype_inline.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/locale_facets.tcc \
|
||||||
|
/usr/include/c++/11.2.0/bits/basic_ios.tcc \
|
||||||
|
/usr/include/c++/11.2.0/bits/ostream.tcc /usr/include/c++/11.2.0/vector \
|
||||||
|
/usr/include/c++/11.2.0/bits/stl_uninitialized.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/stl_vector.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/stl_bvector.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/vector.tcc
|
BIN
Hazelnupp/build/CMakeFiles/Hazelnupp.dir/src/VoidValue.cpp.o
Normal file
BIN
Hazelnupp/build/CMakeFiles/Hazelnupp.dir/src/VoidValue.cpp.o
Normal file
Binary file not shown.
143
Hazelnupp/build/CMakeFiles/Hazelnupp.dir/src/VoidValue.cpp.o.d
Normal file
143
Hazelnupp/build/CMakeFiles/Hazelnupp.dir/src/VoidValue.cpp.o.d
Normal file
@ -0,0 +1,143 @@
|
|||||||
|
CMakeFiles/Hazelnupp.dir/src/VoidValue.cpp.o: \
|
||||||
|
/home/menethil/projects/private_work/Hazelnupp/Hazelnupp/src/VoidValue.cpp \
|
||||||
|
/usr/include/stdc-predef.h \
|
||||||
|
/home/menethil/projects/private_work/Hazelnupp/Hazelnupp/include/Hazelnupp/VoidValue.h \
|
||||||
|
/home/menethil/projects/private_work/Hazelnupp/Hazelnupp/include/Hazelnupp/Value.h \
|
||||||
|
/home/menethil/projects/private_work/Hazelnupp/Hazelnupp/include/Hazelnupp/DataType.h \
|
||||||
|
/usr/include/c++/11.2.0/string \
|
||||||
|
/usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/c++config.h \
|
||||||
|
/usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/os_defines.h \
|
||||||
|
/usr/include/features.h /usr/include/features-time64.h \
|
||||||
|
/usr/include/bits/wordsize.h /usr/include/bits/timesize.h \
|
||||||
|
/usr/include/sys/cdefs.h /usr/include/bits/long-double.h \
|
||||||
|
/usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \
|
||||||
|
/usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/cpu_defines.h \
|
||||||
|
/usr/include/c++/11.2.0/pstl/pstl_config.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/stringfwd.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/memoryfwd.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/char_traits.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/stl_algobase.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/functexcept.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/exception_defines.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/cpp_type_traits.h \
|
||||||
|
/usr/include/c++/11.2.0/ext/type_traits.h \
|
||||||
|
/usr/include/c++/11.2.0/ext/numeric_traits.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/stl_pair.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/move.h /usr/include/c++/11.2.0/type_traits \
|
||||||
|
/usr/include/c++/11.2.0/bits/stl_iterator_base_types.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/stl_iterator_base_funcs.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/concept_check.h \
|
||||||
|
/usr/include/c++/11.2.0/debug/assertions.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/stl_iterator.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/ptr_traits.h \
|
||||||
|
/usr/include/c++/11.2.0/debug/debug.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/predefined_ops.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/postypes.h /usr/include/c++/11.2.0/cwchar \
|
||||||
|
/usr/include/wchar.h /usr/include/bits/libc-header-start.h \
|
||||||
|
/usr/include/bits/floatn.h /usr/include/bits/floatn-common.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/include/stddef.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/include/stdarg.h \
|
||||||
|
/usr/include/bits/wchar.h /usr/include/bits/types/wint_t.h \
|
||||||
|
/usr/include/bits/types/mbstate_t.h \
|
||||||
|
/usr/include/bits/types/__mbstate_t.h /usr/include/bits/types/__FILE.h \
|
||||||
|
/usr/include/bits/types/FILE.h /usr/include/bits/types/locale_t.h \
|
||||||
|
/usr/include/bits/types/__locale_t.h /usr/include/c++/11.2.0/cstdint \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/include/stdint.h \
|
||||||
|
/usr/include/stdint.h /usr/include/bits/types.h \
|
||||||
|
/usr/include/bits/typesizes.h /usr/include/bits/time64.h \
|
||||||
|
/usr/include/bits/stdint-intn.h /usr/include/bits/stdint-uintn.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/allocator.h \
|
||||||
|
/usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/c++allocator.h \
|
||||||
|
/usr/include/c++/11.2.0/ext/new_allocator.h /usr/include/c++/11.2.0/new \
|
||||||
|
/usr/include/c++/11.2.0/bits/exception.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/localefwd.h \
|
||||||
|
/usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/c++locale.h \
|
||||||
|
/usr/include/c++/11.2.0/clocale /usr/include/locale.h \
|
||||||
|
/usr/include/bits/locale.h /usr/include/c++/11.2.0/iosfwd \
|
||||||
|
/usr/include/c++/11.2.0/cctype /usr/include/ctype.h \
|
||||||
|
/usr/include/bits/endian.h /usr/include/bits/endianness.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/ostream_insert.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/cxxabi_forced.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/stl_function.h \
|
||||||
|
/usr/include/c++/11.2.0/backward/binders.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/range_access.h \
|
||||||
|
/usr/include/c++/11.2.0/initializer_list \
|
||||||
|
/usr/include/c++/11.2.0/bits/basic_string.h \
|
||||||
|
/usr/include/c++/11.2.0/ext/atomicity.h \
|
||||||
|
/usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/gthr.h \
|
||||||
|
/usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/gthr-default.h \
|
||||||
|
/usr/include/pthread.h /usr/include/sched.h \
|
||||||
|
/usr/include/bits/types/time_t.h \
|
||||||
|
/usr/include/bits/types/struct_timespec.h /usr/include/bits/sched.h \
|
||||||
|
/usr/include/bits/types/struct_sched_param.h /usr/include/bits/cpu-set.h \
|
||||||
|
/usr/include/time.h /usr/include/bits/time.h /usr/include/bits/timex.h \
|
||||||
|
/usr/include/bits/types/struct_timeval.h \
|
||||||
|
/usr/include/bits/types/clock_t.h /usr/include/bits/types/struct_tm.h \
|
||||||
|
/usr/include/bits/types/clockid_t.h /usr/include/bits/types/timer_t.h \
|
||||||
|
/usr/include/bits/types/struct_itimerspec.h \
|
||||||
|
/usr/include/bits/pthreadtypes.h /usr/include/bits/thread-shared-types.h \
|
||||||
|
/usr/include/bits/pthreadtypes-arch.h \
|
||||||
|
/usr/include/bits/atomic_wide_counter.h /usr/include/bits/struct_mutex.h \
|
||||||
|
/usr/include/bits/struct_rwlock.h /usr/include/bits/setjmp.h \
|
||||||
|
/usr/include/bits/types/__sigset_t.h \
|
||||||
|
/usr/include/bits/types/struct___jmp_buf_tag.h \
|
||||||
|
/usr/include/bits/pthread_stack_min-dynamic.h \
|
||||||
|
/usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/atomic_word.h \
|
||||||
|
/usr/include/sys/single_threaded.h \
|
||||||
|
/usr/include/c++/11.2.0/ext/alloc_traits.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/alloc_traits.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/stl_construct.h \
|
||||||
|
/usr/include/c++/11.2.0/string_view \
|
||||||
|
/usr/include/c++/11.2.0/bits/functional_hash.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/hash_bytes.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/string_view.tcc \
|
||||||
|
/usr/include/c++/11.2.0/ext/string_conversions.h \
|
||||||
|
/usr/include/c++/11.2.0/cstdlib /usr/include/stdlib.h \
|
||||||
|
/usr/include/bits/waitflags.h /usr/include/bits/waitstatus.h \
|
||||||
|
/usr/include/sys/types.h /usr/include/endian.h \
|
||||||
|
/usr/include/bits/byteswap.h /usr/include/bits/uintn-identity.h \
|
||||||
|
/usr/include/sys/select.h /usr/include/bits/select.h \
|
||||||
|
/usr/include/bits/types/sigset_t.h /usr/include/alloca.h \
|
||||||
|
/usr/include/bits/stdlib-float.h /usr/include/c++/11.2.0/bits/std_abs.h \
|
||||||
|
/usr/include/c++/11.2.0/cstdio /usr/include/stdio.h \
|
||||||
|
/usr/include/bits/types/__fpos_t.h /usr/include/bits/types/__fpos64_t.h \
|
||||||
|
/usr/include/bits/types/struct_FILE.h \
|
||||||
|
/usr/include/bits/types/cookie_io_functions_t.h \
|
||||||
|
/usr/include/bits/stdio_lim.h /usr/include/c++/11.2.0/cerrno \
|
||||||
|
/usr/include/errno.h /usr/include/bits/errno.h \
|
||||||
|
/usr/include/linux/errno.h /usr/include/asm/errno.h \
|
||||||
|
/usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \
|
||||||
|
/usr/include/bits/types/error_t.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/charconv.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/basic_string.tcc \
|
||||||
|
/usr/include/c++/11.2.0/ostream /usr/include/c++/11.2.0/ios \
|
||||||
|
/usr/include/c++/11.2.0/exception \
|
||||||
|
/usr/include/c++/11.2.0/bits/exception_ptr.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/cxxabi_init_exception.h \
|
||||||
|
/usr/include/c++/11.2.0/typeinfo \
|
||||||
|
/usr/include/c++/11.2.0/bits/nested_exception.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/ios_base.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/locale_classes.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/locale_classes.tcc \
|
||||||
|
/usr/include/c++/11.2.0/system_error \
|
||||||
|
/usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/error_constants.h \
|
||||||
|
/usr/include/c++/11.2.0/stdexcept /usr/include/c++/11.2.0/streambuf \
|
||||||
|
/usr/include/c++/11.2.0/bits/streambuf.tcc \
|
||||||
|
/usr/include/c++/11.2.0/bits/basic_ios.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/locale_facets.h \
|
||||||
|
/usr/include/c++/11.2.0/cwctype /usr/include/wctype.h \
|
||||||
|
/usr/include/bits/wctype-wchar.h \
|
||||||
|
/usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/ctype_base.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/streambuf_iterator.h \
|
||||||
|
/usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/ctype_inline.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/locale_facets.tcc \
|
||||||
|
/usr/include/c++/11.2.0/bits/basic_ios.tcc \
|
||||||
|
/usr/include/c++/11.2.0/bits/ostream.tcc /usr/include/c++/11.2.0/vector \
|
||||||
|
/usr/include/c++/11.2.0/bits/stl_uninitialized.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/stl_vector.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/stl_bvector.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/vector.tcc \
|
||||||
|
/home/menethil/projects/private_work/Hazelnupp/Hazelnupp/include/Hazelnupp/HazelnuppException.h \
|
||||||
|
/usr/include/c++/11.2.0/sstream /usr/include/c++/11.2.0/istream \
|
||||||
|
/usr/include/c++/11.2.0/bits/istream.tcc \
|
||||||
|
/usr/include/c++/11.2.0/bits/sstream.tcc
|
128
Hazelnupp/build/CMakeFiles/Makefile.cmake
Normal file
128
Hazelnupp/build/CMakeFiles/Makefile.cmake
Normal file
@ -0,0 +1,128 @@
|
|||||||
|
# CMAKE generated file: DO NOT EDIT!
|
||||||
|
# Generated by "Unix Makefiles" Generator, CMake Version 3.23
|
||||||
|
|
||||||
|
# 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"
|
||||||
|
"../CMakeLists.txt"
|
||||||
|
"CMakeFiles/3.23.0/CMakeCCompiler.cmake"
|
||||||
|
"CMakeFiles/3.23.0/CMakeCXXCompiler.cmake"
|
||||||
|
"CMakeFiles/3.23.0/CMakeSystem.cmake"
|
||||||
|
"/usr/share/cmake/Modules/CMakeCCompiler.cmake.in"
|
||||||
|
"/usr/share/cmake/Modules/CMakeCCompilerABI.c"
|
||||||
|
"/usr/share/cmake/Modules/CMakeCInformation.cmake"
|
||||||
|
"/usr/share/cmake/Modules/CMakeCXXCompiler.cmake.in"
|
||||||
|
"/usr/share/cmake/Modules/CMakeCXXCompilerABI.cpp"
|
||||||
|
"/usr/share/cmake/Modules/CMakeCXXInformation.cmake"
|
||||||
|
"/usr/share/cmake/Modules/CMakeCommonLanguageInclude.cmake"
|
||||||
|
"/usr/share/cmake/Modules/CMakeCompilerIdDetection.cmake"
|
||||||
|
"/usr/share/cmake/Modules/CMakeDetermineCCompiler.cmake"
|
||||||
|
"/usr/share/cmake/Modules/CMakeDetermineCXXCompiler.cmake"
|
||||||
|
"/usr/share/cmake/Modules/CMakeDetermineCompileFeatures.cmake"
|
||||||
|
"/usr/share/cmake/Modules/CMakeDetermineCompiler.cmake"
|
||||||
|
"/usr/share/cmake/Modules/CMakeDetermineCompilerABI.cmake"
|
||||||
|
"/usr/share/cmake/Modules/CMakeDetermineCompilerId.cmake"
|
||||||
|
"/usr/share/cmake/Modules/CMakeDetermineSystem.cmake"
|
||||||
|
"/usr/share/cmake/Modules/CMakeFindBinUtils.cmake"
|
||||||
|
"/usr/share/cmake/Modules/CMakeGenericSystem.cmake"
|
||||||
|
"/usr/share/cmake/Modules/CMakeInitializeConfigs.cmake"
|
||||||
|
"/usr/share/cmake/Modules/CMakeLanguageInformation.cmake"
|
||||||
|
"/usr/share/cmake/Modules/CMakeParseImplicitIncludeInfo.cmake"
|
||||||
|
"/usr/share/cmake/Modules/CMakeParseImplicitLinkInfo.cmake"
|
||||||
|
"/usr/share/cmake/Modules/CMakeParseLibraryArchitecture.cmake"
|
||||||
|
"/usr/share/cmake/Modules/CMakeSystem.cmake.in"
|
||||||
|
"/usr/share/cmake/Modules/CMakeSystemSpecificInformation.cmake"
|
||||||
|
"/usr/share/cmake/Modules/CMakeSystemSpecificInitialize.cmake"
|
||||||
|
"/usr/share/cmake/Modules/CMakeTestCCompiler.cmake"
|
||||||
|
"/usr/share/cmake/Modules/CMakeTestCXXCompiler.cmake"
|
||||||
|
"/usr/share/cmake/Modules/CMakeTestCompilerCommon.cmake"
|
||||||
|
"/usr/share/cmake/Modules/CMakeUnixFindMake.cmake"
|
||||||
|
"/usr/share/cmake/Modules/Compiler/ADSP-DetermineCompiler.cmake"
|
||||||
|
"/usr/share/cmake/Modules/Compiler/ARMCC-DetermineCompiler.cmake"
|
||||||
|
"/usr/share/cmake/Modules/Compiler/ARMClang-DetermineCompiler.cmake"
|
||||||
|
"/usr/share/cmake/Modules/Compiler/AppleClang-DetermineCompiler.cmake"
|
||||||
|
"/usr/share/cmake/Modules/Compiler/Borland-DetermineCompiler.cmake"
|
||||||
|
"/usr/share/cmake/Modules/Compiler/Bruce-C-DetermineCompiler.cmake"
|
||||||
|
"/usr/share/cmake/Modules/Compiler/CMakeCommonCompilerMacros.cmake"
|
||||||
|
"/usr/share/cmake/Modules/Compiler/Clang-DetermineCompiler.cmake"
|
||||||
|
"/usr/share/cmake/Modules/Compiler/Clang-DetermineCompilerInternal.cmake"
|
||||||
|
"/usr/share/cmake/Modules/Compiler/Comeau-CXX-DetermineCompiler.cmake"
|
||||||
|
"/usr/share/cmake/Modules/Compiler/Compaq-C-DetermineCompiler.cmake"
|
||||||
|
"/usr/share/cmake/Modules/Compiler/Compaq-CXX-DetermineCompiler.cmake"
|
||||||
|
"/usr/share/cmake/Modules/Compiler/Cray-DetermineCompiler.cmake"
|
||||||
|
"/usr/share/cmake/Modules/Compiler/Embarcadero-DetermineCompiler.cmake"
|
||||||
|
"/usr/share/cmake/Modules/Compiler/Fujitsu-DetermineCompiler.cmake"
|
||||||
|
"/usr/share/cmake/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake"
|
||||||
|
"/usr/share/cmake/Modules/Compiler/GHS-DetermineCompiler.cmake"
|
||||||
|
"/usr/share/cmake/Modules/Compiler/GNU-C-DetermineCompiler.cmake"
|
||||||
|
"/usr/share/cmake/Modules/Compiler/GNU-C.cmake"
|
||||||
|
"/usr/share/cmake/Modules/Compiler/GNU-CXX-DetermineCompiler.cmake"
|
||||||
|
"/usr/share/cmake/Modules/Compiler/GNU-CXX.cmake"
|
||||||
|
"/usr/share/cmake/Modules/Compiler/GNU-FindBinUtils.cmake"
|
||||||
|
"/usr/share/cmake/Modules/Compiler/GNU.cmake"
|
||||||
|
"/usr/share/cmake/Modules/Compiler/HP-C-DetermineCompiler.cmake"
|
||||||
|
"/usr/share/cmake/Modules/Compiler/HP-CXX-DetermineCompiler.cmake"
|
||||||
|
"/usr/share/cmake/Modules/Compiler/IAR-DetermineCompiler.cmake"
|
||||||
|
"/usr/share/cmake/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake"
|
||||||
|
"/usr/share/cmake/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake"
|
||||||
|
"/usr/share/cmake/Modules/Compiler/IBMClang-C-DetermineCompiler.cmake"
|
||||||
|
"/usr/share/cmake/Modules/Compiler/IBMClang-CXX-DetermineCompiler.cmake"
|
||||||
|
"/usr/share/cmake/Modules/Compiler/Intel-DetermineCompiler.cmake"
|
||||||
|
"/usr/share/cmake/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake"
|
||||||
|
"/usr/share/cmake/Modules/Compiler/LCC-C-DetermineCompiler.cmake"
|
||||||
|
"/usr/share/cmake/Modules/Compiler/LCC-CXX-DetermineCompiler.cmake"
|
||||||
|
"/usr/share/cmake/Modules/Compiler/MSVC-DetermineCompiler.cmake"
|
||||||
|
"/usr/share/cmake/Modules/Compiler/NVHPC-DetermineCompiler.cmake"
|
||||||
|
"/usr/share/cmake/Modules/Compiler/NVIDIA-DetermineCompiler.cmake"
|
||||||
|
"/usr/share/cmake/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake"
|
||||||
|
"/usr/share/cmake/Modules/Compiler/PGI-DetermineCompiler.cmake"
|
||||||
|
"/usr/share/cmake/Modules/Compiler/PathScale-DetermineCompiler.cmake"
|
||||||
|
"/usr/share/cmake/Modules/Compiler/SCO-DetermineCompiler.cmake"
|
||||||
|
"/usr/share/cmake/Modules/Compiler/SDCC-C-DetermineCompiler.cmake"
|
||||||
|
"/usr/share/cmake/Modules/Compiler/SunPro-C-DetermineCompiler.cmake"
|
||||||
|
"/usr/share/cmake/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake"
|
||||||
|
"/usr/share/cmake/Modules/Compiler/TI-DetermineCompiler.cmake"
|
||||||
|
"/usr/share/cmake/Modules/Compiler/TinyCC-C-DetermineCompiler.cmake"
|
||||||
|
"/usr/share/cmake/Modules/Compiler/VisualAge-C-DetermineCompiler.cmake"
|
||||||
|
"/usr/share/cmake/Modules/Compiler/VisualAge-CXX-DetermineCompiler.cmake"
|
||||||
|
"/usr/share/cmake/Modules/Compiler/Watcom-DetermineCompiler.cmake"
|
||||||
|
"/usr/share/cmake/Modules/Compiler/XL-C-DetermineCompiler.cmake"
|
||||||
|
"/usr/share/cmake/Modules/Compiler/XL-CXX-DetermineCompiler.cmake"
|
||||||
|
"/usr/share/cmake/Modules/Compiler/XLClang-C-DetermineCompiler.cmake"
|
||||||
|
"/usr/share/cmake/Modules/Compiler/XLClang-CXX-DetermineCompiler.cmake"
|
||||||
|
"/usr/share/cmake/Modules/Compiler/zOS-C-DetermineCompiler.cmake"
|
||||||
|
"/usr/share/cmake/Modules/Compiler/zOS-CXX-DetermineCompiler.cmake"
|
||||||
|
"/usr/share/cmake/Modules/Internal/FeatureTesting.cmake"
|
||||||
|
"/usr/share/cmake/Modules/Platform/Linux-Determine-CXX.cmake"
|
||||||
|
"/usr/share/cmake/Modules/Platform/Linux-GNU-C.cmake"
|
||||||
|
"/usr/share/cmake/Modules/Platform/Linux-GNU-CXX.cmake"
|
||||||
|
"/usr/share/cmake/Modules/Platform/Linux-GNU.cmake"
|
||||||
|
"/usr/share/cmake/Modules/Platform/Linux.cmake"
|
||||||
|
"/usr/share/cmake/Modules/Platform/UnixPaths.cmake"
|
||||||
|
)
|
||||||
|
|
||||||
|
# The corresponding makefile is:
|
||||||
|
set(CMAKE_MAKEFILE_OUTPUTS
|
||||||
|
"Makefile"
|
||||||
|
"CMakeFiles/cmake.check_cache"
|
||||||
|
)
|
||||||
|
|
||||||
|
# Byproducts of CMake generate step:
|
||||||
|
set(CMAKE_MAKEFILE_PRODUCTS
|
||||||
|
"CMakeFiles/3.23.0/CMakeSystem.cmake"
|
||||||
|
"CMakeFiles/3.23.0/CMakeCCompiler.cmake"
|
||||||
|
"CMakeFiles/3.23.0/CMakeCXXCompiler.cmake"
|
||||||
|
"CMakeFiles/3.23.0/CMakeCCompiler.cmake"
|
||||||
|
"CMakeFiles/3.23.0/CMakeCXXCompiler.cmake"
|
||||||
|
"CMakeFiles/CMakeDirectoryInformation.cmake"
|
||||||
|
)
|
||||||
|
|
||||||
|
# Dependency information for all targets:
|
||||||
|
set(CMAKE_DEPEND_INFO_FILES
|
||||||
|
"CMakeFiles/Hazelnupp.dir/DependInfo.cmake"
|
||||||
|
"CMakeFiles/test.dir/DependInfo.cmake"
|
||||||
|
"CMakeFiles/exec.dir/DependInfo.cmake"
|
||||||
|
)
|
168
Hazelnupp/build/CMakeFiles/Makefile2
Normal file
168
Hazelnupp/build/CMakeFiles/Makefile2
Normal file
@ -0,0 +1,168 @@
|
|||||||
|
# CMAKE generated file: DO NOT EDIT!
|
||||||
|
# Generated by "Unix Makefiles" Generator, CMake Version 3.23
|
||||||
|
|
||||||
|
# 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/menethil/projects/private_work/Hazelnupp/Hazelnupp
|
||||||
|
|
||||||
|
# The top-level build directory on which CMake was run.
|
||||||
|
CMAKE_BINARY_DIR = /home/menethil/projects/private_work/Hazelnupp/Hazelnupp/build
|
||||||
|
|
||||||
|
#=============================================================================
|
||||||
|
# Directory level rules for the build root directory
|
||||||
|
|
||||||
|
# The main recursive "all" target.
|
||||||
|
all: CMakeFiles/Hazelnupp.dir/all
|
||||||
|
all: CMakeFiles/test.dir/all
|
||||||
|
all: CMakeFiles/exec.dir/all
|
||||||
|
.PHONY : all
|
||||||
|
|
||||||
|
# The main recursive "preinstall" target.
|
||||||
|
preinstall:
|
||||||
|
.PHONY : preinstall
|
||||||
|
|
||||||
|
# The main recursive "clean" target.
|
||||||
|
clean: CMakeFiles/Hazelnupp.dir/clean
|
||||||
|
clean: CMakeFiles/test.dir/clean
|
||||||
|
clean: CMakeFiles/exec.dir/clean
|
||||||
|
.PHONY : clean
|
||||||
|
|
||||||
|
#=============================================================================
|
||||||
|
# Target rules for target CMakeFiles/Hazelnupp.dir
|
||||||
|
|
||||||
|
# All Build rule for target.
|
||||||
|
CMakeFiles/Hazelnupp.dir/all:
|
||||||
|
$(MAKE) $(MAKESILENT) -f CMakeFiles/Hazelnupp.dir/build.make CMakeFiles/Hazelnupp.dir/depend
|
||||||
|
$(MAKE) $(MAKESILENT) -f CMakeFiles/Hazelnupp.dir/build.make CMakeFiles/Hazelnupp.dir/build
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/menethil/projects/private_work/Hazelnupp/Hazelnupp/build/CMakeFiles --progress-num=1,2,3,4,5,6,7,8,9,10 "Built target Hazelnupp"
|
||||||
|
.PHONY : CMakeFiles/Hazelnupp.dir/all
|
||||||
|
|
||||||
|
# Build rule for subdir invocation for target.
|
||||||
|
CMakeFiles/Hazelnupp.dir/rule: cmake_check_build_system
|
||||||
|
$(CMAKE_COMMAND) -E cmake_progress_start /home/menethil/projects/private_work/Hazelnupp/Hazelnupp/build/CMakeFiles 10
|
||||||
|
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 CMakeFiles/Hazelnupp.dir/all
|
||||||
|
$(CMAKE_COMMAND) -E cmake_progress_start /home/menethil/projects/private_work/Hazelnupp/Hazelnupp/build/CMakeFiles 0
|
||||||
|
.PHONY : CMakeFiles/Hazelnupp.dir/rule
|
||||||
|
|
||||||
|
# Convenience name for target.
|
||||||
|
Hazelnupp: CMakeFiles/Hazelnupp.dir/rule
|
||||||
|
.PHONY : Hazelnupp
|
||||||
|
|
||||||
|
# clean rule for target.
|
||||||
|
CMakeFiles/Hazelnupp.dir/clean:
|
||||||
|
$(MAKE) $(MAKESILENT) -f CMakeFiles/Hazelnupp.dir/build.make CMakeFiles/Hazelnupp.dir/clean
|
||||||
|
.PHONY : CMakeFiles/Hazelnupp.dir/clean
|
||||||
|
|
||||||
|
#=============================================================================
|
||||||
|
# Target rules for target CMakeFiles/test.dir
|
||||||
|
|
||||||
|
# All Build rule for target.
|
||||||
|
CMakeFiles/test.dir/all: CMakeFiles/Hazelnupp.dir/all
|
||||||
|
$(MAKE) $(MAKESILENT) -f CMakeFiles/test.dir/build.make CMakeFiles/test.dir/depend
|
||||||
|
$(MAKE) $(MAKESILENT) -f CMakeFiles/test.dir/build.make CMakeFiles/test.dir/build
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/menethil/projects/private_work/Hazelnupp/Hazelnupp/build/CMakeFiles --progress-num=13,14,15,16,17,18,19 "Built target test"
|
||||||
|
.PHONY : CMakeFiles/test.dir/all
|
||||||
|
|
||||||
|
# Build rule for subdir invocation for target.
|
||||||
|
CMakeFiles/test.dir/rule: cmake_check_build_system
|
||||||
|
$(CMAKE_COMMAND) -E cmake_progress_start /home/menethil/projects/private_work/Hazelnupp/Hazelnupp/build/CMakeFiles 17
|
||||||
|
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 CMakeFiles/test.dir/all
|
||||||
|
$(CMAKE_COMMAND) -E cmake_progress_start /home/menethil/projects/private_work/Hazelnupp/Hazelnupp/build/CMakeFiles 0
|
||||||
|
.PHONY : CMakeFiles/test.dir/rule
|
||||||
|
|
||||||
|
# Convenience name for target.
|
||||||
|
test: CMakeFiles/test.dir/rule
|
||||||
|
.PHONY : test
|
||||||
|
|
||||||
|
# clean rule for target.
|
||||||
|
CMakeFiles/test.dir/clean:
|
||||||
|
$(MAKE) $(MAKESILENT) -f CMakeFiles/test.dir/build.make CMakeFiles/test.dir/clean
|
||||||
|
.PHONY : CMakeFiles/test.dir/clean
|
||||||
|
|
||||||
|
#=============================================================================
|
||||||
|
# Target rules for target CMakeFiles/exec.dir
|
||||||
|
|
||||||
|
# All Build rule for target.
|
||||||
|
CMakeFiles/exec.dir/all: CMakeFiles/Hazelnupp.dir/all
|
||||||
|
$(MAKE) $(MAKESILENT) -f CMakeFiles/exec.dir/build.make CMakeFiles/exec.dir/depend
|
||||||
|
$(MAKE) $(MAKESILENT) -f CMakeFiles/exec.dir/build.make CMakeFiles/exec.dir/build
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/menethil/projects/private_work/Hazelnupp/Hazelnupp/build/CMakeFiles --progress-num=11,12 "Built target exec"
|
||||||
|
.PHONY : CMakeFiles/exec.dir/all
|
||||||
|
|
||||||
|
# Build rule for subdir invocation for target.
|
||||||
|
CMakeFiles/exec.dir/rule: cmake_check_build_system
|
||||||
|
$(CMAKE_COMMAND) -E cmake_progress_start /home/menethil/projects/private_work/Hazelnupp/Hazelnupp/build/CMakeFiles 12
|
||||||
|
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 CMakeFiles/exec.dir/all
|
||||||
|
$(CMAKE_COMMAND) -E cmake_progress_start /home/menethil/projects/private_work/Hazelnupp/Hazelnupp/build/CMakeFiles 0
|
||||||
|
.PHONY : CMakeFiles/exec.dir/rule
|
||||||
|
|
||||||
|
# Convenience name for target.
|
||||||
|
exec: CMakeFiles/exec.dir/rule
|
||||||
|
.PHONY : exec
|
||||||
|
|
||||||
|
# clean rule for target.
|
||||||
|
CMakeFiles/exec.dir/clean:
|
||||||
|
$(MAKE) $(MAKESILENT) -f CMakeFiles/exec.dir/build.make CMakeFiles/exec.dir/clean
|
||||||
|
.PHONY : CMakeFiles/exec.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
|
||||||
|
|
5
Hazelnupp/build/CMakeFiles/TargetDirectories.txt
Normal file
5
Hazelnupp/build/CMakeFiles/TargetDirectories.txt
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
/home/menethil/projects/private_work/Hazelnupp/Hazelnupp/build/CMakeFiles/Hazelnupp.dir
|
||||||
|
/home/menethil/projects/private_work/Hazelnupp/Hazelnupp/build/CMakeFiles/test.dir
|
||||||
|
/home/menethil/projects/private_work/Hazelnupp/Hazelnupp/build/CMakeFiles/exec.dir
|
||||||
|
/home/menethil/projects/private_work/Hazelnupp/Hazelnupp/build/CMakeFiles/edit_cache.dir
|
||||||
|
/home/menethil/projects/private_work/Hazelnupp/Hazelnupp/build/CMakeFiles/rebuild_cache.dir
|
1
Hazelnupp/build/CMakeFiles/cmake.check_cache
Normal file
1
Hazelnupp/build/CMakeFiles/cmake.check_cache
Normal file
@ -0,0 +1 @@
|
|||||||
|
# This file is generated by cmake for dependency checking of the CMakeCache.txt file
|
20
Hazelnupp/build/CMakeFiles/exec.dir/DependInfo.cmake
Normal file
20
Hazelnupp/build/CMakeFiles/exec.dir/DependInfo.cmake
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
|
||||||
|
# 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/menethil/projects/private_work/Hazelnupp/Hazelnupp/exec/main.cpp" "CMakeFiles/exec.dir/exec/main.cpp.o" "gcc" "CMakeFiles/exec.dir/exec/main.cpp.o.d"
|
||||||
|
)
|
||||||
|
|
||||||
|
# Targets to which this target links.
|
||||||
|
set(CMAKE_TARGET_LINKED_INFO_FILES
|
||||||
|
"/home/menethil/projects/private_work/Hazelnupp/Hazelnupp/build/CMakeFiles/Hazelnupp.dir/DependInfo.cmake"
|
||||||
|
)
|
||||||
|
|
||||||
|
# Fortran module output directory.
|
||||||
|
set(CMAKE_Fortran_TARGET_MODULE_DIR "")
|
111
Hazelnupp/build/CMakeFiles/exec.dir/build.make
Normal file
111
Hazelnupp/build/CMakeFiles/exec.dir/build.make
Normal file
@ -0,0 +1,111 @@
|
|||||||
|
# CMAKE generated file: DO NOT EDIT!
|
||||||
|
# Generated by "Unix Makefiles" Generator, CMake Version 3.23
|
||||||
|
|
||||||
|
# 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/menethil/projects/private_work/Hazelnupp/Hazelnupp
|
||||||
|
|
||||||
|
# The top-level build directory on which CMake was run.
|
||||||
|
CMAKE_BINARY_DIR = /home/menethil/projects/private_work/Hazelnupp/Hazelnupp/build
|
||||||
|
|
||||||
|
# Include any dependencies generated for this target.
|
||||||
|
include CMakeFiles/exec.dir/depend.make
|
||||||
|
# Include any dependencies generated by the compiler for this target.
|
||||||
|
include CMakeFiles/exec.dir/compiler_depend.make
|
||||||
|
|
||||||
|
# Include the progress variables for this target.
|
||||||
|
include CMakeFiles/exec.dir/progress.make
|
||||||
|
|
||||||
|
# Include the compile flags for this target's objects.
|
||||||
|
include CMakeFiles/exec.dir/flags.make
|
||||||
|
|
||||||
|
CMakeFiles/exec.dir/exec/main.cpp.o: CMakeFiles/exec.dir/flags.make
|
||||||
|
CMakeFiles/exec.dir/exec/main.cpp.o: ../exec/main.cpp
|
||||||
|
CMakeFiles/exec.dir/exec/main.cpp.o: CMakeFiles/exec.dir/compiler_depend.ts
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/menethil/projects/private_work/Hazelnupp/Hazelnupp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object CMakeFiles/exec.dir/exec/main.cpp.o"
|
||||||
|
/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/exec.dir/exec/main.cpp.o -MF CMakeFiles/exec.dir/exec/main.cpp.o.d -o CMakeFiles/exec.dir/exec/main.cpp.o -c /home/menethil/projects/private_work/Hazelnupp/Hazelnupp/exec/main.cpp
|
||||||
|
|
||||||
|
CMakeFiles/exec.dir/exec/main.cpp.i: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/exec.dir/exec/main.cpp.i"
|
||||||
|
/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/menethil/projects/private_work/Hazelnupp/Hazelnupp/exec/main.cpp > CMakeFiles/exec.dir/exec/main.cpp.i
|
||||||
|
|
||||||
|
CMakeFiles/exec.dir/exec/main.cpp.s: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/exec.dir/exec/main.cpp.s"
|
||||||
|
/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/menethil/projects/private_work/Hazelnupp/Hazelnupp/exec/main.cpp -o CMakeFiles/exec.dir/exec/main.cpp.s
|
||||||
|
|
||||||
|
# Object files for target exec
|
||||||
|
exec_OBJECTS = \
|
||||||
|
"CMakeFiles/exec.dir/exec/main.cpp.o"
|
||||||
|
|
||||||
|
# External object files for target exec
|
||||||
|
exec_EXTERNAL_OBJECTS =
|
||||||
|
|
||||||
|
exec: CMakeFiles/exec.dir/exec/main.cpp.o
|
||||||
|
exec: CMakeFiles/exec.dir/build.make
|
||||||
|
exec: libHazelnupp.a
|
||||||
|
exec: CMakeFiles/exec.dir/link.txt
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --bold --progress-dir=/home/menethil/projects/private_work/Hazelnupp/Hazelnupp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Linking CXX executable exec"
|
||||||
|
$(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/exec.dir/link.txt --verbose=$(VERBOSE)
|
||||||
|
|
||||||
|
# Rule to build all files generated by this target.
|
||||||
|
CMakeFiles/exec.dir/build: exec
|
||||||
|
.PHONY : CMakeFiles/exec.dir/build
|
||||||
|
|
||||||
|
CMakeFiles/exec.dir/clean:
|
||||||
|
$(CMAKE_COMMAND) -P CMakeFiles/exec.dir/cmake_clean.cmake
|
||||||
|
.PHONY : CMakeFiles/exec.dir/clean
|
||||||
|
|
||||||
|
CMakeFiles/exec.dir/depend:
|
||||||
|
cd /home/menethil/projects/private_work/Hazelnupp/Hazelnupp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/menethil/projects/private_work/Hazelnupp/Hazelnupp /home/menethil/projects/private_work/Hazelnupp/Hazelnupp /home/menethil/projects/private_work/Hazelnupp/Hazelnupp/build /home/menethil/projects/private_work/Hazelnupp/Hazelnupp/build /home/menethil/projects/private_work/Hazelnupp/Hazelnupp/build/CMakeFiles/exec.dir/DependInfo.cmake --color=$(COLOR)
|
||||||
|
.PHONY : CMakeFiles/exec.dir/depend
|
||||||
|
|
11
Hazelnupp/build/CMakeFiles/exec.dir/cmake_clean.cmake
Normal file
11
Hazelnupp/build/CMakeFiles/exec.dir/cmake_clean.cmake
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
file(REMOVE_RECURSE
|
||||||
|
"CMakeFiles/exec.dir/exec/main.cpp.o"
|
||||||
|
"CMakeFiles/exec.dir/exec/main.cpp.o.d"
|
||||||
|
"exec"
|
||||||
|
"exec.pdb"
|
||||||
|
)
|
||||||
|
|
||||||
|
# Per-language clean rules from dependency scanning.
|
||||||
|
foreach(lang CXX)
|
||||||
|
include(CMakeFiles/exec.dir/cmake_clean_${lang}.cmake OPTIONAL)
|
||||||
|
endforeach()
|
209
Hazelnupp/build/CMakeFiles/exec.dir/compiler_depend.internal
Normal file
209
Hazelnupp/build/CMakeFiles/exec.dir/compiler_depend.internal
Normal file
@ -0,0 +1,209 @@
|
|||||||
|
# CMAKE generated file: DO NOT EDIT!
|
||||||
|
# Generated by "Unix Makefiles" Generator, CMake Version 3.23
|
||||||
|
|
||||||
|
CMakeFiles/exec.dir/exec/main.cpp.o
|
||||||
|
/home/menethil/projects/private_work/Hazelnupp/Hazelnupp/exec/main.cpp
|
||||||
|
/usr/include/stdc-predef.h
|
||||||
|
/usr/include/c++/11.2.0/iostream
|
||||||
|
/usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/c++config.h
|
||||||
|
/usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/os_defines.h
|
||||||
|
/usr/include/features.h
|
||||||
|
/usr/include/features-time64.h
|
||||||
|
/usr/include/bits/wordsize.h
|
||||||
|
/usr/include/bits/timesize.h
|
||||||
|
/usr/include/sys/cdefs.h
|
||||||
|
/usr/include/bits/long-double.h
|
||||||
|
/usr/include/gnu/stubs.h
|
||||||
|
/usr/include/gnu/stubs-64.h
|
||||||
|
/usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/cpu_defines.h
|
||||||
|
/usr/include/c++/11.2.0/pstl/pstl_config.h
|
||||||
|
/usr/include/c++/11.2.0/ostream
|
||||||
|
/usr/include/c++/11.2.0/ios
|
||||||
|
/usr/include/c++/11.2.0/iosfwd
|
||||||
|
/usr/include/c++/11.2.0/bits/stringfwd.h
|
||||||
|
/usr/include/c++/11.2.0/bits/memoryfwd.h
|
||||||
|
/usr/include/c++/11.2.0/bits/postypes.h
|
||||||
|
/usr/include/c++/11.2.0/cwchar
|
||||||
|
/usr/include/wchar.h
|
||||||
|
/usr/include/bits/libc-header-start.h
|
||||||
|
/usr/include/bits/floatn.h
|
||||||
|
/usr/include/bits/floatn-common.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/include/stddef.h
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/include/stdarg.h
|
||||||
|
/usr/include/bits/wchar.h
|
||||||
|
/usr/include/bits/types/wint_t.h
|
||||||
|
/usr/include/bits/types/mbstate_t.h
|
||||||
|
/usr/include/bits/types/__mbstate_t.h
|
||||||
|
/usr/include/bits/types/__FILE.h
|
||||||
|
/usr/include/bits/types/FILE.h
|
||||||
|
/usr/include/bits/types/locale_t.h
|
||||||
|
/usr/include/bits/types/__locale_t.h
|
||||||
|
/usr/include/c++/11.2.0/exception
|
||||||
|
/usr/include/c++/11.2.0/bits/exception.h
|
||||||
|
/usr/include/c++/11.2.0/bits/exception_ptr.h
|
||||||
|
/usr/include/c++/11.2.0/bits/exception_defines.h
|
||||||
|
/usr/include/c++/11.2.0/bits/cxxabi_init_exception.h
|
||||||
|
/usr/include/c++/11.2.0/typeinfo
|
||||||
|
/usr/include/c++/11.2.0/bits/hash_bytes.h
|
||||||
|
/usr/include/c++/11.2.0/new
|
||||||
|
/usr/include/c++/11.2.0/bits/nested_exception.h
|
||||||
|
/usr/include/c++/11.2.0/bits/move.h
|
||||||
|
/usr/include/c++/11.2.0/type_traits
|
||||||
|
/usr/include/c++/11.2.0/bits/char_traits.h
|
||||||
|
/usr/include/c++/11.2.0/bits/stl_algobase.h
|
||||||
|
/usr/include/c++/11.2.0/bits/functexcept.h
|
||||||
|
/usr/include/c++/11.2.0/bits/cpp_type_traits.h
|
||||||
|
/usr/include/c++/11.2.0/ext/type_traits.h
|
||||||
|
/usr/include/c++/11.2.0/ext/numeric_traits.h
|
||||||
|
/usr/include/c++/11.2.0/bits/stl_pair.h
|
||||||
|
/usr/include/c++/11.2.0/bits/stl_iterator_base_types.h
|
||||||
|
/usr/include/c++/11.2.0/bits/stl_iterator_base_funcs.h
|
||||||
|
/usr/include/c++/11.2.0/bits/concept_check.h
|
||||||
|
/usr/include/c++/11.2.0/debug/assertions.h
|
||||||
|
/usr/include/c++/11.2.0/bits/stl_iterator.h
|
||||||
|
/usr/include/c++/11.2.0/bits/ptr_traits.h
|
||||||
|
/usr/include/c++/11.2.0/debug/debug.h
|
||||||
|
/usr/include/c++/11.2.0/bits/predefined_ops.h
|
||||||
|
/usr/include/c++/11.2.0/cstdint
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/include/stdint.h
|
||||||
|
/usr/include/stdint.h
|
||||||
|
/usr/include/bits/types.h
|
||||||
|
/usr/include/bits/typesizes.h
|
||||||
|
/usr/include/bits/time64.h
|
||||||
|
/usr/include/bits/stdint-intn.h
|
||||||
|
/usr/include/bits/stdint-uintn.h
|
||||||
|
/usr/include/c++/11.2.0/bits/localefwd.h
|
||||||
|
/usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/c++locale.h
|
||||||
|
/usr/include/c++/11.2.0/clocale
|
||||||
|
/usr/include/locale.h
|
||||||
|
/usr/include/bits/locale.h
|
||||||
|
/usr/include/c++/11.2.0/cctype
|
||||||
|
/usr/include/ctype.h
|
||||||
|
/usr/include/bits/endian.h
|
||||||
|
/usr/include/bits/endianness.h
|
||||||
|
/usr/include/c++/11.2.0/bits/ios_base.h
|
||||||
|
/usr/include/c++/11.2.0/ext/atomicity.h
|
||||||
|
/usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/gthr.h
|
||||||
|
/usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/gthr-default.h
|
||||||
|
/usr/include/pthread.h
|
||||||
|
/usr/include/sched.h
|
||||||
|
/usr/include/bits/types/time_t.h
|
||||||
|
/usr/include/bits/types/struct_timespec.h
|
||||||
|
/usr/include/bits/sched.h
|
||||||
|
/usr/include/bits/types/struct_sched_param.h
|
||||||
|
/usr/include/bits/cpu-set.h
|
||||||
|
/usr/include/time.h
|
||||||
|
/usr/include/bits/time.h
|
||||||
|
/usr/include/bits/timex.h
|
||||||
|
/usr/include/bits/types/struct_timeval.h
|
||||||
|
/usr/include/bits/types/clock_t.h
|
||||||
|
/usr/include/bits/types/struct_tm.h
|
||||||
|
/usr/include/bits/types/clockid_t.h
|
||||||
|
/usr/include/bits/types/timer_t.h
|
||||||
|
/usr/include/bits/types/struct_itimerspec.h
|
||||||
|
/usr/include/bits/pthreadtypes.h
|
||||||
|
/usr/include/bits/thread-shared-types.h
|
||||||
|
/usr/include/bits/pthreadtypes-arch.h
|
||||||
|
/usr/include/bits/atomic_wide_counter.h
|
||||||
|
/usr/include/bits/struct_mutex.h
|
||||||
|
/usr/include/bits/struct_rwlock.h
|
||||||
|
/usr/include/bits/setjmp.h
|
||||||
|
/usr/include/bits/types/__sigset_t.h
|
||||||
|
/usr/include/bits/types/struct___jmp_buf_tag.h
|
||||||
|
/usr/include/bits/pthread_stack_min-dynamic.h
|
||||||
|
/usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/atomic_word.h
|
||||||
|
/usr/include/sys/single_threaded.h
|
||||||
|
/usr/include/c++/11.2.0/bits/locale_classes.h
|
||||||
|
/usr/include/c++/11.2.0/string
|
||||||
|
/usr/include/c++/11.2.0/bits/allocator.h
|
||||||
|
/usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/c++allocator.h
|
||||||
|
/usr/include/c++/11.2.0/ext/new_allocator.h
|
||||||
|
/usr/include/c++/11.2.0/bits/ostream_insert.h
|
||||||
|
/usr/include/c++/11.2.0/bits/cxxabi_forced.h
|
||||||
|
/usr/include/c++/11.2.0/bits/stl_function.h
|
||||||
|
/usr/include/c++/11.2.0/backward/binders.h
|
||||||
|
/usr/include/c++/11.2.0/bits/range_access.h
|
||||||
|
/usr/include/c++/11.2.0/initializer_list
|
||||||
|
/usr/include/c++/11.2.0/bits/basic_string.h
|
||||||
|
/usr/include/c++/11.2.0/ext/alloc_traits.h
|
||||||
|
/usr/include/c++/11.2.0/bits/alloc_traits.h
|
||||||
|
/usr/include/c++/11.2.0/bits/stl_construct.h
|
||||||
|
/usr/include/c++/11.2.0/string_view
|
||||||
|
/usr/include/c++/11.2.0/bits/functional_hash.h
|
||||||
|
/usr/include/c++/11.2.0/bits/string_view.tcc
|
||||||
|
/usr/include/c++/11.2.0/ext/string_conversions.h
|
||||||
|
/usr/include/c++/11.2.0/cstdlib
|
||||||
|
/usr/include/stdlib.h
|
||||||
|
/usr/include/bits/waitflags.h
|
||||||
|
/usr/include/bits/waitstatus.h
|
||||||
|
/usr/include/sys/types.h
|
||||||
|
/usr/include/endian.h
|
||||||
|
/usr/include/bits/byteswap.h
|
||||||
|
/usr/include/bits/uintn-identity.h
|
||||||
|
/usr/include/sys/select.h
|
||||||
|
/usr/include/bits/select.h
|
||||||
|
/usr/include/bits/types/sigset_t.h
|
||||||
|
/usr/include/alloca.h
|
||||||
|
/usr/include/bits/stdlib-float.h
|
||||||
|
/usr/include/c++/11.2.0/bits/std_abs.h
|
||||||
|
/usr/include/c++/11.2.0/cstdio
|
||||||
|
/usr/include/stdio.h
|
||||||
|
/usr/include/bits/types/__fpos_t.h
|
||||||
|
/usr/include/bits/types/__fpos64_t.h
|
||||||
|
/usr/include/bits/types/struct_FILE.h
|
||||||
|
/usr/include/bits/types/cookie_io_functions_t.h
|
||||||
|
/usr/include/bits/stdio_lim.h
|
||||||
|
/usr/include/c++/11.2.0/cerrno
|
||||||
|
/usr/include/errno.h
|
||||||
|
/usr/include/bits/errno.h
|
||||||
|
/usr/include/linux/errno.h
|
||||||
|
/usr/include/asm/errno.h
|
||||||
|
/usr/include/asm-generic/errno.h
|
||||||
|
/usr/include/asm-generic/errno-base.h
|
||||||
|
/usr/include/bits/types/error_t.h
|
||||||
|
/usr/include/c++/11.2.0/bits/charconv.h
|
||||||
|
/usr/include/c++/11.2.0/bits/basic_string.tcc
|
||||||
|
/usr/include/c++/11.2.0/bits/locale_classes.tcc
|
||||||
|
/usr/include/c++/11.2.0/system_error
|
||||||
|
/usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/error_constants.h
|
||||||
|
/usr/include/c++/11.2.0/stdexcept
|
||||||
|
/usr/include/c++/11.2.0/streambuf
|
||||||
|
/usr/include/c++/11.2.0/bits/streambuf.tcc
|
||||||
|
/usr/include/c++/11.2.0/bits/basic_ios.h
|
||||||
|
/usr/include/c++/11.2.0/bits/locale_facets.h
|
||||||
|
/usr/include/c++/11.2.0/cwctype
|
||||||
|
/usr/include/wctype.h
|
||||||
|
/usr/include/bits/wctype-wchar.h
|
||||||
|
/usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/ctype_base.h
|
||||||
|
/usr/include/c++/11.2.0/bits/streambuf_iterator.h
|
||||||
|
/usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/ctype_inline.h
|
||||||
|
/usr/include/c++/11.2.0/bits/locale_facets.tcc
|
||||||
|
/usr/include/c++/11.2.0/bits/basic_ios.tcc
|
||||||
|
/usr/include/c++/11.2.0/bits/ostream.tcc
|
||||||
|
/usr/include/c++/11.2.0/istream
|
||||||
|
/usr/include/c++/11.2.0/bits/istream.tcc
|
||||||
|
/home/menethil/projects/private_work/Hazelnupp/Hazelnupp/include/Hazelnupp/CmdArgsInterface.h
|
||||||
|
/home/menethil/projects/private_work/Hazelnupp/Hazelnupp/include/Hazelnupp/Parameter.h
|
||||||
|
/home/menethil/projects/private_work/Hazelnupp/Hazelnupp/include/Hazelnupp/Value.h
|
||||||
|
/home/menethil/projects/private_work/Hazelnupp/Hazelnupp/include/Hazelnupp/DataType.h
|
||||||
|
/usr/include/c++/11.2.0/vector
|
||||||
|
/usr/include/c++/11.2.0/bits/stl_uninitialized.h
|
||||||
|
/usr/include/c++/11.2.0/bits/stl_vector.h
|
||||||
|
/usr/include/c++/11.2.0/bits/stl_bvector.h
|
||||||
|
/usr/include/c++/11.2.0/bits/vector.tcc
|
||||||
|
/home/menethil/projects/private_work/Hazelnupp/Hazelnupp/include/Hazelnupp/ParamConstraint.h
|
||||||
|
/usr/include/c++/11.2.0/unordered_map
|
||||||
|
/usr/include/c++/11.2.0/ext/aligned_buffer.h
|
||||||
|
/usr/include/c++/11.2.0/bits/hashtable.h
|
||||||
|
/usr/include/c++/11.2.0/bits/hashtable_policy.h
|
||||||
|
/usr/include/c++/11.2.0/tuple
|
||||||
|
/usr/include/c++/11.2.0/utility
|
||||||
|
/usr/include/c++/11.2.0/bits/stl_relops.h
|
||||||
|
/usr/include/c++/11.2.0/array
|
||||||
|
/usr/include/c++/11.2.0/bits/uses_allocator.h
|
||||||
|
/usr/include/c++/11.2.0/bits/invoke.h
|
||||||
|
/usr/include/c++/11.2.0/bits/node_handle.h
|
||||||
|
/usr/include/c++/11.2.0/bits/unordered_map.h
|
||||||
|
/usr/include/c++/11.2.0/bits/erase_if.h
|
||||||
|
/home/menethil/projects/private_work/Hazelnupp/Hazelnupp/include/Hazelnupp/Version.h
|
||||||
|
|
616
Hazelnupp/build/CMakeFiles/exec.dir/compiler_depend.make
Normal file
616
Hazelnupp/build/CMakeFiles/exec.dir/compiler_depend.make
Normal file
@ -0,0 +1,616 @@
|
|||||||
|
# CMAKE generated file: DO NOT EDIT!
|
||||||
|
# Generated by "Unix Makefiles" Generator, CMake Version 3.23
|
||||||
|
|
||||||
|
CMakeFiles/exec.dir/exec/main.cpp.o: ../exec/main.cpp \
|
||||||
|
/usr/include/stdc-predef.h \
|
||||||
|
/usr/include/c++/11.2.0/iostream \
|
||||||
|
/usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/c++config.h \
|
||||||
|
/usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/os_defines.h \
|
||||||
|
/usr/include/features.h \
|
||||||
|
/usr/include/features-time64.h \
|
||||||
|
/usr/include/bits/wordsize.h \
|
||||||
|
/usr/include/bits/timesize.h \
|
||||||
|
/usr/include/sys/cdefs.h \
|
||||||
|
/usr/include/bits/long-double.h \
|
||||||
|
/usr/include/gnu/stubs.h \
|
||||||
|
/usr/include/gnu/stubs-64.h \
|
||||||
|
/usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/cpu_defines.h \
|
||||||
|
/usr/include/c++/11.2.0/pstl/pstl_config.h \
|
||||||
|
/usr/include/c++/11.2.0/ostream \
|
||||||
|
/usr/include/c++/11.2.0/ios \
|
||||||
|
/usr/include/c++/11.2.0/iosfwd \
|
||||||
|
/usr/include/c++/11.2.0/bits/stringfwd.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/memoryfwd.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/postypes.h \
|
||||||
|
/usr/include/c++/11.2.0/cwchar \
|
||||||
|
/usr/include/wchar.h \
|
||||||
|
/usr/include/bits/libc-header-start.h \
|
||||||
|
/usr/include/bits/floatn.h \
|
||||||
|
/usr/include/bits/floatn-common.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/include/stddef.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/include/stdarg.h \
|
||||||
|
/usr/include/bits/wchar.h \
|
||||||
|
/usr/include/bits/types/wint_t.h \
|
||||||
|
/usr/include/bits/types/mbstate_t.h \
|
||||||
|
/usr/include/bits/types/__mbstate_t.h \
|
||||||
|
/usr/include/bits/types/__FILE.h \
|
||||||
|
/usr/include/bits/types/FILE.h \
|
||||||
|
/usr/include/bits/types/locale_t.h \
|
||||||
|
/usr/include/bits/types/__locale_t.h \
|
||||||
|
/usr/include/c++/11.2.0/exception \
|
||||||
|
/usr/include/c++/11.2.0/bits/exception.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/exception_ptr.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/exception_defines.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/cxxabi_init_exception.h \
|
||||||
|
/usr/include/c++/11.2.0/typeinfo \
|
||||||
|
/usr/include/c++/11.2.0/bits/hash_bytes.h \
|
||||||
|
/usr/include/c++/11.2.0/new \
|
||||||
|
/usr/include/c++/11.2.0/bits/nested_exception.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/move.h \
|
||||||
|
/usr/include/c++/11.2.0/type_traits \
|
||||||
|
/usr/include/c++/11.2.0/bits/char_traits.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/stl_algobase.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/functexcept.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/cpp_type_traits.h \
|
||||||
|
/usr/include/c++/11.2.0/ext/type_traits.h \
|
||||||
|
/usr/include/c++/11.2.0/ext/numeric_traits.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/stl_pair.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/stl_iterator_base_types.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/stl_iterator_base_funcs.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/concept_check.h \
|
||||||
|
/usr/include/c++/11.2.0/debug/assertions.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/stl_iterator.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/ptr_traits.h \
|
||||||
|
/usr/include/c++/11.2.0/debug/debug.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/predefined_ops.h \
|
||||||
|
/usr/include/c++/11.2.0/cstdint \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/include/stdint.h \
|
||||||
|
/usr/include/stdint.h \
|
||||||
|
/usr/include/bits/types.h \
|
||||||
|
/usr/include/bits/typesizes.h \
|
||||||
|
/usr/include/bits/time64.h \
|
||||||
|
/usr/include/bits/stdint-intn.h \
|
||||||
|
/usr/include/bits/stdint-uintn.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/localefwd.h \
|
||||||
|
/usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/c++locale.h \
|
||||||
|
/usr/include/c++/11.2.0/clocale \
|
||||||
|
/usr/include/locale.h \
|
||||||
|
/usr/include/bits/locale.h \
|
||||||
|
/usr/include/c++/11.2.0/cctype \
|
||||||
|
/usr/include/ctype.h \
|
||||||
|
/usr/include/bits/endian.h \
|
||||||
|
/usr/include/bits/endianness.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/ios_base.h \
|
||||||
|
/usr/include/c++/11.2.0/ext/atomicity.h \
|
||||||
|
/usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/gthr.h \
|
||||||
|
/usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/gthr-default.h \
|
||||||
|
/usr/include/pthread.h \
|
||||||
|
/usr/include/sched.h \
|
||||||
|
/usr/include/bits/types/time_t.h \
|
||||||
|
/usr/include/bits/types/struct_timespec.h \
|
||||||
|
/usr/include/bits/sched.h \
|
||||||
|
/usr/include/bits/types/struct_sched_param.h \
|
||||||
|
/usr/include/bits/cpu-set.h \
|
||||||
|
/usr/include/time.h \
|
||||||
|
/usr/include/bits/time.h \
|
||||||
|
/usr/include/bits/timex.h \
|
||||||
|
/usr/include/bits/types/struct_timeval.h \
|
||||||
|
/usr/include/bits/types/clock_t.h \
|
||||||
|
/usr/include/bits/types/struct_tm.h \
|
||||||
|
/usr/include/bits/types/clockid_t.h \
|
||||||
|
/usr/include/bits/types/timer_t.h \
|
||||||
|
/usr/include/bits/types/struct_itimerspec.h \
|
||||||
|
/usr/include/bits/pthreadtypes.h \
|
||||||
|
/usr/include/bits/thread-shared-types.h \
|
||||||
|
/usr/include/bits/pthreadtypes-arch.h \
|
||||||
|
/usr/include/bits/atomic_wide_counter.h \
|
||||||
|
/usr/include/bits/struct_mutex.h \
|
||||||
|
/usr/include/bits/struct_rwlock.h \
|
||||||
|
/usr/include/bits/setjmp.h \
|
||||||
|
/usr/include/bits/types/__sigset_t.h \
|
||||||
|
/usr/include/bits/types/struct___jmp_buf_tag.h \
|
||||||
|
/usr/include/bits/pthread_stack_min-dynamic.h \
|
||||||
|
/usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/atomic_word.h \
|
||||||
|
/usr/include/sys/single_threaded.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/locale_classes.h \
|
||||||
|
/usr/include/c++/11.2.0/string \
|
||||||
|
/usr/include/c++/11.2.0/bits/allocator.h \
|
||||||
|
/usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/c++allocator.h \
|
||||||
|
/usr/include/c++/11.2.0/ext/new_allocator.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/ostream_insert.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/cxxabi_forced.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/stl_function.h \
|
||||||
|
/usr/include/c++/11.2.0/backward/binders.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/range_access.h \
|
||||||
|
/usr/include/c++/11.2.0/initializer_list \
|
||||||
|
/usr/include/c++/11.2.0/bits/basic_string.h \
|
||||||
|
/usr/include/c++/11.2.0/ext/alloc_traits.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/alloc_traits.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/stl_construct.h \
|
||||||
|
/usr/include/c++/11.2.0/string_view \
|
||||||
|
/usr/include/c++/11.2.0/bits/functional_hash.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/string_view.tcc \
|
||||||
|
/usr/include/c++/11.2.0/ext/string_conversions.h \
|
||||||
|
/usr/include/c++/11.2.0/cstdlib \
|
||||||
|
/usr/include/stdlib.h \
|
||||||
|
/usr/include/bits/waitflags.h \
|
||||||
|
/usr/include/bits/waitstatus.h \
|
||||||
|
/usr/include/sys/types.h \
|
||||||
|
/usr/include/endian.h \
|
||||||
|
/usr/include/bits/byteswap.h \
|
||||||
|
/usr/include/bits/uintn-identity.h \
|
||||||
|
/usr/include/sys/select.h \
|
||||||
|
/usr/include/bits/select.h \
|
||||||
|
/usr/include/bits/types/sigset_t.h \
|
||||||
|
/usr/include/alloca.h \
|
||||||
|
/usr/include/bits/stdlib-float.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/std_abs.h \
|
||||||
|
/usr/include/c++/11.2.0/cstdio \
|
||||||
|
/usr/include/stdio.h \
|
||||||
|
/usr/include/bits/types/__fpos_t.h \
|
||||||
|
/usr/include/bits/types/__fpos64_t.h \
|
||||||
|
/usr/include/bits/types/struct_FILE.h \
|
||||||
|
/usr/include/bits/types/cookie_io_functions_t.h \
|
||||||
|
/usr/include/bits/stdio_lim.h \
|
||||||
|
/usr/include/c++/11.2.0/cerrno \
|
||||||
|
/usr/include/errno.h \
|
||||||
|
/usr/include/bits/errno.h \
|
||||||
|
/usr/include/linux/errno.h \
|
||||||
|
/usr/include/asm/errno.h \
|
||||||
|
/usr/include/asm-generic/errno.h \
|
||||||
|
/usr/include/asm-generic/errno-base.h \
|
||||||
|
/usr/include/bits/types/error_t.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/charconv.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/basic_string.tcc \
|
||||||
|
/usr/include/c++/11.2.0/bits/locale_classes.tcc \
|
||||||
|
/usr/include/c++/11.2.0/system_error \
|
||||||
|
/usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/error_constants.h \
|
||||||
|
/usr/include/c++/11.2.0/stdexcept \
|
||||||
|
/usr/include/c++/11.2.0/streambuf \
|
||||||
|
/usr/include/c++/11.2.0/bits/streambuf.tcc \
|
||||||
|
/usr/include/c++/11.2.0/bits/basic_ios.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/locale_facets.h \
|
||||||
|
/usr/include/c++/11.2.0/cwctype \
|
||||||
|
/usr/include/wctype.h \
|
||||||
|
/usr/include/bits/wctype-wchar.h \
|
||||||
|
/usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/ctype_base.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/streambuf_iterator.h \
|
||||||
|
/usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/ctype_inline.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/locale_facets.tcc \
|
||||||
|
/usr/include/c++/11.2.0/bits/basic_ios.tcc \
|
||||||
|
/usr/include/c++/11.2.0/bits/ostream.tcc \
|
||||||
|
/usr/include/c++/11.2.0/istream \
|
||||||
|
/usr/include/c++/11.2.0/bits/istream.tcc \
|
||||||
|
../include/Hazelnupp/CmdArgsInterface.h \
|
||||||
|
../include/Hazelnupp/Parameter.h \
|
||||||
|
../include/Hazelnupp/Value.h \
|
||||||
|
../include/Hazelnupp/DataType.h \
|
||||||
|
/usr/include/c++/11.2.0/vector \
|
||||||
|
/usr/include/c++/11.2.0/bits/stl_uninitialized.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/stl_vector.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/stl_bvector.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/vector.tcc \
|
||||||
|
../include/Hazelnupp/ParamConstraint.h \
|
||||||
|
/usr/include/c++/11.2.0/unordered_map \
|
||||||
|
/usr/include/c++/11.2.0/ext/aligned_buffer.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/hashtable.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/hashtable_policy.h \
|
||||||
|
/usr/include/c++/11.2.0/tuple \
|
||||||
|
/usr/include/c++/11.2.0/utility \
|
||||||
|
/usr/include/c++/11.2.0/bits/stl_relops.h \
|
||||||
|
/usr/include/c++/11.2.0/array \
|
||||||
|
/usr/include/c++/11.2.0/bits/uses_allocator.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/invoke.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/node_handle.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/unordered_map.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/erase_if.h \
|
||||||
|
../include/Hazelnupp/Version.h
|
||||||
|
|
||||||
|
|
||||||
|
../include/Hazelnupp/Version.h:
|
||||||
|
|
||||||
|
/usr/include/c++/11.2.0/bits/unordered_map.h:
|
||||||
|
|
||||||
|
/usr/include/c++/11.2.0/bits/invoke.h:
|
||||||
|
|
||||||
|
/usr/include/c++/11.2.0/bits/uses_allocator.h:
|
||||||
|
|
||||||
|
/usr/include/c++/11.2.0/array:
|
||||||
|
|
||||||
|
/usr/include/c++/11.2.0/bits/stl_relops.h:
|
||||||
|
|
||||||
|
/usr/include/c++/11.2.0/tuple:
|
||||||
|
|
||||||
|
/usr/include/c++/11.2.0/bits/hashtable_policy.h:
|
||||||
|
|
||||||
|
/usr/include/c++/11.2.0/ext/aligned_buffer.h:
|
||||||
|
|
||||||
|
../include/Hazelnupp/ParamConstraint.h:
|
||||||
|
|
||||||
|
/usr/include/c++/11.2.0/bits/vector.tcc:
|
||||||
|
|
||||||
|
/usr/include/c++/11.2.0/bits/stl_bvector.h:
|
||||||
|
|
||||||
|
/usr/include/c++/11.2.0/bits/stl_vector.h:
|
||||||
|
|
||||||
|
/usr/include/c++/11.2.0/bits/stl_uninitialized.h:
|
||||||
|
|
||||||
|
/usr/include/c++/11.2.0/vector:
|
||||||
|
|
||||||
|
../include/Hazelnupp/DataType.h:
|
||||||
|
|
||||||
|
../include/Hazelnupp/Parameter.h:
|
||||||
|
|
||||||
|
/usr/include/c++/11.2.0/bits/istream.tcc:
|
||||||
|
|
||||||
|
/usr/include/c++/11.2.0/istream:
|
||||||
|
|
||||||
|
/usr/include/c++/11.2.0/bits/locale_facets.tcc:
|
||||||
|
|
||||||
|
/usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/ctype_inline.h:
|
||||||
|
|
||||||
|
/usr/include/c++/11.2.0/bits/streambuf_iterator.h:
|
||||||
|
|
||||||
|
/usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/ctype_base.h:
|
||||||
|
|
||||||
|
/usr/include/c++/11.2.0/cwctype:
|
||||||
|
|
||||||
|
/usr/include/c++/11.2.0/bits/basic_ios.h:
|
||||||
|
|
||||||
|
/usr/include/c++/11.2.0/streambuf:
|
||||||
|
|
||||||
|
/usr/include/c++/11.2.0/bits/locale_classes.tcc:
|
||||||
|
|
||||||
|
/usr/include/c++/11.2.0/bits/charconv.h:
|
||||||
|
|
||||||
|
/usr/include/bits/types/error_t.h:
|
||||||
|
|
||||||
|
/usr/include/asm-generic/errno-base.h:
|
||||||
|
|
||||||
|
/usr/include/asm-generic/errno.h:
|
||||||
|
|
||||||
|
/usr/include/linux/errno.h:
|
||||||
|
|
||||||
|
/usr/include/errno.h:
|
||||||
|
|
||||||
|
/usr/include/c++/11.2.0/cerrno:
|
||||||
|
|
||||||
|
/usr/include/bits/types/struct_FILE.h:
|
||||||
|
|
||||||
|
/usr/include/bits/types/__fpos64_t.h:
|
||||||
|
|
||||||
|
/usr/include/c++/11.2.0/bits/std_abs.h:
|
||||||
|
|
||||||
|
/usr/include/alloca.h:
|
||||||
|
|
||||||
|
/usr/include/bits/types/sigset_t.h:
|
||||||
|
|
||||||
|
/usr/include/bits/select.h:
|
||||||
|
|
||||||
|
/usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/error_constants.h:
|
||||||
|
|
||||||
|
/usr/include/sys/select.h:
|
||||||
|
|
||||||
|
../include/Hazelnupp/Value.h:
|
||||||
|
|
||||||
|
/usr/include/bits/uintn-identity.h:
|
||||||
|
|
||||||
|
/usr/include/endian.h:
|
||||||
|
|
||||||
|
/usr/include/stdlib.h:
|
||||||
|
|
||||||
|
/usr/include/asm/errno.h:
|
||||||
|
|
||||||
|
/usr/include/c++/11.2.0/bits/string_view.tcc:
|
||||||
|
|
||||||
|
/usr/include/c++/11.2.0/bits/functional_hash.h:
|
||||||
|
|
||||||
|
/usr/include/c++/11.2.0/bits/stl_iterator.h:
|
||||||
|
|
||||||
|
/usr/include/c++/11.2.0/bits/stl_pair.h:
|
||||||
|
|
||||||
|
/usr/include/c++/11.2.0/bits/cpp_type_traits.h:
|
||||||
|
|
||||||
|
/usr/include/c++/11.2.0/bits/char_traits.h:
|
||||||
|
|
||||||
|
/usr/include/c++/11.2.0/bits/hashtable.h:
|
||||||
|
|
||||||
|
../include/Hazelnupp/CmdArgsInterface.h:
|
||||||
|
|
||||||
|
/usr/include/bits/waitstatus.h:
|
||||||
|
|
||||||
|
/usr/include/bits/timesize.h:
|
||||||
|
|
||||||
|
/usr/include/bits/endian.h:
|
||||||
|
|
||||||
|
/usr/include/c++/11.2.0/ext/numeric_traits.h:
|
||||||
|
|
||||||
|
/usr/include/wchar.h:
|
||||||
|
|
||||||
|
/usr/include/c++/11.2.0/ext/alloc_traits.h:
|
||||||
|
|
||||||
|
/usr/include/c++/11.2.0/bits/streambuf.tcc:
|
||||||
|
|
||||||
|
/usr/include/c++/11.2.0/bits/exception.h:
|
||||||
|
|
||||||
|
/usr/include/wctype.h:
|
||||||
|
|
||||||
|
/usr/include/bits/errno.h:
|
||||||
|
|
||||||
|
/usr/include/bits/timex.h:
|
||||||
|
|
||||||
|
/usr/include/c++/11.2.0/bits/concept_check.h:
|
||||||
|
|
||||||
|
/usr/include/bits/types/locale_t.h:
|
||||||
|
|
||||||
|
/usr/include/c++/11.2.0/bits/locale_facets.h:
|
||||||
|
|
||||||
|
/usr/include/bits/types/__locale_t.h:
|
||||||
|
|
||||||
|
/usr/include/c++/11.2.0/bits/hash_bytes.h:
|
||||||
|
|
||||||
|
/usr/include/sched.h:
|
||||||
|
|
||||||
|
/usr/include/c++/11.2.0/initializer_list:
|
||||||
|
|
||||||
|
/usr/include/bits/types/wint_t.h:
|
||||||
|
|
||||||
|
/usr/include/c++/11.2.0/iosfwd:
|
||||||
|
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/include/stddef.h:
|
||||||
|
|
||||||
|
/usr/include/c++/11.2.0/bits/exception_ptr.h:
|
||||||
|
|
||||||
|
/usr/include/locale.h:
|
||||||
|
|
||||||
|
/usr/include/bits/long-double.h:
|
||||||
|
|
||||||
|
/usr/include/c++/11.2.0/iostream:
|
||||||
|
|
||||||
|
/usr/include/features-time64.h:
|
||||||
|
|
||||||
|
/usr/include/c++/11.2.0/bits/nested_exception.h:
|
||||||
|
|
||||||
|
/usr/include/bits/wordsize.h:
|
||||||
|
|
||||||
|
/usr/include/c++/11.2.0/bits/stl_algobase.h:
|
||||||
|
|
||||||
|
/usr/include/c++/11.2.0/new:
|
||||||
|
|
||||||
|
/usr/include/gnu/stubs-64.h:
|
||||||
|
|
||||||
|
/usr/include/c++/11.2.0/bits/stringfwd.h:
|
||||||
|
|
||||||
|
/usr/include/c++/11.2.0/bits/stl_construct.h:
|
||||||
|
|
||||||
|
/usr/include/c++/11.2.0/ext/type_traits.h:
|
||||||
|
|
||||||
|
/usr/include/c++/11.2.0/bits/functexcept.h:
|
||||||
|
|
||||||
|
/usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/os_defines.h:
|
||||||
|
|
||||||
|
/usr/include/bits/stdlib-float.h:
|
||||||
|
|
||||||
|
/usr/include/bits/time64.h:
|
||||||
|
|
||||||
|
/usr/include/c++/11.2.0/exception:
|
||||||
|
|
||||||
|
/usr/include/bits/pthread_stack_min-dynamic.h:
|
||||||
|
|
||||||
|
/usr/include/c++/11.2.0/bits/move.h:
|
||||||
|
|
||||||
|
/usr/include/c++/11.2.0/cctype:
|
||||||
|
|
||||||
|
/usr/include/c++/11.2.0/bits/erase_if.h:
|
||||||
|
|
||||||
|
/usr/include/bits/libc-header-start.h:
|
||||||
|
|
||||||
|
/usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/c++config.h:
|
||||||
|
|
||||||
|
/usr/include/bits/stdint-uintn.h:
|
||||||
|
|
||||||
|
/usr/include/c++/11.2.0/bits/cxxabi_init_exception.h:
|
||||||
|
|
||||||
|
/usr/include/bits/sched.h:
|
||||||
|
|
||||||
|
/usr/include/sys/cdefs.h:
|
||||||
|
|
||||||
|
/usr/include/stdio.h:
|
||||||
|
|
||||||
|
/usr/include/c++/11.2.0/bits/range_access.h:
|
||||||
|
|
||||||
|
/usr/include/stdc-predef.h:
|
||||||
|
|
||||||
|
/usr/include/bits/floatn.h:
|
||||||
|
|
||||||
|
/usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/cpu_defines.h:
|
||||||
|
|
||||||
|
/usr/include/bits/byteswap.h:
|
||||||
|
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/include/stdarg.h:
|
||||||
|
|
||||||
|
/usr/include/c++/11.2.0/bits/ios_base.h:
|
||||||
|
|
||||||
|
/usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/gthr.h:
|
||||||
|
|
||||||
|
/usr/include/c++/11.2.0/debug/assertions.h:
|
||||||
|
|
||||||
|
/usr/include/bits/types/struct_sched_param.h:
|
||||||
|
|
||||||
|
/usr/include/bits/types/mbstate_t.h:
|
||||||
|
|
||||||
|
/usr/include/c++/11.2.0/pstl/pstl_config.h:
|
||||||
|
|
||||||
|
/usr/include/c++/11.2.0/bits/node_handle.h:
|
||||||
|
|
||||||
|
/usr/include/c++/11.2.0/bits/memoryfwd.h:
|
||||||
|
|
||||||
|
/usr/include/c++/11.2.0/unordered_map:
|
||||||
|
|
||||||
|
/usr/include/c++/11.2.0/bits/basic_ios.tcc:
|
||||||
|
|
||||||
|
/usr/include/bits/types/FILE.h:
|
||||||
|
|
||||||
|
/usr/include/bits/types/__FILE.h:
|
||||||
|
|
||||||
|
/usr/include/bits/wchar.h:
|
||||||
|
|
||||||
|
/usr/include/c++/11.2.0/cwchar:
|
||||||
|
|
||||||
|
/usr/include/bits/types/struct_tm.h:
|
||||||
|
|
||||||
|
/usr/include/c++/11.2.0/bits/stl_iterator_base_funcs.h:
|
||||||
|
|
||||||
|
/usr/include/c++/11.2.0/bits/postypes.h:
|
||||||
|
|
||||||
|
/usr/include/c++/11.2.0/bits/ptr_traits.h:
|
||||||
|
|
||||||
|
/usr/include/bits/types/time_t.h:
|
||||||
|
|
||||||
|
/usr/include/c++/11.2.0/utility:
|
||||||
|
|
||||||
|
/usr/include/c++/11.2.0/debug/debug.h:
|
||||||
|
|
||||||
|
/usr/include/c++/11.2.0/bits/predefined_ops.h:
|
||||||
|
|
||||||
|
/usr/include/c++/11.2.0/type_traits:
|
||||||
|
|
||||||
|
../exec/main.cpp:
|
||||||
|
|
||||||
|
/usr/include/bits/stdint-intn.h:
|
||||||
|
|
||||||
|
/usr/include/bits/types/cookie_io_functions_t.h:
|
||||||
|
|
||||||
|
/usr/include/c++/11.2.0/cstdint:
|
||||||
|
|
||||||
|
/usr/include/c++/11.2.0/ext/string_conversions.h:
|
||||||
|
|
||||||
|
/usr/include/c++/11.2.0/ios:
|
||||||
|
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/include/stdint.h:
|
||||||
|
|
||||||
|
/usr/include/stdint.h:
|
||||||
|
|
||||||
|
/usr/include/c++/11.2.0/bits/cxxabi_forced.h:
|
||||||
|
|
||||||
|
/usr/include/c++/11.2.0/bits/stl_function.h:
|
||||||
|
|
||||||
|
/usr/include/bits/types.h:
|
||||||
|
|
||||||
|
/usr/include/bits/typesizes.h:
|
||||||
|
|
||||||
|
/usr/include/bits/cpu-set.h:
|
||||||
|
|
||||||
|
/usr/include/c++/11.2.0/bits/ostream.tcc:
|
||||||
|
|
||||||
|
/usr/include/bits/struct_mutex.h:
|
||||||
|
|
||||||
|
/usr/include/c++/11.2.0/bits/localefwd.h:
|
||||||
|
|
||||||
|
/usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/atomic_word.h:
|
||||||
|
|
||||||
|
/usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/c++locale.h:
|
||||||
|
|
||||||
|
/usr/include/bits/locale.h:
|
||||||
|
|
||||||
|
/usr/include/bits/floatn-common.h:
|
||||||
|
|
||||||
|
/usr/include/c++/11.2.0/ostream:
|
||||||
|
|
||||||
|
/usr/include/c++/11.2.0/bits/alloc_traits.h:
|
||||||
|
|
||||||
|
/usr/include/bits/waitflags.h:
|
||||||
|
|
||||||
|
/usr/include/ctype.h:
|
||||||
|
|
||||||
|
/usr/include/features.h:
|
||||||
|
|
||||||
|
/usr/include/bits/endianness.h:
|
||||||
|
|
||||||
|
/usr/include/c++/11.2.0/ext/atomicity.h:
|
||||||
|
|
||||||
|
/usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/gthr-default.h:
|
||||||
|
|
||||||
|
/usr/include/c++/11.2.0/stdexcept:
|
||||||
|
|
||||||
|
/usr/include/pthread.h:
|
||||||
|
|
||||||
|
/usr/include/bits/types/struct_timespec.h:
|
||||||
|
|
||||||
|
/usr/include/time.h:
|
||||||
|
|
||||||
|
/usr/include/bits/stdio_lim.h:
|
||||||
|
|
||||||
|
/usr/include/bits/types/__mbstate_t.h:
|
||||||
|
|
||||||
|
/usr/include/bits/time.h:
|
||||||
|
|
||||||
|
/usr/include/bits/types/struct_timeval.h:
|
||||||
|
|
||||||
|
/usr/include/bits/types/__fpos_t.h:
|
||||||
|
|
||||||
|
/usr/include/c++/11.2.0/bits/stl_iterator_base_types.h:
|
||||||
|
|
||||||
|
/usr/include/bits/types/clock_t.h:
|
||||||
|
|
||||||
|
/usr/include/bits/types/clockid_t.h:
|
||||||
|
|
||||||
|
/usr/include/bits/atomic_wide_counter.h:
|
||||||
|
|
||||||
|
/usr/include/c++/11.2.0/system_error:
|
||||||
|
|
||||||
|
/usr/include/c++/11.2.0/string_view:
|
||||||
|
|
||||||
|
/usr/include/bits/types/timer_t.h:
|
||||||
|
|
||||||
|
/usr/include/bits/struct_rwlock.h:
|
||||||
|
|
||||||
|
/usr/include/bits/types/struct_itimerspec.h:
|
||||||
|
|
||||||
|
/usr/include/bits/pthreadtypes.h:
|
||||||
|
|
||||||
|
/usr/include/c++/11.2.0/clocale:
|
||||||
|
|
||||||
|
/usr/include/bits/thread-shared-types.h:
|
||||||
|
|
||||||
|
/usr/include/bits/setjmp.h:
|
||||||
|
|
||||||
|
/usr/include/c++/11.2.0/typeinfo:
|
||||||
|
|
||||||
|
/usr/include/bits/types/struct___jmp_buf_tag.h:
|
||||||
|
|
||||||
|
/usr/include/bits/types/__sigset_t.h:
|
||||||
|
|
||||||
|
/usr/include/sys/single_threaded.h:
|
||||||
|
|
||||||
|
/usr/include/c++/11.2.0/cstdlib:
|
||||||
|
|
||||||
|
/usr/include/c++/11.2.0/bits/exception_defines.h:
|
||||||
|
|
||||||
|
/usr/include/c++/11.2.0/string:
|
||||||
|
|
||||||
|
/usr/include/c++/11.2.0/bits/allocator.h:
|
||||||
|
|
||||||
|
/usr/include/c++/11.2.0/bits/basic_string.tcc:
|
||||||
|
|
||||||
|
/usr/include/c++/11.2.0/bits/basic_string.h:
|
||||||
|
|
||||||
|
/usr/include/bits/wctype-wchar.h:
|
||||||
|
|
||||||
|
/usr/include/c++/11.2.0/cstdio:
|
||||||
|
|
||||||
|
/usr/include/sys/types.h:
|
||||||
|
|
||||||
|
/usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/c++allocator.h:
|
||||||
|
|
||||||
|
/usr/include/c++/11.2.0/ext/new_allocator.h:
|
||||||
|
|
||||||
|
/usr/include/c++/11.2.0/bits/ostream_insert.h:
|
||||||
|
|
||||||
|
/usr/include/gnu/stubs.h:
|
||||||
|
|
||||||
|
/usr/include/bits/pthreadtypes-arch.h:
|
||||||
|
|
||||||
|
/usr/include/c++/11.2.0/bits/locale_classes.h:
|
||||||
|
|
||||||
|
/usr/include/c++/11.2.0/backward/binders.h:
|
2
Hazelnupp/build/CMakeFiles/exec.dir/compiler_depend.ts
Normal file
2
Hazelnupp/build/CMakeFiles/exec.dir/compiler_depend.ts
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
# CMAKE generated file: DO NOT EDIT!
|
||||||
|
# Timestamp file for compiler generated dependencies management for exec.
|
2
Hazelnupp/build/CMakeFiles/exec.dir/depend.make
Normal file
2
Hazelnupp/build/CMakeFiles/exec.dir/depend.make
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
# Empty dependencies file for exec.
|
||||||
|
# This may be replaced when dependencies are built.
|
BIN
Hazelnupp/build/CMakeFiles/exec.dir/exec/main.cpp.o
Normal file
BIN
Hazelnupp/build/CMakeFiles/exec.dir/exec/main.cpp.o
Normal file
Binary file not shown.
153
Hazelnupp/build/CMakeFiles/exec.dir/exec/main.cpp.o.d
Normal file
153
Hazelnupp/build/CMakeFiles/exec.dir/exec/main.cpp.o.d
Normal file
@ -0,0 +1,153 @@
|
|||||||
|
CMakeFiles/exec.dir/exec/main.cpp.o: \
|
||||||
|
/home/menethil/projects/private_work/Hazelnupp/Hazelnupp/exec/main.cpp \
|
||||||
|
/usr/include/stdc-predef.h /usr/include/c++/11.2.0/iostream \
|
||||||
|
/usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/c++config.h \
|
||||||
|
/usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/os_defines.h \
|
||||||
|
/usr/include/features.h /usr/include/features-time64.h \
|
||||||
|
/usr/include/bits/wordsize.h /usr/include/bits/timesize.h \
|
||||||
|
/usr/include/sys/cdefs.h /usr/include/bits/long-double.h \
|
||||||
|
/usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \
|
||||||
|
/usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/cpu_defines.h \
|
||||||
|
/usr/include/c++/11.2.0/pstl/pstl_config.h \
|
||||||
|
/usr/include/c++/11.2.0/ostream /usr/include/c++/11.2.0/ios \
|
||||||
|
/usr/include/c++/11.2.0/iosfwd /usr/include/c++/11.2.0/bits/stringfwd.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/memoryfwd.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/postypes.h /usr/include/c++/11.2.0/cwchar \
|
||||||
|
/usr/include/wchar.h /usr/include/bits/libc-header-start.h \
|
||||||
|
/usr/include/bits/floatn.h /usr/include/bits/floatn-common.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/include/stddef.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/include/stdarg.h \
|
||||||
|
/usr/include/bits/wchar.h /usr/include/bits/types/wint_t.h \
|
||||||
|
/usr/include/bits/types/mbstate_t.h \
|
||||||
|
/usr/include/bits/types/__mbstate_t.h /usr/include/bits/types/__FILE.h \
|
||||||
|
/usr/include/bits/types/FILE.h /usr/include/bits/types/locale_t.h \
|
||||||
|
/usr/include/bits/types/__locale_t.h /usr/include/c++/11.2.0/exception \
|
||||||
|
/usr/include/c++/11.2.0/bits/exception.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/exception_ptr.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/exception_defines.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/cxxabi_init_exception.h \
|
||||||
|
/usr/include/c++/11.2.0/typeinfo \
|
||||||
|
/usr/include/c++/11.2.0/bits/hash_bytes.h /usr/include/c++/11.2.0/new \
|
||||||
|
/usr/include/c++/11.2.0/bits/nested_exception.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/move.h /usr/include/c++/11.2.0/type_traits \
|
||||||
|
/usr/include/c++/11.2.0/bits/char_traits.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/stl_algobase.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/functexcept.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/cpp_type_traits.h \
|
||||||
|
/usr/include/c++/11.2.0/ext/type_traits.h \
|
||||||
|
/usr/include/c++/11.2.0/ext/numeric_traits.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/stl_pair.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/stl_iterator_base_types.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/stl_iterator_base_funcs.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/concept_check.h \
|
||||||
|
/usr/include/c++/11.2.0/debug/assertions.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/stl_iterator.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/ptr_traits.h \
|
||||||
|
/usr/include/c++/11.2.0/debug/debug.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/predefined_ops.h \
|
||||||
|
/usr/include/c++/11.2.0/cstdint \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/11.2.0/include/stdint.h \
|
||||||
|
/usr/include/stdint.h /usr/include/bits/types.h \
|
||||||
|
/usr/include/bits/typesizes.h /usr/include/bits/time64.h \
|
||||||
|
/usr/include/bits/stdint-intn.h /usr/include/bits/stdint-uintn.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/localefwd.h \
|
||||||
|
/usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/c++locale.h \
|
||||||
|
/usr/include/c++/11.2.0/clocale /usr/include/locale.h \
|
||||||
|
/usr/include/bits/locale.h /usr/include/c++/11.2.0/cctype \
|
||||||
|
/usr/include/ctype.h /usr/include/bits/endian.h \
|
||||||
|
/usr/include/bits/endianness.h /usr/include/c++/11.2.0/bits/ios_base.h \
|
||||||
|
/usr/include/c++/11.2.0/ext/atomicity.h \
|
||||||
|
/usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/gthr.h \
|
||||||
|
/usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/gthr-default.h \
|
||||||
|
/usr/include/pthread.h /usr/include/sched.h \
|
||||||
|
/usr/include/bits/types/time_t.h \
|
||||||
|
/usr/include/bits/types/struct_timespec.h /usr/include/bits/sched.h \
|
||||||
|
/usr/include/bits/types/struct_sched_param.h /usr/include/bits/cpu-set.h \
|
||||||
|
/usr/include/time.h /usr/include/bits/time.h /usr/include/bits/timex.h \
|
||||||
|
/usr/include/bits/types/struct_timeval.h \
|
||||||
|
/usr/include/bits/types/clock_t.h /usr/include/bits/types/struct_tm.h \
|
||||||
|
/usr/include/bits/types/clockid_t.h /usr/include/bits/types/timer_t.h \
|
||||||
|
/usr/include/bits/types/struct_itimerspec.h \
|
||||||
|
/usr/include/bits/pthreadtypes.h /usr/include/bits/thread-shared-types.h \
|
||||||
|
/usr/include/bits/pthreadtypes-arch.h \
|
||||||
|
/usr/include/bits/atomic_wide_counter.h /usr/include/bits/struct_mutex.h \
|
||||||
|
/usr/include/bits/struct_rwlock.h /usr/include/bits/setjmp.h \
|
||||||
|
/usr/include/bits/types/__sigset_t.h \
|
||||||
|
/usr/include/bits/types/struct___jmp_buf_tag.h \
|
||||||
|
/usr/include/bits/pthread_stack_min-dynamic.h \
|
||||||
|
/usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/atomic_word.h \
|
||||||
|
/usr/include/sys/single_threaded.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/locale_classes.h \
|
||||||
|
/usr/include/c++/11.2.0/string /usr/include/c++/11.2.0/bits/allocator.h \
|
||||||
|
/usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/c++allocator.h \
|
||||||
|
/usr/include/c++/11.2.0/ext/new_allocator.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/ostream_insert.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/cxxabi_forced.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/stl_function.h \
|
||||||
|
/usr/include/c++/11.2.0/backward/binders.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/range_access.h \
|
||||||
|
/usr/include/c++/11.2.0/initializer_list \
|
||||||
|
/usr/include/c++/11.2.0/bits/basic_string.h \
|
||||||
|
/usr/include/c++/11.2.0/ext/alloc_traits.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/alloc_traits.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/stl_construct.h \
|
||||||
|
/usr/include/c++/11.2.0/string_view \
|
||||||
|
/usr/include/c++/11.2.0/bits/functional_hash.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/string_view.tcc \
|
||||||
|
/usr/include/c++/11.2.0/ext/string_conversions.h \
|
||||||
|
/usr/include/c++/11.2.0/cstdlib /usr/include/stdlib.h \
|
||||||
|
/usr/include/bits/waitflags.h /usr/include/bits/waitstatus.h \
|
||||||
|
/usr/include/sys/types.h /usr/include/endian.h \
|
||||||
|
/usr/include/bits/byteswap.h /usr/include/bits/uintn-identity.h \
|
||||||
|
/usr/include/sys/select.h /usr/include/bits/select.h \
|
||||||
|
/usr/include/bits/types/sigset_t.h /usr/include/alloca.h \
|
||||||
|
/usr/include/bits/stdlib-float.h /usr/include/c++/11.2.0/bits/std_abs.h \
|
||||||
|
/usr/include/c++/11.2.0/cstdio /usr/include/stdio.h \
|
||||||
|
/usr/include/bits/types/__fpos_t.h /usr/include/bits/types/__fpos64_t.h \
|
||||||
|
/usr/include/bits/types/struct_FILE.h \
|
||||||
|
/usr/include/bits/types/cookie_io_functions_t.h \
|
||||||
|
/usr/include/bits/stdio_lim.h /usr/include/c++/11.2.0/cerrno \
|
||||||
|
/usr/include/errno.h /usr/include/bits/errno.h \
|
||||||
|
/usr/include/linux/errno.h /usr/include/asm/errno.h \
|
||||||
|
/usr/include/asm-generic/errno.h /usr/include/asm-generic/errno-base.h \
|
||||||
|
/usr/include/bits/types/error_t.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/charconv.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/basic_string.tcc \
|
||||||
|
/usr/include/c++/11.2.0/bits/locale_classes.tcc \
|
||||||
|
/usr/include/c++/11.2.0/system_error \
|
||||||
|
/usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/error_constants.h \
|
||||||
|
/usr/include/c++/11.2.0/stdexcept /usr/include/c++/11.2.0/streambuf \
|
||||||
|
/usr/include/c++/11.2.0/bits/streambuf.tcc \
|
||||||
|
/usr/include/c++/11.2.0/bits/basic_ios.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/locale_facets.h \
|
||||||
|
/usr/include/c++/11.2.0/cwctype /usr/include/wctype.h \
|
||||||
|
/usr/include/bits/wctype-wchar.h \
|
||||||
|
/usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/ctype_base.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/streambuf_iterator.h \
|
||||||
|
/usr/include/c++/11.2.0/x86_64-pc-linux-gnu/bits/ctype_inline.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/locale_facets.tcc \
|
||||||
|
/usr/include/c++/11.2.0/bits/basic_ios.tcc \
|
||||||
|
/usr/include/c++/11.2.0/bits/ostream.tcc /usr/include/c++/11.2.0/istream \
|
||||||
|
/usr/include/c++/11.2.0/bits/istream.tcc \
|
||||||
|
/home/menethil/projects/private_work/Hazelnupp/Hazelnupp/include/Hazelnupp/CmdArgsInterface.h \
|
||||||
|
/home/menethil/projects/private_work/Hazelnupp/Hazelnupp/include/Hazelnupp/Parameter.h \
|
||||||
|
/home/menethil/projects/private_work/Hazelnupp/Hazelnupp/include/Hazelnupp/Value.h \
|
||||||
|
/home/menethil/projects/private_work/Hazelnupp/Hazelnupp/include/Hazelnupp/DataType.h \
|
||||||
|
/usr/include/c++/11.2.0/vector \
|
||||||
|
/usr/include/c++/11.2.0/bits/stl_uninitialized.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/stl_vector.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/stl_bvector.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/vector.tcc \
|
||||||
|
/home/menethil/projects/private_work/Hazelnupp/Hazelnupp/include/Hazelnupp/ParamConstraint.h \
|
||||||
|
/usr/include/c++/11.2.0/unordered_map \
|
||||||
|
/usr/include/c++/11.2.0/ext/aligned_buffer.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/hashtable.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/hashtable_policy.h \
|
||||||
|
/usr/include/c++/11.2.0/tuple /usr/include/c++/11.2.0/utility \
|
||||||
|
/usr/include/c++/11.2.0/bits/stl_relops.h /usr/include/c++/11.2.0/array \
|
||||||
|
/usr/include/c++/11.2.0/bits/uses_allocator.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/invoke.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/node_handle.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/unordered_map.h \
|
||||||
|
/usr/include/c++/11.2.0/bits/erase_if.h \
|
||||||
|
/home/menethil/projects/private_work/Hazelnupp/Hazelnupp/include/Hazelnupp/Version.h
|
10
Hazelnupp/build/CMakeFiles/exec.dir/flags.make
Normal file
10
Hazelnupp/build/CMakeFiles/exec.dir/flags.make
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
# CMAKE generated file: DO NOT EDIT!
|
||||||
|
# Generated by "Unix Makefiles" Generator, CMake Version 3.23
|
||||||
|
|
||||||
|
# compile CXX with /usr/bin/c++
|
||||||
|
CXX_DEFINES =
|
||||||
|
|
||||||
|
CXX_INCLUDES = -I/home/menethil/projects/private_work/Hazelnupp/Hazelnupp/include
|
||||||
|
|
||||||
|
CXX_FLAGS = -std=gnu++17
|
||||||
|
|
1
Hazelnupp/build/CMakeFiles/exec.dir/link.txt
Normal file
1
Hazelnupp/build/CMakeFiles/exec.dir/link.txt
Normal file
@ -0,0 +1 @@
|
|||||||
|
/usr/bin/c++ CMakeFiles/exec.dir/exec/main.cpp.o -o exec libHazelnupp.a
|
3
Hazelnupp/build/CMakeFiles/exec.dir/progress.make
Normal file
3
Hazelnupp/build/CMakeFiles/exec.dir/progress.make
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
CMAKE_PROGRESS_1 = 11
|
||||||
|
CMAKE_PROGRESS_2 = 12
|
||||||
|
|
1
Hazelnupp/build/CMakeFiles/progress.marks
Normal file
1
Hazelnupp/build/CMakeFiles/progress.marks
Normal file
@ -0,0 +1 @@
|
|||||||
|
19
|
25
Hazelnupp/build/CMakeFiles/test.dir/DependInfo.cmake
Normal file
25
Hazelnupp/build/CMakeFiles/test.dir/DependInfo.cmake
Normal file
@ -0,0 +1,25 @@
|
|||||||
|
|
||||||
|
# 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/menethil/projects/private_work/Hazelnupp/Hazelnupp/test/Abbreviations.cpp" "CMakeFiles/test.dir/test/Abbreviations.cpp.o" "gcc" "CMakeFiles/test.dir/test/Abbreviations.cpp.o.d"
|
||||||
|
"/home/menethil/projects/private_work/Hazelnupp/Hazelnupp/test/Basics.cpp" "CMakeFiles/test.dir/test/Basics.cpp.o" "gcc" "CMakeFiles/test.dir/test/Basics.cpp.o.d"
|
||||||
|
"/home/menethil/projects/private_work/Hazelnupp/Hazelnupp/test/Constraints.cpp" "CMakeFiles/test.dir/test/Constraints.cpp.o" "gcc" "CMakeFiles/test.dir/test/Constraints.cpp.o.d"
|
||||||
|
"/home/menethil/projects/private_work/Hazelnupp/Hazelnupp/test/Conversion.cpp" "CMakeFiles/test.dir/test/Conversion.cpp.o" "gcc" "CMakeFiles/test.dir/test/Conversion.cpp.o.d"
|
||||||
|
"/home/menethil/projects/private_work/Hazelnupp/Hazelnupp/test/Descriptions.cpp" "CMakeFiles/test.dir/test/Descriptions.cpp.o" "gcc" "CMakeFiles/test.dir/test/Descriptions.cpp.o.d"
|
||||||
|
"/home/menethil/projects/private_work/Hazelnupp/Hazelnupp/test/main.cpp" "CMakeFiles/test.dir/test/main.cpp.o" "gcc" "CMakeFiles/test.dir/test/main.cpp.o.d"
|
||||||
|
)
|
||||||
|
|
||||||
|
# Targets to which this target links.
|
||||||
|
set(CMAKE_TARGET_LINKED_INFO_FILES
|
||||||
|
"/home/menethil/projects/private_work/Hazelnupp/Hazelnupp/build/CMakeFiles/Hazelnupp.dir/DependInfo.cmake"
|
||||||
|
)
|
||||||
|
|
||||||
|
# Fortran module output directory.
|
||||||
|
set(CMAKE_Fortran_TARGET_MODULE_DIR "")
|
191
Hazelnupp/build/CMakeFiles/test.dir/build.make
Normal file
191
Hazelnupp/build/CMakeFiles/test.dir/build.make
Normal file
@ -0,0 +1,191 @@
|
|||||||
|
# CMAKE generated file: DO NOT EDIT!
|
||||||
|
# Generated by "Unix Makefiles" Generator, CMake Version 3.23
|
||||||
|
|
||||||
|
# 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/menethil/projects/private_work/Hazelnupp/Hazelnupp
|
||||||
|
|
||||||
|
# The top-level build directory on which CMake was run.
|
||||||
|
CMAKE_BINARY_DIR = /home/menethil/projects/private_work/Hazelnupp/Hazelnupp/build
|
||||||
|
|
||||||
|
# Include any dependencies generated for this target.
|
||||||
|
include CMakeFiles/test.dir/depend.make
|
||||||
|
# Include any dependencies generated by the compiler for this target.
|
||||||
|
include CMakeFiles/test.dir/compiler_depend.make
|
||||||
|
|
||||||
|
# Include the progress variables for this target.
|
||||||
|
include CMakeFiles/test.dir/progress.make
|
||||||
|
|
||||||
|
# Include the compile flags for this target's objects.
|
||||||
|
include CMakeFiles/test.dir/flags.make
|
||||||
|
|
||||||
|
CMakeFiles/test.dir/test/Abbreviations.cpp.o: CMakeFiles/test.dir/flags.make
|
||||||
|
CMakeFiles/test.dir/test/Abbreviations.cpp.o: ../test/Abbreviations.cpp
|
||||||
|
CMakeFiles/test.dir/test/Abbreviations.cpp.o: CMakeFiles/test.dir/compiler_depend.ts
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/menethil/projects/private_work/Hazelnupp/Hazelnupp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object CMakeFiles/test.dir/test/Abbreviations.cpp.o"
|
||||||
|
/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/test.dir/test/Abbreviations.cpp.o -MF CMakeFiles/test.dir/test/Abbreviations.cpp.o.d -o CMakeFiles/test.dir/test/Abbreviations.cpp.o -c /home/menethil/projects/private_work/Hazelnupp/Hazelnupp/test/Abbreviations.cpp
|
||||||
|
|
||||||
|
CMakeFiles/test.dir/test/Abbreviations.cpp.i: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/test.dir/test/Abbreviations.cpp.i"
|
||||||
|
/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/menethil/projects/private_work/Hazelnupp/Hazelnupp/test/Abbreviations.cpp > CMakeFiles/test.dir/test/Abbreviations.cpp.i
|
||||||
|
|
||||||
|
CMakeFiles/test.dir/test/Abbreviations.cpp.s: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/test.dir/test/Abbreviations.cpp.s"
|
||||||
|
/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/menethil/projects/private_work/Hazelnupp/Hazelnupp/test/Abbreviations.cpp -o CMakeFiles/test.dir/test/Abbreviations.cpp.s
|
||||||
|
|
||||||
|
CMakeFiles/test.dir/test/Basics.cpp.o: CMakeFiles/test.dir/flags.make
|
||||||
|
CMakeFiles/test.dir/test/Basics.cpp.o: ../test/Basics.cpp
|
||||||
|
CMakeFiles/test.dir/test/Basics.cpp.o: CMakeFiles/test.dir/compiler_depend.ts
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/menethil/projects/private_work/Hazelnupp/Hazelnupp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building CXX object CMakeFiles/test.dir/test/Basics.cpp.o"
|
||||||
|
/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/test.dir/test/Basics.cpp.o -MF CMakeFiles/test.dir/test/Basics.cpp.o.d -o CMakeFiles/test.dir/test/Basics.cpp.o -c /home/menethil/projects/private_work/Hazelnupp/Hazelnupp/test/Basics.cpp
|
||||||
|
|
||||||
|
CMakeFiles/test.dir/test/Basics.cpp.i: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/test.dir/test/Basics.cpp.i"
|
||||||
|
/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/menethil/projects/private_work/Hazelnupp/Hazelnupp/test/Basics.cpp > CMakeFiles/test.dir/test/Basics.cpp.i
|
||||||
|
|
||||||
|
CMakeFiles/test.dir/test/Basics.cpp.s: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/test.dir/test/Basics.cpp.s"
|
||||||
|
/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/menethil/projects/private_work/Hazelnupp/Hazelnupp/test/Basics.cpp -o CMakeFiles/test.dir/test/Basics.cpp.s
|
||||||
|
|
||||||
|
CMakeFiles/test.dir/test/Constraints.cpp.o: CMakeFiles/test.dir/flags.make
|
||||||
|
CMakeFiles/test.dir/test/Constraints.cpp.o: ../test/Constraints.cpp
|
||||||
|
CMakeFiles/test.dir/test/Constraints.cpp.o: CMakeFiles/test.dir/compiler_depend.ts
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/menethil/projects/private_work/Hazelnupp/Hazelnupp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Building CXX object CMakeFiles/test.dir/test/Constraints.cpp.o"
|
||||||
|
/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/test.dir/test/Constraints.cpp.o -MF CMakeFiles/test.dir/test/Constraints.cpp.o.d -o CMakeFiles/test.dir/test/Constraints.cpp.o -c /home/menethil/projects/private_work/Hazelnupp/Hazelnupp/test/Constraints.cpp
|
||||||
|
|
||||||
|
CMakeFiles/test.dir/test/Constraints.cpp.i: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/test.dir/test/Constraints.cpp.i"
|
||||||
|
/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/menethil/projects/private_work/Hazelnupp/Hazelnupp/test/Constraints.cpp > CMakeFiles/test.dir/test/Constraints.cpp.i
|
||||||
|
|
||||||
|
CMakeFiles/test.dir/test/Constraints.cpp.s: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/test.dir/test/Constraints.cpp.s"
|
||||||
|
/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/menethil/projects/private_work/Hazelnupp/Hazelnupp/test/Constraints.cpp -o CMakeFiles/test.dir/test/Constraints.cpp.s
|
||||||
|
|
||||||
|
CMakeFiles/test.dir/test/Conversion.cpp.o: CMakeFiles/test.dir/flags.make
|
||||||
|
CMakeFiles/test.dir/test/Conversion.cpp.o: ../test/Conversion.cpp
|
||||||
|
CMakeFiles/test.dir/test/Conversion.cpp.o: CMakeFiles/test.dir/compiler_depend.ts
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/menethil/projects/private_work/Hazelnupp/Hazelnupp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_4) "Building CXX object CMakeFiles/test.dir/test/Conversion.cpp.o"
|
||||||
|
/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/test.dir/test/Conversion.cpp.o -MF CMakeFiles/test.dir/test/Conversion.cpp.o.d -o CMakeFiles/test.dir/test/Conversion.cpp.o -c /home/menethil/projects/private_work/Hazelnupp/Hazelnupp/test/Conversion.cpp
|
||||||
|
|
||||||
|
CMakeFiles/test.dir/test/Conversion.cpp.i: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/test.dir/test/Conversion.cpp.i"
|
||||||
|
/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/menethil/projects/private_work/Hazelnupp/Hazelnupp/test/Conversion.cpp > CMakeFiles/test.dir/test/Conversion.cpp.i
|
||||||
|
|
||||||
|
CMakeFiles/test.dir/test/Conversion.cpp.s: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/test.dir/test/Conversion.cpp.s"
|
||||||
|
/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/menethil/projects/private_work/Hazelnupp/Hazelnupp/test/Conversion.cpp -o CMakeFiles/test.dir/test/Conversion.cpp.s
|
||||||
|
|
||||||
|
CMakeFiles/test.dir/test/Descriptions.cpp.o: CMakeFiles/test.dir/flags.make
|
||||||
|
CMakeFiles/test.dir/test/Descriptions.cpp.o: ../test/Descriptions.cpp
|
||||||
|
CMakeFiles/test.dir/test/Descriptions.cpp.o: CMakeFiles/test.dir/compiler_depend.ts
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/menethil/projects/private_work/Hazelnupp/Hazelnupp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_5) "Building CXX object CMakeFiles/test.dir/test/Descriptions.cpp.o"
|
||||||
|
/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/test.dir/test/Descriptions.cpp.o -MF CMakeFiles/test.dir/test/Descriptions.cpp.o.d -o CMakeFiles/test.dir/test/Descriptions.cpp.o -c /home/menethil/projects/private_work/Hazelnupp/Hazelnupp/test/Descriptions.cpp
|
||||||
|
|
||||||
|
CMakeFiles/test.dir/test/Descriptions.cpp.i: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/test.dir/test/Descriptions.cpp.i"
|
||||||
|
/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/menethil/projects/private_work/Hazelnupp/Hazelnupp/test/Descriptions.cpp > CMakeFiles/test.dir/test/Descriptions.cpp.i
|
||||||
|
|
||||||
|
CMakeFiles/test.dir/test/Descriptions.cpp.s: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/test.dir/test/Descriptions.cpp.s"
|
||||||
|
/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/menethil/projects/private_work/Hazelnupp/Hazelnupp/test/Descriptions.cpp -o CMakeFiles/test.dir/test/Descriptions.cpp.s
|
||||||
|
|
||||||
|
CMakeFiles/test.dir/test/main.cpp.o: CMakeFiles/test.dir/flags.make
|
||||||
|
CMakeFiles/test.dir/test/main.cpp.o: ../test/main.cpp
|
||||||
|
CMakeFiles/test.dir/test/main.cpp.o: CMakeFiles/test.dir/compiler_depend.ts
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/menethil/projects/private_work/Hazelnupp/Hazelnupp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_6) "Building CXX object CMakeFiles/test.dir/test/main.cpp.o"
|
||||||
|
/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/test.dir/test/main.cpp.o -MF CMakeFiles/test.dir/test/main.cpp.o.d -o CMakeFiles/test.dir/test/main.cpp.o -c /home/menethil/projects/private_work/Hazelnupp/Hazelnupp/test/main.cpp
|
||||||
|
|
||||||
|
CMakeFiles/test.dir/test/main.cpp.i: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/test.dir/test/main.cpp.i"
|
||||||
|
/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/menethil/projects/private_work/Hazelnupp/Hazelnupp/test/main.cpp > CMakeFiles/test.dir/test/main.cpp.i
|
||||||
|
|
||||||
|
CMakeFiles/test.dir/test/main.cpp.s: cmake_force
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/test.dir/test/main.cpp.s"
|
||||||
|
/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/menethil/projects/private_work/Hazelnupp/Hazelnupp/test/main.cpp -o CMakeFiles/test.dir/test/main.cpp.s
|
||||||
|
|
||||||
|
# Object files for target test
|
||||||
|
test_OBJECTS = \
|
||||||
|
"CMakeFiles/test.dir/test/Abbreviations.cpp.o" \
|
||||||
|
"CMakeFiles/test.dir/test/Basics.cpp.o" \
|
||||||
|
"CMakeFiles/test.dir/test/Constraints.cpp.o" \
|
||||||
|
"CMakeFiles/test.dir/test/Conversion.cpp.o" \
|
||||||
|
"CMakeFiles/test.dir/test/Descriptions.cpp.o" \
|
||||||
|
"CMakeFiles/test.dir/test/main.cpp.o"
|
||||||
|
|
||||||
|
# External object files for target test
|
||||||
|
test_EXTERNAL_OBJECTS =
|
||||||
|
|
||||||
|
test: CMakeFiles/test.dir/test/Abbreviations.cpp.o
|
||||||
|
test: CMakeFiles/test.dir/test/Basics.cpp.o
|
||||||
|
test: CMakeFiles/test.dir/test/Constraints.cpp.o
|
||||||
|
test: CMakeFiles/test.dir/test/Conversion.cpp.o
|
||||||
|
test: CMakeFiles/test.dir/test/Descriptions.cpp.o
|
||||||
|
test: CMakeFiles/test.dir/test/main.cpp.o
|
||||||
|
test: CMakeFiles/test.dir/build.make
|
||||||
|
test: libHazelnupp.a
|
||||||
|
test: CMakeFiles/test.dir/link.txt
|
||||||
|
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --bold --progress-dir=/home/menethil/projects/private_work/Hazelnupp/Hazelnupp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_7) "Linking CXX executable test"
|
||||||
|
$(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/test.dir/link.txt --verbose=$(VERBOSE)
|
||||||
|
|
||||||
|
# Rule to build all files generated by this target.
|
||||||
|
CMakeFiles/test.dir/build: test
|
||||||
|
.PHONY : CMakeFiles/test.dir/build
|
||||||
|
|
||||||
|
CMakeFiles/test.dir/clean:
|
||||||
|
$(CMAKE_COMMAND) -P CMakeFiles/test.dir/cmake_clean.cmake
|
||||||
|
.PHONY : CMakeFiles/test.dir/clean
|
||||||
|
|
||||||
|
CMakeFiles/test.dir/depend:
|
||||||
|
cd /home/menethil/projects/private_work/Hazelnupp/Hazelnupp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/menethil/projects/private_work/Hazelnupp/Hazelnupp /home/menethil/projects/private_work/Hazelnupp/Hazelnupp /home/menethil/projects/private_work/Hazelnupp/Hazelnupp/build /home/menethil/projects/private_work/Hazelnupp/Hazelnupp/build /home/menethil/projects/private_work/Hazelnupp/Hazelnupp/build/CMakeFiles/test.dir/DependInfo.cmake --color=$(COLOR)
|
||||||
|
.PHONY : CMakeFiles/test.dir/depend
|
||||||
|
|
21
Hazelnupp/build/CMakeFiles/test.dir/cmake_clean.cmake
Normal file
21
Hazelnupp/build/CMakeFiles/test.dir/cmake_clean.cmake
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
file(REMOVE_RECURSE
|
||||||
|
"CMakeFiles/test.dir/test/Abbreviations.cpp.o"
|
||||||
|
"CMakeFiles/test.dir/test/Abbreviations.cpp.o.d"
|
||||||
|
"CMakeFiles/test.dir/test/Basics.cpp.o"
|
||||||
|
"CMakeFiles/test.dir/test/Basics.cpp.o.d"
|
||||||
|
"CMakeFiles/test.dir/test/Constraints.cpp.o"
|
||||||
|
"CMakeFiles/test.dir/test/Constraints.cpp.o.d"
|
||||||
|
"CMakeFiles/test.dir/test/Conversion.cpp.o"
|
||||||
|
"CMakeFiles/test.dir/test/Conversion.cpp.o.d"
|
||||||
|
"CMakeFiles/test.dir/test/Descriptions.cpp.o"
|
||||||
|
"CMakeFiles/test.dir/test/Descriptions.cpp.o.d"
|
||||||
|
"CMakeFiles/test.dir/test/main.cpp.o"
|
||||||
|
"CMakeFiles/test.dir/test/main.cpp.o.d"
|
||||||
|
"test"
|
||||||
|
"test.pdb"
|
||||||
|
)
|
||||||
|
|
||||||
|
# Per-language clean rules from dependency scanning.
|
||||||
|
foreach(lang CXX)
|
||||||
|
include(CMakeFiles/test.dir/cmake_clean_${lang}.cmake OPTIONAL)
|
||||||
|
endforeach()
|
2
Hazelnupp/build/CMakeFiles/test.dir/compiler_depend.make
Normal file
2
Hazelnupp/build/CMakeFiles/test.dir/compiler_depend.make
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
# Empty compiler generated dependencies file for test.
|
||||||
|
# This may be replaced when dependencies are built.
|
2
Hazelnupp/build/CMakeFiles/test.dir/compiler_depend.ts
Normal file
2
Hazelnupp/build/CMakeFiles/test.dir/compiler_depend.ts
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
# CMAKE generated file: DO NOT EDIT!
|
||||||
|
# Timestamp file for compiler generated dependencies management for test.
|
2
Hazelnupp/build/CMakeFiles/test.dir/depend.make
Normal file
2
Hazelnupp/build/CMakeFiles/test.dir/depend.make
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
# Empty dependencies file for test.
|
||||||
|
# This may be replaced when dependencies are built.
|
10
Hazelnupp/build/CMakeFiles/test.dir/flags.make
Normal file
10
Hazelnupp/build/CMakeFiles/test.dir/flags.make
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
# CMAKE generated file: DO NOT EDIT!
|
||||||
|
# Generated by "Unix Makefiles" Generator, CMake Version 3.23
|
||||||
|
|
||||||
|
# compile CXX with /usr/bin/c++
|
||||||
|
CXX_DEFINES =
|
||||||
|
|
||||||
|
CXX_INCLUDES = -I/home/menethil/projects/private_work/Hazelnupp/Hazelnupp/include
|
||||||
|
|
||||||
|
CXX_FLAGS = -std=gnu++17
|
||||||
|
|
1
Hazelnupp/build/CMakeFiles/test.dir/link.txt
Normal file
1
Hazelnupp/build/CMakeFiles/test.dir/link.txt
Normal file
@ -0,0 +1 @@
|
|||||||
|
/usr/bin/c++ CMakeFiles/test.dir/test/Abbreviations.cpp.o CMakeFiles/test.dir/test/Basics.cpp.o CMakeFiles/test.dir/test/Constraints.cpp.o CMakeFiles/test.dir/test/Conversion.cpp.o CMakeFiles/test.dir/test/Descriptions.cpp.o CMakeFiles/test.dir/test/main.cpp.o -o test libHazelnupp.a
|
8
Hazelnupp/build/CMakeFiles/test.dir/progress.make
Normal file
8
Hazelnupp/build/CMakeFiles/test.dir/progress.make
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
CMAKE_PROGRESS_1 = 13
|
||||||
|
CMAKE_PROGRESS_2 = 14
|
||||||
|
CMAKE_PROGRESS_3 = 15
|
||||||
|
CMAKE_PROGRESS_4 = 16
|
||||||
|
CMAKE_PROGRESS_5 = 17
|
||||||
|
CMAKE_PROGRESS_6 = 18
|
||||||
|
CMAKE_PROGRESS_7 = 19
|
||||||
|
|
614
Hazelnupp/build/Makefile
Normal file
614
Hazelnupp/build/Makefile
Normal file
@ -0,0 +1,614 @@
|
|||||||
|
# CMAKE generated file: DO NOT EDIT!
|
||||||
|
# Generated by "Unix Makefiles" Generator, CMake Version 3.23
|
||||||
|
|
||||||
|
# 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/menethil/projects/private_work/Hazelnupp/Hazelnupp
|
||||||
|
|
||||||
|
# The top-level build directory on which CMake was run.
|
||||||
|
CMAKE_BINARY_DIR = /home/menethil/projects/private_work/Hazelnupp/Hazelnupp/build
|
||||||
|
|
||||||
|
#=============================================================================
|
||||||
|
# Targets provided globally by CMake.
|
||||||
|
|
||||||
|
# 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
|
||||||
|
|
||||||
|
# The main all target
|
||||||
|
all: cmake_check_build_system
|
||||||
|
$(CMAKE_COMMAND) -E cmake_progress_start /home/menethil/projects/private_work/Hazelnupp/Hazelnupp/build/CMakeFiles /home/menethil/projects/private_work/Hazelnupp/Hazelnupp/build//CMakeFiles/progress.marks
|
||||||
|
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 all
|
||||||
|
$(CMAKE_COMMAND) -E cmake_progress_start /home/menethil/projects/private_work/Hazelnupp/Hazelnupp/build/CMakeFiles 0
|
||||||
|
.PHONY : all
|
||||||
|
|
||||||
|
# The main clean target
|
||||||
|
clean:
|
||||||
|
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 clean
|
||||||
|
.PHONY : clean
|
||||||
|
|
||||||
|
# The main clean target
|
||||||
|
clean/fast: clean
|
||||||
|
.PHONY : clean/fast
|
||||||
|
|
||||||
|
# Prepare targets for installation.
|
||||||
|
preinstall: all
|
||||||
|
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 preinstall
|
||||||
|
.PHONY : preinstall
|
||||||
|
|
||||||
|
# Prepare targets for installation.
|
||||||
|
preinstall/fast:
|
||||||
|
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 preinstall
|
||||||
|
.PHONY : preinstall/fast
|
||||||
|
|
||||||
|
# clear depends
|
||||||
|
depend:
|
||||||
|
$(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1
|
||||||
|
.PHONY : depend
|
||||||
|
|
||||||
|
#=============================================================================
|
||||||
|
# Target rules for targets named Hazelnupp
|
||||||
|
|
||||||
|
# Build rule for target.
|
||||||
|
Hazelnupp: cmake_check_build_system
|
||||||
|
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 Hazelnupp
|
||||||
|
.PHONY : Hazelnupp
|
||||||
|
|
||||||
|
# fast build rule for target.
|
||||||
|
Hazelnupp/fast:
|
||||||
|
$(MAKE) $(MAKESILENT) -f CMakeFiles/Hazelnupp.dir/build.make CMakeFiles/Hazelnupp.dir/build
|
||||||
|
.PHONY : Hazelnupp/fast
|
||||||
|
|
||||||
|
#=============================================================================
|
||||||
|
# Target rules for targets named test
|
||||||
|
|
||||||
|
# Build rule for target.
|
||||||
|
test: cmake_check_build_system
|
||||||
|
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 test
|
||||||
|
.PHONY : test
|
||||||
|
|
||||||
|
# fast build rule for target.
|
||||||
|
test/fast:
|
||||||
|
$(MAKE) $(MAKESILENT) -f CMakeFiles/test.dir/build.make CMakeFiles/test.dir/build
|
||||||
|
.PHONY : test/fast
|
||||||
|
|
||||||
|
#=============================================================================
|
||||||
|
# Target rules for targets named exec
|
||||||
|
|
||||||
|
# Build rule for target.
|
||||||
|
exec: cmake_check_build_system
|
||||||
|
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 exec
|
||||||
|
.PHONY : exec
|
||||||
|
|
||||||
|
# fast build rule for target.
|
||||||
|
exec/fast:
|
||||||
|
$(MAKE) $(MAKESILENT) -f CMakeFiles/exec.dir/build.make CMakeFiles/exec.dir/build
|
||||||
|
.PHONY : exec/fast
|
||||||
|
|
||||||
|
exec/main.o: exec/main.cpp.o
|
||||||
|
.PHONY : exec/main.o
|
||||||
|
|
||||||
|
# target to build an object file
|
||||||
|
exec/main.cpp.o:
|
||||||
|
$(MAKE) $(MAKESILENT) -f CMakeFiles/exec.dir/build.make CMakeFiles/exec.dir/exec/main.cpp.o
|
||||||
|
.PHONY : exec/main.cpp.o
|
||||||
|
|
||||||
|
exec/main.i: exec/main.cpp.i
|
||||||
|
.PHONY : exec/main.i
|
||||||
|
|
||||||
|
# target to preprocess a source file
|
||||||
|
exec/main.cpp.i:
|
||||||
|
$(MAKE) $(MAKESILENT) -f CMakeFiles/exec.dir/build.make CMakeFiles/exec.dir/exec/main.cpp.i
|
||||||
|
.PHONY : exec/main.cpp.i
|
||||||
|
|
||||||
|
exec/main.s: exec/main.cpp.s
|
||||||
|
.PHONY : exec/main.s
|
||||||
|
|
||||||
|
# target to generate assembly for a file
|
||||||
|
exec/main.cpp.s:
|
||||||
|
$(MAKE) $(MAKESILENT) -f CMakeFiles/exec.dir/build.make CMakeFiles/exec.dir/exec/main.cpp.s
|
||||||
|
.PHONY : exec/main.cpp.s
|
||||||
|
|
||||||
|
src/CmdArgsInterface.o: src/CmdArgsInterface.cpp.o
|
||||||
|
.PHONY : src/CmdArgsInterface.o
|
||||||
|
|
||||||
|
# target to build an object file
|
||||||
|
src/CmdArgsInterface.cpp.o:
|
||||||
|
$(MAKE) $(MAKESILENT) -f CMakeFiles/Hazelnupp.dir/build.make CMakeFiles/Hazelnupp.dir/src/CmdArgsInterface.cpp.o
|
||||||
|
.PHONY : src/CmdArgsInterface.cpp.o
|
||||||
|
|
||||||
|
src/CmdArgsInterface.i: src/CmdArgsInterface.cpp.i
|
||||||
|
.PHONY : src/CmdArgsInterface.i
|
||||||
|
|
||||||
|
# target to preprocess a source file
|
||||||
|
src/CmdArgsInterface.cpp.i:
|
||||||
|
$(MAKE) $(MAKESILENT) -f CMakeFiles/Hazelnupp.dir/build.make CMakeFiles/Hazelnupp.dir/src/CmdArgsInterface.cpp.i
|
||||||
|
.PHONY : src/CmdArgsInterface.cpp.i
|
||||||
|
|
||||||
|
src/CmdArgsInterface.s: src/CmdArgsInterface.cpp.s
|
||||||
|
.PHONY : src/CmdArgsInterface.s
|
||||||
|
|
||||||
|
# target to generate assembly for a file
|
||||||
|
src/CmdArgsInterface.cpp.s:
|
||||||
|
$(MAKE) $(MAKESILENT) -f CMakeFiles/Hazelnupp.dir/build.make CMakeFiles/Hazelnupp.dir/src/CmdArgsInterface.cpp.s
|
||||||
|
.PHONY : src/CmdArgsInterface.cpp.s
|
||||||
|
|
||||||
|
src/FloatValue.o: src/FloatValue.cpp.o
|
||||||
|
.PHONY : src/FloatValue.o
|
||||||
|
|
||||||
|
# target to build an object file
|
||||||
|
src/FloatValue.cpp.o:
|
||||||
|
$(MAKE) $(MAKESILENT) -f CMakeFiles/Hazelnupp.dir/build.make CMakeFiles/Hazelnupp.dir/src/FloatValue.cpp.o
|
||||||
|
.PHONY : src/FloatValue.cpp.o
|
||||||
|
|
||||||
|
src/FloatValue.i: src/FloatValue.cpp.i
|
||||||
|
.PHONY : src/FloatValue.i
|
||||||
|
|
||||||
|
# target to preprocess a source file
|
||||||
|
src/FloatValue.cpp.i:
|
||||||
|
$(MAKE) $(MAKESILENT) -f CMakeFiles/Hazelnupp.dir/build.make CMakeFiles/Hazelnupp.dir/src/FloatValue.cpp.i
|
||||||
|
.PHONY : src/FloatValue.cpp.i
|
||||||
|
|
||||||
|
src/FloatValue.s: src/FloatValue.cpp.s
|
||||||
|
.PHONY : src/FloatValue.s
|
||||||
|
|
||||||
|
# target to generate assembly for a file
|
||||||
|
src/FloatValue.cpp.s:
|
||||||
|
$(MAKE) $(MAKESILENT) -f CMakeFiles/Hazelnupp.dir/build.make CMakeFiles/Hazelnupp.dir/src/FloatValue.cpp.s
|
||||||
|
.PHONY : src/FloatValue.cpp.s
|
||||||
|
|
||||||
|
src/IntValue.o: src/IntValue.cpp.o
|
||||||
|
.PHONY : src/IntValue.o
|
||||||
|
|
||||||
|
# target to build an object file
|
||||||
|
src/IntValue.cpp.o:
|
||||||
|
$(MAKE) $(MAKESILENT) -f CMakeFiles/Hazelnupp.dir/build.make CMakeFiles/Hazelnupp.dir/src/IntValue.cpp.o
|
||||||
|
.PHONY : src/IntValue.cpp.o
|
||||||
|
|
||||||
|
src/IntValue.i: src/IntValue.cpp.i
|
||||||
|
.PHONY : src/IntValue.i
|
||||||
|
|
||||||
|
# target to preprocess a source file
|
||||||
|
src/IntValue.cpp.i:
|
||||||
|
$(MAKE) $(MAKESILENT) -f CMakeFiles/Hazelnupp.dir/build.make CMakeFiles/Hazelnupp.dir/src/IntValue.cpp.i
|
||||||
|
.PHONY : src/IntValue.cpp.i
|
||||||
|
|
||||||
|
src/IntValue.s: src/IntValue.cpp.s
|
||||||
|
.PHONY : src/IntValue.s
|
||||||
|
|
||||||
|
# target to generate assembly for a file
|
||||||
|
src/IntValue.cpp.s:
|
||||||
|
$(MAKE) $(MAKESILENT) -f CMakeFiles/Hazelnupp.dir/build.make CMakeFiles/Hazelnupp.dir/src/IntValue.cpp.s
|
||||||
|
.PHONY : src/IntValue.cpp.s
|
||||||
|
|
||||||
|
src/ListValue.o: src/ListValue.cpp.o
|
||||||
|
.PHONY : src/ListValue.o
|
||||||
|
|
||||||
|
# target to build an object file
|
||||||
|
src/ListValue.cpp.o:
|
||||||
|
$(MAKE) $(MAKESILENT) -f CMakeFiles/Hazelnupp.dir/build.make CMakeFiles/Hazelnupp.dir/src/ListValue.cpp.o
|
||||||
|
.PHONY : src/ListValue.cpp.o
|
||||||
|
|
||||||
|
src/ListValue.i: src/ListValue.cpp.i
|
||||||
|
.PHONY : src/ListValue.i
|
||||||
|
|
||||||
|
# target to preprocess a source file
|
||||||
|
src/ListValue.cpp.i:
|
||||||
|
$(MAKE) $(MAKESILENT) -f CMakeFiles/Hazelnupp.dir/build.make CMakeFiles/Hazelnupp.dir/src/ListValue.cpp.i
|
||||||
|
.PHONY : src/ListValue.cpp.i
|
||||||
|
|
||||||
|
src/ListValue.s: src/ListValue.cpp.s
|
||||||
|
.PHONY : src/ListValue.s
|
||||||
|
|
||||||
|
# target to generate assembly for a file
|
||||||
|
src/ListValue.cpp.s:
|
||||||
|
$(MAKE) $(MAKESILENT) -f CMakeFiles/Hazelnupp.dir/build.make CMakeFiles/Hazelnupp.dir/src/ListValue.cpp.s
|
||||||
|
.PHONY : src/ListValue.cpp.s
|
||||||
|
|
||||||
|
src/Parameter.o: src/Parameter.cpp.o
|
||||||
|
.PHONY : src/Parameter.o
|
||||||
|
|
||||||
|
# target to build an object file
|
||||||
|
src/Parameter.cpp.o:
|
||||||
|
$(MAKE) $(MAKESILENT) -f CMakeFiles/Hazelnupp.dir/build.make CMakeFiles/Hazelnupp.dir/src/Parameter.cpp.o
|
||||||
|
.PHONY : src/Parameter.cpp.o
|
||||||
|
|
||||||
|
src/Parameter.i: src/Parameter.cpp.i
|
||||||
|
.PHONY : src/Parameter.i
|
||||||
|
|
||||||
|
# target to preprocess a source file
|
||||||
|
src/Parameter.cpp.i:
|
||||||
|
$(MAKE) $(MAKESILENT) -f CMakeFiles/Hazelnupp.dir/build.make CMakeFiles/Hazelnupp.dir/src/Parameter.cpp.i
|
||||||
|
.PHONY : src/Parameter.cpp.i
|
||||||
|
|
||||||
|
src/Parameter.s: src/Parameter.cpp.s
|
||||||
|
.PHONY : src/Parameter.s
|
||||||
|
|
||||||
|
# target to generate assembly for a file
|
||||||
|
src/Parameter.cpp.s:
|
||||||
|
$(MAKE) $(MAKESILENT) -f CMakeFiles/Hazelnupp.dir/build.make CMakeFiles/Hazelnupp.dir/src/Parameter.cpp.s
|
||||||
|
.PHONY : src/Parameter.cpp.s
|
||||||
|
|
||||||
|
src/StringTools.o: src/StringTools.cpp.o
|
||||||
|
.PHONY : src/StringTools.o
|
||||||
|
|
||||||
|
# target to build an object file
|
||||||
|
src/StringTools.cpp.o:
|
||||||
|
$(MAKE) $(MAKESILENT) -f CMakeFiles/Hazelnupp.dir/build.make CMakeFiles/Hazelnupp.dir/src/StringTools.cpp.o
|
||||||
|
.PHONY : src/StringTools.cpp.o
|
||||||
|
|
||||||
|
src/StringTools.i: src/StringTools.cpp.i
|
||||||
|
.PHONY : src/StringTools.i
|
||||||
|
|
||||||
|
# target to preprocess a source file
|
||||||
|
src/StringTools.cpp.i:
|
||||||
|
$(MAKE) $(MAKESILENT) -f CMakeFiles/Hazelnupp.dir/build.make CMakeFiles/Hazelnupp.dir/src/StringTools.cpp.i
|
||||||
|
.PHONY : src/StringTools.cpp.i
|
||||||
|
|
||||||
|
src/StringTools.s: src/StringTools.cpp.s
|
||||||
|
.PHONY : src/StringTools.s
|
||||||
|
|
||||||
|
# target to generate assembly for a file
|
||||||
|
src/StringTools.cpp.s:
|
||||||
|
$(MAKE) $(MAKESILENT) -f CMakeFiles/Hazelnupp.dir/build.make CMakeFiles/Hazelnupp.dir/src/StringTools.cpp.s
|
||||||
|
.PHONY : src/StringTools.cpp.s
|
||||||
|
|
||||||
|
src/StringValue.o: src/StringValue.cpp.o
|
||||||
|
.PHONY : src/StringValue.o
|
||||||
|
|
||||||
|
# target to build an object file
|
||||||
|
src/StringValue.cpp.o:
|
||||||
|
$(MAKE) $(MAKESILENT) -f CMakeFiles/Hazelnupp.dir/build.make CMakeFiles/Hazelnupp.dir/src/StringValue.cpp.o
|
||||||
|
.PHONY : src/StringValue.cpp.o
|
||||||
|
|
||||||
|
src/StringValue.i: src/StringValue.cpp.i
|
||||||
|
.PHONY : src/StringValue.i
|
||||||
|
|
||||||
|
# target to preprocess a source file
|
||||||
|
src/StringValue.cpp.i:
|
||||||
|
$(MAKE) $(MAKESILENT) -f CMakeFiles/Hazelnupp.dir/build.make CMakeFiles/Hazelnupp.dir/src/StringValue.cpp.i
|
||||||
|
.PHONY : src/StringValue.cpp.i
|
||||||
|
|
||||||
|
src/StringValue.s: src/StringValue.cpp.s
|
||||||
|
.PHONY : src/StringValue.s
|
||||||
|
|
||||||
|
# target to generate assembly for a file
|
||||||
|
src/StringValue.cpp.s:
|
||||||
|
$(MAKE) $(MAKESILENT) -f CMakeFiles/Hazelnupp.dir/build.make CMakeFiles/Hazelnupp.dir/src/StringValue.cpp.s
|
||||||
|
.PHONY : src/StringValue.cpp.s
|
||||||
|
|
||||||
|
src/Value.o: src/Value.cpp.o
|
||||||
|
.PHONY : src/Value.o
|
||||||
|
|
||||||
|
# target to build an object file
|
||||||
|
src/Value.cpp.o:
|
||||||
|
$(MAKE) $(MAKESILENT) -f CMakeFiles/Hazelnupp.dir/build.make CMakeFiles/Hazelnupp.dir/src/Value.cpp.o
|
||||||
|
.PHONY : src/Value.cpp.o
|
||||||
|
|
||||||
|
src/Value.i: src/Value.cpp.i
|
||||||
|
.PHONY : src/Value.i
|
||||||
|
|
||||||
|
# target to preprocess a source file
|
||||||
|
src/Value.cpp.i:
|
||||||
|
$(MAKE) $(MAKESILENT) -f CMakeFiles/Hazelnupp.dir/build.make CMakeFiles/Hazelnupp.dir/src/Value.cpp.i
|
||||||
|
.PHONY : src/Value.cpp.i
|
||||||
|
|
||||||
|
src/Value.s: src/Value.cpp.s
|
||||||
|
.PHONY : src/Value.s
|
||||||
|
|
||||||
|
# target to generate assembly for a file
|
||||||
|
src/Value.cpp.s:
|
||||||
|
$(MAKE) $(MAKESILENT) -f CMakeFiles/Hazelnupp.dir/build.make CMakeFiles/Hazelnupp.dir/src/Value.cpp.s
|
||||||
|
.PHONY : src/Value.cpp.s
|
||||||
|
|
||||||
|
src/VoidValue.o: src/VoidValue.cpp.o
|
||||||
|
.PHONY : src/VoidValue.o
|
||||||
|
|
||||||
|
# target to build an object file
|
||||||
|
src/VoidValue.cpp.o:
|
||||||
|
$(MAKE) $(MAKESILENT) -f CMakeFiles/Hazelnupp.dir/build.make CMakeFiles/Hazelnupp.dir/src/VoidValue.cpp.o
|
||||||
|
.PHONY : src/VoidValue.cpp.o
|
||||||
|
|
||||||
|
src/VoidValue.i: src/VoidValue.cpp.i
|
||||||
|
.PHONY : src/VoidValue.i
|
||||||
|
|
||||||
|
# target to preprocess a source file
|
||||||
|
src/VoidValue.cpp.i:
|
||||||
|
$(MAKE) $(MAKESILENT) -f CMakeFiles/Hazelnupp.dir/build.make CMakeFiles/Hazelnupp.dir/src/VoidValue.cpp.i
|
||||||
|
.PHONY : src/VoidValue.cpp.i
|
||||||
|
|
||||||
|
src/VoidValue.s: src/VoidValue.cpp.s
|
||||||
|
.PHONY : src/VoidValue.s
|
||||||
|
|
||||||
|
# target to generate assembly for a file
|
||||||
|
src/VoidValue.cpp.s:
|
||||||
|
$(MAKE) $(MAKESILENT) -f CMakeFiles/Hazelnupp.dir/build.make CMakeFiles/Hazelnupp.dir/src/VoidValue.cpp.s
|
||||||
|
.PHONY : src/VoidValue.cpp.s
|
||||||
|
|
||||||
|
test/Abbreviations.o: test/Abbreviations.cpp.o
|
||||||
|
.PHONY : test/Abbreviations.o
|
||||||
|
|
||||||
|
# target to build an object file
|
||||||
|
test/Abbreviations.cpp.o:
|
||||||
|
$(MAKE) $(MAKESILENT) -f CMakeFiles/test.dir/build.make CMakeFiles/test.dir/test/Abbreviations.cpp.o
|
||||||
|
.PHONY : test/Abbreviations.cpp.o
|
||||||
|
|
||||||
|
test/Abbreviations.i: test/Abbreviations.cpp.i
|
||||||
|
.PHONY : test/Abbreviations.i
|
||||||
|
|
||||||
|
# target to preprocess a source file
|
||||||
|
test/Abbreviations.cpp.i:
|
||||||
|
$(MAKE) $(MAKESILENT) -f CMakeFiles/test.dir/build.make CMakeFiles/test.dir/test/Abbreviations.cpp.i
|
||||||
|
.PHONY : test/Abbreviations.cpp.i
|
||||||
|
|
||||||
|
test/Abbreviations.s: test/Abbreviations.cpp.s
|
||||||
|
.PHONY : test/Abbreviations.s
|
||||||
|
|
||||||
|
# target to generate assembly for a file
|
||||||
|
test/Abbreviations.cpp.s:
|
||||||
|
$(MAKE) $(MAKESILENT) -f CMakeFiles/test.dir/build.make CMakeFiles/test.dir/test/Abbreviations.cpp.s
|
||||||
|
.PHONY : test/Abbreviations.cpp.s
|
||||||
|
|
||||||
|
test/Basics.o: test/Basics.cpp.o
|
||||||
|
.PHONY : test/Basics.o
|
||||||
|
|
||||||
|
# target to build an object file
|
||||||
|
test/Basics.cpp.o:
|
||||||
|
$(MAKE) $(MAKESILENT) -f CMakeFiles/test.dir/build.make CMakeFiles/test.dir/test/Basics.cpp.o
|
||||||
|
.PHONY : test/Basics.cpp.o
|
||||||
|
|
||||||
|
test/Basics.i: test/Basics.cpp.i
|
||||||
|
.PHONY : test/Basics.i
|
||||||
|
|
||||||
|
# target to preprocess a source file
|
||||||
|
test/Basics.cpp.i:
|
||||||
|
$(MAKE) $(MAKESILENT) -f CMakeFiles/test.dir/build.make CMakeFiles/test.dir/test/Basics.cpp.i
|
||||||
|
.PHONY : test/Basics.cpp.i
|
||||||
|
|
||||||
|
test/Basics.s: test/Basics.cpp.s
|
||||||
|
.PHONY : test/Basics.s
|
||||||
|
|
||||||
|
# target to generate assembly for a file
|
||||||
|
test/Basics.cpp.s:
|
||||||
|
$(MAKE) $(MAKESILENT) -f CMakeFiles/test.dir/build.make CMakeFiles/test.dir/test/Basics.cpp.s
|
||||||
|
.PHONY : test/Basics.cpp.s
|
||||||
|
|
||||||
|
test/Constraints.o: test/Constraints.cpp.o
|
||||||
|
.PHONY : test/Constraints.o
|
||||||
|
|
||||||
|
# target to build an object file
|
||||||
|
test/Constraints.cpp.o:
|
||||||
|
$(MAKE) $(MAKESILENT) -f CMakeFiles/test.dir/build.make CMakeFiles/test.dir/test/Constraints.cpp.o
|
||||||
|
.PHONY : test/Constraints.cpp.o
|
||||||
|
|
||||||
|
test/Constraints.i: test/Constraints.cpp.i
|
||||||
|
.PHONY : test/Constraints.i
|
||||||
|
|
||||||
|
# target to preprocess a source file
|
||||||
|
test/Constraints.cpp.i:
|
||||||
|
$(MAKE) $(MAKESILENT) -f CMakeFiles/test.dir/build.make CMakeFiles/test.dir/test/Constraints.cpp.i
|
||||||
|
.PHONY : test/Constraints.cpp.i
|
||||||
|
|
||||||
|
test/Constraints.s: test/Constraints.cpp.s
|
||||||
|
.PHONY : test/Constraints.s
|
||||||
|
|
||||||
|
# target to generate assembly for a file
|
||||||
|
test/Constraints.cpp.s:
|
||||||
|
$(MAKE) $(MAKESILENT) -f CMakeFiles/test.dir/build.make CMakeFiles/test.dir/test/Constraints.cpp.s
|
||||||
|
.PHONY : test/Constraints.cpp.s
|
||||||
|
|
||||||
|
test/Conversion.o: test/Conversion.cpp.o
|
||||||
|
.PHONY : test/Conversion.o
|
||||||
|
|
||||||
|
# target to build an object file
|
||||||
|
test/Conversion.cpp.o:
|
||||||
|
$(MAKE) $(MAKESILENT) -f CMakeFiles/test.dir/build.make CMakeFiles/test.dir/test/Conversion.cpp.o
|
||||||
|
.PHONY : test/Conversion.cpp.o
|
||||||
|
|
||||||
|
test/Conversion.i: test/Conversion.cpp.i
|
||||||
|
.PHONY : test/Conversion.i
|
||||||
|
|
||||||
|
# target to preprocess a source file
|
||||||
|
test/Conversion.cpp.i:
|
||||||
|
$(MAKE) $(MAKESILENT) -f CMakeFiles/test.dir/build.make CMakeFiles/test.dir/test/Conversion.cpp.i
|
||||||
|
.PHONY : test/Conversion.cpp.i
|
||||||
|
|
||||||
|
test/Conversion.s: test/Conversion.cpp.s
|
||||||
|
.PHONY : test/Conversion.s
|
||||||
|
|
||||||
|
# target to generate assembly for a file
|
||||||
|
test/Conversion.cpp.s:
|
||||||
|
$(MAKE) $(MAKESILENT) -f CMakeFiles/test.dir/build.make CMakeFiles/test.dir/test/Conversion.cpp.s
|
||||||
|
.PHONY : test/Conversion.cpp.s
|
||||||
|
|
||||||
|
test/Descriptions.o: test/Descriptions.cpp.o
|
||||||
|
.PHONY : test/Descriptions.o
|
||||||
|
|
||||||
|
# target to build an object file
|
||||||
|
test/Descriptions.cpp.o:
|
||||||
|
$(MAKE) $(MAKESILENT) -f CMakeFiles/test.dir/build.make CMakeFiles/test.dir/test/Descriptions.cpp.o
|
||||||
|
.PHONY : test/Descriptions.cpp.o
|
||||||
|
|
||||||
|
test/Descriptions.i: test/Descriptions.cpp.i
|
||||||
|
.PHONY : test/Descriptions.i
|
||||||
|
|
||||||
|
# target to preprocess a source file
|
||||||
|
test/Descriptions.cpp.i:
|
||||||
|
$(MAKE) $(MAKESILENT) -f CMakeFiles/test.dir/build.make CMakeFiles/test.dir/test/Descriptions.cpp.i
|
||||||
|
.PHONY : test/Descriptions.cpp.i
|
||||||
|
|
||||||
|
test/Descriptions.s: test/Descriptions.cpp.s
|
||||||
|
.PHONY : test/Descriptions.s
|
||||||
|
|
||||||
|
# target to generate assembly for a file
|
||||||
|
test/Descriptions.cpp.s:
|
||||||
|
$(MAKE) $(MAKESILENT) -f CMakeFiles/test.dir/build.make CMakeFiles/test.dir/test/Descriptions.cpp.s
|
||||||
|
.PHONY : test/Descriptions.cpp.s
|
||||||
|
|
||||||
|
test/main.o: test/main.cpp.o
|
||||||
|
.PHONY : test/main.o
|
||||||
|
|
||||||
|
# target to build an object file
|
||||||
|
test/main.cpp.o:
|
||||||
|
$(MAKE) $(MAKESILENT) -f CMakeFiles/test.dir/build.make CMakeFiles/test.dir/test/main.cpp.o
|
||||||
|
.PHONY : test/main.cpp.o
|
||||||
|
|
||||||
|
test/main.i: test/main.cpp.i
|
||||||
|
.PHONY : test/main.i
|
||||||
|
|
||||||
|
# target to preprocess a source file
|
||||||
|
test/main.cpp.i:
|
||||||
|
$(MAKE) $(MAKESILENT) -f CMakeFiles/test.dir/build.make CMakeFiles/test.dir/test/main.cpp.i
|
||||||
|
.PHONY : test/main.cpp.i
|
||||||
|
|
||||||
|
test/main.s: test/main.cpp.s
|
||||||
|
.PHONY : test/main.s
|
||||||
|
|
||||||
|
# target to generate assembly for a file
|
||||||
|
test/main.cpp.s:
|
||||||
|
$(MAKE) $(MAKESILENT) -f CMakeFiles/test.dir/build.make CMakeFiles/test.dir/test/main.cpp.s
|
||||||
|
.PHONY : test/main.cpp.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 "... rebuild_cache"
|
||||||
|
@echo "... Hazelnupp"
|
||||||
|
@echo "... exec"
|
||||||
|
@echo "... test"
|
||||||
|
@echo "... exec/main.o"
|
||||||
|
@echo "... exec/main.i"
|
||||||
|
@echo "... exec/main.s"
|
||||||
|
@echo "... src/CmdArgsInterface.o"
|
||||||
|
@echo "... src/CmdArgsInterface.i"
|
||||||
|
@echo "... src/CmdArgsInterface.s"
|
||||||
|
@echo "... src/FloatValue.o"
|
||||||
|
@echo "... src/FloatValue.i"
|
||||||
|
@echo "... src/FloatValue.s"
|
||||||
|
@echo "... src/IntValue.o"
|
||||||
|
@echo "... src/IntValue.i"
|
||||||
|
@echo "... src/IntValue.s"
|
||||||
|
@echo "... src/ListValue.o"
|
||||||
|
@echo "... src/ListValue.i"
|
||||||
|
@echo "... src/ListValue.s"
|
||||||
|
@echo "... src/Parameter.o"
|
||||||
|
@echo "... src/Parameter.i"
|
||||||
|
@echo "... src/Parameter.s"
|
||||||
|
@echo "... src/StringTools.o"
|
||||||
|
@echo "... src/StringTools.i"
|
||||||
|
@echo "... src/StringTools.s"
|
||||||
|
@echo "... src/StringValue.o"
|
||||||
|
@echo "... src/StringValue.i"
|
||||||
|
@echo "... src/StringValue.s"
|
||||||
|
@echo "... src/Value.o"
|
||||||
|
@echo "... src/Value.i"
|
||||||
|
@echo "... src/Value.s"
|
||||||
|
@echo "... src/VoidValue.o"
|
||||||
|
@echo "... src/VoidValue.i"
|
||||||
|
@echo "... src/VoidValue.s"
|
||||||
|
@echo "... test/Abbreviations.o"
|
||||||
|
@echo "... test/Abbreviations.i"
|
||||||
|
@echo "... test/Abbreviations.s"
|
||||||
|
@echo "... test/Basics.o"
|
||||||
|
@echo "... test/Basics.i"
|
||||||
|
@echo "... test/Basics.s"
|
||||||
|
@echo "... test/Constraints.o"
|
||||||
|
@echo "... test/Constraints.i"
|
||||||
|
@echo "... test/Constraints.s"
|
||||||
|
@echo "... test/Conversion.o"
|
||||||
|
@echo "... test/Conversion.i"
|
||||||
|
@echo "... test/Conversion.s"
|
||||||
|
@echo "... test/Descriptions.o"
|
||||||
|
@echo "... test/Descriptions.i"
|
||||||
|
@echo "... test/Descriptions.s"
|
||||||
|
@echo "... test/main.o"
|
||||||
|
@echo "... test/main.i"
|
||||||
|
@echo "... test/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:
|
||||||
|
$(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0
|
||||||
|
.PHONY : cmake_check_build_system
|
||||||
|
|
54
Hazelnupp/build/cmake_install.cmake
Normal file
54
Hazelnupp/build/cmake_install.cmake
Normal file
@ -0,0 +1,54 @@
|
|||||||
|
# Install script for directory: /home/menethil/projects/private_work/Hazelnupp/Hazelnupp
|
||||||
|
|
||||||
|
# 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 "0")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
# Is this installation the result of a crosscompile?
|
||||||
|
if(NOT DEFINED CMAKE_CROSSCOMPILING)
|
||||||
|
set(CMAKE_CROSSCOMPILING "FALSE")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
# Set default install directory permissions.
|
||||||
|
if(NOT DEFINED CMAKE_OBJDUMP)
|
||||||
|
set(CMAKE_OBJDUMP "/usr/bin/objdump")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
if(CMAKE_INSTALL_COMPONENT)
|
||||||
|
set(CMAKE_INSTALL_MANIFEST "install_manifest_${CMAKE_INSTALL_COMPONENT}.txt")
|
||||||
|
else()
|
||||||
|
set(CMAKE_INSTALL_MANIFEST "install_manifest.txt")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT
|
||||||
|
"${CMAKE_INSTALL_MANIFEST_FILES}")
|
||||||
|
file(WRITE "/home/menethil/projects/private_work/Hazelnupp/Hazelnupp/build/${CMAKE_INSTALL_MANIFEST}"
|
||||||
|
"${CMAKE_INSTALL_MANIFEST_CONTENT}")
|
BIN
Hazelnupp/build/exec
Executable file
BIN
Hazelnupp/build/exec
Executable file
Binary file not shown.
BIN
Hazelnupp/build/libHazelnupp.a
Normal file
BIN
Hazelnupp/build/libHazelnupp.a
Normal file
Binary file not shown.
130
Hazelnupp/doxygen/build/CmdArgsInterface_8cpp.html
Normal file
130
Hazelnupp/doxygen/build/CmdArgsInterface_8cpp.html
Normal file
@ -0,0 +1,130 @@
|
|||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||||
|
<head>
|
||||||
|
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=11"/>
|
||||||
|
<meta name="generator" content="Doxygen 1.9.3"/>
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
||||||
|
<title>Leonetienne/Hazelnupp: src/CmdArgsInterface.cpp File Reference</title>
|
||||||
|
<link href="tabs.css" rel="stylesheet" type="text/css"/>
|
||||||
|
<script type="text/javascript" src="jquery.js"></script>
|
||||||
|
<script type="text/javascript" src="dynsections.js"></script>
|
||||||
|
<link href="search/search.css" rel="stylesheet" type="text/css"/>
|
||||||
|
<script type="text/javascript" src="search/searchdata.js"></script>
|
||||||
|
<script type="text/javascript" src="search/search.js"></script>
|
||||||
|
<script type="text/x-mathjax-config">
|
||||||
|
MathJax.Hub.Config({
|
||||||
|
extensions: ["tex2jax.js"],
|
||||||
|
jax: ["input/TeX","output/HTML-CSS"],
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
<script type="text/javascript" async="async" src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.5/MathJax.js"></script>
|
||||||
|
<link href="doxygen.css" rel="stylesheet" type="text/css" />
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
|
||||||
|
<div id="titlearea">
|
||||||
|
<table cellspacing="0" cellpadding="0">
|
||||||
|
<tbody>
|
||||||
|
<tr id="projectrow">
|
||||||
|
<td id="projectalign">
|
||||||
|
<div id="projectname">Leonetienne/Hazelnupp
|
||||||
|
</div>
|
||||||
|
<div id="projectbrief">Simple, easy to use, command line parameter interface</div>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<!-- end header part -->
|
||||||
|
<!-- Generated by Doxygen 1.9.3 -->
|
||||||
|
<script type="text/javascript">
|
||||||
|
/* @license magnet:?xt=urn:btih:d3d9a9a6595521f9666a5e94cc830dab83b65699&dn=expat.txt MIT */
|
||||||
|
var searchBox = new SearchBox("searchBox", "search",'Search','.html');
|
||||||
|
/* @license-end */
|
||||||
|
</script>
|
||||||
|
<script type="text/javascript" src="menudata.js"></script>
|
||||||
|
<script type="text/javascript" src="menu.js"></script>
|
||||||
|
<script type="text/javascript">
|
||||||
|
/* @license magnet:?xt=urn:btih:d3d9a9a6595521f9666a5e94cc830dab83b65699&dn=expat.txt MIT */
|
||||||
|
$(function() {
|
||||||
|
initMenu('',true,false,'search.php','Search');
|
||||||
|
$(document).ready(function() { init_search(); });
|
||||||
|
});
|
||||||
|
/* @license-end */
|
||||||
|
</script>
|
||||||
|
<div id="main-nav"></div>
|
||||||
|
<!-- window showing the filter options -->
|
||||||
|
<div id="MSearchSelectWindow"
|
||||||
|
onmouseover="return searchBox.OnSearchSelectShow()"
|
||||||
|
onmouseout="return searchBox.OnSearchSelectHide()"
|
||||||
|
onkeydown="return searchBox.OnSearchSelectKey(event)">
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- iframe showing the search results (closed by default) -->
|
||||||
|
<div id="MSearchResultsWindow">
|
||||||
|
<iframe src="javascript:void(0)" frameborder="0"
|
||||||
|
name="MSearchResults" id="MSearchResults">
|
||||||
|
</iframe>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="nav-path" class="navpath">
|
||||||
|
<ul>
|
||||||
|
<li class="navelem"><a class="el" href="dir_68267d1309a1af8e8297ef4c3efbcdba.html">src</a></li> </ul>
|
||||||
|
</div>
|
||||||
|
</div><!-- top -->
|
||||||
|
<div class="header">
|
||||||
|
<div class="headertitle"><div class="title">CmdArgsInterface.cpp File Reference</div></div>
|
||||||
|
</div><!--header-->
|
||||||
|
<div class="contents">
|
||||||
|
<div class="textblock"><code>#include "<a class="el" href="CmdArgsInterface_8h_source.html">Hazelnupp/CmdArgsInterface.h</a>"</code><br />
|
||||||
|
<code>#include "<a class="el" href="VoidValue_8h_source.html">Hazelnupp/VoidValue.h</a>"</code><br />
|
||||||
|
<code>#include "<a class="el" href="IntValue_8h_source.html">Hazelnupp/IntValue.h</a>"</code><br />
|
||||||
|
<code>#include "<a class="el" href="FloatValue_8h_source.html">Hazelnupp/FloatValue.h</a>"</code><br />
|
||||||
|
<code>#include "<a class="el" href="StringValue_8h_source.html">Hazelnupp/StringValue.h</a>"</code><br />
|
||||||
|
<code>#include "<a class="el" href="ListValue_8h_source.html">Hazelnupp/ListValue.h</a>"</code><br />
|
||||||
|
<code>#include "<a class="el" href="HazelnuppException_8h_source.html">Hazelnupp/HazelnuppException.h</a>"</code><br />
|
||||||
|
<code>#include "<a class="el" href="Placeholders_8h_source.html">Hazelnupp/Placeholders.h</a>"</code><br />
|
||||||
|
<code>#include "<a class="el" href="StringTools_8h_source.html">Hazelnupp/StringTools.h</a>"</code><br />
|
||||||
|
<code>#include <iostream></code><br />
|
||||||
|
<code>#include <cstdlib></code><br />
|
||||||
|
</div><div class="textblock"><div class="dynheader">
|
||||||
|
Include dependency graph for CmdArgsInterface.cpp:</div>
|
||||||
|
<div class="dyncontent">
|
||||||
|
<div class="center"><img src="CmdArgsInterface_8cpp__incl.png" border="0" usemap="#asrc_2CmdArgsInterface_8cpp" alt=""/></div>
|
||||||
|
<map name="asrc_2CmdArgsInterface_8cpp" id="asrc_2CmdArgsInterface_8cpp">
|
||||||
|
<area shape="rect" title=" " alt="" coords="922,5,1095,32"/>
|
||||||
|
<area shape="rect" href="CmdArgsInterface_8h.html" title=" " alt="" coords="769,80,971,107"/>
|
||||||
|
<area shape="rect" href="VoidValue_8h.html" title=" " alt="" coords="588,80,744,107"/>
|
||||||
|
<area shape="rect" href="IntValue_8h.html" title=" " alt="" coords="419,80,564,107"/>
|
||||||
|
<area shape="rect" href="FloatValue_8h.html" title=" " alt="" coords="5,155,164,181"/>
|
||||||
|
<area shape="rect" href="StringValue_8h.html" title=" " alt="" coords="921,155,1085,181"/>
|
||||||
|
<area shape="rect" href="ListValue_8h.html" title=" " alt="" coords="305,155,457,181"/>
|
||||||
|
<area shape="rect" href="HazelnuppException_8h.html" title=" " alt="" coords="1127,229,1341,256"/>
|
||||||
|
<area shape="rect" href="Placeholders_8h.html" title=" " alt="" coords="1365,229,1537,256"/>
|
||||||
|
<area shape="rect" href="StringTools_8h.html" title=" " alt="" coords="939,229,1102,256"/>
|
||||||
|
<area shape="rect" title=" " alt="" coords="1262,80,1334,107"/>
|
||||||
|
<area shape="rect" title=" " alt="" coords="1359,80,1419,107"/>
|
||||||
|
<area shape="rect" href="Parameter_8h.html" title=" " alt="" coords="188,155,280,181"/>
|
||||||
|
<area shape="rect" title=" " alt="" coords="643,304,702,331"/>
|
||||||
|
<area shape="rect" href="ParamConstraint_8h.html" title=" " alt="" coords="735,229,864,256"/>
|
||||||
|
<area shape="rect" title=" " alt="" coords="735,155,845,181"/>
|
||||||
|
<area shape="rect" href="Version_8h.html" title=" " alt="" coords="583,155,659,181"/>
|
||||||
|
<area shape="rect" href="Value_8h.html" title=" " alt="" coords="461,229,527,256"/>
|
||||||
|
<area shape="rect" title=" " alt="" coords="875,379,929,405"/>
|
||||||
|
<area shape="rect" title=" " alt="" coords="199,304,269,331"/>
|
||||||
|
<area shape="rect" href="DataType_8h.html" title=" " alt="" coords="727,304,813,331"/>
|
||||||
|
<area shape="rect" title=" " alt="" coords="1217,304,1296,331"/>
|
||||||
|
<area shape="rect" title=" " alt="" coords="1073,304,1142,331"/>
|
||||||
|
<area shape="rect" title=" " alt="" coords="990,304,1049,331"/>
|
||||||
|
</map>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<p><a href="CmdArgsInterface_8cpp_source.html">Go to the source code of this file.</a></p>
|
||||||
|
</div><!-- contents -->
|
||||||
|
<!-- start footer part -->
|
||||||
|
<hr class="footer"/><address class="footer"><small>
|
||||||
|
Generated on Thu Apr 28 2022 12:05:07 for Leonetienne/Hazelnupp by <a href="https://www.doxygen.org/index.html"><img class="footer" src="doxygen.svg" width="104" height="31" alt="doxygen"/></a> 1.9.3
|
||||||
|
</small></address>
|
||||||
|
</body>
|
||||||
|
</html>
|
26
Hazelnupp/doxygen/build/CmdArgsInterface_8cpp__incl.map
Normal file
26
Hazelnupp/doxygen/build/CmdArgsInterface_8cpp__incl.map
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
<map id="src/CmdArgsInterface.cpp" name="src/CmdArgsInterface.cpp">
|
||||||
|
<area shape="rect" id="node1" title=" " alt="" coords="922,5,1095,32"/>
|
||||||
|
<area shape="rect" id="node2" href="$CmdArgsInterface_8h.html" title=" " alt="" coords="769,80,971,107"/>
|
||||||
|
<area shape="rect" id="node12" href="$VoidValue_8h.html" title=" " alt="" coords="588,80,744,107"/>
|
||||||
|
<area shape="rect" id="node13" href="$IntValue_8h.html" title=" " alt="" coords="419,80,564,107"/>
|
||||||
|
<area shape="rect" id="node14" href="$FloatValue_8h.html" title=" " alt="" coords="5,155,164,181"/>
|
||||||
|
<area shape="rect" id="node15" href="$StringValue_8h.html" title=" " alt="" coords="921,155,1085,181"/>
|
||||||
|
<area shape="rect" id="node16" href="$ListValue_8h.html" title=" " alt="" coords="305,155,457,181"/>
|
||||||
|
<area shape="rect" id="node17" href="$HazelnuppException_8h.html" title=" " alt="" coords="1127,229,1341,256"/>
|
||||||
|
<area shape="rect" id="node20" href="$Placeholders_8h.html" title=" " alt="" coords="1365,229,1537,256"/>
|
||||||
|
<area shape="rect" id="node21" href="$StringTools_8h.html" title=" " alt="" coords="939,229,1102,256"/>
|
||||||
|
<area shape="rect" id="node23" title=" " alt="" coords="1262,80,1334,107"/>
|
||||||
|
<area shape="rect" id="node24" title=" " alt="" coords="1359,80,1419,107"/>
|
||||||
|
<area shape="rect" id="node3" href="$Parameter_8h.html" title=" " alt="" coords="188,155,280,181"/>
|
||||||
|
<area shape="rect" id="node8" title=" " alt="" coords="643,304,702,331"/>
|
||||||
|
<area shape="rect" id="node9" href="$ParamConstraint_8h.html" title=" " alt="" coords="735,229,864,256"/>
|
||||||
|
<area shape="rect" id="node10" title=" " alt="" coords="735,155,845,181"/>
|
||||||
|
<area shape="rect" id="node11" href="$Version_8h.html" title=" " alt="" coords="583,155,659,181"/>
|
||||||
|
<area shape="rect" id="node4" href="$Value_8h.html" title=" " alt="" coords="461,229,527,256"/>
|
||||||
|
<area shape="rect" id="node6" title=" " alt="" coords="875,379,929,405"/>
|
||||||
|
<area shape="rect" id="node7" title=" " alt="" coords="199,304,269,331"/>
|
||||||
|
<area shape="rect" id="node5" href="$DataType_8h.html" title=" " alt="" coords="727,304,813,331"/>
|
||||||
|
<area shape="rect" id="node18" title=" " alt="" coords="1217,304,1296,331"/>
|
||||||
|
<area shape="rect" id="node19" title=" " alt="" coords="1073,304,1142,331"/>
|
||||||
|
<area shape="rect" id="node22" title=" " alt="" coords="990,304,1049,331"/>
|
||||||
|
</map>
|
1
Hazelnupp/doxygen/build/CmdArgsInterface_8cpp__incl.md5
Normal file
1
Hazelnupp/doxygen/build/CmdArgsInterface_8cpp__incl.md5
Normal file
@ -0,0 +1 @@
|
|||||||
|
7829f55d7a9dfd7244c5cc790b73d449
|
BIN
Hazelnupp/doxygen/build/CmdArgsInterface_8cpp__incl.png
Normal file
BIN
Hazelnupp/doxygen/build/CmdArgsInterface_8cpp__incl.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 125 KiB |
842
Hazelnupp/doxygen/build/CmdArgsInterface_8cpp_source.html
Normal file
842
Hazelnupp/doxygen/build/CmdArgsInterface_8cpp_source.html
Normal file
@ -0,0 +1,842 @@
|
|||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||||
|
<head>
|
||||||
|
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=11"/>
|
||||||
|
<meta name="generator" content="Doxygen 1.9.3"/>
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
||||||
|
<title>Leonetienne/Hazelnupp: src/CmdArgsInterface.cpp Source File</title>
|
||||||
|
<link href="tabs.css" rel="stylesheet" type="text/css"/>
|
||||||
|
<script type="text/javascript" src="jquery.js"></script>
|
||||||
|
<script type="text/javascript" src="dynsections.js"></script>
|
||||||
|
<link href="search/search.css" rel="stylesheet" type="text/css"/>
|
||||||
|
<script type="text/javascript" src="search/searchdata.js"></script>
|
||||||
|
<script type="text/javascript" src="search/search.js"></script>
|
||||||
|
<script type="text/x-mathjax-config">
|
||||||
|
MathJax.Hub.Config({
|
||||||
|
extensions: ["tex2jax.js"],
|
||||||
|
jax: ["input/TeX","output/HTML-CSS"],
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
<script type="text/javascript" async="async" src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.5/MathJax.js"></script>
|
||||||
|
<link href="doxygen.css" rel="stylesheet" type="text/css" />
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
|
||||||
|
<div id="titlearea">
|
||||||
|
<table cellspacing="0" cellpadding="0">
|
||||||
|
<tbody>
|
||||||
|
<tr id="projectrow">
|
||||||
|
<td id="projectalign">
|
||||||
|
<div id="projectname">Leonetienne/Hazelnupp
|
||||||
|
</div>
|
||||||
|
<div id="projectbrief">Simple, easy to use, command line parameter interface</div>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<!-- end header part -->
|
||||||
|
<!-- Generated by Doxygen 1.9.3 -->
|
||||||
|
<script type="text/javascript">
|
||||||
|
/* @license magnet:?xt=urn:btih:d3d9a9a6595521f9666a5e94cc830dab83b65699&dn=expat.txt MIT */
|
||||||
|
var searchBox = new SearchBox("searchBox", "search",'Search','.html');
|
||||||
|
/* @license-end */
|
||||||
|
</script>
|
||||||
|
<script type="text/javascript" src="menudata.js"></script>
|
||||||
|
<script type="text/javascript" src="menu.js"></script>
|
||||||
|
<script type="text/javascript">
|
||||||
|
/* @license magnet:?xt=urn:btih:d3d9a9a6595521f9666a5e94cc830dab83b65699&dn=expat.txt MIT */
|
||||||
|
$(function() {
|
||||||
|
initMenu('',true,false,'search.php','Search');
|
||||||
|
$(document).ready(function() { init_search(); });
|
||||||
|
});
|
||||||
|
/* @license-end */
|
||||||
|
</script>
|
||||||
|
<div id="main-nav"></div>
|
||||||
|
<!-- window showing the filter options -->
|
||||||
|
<div id="MSearchSelectWindow"
|
||||||
|
onmouseover="return searchBox.OnSearchSelectShow()"
|
||||||
|
onmouseout="return searchBox.OnSearchSelectHide()"
|
||||||
|
onkeydown="return searchBox.OnSearchSelectKey(event)">
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- iframe showing the search results (closed by default) -->
|
||||||
|
<div id="MSearchResultsWindow">
|
||||||
|
<iframe src="javascript:void(0)" frameborder="0"
|
||||||
|
name="MSearchResults" id="MSearchResults">
|
||||||
|
</iframe>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="nav-path" class="navpath">
|
||||||
|
<ul>
|
||||||
|
<li class="navelem"><a class="el" href="dir_68267d1309a1af8e8297ef4c3efbcdba.html">src</a></li> </ul>
|
||||||
|
</div>
|
||||||
|
</div><!-- top -->
|
||||||
|
<div class="header">
|
||||||
|
<div class="headertitle"><div class="title">CmdArgsInterface.cpp</div></div>
|
||||||
|
</div><!--header-->
|
||||||
|
<div class="contents">
|
||||||
|
<a href="CmdArgsInterface_8cpp.html">Go to the documentation of this file.</a><div class="fragment"><div class="line"><a id="l00001" name="l00001"></a><span class="lineno"> 1</span><span class="preprocessor">#include "<a class="code" href="CmdArgsInterface_8h.html">Hazelnupp/CmdArgsInterface.h</a>"</span></div>
|
||||||
|
<div class="line"><a id="l00002" name="l00002"></a><span class="lineno"> 2</span><span class="preprocessor">#include "<a class="code" href="VoidValue_8h.html">Hazelnupp/VoidValue.h</a>"</span></div>
|
||||||
|
<div class="line"><a id="l00003" name="l00003"></a><span class="lineno"> 3</span><span class="preprocessor">#include "<a class="code" href="IntValue_8h.html">Hazelnupp/IntValue.h</a>"</span></div>
|
||||||
|
<div class="line"><a id="l00004" name="l00004"></a><span class="lineno"> 4</span><span class="preprocessor">#include "<a class="code" href="FloatValue_8h.html">Hazelnupp/FloatValue.h</a>"</span></div>
|
||||||
|
<div class="line"><a id="l00005" name="l00005"></a><span class="lineno"> 5</span><span class="preprocessor">#include "<a class="code" href="StringValue_8h.html">Hazelnupp/StringValue.h</a>"</span></div>
|
||||||
|
<div class="line"><a id="l00006" name="l00006"></a><span class="lineno"> 6</span><span class="preprocessor">#include "<a class="code" href="ListValue_8h.html">Hazelnupp/ListValue.h</a>"</span></div>
|
||||||
|
<div class="line"><a id="l00007" name="l00007"></a><span class="lineno"> 7</span><span class="preprocessor">#include "<a class="code" href="HazelnuppException_8h.html">Hazelnupp/HazelnuppException.h</a>"</span></div>
|
||||||
|
<div class="line"><a id="l00008" name="l00008"></a><span class="lineno"> 8</span><span class="preprocessor">#include "<a class="code" href="Placeholders_8h.html">Hazelnupp/Placeholders.h</a>"</span></div>
|
||||||
|
<div class="line"><a id="l00009" name="l00009"></a><span class="lineno"> 9</span><span class="preprocessor">#include "<a class="code" href="StringTools_8h.html">Hazelnupp/StringTools.h</a>"</span></div>
|
||||||
|
<div class="line"><a id="l00010" name="l00010"></a><span class="lineno"> 10</span><span class="preprocessor">#include <iostream></span></div>
|
||||||
|
<div class="line"><a id="l00011" name="l00011"></a><span class="lineno"> 11</span><span class="preprocessor">#include <cstdlib></span></div>
|
||||||
|
<div class="line"><a id="l00012" name="l00012"></a><span class="lineno"> 12</span> </div>
|
||||||
|
<div class="line"><a id="l00013" name="l00013"></a><span class="lineno"> 13</span><span class="keyword">using namespace </span><a class="code hl_namespace" href="namespaceHazelnp.html">Hazelnp</a>;</div>
|
||||||
|
<div class="line"><a id="l00014" name="l00014"></a><span class="lineno"> 14</span> </div>
|
||||||
|
<div class="line"><a id="l00015" name="l00015"></a><span class="lineno"><a class="line" href="classHazelnp_1_1CmdArgsInterface.html#aa1189c249bf0d8a4fbd5fb8f03a30212"> 15</a></span>CmdArgsInterface::CmdArgsInterface()</div>
|
||||||
|
<div class="line"><a id="l00016" name="l00016"></a><span class="lineno"> 16</span>{</div>
|
||||||
|
<div class="line"><a id="l00017" name="l00017"></a><span class="lineno"> 17</span> <span class="keywordflow">return</span>;</div>
|
||||||
|
<div class="line"><a id="l00018" name="l00018"></a><span class="lineno"> 18</span>}</div>
|
||||||
|
<div class="line"><a id="l00019" name="l00019"></a><span class="lineno"> 19</span> </div>
|
||||||
|
<div class="line"><a id="l00020" name="l00020"></a><span class="lineno"><a class="line" href="classHazelnp_1_1CmdArgsInterface.html#ad79ff83ead06900eb7b45d6c563703d9"> 20</a></span><a class="code hl_function" href="classHazelnp_1_1CmdArgsInterface.html#aa1189c249bf0d8a4fbd5fb8f03a30212">CmdArgsInterface::CmdArgsInterface</a>(<span class="keyword">const</span> <span class="keywordtype">int</span> argc, <span class="keyword">const</span> <span class="keywordtype">char</span>* <span class="keyword">const</span>* argv)</div>
|
||||||
|
<div class="line"><a id="l00021" name="l00021"></a><span class="lineno"> 21</span>{</div>
|
||||||
|
<div class="line"><a id="l00022" name="l00022"></a><span class="lineno"> 22</span> <a class="code hl_function" href="classHazelnp_1_1CmdArgsInterface.html#a1f4845041e08b3335510de44fafaee19">Parse</a>(argc, argv);</div>
|
||||||
|
<div class="line"><a id="l00023" name="l00023"></a><span class="lineno"> 23</span> <span class="keywordflow">return</span>;</div>
|
||||||
|
<div class="line"><a id="l00024" name="l00024"></a><span class="lineno"> 24</span>}</div>
|
||||||
|
<div class="line"><a id="l00025" name="l00025"></a><span class="lineno"> 25</span> </div>
|
||||||
|
<div class="line"><a id="l00026" name="l00026"></a><span class="lineno"><a class="line" href="classHazelnp_1_1CmdArgsInterface.html#aadc75b3b6c9662cfbd4a936468d50466"> 26</a></span><a class="code hl_function" href="classHazelnp_1_1CmdArgsInterface.html#aadc75b3b6c9662cfbd4a936468d50466">CmdArgsInterface::~CmdArgsInterface</a>()</div>
|
||||||
|
<div class="line"><a id="l00027" name="l00027"></a><span class="lineno"> 27</span>{</div>
|
||||||
|
<div class="line"><a id="l00028" name="l00028"></a><span class="lineno"> 28</span> <span class="keywordflow">for</span> (<span class="keyword">auto</span>& it : parameters)</div>
|
||||||
|
<div class="line"><a id="l00029" name="l00029"></a><span class="lineno"> 29</span> <span class="keyword">delete</span> it.second;</div>
|
||||||
|
<div class="line"><a id="l00030" name="l00030"></a><span class="lineno"> 30</span> </div>
|
||||||
|
<div class="line"><a id="l00031" name="l00031"></a><span class="lineno"> 31</span> parameters.clear();</div>
|
||||||
|
<div class="line"><a id="l00032" name="l00032"></a><span class="lineno"> 32</span> </div>
|
||||||
|
<div class="line"><a id="l00033" name="l00033"></a><span class="lineno"> 33</span> <span class="keywordflow">return</span>;</div>
|
||||||
|
<div class="line"><a id="l00034" name="l00034"></a><span class="lineno"> 34</span>}</div>
|
||||||
|
<div class="line"><a id="l00035" name="l00035"></a><span class="lineno"> 35</span> </div>
|
||||||
|
<div class="line"><a id="l00036" name="l00036"></a><span class="lineno"><a class="line" href="classHazelnp_1_1CmdArgsInterface.html#a1f4845041e08b3335510de44fafaee19"> 36</a></span><span class="keywordtype">void</span> <a class="code hl_function" href="classHazelnp_1_1CmdArgsInterface.html#a1f4845041e08b3335510de44fafaee19">CmdArgsInterface::Parse</a>(<span class="keyword">const</span> <span class="keywordtype">int</span> argc, <span class="keyword">const</span> <span class="keywordtype">char</span>* <span class="keyword">const</span>* argv)</div>
|
||||||
|
<div class="line"><a id="l00037" name="l00037"></a><span class="lineno"> 37</span>{</div>
|
||||||
|
<div class="line"><a id="l00038" name="l00038"></a><span class="lineno"> 38</span> <span class="keywordflow">try</span></div>
|
||||||
|
<div class="line"><a id="l00039" name="l00039"></a><span class="lineno"> 39</span> {</div>
|
||||||
|
<div class="line"><a id="l00040" name="l00040"></a><span class="lineno"> 40</span> <span class="comment">// Populate raw arguments</span></div>
|
||||||
|
<div class="line"><a id="l00041" name="l00041"></a><span class="lineno"> 41</span> PopulateRawArgs(argc, argv);</div>
|
||||||
|
<div class="line"><a id="l00042" name="l00042"></a><span class="lineno"> 42</span> </div>
|
||||||
|
<div class="line"><a id="l00043" name="l00043"></a><span class="lineno"> 43</span> <span class="comment">// Expand abbreviations</span></div>
|
||||||
|
<div class="line"><a id="l00044" name="l00044"></a><span class="lineno"> 44</span> ExpandAbbreviations();</div>
|
||||||
|
<div class="line"><a id="l00045" name="l00045"></a><span class="lineno"> 45</span> </div>
|
||||||
|
<div class="line"><a id="l00046" name="l00046"></a><span class="lineno"> 46</span> executableName = std::string(rawArgs[0]);</div>
|
||||||
|
<div class="line"><a id="l00047" name="l00047"></a><span class="lineno"> 47</span> </div>
|
||||||
|
<div class="line"><a id="l00048" name="l00048"></a><span class="lineno"> 48</span> <span class="comment">// Read and parse all parameters</span></div>
|
||||||
|
<div class="line"><a id="l00049" name="l00049"></a><span class="lineno"> 49</span> std::size_t i = 1;</div>
|
||||||
|
<div class="line"><a id="l00050" name="l00050"></a><span class="lineno"> 50</span> <span class="keywordflow">while</span> (i < rawArgs.size())</div>
|
||||||
|
<div class="line"><a id="l00051" name="l00051"></a><span class="lineno"> 51</span> {</div>
|
||||||
|
<div class="line"><a id="l00052" name="l00052"></a><span class="lineno"> 52</span> <span class="keywordflow">if</span> ((rawArgs[i].length() > 2) && (rawArgs[i].substr(0, 2) == <span class="stringliteral">"--"</span>))</div>
|
||||||
|
<div class="line"><a id="l00053" name="l00053"></a><span class="lineno"> 53</span> {</div>
|
||||||
|
<div class="line"><a id="l00054" name="l00054"></a><span class="lineno"> 54</span> <a class="code hl_class" href="classHazelnp_1_1Parameter.html">Parameter</a>* param = <span class="keyword">nullptr</span>;</div>
|
||||||
|
<div class="line"><a id="l00055" name="l00055"></a><span class="lineno"> 55</span> i = ParseNextParameter(i, param);</div>
|
||||||
|
<div class="line"><a id="l00056" name="l00056"></a><span class="lineno"> 56</span> </div>
|
||||||
|
<div class="line"><a id="l00057" name="l00057"></a><span class="lineno"> 57</span> parameters.insert(std::pair<std::string, Parameter*>(param-><a class="code hl_function" href="classHazelnp_1_1Parameter.html#a7acd68ce06eec06ab286b1a062f9c8d6">Key</a>(), param));</div>
|
||||||
|
<div class="line"><a id="l00058" name="l00058"></a><span class="lineno"> 58</span> }</div>
|
||||||
|
<div class="line"><a id="l00059" name="l00059"></a><span class="lineno"> 59</span> <span class="keywordflow">else</span></div>
|
||||||
|
<div class="line"><a id="l00060" name="l00060"></a><span class="lineno"> 60</span> i++;</div>
|
||||||
|
<div class="line"><a id="l00061" name="l00061"></a><span class="lineno"> 61</span> }</div>
|
||||||
|
<div class="line"><a id="l00062" name="l00062"></a><span class="lineno"> 62</span> </div>
|
||||||
|
<div class="line"><a id="l00063" name="l00063"></a><span class="lineno"> 63</span> <span class="comment">// Apply constraints such as default values, and required parameters.</span></div>
|
||||||
|
<div class="line"><a id="l00064" name="l00064"></a><span class="lineno"> 64</span> <span class="comment">// Types have already been enforced.</span></div>
|
||||||
|
<div class="line"><a id="l00065" name="l00065"></a><span class="lineno"> 65</span> <span class="comment">// Dont apply constraints when we are just printind the param docs</span></div>
|
||||||
|
<div class="line"><a id="l00066" name="l00066"></a><span class="lineno"> 66</span> <span class="keywordflow">if</span> ((!catchHelp) || (!<a class="code hl_function" href="classHazelnp_1_1CmdArgsInterface.html#a3a7fa36fe69ee8bf3b400983a21ecd24">HasParam</a>(<span class="stringliteral">"--help"</span>)))</div>
|
||||||
|
<div class="line"><a id="l00067" name="l00067"></a><span class="lineno"> 67</span> ApplyConstraints();</div>
|
||||||
|
<div class="line"><a id="l00068" name="l00068"></a><span class="lineno"> 68</span> }</div>
|
||||||
|
<div class="line"><a id="l00069" name="l00069"></a><span class="lineno"> 69</span> <span class="keywordflow">catch</span> (<span class="keyword">const</span> <a class="code hl_class" href="classHazelnp_1_1HazelnuppConstraintIncompatibleParameters.html">HazelnuppConstraintIncompatibleParameters</a>& exc)</div>
|
||||||
|
<div class="line"><a id="l00070" name="l00070"></a><span class="lineno"> 70</span> {</div>
|
||||||
|
<div class="line"><a id="l00071" name="l00071"></a><span class="lineno"> 71</span> <span class="keywordflow">if</span> (crashOnFail)</div>
|
||||||
|
<div class="line"><a id="l00072" name="l00072"></a><span class="lineno"> 72</span> {</div>
|
||||||
|
<div class="line"><a id="l00073" name="l00073"></a><span class="lineno"> 73</span> std::cout << <a class="code hl_function" href="classHazelnp_1_1CmdArgsInterface.html#a9b9bc5c4443799ea847077e9cefb1927">GenerateDocumentation</a>() << std::endl << std::endl;</div>
|
||||||
|
<div class="line"><a id="l00074" name="l00074"></a><span class="lineno"> 74</span> std::cerr << <span class="stringliteral">"Parameter error: "</span> << exc.<a class="code hl_function" href="classHazelnp_1_1HazelnuppException.html#a0ad1471a4613f1c53ae8b21c7ed7096b">What</a>() << std::endl;</div>
|
||||||
|
<div class="line"><a id="l00075" name="l00075"></a><span class="lineno"> 75</span> exit(-1000);</div>
|
||||||
|
<div class="line"><a id="l00076" name="l00076"></a><span class="lineno"> 76</span> }</div>
|
||||||
|
<div class="line"><a id="l00077" name="l00077"></a><span class="lineno"> 77</span> <span class="keywordflow">else</span></div>
|
||||||
|
<div class="line"><a id="l00078" name="l00078"></a><span class="lineno"> 78</span> <span class="keywordflow">throw</span> exc; <span class="comment">// yeet</span></div>
|
||||||
|
<div class="line"><a id="l00079" name="l00079"></a><span class="lineno"> 79</span> }</div>
|
||||||
|
<div class="line"><a id="l00080" name="l00080"></a><span class="lineno"> 80</span> <span class="keywordflow">catch</span> (<span class="keyword">const</span> <a class="code hl_class" href="classHazelnp_1_1HazelnuppConstraintMissingValue.html">HazelnuppConstraintMissingValue</a>& exc)</div>
|
||||||
|
<div class="line"><a id="l00081" name="l00081"></a><span class="lineno"> 81</span> {</div>
|
||||||
|
<div class="line"><a id="l00082" name="l00082"></a><span class="lineno"> 82</span> <span class="keywordflow">if</span> (crashOnFail)</div>
|
||||||
|
<div class="line"><a id="l00083" name="l00083"></a><span class="lineno"> 83</span> {</div>
|
||||||
|
<div class="line"><a id="l00084" name="l00084"></a><span class="lineno"> 84</span> std::cout << <a class="code hl_function" href="classHazelnp_1_1CmdArgsInterface.html#a9b9bc5c4443799ea847077e9cefb1927">GenerateDocumentation</a>() << std::endl << std::endl;</div>
|
||||||
|
<div class="line"><a id="l00085" name="l00085"></a><span class="lineno"> 85</span> std::cerr << <span class="stringliteral">"Parameter error: "</span> << exc.<a class="code hl_function" href="classHazelnp_1_1HazelnuppException.html#a0ad1471a4613f1c53ae8b21c7ed7096b">What</a>() << std::endl;</div>
|
||||||
|
<div class="line"><a id="l00086" name="l00086"></a><span class="lineno"> 86</span> exit(-1001);</div>
|
||||||
|
<div class="line"><a id="l00087" name="l00087"></a><span class="lineno"> 87</span> }</div>
|
||||||
|
<div class="line"><a id="l00088" name="l00088"></a><span class="lineno"> 88</span> <span class="keywordflow">else</span></div>
|
||||||
|
<div class="line"><a id="l00089" name="l00089"></a><span class="lineno"> 89</span> <span class="keywordflow">throw</span> exc; <span class="comment">// yeet</span></div>
|
||||||
|
<div class="line"><a id="l00090" name="l00090"></a><span class="lineno"> 90</span> }</div>
|
||||||
|
<div class="line"><a id="l00091" name="l00091"></a><span class="lineno"> 91</span> <span class="keywordflow">catch</span> (<span class="keyword">const</span> <a class="code hl_class" href="classHazelnp_1_1HazelnuppConstraintTypeMissmatch.html">HazelnuppConstraintTypeMissmatch</a>& exc)</div>
|
||||||
|
<div class="line"><a id="l00092" name="l00092"></a><span class="lineno"> 92</span> {</div>
|
||||||
|
<div class="line"><a id="l00093" name="l00093"></a><span class="lineno"> 93</span> <span class="keywordflow">if</span> (crashOnFail)</div>
|
||||||
|
<div class="line"><a id="l00094" name="l00094"></a><span class="lineno"> 94</span> {</div>
|
||||||
|
<div class="line"><a id="l00095" name="l00095"></a><span class="lineno"> 95</span> std::cout << <a class="code hl_function" href="classHazelnp_1_1CmdArgsInterface.html#a9b9bc5c4443799ea847077e9cefb1927">GenerateDocumentation</a>() << std::endl << std::endl;</div>
|
||||||
|
<div class="line"><a id="l00096" name="l00096"></a><span class="lineno"> 96</span> std::cerr << <span class="stringliteral">"Parameter error: "</span> << exc.<a class="code hl_function" href="classHazelnp_1_1HazelnuppException.html#a0ad1471a4613f1c53ae8b21c7ed7096b">What</a>() << std::endl;</div>
|
||||||
|
<div class="line"><a id="l00097" name="l00097"></a><span class="lineno"> 97</span> exit(-1002);</div>
|
||||||
|
<div class="line"><a id="l00098" name="l00098"></a><span class="lineno"> 98</span> }</div>
|
||||||
|
<div class="line"><a id="l00099" name="l00099"></a><span class="lineno"> 99</span> <span class="keywordflow">else</span></div>
|
||||||
|
<div class="line"><a id="l00100" name="l00100"></a><span class="lineno"> 100</span> <span class="keywordflow">throw</span> exc; <span class="comment">// yeet</span></div>
|
||||||
|
<div class="line"><a id="l00101" name="l00101"></a><span class="lineno"> 101</span> }</div>
|
||||||
|
<div class="line"><a id="l00102" name="l00102"></a><span class="lineno"> 102</span> <span class="keywordflow">catch</span> (<span class="keyword">const</span> <a class="code hl_class" href="classHazelnp_1_1HazelnuppConstraintException.html">HazelnuppConstraintException</a>& exc)</div>
|
||||||
|
<div class="line"><a id="l00103" name="l00103"></a><span class="lineno"> 103</span> {</div>
|
||||||
|
<div class="line"><a id="l00104" name="l00104"></a><span class="lineno"> 104</span> <span class="keywordflow">if</span> (crashOnFail)</div>
|
||||||
|
<div class="line"><a id="l00105" name="l00105"></a><span class="lineno"> 105</span> {</div>
|
||||||
|
<div class="line"><a id="l00106" name="l00106"></a><span class="lineno"> 106</span> std::cout << <a class="code hl_function" href="classHazelnp_1_1CmdArgsInterface.html#a9b9bc5c4443799ea847077e9cefb1927">GenerateDocumentation</a>() << std::endl << std::endl;</div>
|
||||||
|
<div class="line"><a id="l00107" name="l00107"></a><span class="lineno"> 107</span> std::cerr << <span class="stringliteral">"Parameter error: "</span> << exc.<a class="code hl_function" href="classHazelnp_1_1HazelnuppException.html#a0ad1471a4613f1c53ae8b21c7ed7096b">What</a>() << std::endl;</div>
|
||||||
|
<div class="line"><a id="l00108" name="l00108"></a><span class="lineno"> 108</span> exit(-1003);</div>
|
||||||
|
<div class="line"><a id="l00109" name="l00109"></a><span class="lineno"> 109</span> }</div>
|
||||||
|
<div class="line"><a id="l00110" name="l00110"></a><span class="lineno"> 110</span> <span class="keywordflow">else</span></div>
|
||||||
|
<div class="line"><a id="l00111" name="l00111"></a><span class="lineno"> 111</span> <span class="keywordflow">throw</span> exc; <span class="comment">// yeet</span></div>
|
||||||
|
<div class="line"><a id="l00112" name="l00112"></a><span class="lineno"> 112</span> }</div>
|
||||||
|
<div class="line"><a id="l00113" name="l00113"></a><span class="lineno"> 113</span> <span class="keywordflow">catch</span> (<span class="keyword">const</span> <a class="code hl_class" href="classHazelnp_1_1HazelnuppException.html">HazelnuppException</a>& exc)</div>
|
||||||
|
<div class="line"><a id="l00114" name="l00114"></a><span class="lineno"> 114</span> {</div>
|
||||||
|
<div class="line"><a id="l00115" name="l00115"></a><span class="lineno"> 115</span> <span class="keywordflow">if</span> (crashOnFail)</div>
|
||||||
|
<div class="line"><a id="l00116" name="l00116"></a><span class="lineno"> 116</span> {</div>
|
||||||
|
<div class="line"><a id="l00117" name="l00117"></a><span class="lineno"> 117</span> std::cout << <a class="code hl_function" href="classHazelnp_1_1CmdArgsInterface.html#a9b9bc5c4443799ea847077e9cefb1927">GenerateDocumentation</a>() << std::endl << std::endl;</div>
|
||||||
|
<div class="line"><a id="l00118" name="l00118"></a><span class="lineno"> 118</span> std::cerr << <span class="stringliteral">"Parameter error: "</span> << exc.<a class="code hl_function" href="classHazelnp_1_1HazelnuppException.html#a0ad1471a4613f1c53ae8b21c7ed7096b">What</a>() << std::endl;</div>
|
||||||
|
<div class="line"><a id="l00119" name="l00119"></a><span class="lineno"> 119</span> exit(-1004);</div>
|
||||||
|
<div class="line"><a id="l00120" name="l00120"></a><span class="lineno"> 120</span> }</div>
|
||||||
|
<div class="line"><a id="l00121" name="l00121"></a><span class="lineno"> 121</span> <span class="keywordflow">else</span></div>
|
||||||
|
<div class="line"><a id="l00122" name="l00122"></a><span class="lineno"> 122</span> <span class="keywordflow">throw</span> exc; <span class="comment">// yeet</span></div>
|
||||||
|
<div class="line"><a id="l00123" name="l00123"></a><span class="lineno"> 123</span> }</div>
|
||||||
|
<div class="line"><a id="l00124" name="l00124"></a><span class="lineno"> 124</span> </div>
|
||||||
|
<div class="line"><a id="l00125" name="l00125"></a><span class="lineno"> 125</span> <span class="comment">// Catch --help parameter</span></div>
|
||||||
|
<div class="line"><a id="l00126" name="l00126"></a><span class="lineno"> 126</span> <span class="keywordflow">if</span> ((catchHelp) && (<a class="code hl_function" href="classHazelnp_1_1CmdArgsInterface.html#a3a7fa36fe69ee8bf3b400983a21ecd24">HasParam</a>(<span class="stringliteral">"--help"</span>)))</div>
|
||||||
|
<div class="line"><a id="l00127" name="l00127"></a><span class="lineno"> 127</span> {</div>
|
||||||
|
<div class="line"><a id="l00128" name="l00128"></a><span class="lineno"> 128</span> std::cout << <a class="code hl_function" href="classHazelnp_1_1CmdArgsInterface.html#a9b9bc5c4443799ea847077e9cefb1927">GenerateDocumentation</a>() << std::endl;</div>
|
||||||
|
<div class="line"><a id="l00129" name="l00129"></a><span class="lineno"> 129</span> exit(0);</div>
|
||||||
|
<div class="line"><a id="l00130" name="l00130"></a><span class="lineno"> 130</span> }</div>
|
||||||
|
<div class="line"><a id="l00131" name="l00131"></a><span class="lineno"> 131</span> </div>
|
||||||
|
<div class="line"><a id="l00132" name="l00132"></a><span class="lineno"> 132</span> <span class="keywordflow">return</span>;</div>
|
||||||
|
<div class="line"><a id="l00133" name="l00133"></a><span class="lineno"> 133</span>}</div>
|
||||||
|
<div class="line"><a id="l00134" name="l00134"></a><span class="lineno"> 134</span> </div>
|
||||||
|
<div class="line"><a id="l00135" name="l00135"></a><span class="lineno"> 135</span>std::size_t CmdArgsInterface::ParseNextParameter(<span class="keyword">const</span> std::size_t parIndex, <a class="code hl_class" href="classHazelnp_1_1Parameter.html">Parameter</a>*& out_Par)</div>
|
||||||
|
<div class="line"><a id="l00136" name="l00136"></a><span class="lineno"> 136</span>{</div>
|
||||||
|
<div class="line"><a id="l00137" name="l00137"></a><span class="lineno"> 137</span> std::size_t i = parIndex;</div>
|
||||||
|
<div class="line"><a id="l00138" name="l00138"></a><span class="lineno"> 138</span> <span class="keyword">const</span> std::string key = rawArgs[parIndex];</div>
|
||||||
|
<div class="line"><a id="l00139" name="l00139"></a><span class="lineno"> 139</span> std::vector<std::string> values;</div>
|
||||||
|
<div class="line"><a id="l00140" name="l00140"></a><span class="lineno"> 140</span> </div>
|
||||||
|
<div class="line"><a id="l00141" name="l00141"></a><span class="lineno"> 141</span> <span class="comment">// Get values</span></div>
|
||||||
|
<div class="line"><a id="l00142" name="l00142"></a><span class="lineno"> 142</span> <span class="keywordflow">for</span> (i++; i < rawArgs.size(); i++)</div>
|
||||||
|
<div class="line"><a id="l00143" name="l00143"></a><span class="lineno"> 143</span> <span class="comment">// If not another parameter</span></div>
|
||||||
|
<div class="line"><a id="l00144" name="l00144"></a><span class="lineno"> 144</span> <span class="keywordflow">if</span> ((rawArgs[i].length() < 2) || (rawArgs[i].substr(0, 2) != <span class="stringliteral">"--"</span>))</div>
|
||||||
|
<div class="line"><a id="l00145" name="l00145"></a><span class="lineno"> 145</span> values.emplace_back(rawArgs[i]);</div>
|
||||||
|
<div class="line"><a id="l00146" name="l00146"></a><span class="lineno"> 146</span> <span class="keywordflow">else</span></div>
|
||||||
|
<div class="line"><a id="l00147" name="l00147"></a><span class="lineno"> 147</span> {</div>
|
||||||
|
<div class="line"><a id="l00148" name="l00148"></a><span class="lineno"> 148</span> <span class="keywordflow">break</span>;</div>
|
||||||
|
<div class="line"><a id="l00149" name="l00149"></a><span class="lineno"> 149</span> }</div>
|
||||||
|
<div class="line"><a id="l00150" name="l00150"></a><span class="lineno"> 150</span> </div>
|
||||||
|
<div class="line"><a id="l00151" name="l00151"></a><span class="lineno"> 151</span> <span class="comment">// Fetch constraint info</span></div>
|
||||||
|
<div class="line"><a id="l00152" name="l00152"></a><span class="lineno"> 152</span> <span class="keyword">const</span> <a class="code hl_struct" href="structHazelnp_1_1ParamConstraint.html">ParamConstraint</a>* pcn = GetConstraintForKey(key);</div>
|
||||||
|
<div class="line"><a id="l00153" name="l00153"></a><span class="lineno"> 153</span> </div>
|
||||||
|
<div class="line"><a id="l00154" name="l00154"></a><span class="lineno"> 154</span> <a class="code hl_class" href="classHazelnp_1_1Value.html">Value</a>* parsedVal = ParseValue(values, pcn);</div>
|
||||||
|
<div class="line"><a id="l00155" name="l00155"></a><span class="lineno"> 155</span> <span class="keywordflow">if</span> (parsedVal != <span class="keyword">nullptr</span>)</div>
|
||||||
|
<div class="line"><a id="l00156" name="l00156"></a><span class="lineno"> 156</span> {</div>
|
||||||
|
<div class="line"><a id="l00157" name="l00157"></a><span class="lineno"> 157</span> out_Par = <span class="keyword">new</span> <a class="code hl_class" href="classHazelnp_1_1Parameter.html">Parameter</a>(key, parsedVal);</div>
|
||||||
|
<div class="line"><a id="l00158" name="l00158"></a><span class="lineno"> 158</span> </div>
|
||||||
|
<div class="line"><a id="l00159" name="l00159"></a><span class="lineno"> 159</span> <span class="keyword">delete</span> parsedVal;</div>
|
||||||
|
<div class="line"><a id="l00160" name="l00160"></a><span class="lineno"> 160</span> parsedVal = <span class="keyword">nullptr</span>;</div>
|
||||||
|
<div class="line"><a id="l00161" name="l00161"></a><span class="lineno"> 161</span> }</div>
|
||||||
|
<div class="line"><a id="l00162" name="l00162"></a><span class="lineno"> 162</span> <span class="keywordflow">else</span></div>
|
||||||
|
<div class="line"><a id="l00163" name="l00163"></a><span class="lineno"> 163</span> <span class="keywordflow">throw</span> std::runtime_error(<span class="stringliteral">"Unable to parse parameter!"</span>);</div>
|
||||||
|
<div class="line"><a id="l00164" name="l00164"></a><span class="lineno"> 164</span> </div>
|
||||||
|
<div class="line"><a id="l00165" name="l00165"></a><span class="lineno"> 165</span> <span class="keywordflow">return</span> i;</div>
|
||||||
|
<div class="line"><a id="l00166" name="l00166"></a><span class="lineno"> 166</span>}</div>
|
||||||
|
<div class="line"><a id="l00167" name="l00167"></a><span class="lineno"> 167</span> </div>
|
||||||
|
<div class="line"><a id="l00168" name="l00168"></a><span class="lineno"> 168</span><span class="keywordtype">void</span> CmdArgsInterface::PopulateRawArgs(<span class="keyword">const</span> <span class="keywordtype">int</span> argc, <span class="keyword">const</span> <span class="keywordtype">char</span>* <span class="keyword">const</span>* argv)</div>
|
||||||
|
<div class="line"><a id="l00169" name="l00169"></a><span class="lineno"> 169</span>{</div>
|
||||||
|
<div class="line"><a id="l00170" name="l00170"></a><span class="lineno"> 170</span> rawArgs.clear();</div>
|
||||||
|
<div class="line"><a id="l00171" name="l00171"></a><span class="lineno"> 171</span> rawArgs.reserve(argc);</div>
|
||||||
|
<div class="line"><a id="l00172" name="l00172"></a><span class="lineno"> 172</span> </div>
|
||||||
|
<div class="line"><a id="l00173" name="l00173"></a><span class="lineno"> 173</span> <span class="keywordflow">for</span> (<span class="keywordtype">int</span> i = 0; i < argc; i++)</div>
|
||||||
|
<div class="line"><a id="l00174" name="l00174"></a><span class="lineno"> 174</span> rawArgs.emplace_back(std::string(argv[i]));</div>
|
||||||
|
<div class="line"><a id="l00175" name="l00175"></a><span class="lineno"> 175</span> </div>
|
||||||
|
<div class="line"><a id="l00176" name="l00176"></a><span class="lineno"> 176</span> <span class="keywordflow">return</span>;</div>
|
||||||
|
<div class="line"><a id="l00177" name="l00177"></a><span class="lineno"> 177</span>}</div>
|
||||||
|
<div class="line"><a id="l00178" name="l00178"></a><span class="lineno"> 178</span> </div>
|
||||||
|
<div class="line"><a id="l00179" name="l00179"></a><span class="lineno"> 179</span><span class="keywordtype">void</span> CmdArgsInterface::ExpandAbbreviations()</div>
|
||||||
|
<div class="line"><a id="l00180" name="l00180"></a><span class="lineno"> 180</span>{</div>
|
||||||
|
<div class="line"><a id="l00181" name="l00181"></a><span class="lineno"> 181</span> <span class="comment">// Abort if no abbreviations</span></div>
|
||||||
|
<div class="line"><a id="l00182" name="l00182"></a><span class="lineno"> 182</span> <span class="keywordflow">if</span> (parameterAbreviations.size() == 0)</div>
|
||||||
|
<div class="line"><a id="l00183" name="l00183"></a><span class="lineno"> 183</span> <span class="keywordflow">return</span>;</div>
|
||||||
|
<div class="line"><a id="l00184" name="l00184"></a><span class="lineno"> 184</span> </div>
|
||||||
|
<div class="line"><a id="l00185" name="l00185"></a><span class="lineno"> 185</span> <span class="keywordflow">for</span> (std::string& arg : rawArgs)</div>
|
||||||
|
<div class="line"><a id="l00186" name="l00186"></a><span class="lineno"> 186</span> {</div>
|
||||||
|
<div class="line"><a id="l00187" name="l00187"></a><span class="lineno"> 187</span> <span class="comment">// Is arg registered as an abbreviation?</span></div>
|
||||||
|
<div class="line"><a id="l00188" name="l00188"></a><span class="lineno"> 188</span> <span class="keyword">auto</span> abbr = parameterAbreviations.find(arg);</div>
|
||||||
|
<div class="line"><a id="l00189" name="l00189"></a><span class="lineno"> 189</span> <span class="keywordflow">if</span> (abbr != parameterAbreviations.end())</div>
|
||||||
|
<div class="line"><a id="l00190" name="l00190"></a><span class="lineno"> 190</span> {</div>
|
||||||
|
<div class="line"><a id="l00191" name="l00191"></a><span class="lineno"> 191</span> <span class="comment">// Yes: replace arg with the long form</span></div>
|
||||||
|
<div class="line"><a id="l00192" name="l00192"></a><span class="lineno"> 192</span> arg = abbr->second;</div>
|
||||||
|
<div class="line"><a id="l00193" name="l00193"></a><span class="lineno"> 193</span> }</div>
|
||||||
|
<div class="line"><a id="l00194" name="l00194"></a><span class="lineno"> 194</span> }</div>
|
||||||
|
<div class="line"><a id="l00195" name="l00195"></a><span class="lineno"> 195</span> </div>
|
||||||
|
<div class="line"><a id="l00196" name="l00196"></a><span class="lineno"> 196</span> <span class="keywordflow">return</span>;</div>
|
||||||
|
<div class="line"><a id="l00197" name="l00197"></a><span class="lineno"> 197</span>}</div>
|
||||||
|
<div class="line"><a id="l00198" name="l00198"></a><span class="lineno"> 198</span> </div>
|
||||||
|
<div class="line"><a id="l00199" name="l00199"></a><span class="lineno"><a class="line" href="classHazelnp_1_1CmdArgsInterface.html#a3a7fa36fe69ee8bf3b400983a21ecd24"> 199</a></span><span class="keywordtype">bool</span> <a class="code hl_function" href="classHazelnp_1_1CmdArgsInterface.html#a3a7fa36fe69ee8bf3b400983a21ecd24">CmdArgsInterface::HasParam</a>(<span class="keyword">const</span> std::string& key)<span class="keyword"> const</span></div>
|
||||||
|
<div class="line"><a id="l00200" name="l00200"></a><span class="lineno"> 200</span><span class="keyword"></span>{</div>
|
||||||
|
<div class="line"><a id="l00201" name="l00201"></a><span class="lineno"> 201</span> <span class="keywordflow">return</span> parameters.find(key) != parameters.end();</div>
|
||||||
|
<div class="line"><a id="l00202" name="l00202"></a><span class="lineno"> 202</span>}</div>
|
||||||
|
<div class="line"><a id="l00203" name="l00203"></a><span class="lineno"> 203</span> </div>
|
||||||
|
<div class="line"><a id="l00204" name="l00204"></a><span class="lineno"> 204</span><a class="code hl_class" href="classHazelnp_1_1Value.html">Value</a>* CmdArgsInterface::ParseValue(<span class="keyword">const</span> std::vector<std::string>& values, <span class="keyword">const</span> <a class="code hl_struct" href="structHazelnp_1_1ParamConstraint.html">ParamConstraint</a>* constraint)</div>
|
||||||
|
<div class="line"><a id="l00205" name="l00205"></a><span class="lineno"> 205</span>{</div>
|
||||||
|
<div class="line"><a id="l00206" name="l00206"></a><span class="lineno"> 206</span> <span class="comment">// This is the raw (unconverted) data type the user provided</span></div>
|
||||||
|
<div class="line"><a id="l00207" name="l00207"></a><span class="lineno"> 207</span> <a class="code hl_enumeration" href="namespaceHazelnp.html#a07b61ac22ce9cd97eceebdf9487f803f">DATA_TYPE</a> rawInputType;</div>
|
||||||
|
<div class="line"><a id="l00208" name="l00208"></a><span class="lineno"> 208</span> </div>
|
||||||
|
<div class="line"><a id="l00209" name="l00209"></a><span class="lineno"> 209</span> <span class="comment">// Constraint values</span></div>
|
||||||
|
<div class="line"><a id="l00210" name="l00210"></a><span class="lineno"> 210</span> <span class="keyword">const</span> <span class="keywordtype">bool</span> constrainType = (constraint != <span class="keyword">nullptr</span>) && (constraint-><a class="code hl_variable" href="structHazelnp_1_1ParamConstraint.html#a88a4a4c215723259c71853992d09acac">constrainType</a>);</div>
|
||||||
|
<div class="line"><a id="l00211" name="l00211"></a><span class="lineno"> 211</span> </div>
|
||||||
|
<div class="line"><a id="l00212" name="l00212"></a><span class="lineno"> 212</span> <span class="comment">// Void-type</span></div>
|
||||||
|
<div class="line"><a id="l00213" name="l00213"></a><span class="lineno"> 213</span> <span class="keywordflow">if</span> (values.size() == 0)</div>
|
||||||
|
<div class="line"><a id="l00214" name="l00214"></a><span class="lineno"> 214</span> {</div>
|
||||||
|
<div class="line"><a id="l00215" name="l00215"></a><span class="lineno"> 215</span> rawInputType = <a class="code hl_enumvalue" href="namespaceHazelnp.html#a07b61ac22ce9cd97eceebdf9487f803fa6d0c9fc747131795e6e5d0c5119f12cb">DATA_TYPE::VOID</a>;</div>
|
||||||
|
<div class="line"><a id="l00216" name="l00216"></a><span class="lineno"> 216</span> </div>
|
||||||
|
<div class="line"><a id="l00217" name="l00217"></a><span class="lineno"> 217</span> <span class="comment">// Is a list forced via a constraint? If yes, return an empty list</span></div>
|
||||||
|
<div class="line"><a id="l00218" name="l00218"></a><span class="lineno"> 218</span> <span class="keywordflow">if</span> ((constrainType) &&</div>
|
||||||
|
<div class="line"><a id="l00219" name="l00219"></a><span class="lineno"> 219</span> (constraint-><a class="code hl_variable" href="structHazelnp_1_1ParamConstraint.html#a203b6fd1b9788a529aa0f15fe94fd24a">requiredType</a> == <a class="code hl_enumvalue" href="namespaceHazelnp.html#a07b61ac22ce9cd97eceebdf9487f803fa298cb25408234de02baf2085803a464a">DATA_TYPE::LIST</a>))</div>
|
||||||
|
<div class="line"><a id="l00220" name="l00220"></a><span class="lineno"> 220</span> <span class="keywordflow">return</span> <span class="keyword">new</span> <a class="code hl_class" href="classHazelnp_1_1ListValue.html">ListValue</a>();</div>
|
||||||
|
<div class="line"><a id="l00221" name="l00221"></a><span class="lineno"> 221</span> </div>
|
||||||
|
<div class="line"><a id="l00222" name="l00222"></a><span class="lineno"> 222</span> <span class="comment">// Is a string forced via a constraint? If yes, return an empty string</span></div>
|
||||||
|
<div class="line"><a id="l00223" name="l00223"></a><span class="lineno"> 223</span> <span class="keywordflow">else</span> <span class="keywordflow">if</span> ((constrainType) &&</div>
|
||||||
|
<div class="line"><a id="l00224" name="l00224"></a><span class="lineno"> 224</span> (constraint-><a class="code hl_variable" href="structHazelnp_1_1ParamConstraint.html#a203b6fd1b9788a529aa0f15fe94fd24a">requiredType</a> == <a class="code hl_enumvalue" href="namespaceHazelnp.html#a07b61ac22ce9cd97eceebdf9487f803fa63b588d5559f64f89a416e656880b949">DATA_TYPE::STRING</a>))</div>
|
||||||
|
<div class="line"><a id="l00225" name="l00225"></a><span class="lineno"> 225</span> <span class="keywordflow">return</span> <span class="keyword">new</span> <a class="code hl_class" href="classHazelnp_1_1StringValue.html">StringValue</a>(<span class="stringliteral">""</span>);</div>
|
||||||
|
<div class="line"><a id="l00226" name="l00226"></a><span class="lineno"> 226</span> </div>
|
||||||
|
<div class="line"><a id="l00227" name="l00227"></a><span class="lineno"> 227</span> <span class="comment">// Is an int or float forced via constraint? If yes, throw an exception</span></div>
|
||||||
|
<div class="line"><a id="l00228" name="l00228"></a><span class="lineno"> 228</span> <span class="keywordflow">else</span> <span class="keywordflow">if</span> ((constrainType) &&</div>
|
||||||
|
<div class="line"><a id="l00229" name="l00229"></a><span class="lineno"> 229</span> ((constraint-><a class="code hl_variable" href="structHazelnp_1_1ParamConstraint.html#a203b6fd1b9788a529aa0f15fe94fd24a">requiredType</a> == <a class="code hl_enumvalue" href="namespaceHazelnp.html#a07b61ac22ce9cd97eceebdf9487f803fa53f93baa3057821107c750323892fa92">DATA_TYPE::INT</a>) ||</div>
|
||||||
|
<div class="line"><a id="l00230" name="l00230"></a><span class="lineno"> 230</span> (constraint-><a class="code hl_variable" href="structHazelnp_1_1ParamConstraint.html#a203b6fd1b9788a529aa0f15fe94fd24a">requiredType</a> == <a class="code hl_enumvalue" href="namespaceHazelnp.html#a07b61ac22ce9cd97eceebdf9487f803fae738c26bf4ce1037fa81b039a915cbf6">DATA_TYPE::FLOAT</a>)))</div>
|
||||||
|
<div class="line"><a id="l00231" name="l00231"></a><span class="lineno"> 231</span> <span class="keywordflow">throw</span> <a class="code hl_class" href="classHazelnp_1_1HazelnuppConstraintTypeMissmatch.html">HazelnuppConstraintTypeMissmatch</a>(</div>
|
||||||
|
<div class="line"><a id="l00232" name="l00232"></a><span class="lineno"> 232</span> constraint->key,</div>
|
||||||
|
<div class="line"><a id="l00233" name="l00233"></a><span class="lineno"> 233</span> constraint-><a class="code hl_variable" href="structHazelnp_1_1ParamConstraint.html#a203b6fd1b9788a529aa0f15fe94fd24a">requiredType</a>,</div>
|
||||||
|
<div class="line"><a id="l00234" name="l00234"></a><span class="lineno"> 234</span> rawInputType,</div>
|
||||||
|
<div class="line"><a id="l00235" name="l00235"></a><span class="lineno"> 235</span> <a class="code hl_function" href="classHazelnp_1_1CmdArgsInterface.html#a89bc3f54d7ff0740549dbdf7b7f727e3">GetDescription</a>(constraint->key)</div>
|
||||||
|
<div class="line"><a id="l00236" name="l00236"></a><span class="lineno"> 236</span> );</div>
|
||||||
|
<div class="line"><a id="l00237" name="l00237"></a><span class="lineno"> 237</span> </div>
|
||||||
|
<div class="line"><a id="l00238" name="l00238"></a><span class="lineno"> 238</span> <span class="comment">// Else, just return the void type</span></div>
|
||||||
|
<div class="line"><a id="l00239" name="l00239"></a><span class="lineno"> 239</span> <span class="keywordflow">return</span> <span class="keyword">new</span> <a class="code hl_class" href="classHazelnp_1_1VoidValue.html">VoidValue</a>;</div>
|
||||||
|
<div class="line"><a id="l00240" name="l00240"></a><span class="lineno"> 240</span> }</div>
|
||||||
|
<div class="line"><a id="l00241" name="l00241"></a><span class="lineno"> 241</span> </div>
|
||||||
|
<div class="line"><a id="l00242" name="l00242"></a><span class="lineno"> 242</span> <span class="comment">// Force void type by constraint</span></div>
|
||||||
|
<div class="line"><a id="l00243" name="l00243"></a><span class="lineno"> 243</span> <span class="keywordflow">else</span> <span class="keywordflow">if</span> ((constrainType) &&</div>
|
||||||
|
<div class="line"><a id="l00244" name="l00244"></a><span class="lineno"> 244</span> (constraint-><a class="code hl_variable" href="structHazelnp_1_1ParamConstraint.html#a203b6fd1b9788a529aa0f15fe94fd24a">requiredType</a> == <a class="code hl_enumvalue" href="namespaceHazelnp.html#a07b61ac22ce9cd97eceebdf9487f803fa6d0c9fc747131795e6e5d0c5119f12cb">DATA_TYPE::VOID</a>))</div>
|
||||||
|
<div class="line"><a id="l00245" name="l00245"></a><span class="lineno"> 245</span> {</div>
|
||||||
|
<div class="line"><a id="l00246" name="l00246"></a><span class="lineno"> 246</span> <span class="keywordflow">return</span> <span class="keyword">new</span> <a class="code hl_class" href="classHazelnp_1_1VoidValue.html">VoidValue</a>;</div>
|
||||||
|
<div class="line"><a id="l00247" name="l00247"></a><span class="lineno"> 247</span> }</div>
|
||||||
|
<div class="line"><a id="l00248" name="l00248"></a><span class="lineno"> 248</span> </div>
|
||||||
|
<div class="line"><a id="l00249" name="l00249"></a><span class="lineno"> 249</span> <span class="comment">// List-type</span></div>
|
||||||
|
<div class="line"><a id="l00250" name="l00250"></a><span class="lineno"> 250</span> <span class="keywordflow">else</span> <span class="keywordflow">if</span> (values.size() > 1)</div>
|
||||||
|
<div class="line"><a id="l00251" name="l00251"></a><span class="lineno"> 251</span> {</div>
|
||||||
|
<div class="line"><a id="l00252" name="l00252"></a><span class="lineno"> 252</span> rawInputType = <a class="code hl_enumvalue" href="namespaceHazelnp.html#a07b61ac22ce9cd97eceebdf9487f803fa298cb25408234de02baf2085803a464a">DATA_TYPE::LIST</a>;</div>
|
||||||
|
<div class="line"><a id="l00253" name="l00253"></a><span class="lineno"> 253</span> </div>
|
||||||
|
<div class="line"><a id="l00254" name="l00254"></a><span class="lineno"> 254</span> <span class="comment">// Should the type be something other than list?</span></div>
|
||||||
|
<div class="line"><a id="l00255" name="l00255"></a><span class="lineno"> 255</span> <span class="keywordflow">if</span> ((constrainType) &&</div>
|
||||||
|
<div class="line"><a id="l00256" name="l00256"></a><span class="lineno"> 256</span> (constraint-><a class="code hl_variable" href="structHazelnp_1_1ParamConstraint.html#a203b6fd1b9788a529aa0f15fe94fd24a">requiredType</a> != <a class="code hl_enumvalue" href="namespaceHazelnp.html#a07b61ac22ce9cd97eceebdf9487f803fa298cb25408234de02baf2085803a464a">DATA_TYPE::LIST</a>))</div>
|
||||||
|
<div class="line"><a id="l00257" name="l00257"></a><span class="lineno"> 257</span> {</div>
|
||||||
|
<div class="line"><a id="l00258" name="l00258"></a><span class="lineno"> 258</span> <span class="keywordflow">throw</span> <a class="code hl_class" href="classHazelnp_1_1HazelnuppConstraintTypeMissmatch.html">HazelnuppConstraintTypeMissmatch</a>(</div>
|
||||||
|
<div class="line"><a id="l00259" name="l00259"></a><span class="lineno"> 259</span> constraint->key, </div>
|
||||||
|
<div class="line"><a id="l00260" name="l00260"></a><span class="lineno"> 260</span> constraint-><a class="code hl_variable" href="structHazelnp_1_1ParamConstraint.html#a203b6fd1b9788a529aa0f15fe94fd24a">requiredType</a>,</div>
|
||||||
|
<div class="line"><a id="l00261" name="l00261"></a><span class="lineno"> 261</span> rawInputType,</div>
|
||||||
|
<div class="line"><a id="l00262" name="l00262"></a><span class="lineno"> 262</span> <a class="code hl_function" href="classHazelnp_1_1CmdArgsInterface.html#a89bc3f54d7ff0740549dbdf7b7f727e3">GetDescription</a>(constraint->key)</div>
|
||||||
|
<div class="line"><a id="l00263" name="l00263"></a><span class="lineno"> 263</span> );</div>
|
||||||
|
<div class="line"><a id="l00264" name="l00264"></a><span class="lineno"> 264</span> }</div>
|
||||||
|
<div class="line"><a id="l00265" name="l00265"></a><span class="lineno"> 265</span> </div>
|
||||||
|
<div class="line"><a id="l00266" name="l00266"></a><span class="lineno"> 266</span> <a class="code hl_class" href="classHazelnp_1_1ListValue.html">ListValue</a>* newList = <span class="keyword">new</span> <a class="code hl_class" href="classHazelnp_1_1ListValue.html">ListValue</a>();</div>
|
||||||
|
<div class="line"><a id="l00267" name="l00267"></a><span class="lineno"> 267</span> <span class="keywordflow">for</span> (<span class="keyword">const</span> std::string& val : values)</div>
|
||||||
|
<div class="line"><a id="l00268" name="l00268"></a><span class="lineno"> 268</span> {</div>
|
||||||
|
<div class="line"><a id="l00269" name="l00269"></a><span class="lineno"> 269</span> <a class="code hl_class" href="classHazelnp_1_1Value.html">Value</a>* tmp = ParseValue({ val });</div>
|
||||||
|
<div class="line"><a id="l00270" name="l00270"></a><span class="lineno"> 270</span> newList-><a class="code hl_function" href="classHazelnp_1_1ListValue.html#af8787d266aa353d3f96e2c76cce76c41">AddValue</a>(tmp);</div>
|
||||||
|
<div class="line"><a id="l00271" name="l00271"></a><span class="lineno"> 271</span> <span class="keyword">delete</span> tmp;</div>
|
||||||
|
<div class="line"><a id="l00272" name="l00272"></a><span class="lineno"> 272</span> }</div>
|
||||||
|
<div class="line"><a id="l00273" name="l00273"></a><span class="lineno"> 273</span> <span class="keywordflow">return</span> newList;</div>
|
||||||
|
<div class="line"><a id="l00274" name="l00274"></a><span class="lineno"> 274</span> }</div>
|
||||||
|
<div class="line"><a id="l00275" name="l00275"></a><span class="lineno"> 275</span> </div>
|
||||||
|
<div class="line"><a id="l00276" name="l00276"></a><span class="lineno"> 276</span> <span class="comment">// Now we're only dealing with a single value</span></div>
|
||||||
|
<div class="line"><a id="l00277" name="l00277"></a><span class="lineno"> 277</span> <span class="keyword">const</span> std::string& val = values[0];</div>
|
||||||
|
<div class="line"><a id="l00278" name="l00278"></a><span class="lineno"> 278</span> </div>
|
||||||
|
<div class="line"><a id="l00279" name="l00279"></a><span class="lineno"> 279</span> <span class="comment">// String</span></div>
|
||||||
|
<div class="line"><a id="l00280" name="l00280"></a><span class="lineno"> 280</span> <span class="keywordflow">if</span> (!<a class="code hl_function" href="classHazelnp_1_1Internal_1_1StringTools.html#a1abf1454a223165acfb52f2a246c8215">Internal::StringTools::IsNumeric</a>(val, <span class="keyword">true</span>))</div>
|
||||||
|
<div class="line"><a id="l00281" name="l00281"></a><span class="lineno"> 281</span> {</div>
|
||||||
|
<div class="line"><a id="l00282" name="l00282"></a><span class="lineno"> 282</span> rawInputType = <a class="code hl_enumvalue" href="namespaceHazelnp.html#a07b61ac22ce9cd97eceebdf9487f803fa63b588d5559f64f89a416e656880b949">DATA_TYPE::STRING</a>;</div>
|
||||||
|
<div class="line"><a id="l00283" name="l00283"></a><span class="lineno"> 283</span> </div>
|
||||||
|
<div class="line"><a id="l00284" name="l00284"></a><span class="lineno"> 284</span> <span class="comment">// Is the type not supposed to be a string?</span></div>
|
||||||
|
<div class="line"><a id="l00285" name="l00285"></a><span class="lineno"> 285</span> <span class="comment">// void and list are already sorted out</span></div>
|
||||||
|
<div class="line"><a id="l00286" name="l00286"></a><span class="lineno"> 286</span> <span class="keywordflow">if</span> ((constrainType) &&</div>
|
||||||
|
<div class="line"><a id="l00287" name="l00287"></a><span class="lineno"> 287</span> (constraint-><a class="code hl_variable" href="structHazelnp_1_1ParamConstraint.html#a203b6fd1b9788a529aa0f15fe94fd24a">requiredType</a> != <a class="code hl_enumvalue" href="namespaceHazelnp.html#a07b61ac22ce9cd97eceebdf9487f803fa63b588d5559f64f89a416e656880b949">DATA_TYPE::STRING</a>))</div>
|
||||||
|
<div class="line"><a id="l00288" name="l00288"></a><span class="lineno"> 288</span> {</div>
|
||||||
|
<div class="line"><a id="l00289" name="l00289"></a><span class="lineno"> 289</span> <span class="comment">// We can only force a list-value from here</span></div>
|
||||||
|
<div class="line"><a id="l00290" name="l00290"></a><span class="lineno"> 290</span> <span class="keywordflow">if</span> (constraint-><a class="code hl_variable" href="structHazelnp_1_1ParamConstraint.html#a203b6fd1b9788a529aa0f15fe94fd24a">requiredType</a> == <a class="code hl_enumvalue" href="namespaceHazelnp.html#a07b61ac22ce9cd97eceebdf9487f803fa298cb25408234de02baf2085803a464a">DATA_TYPE::LIST</a>)</div>
|
||||||
|
<div class="line"><a id="l00291" name="l00291"></a><span class="lineno"> 291</span> {</div>
|
||||||
|
<div class="line"><a id="l00292" name="l00292"></a><span class="lineno"> 292</span> <a class="code hl_class" href="classHazelnp_1_1ListValue.html">ListValue</a>* list = <span class="keyword">new</span> <a class="code hl_class" href="classHazelnp_1_1ListValue.html">ListValue</a>();</div>
|
||||||
|
<div class="line"><a id="l00293" name="l00293"></a><span class="lineno"> 293</span> <a class="code hl_class" href="classHazelnp_1_1Value.html">Value</a>* tmp = ParseValue({ val });</div>
|
||||||
|
<div class="line"><a id="l00294" name="l00294"></a><span class="lineno"> 294</span> list-><a class="code hl_function" href="classHazelnp_1_1ListValue.html#af8787d266aa353d3f96e2c76cce76c41">AddValue</a>(tmp);</div>
|
||||||
|
<div class="line"><a id="l00295" name="l00295"></a><span class="lineno"> 295</span> <span class="keyword">delete</span> tmp;</div>
|
||||||
|
<div class="line"><a id="l00296" name="l00296"></a><span class="lineno"> 296</span> tmp = <span class="keyword">nullptr</span>;</div>
|
||||||
|
<div class="line"><a id="l00297" name="l00297"></a><span class="lineno"> 297</span> <span class="keywordflow">return</span> list;</div>
|
||||||
|
<div class="line"><a id="l00298" name="l00298"></a><span class="lineno"> 298</span> }</div>
|
||||||
|
<div class="line"><a id="l00299" name="l00299"></a><span class="lineno"> 299</span> <span class="comment">// Else it is not possible to convert to a numeric</span></div>
|
||||||
|
<div class="line"><a id="l00300" name="l00300"></a><span class="lineno"> 300</span> <span class="keywordflow">else</span></div>
|
||||||
|
<div class="line"><a id="l00301" name="l00301"></a><span class="lineno"> 301</span> <span class="keywordflow">throw</span> <a class="code hl_class" href="classHazelnp_1_1HazelnuppConstraintTypeMissmatch.html">HazelnuppConstraintTypeMissmatch</a>(</div>
|
||||||
|
<div class="line"><a id="l00302" name="l00302"></a><span class="lineno"> 302</span> constraint->key,</div>
|
||||||
|
<div class="line"><a id="l00303" name="l00303"></a><span class="lineno"> 303</span> constraint-><a class="code hl_variable" href="structHazelnp_1_1ParamConstraint.html#a203b6fd1b9788a529aa0f15fe94fd24a">requiredType</a>,</div>
|
||||||
|
<div class="line"><a id="l00304" name="l00304"></a><span class="lineno"> 304</span> rawInputType,</div>
|
||||||
|
<div class="line"><a id="l00305" name="l00305"></a><span class="lineno"> 305</span> <a class="code hl_function" href="classHazelnp_1_1CmdArgsInterface.html#a89bc3f54d7ff0740549dbdf7b7f727e3">GetDescription</a>(constraint->key)</div>
|
||||||
|
<div class="line"><a id="l00306" name="l00306"></a><span class="lineno"> 306</span> );</div>
|
||||||
|
<div class="line"><a id="l00307" name="l00307"></a><span class="lineno"> 307</span> }</div>
|
||||||
|
<div class="line"><a id="l00308" name="l00308"></a><span class="lineno"> 308</span> </div>
|
||||||
|
<div class="line"><a id="l00309" name="l00309"></a><span class="lineno"> 309</span> <span class="keywordflow">return</span> <span class="keyword">new</span> <a class="code hl_class" href="classHazelnp_1_1StringValue.html">StringValue</a>(val);</div>
|
||||||
|
<div class="line"><a id="l00310" name="l00310"></a><span class="lineno"> 310</span> }</div>
|
||||||
|
<div class="line"><a id="l00311" name="l00311"></a><span class="lineno"> 311</span> </div>
|
||||||
|
<div class="line"><a id="l00312" name="l00312"></a><span class="lineno"> 312</span> <span class="comment">// In this case we have a numeric value.</span></div>
|
||||||
|
<div class="line"><a id="l00313" name="l00313"></a><span class="lineno"> 313</span> <span class="comment">// We should still produce a string if requested</span></div>
|
||||||
|
<div class="line"><a id="l00314" name="l00314"></a><span class="lineno"> 314</span> <span class="keywordflow">if</span> ((constrainType) &&</div>
|
||||||
|
<div class="line"><a id="l00315" name="l00315"></a><span class="lineno"> 315</span> (constraint-><a class="code hl_variable" href="structHazelnp_1_1ParamConstraint.html#a203b6fd1b9788a529aa0f15fe94fd24a">requiredType</a> == <a class="code hl_enumvalue" href="namespaceHazelnp.html#a07b61ac22ce9cd97eceebdf9487f803fa63b588d5559f64f89a416e656880b949">DATA_TYPE::STRING</a>))</div>
|
||||||
|
<div class="line"><a id="l00316" name="l00316"></a><span class="lineno"> 316</span> <span class="keywordflow">return</span> <span class="keyword">new</span> <a class="code hl_class" href="classHazelnp_1_1StringValue.html">StringValue</a>(val);</div>
|
||||||
|
<div class="line"><a id="l00317" name="l00317"></a><span class="lineno"> 317</span> </div>
|
||||||
|
<div class="line"><a id="l00318" name="l00318"></a><span class="lineno"> 318</span> <span class="comment">// Numeric</span></div>
|
||||||
|
<div class="line"><a id="l00319" name="l00319"></a><span class="lineno"> 319</span> <span class="keywordtype">bool</span> isInt;</div>
|
||||||
|
<div class="line"><a id="l00320" name="l00320"></a><span class="lineno"> 320</span> <span class="keywordtype">long</span> <span class="keywordtype">double</span> num;</div>
|
||||||
|
<div class="line"><a id="l00321" name="l00321"></a><span class="lineno"> 321</span> </div>
|
||||||
|
<div class="line"><a id="l00322" name="l00322"></a><span class="lineno"> 322</span> <span class="keywordflow">if</span> (<a class="code hl_function" href="classHazelnp_1_1Internal_1_1StringTools.html#a3cc71bfffcad9a4334e74aac69dbfd68">Internal::StringTools::ParseNumber</a>(val, isInt, num))</div>
|
||||||
|
<div class="line"><a id="l00323" name="l00323"></a><span class="lineno"> 323</span> {</div>
|
||||||
|
<div class="line"><a id="l00324" name="l00324"></a><span class="lineno"> 324</span> rawInputType = isInt ? <a class="code hl_enumvalue" href="namespaceHazelnp.html#a07b61ac22ce9cd97eceebdf9487f803fa53f93baa3057821107c750323892fa92">DATA_TYPE::INT</a> : <a class="code hl_enumvalue" href="namespaceHazelnp.html#a07b61ac22ce9cd97eceebdf9487f803fae738c26bf4ce1037fa81b039a915cbf6">DATA_TYPE::FLOAT</a>;</div>
|
||||||
|
<div class="line"><a id="l00325" name="l00325"></a><span class="lineno"> 325</span> </div>
|
||||||
|
<div class="line"><a id="l00326" name="l00326"></a><span class="lineno"> 326</span> <span class="comment">// Is the type constrained?</span></div>
|
||||||
|
<div class="line"><a id="l00327" name="l00327"></a><span class="lineno"> 327</span> <span class="comment">// (only int and float left)</span></div>
|
||||||
|
<div class="line"><a id="l00328" name="l00328"></a><span class="lineno"> 328</span> <span class="keywordflow">if</span> (constrainType)</div>
|
||||||
|
<div class="line"><a id="l00329" name="l00329"></a><span class="lineno"> 329</span> {</div>
|
||||||
|
<div class="line"><a id="l00330" name="l00330"></a><span class="lineno"> 330</span> <span class="comment">// Must it be an integer?</span></div>
|
||||||
|
<div class="line"><a id="l00331" name="l00331"></a><span class="lineno"> 331</span> <span class="keywordflow">if</span> (constraint-><a class="code hl_variable" href="structHazelnp_1_1ParamConstraint.html#a203b6fd1b9788a529aa0f15fe94fd24a">requiredType</a> == <a class="code hl_enumvalue" href="namespaceHazelnp.html#a07b61ac22ce9cd97eceebdf9487f803fa53f93baa3057821107c750323892fa92">DATA_TYPE::INT</a>)</div>
|
||||||
|
<div class="line"><a id="l00332" name="l00332"></a><span class="lineno"> 332</span> <span class="keywordflow">return</span> <span class="keyword">new</span> <a class="code hl_class" href="classHazelnp_1_1IntValue.html">IntValue</a>((<span class="keywordtype">long</span> <span class="keywordtype">long</span> <span class="keywordtype">int</span>)num);</div>
|
||||||
|
<div class="line"><a id="l00333" name="l00333"></a><span class="lineno"> 333</span> <span class="comment">// Must it be a floating point?</span></div>
|
||||||
|
<div class="line"><a id="l00334" name="l00334"></a><span class="lineno"> 334</span> <span class="keywordflow">else</span> <span class="keywordflow">if</span> (constraint-><a class="code hl_variable" href="structHazelnp_1_1ParamConstraint.html#a203b6fd1b9788a529aa0f15fe94fd24a">requiredType</a> == <a class="code hl_enumvalue" href="namespaceHazelnp.html#a07b61ac22ce9cd97eceebdf9487f803fae738c26bf4ce1037fa81b039a915cbf6">DATA_TYPE::FLOAT</a>)</div>
|
||||||
|
<div class="line"><a id="l00335" name="l00335"></a><span class="lineno"> 335</span> <span class="keywordflow">return</span> <span class="keyword">new</span> <a class="code hl_class" href="classHazelnp_1_1FloatValue.html">FloatValue</a>(num);</div>
|
||||||
|
<div class="line"><a id="l00336" name="l00336"></a><span class="lineno"> 336</span> <span class="comment">// Else it must be a List</span></div>
|
||||||
|
<div class="line"><a id="l00337" name="l00337"></a><span class="lineno"> 337</span> <span class="keywordflow">else</span></div>
|
||||||
|
<div class="line"><a id="l00338" name="l00338"></a><span class="lineno"> 338</span> {</div>
|
||||||
|
<div class="line"><a id="l00339" name="l00339"></a><span class="lineno"> 339</span> <a class="code hl_class" href="classHazelnp_1_1ListValue.html">ListValue</a>* list = <span class="keyword">new</span> <a class="code hl_class" href="classHazelnp_1_1ListValue.html">ListValue</a>();</div>
|
||||||
|
<div class="line"><a id="l00340" name="l00340"></a><span class="lineno"> 340</span> <a class="code hl_class" href="classHazelnp_1_1Value.html">Value</a>* tmp = ParseValue({ val });</div>
|
||||||
|
<div class="line"><a id="l00341" name="l00341"></a><span class="lineno"> 341</span> list-><a class="code hl_function" href="classHazelnp_1_1ListValue.html#af8787d266aa353d3f96e2c76cce76c41">AddValue</a>(tmp);</div>
|
||||||
|
<div class="line"><a id="l00342" name="l00342"></a><span class="lineno"> 342</span> <span class="keyword">delete</span> tmp;</div>
|
||||||
|
<div class="line"><a id="l00343" name="l00343"></a><span class="lineno"> 343</span> tmp = <span class="keyword">nullptr</span>;</div>
|
||||||
|
<div class="line"><a id="l00344" name="l00344"></a><span class="lineno"> 344</span> <span class="keywordflow">return</span> list;</div>
|
||||||
|
<div class="line"><a id="l00345" name="l00345"></a><span class="lineno"> 345</span> }</div>
|
||||||
|
<div class="line"><a id="l00346" name="l00346"></a><span class="lineno"> 346</span> }</div>
|
||||||
|
<div class="line"><a id="l00347" name="l00347"></a><span class="lineno"> 347</span> <span class="comment">// Type is not constrained</span></div>
|
||||||
|
<div class="line"><a id="l00348" name="l00348"></a><span class="lineno"> 348</span> <span class="keywordflow">else</span></div>
|
||||||
|
<div class="line"><a id="l00349" name="l00349"></a><span class="lineno"> 349</span> {</div>
|
||||||
|
<div class="line"><a id="l00350" name="l00350"></a><span class="lineno"> 350</span> <span class="comment">// Integer</span></div>
|
||||||
|
<div class="line"><a id="l00351" name="l00351"></a><span class="lineno"> 351</span> <span class="keywordflow">if</span> (isInt)</div>
|
||||||
|
<div class="line"><a id="l00352" name="l00352"></a><span class="lineno"> 352</span> <span class="keywordflow">return</span> <span class="keyword">new</span> <a class="code hl_class" href="classHazelnp_1_1IntValue.html">IntValue</a>((<span class="keywordtype">long</span> <span class="keywordtype">long</span> <span class="keywordtype">int</span>)num);</div>
|
||||||
|
<div class="line"><a id="l00353" name="l00353"></a><span class="lineno"> 353</span> </div>
|
||||||
|
<div class="line"><a id="l00354" name="l00354"></a><span class="lineno"> 354</span> <span class="comment">// Double</span></div>
|
||||||
|
<div class="line"><a id="l00355" name="l00355"></a><span class="lineno"> 355</span> <span class="keywordflow">return</span> <span class="keyword">new</span> <a class="code hl_class" href="classHazelnp_1_1FloatValue.html">FloatValue</a>(num);</div>
|
||||||
|
<div class="line"><a id="l00356" name="l00356"></a><span class="lineno"> 356</span> }</div>
|
||||||
|
<div class="line"><a id="l00357" name="l00357"></a><span class="lineno"> 357</span> }</div>
|
||||||
|
<div class="line"><a id="l00358" name="l00358"></a><span class="lineno"> 358</span> </div>
|
||||||
|
<div class="line"><a id="l00359" name="l00359"></a><span class="lineno"> 359</span> <span class="comment">// Failed</span></div>
|
||||||
|
<div class="line"><a id="l00360" name="l00360"></a><span class="lineno"> 360</span> <span class="keywordflow">return</span> <span class="keyword">nullptr</span>;</div>
|
||||||
|
<div class="line"><a id="l00361" name="l00361"></a><span class="lineno"> 361</span>}</div>
|
||||||
|
<div class="line"><a id="l00362" name="l00362"></a><span class="lineno"> 362</span> </div>
|
||||||
|
<div class="line"><a id="l00363" name="l00363"></a><span class="lineno"><a class="line" href="classHazelnp_1_1CmdArgsInterface.html#a3e60c7a90c11bdc634d0f5d0dba5064c"> 363</a></span><span class="keywordtype">bool</span> <a class="code hl_function" href="classHazelnp_1_1CmdArgsInterface.html#a3e60c7a90c11bdc634d0f5d0dba5064c">CmdArgsInterface::GetCrashOnFail</a>()<span class="keyword"> const</span></div>
|
||||||
|
<div class="line"><a id="l00364" name="l00364"></a><span class="lineno"> 364</span><span class="keyword"></span>{</div>
|
||||||
|
<div class="line"><a id="l00365" name="l00365"></a><span class="lineno"> 365</span> <span class="keywordflow">return</span> crashOnFail;</div>
|
||||||
|
<div class="line"><a id="l00366" name="l00366"></a><span class="lineno"> 366</span>}</div>
|
||||||
|
<div class="line"><a id="l00367" name="l00367"></a><span class="lineno"> 367</span> </div>
|
||||||
|
<div class="line"><a id="l00368" name="l00368"></a><span class="lineno"><a class="line" href="classHazelnp_1_1CmdArgsInterface.html#abf553ed4acabf9e1db357715bc10533c"> 368</a></span><span class="keywordtype">void</span> <a class="code hl_function" href="classHazelnp_1_1CmdArgsInterface.html#abf553ed4acabf9e1db357715bc10533c">CmdArgsInterface::SetCatchHelp</a>(<span class="keywordtype">bool</span> catchHelp)</div>
|
||||||
|
<div class="line"><a id="l00369" name="l00369"></a><span class="lineno"> 369</span>{</div>
|
||||||
|
<div class="line"><a id="l00370" name="l00370"></a><span class="lineno"> 370</span> this->catchHelp = catchHelp;</div>
|
||||||
|
<div class="line"><a id="l00371" name="l00371"></a><span class="lineno"> 371</span> <span class="keywordflow">return</span>;</div>
|
||||||
|
<div class="line"><a id="l00372" name="l00372"></a><span class="lineno"> 372</span>}</div>
|
||||||
|
<div class="line"><a id="l00373" name="l00373"></a><span class="lineno"> 373</span> </div>
|
||||||
|
<div class="line"><a id="l00374" name="l00374"></a><span class="lineno"><a class="line" href="classHazelnp_1_1CmdArgsInterface.html#a1026d98c23659b6d3d108b231806a1e3"> 374</a></span><span class="keywordtype">bool</span> <a class="code hl_function" href="classHazelnp_1_1CmdArgsInterface.html#a1026d98c23659b6d3d108b231806a1e3">CmdArgsInterface::GetCatchHelp</a>()<span class="keyword"> const</span></div>
|
||||||
|
<div class="line"><a id="l00375" name="l00375"></a><span class="lineno"> 375</span><span class="keyword"></span>{</div>
|
||||||
|
<div class="line"><a id="l00376" name="l00376"></a><span class="lineno"> 376</span> <span class="keywordflow">return</span> catchHelp;</div>
|
||||||
|
<div class="line"><a id="l00377" name="l00377"></a><span class="lineno"> 377</span>}</div>
|
||||||
|
<div class="line"><a id="l00378" name="l00378"></a><span class="lineno"> 378</span> </div>
|
||||||
|
<div class="line"><a id="l00379" name="l00379"></a><span class="lineno"><a class="line" href="classHazelnp_1_1CmdArgsInterface.html#a67ba6cb3176884c85dd56fc9084ab66a"> 379</a></span><span class="keywordtype">void</span> <a class="code hl_function" href="classHazelnp_1_1CmdArgsInterface.html#a67ba6cb3176884c85dd56fc9084ab66a">CmdArgsInterface::SetBriefDescription</a>(<span class="keyword">const</span> std::string& description)</div>
|
||||||
|
<div class="line"><a id="l00380" name="l00380"></a><span class="lineno"> 380</span>{</div>
|
||||||
|
<div class="line"><a id="l00381" name="l00381"></a><span class="lineno"> 381</span> briefDescription = description;</div>
|
||||||
|
<div class="line"><a id="l00382" name="l00382"></a><span class="lineno"> 382</span> <span class="keywordflow">return</span>;</div>
|
||||||
|
<div class="line"><a id="l00383" name="l00383"></a><span class="lineno"> 383</span>}</div>
|
||||||
|
<div class="line"><a id="l00384" name="l00384"></a><span class="lineno"> 384</span> </div>
|
||||||
|
<div class="line"><a id="l00385" name="l00385"></a><span class="lineno"><a class="line" href="classHazelnp_1_1CmdArgsInterface.html#a1945208a97707b2e3c654424f0760441"> 385</a></span><span class="keyword">const</span> std::string& <a class="code hl_function" href="classHazelnp_1_1CmdArgsInterface.html#a1945208a97707b2e3c654424f0760441">CmdArgsInterface::GetBriefDescription</a>()</div>
|
||||||
|
<div class="line"><a id="l00386" name="l00386"></a><span class="lineno"> 386</span>{</div>
|
||||||
|
<div class="line"><a id="l00387" name="l00387"></a><span class="lineno"> 387</span> <span class="keywordflow">return</span> briefDescription;</div>
|
||||||
|
<div class="line"><a id="l00388" name="l00388"></a><span class="lineno"> 388</span>}</div>
|
||||||
|
<div class="line"><a id="l00389" name="l00389"></a><span class="lineno"> 389</span> </div>
|
||||||
|
<div class="line"><a id="l00390" name="l00390"></a><span class="lineno"><a class="line" href="classHazelnp_1_1CmdArgsInterface.html#a6589d2e818ba32f2a3e5b5a6a5e2bf1e"> 390</a></span><span class="keywordtype">void</span> <a class="code hl_function" href="classHazelnp_1_1CmdArgsInterface.html#a6589d2e818ba32f2a3e5b5a6a5e2bf1e">Hazelnp::CmdArgsInterface::RegisterDescription</a>(<span class="keyword">const</span> std::string& parameter, <span class="keyword">const</span> std::string& description)</div>
|
||||||
|
<div class="line"><a id="l00391" name="l00391"></a><span class="lineno"> 391</span>{</div>
|
||||||
|
<div class="line"><a id="l00392" name="l00392"></a><span class="lineno"> 392</span> parameterDescriptions[parameter] = description;</div>
|
||||||
|
<div class="line"><a id="l00393" name="l00393"></a><span class="lineno"> 393</span> <span class="keywordflow">return</span>;</div>
|
||||||
|
<div class="line"><a id="l00394" name="l00394"></a><span class="lineno"> 394</span>}</div>
|
||||||
|
<div class="line"><a id="l00395" name="l00395"></a><span class="lineno"> 395</span> </div>
|
||||||
|
<div class="line"><a id="l00396" name="l00396"></a><span class="lineno"><a class="line" href="classHazelnp_1_1CmdArgsInterface.html#a89bc3f54d7ff0740549dbdf7b7f727e3"> 396</a></span><span class="keyword">const</span> std::string& <a class="code hl_function" href="classHazelnp_1_1CmdArgsInterface.html#a89bc3f54d7ff0740549dbdf7b7f727e3">Hazelnp::CmdArgsInterface::GetDescription</a>(<span class="keyword">const</span> std::string& parameter)<span class="keyword"> const</span></div>
|
||||||
|
<div class="line"><a id="l00397" name="l00397"></a><span class="lineno"> 397</span><span class="keyword"></span>{</div>
|
||||||
|
<div class="line"><a id="l00398" name="l00398"></a><span class="lineno"> 398</span> <span class="comment">// Do we already have a description for this parameter?</span></div>
|
||||||
|
<div class="line"><a id="l00399" name="l00399"></a><span class="lineno"> 399</span> <span class="keywordflow">if</span> (!HasDescription(parameter))</div>
|
||||||
|
<div class="line"><a id="l00400" name="l00400"></a><span class="lineno"> 400</span> <span class="comment">// No? Then return ""</span></div>
|
||||||
|
<div class="line"><a id="l00401" name="l00401"></a><span class="lineno"> 401</span> <span class="keywordflow">return</span> <a class="code hl_variable" href="namespaceHazelnp_1_1Placeholders.html#a90536f0cd5261b18da736e954c6b8b79">Placeholders::g_emptyString</a>;</div>
|
||||||
|
<div class="line"><a id="l00402" name="l00402"></a><span class="lineno"> 402</span> </div>
|
||||||
|
<div class="line"><a id="l00403" name="l00403"></a><span class="lineno"> 403</span> <span class="comment">// We do? Then return it</span></div>
|
||||||
|
<div class="line"><a id="l00404" name="l00404"></a><span class="lineno"> 404</span> <span class="keywordflow">return</span> parameterDescriptions.find(parameter)->second;</div>
|
||||||
|
<div class="line"><a id="l00405" name="l00405"></a><span class="lineno"> 405</span>}</div>
|
||||||
|
<div class="line"><a id="l00406" name="l00406"></a><span class="lineno"> 406</span> </div>
|
||||||
|
<div class="line"><a id="l00407" name="l00407"></a><span class="lineno"><a class="line" href="classHazelnp_1_1CmdArgsInterface.html#a5003f826ee31c6365bf4b6e8b2c8d9f1"> 407</a></span><span class="keywordtype">bool</span> <a class="code hl_function" href="classHazelnp_1_1CmdArgsInterface.html#a5003f826ee31c6365bf4b6e8b2c8d9f1">CmdArgsInterface::HasDescription</a>(<span class="keyword">const</span> std::string& parameter)<span class="keyword"> const</span></div>
|
||||||
|
<div class="line"><a id="l00408" name="l00408"></a><span class="lineno"> 408</span><span class="keyword"></span>{</div>
|
||||||
|
<div class="line"><a id="l00409" name="l00409"></a><span class="lineno"> 409</span> <span class="keywordflow">return</span> parameterDescriptions.find(parameter) != parameterDescriptions.end();</div>
|
||||||
|
<div class="line"><a id="l00410" name="l00410"></a><span class="lineno"> 410</span>}</div>
|
||||||
|
<div class="line"><a id="l00411" name="l00411"></a><span class="lineno"> 411</span> </div>
|
||||||
|
<div class="line"><a id="l00412" name="l00412"></a><span class="lineno"><a class="line" href="classHazelnp_1_1CmdArgsInterface.html#a62889ce1faa90d0f20be3ae45803baa0"> 412</a></span><span class="keywordtype">void</span> <a class="code hl_function" href="classHazelnp_1_1CmdArgsInterface.html#a62889ce1faa90d0f20be3ae45803baa0">CmdArgsInterface::ClearDescription</a>(<span class="keyword">const</span> std::string& parameter)</div>
|
||||||
|
<div class="line"><a id="l00413" name="l00413"></a><span class="lineno"> 413</span>{</div>
|
||||||
|
<div class="line"><a id="l00414" name="l00414"></a><span class="lineno"> 414</span> <span class="comment">// This will just do nothing if the entry does not exist</span></div>
|
||||||
|
<div class="line"><a id="l00415" name="l00415"></a><span class="lineno"> 415</span> parameterDescriptions.erase(parameter);</div>
|
||||||
|
<div class="line"><a id="l00416" name="l00416"></a><span class="lineno"> 416</span> <span class="keywordflow">return</span>;</div>
|
||||||
|
<div class="line"><a id="l00417" name="l00417"></a><span class="lineno"> 417</span>}</div>
|
||||||
|
<div class="line"><a id="l00418" name="l00418"></a><span class="lineno"> 418</span> </div>
|
||||||
|
<div class="line"><a id="l00419" name="l00419"></a><span class="lineno"><a class="line" href="classHazelnp_1_1CmdArgsInterface.html#a328dbc265e7ffa9ab526ed8aa755e107"> 419</a></span><span class="keywordtype">void</span> <a class="code hl_function" href="classHazelnp_1_1CmdArgsInterface.html#a328dbc265e7ffa9ab526ed8aa755e107">Hazelnp::CmdArgsInterface::ClearDescriptions</a>()</div>
|
||||||
|
<div class="line"><a id="l00420" name="l00420"></a><span class="lineno"> 420</span>{</div>
|
||||||
|
<div class="line"><a id="l00421" name="l00421"></a><span class="lineno"> 421</span> parameterDescriptions.clear();</div>
|
||||||
|
<div class="line"><a id="l00422" name="l00422"></a><span class="lineno"> 422</span> <span class="keywordflow">return</span>;</div>
|
||||||
|
<div class="line"><a id="l00423" name="l00423"></a><span class="lineno"> 423</span>}</div>
|
||||||
|
<div class="line"><a id="l00424" name="l00424"></a><span class="lineno"> 424</span> </div>
|
||||||
|
<div class="line"><a id="l00425" name="l00425"></a><span class="lineno"><a class="line" href="classHazelnp_1_1CmdArgsInterface.html#a9b9bc5c4443799ea847077e9cefb1927"> 425</a></span>std::string <a class="code hl_function" href="classHazelnp_1_1CmdArgsInterface.html#a9b9bc5c4443799ea847077e9cefb1927">CmdArgsInterface::GenerateDocumentation</a>()<span class="keyword"> const</span></div>
|
||||||
|
<div class="line"><a id="l00426" name="l00426"></a><span class="lineno"> 426</span><span class="keyword"></span>{</div>
|
||||||
|
<div class="line"><a id="l00427" name="l00427"></a><span class="lineno"> 427</span> std::stringstream ss;</div>
|
||||||
|
<div class="line"><a id="l00428" name="l00428"></a><span class="lineno"> 428</span> </div>
|
||||||
|
<div class="line"><a id="l00429" name="l00429"></a><span class="lineno"> 429</span> <span class="comment">// Add brief, if available</span></div>
|
||||||
|
<div class="line"><a id="l00430" name="l00430"></a><span class="lineno"> 430</span> <span class="keywordflow">if</span> (briefDescription.length() > 0)</div>
|
||||||
|
<div class="line"><a id="l00431" name="l00431"></a><span class="lineno"> 431</span> ss << briefDescription << std::endl;</div>
|
||||||
|
<div class="line"><a id="l00432" name="l00432"></a><span class="lineno"> 432</span> </div>
|
||||||
|
<div class="line"><a id="l00433" name="l00433"></a><span class="lineno"> 433</span> <span class="comment">// Collect parameter information</span></div>
|
||||||
|
<div class="line"><a id="l00434" name="l00434"></a><span class="lineno"> 434</span> <span class="keyword">struct </span>ParamDocEntry</div>
|
||||||
|
<div class="line"><a id="l00435" name="l00435"></a><span class="lineno"> 435</span> {</div>
|
||||||
|
<div class="line"><a id="l00436" name="l00436"></a><span class="lineno"> 436</span> std::string abbreviation;</div>
|
||||||
|
<div class="line"><a id="l00437" name="l00437"></a><span class="lineno"> 437</span> std::string description;</div>
|
||||||
|
<div class="line"><a id="l00438" name="l00438"></a><span class="lineno"> 438</span> std::string type;</div>
|
||||||
|
<div class="line"><a id="l00439" name="l00439"></a><span class="lineno"> 439</span> <span class="keywordtype">bool</span> required = <span class="keyword">false</span>;</div>
|
||||||
|
<div class="line"><a id="l00440" name="l00440"></a><span class="lineno"> 440</span> <span class="keywordtype">bool</span> typeIsForced = <span class="keyword">false</span>;</div>
|
||||||
|
<div class="line"><a id="l00441" name="l00441"></a><span class="lineno"> 441</span> std::string defaultVal;</div>
|
||||||
|
<div class="line"><a id="l00442" name="l00442"></a><span class="lineno"> 442</span> std::string incompatibilities;</div>
|
||||||
|
<div class="line"><a id="l00443" name="l00443"></a><span class="lineno"> 443</span> };</div>
|
||||||
|
<div class="line"><a id="l00444" name="l00444"></a><span class="lineno"> 444</span> std::unordered_map<std::string, ParamDocEntry> paramInfos;</div>
|
||||||
|
<div class="line"><a id="l00445" name="l00445"></a><span class="lineno"> 445</span> </div>
|
||||||
|
<div class="line"><a id="l00446" name="l00446"></a><span class="lineno"> 446</span> <span class="comment">// Collect descriptions</span></div>
|
||||||
|
<div class="line"><a id="l00447" name="l00447"></a><span class="lineno"> 447</span> <span class="keywordflow">for</span> (<span class="keyword">const</span> <span class="keyword">auto</span>& it : parameterDescriptions)</div>
|
||||||
|
<div class="line"><a id="l00448" name="l00448"></a><span class="lineno"> 448</span> {</div>
|
||||||
|
<div class="line"><a id="l00449" name="l00449"></a><span class="lineno"> 449</span> <span class="comment">// Do we already have that param in the paramInfo set?</span></div>
|
||||||
|
<div class="line"><a id="l00450" name="l00450"></a><span class="lineno"> 450</span> <span class="keywordflow">if</span> (paramInfos.find(it.first) == paramInfos.end())</div>
|
||||||
|
<div class="line"><a id="l00451" name="l00451"></a><span class="lineno"> 451</span> <span class="comment">// No? Create it.</span></div>
|
||||||
|
<div class="line"><a id="l00452" name="l00452"></a><span class="lineno"> 452</span> paramInfos[it.first] = ParamDocEntry();</div>
|
||||||
|
<div class="line"><a id="l00453" name="l00453"></a><span class="lineno"> 453</span> </div>
|
||||||
|
<div class="line"><a id="l00454" name="l00454"></a><span class="lineno"> 454</span> paramInfos[it.first].description = it.second;</div>
|
||||||
|
<div class="line"><a id="l00455" name="l00455"></a><span class="lineno"> 455</span> }</div>
|
||||||
|
<div class="line"><a id="l00456" name="l00456"></a><span class="lineno"> 456</span> </div>
|
||||||
|
<div class="line"><a id="l00457" name="l00457"></a><span class="lineno"> 457</span> <span class="comment">// Collect abbreviations</span></div>
|
||||||
|
<div class="line"><a id="l00458" name="l00458"></a><span class="lineno"> 458</span> <span class="comment">// first value is abbreviation, second is long form</span></div>
|
||||||
|
<div class="line"><a id="l00459" name="l00459"></a><span class="lineno"> 459</span> <span class="keywordflow">for</span> (<span class="keyword">const</span> <span class="keyword">auto</span>& it : parameterAbreviations)</div>
|
||||||
|
<div class="line"><a id="l00460" name="l00460"></a><span class="lineno"> 460</span> {</div>
|
||||||
|
<div class="line"><a id="l00461" name="l00461"></a><span class="lineno"> 461</span> <span class="comment">// Do we already have that param in the paramInfo set?</span></div>
|
||||||
|
<div class="line"><a id="l00462" name="l00462"></a><span class="lineno"> 462</span> <span class="keywordflow">if</span> (paramInfos.find(it.second) == paramInfos.end())</div>
|
||||||
|
<div class="line"><a id="l00463" name="l00463"></a><span class="lineno"> 463</span> <span class="comment">// No? Create it.</span></div>
|
||||||
|
<div class="line"><a id="l00464" name="l00464"></a><span class="lineno"> 464</span> paramInfos[it.second] = ParamDocEntry();</div>
|
||||||
|
<div class="line"><a id="l00465" name="l00465"></a><span class="lineno"> 465</span> </div>
|
||||||
|
<div class="line"><a id="l00466" name="l00466"></a><span class="lineno"> 466</span> paramInfos[it.second].abbreviation = it.first;</div>
|
||||||
|
<div class="line"><a id="l00467" name="l00467"></a><span class="lineno"> 467</span> }</div>
|
||||||
|
<div class="line"><a id="l00468" name="l00468"></a><span class="lineno"> 468</span> </div>
|
||||||
|
<div class="line"><a id="l00469" name="l00469"></a><span class="lineno"> 469</span> <span class="comment">// Collect constraints</span></div>
|
||||||
|
<div class="line"><a id="l00470" name="l00470"></a><span class="lineno"> 470</span> <span class="keywordflow">for</span> (<span class="keyword">const</span> <span class="keyword">auto</span>& it : parameterConstraints)</div>
|
||||||
|
<div class="line"><a id="l00471" name="l00471"></a><span class="lineno"> 471</span> {</div>
|
||||||
|
<div class="line"><a id="l00472" name="l00472"></a><span class="lineno"> 472</span> <span class="comment">// Do we already have that param in the paramInfo set?</span></div>
|
||||||
|
<div class="line"><a id="l00473" name="l00473"></a><span class="lineno"> 473</span> <span class="keywordflow">if</span> (paramInfos.find(it.first) == paramInfos.end())</div>
|
||||||
|
<div class="line"><a id="l00474" name="l00474"></a><span class="lineno"> 474</span> <span class="comment">// No? Create it.</span></div>
|
||||||
|
<div class="line"><a id="l00475" name="l00475"></a><span class="lineno"> 475</span> paramInfos[it.first] = ParamDocEntry();</div>
|
||||||
|
<div class="line"><a id="l00476" name="l00476"></a><span class="lineno"> 476</span> </div>
|
||||||
|
<div class="line"><a id="l00477" name="l00477"></a><span class="lineno"> 477</span> ParamDocEntry& cached = paramInfos[it.first];</div>
|
||||||
|
<div class="line"><a id="l00478" name="l00478"></a><span class="lineno"> 478</span> cached.required = it.second.required;</div>
|
||||||
|
<div class="line"><a id="l00479" name="l00479"></a><span class="lineno"> 479</span> cached.typeIsForced = it.second.constrainType;</div>
|
||||||
|
<div class="line"><a id="l00480" name="l00480"></a><span class="lineno"> 480</span> cached.type = <a class="code hl_function" href="namespaceHazelnp.html#a7fb1e5ad9e2ecb6c0025beb19f11621b">DataTypeToString</a>(it.second.requiredType);</div>
|
||||||
|
<div class="line"><a id="l00481" name="l00481"></a><span class="lineno"> 481</span> </div>
|
||||||
|
<div class="line"><a id="l00482" name="l00482"></a><span class="lineno"> 482</span> <span class="comment">// Build default-value string</span></div>
|
||||||
|
<div class="line"><a id="l00483" name="l00483"></a><span class="lineno"> 483</span> std::stringstream vec2str_ss;</div>
|
||||||
|
<div class="line"><a id="l00484" name="l00484"></a><span class="lineno"> 484</span> <span class="keywordflow">for</span> (<span class="keyword">const</span> std::string& s : it.second.defaultValue)</div>
|
||||||
|
<div class="line"><a id="l00485" name="l00485"></a><span class="lineno"> 485</span> {</div>
|
||||||
|
<div class="line"><a id="l00486" name="l00486"></a><span class="lineno"> 486</span> vec2str_ss << <span class="charliteral">'\''</span> << s << <span class="charliteral">'\''</span>;</div>
|
||||||
|
<div class="line"><a id="l00487" name="l00487"></a><span class="lineno"> 487</span> </div>
|
||||||
|
<div class="line"><a id="l00488" name="l00488"></a><span class="lineno"> 488</span> <span class="comment">// Add a space if we are not at the last entry</span></div>
|
||||||
|
<div class="line"><a id="l00489" name="l00489"></a><span class="lineno"> 489</span> <span class="keywordflow">if</span> ((<span class="keywordtype">void</span>*)&s != (<span class="keywordtype">void</span>*)&it.second.defaultValue.back())</div>
|
||||||
|
<div class="line"><a id="l00490" name="l00490"></a><span class="lineno"> 490</span> vec2str_ss << <span class="stringliteral">" "</span>;</div>
|
||||||
|
<div class="line"><a id="l00491" name="l00491"></a><span class="lineno"> 491</span> }</div>
|
||||||
|
<div class="line"><a id="l00492" name="l00492"></a><span class="lineno"> 492</span> cached.defaultVal = vec2str_ss.str();</div>
|
||||||
|
<div class="line"><a id="l00493" name="l00493"></a><span class="lineno"> 493</span> </div>
|
||||||
|
<div class="line"><a id="l00494" name="l00494"></a><span class="lineno"> 494</span> </div>
|
||||||
|
<div class="line"><a id="l00495" name="l00495"></a><span class="lineno"> 495</span> <span class="comment">// Build incompatibilities string</span></div>
|
||||||
|
<div class="line"><a id="l00496" name="l00496"></a><span class="lineno"> 496</span> vec2str_ss.str(<span class="stringliteral">""</span>);</div>
|
||||||
|
<div class="line"><a id="l00497" name="l00497"></a><span class="lineno"> 497</span> <span class="keywordflow">for</span> (<span class="keyword">const</span> std::string& s : it.second.incompatibleParameters)</div>
|
||||||
|
<div class="line"><a id="l00498" name="l00498"></a><span class="lineno"> 498</span> {</div>
|
||||||
|
<div class="line"><a id="l00499" name="l00499"></a><span class="lineno"> 499</span> vec2str_ss << s;</div>
|
||||||
|
<div class="line"><a id="l00500" name="l00500"></a><span class="lineno"> 500</span> </div>
|
||||||
|
<div class="line"><a id="l00501" name="l00501"></a><span class="lineno"> 501</span> <span class="comment">// Add a comma-space if we are not at the last entry</span></div>
|
||||||
|
<div class="line"><a id="l00502" name="l00502"></a><span class="lineno"> 502</span> <span class="keywordflow">if</span> ((<span class="keywordtype">void</span>*)&s != (<span class="keywordtype">void</span>*)&it.second.incompatibleParameters.back())</div>
|
||||||
|
<div class="line"><a id="l00503" name="l00503"></a><span class="lineno"> 503</span> vec2str_ss << <span class="stringliteral">", "</span>;</div>
|
||||||
|
<div class="line"><a id="l00504" name="l00504"></a><span class="lineno"> 504</span> }</div>
|
||||||
|
<div class="line"><a id="l00505" name="l00505"></a><span class="lineno"> 505</span> cached.incompatibilities = vec2str_ss.str();</div>
|
||||||
|
<div class="line"><a id="l00506" name="l00506"></a><span class="lineno"> 506</span> }</div>
|
||||||
|
<div class="line"><a id="l00507" name="l00507"></a><span class="lineno"> 507</span> </div>
|
||||||
|
<div class="line"><a id="l00508" name="l00508"></a><span class="lineno"> 508</span> <span class="comment">// Now generate the documentation body</span></div>
|
||||||
|
<div class="line"><a id="l00509" name="l00509"></a><span class="lineno"> 509</span> <span class="keywordflow">if</span> (paramInfos.size() > 0)</div>
|
||||||
|
<div class="line"><a id="l00510" name="l00510"></a><span class="lineno"> 510</span> {</div>
|
||||||
|
<div class="line"><a id="l00511" name="l00511"></a><span class="lineno"> 511</span> ss << std::endl </div>
|
||||||
|
<div class="line"><a id="l00512" name="l00512"></a><span class="lineno"> 512</span> << <span class="stringliteral">"==== AVAILABLE PARAMETERS ===="</span> </div>
|
||||||
|
<div class="line"><a id="l00513" name="l00513"></a><span class="lineno"> 513</span> << std::endl << std::endl;</div>
|
||||||
|
<div class="line"><a id="l00514" name="l00514"></a><span class="lineno"> 514</span> </div>
|
||||||
|
<div class="line"><a id="l00515" name="l00515"></a><span class="lineno"> 515</span> std::size_t counter = 0;</div>
|
||||||
|
<div class="line"><a id="l00516" name="l00516"></a><span class="lineno"> 516</span> <span class="keywordflow">for</span> (<span class="keyword">const</span> <span class="keyword">auto</span>& it : paramInfos)</div>
|
||||||
|
<div class="line"><a id="l00517" name="l00517"></a><span class="lineno"> 517</span> {</div>
|
||||||
|
<div class="line"><a id="l00518" name="l00518"></a><span class="lineno"> 518</span> <span class="keyword">const</span> ParamDocEntry& pde = it.second;</div>
|
||||||
|
<div class="line"><a id="l00519" name="l00519"></a><span class="lineno"> 519</span> </div>
|
||||||
|
<div class="line"><a id="l00520" name="l00520"></a><span class="lineno"> 520</span> <span class="comment">// Put name</span></div>
|
||||||
|
<div class="line"><a id="l00521" name="l00521"></a><span class="lineno"> 521</span> ss << it.first << <span class="stringliteral">" "</span>;</div>
|
||||||
|
<div class="line"><a id="l00522" name="l00522"></a><span class="lineno"> 522</span> </div>
|
||||||
|
<div class="line"><a id="l00523" name="l00523"></a><span class="lineno"> 523</span> <span class="comment">// Put abbreviation</span></div>
|
||||||
|
<div class="line"><a id="l00524" name="l00524"></a><span class="lineno"> 524</span> <span class="keywordflow">if</span> (pde.abbreviation.length() > 0)</div>
|
||||||
|
<div class="line"><a id="l00525" name="l00525"></a><span class="lineno"> 525</span> ss << pde.abbreviation << <span class="stringliteral">" "</span>;</div>
|
||||||
|
<div class="line"><a id="l00526" name="l00526"></a><span class="lineno"> 526</span> </div>
|
||||||
|
<div class="line"><a id="l00527" name="l00527"></a><span class="lineno"> 527</span> <span class="comment">// Put type</span></div>
|
||||||
|
<div class="line"><a id="l00528" name="l00528"></a><span class="lineno"> 528</span> <span class="keywordflow">if</span> (pde.typeIsForced)</div>
|
||||||
|
<div class="line"><a id="l00529" name="l00529"></a><span class="lineno"> 529</span> ss << pde.type << <span class="stringliteral">" "</span>;</div>
|
||||||
|
<div class="line"><a id="l00530" name="l00530"></a><span class="lineno"> 530</span> </div>
|
||||||
|
<div class="line"><a id="l00531" name="l00531"></a><span class="lineno"> 531</span> <span class="comment">// Put default value</span></div>
|
||||||
|
<div class="line"><a id="l00532" name="l00532"></a><span class="lineno"> 532</span> <span class="keywordflow">if</span> (pde.defaultVal.length() > 0)</div>
|
||||||
|
<div class="line"><a id="l00533" name="l00533"></a><span class="lineno"> 533</span> ss << <span class="stringliteral">"default=["</span> << pde.defaultVal << <span class="stringliteral">"] "</span>;</div>
|
||||||
|
<div class="line"><a id="l00534" name="l00534"></a><span class="lineno"> 534</span> </div>
|
||||||
|
<div class="line"><a id="l00535" name="l00535"></a><span class="lineno"> 535</span> <span class="comment">// Put incompatibilities</span></div>
|
||||||
|
<div class="line"><a id="l00536" name="l00536"></a><span class="lineno"> 536</span> <span class="keywordflow">if</span> (pde.incompatibilities.length() > 0)</div>
|
||||||
|
<div class="line"><a id="l00537" name="l00537"></a><span class="lineno"> 537</span> ss << <span class="stringliteral">"incompatibilities=["</span> << pde.incompatibilities << <span class="stringliteral">"] "</span>;</div>
|
||||||
|
<div class="line"><a id="l00538" name="l00538"></a><span class="lineno"> 538</span> </div>
|
||||||
|
<div class="line"><a id="l00539" name="l00539"></a><span class="lineno"> 539</span> <span class="comment">// Put required tag, but only if no default value</span></div>
|
||||||
|
<div class="line"><a id="l00540" name="l00540"></a><span class="lineno"> 540</span> <span class="keywordflow">if</span> ((pde.required) && (pde.defaultVal.length() == 0))</div>
|
||||||
|
<div class="line"><a id="l00541" name="l00541"></a><span class="lineno"> 541</span> ss << <span class="stringliteral">"[[REQUIRED]] "</span>;</div>
|
||||||
|
<div class="line"><a id="l00542" name="l00542"></a><span class="lineno"> 542</span> </div>
|
||||||
|
<div class="line"><a id="l00543" name="l00543"></a><span class="lineno"> 543</span> <span class="comment">// Put brief description</span></div>
|
||||||
|
<div class="line"><a id="l00544" name="l00544"></a><span class="lineno"> 544</span> <span class="keywordflow">if</span> (pde.description.length() > 0)</div>
|
||||||
|
<div class="line"><a id="l00545" name="l00545"></a><span class="lineno"> 545</span> ss << pde.description;</div>
|
||||||
|
<div class="line"><a id="l00546" name="l00546"></a><span class="lineno"> 546</span> </div>
|
||||||
|
<div class="line"><a id="l00547" name="l00547"></a><span class="lineno"> 547</span> <span class="comment">// Omit linebreaks when we're on the last element</span></div>
|
||||||
|
<div class="line"><a id="l00548" name="l00548"></a><span class="lineno"> 548</span> <span class="keywordflow">if</span> (counter < paramInfos.size()-1)</div>
|
||||||
|
<div class="line"><a id="l00549" name="l00549"></a><span class="lineno"> 549</span> ss << std::endl << std::endl;</div>
|
||||||
|
<div class="line"><a id="l00550" name="l00550"></a><span class="lineno"> 550</span> </div>
|
||||||
|
<div class="line"><a id="l00551" name="l00551"></a><span class="lineno"> 551</span> counter++;</div>
|
||||||
|
<div class="line"><a id="l00552" name="l00552"></a><span class="lineno"> 552</span> }</div>
|
||||||
|
<div class="line"><a id="l00553" name="l00553"></a><span class="lineno"> 553</span> }</div>
|
||||||
|
<div class="line"><a id="l00554" name="l00554"></a><span class="lineno"> 554</span> </div>
|
||||||
|
<div class="line"><a id="l00555" name="l00555"></a><span class="lineno"> 555</span> <span class="keywordflow">return</span> ss.str();</div>
|
||||||
|
<div class="line"><a id="l00556" name="l00556"></a><span class="lineno"> 556</span>}</div>
|
||||||
|
<div class="line"><a id="l00557" name="l00557"></a><span class="lineno"> 557</span> </div>
|
||||||
|
<div class="line"><a id="l00558" name="l00558"></a><span class="lineno"> 558</span><span class="keywordtype">void</span> CmdArgsInterface::ApplyConstraints()</div>
|
||||||
|
<div class="line"><a id="l00559" name="l00559"></a><span class="lineno"> 559</span>{</div>
|
||||||
|
<div class="line"><a id="l00560" name="l00560"></a><span class="lineno"> 560</span> <span class="comment">// Enforce required parameters / default values</span></div>
|
||||||
|
<div class="line"><a id="l00561" name="l00561"></a><span class="lineno"> 561</span> <span class="keywordflow">for</span> (<span class="keyword">const</span> <span class="keyword">auto</span>& pc : parameterConstraints)</div>
|
||||||
|
<div class="line"><a id="l00562" name="l00562"></a><span class="lineno"> 562</span> <span class="comment">// Parameter in question is not supplied</span></div>
|
||||||
|
<div class="line"><a id="l00563" name="l00563"></a><span class="lineno"> 563</span> <span class="keywordflow">if</span> (!<a class="code hl_function" href="classHazelnp_1_1CmdArgsInterface.html#a3a7fa36fe69ee8bf3b400983a21ecd24">HasParam</a>(pc.second.key))</div>
|
||||||
|
<div class="line"><a id="l00564" name="l00564"></a><span class="lineno"> 564</span> {</div>
|
||||||
|
<div class="line"><a id="l00565" name="l00565"></a><span class="lineno"> 565</span> <span class="comment">// Do we have a default value?</span></div>
|
||||||
|
<div class="line"><a id="l00566" name="l00566"></a><span class="lineno"> 566</span> <span class="keywordflow">if</span> (pc.second.defaultValue.size() > 0)</div>
|
||||||
|
<div class="line"><a id="l00567" name="l00567"></a><span class="lineno"> 567</span> {</div>
|
||||||
|
<div class="line"><a id="l00568" name="l00568"></a><span class="lineno"> 568</span> <span class="comment">// Then create it now, by its default value</span></div>
|
||||||
|
<div class="line"><a id="l00569" name="l00569"></a><span class="lineno"> 569</span> <a class="code hl_class" href="classHazelnp_1_1Value.html">Value</a>* tmp = ParseValue(pc.second.defaultValue, &pc.second);</div>
|
||||||
|
<div class="line"><a id="l00570" name="l00570"></a><span class="lineno"> 570</span> parameters.insert(std::pair<std::string, Parameter*>(</div>
|
||||||
|
<div class="line"><a id="l00571" name="l00571"></a><span class="lineno"> 571</span> pc.second.key,</div>
|
||||||
|
<div class="line"><a id="l00572" name="l00572"></a><span class="lineno"> 572</span> <span class="keyword">new</span> <a class="code hl_class" href="classHazelnp_1_1Parameter.html">Parameter</a>(pc.second.key, tmp)</div>
|
||||||
|
<div class="line"><a id="l00573" name="l00573"></a><span class="lineno"> 573</span> ));</div>
|
||||||
|
<div class="line"><a id="l00574" name="l00574"></a><span class="lineno"> 574</span> </div>
|
||||||
|
<div class="line"><a id="l00575" name="l00575"></a><span class="lineno"> 575</span> <span class="keyword">delete</span> tmp;</div>
|
||||||
|
<div class="line"><a id="l00576" name="l00576"></a><span class="lineno"> 576</span> tmp = <span class="keyword">nullptr</span>;</div>
|
||||||
|
<div class="line"><a id="l00577" name="l00577"></a><span class="lineno"> 577</span> }</div>
|
||||||
|
<div class="line"><a id="l00578" name="l00578"></a><span class="lineno"> 578</span> <span class="comment">// So we do not have a default value...</span></div>
|
||||||
|
<div class="line"><a id="l00579" name="l00579"></a><span class="lineno"> 579</span> <span class="keywordflow">else</span></div>
|
||||||
|
<div class="line"><a id="l00580" name="l00580"></a><span class="lineno"> 580</span> {</div>
|
||||||
|
<div class="line"><a id="l00581" name="l00581"></a><span class="lineno"> 581</span> <span class="comment">// Is it important to have the missing parameter?</span></div>
|
||||||
|
<div class="line"><a id="l00582" name="l00582"></a><span class="lineno"> 582</span> <span class="keywordflow">if</span> (pc.second.required)</div>
|
||||||
|
<div class="line"><a id="l00583" name="l00583"></a><span class="lineno"> 583</span> <span class="comment">// Throw an error message then</span></div>
|
||||||
|
<div class="line"><a id="l00584" name="l00584"></a><span class="lineno"> 584</span> <span class="keywordflow">throw</span> <a class="code hl_class" href="classHazelnp_1_1HazelnuppConstraintMissingValue.html">HazelnuppConstraintMissingValue</a>(</div>
|
||||||
|
<div class="line"><a id="l00585" name="l00585"></a><span class="lineno"> 585</span> pc.second.key,</div>
|
||||||
|
<div class="line"><a id="l00586" name="l00586"></a><span class="lineno"> 586</span> <a class="code hl_function" href="classHazelnp_1_1CmdArgsInterface.html#a89bc3f54d7ff0740549dbdf7b7f727e3">GetDescription</a>(pc.second.key)</div>
|
||||||
|
<div class="line"><a id="l00587" name="l00587"></a><span class="lineno"> 587</span> );</div>
|
||||||
|
<div class="line"><a id="l00588" name="l00588"></a><span class="lineno"> 588</span> }</div>
|
||||||
|
<div class="line"><a id="l00589" name="l00589"></a><span class="lineno"> 589</span> }</div>
|
||||||
|
<div class="line"><a id="l00590" name="l00590"></a><span class="lineno"> 590</span> <span class="comment">// The parameter in question IS supplied</span></div>
|
||||||
|
<div class="line"><a id="l00591" name="l00591"></a><span class="lineno"> 591</span> <span class="keywordflow">else</span></div>
|
||||||
|
<div class="line"><a id="l00592" name="l00592"></a><span class="lineno"> 592</span> {</div>
|
||||||
|
<div class="line"><a id="l00593" name="l00593"></a><span class="lineno"> 593</span> <span class="comment">// Enforce parameter incompatibility</span></div>
|
||||||
|
<div class="line"><a id="l00594" name="l00594"></a><span class="lineno"> 594</span> </div>
|
||||||
|
<div class="line"><a id="l00595" name="l00595"></a><span class="lineno"> 595</span> <span class="comment">// Is ANY parameter present listed as incompatible with our current one?</span></div>
|
||||||
|
<div class="line"><a id="l00596" name="l00596"></a><span class="lineno"> 596</span> <span class="keywordflow">for</span> (<span class="keyword">const</span> std::string& incompatibility : pc.second.incompatibleParameters)</div>
|
||||||
|
<div class="line"><a id="l00597" name="l00597"></a><span class="lineno"> 597</span> <span class="keywordflow">for</span> (<span class="keyword">const</span> <span class="keyword">auto</span>& otherParam : parameters)</div>
|
||||||
|
<div class="line"><a id="l00598" name="l00598"></a><span class="lineno"> 598</span> {</div>
|
||||||
|
<div class="line"><a id="l00599" name="l00599"></a><span class="lineno"> 599</span> <span class="keywordflow">if</span> (otherParam.first == incompatibility)</div>
|
||||||
|
<div class="line"><a id="l00600" name="l00600"></a><span class="lineno"> 600</span> <span class="keywordflow">throw</span> <a class="code hl_class" href="classHazelnp_1_1HazelnuppConstraintIncompatibleParameters.html">HazelnuppConstraintIncompatibleParameters</a>(pc.second.key, incompatibility);</div>
|
||||||
|
<div class="line"><a id="l00601" name="l00601"></a><span class="lineno"> 601</span> }</div>
|
||||||
|
<div class="line"><a id="l00602" name="l00602"></a><span class="lineno"> 602</span> }</div>
|
||||||
|
<div class="line"><a id="l00603" name="l00603"></a><span class="lineno"> 603</span> </div>
|
||||||
|
<div class="line"><a id="l00604" name="l00604"></a><span class="lineno"> 604</span> <span class="keywordflow">return</span>;</div>
|
||||||
|
<div class="line"><a id="l00605" name="l00605"></a><span class="lineno"> 605</span>}</div>
|
||||||
|
<div class="line"><a id="l00606" name="l00606"></a><span class="lineno"> 606</span> </div>
|
||||||
|
<div class="line"><a id="l00607" name="l00607"></a><span class="lineno"><a class="line" href="classHazelnp_1_1CmdArgsInterface.html#adec82884377a5193f68dcc7b6ef69d8b"> 607</a></span><a class="code hl_struct" href="structHazelnp_1_1ParamConstraint.html">ParamConstraint</a> <a class="code hl_function" href="classHazelnp_1_1CmdArgsInterface.html#adec82884377a5193f68dcc7b6ef69d8b">CmdArgsInterface::GetConstraint</a>(<span class="keyword">const</span> std::string& parameter)<span class="keyword"> const</span></div>
|
||||||
|
<div class="line"><a id="l00608" name="l00608"></a><span class="lineno"> 608</span><span class="keyword"></span>{</div>
|
||||||
|
<div class="line"><a id="l00609" name="l00609"></a><span class="lineno"> 609</span> <span class="keywordflow">return</span> parameterConstraints.find(parameter)->second;</div>
|
||||||
|
<div class="line"><a id="l00610" name="l00610"></a><span class="lineno"> 610</span>}</div>
|
||||||
|
<div class="line"><a id="l00611" name="l00611"></a><span class="lineno"> 611</span> </div>
|
||||||
|
<div class="line"><a id="l00612" name="l00612"></a><span class="lineno"><a class="line" href="classHazelnp_1_1CmdArgsInterface.html#a112d2d5e3fd1cf1507592389c8454984"> 612</a></span><span class="keywordtype">void</span> <a class="code hl_function" href="classHazelnp_1_1CmdArgsInterface.html#a112d2d5e3fd1cf1507592389c8454984">CmdArgsInterface::ClearConstraint</a>(<span class="keyword">const</span> std::string& parameter)</div>
|
||||||
|
<div class="line"><a id="l00613" name="l00613"></a><span class="lineno"> 613</span>{</div>
|
||||||
|
<div class="line"><a id="l00614" name="l00614"></a><span class="lineno"> 614</span> parameterConstraints.erase(parameter);</div>
|
||||||
|
<div class="line"><a id="l00615" name="l00615"></a><span class="lineno"> 615</span> <span class="keywordflow">return</span>;</div>
|
||||||
|
<div class="line"><a id="l00616" name="l00616"></a><span class="lineno"> 616</span>}</div>
|
||||||
|
<div class="line"><a id="l00617" name="l00617"></a><span class="lineno"> 617</span> </div>
|
||||||
|
<div class="line"><a id="l00618" name="l00618"></a><span class="lineno"><a class="line" href="classHazelnp_1_1CmdArgsInterface.html#afe83a815b21d37b3d2a6d0ef67137faf"> 618</a></span><span class="keyword">const</span> std::string& <a class="code hl_function" href="classHazelnp_1_1CmdArgsInterface.html#afe83a815b21d37b3d2a6d0ef67137faf">CmdArgsInterface::GetExecutableName</a>()<span class="keyword"> const</span></div>
|
||||||
|
<div class="line"><a id="l00619" name="l00619"></a><span class="lineno"> 619</span><span class="keyword"></span>{</div>
|
||||||
|
<div class="line"><a id="l00620" name="l00620"></a><span class="lineno"> 620</span> <span class="keywordflow">return</span> executableName;</div>
|
||||||
|
<div class="line"><a id="l00621" name="l00621"></a><span class="lineno"> 621</span>}</div>
|
||||||
|
<div class="line"><a id="l00622" name="l00622"></a><span class="lineno"> 622</span> </div>
|
||||||
|
<div class="line"><a id="l00623" name="l00623"></a><span class="lineno"><a class="line" href="classHazelnp_1_1CmdArgsInterface.html#af5e43c1067fb6c1074d9be3427c7a415"> 623</a></span><span class="keyword">const</span> <a class="code hl_class" href="classHazelnp_1_1Value.html">Value</a>& <a class="code hl_function" href="classHazelnp_1_1CmdArgsInterface.html#af5e43c1067fb6c1074d9be3427c7a415">CmdArgsInterface::operator[]</a>(<span class="keyword">const</span> std::string& key)<span class="keyword"> const</span></div>
|
||||||
|
<div class="line"><a id="l00624" name="l00624"></a><span class="lineno"> 624</span><span class="keyword"></span>{</div>
|
||||||
|
<div class="line"><a id="l00625" name="l00625"></a><span class="lineno"> 625</span> <span class="comment">// Throw exception if param is unknown</span></div>
|
||||||
|
<div class="line"><a id="l00626" name="l00626"></a><span class="lineno"> 626</span> <span class="keywordflow">if</span> (!<a class="code hl_function" href="classHazelnp_1_1CmdArgsInterface.html#a3a7fa36fe69ee8bf3b400983a21ecd24">HasParam</a>(key))</div>
|
||||||
|
<div class="line"><a id="l00627" name="l00627"></a><span class="lineno"> 627</span> <span class="keywordflow">throw</span> <a class="code hl_class" href="classHazelnp_1_1HazelnuppInvalidKeyException.html">HazelnuppInvalidKeyException</a>();</div>
|
||||||
|
<div class="line"><a id="l00628" name="l00628"></a><span class="lineno"> 628</span> </div>
|
||||||
|
<div class="line"><a id="l00629" name="l00629"></a><span class="lineno"> 629</span> <span class="keywordflow">return</span> *parameters.find(key)->second->GetValue();</div>
|
||||||
|
<div class="line"><a id="l00630" name="l00630"></a><span class="lineno"> 630</span>}</div>
|
||||||
|
<div class="line"><a id="l00631" name="l00631"></a><span class="lineno"> 631</span> </div>
|
||||||
|
<div class="line"><a id="l00632" name="l00632"></a><span class="lineno"><a class="line" href="classHazelnp_1_1CmdArgsInterface.html#aaccf591a74408aeb4363033fe8cb2224"> 632</a></span><span class="keywordtype">void</span> <a class="code hl_function" href="classHazelnp_1_1CmdArgsInterface.html#aaccf591a74408aeb4363033fe8cb2224">CmdArgsInterface::RegisterAbbreviation</a>(<span class="keyword">const</span> std::string& abbrev, <span class="keyword">const</span> std::string& target)</div>
|
||||||
|
<div class="line"><a id="l00633" name="l00633"></a><span class="lineno"> 633</span>{</div>
|
||||||
|
<div class="line"><a id="l00634" name="l00634"></a><span class="lineno"> 634</span> parameterAbreviations.insert(std::pair<std::string, std::string>(abbrev, target));</div>
|
||||||
|
<div class="line"><a id="l00635" name="l00635"></a><span class="lineno"> 635</span> <span class="keywordflow">return</span>;</div>
|
||||||
|
<div class="line"><a id="l00636" name="l00636"></a><span class="lineno"> 636</span>}</div>
|
||||||
|
<div class="line"><a id="l00637" name="l00637"></a><span class="lineno"> 637</span> </div>
|
||||||
|
<div class="line"><a id="l00638" name="l00638"></a><span class="lineno"><a class="line" href="classHazelnp_1_1CmdArgsInterface.html#a1486bfef870e6502aefc23b11ce6caaf"> 638</a></span><span class="keyword">const</span> std::string& <a class="code hl_function" href="classHazelnp_1_1CmdArgsInterface.html#a1486bfef870e6502aefc23b11ce6caaf">CmdArgsInterface::GetAbbreviation</a>(<span class="keyword">const</span> std::string& abbrev)<span class="keyword"> const</span></div>
|
||||||
|
<div class="line"><a id="l00639" name="l00639"></a><span class="lineno"> 639</span><span class="keyword"></span>{</div>
|
||||||
|
<div class="line"><a id="l00640" name="l00640"></a><span class="lineno"> 640</span> <span class="keywordflow">if</span> (!<a class="code hl_function" href="classHazelnp_1_1CmdArgsInterface.html#a58b81709e631cee5f3db3f3f48611fe9">HasAbbreviation</a>(abbrev))</div>
|
||||||
|
<div class="line"><a id="l00641" name="l00641"></a><span class="lineno"> 641</span> <span class="keywordflow">return</span> <a class="code hl_variable" href="namespaceHazelnp_1_1Placeholders.html#a90536f0cd5261b18da736e954c6b8b79">Placeholders::g_emptyString</a>;</div>
|
||||||
|
<div class="line"><a id="l00642" name="l00642"></a><span class="lineno"> 642</span> </div>
|
||||||
|
<div class="line"><a id="l00643" name="l00643"></a><span class="lineno"> 643</span> <span class="keywordflow">return</span> parameterAbreviations.find(abbrev)->second;</div>
|
||||||
|
<div class="line"><a id="l00644" name="l00644"></a><span class="lineno"> 644</span>}</div>
|
||||||
|
<div class="line"><a id="l00645" name="l00645"></a><span class="lineno"> 645</span> </div>
|
||||||
|
<div class="line"><a id="l00646" name="l00646"></a><span class="lineno"><a class="line" href="classHazelnp_1_1CmdArgsInterface.html#a58b81709e631cee5f3db3f3f48611fe9"> 646</a></span><span class="keywordtype">bool</span> <a class="code hl_function" href="classHazelnp_1_1CmdArgsInterface.html#a58b81709e631cee5f3db3f3f48611fe9">CmdArgsInterface::HasAbbreviation</a>(<span class="keyword">const</span> std::string& abbrev)<span class="keyword"> const</span></div>
|
||||||
|
<div class="line"><a id="l00647" name="l00647"></a><span class="lineno"> 647</span><span class="keyword"></span>{</div>
|
||||||
|
<div class="line"><a id="l00648" name="l00648"></a><span class="lineno"> 648</span> <span class="keywordflow">return</span> parameterAbreviations.find(abbrev) != parameterAbreviations.end();</div>
|
||||||
|
<div class="line"><a id="l00649" name="l00649"></a><span class="lineno"> 649</span>}</div>
|
||||||
|
<div class="line"><a id="l00650" name="l00650"></a><span class="lineno"> 650</span> </div>
|
||||||
|
<div class="line"><a id="l00651" name="l00651"></a><span class="lineno"><a class="line" href="classHazelnp_1_1CmdArgsInterface.html#a31f690bd95d5469d38af816183cbe3e7"> 651</a></span><span class="keywordtype">void</span> <a class="code hl_function" href="classHazelnp_1_1CmdArgsInterface.html#a31f690bd95d5469d38af816183cbe3e7">CmdArgsInterface::ClearAbbreviation</a>(<span class="keyword">const</span> std::string& abbrevation)</div>
|
||||||
|
<div class="line"><a id="l00652" name="l00652"></a><span class="lineno"> 652</span>{</div>
|
||||||
|
<div class="line"><a id="l00653" name="l00653"></a><span class="lineno"> 653</span> parameterAbreviations.erase(abbrevation);</div>
|
||||||
|
<div class="line"><a id="l00654" name="l00654"></a><span class="lineno"> 654</span> <span class="keywordflow">return</span>;</div>
|
||||||
|
<div class="line"><a id="l00655" name="l00655"></a><span class="lineno"> 655</span>}</div>
|
||||||
|
<div class="line"><a id="l00656" name="l00656"></a><span class="lineno"> 656</span> </div>
|
||||||
|
<div class="line"><a id="l00657" name="l00657"></a><span class="lineno"><a class="line" href="classHazelnp_1_1CmdArgsInterface.html#a019e48f48427e7caa76c964bd0f117d0"> 657</a></span><span class="keywordtype">void</span> <a class="code hl_function" href="classHazelnp_1_1CmdArgsInterface.html#a019e48f48427e7caa76c964bd0f117d0">CmdArgsInterface::ClearAbbreviations</a>()</div>
|
||||||
|
<div class="line"><a id="l00658" name="l00658"></a><span class="lineno"> 658</span>{</div>
|
||||||
|
<div class="line"><a id="l00659" name="l00659"></a><span class="lineno"> 659</span> parameterAbreviations.clear();</div>
|
||||||
|
<div class="line"><a id="l00660" name="l00660"></a><span class="lineno"> 660</span> <span class="keywordflow">return</span>;</div>
|
||||||
|
<div class="line"><a id="l00661" name="l00661"></a><span class="lineno"> 661</span>}</div>
|
||||||
|
<div class="line"><a id="l00662" name="l00662"></a><span class="lineno"> 662</span> </div>
|
||||||
|
<div class="line"><a id="l00663" name="l00663"></a><span class="lineno"><a class="line" href="classHazelnp_1_1CmdArgsInterface.html#aa30222df012f357455f90e3620346bb2"> 663</a></span><span class="keywordtype">void</span> <a class="code hl_function" href="classHazelnp_1_1CmdArgsInterface.html#aa30222df012f357455f90e3620346bb2">CmdArgsInterface::RegisterConstraint</a>(<span class="keyword">const</span> std::string& key, <span class="keyword">const</span> <a class="code hl_struct" href="structHazelnp_1_1ParamConstraint.html">ParamConstraint</a>& constraint)</div>
|
||||||
|
<div class="line"><a id="l00664" name="l00664"></a><span class="lineno"> 664</span>{</div>
|
||||||
|
<div class="line"><a id="l00665" name="l00665"></a><span class="lineno"> 665</span> <span class="comment">// Magic syntax, wooo</span></div>
|
||||||
|
<div class="line"><a id="l00666" name="l00666"></a><span class="lineno"> 666</span> (parameterConstraints[key] = constraint).key = key;</div>
|
||||||
|
<div class="line"><a id="l00667" name="l00667"></a><span class="lineno"> 667</span> <span class="keywordflow">return</span>;</div>
|
||||||
|
<div class="line"><a id="l00668" name="l00668"></a><span class="lineno"> 668</span>}</div>
|
||||||
|
<div class="line"><a id="l00669" name="l00669"></a><span class="lineno"> 669</span> </div>
|
||||||
|
<div class="line"><a id="l00670" name="l00670"></a><span class="lineno"><a class="line" href="classHazelnp_1_1CmdArgsInterface.html#ad472671fb12450b8d929418fbbffbe40"> 670</a></span><span class="keywordtype">void</span> <a class="code hl_function" href="classHazelnp_1_1CmdArgsInterface.html#ad472671fb12450b8d929418fbbffbe40">CmdArgsInterface::ClearConstraints</a>()</div>
|
||||||
|
<div class="line"><a id="l00671" name="l00671"></a><span class="lineno"> 671</span>{</div>
|
||||||
|
<div class="line"><a id="l00672" name="l00672"></a><span class="lineno"> 672</span> parameterConstraints.clear();</div>
|
||||||
|
<div class="line"><a id="l00673" name="l00673"></a><span class="lineno"> 673</span> <span class="keywordflow">return</span>;</div>
|
||||||
|
<div class="line"><a id="l00674" name="l00674"></a><span class="lineno"> 674</span>}</div>
|
||||||
|
<div class="line"><a id="l00675" name="l00675"></a><span class="lineno"> 675</span> </div>
|
||||||
|
<div class="line"><a id="l00676" name="l00676"></a><span class="lineno"><a class="line" href="classHazelnp_1_1CmdArgsInterface.html#a16a3a02f77d240d8cf51cd4ee1797113"> 676</a></span><span class="keywordtype">void</span> <a class="code hl_function" href="classHazelnp_1_1CmdArgsInterface.html#a16a3a02f77d240d8cf51cd4ee1797113">CmdArgsInterface::SetCrashOnFail</a>(<span class="keywordtype">bool</span> crashOnFail)</div>
|
||||||
|
<div class="line"><a id="l00677" name="l00677"></a><span class="lineno"> 677</span>{</div>
|
||||||
|
<div class="line"><a id="l00678" name="l00678"></a><span class="lineno"> 678</span> this->crashOnFail = crashOnFail;</div>
|
||||||
|
<div class="line"><a id="l00679" name="l00679"></a><span class="lineno"> 679</span> <span class="keywordflow">return</span>;</div>
|
||||||
|
<div class="line"><a id="l00680" name="l00680"></a><span class="lineno"> 680</span>}</div>
|
||||||
|
<div class="line"><a id="l00681" name="l00681"></a><span class="lineno"> 681</span> </div>
|
||||||
|
<div class="line"><a id="l00682" name="l00682"></a><span class="lineno"> 682</span><span class="keyword">const</span> <a class="code hl_struct" href="structHazelnp_1_1ParamConstraint.html">ParamConstraint</a>* CmdArgsInterface::GetConstraintForKey(<span class="keyword">const</span> std::string& key)<span class="keyword"> const</span></div>
|
||||||
|
<div class="line"><a id="l00683" name="l00683"></a><span class="lineno"> 683</span><span class="keyword"></span>{</div>
|
||||||
|
<div class="line"><a id="l00684" name="l00684"></a><span class="lineno"> 684</span> <span class="keyword">const</span> <span class="keyword">auto</span> constraint = parameterConstraints.find(key);</div>
|
||||||
|
<div class="line"><a id="l00685" name="l00685"></a><span class="lineno"> 685</span> </div>
|
||||||
|
<div class="line"><a id="l00686" name="l00686"></a><span class="lineno"> 686</span> <span class="keywordflow">if</span> (constraint == parameterConstraints.end())</div>
|
||||||
|
<div class="line"><a id="l00687" name="l00687"></a><span class="lineno"> 687</span> <span class="keywordflow">return</span> <span class="keyword">nullptr</span>;</div>
|
||||||
|
<div class="line"><a id="l00688" name="l00688"></a><span class="lineno"> 688</span> </div>
|
||||||
|
<div class="line"><a id="l00689" name="l00689"></a><span class="lineno"> 689</span> <span class="keywordflow">return</span> &constraint->second;</div>
|
||||||
|
<div class="line"><a id="l00690" name="l00690"></a><span class="lineno"> 690</span>}</div>
|
||||||
|
<div class="ttc" id="aCmdArgsInterface_8h_html"><div class="ttname"><a href="CmdArgsInterface_8h.html">CmdArgsInterface.h</a></div></div>
|
||||||
|
<div class="ttc" id="aFloatValue_8h_html"><div class="ttname"><a href="FloatValue_8h.html">FloatValue.h</a></div></div>
|
||||||
|
<div class="ttc" id="aHazelnuppException_8h_html"><div class="ttname"><a href="HazelnuppException_8h.html">HazelnuppException.h</a></div></div>
|
||||||
|
<div class="ttc" id="aIntValue_8h_html"><div class="ttname"><a href="IntValue_8h.html">IntValue.h</a></div></div>
|
||||||
|
<div class="ttc" id="aListValue_8h_html"><div class="ttname"><a href="ListValue_8h.html">ListValue.h</a></div></div>
|
||||||
|
<div class="ttc" id="aPlaceholders_8h_html"><div class="ttname"><a href="Placeholders_8h.html">Placeholders.h</a></div></div>
|
||||||
|
<div class="ttc" id="aStringTools_8h_html"><div class="ttname"><a href="StringTools_8h.html">StringTools.h</a></div></div>
|
||||||
|
<div class="ttc" id="aStringValue_8h_html"><div class="ttname"><a href="StringValue_8h.html">StringValue.h</a></div></div>
|
||||||
|
<div class="ttc" id="aVoidValue_8h_html"><div class="ttname"><a href="VoidValue_8h.html">VoidValue.h</a></div></div>
|
||||||
|
<div class="ttc" id="aclassHazelnp_1_1CmdArgsInterface_html_a019e48f48427e7caa76c964bd0f117d0"><div class="ttname"><a href="classHazelnp_1_1CmdArgsInterface.html#a019e48f48427e7caa76c964bd0f117d0">Hazelnp::CmdArgsInterface::ClearAbbreviations</a></div><div class="ttdeci">void ClearAbbreviations()</div><div class="ttdoc">Will delete all abbreviations.</div><div class="ttdef"><b>Definition:</b> <a href="CmdArgsInterface_8cpp_source.html#l00657">CmdArgsInterface.cpp:657</a></div></div>
|
||||||
|
<div class="ttc" id="aclassHazelnp_1_1CmdArgsInterface_html_a1026d98c23659b6d3d108b231806a1e3"><div class="ttname"><a href="classHazelnp_1_1CmdArgsInterface.html#a1026d98c23659b6d3d108b231806a1e3">Hazelnp::CmdArgsInterface::GetCatchHelp</a></div><div class="ttdeci">bool GetCatchHelp() const</div><div class="ttdoc">Retruns whether the CmdArgsInterface should automatically catch the –help parameter,...</div><div class="ttdef"><b>Definition:</b> <a href="CmdArgsInterface_8cpp_source.html#l00374">CmdArgsInterface.cpp:374</a></div></div>
|
||||||
|
<div class="ttc" id="aclassHazelnp_1_1CmdArgsInterface_html_a112d2d5e3fd1cf1507592389c8454984"><div class="ttname"><a href="classHazelnp_1_1CmdArgsInterface.html#a112d2d5e3fd1cf1507592389c8454984">Hazelnp::CmdArgsInterface::ClearConstraint</a></div><div class="ttdeci">void ClearConstraint(const std::string &parameter)</div><div class="ttdoc">Will the constraint of a specific parameter.</div><div class="ttdef"><b>Definition:</b> <a href="CmdArgsInterface_8cpp_source.html#l00612">CmdArgsInterface.cpp:612</a></div></div>
|
||||||
|
<div class="ttc" id="aclassHazelnp_1_1CmdArgsInterface_html_a1486bfef870e6502aefc23b11ce6caaf"><div class="ttname"><a href="classHazelnp_1_1CmdArgsInterface.html#a1486bfef870e6502aefc23b11ce6caaf">Hazelnp::CmdArgsInterface::GetAbbreviation</a></div><div class="ttdeci">const std::string & GetAbbreviation(const std::string &abbrev) const</div><div class="ttdoc">Will return the long form of an abbreviation (like –force for -f) Returns "" if no match is found.</div><div class="ttdef"><b>Definition:</b> <a href="CmdArgsInterface_8cpp_source.html#l00638">CmdArgsInterface.cpp:638</a></div></div>
|
||||||
|
<div class="ttc" id="aclassHazelnp_1_1CmdArgsInterface_html_a16a3a02f77d240d8cf51cd4ee1797113"><div class="ttname"><a href="classHazelnp_1_1CmdArgsInterface.html#a16a3a02f77d240d8cf51cd4ee1797113">Hazelnp::CmdArgsInterface::SetCrashOnFail</a></div><div class="ttdeci">void SetCrashOnFail(bool crashOnFail)</div><div class="ttdoc">Sets whether to crash the application, and print to stderr, when an exception is raised whilst parsin...</div><div class="ttdef"><b>Definition:</b> <a href="CmdArgsInterface_8cpp_source.html#l00676">CmdArgsInterface.cpp:676</a></div></div>
|
||||||
|
<div class="ttc" id="aclassHazelnp_1_1CmdArgsInterface_html_a1945208a97707b2e3c654424f0760441"><div class="ttname"><a href="classHazelnp_1_1CmdArgsInterface.html#a1945208a97707b2e3c654424f0760441">Hazelnp::CmdArgsInterface::GetBriefDescription</a></div><div class="ttdeci">const std::string & GetBriefDescription()</div><div class="ttdoc">Returns the brief description of the application to be automatically added to the documentation.</div><div class="ttdef"><b>Definition:</b> <a href="CmdArgsInterface_8cpp_source.html#l00385">CmdArgsInterface.cpp:385</a></div></div>
|
||||||
|
<div class="ttc" id="aclassHazelnp_1_1CmdArgsInterface_html_a1f4845041e08b3335510de44fafaee19"><div class="ttname"><a href="classHazelnp_1_1CmdArgsInterface.html#a1f4845041e08b3335510de44fafaee19">Hazelnp::CmdArgsInterface::Parse</a></div><div class="ttdeci">void Parse(const int argc, const char *const *argv)</div><div class="ttdoc">Will parse command line arguments.</div><div class="ttdef"><b>Definition:</b> <a href="CmdArgsInterface_8cpp_source.html#l00036">CmdArgsInterface.cpp:36</a></div></div>
|
||||||
|
<div class="ttc" id="aclassHazelnp_1_1CmdArgsInterface_html_a31f690bd95d5469d38af816183cbe3e7"><div class="ttname"><a href="classHazelnp_1_1CmdArgsInterface.html#a31f690bd95d5469d38af816183cbe3e7">Hazelnp::CmdArgsInterface::ClearAbbreviation</a></div><div class="ttdeci">void ClearAbbreviation(const std::string &abbrevation)</div><div class="ttdoc">Will delete the abbreviation for a given parameter.</div><div class="ttdef"><b>Definition:</b> <a href="CmdArgsInterface_8cpp_source.html#l00651">CmdArgsInterface.cpp:651</a></div></div>
|
||||||
|
<div class="ttc" id="aclassHazelnp_1_1CmdArgsInterface_html_a328dbc265e7ffa9ab526ed8aa755e107"><div class="ttname"><a href="classHazelnp_1_1CmdArgsInterface.html#a328dbc265e7ffa9ab526ed8aa755e107">Hazelnp::CmdArgsInterface::ClearDescriptions</a></div><div class="ttdeci">void ClearDescriptions()</div><div class="ttdoc">Will delete all parameter descriptions.</div><div class="ttdef"><b>Definition:</b> <a href="CmdArgsInterface_8cpp_source.html#l00419">CmdArgsInterface.cpp:419</a></div></div>
|
||||||
|
<div class="ttc" id="aclassHazelnp_1_1CmdArgsInterface_html_a3a7fa36fe69ee8bf3b400983a21ecd24"><div class="ttname"><a href="classHazelnp_1_1CmdArgsInterface.html#a3a7fa36fe69ee8bf3b400983a21ecd24">Hazelnp::CmdArgsInterface::HasParam</a></div><div class="ttdeci">bool HasParam(const std::string &key) const</div><div class="ttdoc">Will check wether a parameter exists given a key, or not.</div><div class="ttdef"><b>Definition:</b> <a href="CmdArgsInterface_8cpp_source.html#l00199">CmdArgsInterface.cpp:199</a></div></div>
|
||||||
|
<div class="ttc" id="aclassHazelnp_1_1CmdArgsInterface_html_a3e60c7a90c11bdc634d0f5d0dba5064c"><div class="ttname"><a href="classHazelnp_1_1CmdArgsInterface.html#a3e60c7a90c11bdc634d0f5d0dba5064c">Hazelnp::CmdArgsInterface::GetCrashOnFail</a></div><div class="ttdeci">bool GetCrashOnFail() const</div><div class="ttdoc">Gets whether the application crashes on an exception whilst parsing, and prints to stderr.</div><div class="ttdef"><b>Definition:</b> <a href="CmdArgsInterface_8cpp_source.html#l00363">CmdArgsInterface.cpp:363</a></div></div>
|
||||||
|
<div class="ttc" id="aclassHazelnp_1_1CmdArgsInterface_html_a5003f826ee31c6365bf4b6e8b2c8d9f1"><div class="ttname"><a href="classHazelnp_1_1CmdArgsInterface.html#a5003f826ee31c6365bf4b6e8b2c8d9f1">Hazelnp::CmdArgsInterface::HasDescription</a></div><div class="ttdeci">bool HasDescription(const std::string &parameter) const</div><div class="ttdoc">Returns whether or not a given parameter has a registered description.</div><div class="ttdef"><b>Definition:</b> <a href="CmdArgsInterface_8cpp_source.html#l00407">CmdArgsInterface.cpp:407</a></div></div>
|
||||||
|
<div class="ttc" id="aclassHazelnp_1_1CmdArgsInterface_html_a58b81709e631cee5f3db3f3f48611fe9"><div class="ttname"><a href="classHazelnp_1_1CmdArgsInterface.html#a58b81709e631cee5f3db3f3f48611fe9">Hazelnp::CmdArgsInterface::HasAbbreviation</a></div><div class="ttdeci">bool HasAbbreviation(const std::string &abbrev) const</div><div class="ttdoc">Will check wether or not an abbreviation is registered.</div><div class="ttdef"><b>Definition:</b> <a href="CmdArgsInterface_8cpp_source.html#l00646">CmdArgsInterface.cpp:646</a></div></div>
|
||||||
|
<div class="ttc" id="aclassHazelnp_1_1CmdArgsInterface_html_a62889ce1faa90d0f20be3ae45803baa0"><div class="ttname"><a href="classHazelnp_1_1CmdArgsInterface.html#a62889ce1faa90d0f20be3ae45803baa0">Hazelnp::CmdArgsInterface::ClearDescription</a></div><div class="ttdeci">void ClearDescription(const std::string &parameter)</div><div class="ttdoc">Will delete the description of a parameter if it exists.</div><div class="ttdef"><b>Definition:</b> <a href="CmdArgsInterface_8cpp_source.html#l00412">CmdArgsInterface.cpp:412</a></div></div>
|
||||||
|
<div class="ttc" id="aclassHazelnp_1_1CmdArgsInterface_html_a6589d2e818ba32f2a3e5b5a6a5e2bf1e"><div class="ttname"><a href="classHazelnp_1_1CmdArgsInterface.html#a6589d2e818ba32f2a3e5b5a6a5e2bf1e">Hazelnp::CmdArgsInterface::RegisterDescription</a></div><div class="ttdeci">void RegisterDescription(const std::string &parameter, const std::string &description)</div><div class="ttdoc">Willl register a short description for a parameter.</div><div class="ttdef"><b>Definition:</b> <a href="CmdArgsInterface_8cpp_source.html#l00390">CmdArgsInterface.cpp:390</a></div></div>
|
||||||
|
<div class="ttc" id="aclassHazelnp_1_1CmdArgsInterface_html_a67ba6cb3176884c85dd56fc9084ab66a"><div class="ttname"><a href="classHazelnp_1_1CmdArgsInterface.html#a67ba6cb3176884c85dd56fc9084ab66a">Hazelnp::CmdArgsInterface::SetBriefDescription</a></div><div class="ttdeci">void SetBriefDescription(const std::string &description)</div><div class="ttdoc">Sets a brief description of the application to be automatically added to the documentation.</div><div class="ttdef"><b>Definition:</b> <a href="CmdArgsInterface_8cpp_source.html#l00379">CmdArgsInterface.cpp:379</a></div></div>
|
||||||
|
<div class="ttc" id="aclassHazelnp_1_1CmdArgsInterface_html_a89bc3f54d7ff0740549dbdf7b7f727e3"><div class="ttname"><a href="classHazelnp_1_1CmdArgsInterface.html#a89bc3f54d7ff0740549dbdf7b7f727e3">Hazelnp::CmdArgsInterface::GetDescription</a></div><div class="ttdeci">const std::string & GetDescription(const std::string &parameter) const</div><div class="ttdoc">Will return a short description for a parameter, if it exists.</div><div class="ttdef"><b>Definition:</b> <a href="CmdArgsInterface_8cpp_source.html#l00396">CmdArgsInterface.cpp:396</a></div></div>
|
||||||
|
<div class="ttc" id="aclassHazelnp_1_1CmdArgsInterface_html_a9b9bc5c4443799ea847077e9cefb1927"><div class="ttname"><a href="classHazelnp_1_1CmdArgsInterface.html#a9b9bc5c4443799ea847077e9cefb1927">Hazelnp::CmdArgsInterface::GenerateDocumentation</a></div><div class="ttdeci">std::string GenerateDocumentation() const</div><div class="ttdoc">Will generate a text-based documentation suited to show the user, for example on –help.</div><div class="ttdef"><b>Definition:</b> <a href="CmdArgsInterface_8cpp_source.html#l00425">CmdArgsInterface.cpp:425</a></div></div>
|
||||||
|
<div class="ttc" id="aclassHazelnp_1_1CmdArgsInterface_html_aa1189c249bf0d8a4fbd5fb8f03a30212"><div class="ttname"><a href="classHazelnp_1_1CmdArgsInterface.html#aa1189c249bf0d8a4fbd5fb8f03a30212">Hazelnp::CmdArgsInterface::CmdArgsInterface</a></div><div class="ttdeci">CmdArgsInterface()</div><div class="ttdef"><b>Definition:</b> <a href="CmdArgsInterface_8cpp_source.html#l00015">CmdArgsInterface.cpp:15</a></div></div>
|
||||||
|
<div class="ttc" id="aclassHazelnp_1_1CmdArgsInterface_html_aa30222df012f357455f90e3620346bb2"><div class="ttname"><a href="classHazelnp_1_1CmdArgsInterface.html#aa30222df012f357455f90e3620346bb2">Hazelnp::CmdArgsInterface::RegisterConstraint</a></div><div class="ttdeci">void RegisterConstraint(const std::string &key, const ParamConstraint &constraint)</div><div class="ttdoc">Will register a constraint for a parameter.</div><div class="ttdef"><b>Definition:</b> <a href="CmdArgsInterface_8cpp_source.html#l00663">CmdArgsInterface.cpp:663</a></div></div>
|
||||||
|
<div class="ttc" id="aclassHazelnp_1_1CmdArgsInterface_html_aaccf591a74408aeb4363033fe8cb2224"><div class="ttname"><a href="classHazelnp_1_1CmdArgsInterface.html#aaccf591a74408aeb4363033fe8cb2224">Hazelnp::CmdArgsInterface::RegisterAbbreviation</a></div><div class="ttdeci">void RegisterAbbreviation(const std::string &abbrev, const std::string &target)</div><div class="ttdoc">Will register an abbreviation (like -f for –force)</div><div class="ttdef"><b>Definition:</b> <a href="CmdArgsInterface_8cpp_source.html#l00632">CmdArgsInterface.cpp:632</a></div></div>
|
||||||
|
<div class="ttc" id="aclassHazelnp_1_1CmdArgsInterface_html_aadc75b3b6c9662cfbd4a936468d50466"><div class="ttname"><a href="classHazelnp_1_1CmdArgsInterface.html#aadc75b3b6c9662cfbd4a936468d50466">Hazelnp::CmdArgsInterface::~CmdArgsInterface</a></div><div class="ttdeci">~CmdArgsInterface()</div><div class="ttdef"><b>Definition:</b> <a href="CmdArgsInterface_8cpp_source.html#l00026">CmdArgsInterface.cpp:26</a></div></div>
|
||||||
|
<div class="ttc" id="aclassHazelnp_1_1CmdArgsInterface_html_abf553ed4acabf9e1db357715bc10533c"><div class="ttname"><a href="classHazelnp_1_1CmdArgsInterface.html#abf553ed4acabf9e1db357715bc10533c">Hazelnp::CmdArgsInterface::SetCatchHelp</a></div><div class="ttdeci">void SetCatchHelp(bool catchHelp)</div><div class="ttdoc">Sets whether the CmdArgsInterface should automatically catch the –help parameter, print the parameter...</div><div class="ttdef"><b>Definition:</b> <a href="CmdArgsInterface_8cpp_source.html#l00368">CmdArgsInterface.cpp:368</a></div></div>
|
||||||
|
<div class="ttc" id="aclassHazelnp_1_1CmdArgsInterface_html_ad472671fb12450b8d929418fbbffbe40"><div class="ttname"><a href="classHazelnp_1_1CmdArgsInterface.html#ad472671fb12450b8d929418fbbffbe40">Hazelnp::CmdArgsInterface::ClearConstraints</a></div><div class="ttdeci">void ClearConstraints()</div><div class="ttdoc">Will delete all constraints.</div><div class="ttdef"><b>Definition:</b> <a href="CmdArgsInterface_8cpp_source.html#l00670">CmdArgsInterface.cpp:670</a></div></div>
|
||||||
|
<div class="ttc" id="aclassHazelnp_1_1CmdArgsInterface_html_adec82884377a5193f68dcc7b6ef69d8b"><div class="ttname"><a href="classHazelnp_1_1CmdArgsInterface.html#adec82884377a5193f68dcc7b6ef69d8b">Hazelnp::CmdArgsInterface::GetConstraint</a></div><div class="ttdeci">ParamConstraint GetConstraint(const std::string &parameter) const</div><div class="ttdoc">Will return the constraint information for a specific parameter.</div><div class="ttdef"><b>Definition:</b> <a href="CmdArgsInterface_8cpp_source.html#l00607">CmdArgsInterface.cpp:607</a></div></div>
|
||||||
|
<div class="ttc" id="aclassHazelnp_1_1CmdArgsInterface_html_af5e43c1067fb6c1074d9be3427c7a415"><div class="ttname"><a href="classHazelnp_1_1CmdArgsInterface.html#af5e43c1067fb6c1074d9be3427c7a415">Hazelnp::CmdArgsInterface::operator[]</a></div><div class="ttdeci">const Value & operator[](const std::string &key) const</div><div class="ttdoc">Will return the value given a key.</div><div class="ttdef"><b>Definition:</b> <a href="CmdArgsInterface_8cpp_source.html#l00623">CmdArgsInterface.cpp:623</a></div></div>
|
||||||
|
<div class="ttc" id="aclassHazelnp_1_1CmdArgsInterface_html_afe83a815b21d37b3d2a6d0ef67137faf"><div class="ttname"><a href="classHazelnp_1_1CmdArgsInterface.html#afe83a815b21d37b3d2a6d0ef67137faf">Hazelnp::CmdArgsInterface::GetExecutableName</a></div><div class="ttdeci">const std::string & GetExecutableName() const</div><div class="ttdoc">Will return argv[0], the name of the executable.</div><div class="ttdef"><b>Definition:</b> <a href="CmdArgsInterface_8cpp_source.html#l00618">CmdArgsInterface.cpp:618</a></div></div>
|
||||||
|
<div class="ttc" id="aclassHazelnp_1_1FloatValue_html"><div class="ttname"><a href="classHazelnp_1_1FloatValue.html">Hazelnp::FloatValue</a></div><div class="ttdoc">Specializations for floating point values (uses long double)</div><div class="ttdef"><b>Definition:</b> <a href="FloatValue_8h_source.html#l00009">FloatValue.h:10</a></div></div>
|
||||||
|
<div class="ttc" id="aclassHazelnp_1_1HazelnuppConstraintException_html"><div class="ttname"><a href="classHazelnp_1_1HazelnuppConstraintException.html">Hazelnp::HazelnuppConstraintException</a></div><div class="ttdoc">Gets thrown something bad happens because of parameter constraints.</div><div class="ttdef"><b>Definition:</b> <a href="HazelnuppException_8h_source.html#l00047">HazelnuppException.h:48</a></div></div>
|
||||||
|
<div class="ttc" id="aclassHazelnp_1_1HazelnuppConstraintIncompatibleParameters_html"><div class="ttname"><a href="classHazelnp_1_1HazelnuppConstraintIncompatibleParameters.html">Hazelnp::HazelnuppConstraintIncompatibleParameters</a></div><div class="ttdoc">Gets thrown when a parameter constrained to be incompatible with other parameters gets supplied along...</div><div class="ttdef"><b>Definition:</b> <a href="HazelnuppException_8h_source.html#l00101">HazelnuppException.h:102</a></div></div>
|
||||||
|
<div class="ttc" id="aclassHazelnp_1_1HazelnuppConstraintMissingValue_html"><div class="ttname"><a href="classHazelnp_1_1HazelnuppConstraintMissingValue.html">Hazelnp::HazelnuppConstraintMissingValue</a></div><div class="ttdoc">Gets thrown when a parameter constrained to be required is not provided, and has no default value set...</div><div class="ttdef"><b>Definition:</b> <a href="HazelnuppException_8h_source.html#l00080">HazelnuppException.h:81</a></div></div>
|
||||||
|
<div class="ttc" id="aclassHazelnp_1_1HazelnuppConstraintTypeMissmatch_html"><div class="ttname"><a href="classHazelnp_1_1HazelnuppConstraintTypeMissmatch.html">Hazelnp::HazelnuppConstraintTypeMissmatch</a></div><div class="ttdoc">Gets thrown when a parameter is of a type that does not match the required type, and is not convertib...</div><div class="ttdef"><b>Definition:</b> <a href="HazelnuppException_8h_source.html#l00056">HazelnuppException.h:57</a></div></div>
|
||||||
|
<div class="ttc" id="aclassHazelnp_1_1HazelnuppException_html"><div class="ttname"><a href="classHazelnp_1_1HazelnuppException.html">Hazelnp::HazelnuppException</a></div><div class="ttdoc">Generic hazelnupp exception.</div><div class="ttdef"><b>Definition:</b> <a href="HazelnuppException_8h_source.html#l00011">HazelnuppException.h:12</a></div></div>
|
||||||
|
<div class="ttc" id="aclassHazelnp_1_1HazelnuppException_html_a0ad1471a4613f1c53ae8b21c7ed7096b"><div class="ttname"><a href="classHazelnp_1_1HazelnuppException.html#a0ad1471a4613f1c53ae8b21c7ed7096b">Hazelnp::HazelnuppException::What</a></div><div class="ttdeci">const std::string & What() const</div><div class="ttdoc">Will return an error message.</div><div class="ttdef"><b>Definition:</b> <a href="HazelnuppException_8h_source.html#l00018">HazelnuppException.h:18</a></div></div>
|
||||||
|
<div class="ttc" id="aclassHazelnp_1_1HazelnuppInvalidKeyException_html"><div class="ttname"><a href="classHazelnp_1_1HazelnuppInvalidKeyException.html">Hazelnp::HazelnuppInvalidKeyException</a></div><div class="ttdoc">Gets thrown when an non-existent key gets dereferenced.</div><div class="ttdef"><b>Definition:</b> <a href="HazelnuppException_8h_source.html#l00029">HazelnuppException.h:30</a></div></div>
|
||||||
|
<div class="ttc" id="aclassHazelnp_1_1IntValue_html"><div class="ttname"><a href="classHazelnp_1_1IntValue.html">Hazelnp::IntValue</a></div><div class="ttdoc">Specializations for integer values (uses long long int)</div><div class="ttdef"><b>Definition:</b> <a href="IntValue_8h_source.html#l00008">IntValue.h:9</a></div></div>
|
||||||
|
<div class="ttc" id="aclassHazelnp_1_1Internal_1_1StringTools_html_a1abf1454a223165acfb52f2a246c8215"><div class="ttname"><a href="classHazelnp_1_1Internal_1_1StringTools.html#a1abf1454a223165acfb52f2a246c8215">Hazelnp::Internal::StringTools::IsNumeric</a></div><div class="ttdeci">static bool IsNumeric(const std::string &str, const bool allowDecimalPoint=false)</div><div class="ttdoc">Will return true if the given string consists only of digits (including signage)</div><div class="ttdef"><b>Definition:</b> <a href="StringTools_8cpp_source.html#l00056">StringTools.cpp:56</a></div></div>
|
||||||
|
<div class="ttc" id="aclassHazelnp_1_1Internal_1_1StringTools_html_a3cc71bfffcad9a4334e74aac69dbfd68"><div class="ttname"><a href="classHazelnp_1_1Internal_1_1StringTools.html#a3cc71bfffcad9a4334e74aac69dbfd68">Hazelnp::Internal::StringTools::ParseNumber</a></div><div class="ttdeci">static bool ParseNumber(const std::string &str, bool &out_isInt, long double &out_number)</div><div class="ttdoc">Will convert the number in str to a number.</div><div class="ttdef"><b>Definition:</b> <a href="StringTools_8cpp_source.html#l00082">StringTools.cpp:82</a></div></div>
|
||||||
|
<div class="ttc" id="aclassHazelnp_1_1ListValue_html"><div class="ttname"><a href="classHazelnp_1_1ListValue.html">Hazelnp::ListValue</a></div><div class="ttdoc">Specializations for list values (uses std::vector<Value*>)</div><div class="ttdef"><b>Definition:</b> <a href="ListValue_8h_source.html#l00009">ListValue.h:10</a></div></div>
|
||||||
|
<div class="ttc" id="aclassHazelnp_1_1ListValue_html_af8787d266aa353d3f96e2c76cce76c41"><div class="ttname"><a href="classHazelnp_1_1ListValue.html#af8787d266aa353d3f96e2c76cce76c41">Hazelnp::ListValue::AddValue</a></div><div class="ttdeci">void AddValue(const Value *value)</div><div class="ttdoc">Will add this value to the list.</div><div class="ttdef"><b>Definition:</b> <a href="ListValue_8cpp_source.html#l00033">ListValue.cpp:33</a></div></div>
|
||||||
|
<div class="ttc" id="aclassHazelnp_1_1Parameter_html"><div class="ttname"><a href="classHazelnp_1_1Parameter.html">Hazelnp::Parameter</a></div><div class="ttdef"><b>Definition:</b> <a href="Parameter_8h_source.html#l00008">Parameter.h:9</a></div></div>
|
||||||
|
<div class="ttc" id="aclassHazelnp_1_1Parameter_html_a7acd68ce06eec06ab286b1a062f9c8d6"><div class="ttname"><a href="classHazelnp_1_1Parameter.html#a7acd68ce06eec06ab286b1a062f9c8d6">Hazelnp::Parameter::Key</a></div><div class="ttdeci">const std::string & Key() const</div><div class="ttdoc">Will return the key of this parameter.</div><div class="ttdef"><b>Definition:</b> <a href="Parameter_8cpp_source.html#l00021">Parameter.cpp:21</a></div></div>
|
||||||
|
<div class="ttc" id="aclassHazelnp_1_1StringValue_html"><div class="ttname"><a href="classHazelnp_1_1StringValue.html">Hazelnp::StringValue</a></div><div class="ttdoc">Specializations for string values (uses std::string)</div><div class="ttdef"><b>Definition:</b> <a href="StringValue_8h_source.html#l00009">StringValue.h:10</a></div></div>
|
||||||
|
<div class="ttc" id="aclassHazelnp_1_1Value_html"><div class="ttname"><a href="classHazelnp_1_1Value.html">Hazelnp::Value</a></div><div class="ttdoc">Abstract class for values.</div><div class="ttdef"><b>Definition:</b> <a href="Value_8h_source.html#l00010">Value.h:11</a></div></div>
|
||||||
|
<div class="ttc" id="aclassHazelnp_1_1VoidValue_html"><div class="ttname"><a href="classHazelnp_1_1VoidValue.html">Hazelnp::VoidValue</a></div><div class="ttdoc">Specializations for void values.</div><div class="ttdef"><b>Definition:</b> <a href="VoidValue_8h_source.html#l00008">VoidValue.h:9</a></div></div>
|
||||||
|
<div class="ttc" id="anamespaceHazelnp_1_1Placeholders_html_a90536f0cd5261b18da736e954c6b8b79"><div class="ttname"><a href="namespaceHazelnp_1_1Placeholders.html#a90536f0cd5261b18da736e954c6b8b79">Hazelnp::Placeholders::g_emptyString</a></div><div class="ttdeci">static const std::string g_emptyString</div><div class="ttdoc">The only purpose of this is to provide the ability to return an empty string as an error for std::str...</div><div class="ttdef"><b>Definition:</b> <a href="Placeholders_8h_source.html#l00009">Placeholders.h:9</a></div></div>
|
||||||
|
<div class="ttc" id="anamespaceHazelnp_html"><div class="ttname"><a href="namespaceHazelnp.html">Hazelnp</a></div><div class="ttdef"><b>Definition:</b> <a href="CmdArgsInterface_8h_source.html#l00009">CmdArgsInterface.h:10</a></div></div>
|
||||||
|
<div class="ttc" id="anamespaceHazelnp_html_a07b61ac22ce9cd97eceebdf9487f803f"><div class="ttname"><a href="namespaceHazelnp.html#a07b61ac22ce9cd97eceebdf9487f803f">Hazelnp::DATA_TYPE</a></div><div class="ttdeci">DATA_TYPE</div><div class="ttdoc">The different data types a paramater can be.</div><div class="ttdef"><b>Definition:</b> <a href="DataType_8h_source.html#l00008">DataType.h:9</a></div></div>
|
||||||
|
<div class="ttc" id="anamespaceHazelnp_html_a07b61ac22ce9cd97eceebdf9487f803fa298cb25408234de02baf2085803a464a"><div class="ttname"><a href="namespaceHazelnp.html#a07b61ac22ce9cd97eceebdf9487f803fa298cb25408234de02baf2085803a464a">Hazelnp::DATA_TYPE::LIST</a></div><div class="ttdeci">@ LIST</div></div>
|
||||||
|
<div class="ttc" id="anamespaceHazelnp_html_a07b61ac22ce9cd97eceebdf9487f803fa53f93baa3057821107c750323892fa92"><div class="ttname"><a href="namespaceHazelnp.html#a07b61ac22ce9cd97eceebdf9487f803fa53f93baa3057821107c750323892fa92">Hazelnp::DATA_TYPE::INT</a></div><div class="ttdeci">@ INT</div></div>
|
||||||
|
<div class="ttc" id="anamespaceHazelnp_html_a07b61ac22ce9cd97eceebdf9487f803fa63b588d5559f64f89a416e656880b949"><div class="ttname"><a href="namespaceHazelnp.html#a07b61ac22ce9cd97eceebdf9487f803fa63b588d5559f64f89a416e656880b949">Hazelnp::DATA_TYPE::STRING</a></div><div class="ttdeci">@ STRING</div></div>
|
||||||
|
<div class="ttc" id="anamespaceHazelnp_html_a07b61ac22ce9cd97eceebdf9487f803fa6d0c9fc747131795e6e5d0c5119f12cb"><div class="ttname"><a href="namespaceHazelnp.html#a07b61ac22ce9cd97eceebdf9487f803fa6d0c9fc747131795e6e5d0c5119f12cb">Hazelnp::DATA_TYPE::VOID</a></div><div class="ttdeci">@ VOID</div></div>
|
||||||
|
<div class="ttc" id="anamespaceHazelnp_html_a07b61ac22ce9cd97eceebdf9487f803fae738c26bf4ce1037fa81b039a915cbf6"><div class="ttname"><a href="namespaceHazelnp.html#a07b61ac22ce9cd97eceebdf9487f803fae738c26bf4ce1037fa81b039a915cbf6">Hazelnp::DATA_TYPE::FLOAT</a></div><div class="ttdeci">@ FLOAT</div></div>
|
||||||
|
<div class="ttc" id="anamespaceHazelnp_html_a7fb1e5ad9e2ecb6c0025beb19f11621b"><div class="ttname"><a href="namespaceHazelnp.html#a7fb1e5ad9e2ecb6c0025beb19f11621b">Hazelnp::DataTypeToString</a></div><div class="ttdeci">static std::string DataTypeToString(DATA_TYPE type)</div><div class="ttdef"><b>Definition:</b> <a href="DataType_8h_source.html#l00017">DataType.h:17</a></div></div>
|
||||||
|
<div class="ttc" id="astructHazelnp_1_1ParamConstraint_html"><div class="ttname"><a href="structHazelnp_1_1ParamConstraint.html">Hazelnp::ParamConstraint</a></div><div class="ttdef"><b>Definition:</b> <a href="ParamConstraint_8h_source.html#l00008">ParamConstraint.h:9</a></div></div>
|
||||||
|
<div class="ttc" id="astructHazelnp_1_1ParamConstraint_html_a203b6fd1b9788a529aa0f15fe94fd24a"><div class="ttname"><a href="structHazelnp_1_1ParamConstraint.html#a203b6fd1b9788a529aa0f15fe94fd24a">Hazelnp::ParamConstraint::requiredType</a></div><div class="ttdeci">DATA_TYPE requiredType</div><div class="ttdoc">Constrain the parameter to this value. Requires constrainType to be set to true.</div><div class="ttdef"><b>Definition:</b> <a href="ParamConstraint_8h_source.html#l00116">ParamConstraint.h:116</a></div></div>
|
||||||
|
<div class="ttc" id="astructHazelnp_1_1ParamConstraint_html_a88a4a4c215723259c71853992d09acac"><div class="ttname"><a href="structHazelnp_1_1ParamConstraint.html#a88a4a4c215723259c71853992d09acac">Hazelnp::ParamConstraint::constrainType</a></div><div class="ttdeci">bool constrainType</div><div class="ttdoc">Should this parameter be forced to be of a certain type? Remember to set constrainTo to the wanted ...</div><div class="ttdef"><b>Definition:</b> <a href="ParamConstraint_8h_source.html#l00113">ParamConstraint.h:113</a></div></div>
|
||||||
|
</div><!-- fragment --></div><!-- contents -->
|
||||||
|
<!-- start footer part -->
|
||||||
|
<hr class="footer"/><address class="footer"><small>
|
||||||
|
Generated on Thu Apr 28 2022 12:05:07 for Leonetienne/Hazelnupp by <a href="https://www.doxygen.org/index.html"><img class="footer" src="doxygen.svg" width="104" height="31" alt="doxygen"/></a> 1.9.3
|
||||||
|
</small></address>
|
||||||
|
</body>
|
||||||
|
</html>
|
134
Hazelnupp/doxygen/build/CmdArgsInterface_8h.html
Normal file
134
Hazelnupp/doxygen/build/CmdArgsInterface_8h.html
Normal file
@ -0,0 +1,134 @@
|
|||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||||
|
<head>
|
||||||
|
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=11"/>
|
||||||
|
<meta name="generator" content="Doxygen 1.9.3"/>
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
||||||
|
<title>Leonetienne/Hazelnupp: include/Hazelnupp/CmdArgsInterface.h File Reference</title>
|
||||||
|
<link href="tabs.css" rel="stylesheet" type="text/css"/>
|
||||||
|
<script type="text/javascript" src="jquery.js"></script>
|
||||||
|
<script type="text/javascript" src="dynsections.js"></script>
|
||||||
|
<link href="search/search.css" rel="stylesheet" type="text/css"/>
|
||||||
|
<script type="text/javascript" src="search/searchdata.js"></script>
|
||||||
|
<script type="text/javascript" src="search/search.js"></script>
|
||||||
|
<script type="text/x-mathjax-config">
|
||||||
|
MathJax.Hub.Config({
|
||||||
|
extensions: ["tex2jax.js"],
|
||||||
|
jax: ["input/TeX","output/HTML-CSS"],
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
<script type="text/javascript" async="async" src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.5/MathJax.js"></script>
|
||||||
|
<link href="doxygen.css" rel="stylesheet" type="text/css" />
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
|
||||||
|
<div id="titlearea">
|
||||||
|
<table cellspacing="0" cellpadding="0">
|
||||||
|
<tbody>
|
||||||
|
<tr id="projectrow">
|
||||||
|
<td id="projectalign">
|
||||||
|
<div id="projectname">Leonetienne/Hazelnupp
|
||||||
|
</div>
|
||||||
|
<div id="projectbrief">Simple, easy to use, command line parameter interface</div>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<!-- end header part -->
|
||||||
|
<!-- Generated by Doxygen 1.9.3 -->
|
||||||
|
<script type="text/javascript">
|
||||||
|
/* @license magnet:?xt=urn:btih:d3d9a9a6595521f9666a5e94cc830dab83b65699&dn=expat.txt MIT */
|
||||||
|
var searchBox = new SearchBox("searchBox", "search",'Search','.html');
|
||||||
|
/* @license-end */
|
||||||
|
</script>
|
||||||
|
<script type="text/javascript" src="menudata.js"></script>
|
||||||
|
<script type="text/javascript" src="menu.js"></script>
|
||||||
|
<script type="text/javascript">
|
||||||
|
/* @license magnet:?xt=urn:btih:d3d9a9a6595521f9666a5e94cc830dab83b65699&dn=expat.txt MIT */
|
||||||
|
$(function() {
|
||||||
|
initMenu('',true,false,'search.php','Search');
|
||||||
|
$(document).ready(function() { init_search(); });
|
||||||
|
});
|
||||||
|
/* @license-end */
|
||||||
|
</script>
|
||||||
|
<div id="main-nav"></div>
|
||||||
|
<!-- window showing the filter options -->
|
||||||
|
<div id="MSearchSelectWindow"
|
||||||
|
onmouseover="return searchBox.OnSearchSelectShow()"
|
||||||
|
onmouseout="return searchBox.OnSearchSelectHide()"
|
||||||
|
onkeydown="return searchBox.OnSearchSelectKey(event)">
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- iframe showing the search results (closed by default) -->
|
||||||
|
<div id="MSearchResultsWindow">
|
||||||
|
<iframe src="javascript:void(0)" frameborder="0"
|
||||||
|
name="MSearchResults" id="MSearchResults">
|
||||||
|
</iframe>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="nav-path" class="navpath">
|
||||||
|
<ul>
|
||||||
|
<li class="navelem"><a class="el" href="dir_d44c64559bbebec7f509842c48db8b23.html">include</a></li><li class="navelem"><a class="el" href="dir_326d56889c0e0cda5fb508341c73d89d.html">Hazelnupp</a></li> </ul>
|
||||||
|
</div>
|
||||||
|
</div><!-- top -->
|
||||||
|
<div class="header">
|
||||||
|
<div class="summary">
|
||||||
|
<a href="#nested-classes">Classes</a> |
|
||||||
|
<a href="#namespaces">Namespaces</a> </div>
|
||||||
|
<div class="headertitle"><div class="title">CmdArgsInterface.h File Reference</div></div>
|
||||||
|
</div><!--header-->
|
||||||
|
<div class="contents">
|
||||||
|
<div class="textblock"><code>#include "<a class="el" href="Parameter_8h_source.html">Parameter.h</a>"</code><br />
|
||||||
|
<code>#include "<a class="el" href="ParamConstraint_8h_source.html">ParamConstraint.h</a>"</code><br />
|
||||||
|
<code>#include <unordered_map></code><br />
|
||||||
|
<code>#include <vector></code><br />
|
||||||
|
<code>#include "<a class="el" href="Version_8h_source.html">Version.h</a>"</code><br />
|
||||||
|
</div><div class="textblock"><div class="dynheader">
|
||||||
|
Include dependency graph for CmdArgsInterface.h:</div>
|
||||||
|
<div class="dyncontent">
|
||||||
|
<div class="center"><img src="CmdArgsInterface_8h__incl.png" border="0" usemap="#ainclude_2Hazelnupp_2CmdArgsInterface_8h" alt=""/></div>
|
||||||
|
<map name="ainclude_2Hazelnupp_2CmdArgsInterface_8h" id="ainclude_2Hazelnupp_2CmdArgsInterface_8h">
|
||||||
|
<area shape="rect" title=" " alt="" coords="113,5,300,47"/>
|
||||||
|
<area shape="rect" href="Parameter_8h.html" title=" " alt="" coords="161,95,253,121"/>
|
||||||
|
<area shape="rect" title=" " alt="" coords="48,244,107,271"/>
|
||||||
|
<area shape="rect" href="ParamConstraint_8h.html" title=" " alt="" coords="21,169,150,196"/>
|
||||||
|
<area shape="rect" title=" " alt="" coords="277,95,387,121"/>
|
||||||
|
<area shape="rect" href="Version_8h.html" title=" " alt="" coords="411,95,487,121"/>
|
||||||
|
<area shape="rect" href="Value_8h.html" title=" " alt="" coords="174,169,239,196"/>
|
||||||
|
<area shape="rect" title=" " alt="" coords="147,319,202,345"/>
|
||||||
|
<area shape="rect" title=" " alt="" coords="243,244,312,271"/>
|
||||||
|
<area shape="rect" href="DataType_8h.html" title=" " alt="" coords="131,244,218,271"/>
|
||||||
|
</map>
|
||||||
|
</div>
|
||||||
|
</div><div class="textblock"><div class="dynheader">
|
||||||
|
This graph shows which files directly or indirectly include this file:</div>
|
||||||
|
<div class="dyncontent">
|
||||||
|
<div class="center"><img src="CmdArgsInterface_8h__dep__incl.png" border="0" usemap="#ainclude_2Hazelnupp_2CmdArgsInterface_8hdep" alt=""/></div>
|
||||||
|
<map name="ainclude_2Hazelnupp_2CmdArgsInterface_8hdep" id="ainclude_2Hazelnupp_2CmdArgsInterface_8hdep">
|
||||||
|
<area shape="rect" title=" " alt="" coords="5,5,192,47"/>
|
||||||
|
<area shape="rect" href="CmdArgsInterface_8cpp.html" title=" " alt="" coords="12,95,185,121"/>
|
||||||
|
</map>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<p><a href="CmdArgsInterface_8h_source.html">Go to the source code of this file.</a></p>
|
||||||
|
<table class="memberdecls">
|
||||||
|
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a id="nested-classes" name="nested-classes"></a>
|
||||||
|
Classes</h2></td></tr>
|
||||||
|
<tr class="memitem:"><td class="memItemLeft" align="right" valign="top">class  </td><td class="memItemRight" valign="bottom"><a class="el" href="classHazelnp_1_1CmdArgsInterface.html">Hazelnp::CmdArgsInterface</a></td></tr>
|
||||||
|
<tr class="memdesc:"><td class="mdescLeft"> </td><td class="mdescRight">The main class to interface with. <a href="classHazelnp_1_1CmdArgsInterface.html#details">More...</a><br /></td></tr>
|
||||||
|
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr>
|
||||||
|
</table><table class="memberdecls">
|
||||||
|
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a id="namespaces" name="namespaces"></a>
|
||||||
|
Namespaces</h2></td></tr>
|
||||||
|
<tr class="memitem:namespaceHazelnp"><td class="memItemLeft" align="right" valign="top">namespace  </td><td class="memItemRight" valign="bottom"><a class="el" href="namespaceHazelnp.html">Hazelnp</a></td></tr>
|
||||||
|
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr>
|
||||||
|
</table>
|
||||||
|
</div><!-- contents -->
|
||||||
|
<!-- start footer part -->
|
||||||
|
<hr class="footer"/><address class="footer"><small>
|
||||||
|
Generated on Thu Apr 28 2022 12:05:07 for Leonetienne/Hazelnupp by <a href="https://www.doxygen.org/index.html"><img class="footer" src="doxygen.svg" width="104" height="31" alt="doxygen"/></a> 1.9.3
|
||||||
|
</small></address>
|
||||||
|
</body>
|
||||||
|
</html>
|
@ -0,0 +1,4 @@
|
|||||||
|
<map id="include/Hazelnupp/CmdArgsInterface.h" name="include/Hazelnupp/CmdArgsInterface.h">
|
||||||
|
<area shape="rect" id="node1" title=" " alt="" coords="5,5,192,47"/>
|
||||||
|
<area shape="rect" id="node2" href="$CmdArgsInterface_8cpp.html" title=" " alt="" coords="12,95,185,121"/>
|
||||||
|
</map>
|
@ -0,0 +1 @@
|
|||||||
|
f0a7a18a1efdee8eca5c2229d58a95b5
|
BIN
Hazelnupp/doxygen/build/CmdArgsInterface_8h__dep__incl.png
Normal file
BIN
Hazelnupp/doxygen/build/CmdArgsInterface_8h__dep__incl.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 7.0 KiB |
12
Hazelnupp/doxygen/build/CmdArgsInterface_8h__incl.map
Normal file
12
Hazelnupp/doxygen/build/CmdArgsInterface_8h__incl.map
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
<map id="include/Hazelnupp/CmdArgsInterface.h" name="include/Hazelnupp/CmdArgsInterface.h">
|
||||||
|
<area shape="rect" id="node1" title=" " alt="" coords="113,5,300,47"/>
|
||||||
|
<area shape="rect" id="node2" href="$Parameter_8h.html" title=" " alt="" coords="161,95,253,121"/>
|
||||||
|
<area shape="rect" id="node7" title=" " alt="" coords="48,244,107,271"/>
|
||||||
|
<area shape="rect" id="node8" href="$ParamConstraint_8h.html" title=" " alt="" coords="21,169,150,196"/>
|
||||||
|
<area shape="rect" id="node9" title=" " alt="" coords="277,95,387,121"/>
|
||||||
|
<area shape="rect" id="node10" href="$Version_8h.html" title=" " alt="" coords="411,95,487,121"/>
|
||||||
|
<area shape="rect" id="node3" href="$Value_8h.html" title=" " alt="" coords="174,169,239,196"/>
|
||||||
|
<area shape="rect" id="node5" title=" " alt="" coords="147,319,202,345"/>
|
||||||
|
<area shape="rect" id="node6" title=" " alt="" coords="243,244,312,271"/>
|
||||||
|
<area shape="rect" id="node4" href="$DataType_8h.html" title=" " alt="" coords="131,244,218,271"/>
|
||||||
|
</map>
|
1
Hazelnupp/doxygen/build/CmdArgsInterface_8h__incl.md5
Normal file
1
Hazelnupp/doxygen/build/CmdArgsInterface_8h__incl.md5
Normal file
@ -0,0 +1 @@
|
|||||||
|
bbdcbe991bb6dfc5267756af8cfb6a95
|
BIN
Hazelnupp/doxygen/build/CmdArgsInterface_8h__incl.png
Normal file
BIN
Hazelnupp/doxygen/build/CmdArgsInterface_8h__incl.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 39 KiB |
269
Hazelnupp/doxygen/build/CmdArgsInterface_8h_source.html
Normal file
269
Hazelnupp/doxygen/build/CmdArgsInterface_8h_source.html
Normal file
@ -0,0 +1,269 @@
|
|||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||||
|
<head>
|
||||||
|
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=11"/>
|
||||||
|
<meta name="generator" content="Doxygen 1.9.3"/>
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
||||||
|
<title>Leonetienne/Hazelnupp: include/Hazelnupp/CmdArgsInterface.h Source File</title>
|
||||||
|
<link href="tabs.css" rel="stylesheet" type="text/css"/>
|
||||||
|
<script type="text/javascript" src="jquery.js"></script>
|
||||||
|
<script type="text/javascript" src="dynsections.js"></script>
|
||||||
|
<link href="search/search.css" rel="stylesheet" type="text/css"/>
|
||||||
|
<script type="text/javascript" src="search/searchdata.js"></script>
|
||||||
|
<script type="text/javascript" src="search/search.js"></script>
|
||||||
|
<script type="text/x-mathjax-config">
|
||||||
|
MathJax.Hub.Config({
|
||||||
|
extensions: ["tex2jax.js"],
|
||||||
|
jax: ["input/TeX","output/HTML-CSS"],
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
<script type="text/javascript" async="async" src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.5/MathJax.js"></script>
|
||||||
|
<link href="doxygen.css" rel="stylesheet" type="text/css" />
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
|
||||||
|
<div id="titlearea">
|
||||||
|
<table cellspacing="0" cellpadding="0">
|
||||||
|
<tbody>
|
||||||
|
<tr id="projectrow">
|
||||||
|
<td id="projectalign">
|
||||||
|
<div id="projectname">Leonetienne/Hazelnupp
|
||||||
|
</div>
|
||||||
|
<div id="projectbrief">Simple, easy to use, command line parameter interface</div>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<!-- end header part -->
|
||||||
|
<!-- Generated by Doxygen 1.9.3 -->
|
||||||
|
<script type="text/javascript">
|
||||||
|
/* @license magnet:?xt=urn:btih:d3d9a9a6595521f9666a5e94cc830dab83b65699&dn=expat.txt MIT */
|
||||||
|
var searchBox = new SearchBox("searchBox", "search",'Search','.html');
|
||||||
|
/* @license-end */
|
||||||
|
</script>
|
||||||
|
<script type="text/javascript" src="menudata.js"></script>
|
||||||
|
<script type="text/javascript" src="menu.js"></script>
|
||||||
|
<script type="text/javascript">
|
||||||
|
/* @license magnet:?xt=urn:btih:d3d9a9a6595521f9666a5e94cc830dab83b65699&dn=expat.txt MIT */
|
||||||
|
$(function() {
|
||||||
|
initMenu('',true,false,'search.php','Search');
|
||||||
|
$(document).ready(function() { init_search(); });
|
||||||
|
});
|
||||||
|
/* @license-end */
|
||||||
|
</script>
|
||||||
|
<div id="main-nav"></div>
|
||||||
|
<!-- window showing the filter options -->
|
||||||
|
<div id="MSearchSelectWindow"
|
||||||
|
onmouseover="return searchBox.OnSearchSelectShow()"
|
||||||
|
onmouseout="return searchBox.OnSearchSelectHide()"
|
||||||
|
onkeydown="return searchBox.OnSearchSelectKey(event)">
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- iframe showing the search results (closed by default) -->
|
||||||
|
<div id="MSearchResultsWindow">
|
||||||
|
<iframe src="javascript:void(0)" frameborder="0"
|
||||||
|
name="MSearchResults" id="MSearchResults">
|
||||||
|
</iframe>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="nav-path" class="navpath">
|
||||||
|
<ul>
|
||||||
|
<li class="navelem"><a class="el" href="dir_d44c64559bbebec7f509842c48db8b23.html">include</a></li><li class="navelem"><a class="el" href="dir_326d56889c0e0cda5fb508341c73d89d.html">Hazelnupp</a></li> </ul>
|
||||||
|
</div>
|
||||||
|
</div><!-- top -->
|
||||||
|
<div class="header">
|
||||||
|
<div class="headertitle"><div class="title">CmdArgsInterface.h</div></div>
|
||||||
|
</div><!--header-->
|
||||||
|
<div class="contents">
|
||||||
|
<a href="CmdArgsInterface_8h.html">Go to the documentation of this file.</a><div class="fragment"><div class="line"><a id="l00001" name="l00001"></a><span class="lineno"> 1</span><span class="preprocessor">#pragma once</span></div>
|
||||||
|
<div class="line"><a id="l00002" name="l00002"></a><span class="lineno"> 2</span><span class="preprocessor">#include "<a class="code" href="Parameter_8h.html">Parameter.h</a>"</span></div>
|
||||||
|
<div class="line"><a id="l00003" name="l00003"></a><span class="lineno"> 3</span><span class="preprocessor">#include "<a class="code" href="ParamConstraint_8h.html">ParamConstraint.h</a>"</span></div>
|
||||||
|
<div class="line"><a id="l00004" name="l00004"></a><span class="lineno"> 4</span><span class="preprocessor">#include <unordered_map></span></div>
|
||||||
|
<div class="line"><a id="l00005" name="l00005"></a><span class="lineno"> 5</span><span class="preprocessor">#include <vector></span></div>
|
||||||
|
<div class="line"><a id="l00006" name="l00006"></a><span class="lineno"> 6</span> </div>
|
||||||
|
<div class="line"><a id="l00007" name="l00007"></a><span class="lineno"> 7</span><span class="preprocessor">#include "<a class="code" href="Version_8h.html">Version.h</a>"</span></div>
|
||||||
|
<div class="line"><a id="l00008" name="l00008"></a><span class="lineno"> 8</span> </div>
|
||||||
|
<div class="line"><a id="l00009" name="l00009"></a><span class="lineno"><a class="line" href="namespaceHazelnp.html"> 9</a></span><span class="keyword">namespace </span><a class="code hl_namespace" href="namespaceHazelnp.html">Hazelnp</a></div>
|
||||||
|
<div class="line"><a id="l00010" name="l00010"></a><span class="lineno"> 10</span>{<span class="comment"></span></div>
|
||||||
|
<div class="line"><a id="l00011" name="l00011"></a><span class="lineno"> 11</span><span class="comment"> /** The main class to interface with</span></div>
|
||||||
|
<div class="line"><a id="l00012" name="l00012"></a><span class="lineno"> 12</span><span class="comment"> */</span></div>
|
||||||
|
<div class="line"><a id="l00013" name="l00013"></a><span class="lineno"><a class="line" href="classHazelnp_1_1CmdArgsInterface.html"> 13</a></span> <span class="keyword">class </span><a class="code hl_class" href="classHazelnp_1_1CmdArgsInterface.html">CmdArgsInterface</a></div>
|
||||||
|
<div class="line"><a id="l00014" name="l00014"></a><span class="lineno"> 14</span> {</div>
|
||||||
|
<div class="line"><a id="l00015" name="l00015"></a><span class="lineno"> 15</span> <span class="keyword">public</span>:</div>
|
||||||
|
<div class="line"><a id="l00016" name="l00016"></a><span class="lineno"> 16</span> <a class="code hl_function" href="classHazelnp_1_1CmdArgsInterface.html#aa1189c249bf0d8a4fbd5fb8f03a30212">CmdArgsInterface</a>();</div>
|
||||||
|
<div class="line"><a id="l00017" name="l00017"></a><span class="lineno"> 17</span> <a class="code hl_function" href="classHazelnp_1_1CmdArgsInterface.html#aa1189c249bf0d8a4fbd5fb8f03a30212">CmdArgsInterface</a>(<span class="keyword">const</span> <span class="keywordtype">int</span> argc, <span class="keyword">const</span> <span class="keywordtype">char</span>* <span class="keyword">const</span>* argv);</div>
|
||||||
|
<div class="line"><a id="l00018" name="l00018"></a><span class="lineno"> 18</span> </div>
|
||||||
|
<div class="line"><a id="l00019" name="l00019"></a><span class="lineno"> 19</span> <a class="code hl_function" href="classHazelnp_1_1CmdArgsInterface.html#aadc75b3b6c9662cfbd4a936468d50466">~CmdArgsInterface</a>();</div>
|
||||||
|
<div class="line"><a id="l00020" name="l00020"></a><span class="lineno"> 20</span><span class="comment"></span> </div>
|
||||||
|
<div class="line"><a id="l00021" name="l00021"></a><span class="lineno"> 21</span><span class="comment"> //! Will parse command line arguments</span></div>
|
||||||
|
<div class="line"><a id="l00022" name="l00022"></a><span class="lineno"> 22</span><span class="comment"></span> <span class="keywordtype">void</span> <a class="code hl_function" href="classHazelnp_1_1CmdArgsInterface.html#a1f4845041e08b3335510de44fafaee19">Parse</a>(<span class="keyword">const</span> <span class="keywordtype">int</span> argc, <span class="keyword">const</span> <span class="keywordtype">char</span>* <span class="keyword">const</span>* argv);</div>
|
||||||
|
<div class="line"><a id="l00023" name="l00023"></a><span class="lineno"> 23</span><span class="comment"></span> </div>
|
||||||
|
<div class="line"><a id="l00024" name="l00024"></a><span class="lineno"> 24</span><span class="comment"> //! Will return argv[0], the name of the executable.</span></div>
|
||||||
|
<div class="line"><a id="l00025" name="l00025"></a><span class="lineno"> 25</span><span class="comment"></span> <span class="keyword">const</span> std::string& <a class="code hl_function" href="classHazelnp_1_1CmdArgsInterface.html#afe83a815b21d37b3d2a6d0ef67137faf">GetExecutableName</a>() <span class="keyword">const</span>;</div>
|
||||||
|
<div class="line"><a id="l00026" name="l00026"></a><span class="lineno"> 26</span><span class="comment"></span> </div>
|
||||||
|
<div class="line"><a id="l00027" name="l00027"></a><span class="lineno"> 27</span><span class="comment"> //! Will return the value given a key</span></div>
|
||||||
|
<div class="line"><a id="l00028" name="l00028"></a><span class="lineno"> 28</span><span class="comment"></span> <span class="keyword">const</span> <a class="code hl_class" href="classHazelnp_1_1Value.html">Value</a>& <a class="code hl_function" href="classHazelnp_1_1CmdArgsInterface.html#af5e43c1067fb6c1074d9be3427c7a415">operator[]</a>(<span class="keyword">const</span> std::string& key) <span class="keyword">const</span>;</div>
|
||||||
|
<div class="line"><a id="l00029" name="l00029"></a><span class="lineno"> 29</span><span class="comment"></span> </div>
|
||||||
|
<div class="line"><a id="l00030" name="l00030"></a><span class="lineno"> 30</span><span class="comment"> //! Will check wether a parameter exists given a key, or not</span></div>
|
||||||
|
<div class="line"><a id="l00031" name="l00031"></a><span class="lineno"> 31</span><span class="comment"></span> <span class="keywordtype">bool</span> <a class="code hl_function" href="classHazelnp_1_1CmdArgsInterface.html#a3a7fa36fe69ee8bf3b400983a21ecd24">HasParam</a>(<span class="keyword">const</span> std::string& key) <span class="keyword">const</span>;</div>
|
||||||
|
<div class="line"><a id="l00032" name="l00032"></a><span class="lineno"> 32</span> </div>
|
||||||
|
<div class="line"><a id="l00033" name="l00033"></a><span class="lineno"> 33</span> <span class="comment">// Abbreviations</span><span class="comment"></span></div>
|
||||||
|
<div class="line"><a id="l00034" name="l00034"></a><span class="lineno"> 34</span><span class="comment"> //! Will register an abbreviation (like -f for --force)</span></div>
|
||||||
|
<div class="line"><a id="l00035" name="l00035"></a><span class="lineno"> 35</span><span class="comment"></span> <span class="keywordtype">void</span> <a class="code hl_function" href="classHazelnp_1_1CmdArgsInterface.html#aaccf591a74408aeb4363033fe8cb2224">RegisterAbbreviation</a>(<span class="keyword">const</span> std::string& abbrev, <span class="keyword">const</span> std::string& target);</div>
|
||||||
|
<div class="line"><a id="l00036" name="l00036"></a><span class="lineno"> 36</span><span class="comment"></span> </div>
|
||||||
|
<div class="line"><a id="l00037" name="l00037"></a><span class="lineno"> 37</span><span class="comment"> //! Will return the long form of an abbreviation (like --force for -f) </span></div>
|
||||||
|
<div class="line"><a id="l00038" name="l00038"></a><span class="lineno"> 38</span><span class="comment"> //! Returns "" if no match is found</span></div>
|
||||||
|
<div class="line"><a id="l00039" name="l00039"></a><span class="lineno"> 39</span><span class="comment"></span> <span class="keyword">const</span> std::string& <a class="code hl_function" href="classHazelnp_1_1CmdArgsInterface.html#a1486bfef870e6502aefc23b11ce6caaf">GetAbbreviation</a>(<span class="keyword">const</span> std::string& abbrev) <span class="keyword">const</span>;</div>
|
||||||
|
<div class="line"><a id="l00040" name="l00040"></a><span class="lineno"> 40</span><span class="comment"></span> </div>
|
||||||
|
<div class="line"><a id="l00041" name="l00041"></a><span class="lineno"> 41</span><span class="comment"> //! Will check wether or not an abbreviation is registered</span></div>
|
||||||
|
<div class="line"><a id="l00042" name="l00042"></a><span class="lineno"> 42</span><span class="comment"></span> <span class="keywordtype">bool</span> <a class="code hl_function" href="classHazelnp_1_1CmdArgsInterface.html#a58b81709e631cee5f3db3f3f48611fe9">HasAbbreviation</a>(<span class="keyword">const</span> std::string& abbrev) <span class="keyword">const</span>;</div>
|
||||||
|
<div class="line"><a id="l00043" name="l00043"></a><span class="lineno"> 43</span><span class="comment"></span> </div>
|
||||||
|
<div class="line"><a id="l00044" name="l00044"></a><span class="lineno"> 44</span><span class="comment"> //! Will delete the abbreviation for a given parameter. </span></div>
|
||||||
|
<div class="line"><a id="l00045" name="l00045"></a><span class="lineno"> 45</span><span class="comment"> //! IMPORTANT: This parameter is the abbreviation! Not the long form!</span></div>
|
||||||
|
<div class="line"><a id="l00046" name="l00046"></a><span class="lineno"> 46</span><span class="comment"></span> <span class="keywordtype">void</span> <a class="code hl_function" href="classHazelnp_1_1CmdArgsInterface.html#a31f690bd95d5469d38af816183cbe3e7">ClearAbbreviation</a>(<span class="keyword">const</span> std::string& abbrevation);</div>
|
||||||
|
<div class="line"><a id="l00047" name="l00047"></a><span class="lineno"> 47</span><span class="comment"></span> </div>
|
||||||
|
<div class="line"><a id="l00048" name="l00048"></a><span class="lineno"> 48</span><span class="comment"> //! Will delete all abbreviations</span></div>
|
||||||
|
<div class="line"><a id="l00049" name="l00049"></a><span class="lineno"> 49</span><span class="comment"></span> <span class="keywordtype">void</span> <a class="code hl_function" href="classHazelnp_1_1CmdArgsInterface.html#a019e48f48427e7caa76c964bd0f117d0">ClearAbbreviations</a>();</div>
|
||||||
|
<div class="line"><a id="l00050" name="l00050"></a><span class="lineno"> 50</span><span class="comment"></span> </div>
|
||||||
|
<div class="line"><a id="l00051" name="l00051"></a><span class="lineno"> 51</span><span class="comment"> //! Will register a constraint for a parameter.</span></div>
|
||||||
|
<div class="line"><a id="l00052" name="l00052"></a><span class="lineno"> 52</span><span class="comment"> //! IMPORTANT: Any parameter can only have ONE constraint. Applying a new one will overwrite the old one!</span></div>
|
||||||
|
<div class="line"><a id="l00053" name="l00053"></a><span class="lineno"> 53</span><span class="comment"> //! Construct the ParamConstraint struct yourself to combine Require, TypeSafety and Incompatibilities! You can also use the ParamConstraint constructor!</span></div>
|
||||||
|
<div class="line"><a id="l00054" name="l00054"></a><span class="lineno"> 54</span><span class="comment"></span> <span class="keywordtype">void</span> <a class="code hl_function" href="classHazelnp_1_1CmdArgsInterface.html#aa30222df012f357455f90e3620346bb2">RegisterConstraint</a>(<span class="keyword">const</span> std::string& key, <span class="keyword">const</span> <a class="code hl_struct" href="structHazelnp_1_1ParamConstraint.html">ParamConstraint</a>& constraint);</div>
|
||||||
|
<div class="line"><a id="l00055" name="l00055"></a><span class="lineno"> 55</span><span class="comment"></span> </div>
|
||||||
|
<div class="line"><a id="l00056" name="l00056"></a><span class="lineno"> 56</span><span class="comment"> //! Will return the constraint information for a specific parameter</span></div>
|
||||||
|
<div class="line"><a id="l00057" name="l00057"></a><span class="lineno"> 57</span><span class="comment"></span> <a class="code hl_struct" href="structHazelnp_1_1ParamConstraint.html">ParamConstraint</a> <a class="code hl_function" href="classHazelnp_1_1CmdArgsInterface.html#adec82884377a5193f68dcc7b6ef69d8b">GetConstraint</a>(<span class="keyword">const</span> std::string& parameter) <span class="keyword">const</span>;</div>
|
||||||
|
<div class="line"><a id="l00058" name="l00058"></a><span class="lineno"> 58</span><span class="comment"></span> </div>
|
||||||
|
<div class="line"><a id="l00059" name="l00059"></a><span class="lineno"> 59</span><span class="comment"> //! Will the constraint of a specific parameter</span></div>
|
||||||
|
<div class="line"><a id="l00060" name="l00060"></a><span class="lineno"> 60</span><span class="comment"></span> <span class="keywordtype">void</span> <a class="code hl_function" href="classHazelnp_1_1CmdArgsInterface.html#a112d2d5e3fd1cf1507592389c8454984">ClearConstraint</a>(<span class="keyword">const</span> std::string& parameter);</div>
|
||||||
|
<div class="line"><a id="l00061" name="l00061"></a><span class="lineno"> 61</span><span class="comment"></span> </div>
|
||||||
|
<div class="line"><a id="l00062" name="l00062"></a><span class="lineno"> 62</span><span class="comment"> //! Will delete all constraints</span></div>
|
||||||
|
<div class="line"><a id="l00063" name="l00063"></a><span class="lineno"> 63</span><span class="comment"></span> <span class="keywordtype">void</span> <a class="code hl_function" href="classHazelnp_1_1CmdArgsInterface.html#ad472671fb12450b8d929418fbbffbe40">ClearConstraints</a>();</div>
|
||||||
|
<div class="line"><a id="l00064" name="l00064"></a><span class="lineno"> 64</span><span class="comment"></span> </div>
|
||||||
|
<div class="line"><a id="l00065" name="l00065"></a><span class="lineno"> 65</span><span class="comment"> //! Sets whether to crash the application, and print to stderr, when an exception is </span></div>
|
||||||
|
<div class="line"><a id="l00066" name="l00066"></a><span class="lineno"> 66</span><span class="comment"> //! raised whilst parsing, or not.</span></div>
|
||||||
|
<div class="line"><a id="l00067" name="l00067"></a><span class="lineno"> 67</span><span class="comment"></span> <span class="keywordtype">void</span> <a class="code hl_function" href="classHazelnp_1_1CmdArgsInterface.html#a16a3a02f77d240d8cf51cd4ee1797113">SetCrashOnFail</a>(<span class="keywordtype">bool</span> crashOnFail);</div>
|
||||||
|
<div class="line"><a id="l00068" name="l00068"></a><span class="lineno"> 68</span><span class="comment"></span> </div>
|
||||||
|
<div class="line"><a id="l00069" name="l00069"></a><span class="lineno"> 69</span><span class="comment"> //! Gets whether the application crashes on an exception whilst parsing, and prints to stderr.</span></div>
|
||||||
|
<div class="line"><a id="l00070" name="l00070"></a><span class="lineno"> 70</span><span class="comment"></span> <span class="keywordtype">bool</span> <a class="code hl_function" href="classHazelnp_1_1CmdArgsInterface.html#a3e60c7a90c11bdc634d0f5d0dba5064c">GetCrashOnFail</a>() <span class="keyword">const</span>;</div>
|
||||||
|
<div class="line"><a id="l00071" name="l00071"></a><span class="lineno"> 71</span><span class="comment"></span> </div>
|
||||||
|
<div class="line"><a id="l00072" name="l00072"></a><span class="lineno"> 72</span><span class="comment"> //! Sets whether the CmdArgsInterface should automatically catch the --help parameter, print the parameter documentation to stdout, and exit or not.</span></div>
|
||||||
|
<div class="line"><a id="l00073" name="l00073"></a><span class="lineno"> 73</span><span class="comment"></span> <span class="keywordtype">void</span> <a class="code hl_function" href="classHazelnp_1_1CmdArgsInterface.html#abf553ed4acabf9e1db357715bc10533c">SetCatchHelp</a>(<span class="keywordtype">bool</span> catchHelp);</div>
|
||||||
|
<div class="line"><a id="l00074" name="l00074"></a><span class="lineno"> 74</span><span class="comment"></span> </div>
|
||||||
|
<div class="line"><a id="l00075" name="l00075"></a><span class="lineno"> 75</span><span class="comment"> //! Retruns whether the CmdArgsInterface should automatically catch the --help parameter, print the parameter documentation to stdout, and exit or not.</span></div>
|
||||||
|
<div class="line"><a id="l00076" name="l00076"></a><span class="lineno"> 76</span><span class="comment"></span> <span class="keywordtype">bool</span> <a class="code hl_function" href="classHazelnp_1_1CmdArgsInterface.html#a1026d98c23659b6d3d108b231806a1e3">GetCatchHelp</a>() <span class="keyword">const</span>;</div>
|
||||||
|
<div class="line"><a id="l00077" name="l00077"></a><span class="lineno"> 77</span><span class="comment"></span> </div>
|
||||||
|
<div class="line"><a id="l00078" name="l00078"></a><span class="lineno"> 78</span><span class="comment"> //! Sets a brief description of the application to be automatically added to the documentation.</span></div>
|
||||||
|
<div class="line"><a id="l00079" name="l00079"></a><span class="lineno"> 79</span><span class="comment"></span> <span class="keywordtype">void</span> <a class="code hl_function" href="classHazelnp_1_1CmdArgsInterface.html#a67ba6cb3176884c85dd56fc9084ab66a">SetBriefDescription</a>(<span class="keyword">const</span> std::string& description);</div>
|
||||||
|
<div class="line"><a id="l00080" name="l00080"></a><span class="lineno"> 80</span><span class="comment"></span> </div>
|
||||||
|
<div class="line"><a id="l00081" name="l00081"></a><span class="lineno"> 81</span><span class="comment"> //! Returns the brief description of the application to be automatically added to the documentation.</span></div>
|
||||||
|
<div class="line"><a id="l00082" name="l00082"></a><span class="lineno"> 82</span><span class="comment"></span> <span class="keyword">const</span> std::string& <a class="code hl_function" href="classHazelnp_1_1CmdArgsInterface.html#a1945208a97707b2e3c654424f0760441">GetBriefDescription</a>();</div>
|
||||||
|
<div class="line"><a id="l00083" name="l00083"></a><span class="lineno"> 83</span><span class="comment"></span> </div>
|
||||||
|
<div class="line"><a id="l00084" name="l00084"></a><span class="lineno"> 84</span><span class="comment"> //! Willl register a short description for a parameter. </span></div>
|
||||||
|
<div class="line"><a id="l00085" name="l00085"></a><span class="lineno"> 85</span><span class="comment"> //! Will overwrite existing descriptions for that parameter.</span></div>
|
||||||
|
<div class="line"><a id="l00086" name="l00086"></a><span class="lineno"> 86</span><span class="comment"></span> <span class="keywordtype">void</span> <a class="code hl_function" href="classHazelnp_1_1CmdArgsInterface.html#a6589d2e818ba32f2a3e5b5a6a5e2bf1e">RegisterDescription</a>(<span class="keyword">const</span> std::string& parameter, <span class="keyword">const</span> std::string& description);</div>
|
||||||
|
<div class="line"><a id="l00087" name="l00087"></a><span class="lineno"> 87</span><span class="comment"></span> </div>
|
||||||
|
<div class="line"><a id="l00088" name="l00088"></a><span class="lineno"> 88</span><span class="comment"> //! Will return a short description for a parameter, if it exists. </span></div>
|
||||||
|
<div class="line"><a id="l00089" name="l00089"></a><span class="lineno"> 89</span><span class="comment"> //! Empty string if it does not exist.</span></div>
|
||||||
|
<div class="line"><a id="l00090" name="l00090"></a><span class="lineno"> 90</span><span class="comment"></span> <span class="keyword">const</span> std::string& <a class="code hl_function" href="classHazelnp_1_1CmdArgsInterface.html#a89bc3f54d7ff0740549dbdf7b7f727e3">GetDescription</a>(<span class="keyword">const</span> std::string& parameter) <span class="keyword">const</span>;</div>
|
||||||
|
<div class="line"><a id="l00091" name="l00091"></a><span class="lineno"> 91</span><span class="comment"></span> </div>
|
||||||
|
<div class="line"><a id="l00092" name="l00092"></a><span class="lineno"> 92</span><span class="comment"> //! Returns whether or not a given parameter has a registered description</span></div>
|
||||||
|
<div class="line"><a id="l00093" name="l00093"></a><span class="lineno"> 93</span><span class="comment"></span> <span class="keywordtype">bool</span> <a class="code hl_function" href="classHazelnp_1_1CmdArgsInterface.html#a5003f826ee31c6365bf4b6e8b2c8d9f1">HasDescription</a>(<span class="keyword">const</span> std::string& parameter) <span class="keyword">const</span>;</div>
|
||||||
|
<div class="line"><a id="l00094" name="l00094"></a><span class="lineno"> 94</span><span class="comment"></span> </div>
|
||||||
|
<div class="line"><a id="l00095" name="l00095"></a><span class="lineno"> 95</span><span class="comment"> //! Will delete the description of a parameter if it exists.</span></div>
|
||||||
|
<div class="line"><a id="l00096" name="l00096"></a><span class="lineno"> 96</span><span class="comment"></span> <span class="keywordtype">void</span> <a class="code hl_function" href="classHazelnp_1_1CmdArgsInterface.html#a62889ce1faa90d0f20be3ae45803baa0">ClearDescription</a>(<span class="keyword">const</span> std::string& parameter);</div>
|
||||||
|
<div class="line"><a id="l00097" name="l00097"></a><span class="lineno"> 97</span><span class="comment"></span> </div>
|
||||||
|
<div class="line"><a id="l00098" name="l00098"></a><span class="lineno"> 98</span><span class="comment"> //! Will delete all parameter descriptions</span></div>
|
||||||
|
<div class="line"><a id="l00099" name="l00099"></a><span class="lineno"> 99</span><span class="comment"></span> <span class="keywordtype">void</span> <a class="code hl_function" href="classHazelnp_1_1CmdArgsInterface.html#a328dbc265e7ffa9ab526ed8aa755e107">ClearDescriptions</a>();</div>
|
||||||
|
<div class="line"><a id="l00100" name="l00100"></a><span class="lineno"> 100</span><span class="comment"></span> </div>
|
||||||
|
<div class="line"><a id="l00101" name="l00101"></a><span class="lineno"> 101</span><span class="comment"> //! Will generate a text-based documentation suited to show the user, for example on --help.</span></div>
|
||||||
|
<div class="line"><a id="l00102" name="l00102"></a><span class="lineno"> 102</span><span class="comment"></span> std::string <a class="code hl_function" href="classHazelnp_1_1CmdArgsInterface.html#a9b9bc5c4443799ea847077e9cefb1927">GenerateDocumentation</a>() <span class="keyword">const</span>;</div>
|
||||||
|
<div class="line"><a id="l00103" name="l00103"></a><span class="lineno"> 103</span> </div>
|
||||||
|
<div class="line"><a id="l00104" name="l00104"></a><span class="lineno"> 104</span> <span class="keyword">private</span>:<span class="comment"></span></div>
|
||||||
|
<div class="line"><a id="l00105" name="l00105"></a><span class="lineno"> 105</span><span class="comment"> //! Will translate the c-like args to an std::vector</span></div>
|
||||||
|
<div class="line"><a id="l00106" name="l00106"></a><span class="lineno"> 106</span><span class="comment"></span> <span class="keywordtype">void</span> PopulateRawArgs(<span class="keyword">const</span> <span class="keywordtype">int</span> argc, <span class="keyword">const</span> <span class="keywordtype">char</span>* <span class="keyword">const</span>* argv);</div>
|
||||||
|
<div class="line"><a id="l00107" name="l00107"></a><span class="lineno"> 107</span><span class="comment"></span> </div>
|
||||||
|
<div class="line"><a id="l00108" name="l00108"></a><span class="lineno"> 108</span><span class="comment"> //! Will replace all args matching an abbreviation with their long form (like -f for --force)</span></div>
|
||||||
|
<div class="line"><a id="l00109" name="l00109"></a><span class="lineno"> 109</span><span class="comment"></span> <span class="keywordtype">void</span> ExpandAbbreviations();</div>
|
||||||
|
<div class="line"><a id="l00110" name="l00110"></a><span class="lineno"> 110</span><span class="comment"></span> </div>
|
||||||
|
<div class="line"><a id="l00111" name="l00111"></a><span class="lineno"> 111</span><span class="comment"> //! Will parse the next parameter. Returns the index of the next parameter.</span></div>
|
||||||
|
<div class="line"><a id="l00112" name="l00112"></a><span class="lineno"> 112</span><span class="comment"></span> std::size_t ParseNextParameter(<span class="keyword">const</span> std::size_t parIndex, <a class="code hl_class" href="classHazelnp_1_1Parameter.html">Parameter</a>*& out_Par);</div>
|
||||||
|
<div class="line"><a id="l00113" name="l00113"></a><span class="lineno"> 113</span><span class="comment"></span> </div>
|
||||||
|
<div class="line"><a id="l00114" name="l00114"></a><span class="lineno"> 114</span><span class="comment"> //! Will convert a vector of string-values to an actual Value</span></div>
|
||||||
|
<div class="line"><a id="l00115" name="l00115"></a><span class="lineno"> 115</span><span class="comment"></span> <a class="code hl_class" href="classHazelnp_1_1Value.html">Value</a>* ParseValue(<span class="keyword">const</span> std::vector<std::string>& values, <span class="keyword">const</span> <a class="code hl_struct" href="structHazelnp_1_1ParamConstraint.html">ParamConstraint</a>* constraint = <span class="keyword">nullptr</span>);</div>
|
||||||
|
<div class="line"><a id="l00116" name="l00116"></a><span class="lineno"> 116</span><span class="comment"></span> </div>
|
||||||
|
<div class="line"><a id="l00117" name="l00117"></a><span class="lineno"> 117</span><span class="comment"> //! Will apply the loaded constraints on the loaded values, exluding types.</span></div>
|
||||||
|
<div class="line"><a id="l00118" name="l00118"></a><span class="lineno"> 118</span><span class="comment"></span> <span class="keywordtype">void</span> ApplyConstraints();</div>
|
||||||
|
<div class="line"><a id="l00119" name="l00119"></a><span class="lineno"> 119</span><span class="comment"></span> </div>
|
||||||
|
<div class="line"><a id="l00120" name="l00120"></a><span class="lineno"> 120</span><span class="comment"> //! Will return a pointer to a paramConstraint given a key. If there is no, it returns nullptr</span></div>
|
||||||
|
<div class="line"><a id="l00121" name="l00121"></a><span class="lineno"> 121</span><span class="comment"></span> <span class="keyword">const</span> <a class="code hl_struct" href="structHazelnp_1_1ParamConstraint.html">ParamConstraint</a>* GetConstraintForKey(<span class="keyword">const</span> std::string& key) <span class="keyword">const</span>;</div>
|
||||||
|
<div class="line"><a id="l00122" name="l00122"></a><span class="lineno"> 122</span> </div>
|
||||||
|
<div class="line"><a id="l00123" name="l00123"></a><span class="lineno"> 123</span> std::string executableName; <span class="comment">//! The path of the executable. Always argv[0]</span></div>
|
||||||
|
<div class="line"><a id="l00124" name="l00124"></a><span class="lineno"> 124</span> std::unordered_map<std::string, Parameter*> parameters;</div>
|
||||||
|
<div class="line"><a id="l00125" name="l00125"></a><span class="lineno"> 125</span><span class="comment"></span> </div>
|
||||||
|
<div class="line"><a id="l00126" name="l00126"></a><span class="lineno"> 126</span><span class="comment"> //! These are abbreviations. Like, -f for --force.</span></div>
|
||||||
|
<div class="line"><a id="l00127" name="l00127"></a><span class="lineno"> 127</span><span class="comment"></span> std::unordered_map<std::string, std::string> parameterAbreviations;</div>
|
||||||
|
<div class="line"><a id="l00128" name="l00128"></a><span class="lineno"> 128</span><span class="comment"></span> </div>
|
||||||
|
<div class="line"><a id="l00129" name="l00129"></a><span class="lineno"> 129</span><span class="comment"> //! Parameter constraints, mapped to keys</span></div>
|
||||||
|
<div class="line"><a id="l00130" name="l00130"></a><span class="lineno"> 130</span><span class="comment"></span> std::unordered_map<std::string, ParamConstraint> parameterConstraints;</div>
|
||||||
|
<div class="line"><a id="l00131" name="l00131"></a><span class="lineno"> 131</span><span class="comment"></span> </div>
|
||||||
|
<div class="line"><a id="l00132" name="l00132"></a><span class="lineno"> 132</span><span class="comment"> //! Raw argv</span></div>
|
||||||
|
<div class="line"><a id="l00133" name="l00133"></a><span class="lineno"> 133</span><span class="comment"></span> std::vector<std::string> rawArgs;</div>
|
||||||
|
<div class="line"><a id="l00134" name="l00134"></a><span class="lineno"> 134</span><span class="comment"></span> </div>
|
||||||
|
<div class="line"><a id="l00135" name="l00135"></a><span class="lineno"> 135</span><span class="comment"> //! Short descriptions for parameters</span></div>
|
||||||
|
<div class="line"><a id="l00136" name="l00136"></a><span class="lineno"> 136</span><span class="comment"> //! First member is the abbreviation</span></div>
|
||||||
|
<div class="line"><a id="l00137" name="l00137"></a><span class="lineno"> 137</span><span class="comment"></span> std::unordered_map<std::string, std::string> parameterDescriptions;</div>
|
||||||
|
<div class="line"><a id="l00138" name="l00138"></a><span class="lineno"> 138</span><span class="comment"></span> </div>
|
||||||
|
<div class="line"><a id="l00139" name="l00139"></a><span class="lineno"> 139</span><span class="comment"> //! A brief description of the application to be added to the generated documentation. Optional.</span></div>
|
||||||
|
<div class="line"><a id="l00140" name="l00140"></a><span class="lineno"> 140</span><span class="comment"></span> std::string briefDescription;</div>
|
||||||
|
<div class="line"><a id="l00141" name="l00141"></a><span class="lineno"> 141</span><span class="comment"></span> </div>
|
||||||
|
<div class="line"><a id="l00142" name="l00142"></a><span class="lineno"> 142</span><span class="comment"> //! If set to true, CmdArgsInterface will automatically catch the --help parameter, print the parameter documentation to stdout and exit.</span></div>
|
||||||
|
<div class="line"><a id="l00143" name="l00143"></a><span class="lineno"> 143</span><span class="comment"></span> <span class="keywordtype">bool</span> catchHelp = <span class="keyword">true</span>;</div>
|
||||||
|
<div class="line"><a id="l00144" name="l00144"></a><span class="lineno"> 144</span><span class="comment"></span> </div>
|
||||||
|
<div class="line"><a id="l00145" name="l00145"></a><span class="lineno"> 145</span><span class="comment"> //! If set to true, CmdArgsInterface will crash the application with output to stderr when an exception is thrown whilst parsing.</span></div>
|
||||||
|
<div class="line"><a id="l00146" name="l00146"></a><span class="lineno"> 146</span><span class="comment"></span> <span class="keywordtype">bool</span> crashOnFail = <span class="keyword">true</span>;</div>
|
||||||
|
<div class="line"><a id="l00147" name="l00147"></a><span class="lineno"> 147</span> };</div>
|
||||||
|
<div class="line"><a id="l00148" name="l00148"></a><span class="lineno"> 148</span>}</div>
|
||||||
|
<div class="ttc" id="aParamConstraint_8h_html"><div class="ttname"><a href="ParamConstraint_8h.html">ParamConstraint.h</a></div></div>
|
||||||
|
<div class="ttc" id="aParameter_8h_html"><div class="ttname"><a href="Parameter_8h.html">Parameter.h</a></div></div>
|
||||||
|
<div class="ttc" id="aVersion_8h_html"><div class="ttname"><a href="Version_8h.html">Version.h</a></div></div>
|
||||||
|
<div class="ttc" id="aclassHazelnp_1_1CmdArgsInterface_html"><div class="ttname"><a href="classHazelnp_1_1CmdArgsInterface.html">Hazelnp::CmdArgsInterface</a></div><div class="ttdoc">The main class to interface with.</div><div class="ttdef"><b>Definition:</b> <a href="CmdArgsInterface_8h_source.html#l00013">CmdArgsInterface.h:14</a></div></div>
|
||||||
|
<div class="ttc" id="aclassHazelnp_1_1CmdArgsInterface_html_a019e48f48427e7caa76c964bd0f117d0"><div class="ttname"><a href="classHazelnp_1_1CmdArgsInterface.html#a019e48f48427e7caa76c964bd0f117d0">Hazelnp::CmdArgsInterface::ClearAbbreviations</a></div><div class="ttdeci">void ClearAbbreviations()</div><div class="ttdoc">Will delete all abbreviations.</div><div class="ttdef"><b>Definition:</b> <a href="CmdArgsInterface_8cpp_source.html#l00657">CmdArgsInterface.cpp:657</a></div></div>
|
||||||
|
<div class="ttc" id="aclassHazelnp_1_1CmdArgsInterface_html_a1026d98c23659b6d3d108b231806a1e3"><div class="ttname"><a href="classHazelnp_1_1CmdArgsInterface.html#a1026d98c23659b6d3d108b231806a1e3">Hazelnp::CmdArgsInterface::GetCatchHelp</a></div><div class="ttdeci">bool GetCatchHelp() const</div><div class="ttdoc">Retruns whether the CmdArgsInterface should automatically catch the –help parameter,...</div><div class="ttdef"><b>Definition:</b> <a href="CmdArgsInterface_8cpp_source.html#l00374">CmdArgsInterface.cpp:374</a></div></div>
|
||||||
|
<div class="ttc" id="aclassHazelnp_1_1CmdArgsInterface_html_a112d2d5e3fd1cf1507592389c8454984"><div class="ttname"><a href="classHazelnp_1_1CmdArgsInterface.html#a112d2d5e3fd1cf1507592389c8454984">Hazelnp::CmdArgsInterface::ClearConstraint</a></div><div class="ttdeci">void ClearConstraint(const std::string &parameter)</div><div class="ttdoc">Will the constraint of a specific parameter.</div><div class="ttdef"><b>Definition:</b> <a href="CmdArgsInterface_8cpp_source.html#l00612">CmdArgsInterface.cpp:612</a></div></div>
|
||||||
|
<div class="ttc" id="aclassHazelnp_1_1CmdArgsInterface_html_a1486bfef870e6502aefc23b11ce6caaf"><div class="ttname"><a href="classHazelnp_1_1CmdArgsInterface.html#a1486bfef870e6502aefc23b11ce6caaf">Hazelnp::CmdArgsInterface::GetAbbreviation</a></div><div class="ttdeci">const std::string & GetAbbreviation(const std::string &abbrev) const</div><div class="ttdoc">Will return the long form of an abbreviation (like –force for -f) Returns "" if no match is found.</div><div class="ttdef"><b>Definition:</b> <a href="CmdArgsInterface_8cpp_source.html#l00638">CmdArgsInterface.cpp:638</a></div></div>
|
||||||
|
<div class="ttc" id="aclassHazelnp_1_1CmdArgsInterface_html_a16a3a02f77d240d8cf51cd4ee1797113"><div class="ttname"><a href="classHazelnp_1_1CmdArgsInterface.html#a16a3a02f77d240d8cf51cd4ee1797113">Hazelnp::CmdArgsInterface::SetCrashOnFail</a></div><div class="ttdeci">void SetCrashOnFail(bool crashOnFail)</div><div class="ttdoc">Sets whether to crash the application, and print to stderr, when an exception is raised whilst parsin...</div><div class="ttdef"><b>Definition:</b> <a href="CmdArgsInterface_8cpp_source.html#l00676">CmdArgsInterface.cpp:676</a></div></div>
|
||||||
|
<div class="ttc" id="aclassHazelnp_1_1CmdArgsInterface_html_a1945208a97707b2e3c654424f0760441"><div class="ttname"><a href="classHazelnp_1_1CmdArgsInterface.html#a1945208a97707b2e3c654424f0760441">Hazelnp::CmdArgsInterface::GetBriefDescription</a></div><div class="ttdeci">const std::string & GetBriefDescription()</div><div class="ttdoc">Returns the brief description of the application to be automatically added to the documentation.</div><div class="ttdef"><b>Definition:</b> <a href="CmdArgsInterface_8cpp_source.html#l00385">CmdArgsInterface.cpp:385</a></div></div>
|
||||||
|
<div class="ttc" id="aclassHazelnp_1_1CmdArgsInterface_html_a1f4845041e08b3335510de44fafaee19"><div class="ttname"><a href="classHazelnp_1_1CmdArgsInterface.html#a1f4845041e08b3335510de44fafaee19">Hazelnp::CmdArgsInterface::Parse</a></div><div class="ttdeci">void Parse(const int argc, const char *const *argv)</div><div class="ttdoc">Will parse command line arguments.</div><div class="ttdef"><b>Definition:</b> <a href="CmdArgsInterface_8cpp_source.html#l00036">CmdArgsInterface.cpp:36</a></div></div>
|
||||||
|
<div class="ttc" id="aclassHazelnp_1_1CmdArgsInterface_html_a31f690bd95d5469d38af816183cbe3e7"><div class="ttname"><a href="classHazelnp_1_1CmdArgsInterface.html#a31f690bd95d5469d38af816183cbe3e7">Hazelnp::CmdArgsInterface::ClearAbbreviation</a></div><div class="ttdeci">void ClearAbbreviation(const std::string &abbrevation)</div><div class="ttdoc">Will delete the abbreviation for a given parameter.</div><div class="ttdef"><b>Definition:</b> <a href="CmdArgsInterface_8cpp_source.html#l00651">CmdArgsInterface.cpp:651</a></div></div>
|
||||||
|
<div class="ttc" id="aclassHazelnp_1_1CmdArgsInterface_html_a328dbc265e7ffa9ab526ed8aa755e107"><div class="ttname"><a href="classHazelnp_1_1CmdArgsInterface.html#a328dbc265e7ffa9ab526ed8aa755e107">Hazelnp::CmdArgsInterface::ClearDescriptions</a></div><div class="ttdeci">void ClearDescriptions()</div><div class="ttdoc">Will delete all parameter descriptions.</div><div class="ttdef"><b>Definition:</b> <a href="CmdArgsInterface_8cpp_source.html#l00419">CmdArgsInterface.cpp:419</a></div></div>
|
||||||
|
<div class="ttc" id="aclassHazelnp_1_1CmdArgsInterface_html_a3a7fa36fe69ee8bf3b400983a21ecd24"><div class="ttname"><a href="classHazelnp_1_1CmdArgsInterface.html#a3a7fa36fe69ee8bf3b400983a21ecd24">Hazelnp::CmdArgsInterface::HasParam</a></div><div class="ttdeci">bool HasParam(const std::string &key) const</div><div class="ttdoc">Will check wether a parameter exists given a key, or not.</div><div class="ttdef"><b>Definition:</b> <a href="CmdArgsInterface_8cpp_source.html#l00199">CmdArgsInterface.cpp:199</a></div></div>
|
||||||
|
<div class="ttc" id="aclassHazelnp_1_1CmdArgsInterface_html_a3e60c7a90c11bdc634d0f5d0dba5064c"><div class="ttname"><a href="classHazelnp_1_1CmdArgsInterface.html#a3e60c7a90c11bdc634d0f5d0dba5064c">Hazelnp::CmdArgsInterface::GetCrashOnFail</a></div><div class="ttdeci">bool GetCrashOnFail() const</div><div class="ttdoc">Gets whether the application crashes on an exception whilst parsing, and prints to stderr.</div><div class="ttdef"><b>Definition:</b> <a href="CmdArgsInterface_8cpp_source.html#l00363">CmdArgsInterface.cpp:363</a></div></div>
|
||||||
|
<div class="ttc" id="aclassHazelnp_1_1CmdArgsInterface_html_a5003f826ee31c6365bf4b6e8b2c8d9f1"><div class="ttname"><a href="classHazelnp_1_1CmdArgsInterface.html#a5003f826ee31c6365bf4b6e8b2c8d9f1">Hazelnp::CmdArgsInterface::HasDescription</a></div><div class="ttdeci">bool HasDescription(const std::string &parameter) const</div><div class="ttdoc">Returns whether or not a given parameter has a registered description.</div><div class="ttdef"><b>Definition:</b> <a href="CmdArgsInterface_8cpp_source.html#l00407">CmdArgsInterface.cpp:407</a></div></div>
|
||||||
|
<div class="ttc" id="aclassHazelnp_1_1CmdArgsInterface_html_a58b81709e631cee5f3db3f3f48611fe9"><div class="ttname"><a href="classHazelnp_1_1CmdArgsInterface.html#a58b81709e631cee5f3db3f3f48611fe9">Hazelnp::CmdArgsInterface::HasAbbreviation</a></div><div class="ttdeci">bool HasAbbreviation(const std::string &abbrev) const</div><div class="ttdoc">Will check wether or not an abbreviation is registered.</div><div class="ttdef"><b>Definition:</b> <a href="CmdArgsInterface_8cpp_source.html#l00646">CmdArgsInterface.cpp:646</a></div></div>
|
||||||
|
<div class="ttc" id="aclassHazelnp_1_1CmdArgsInterface_html_a62889ce1faa90d0f20be3ae45803baa0"><div class="ttname"><a href="classHazelnp_1_1CmdArgsInterface.html#a62889ce1faa90d0f20be3ae45803baa0">Hazelnp::CmdArgsInterface::ClearDescription</a></div><div class="ttdeci">void ClearDescription(const std::string &parameter)</div><div class="ttdoc">Will delete the description of a parameter if it exists.</div><div class="ttdef"><b>Definition:</b> <a href="CmdArgsInterface_8cpp_source.html#l00412">CmdArgsInterface.cpp:412</a></div></div>
|
||||||
|
<div class="ttc" id="aclassHazelnp_1_1CmdArgsInterface_html_a6589d2e818ba32f2a3e5b5a6a5e2bf1e"><div class="ttname"><a href="classHazelnp_1_1CmdArgsInterface.html#a6589d2e818ba32f2a3e5b5a6a5e2bf1e">Hazelnp::CmdArgsInterface::RegisterDescription</a></div><div class="ttdeci">void RegisterDescription(const std::string &parameter, const std::string &description)</div><div class="ttdoc">Willl register a short description for a parameter.</div><div class="ttdef"><b>Definition:</b> <a href="CmdArgsInterface_8cpp_source.html#l00390">CmdArgsInterface.cpp:390</a></div></div>
|
||||||
|
<div class="ttc" id="aclassHazelnp_1_1CmdArgsInterface_html_a67ba6cb3176884c85dd56fc9084ab66a"><div class="ttname"><a href="classHazelnp_1_1CmdArgsInterface.html#a67ba6cb3176884c85dd56fc9084ab66a">Hazelnp::CmdArgsInterface::SetBriefDescription</a></div><div class="ttdeci">void SetBriefDescription(const std::string &description)</div><div class="ttdoc">Sets a brief description of the application to be automatically added to the documentation.</div><div class="ttdef"><b>Definition:</b> <a href="CmdArgsInterface_8cpp_source.html#l00379">CmdArgsInterface.cpp:379</a></div></div>
|
||||||
|
<div class="ttc" id="aclassHazelnp_1_1CmdArgsInterface_html_a89bc3f54d7ff0740549dbdf7b7f727e3"><div class="ttname"><a href="classHazelnp_1_1CmdArgsInterface.html#a89bc3f54d7ff0740549dbdf7b7f727e3">Hazelnp::CmdArgsInterface::GetDescription</a></div><div class="ttdeci">const std::string & GetDescription(const std::string &parameter) const</div><div class="ttdoc">Will return a short description for a parameter, if it exists.</div><div class="ttdef"><b>Definition:</b> <a href="CmdArgsInterface_8cpp_source.html#l00396">CmdArgsInterface.cpp:396</a></div></div>
|
||||||
|
<div class="ttc" id="aclassHazelnp_1_1CmdArgsInterface_html_a9b9bc5c4443799ea847077e9cefb1927"><div class="ttname"><a href="classHazelnp_1_1CmdArgsInterface.html#a9b9bc5c4443799ea847077e9cefb1927">Hazelnp::CmdArgsInterface::GenerateDocumentation</a></div><div class="ttdeci">std::string GenerateDocumentation() const</div><div class="ttdoc">Will generate a text-based documentation suited to show the user, for example on –help.</div><div class="ttdef"><b>Definition:</b> <a href="CmdArgsInterface_8cpp_source.html#l00425">CmdArgsInterface.cpp:425</a></div></div>
|
||||||
|
<div class="ttc" id="aclassHazelnp_1_1CmdArgsInterface_html_aa1189c249bf0d8a4fbd5fb8f03a30212"><div class="ttname"><a href="classHazelnp_1_1CmdArgsInterface.html#aa1189c249bf0d8a4fbd5fb8f03a30212">Hazelnp::CmdArgsInterface::CmdArgsInterface</a></div><div class="ttdeci">CmdArgsInterface()</div><div class="ttdef"><b>Definition:</b> <a href="CmdArgsInterface_8cpp_source.html#l00015">CmdArgsInterface.cpp:15</a></div></div>
|
||||||
|
<div class="ttc" id="aclassHazelnp_1_1CmdArgsInterface_html_aa30222df012f357455f90e3620346bb2"><div class="ttname"><a href="classHazelnp_1_1CmdArgsInterface.html#aa30222df012f357455f90e3620346bb2">Hazelnp::CmdArgsInterface::RegisterConstraint</a></div><div class="ttdeci">void RegisterConstraint(const std::string &key, const ParamConstraint &constraint)</div><div class="ttdoc">Will register a constraint for a parameter.</div><div class="ttdef"><b>Definition:</b> <a href="CmdArgsInterface_8cpp_source.html#l00663">CmdArgsInterface.cpp:663</a></div></div>
|
||||||
|
<div class="ttc" id="aclassHazelnp_1_1CmdArgsInterface_html_aaccf591a74408aeb4363033fe8cb2224"><div class="ttname"><a href="classHazelnp_1_1CmdArgsInterface.html#aaccf591a74408aeb4363033fe8cb2224">Hazelnp::CmdArgsInterface::RegisterAbbreviation</a></div><div class="ttdeci">void RegisterAbbreviation(const std::string &abbrev, const std::string &target)</div><div class="ttdoc">Will register an abbreviation (like -f for –force)</div><div class="ttdef"><b>Definition:</b> <a href="CmdArgsInterface_8cpp_source.html#l00632">CmdArgsInterface.cpp:632</a></div></div>
|
||||||
|
<div class="ttc" id="aclassHazelnp_1_1CmdArgsInterface_html_aadc75b3b6c9662cfbd4a936468d50466"><div class="ttname"><a href="classHazelnp_1_1CmdArgsInterface.html#aadc75b3b6c9662cfbd4a936468d50466">Hazelnp::CmdArgsInterface::~CmdArgsInterface</a></div><div class="ttdeci">~CmdArgsInterface()</div><div class="ttdef"><b>Definition:</b> <a href="CmdArgsInterface_8cpp_source.html#l00026">CmdArgsInterface.cpp:26</a></div></div>
|
||||||
|
<div class="ttc" id="aclassHazelnp_1_1CmdArgsInterface_html_abf553ed4acabf9e1db357715bc10533c"><div class="ttname"><a href="classHazelnp_1_1CmdArgsInterface.html#abf553ed4acabf9e1db357715bc10533c">Hazelnp::CmdArgsInterface::SetCatchHelp</a></div><div class="ttdeci">void SetCatchHelp(bool catchHelp)</div><div class="ttdoc">Sets whether the CmdArgsInterface should automatically catch the –help parameter, print the parameter...</div><div class="ttdef"><b>Definition:</b> <a href="CmdArgsInterface_8cpp_source.html#l00368">CmdArgsInterface.cpp:368</a></div></div>
|
||||||
|
<div class="ttc" id="aclassHazelnp_1_1CmdArgsInterface_html_ad472671fb12450b8d929418fbbffbe40"><div class="ttname"><a href="classHazelnp_1_1CmdArgsInterface.html#ad472671fb12450b8d929418fbbffbe40">Hazelnp::CmdArgsInterface::ClearConstraints</a></div><div class="ttdeci">void ClearConstraints()</div><div class="ttdoc">Will delete all constraints.</div><div class="ttdef"><b>Definition:</b> <a href="CmdArgsInterface_8cpp_source.html#l00670">CmdArgsInterface.cpp:670</a></div></div>
|
||||||
|
<div class="ttc" id="aclassHazelnp_1_1CmdArgsInterface_html_adec82884377a5193f68dcc7b6ef69d8b"><div class="ttname"><a href="classHazelnp_1_1CmdArgsInterface.html#adec82884377a5193f68dcc7b6ef69d8b">Hazelnp::CmdArgsInterface::GetConstraint</a></div><div class="ttdeci">ParamConstraint GetConstraint(const std::string &parameter) const</div><div class="ttdoc">Will return the constraint information for a specific parameter.</div><div class="ttdef"><b>Definition:</b> <a href="CmdArgsInterface_8cpp_source.html#l00607">CmdArgsInterface.cpp:607</a></div></div>
|
||||||
|
<div class="ttc" id="aclassHazelnp_1_1CmdArgsInterface_html_af5e43c1067fb6c1074d9be3427c7a415"><div class="ttname"><a href="classHazelnp_1_1CmdArgsInterface.html#af5e43c1067fb6c1074d9be3427c7a415">Hazelnp::CmdArgsInterface::operator[]</a></div><div class="ttdeci">const Value & operator[](const std::string &key) const</div><div class="ttdoc">Will return the value given a key.</div><div class="ttdef"><b>Definition:</b> <a href="CmdArgsInterface_8cpp_source.html#l00623">CmdArgsInterface.cpp:623</a></div></div>
|
||||||
|
<div class="ttc" id="aclassHazelnp_1_1CmdArgsInterface_html_afe83a815b21d37b3d2a6d0ef67137faf"><div class="ttname"><a href="classHazelnp_1_1CmdArgsInterface.html#afe83a815b21d37b3d2a6d0ef67137faf">Hazelnp::CmdArgsInterface::GetExecutableName</a></div><div class="ttdeci">const std::string & GetExecutableName() const</div><div class="ttdoc">Will return argv[0], the name of the executable.</div><div class="ttdef"><b>Definition:</b> <a href="CmdArgsInterface_8cpp_source.html#l00618">CmdArgsInterface.cpp:618</a></div></div>
|
||||||
|
<div class="ttc" id="aclassHazelnp_1_1Parameter_html"><div class="ttname"><a href="classHazelnp_1_1Parameter.html">Hazelnp::Parameter</a></div><div class="ttdef"><b>Definition:</b> <a href="Parameter_8h_source.html#l00008">Parameter.h:9</a></div></div>
|
||||||
|
<div class="ttc" id="aclassHazelnp_1_1Value_html"><div class="ttname"><a href="classHazelnp_1_1Value.html">Hazelnp::Value</a></div><div class="ttdoc">Abstract class for values.</div><div class="ttdef"><b>Definition:</b> <a href="Value_8h_source.html#l00010">Value.h:11</a></div></div>
|
||||||
|
<div class="ttc" id="anamespaceHazelnp_html"><div class="ttname"><a href="namespaceHazelnp.html">Hazelnp</a></div><div class="ttdef"><b>Definition:</b> <a href="CmdArgsInterface_8h_source.html#l00009">CmdArgsInterface.h:10</a></div></div>
|
||||||
|
<div class="ttc" id="astructHazelnp_1_1ParamConstraint_html"><div class="ttname"><a href="structHazelnp_1_1ParamConstraint.html">Hazelnp::ParamConstraint</a></div><div class="ttdef"><b>Definition:</b> <a href="ParamConstraint_8h_source.html#l00008">ParamConstraint.h:9</a></div></div>
|
||||||
|
</div><!-- fragment --></div><!-- contents -->
|
||||||
|
<!-- start footer part -->
|
||||||
|
<hr class="footer"/><address class="footer"><small>
|
||||||
|
Generated on Thu Apr 28 2022 12:05:07 for Leonetienne/Hazelnupp by <a href="https://www.doxygen.org/index.html"><img class="footer" src="doxygen.svg" width="104" height="31" alt="doxygen"/></a> 1.9.3
|
||||||
|
</small></address>
|
||||||
|
</body>
|
||||||
|
</html>
|
153
Hazelnupp/doxygen/build/DataType_8h.html
Normal file
153
Hazelnupp/doxygen/build/DataType_8h.html
Normal file
@ -0,0 +1,153 @@
|
|||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||||
|
<head>
|
||||||
|
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=11"/>
|
||||||
|
<meta name="generator" content="Doxygen 1.9.3"/>
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
||||||
|
<title>Leonetienne/Hazelnupp: include/Hazelnupp/DataType.h File Reference</title>
|
||||||
|
<link href="tabs.css" rel="stylesheet" type="text/css"/>
|
||||||
|
<script type="text/javascript" src="jquery.js"></script>
|
||||||
|
<script type="text/javascript" src="dynsections.js"></script>
|
||||||
|
<link href="search/search.css" rel="stylesheet" type="text/css"/>
|
||||||
|
<script type="text/javascript" src="search/searchdata.js"></script>
|
||||||
|
<script type="text/javascript" src="search/search.js"></script>
|
||||||
|
<script type="text/x-mathjax-config">
|
||||||
|
MathJax.Hub.Config({
|
||||||
|
extensions: ["tex2jax.js"],
|
||||||
|
jax: ["input/TeX","output/HTML-CSS"],
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
<script type="text/javascript" async="async" src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.5/MathJax.js"></script>
|
||||||
|
<link href="doxygen.css" rel="stylesheet" type="text/css" />
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
|
||||||
|
<div id="titlearea">
|
||||||
|
<table cellspacing="0" cellpadding="0">
|
||||||
|
<tbody>
|
||||||
|
<tr id="projectrow">
|
||||||
|
<td id="projectalign">
|
||||||
|
<div id="projectname">Leonetienne/Hazelnupp
|
||||||
|
</div>
|
||||||
|
<div id="projectbrief">Simple, easy to use, command line parameter interface</div>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<!-- end header part -->
|
||||||
|
<!-- Generated by Doxygen 1.9.3 -->
|
||||||
|
<script type="text/javascript">
|
||||||
|
/* @license magnet:?xt=urn:btih:d3d9a9a6595521f9666a5e94cc830dab83b65699&dn=expat.txt MIT */
|
||||||
|
var searchBox = new SearchBox("searchBox", "search",'Search','.html');
|
||||||
|
/* @license-end */
|
||||||
|
</script>
|
||||||
|
<script type="text/javascript" src="menudata.js"></script>
|
||||||
|
<script type="text/javascript" src="menu.js"></script>
|
||||||
|
<script type="text/javascript">
|
||||||
|
/* @license magnet:?xt=urn:btih:d3d9a9a6595521f9666a5e94cc830dab83b65699&dn=expat.txt MIT */
|
||||||
|
$(function() {
|
||||||
|
initMenu('',true,false,'search.php','Search');
|
||||||
|
$(document).ready(function() { init_search(); });
|
||||||
|
});
|
||||||
|
/* @license-end */
|
||||||
|
</script>
|
||||||
|
<div id="main-nav"></div>
|
||||||
|
<!-- window showing the filter options -->
|
||||||
|
<div id="MSearchSelectWindow"
|
||||||
|
onmouseover="return searchBox.OnSearchSelectShow()"
|
||||||
|
onmouseout="return searchBox.OnSearchSelectHide()"
|
||||||
|
onkeydown="return searchBox.OnSearchSelectKey(event)">
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- iframe showing the search results (closed by default) -->
|
||||||
|
<div id="MSearchResultsWindow">
|
||||||
|
<iframe src="javascript:void(0)" frameborder="0"
|
||||||
|
name="MSearchResults" id="MSearchResults">
|
||||||
|
</iframe>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="nav-path" class="navpath">
|
||||||
|
<ul>
|
||||||
|
<li class="navelem"><a class="el" href="dir_d44c64559bbebec7f509842c48db8b23.html">include</a></li><li class="navelem"><a class="el" href="dir_326d56889c0e0cda5fb508341c73d89d.html">Hazelnupp</a></li> </ul>
|
||||||
|
</div>
|
||||||
|
</div><!-- top -->
|
||||||
|
<div class="header">
|
||||||
|
<div class="summary">
|
||||||
|
<a href="#namespaces">Namespaces</a> |
|
||||||
|
<a href="#enum-members">Enumerations</a> |
|
||||||
|
<a href="#func-members">Functions</a> </div>
|
||||||
|
<div class="headertitle"><div class="title">DataType.h File Reference</div></div>
|
||||||
|
</div><!--header-->
|
||||||
|
<div class="contents">
|
||||||
|
<div class="textblock"><code>#include <string></code><br />
|
||||||
|
</div><div class="textblock"><div class="dynheader">
|
||||||
|
Include dependency graph for DataType.h:</div>
|
||||||
|
<div class="dyncontent">
|
||||||
|
<div class="center"><img src="DataType_8h__incl.png" border="0" usemap="#ainclude_2Hazelnupp_2DataType_8h" alt=""/></div>
|
||||||
|
<map name="ainclude_2Hazelnupp_2DataType_8h" id="ainclude_2Hazelnupp_2DataType_8h">
|
||||||
|
<area shape="rect" title=" " alt="" coords="5,5,203,32"/>
|
||||||
|
<area shape="rect" title=" " alt="" coords="77,80,131,107"/>
|
||||||
|
</map>
|
||||||
|
</div>
|
||||||
|
</div><div class="textblock"><div class="dynheader">
|
||||||
|
This graph shows which files directly or indirectly include this file:</div>
|
||||||
|
<div class="dyncontent">
|
||||||
|
<div class="center"><img src="DataType_8h__dep__incl.png" border="0" usemap="#ainclude_2Hazelnupp_2DataType_8hdep" alt=""/></div>
|
||||||
|
<map name="ainclude_2Hazelnupp_2DataType_8hdep" id="ainclude_2Hazelnupp_2DataType_8hdep">
|
||||||
|
<area shape="rect" title=" " alt="" coords="793,5,990,32"/>
|
||||||
|
<area shape="rect" href="HazelnuppException_8h.html" title=" " alt="" coords="445,155,639,196"/>
|
||||||
|
<area shape="rect" href="ParamConstraint_8h.html" title=" " alt="" coords="1277,80,1516,107"/>
|
||||||
|
<area shape="rect" href="Value_8h.html" title=" " alt="" coords="804,80,979,107"/>
|
||||||
|
<area shape="rect" href="CmdArgsInterface_8cpp.html" title=" " alt="" coords="807,333,981,360"/>
|
||||||
|
<area shape="rect" href="FloatValue_8cpp.html" title=" " alt="" coords="579,251,710,278"/>
|
||||||
|
<area shape="rect" href="IntValue_8cpp.html" title=" " alt="" coords="385,251,501,278"/>
|
||||||
|
<area shape="rect" href="ListValue_8cpp.html" title=" " alt="" coords="734,251,857,278"/>
|
||||||
|
<area shape="rect" href="StringValue_8cpp.html" title=" " alt="" coords="1084,251,1219,278"/>
|
||||||
|
<area shape="rect" href="VoidValue_8cpp.html" title=" " alt="" coords="167,251,293,278"/>
|
||||||
|
<area shape="rect" href="CmdArgsInterface_8h.html" title=" " alt="" coords="1482,244,1669,285"/>
|
||||||
|
<area shape="rect" href="FloatValue_8h.html" title=" " alt="" coords="789,162,993,189"/>
|
||||||
|
<area shape="rect" href="IntValue_8h.html" title=" " alt="" coords="231,162,421,189"/>
|
||||||
|
<area shape="rect" href="ListValue_8h.html" title=" " alt="" coords="1018,162,1215,189"/>
|
||||||
|
<area shape="rect" href="Parameter_8h.html" title=" " alt="" coords="1431,162,1634,189"/>
|
||||||
|
<area shape="rect" href="StringValue_8h.html" title=" " alt="" coords="1240,155,1407,196"/>
|
||||||
|
<area shape="rect" href="VoidValue_8h.html" title=" " alt="" coords="5,162,207,189"/>
|
||||||
|
<area shape="rect" href="Value_8cpp.html" title=" " alt="" coords="663,162,765,189"/>
|
||||||
|
<area shape="rect" href="Parameter_8cpp.html" title=" " alt="" coords="1330,251,1458,278"/>
|
||||||
|
</map>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<p><a href="DataType_8h_source.html">Go to the source code of this file.</a></p>
|
||||||
|
<table class="memberdecls">
|
||||||
|
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a id="namespaces" name="namespaces"></a>
|
||||||
|
Namespaces</h2></td></tr>
|
||||||
|
<tr class="memitem:namespaceHazelnp"><td class="memItemLeft" align="right" valign="top">namespace  </td><td class="memItemRight" valign="bottom"><a class="el" href="namespaceHazelnp.html">Hazelnp</a></td></tr>
|
||||||
|
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr>
|
||||||
|
</table><table class="memberdecls">
|
||||||
|
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a id="enum-members" name="enum-members"></a>
|
||||||
|
Enumerations</h2></td></tr>
|
||||||
|
<tr class="memitem:a07b61ac22ce9cd97eceebdf9487f803f"><td class="memItemLeft" align="right" valign="top">enum class  </td><td class="memItemRight" valign="bottom"><a class="el" href="namespaceHazelnp.html#a07b61ac22ce9cd97eceebdf9487f803f">Hazelnp::DATA_TYPE</a> { <br />
|
||||||
|
  <a class="el" href="namespaceHazelnp.html#a07b61ac22ce9cd97eceebdf9487f803fa6d0c9fc747131795e6e5d0c5119f12cb">Hazelnp::VOID</a>
|
||||||
|
, <a class="el" href="namespaceHazelnp.html#a07b61ac22ce9cd97eceebdf9487f803fa53f93baa3057821107c750323892fa92">Hazelnp::INT</a>
|
||||||
|
, <a class="el" href="namespaceHazelnp.html#a07b61ac22ce9cd97eceebdf9487f803fae738c26bf4ce1037fa81b039a915cbf6">Hazelnp::FLOAT</a>
|
||||||
|
, <a class="el" href="namespaceHazelnp.html#a07b61ac22ce9cd97eceebdf9487f803fa63b588d5559f64f89a416e656880b949">Hazelnp::STRING</a>
|
||||||
|
, <br />
|
||||||
|
  <a class="el" href="namespaceHazelnp.html#a07b61ac22ce9cd97eceebdf9487f803fa298cb25408234de02baf2085803a464a">Hazelnp::LIST</a>
|
||||||
|
<br />
|
||||||
|
}</td></tr>
|
||||||
|
<tr class="memdesc:a07b61ac22ce9cd97eceebdf9487f803f"><td class="mdescLeft"> </td><td class="mdescRight">The different data types a paramater can be. <a href="namespaceHazelnp.html#a07b61ac22ce9cd97eceebdf9487f803f">More...</a><br /></td></tr>
|
||||||
|
<tr class="separator:a07b61ac22ce9cd97eceebdf9487f803f"><td class="memSeparator" colspan="2"> </td></tr>
|
||||||
|
</table><table class="memberdecls">
|
||||||
|
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a id="func-members" name="func-members"></a>
|
||||||
|
Functions</h2></td></tr>
|
||||||
|
<tr class="memitem:a7fb1e5ad9e2ecb6c0025beb19f11621b"><td class="memItemLeft" align="right" valign="top">static std::string </td><td class="memItemRight" valign="bottom"><a class="el" href="namespaceHazelnp.html#a7fb1e5ad9e2ecb6c0025beb19f11621b">Hazelnp::DataTypeToString</a> (DATA_TYPE type)</td></tr>
|
||||||
|
<tr class="separator:a7fb1e5ad9e2ecb6c0025beb19f11621b"><td class="memSeparator" colspan="2"> </td></tr>
|
||||||
|
</table>
|
||||||
|
</div><!-- contents -->
|
||||||
|
<!-- start footer part -->
|
||||||
|
<hr class="footer"/><address class="footer"><small>
|
||||||
|
Generated on Thu Apr 28 2022 12:05:07 for Leonetienne/Hazelnupp by <a href="https://www.doxygen.org/index.html"><img class="footer" src="doxygen.svg" width="104" height="31" alt="doxygen"/></a> 1.9.3
|
||||||
|
</small></address>
|
||||||
|
</body>
|
||||||
|
</html>
|
21
Hazelnupp/doxygen/build/DataType_8h__dep__incl.map
Normal file
21
Hazelnupp/doxygen/build/DataType_8h__dep__incl.map
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
<map id="include/Hazelnupp/DataType.h" name="include/Hazelnupp/DataType.h">
|
||||||
|
<area shape="rect" id="node1" title=" " alt="" coords="793,5,990,32"/>
|
||||||
|
<area shape="rect" id="node2" href="$HazelnuppException_8h.html" title=" " alt="" coords="445,155,639,196"/>
|
||||||
|
<area shape="rect" id="node9" href="$ParamConstraint_8h.html" title=" " alt="" coords="1277,80,1516,107"/>
|
||||||
|
<area shape="rect" id="node11" href="$Value_8h.html" title=" " alt="" coords="804,80,979,107"/>
|
||||||
|
<area shape="rect" id="node3" href="$CmdArgsInterface_8cpp.html" title=" " alt="" coords="807,333,981,360"/>
|
||||||
|
<area shape="rect" id="node4" href="$FloatValue_8cpp.html" title=" " alt="" coords="579,251,710,278"/>
|
||||||
|
<area shape="rect" id="node5" href="$IntValue_8cpp.html" title=" " alt="" coords="385,251,501,278"/>
|
||||||
|
<area shape="rect" id="node6" href="$ListValue_8cpp.html" title=" " alt="" coords="734,251,857,278"/>
|
||||||
|
<area shape="rect" id="node7" href="$StringValue_8cpp.html" title=" " alt="" coords="1084,251,1219,278"/>
|
||||||
|
<area shape="rect" id="node8" href="$VoidValue_8cpp.html" title=" " alt="" coords="167,251,293,278"/>
|
||||||
|
<area shape="rect" id="node10" href="$CmdArgsInterface_8h.html" title=" " alt="" coords="1482,244,1669,285"/>
|
||||||
|
<area shape="rect" id="node12" href="$FloatValue_8h.html" title=" " alt="" coords="789,162,993,189"/>
|
||||||
|
<area shape="rect" id="node13" href="$IntValue_8h.html" title=" " alt="" coords="231,162,421,189"/>
|
||||||
|
<area shape="rect" id="node14" href="$ListValue_8h.html" title=" " alt="" coords="1018,162,1215,189"/>
|
||||||
|
<area shape="rect" id="node15" href="$Parameter_8h.html" title=" " alt="" coords="1431,162,1634,189"/>
|
||||||
|
<area shape="rect" id="node17" href="$StringValue_8h.html" title=" " alt="" coords="1240,155,1407,196"/>
|
||||||
|
<area shape="rect" id="node18" href="$VoidValue_8h.html" title=" " alt="" coords="5,162,207,189"/>
|
||||||
|
<area shape="rect" id="node19" href="$Value_8cpp.html" title=" " alt="" coords="663,162,765,189"/>
|
||||||
|
<area shape="rect" id="node16" href="$Parameter_8cpp.html" title=" " alt="" coords="1330,251,1458,278"/>
|
||||||
|
</map>
|
1
Hazelnupp/doxygen/build/DataType_8h__dep__incl.md5
Normal file
1
Hazelnupp/doxygen/build/DataType_8h__dep__incl.md5
Normal file
@ -0,0 +1 @@
|
|||||||
|
293dc24055e18208b8fa48bd06f4ec0c
|
BIN
Hazelnupp/doxygen/build/DataType_8h__dep__incl.png
Normal file
BIN
Hazelnupp/doxygen/build/DataType_8h__dep__incl.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 92 KiB |
4
Hazelnupp/doxygen/build/DataType_8h__incl.map
Normal file
4
Hazelnupp/doxygen/build/DataType_8h__incl.map
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
<map id="include/Hazelnupp/DataType.h" name="include/Hazelnupp/DataType.h">
|
||||||
|
<area shape="rect" id="node1" title=" " alt="" coords="5,5,203,32"/>
|
||||||
|
<area shape="rect" id="node2" title=" " alt="" coords="77,80,131,107"/>
|
||||||
|
</map>
|
1
Hazelnupp/doxygen/build/DataType_8h__incl.md5
Normal file
1
Hazelnupp/doxygen/build/DataType_8h__incl.md5
Normal file
@ -0,0 +1 @@
|
|||||||
|
9036592f167349bab7f1d18da8d8125c
|
BIN
Hazelnupp/doxygen/build/DataType_8h__incl.png
Normal file
BIN
Hazelnupp/doxygen/build/DataType_8h__incl.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 3.5 KiB |
133
Hazelnupp/doxygen/build/DataType_8h_source.html
Normal file
133
Hazelnupp/doxygen/build/DataType_8h_source.html
Normal file
@ -0,0 +1,133 @@
|
|||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||||
|
<head>
|
||||||
|
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=11"/>
|
||||||
|
<meta name="generator" content="Doxygen 1.9.3"/>
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
||||||
|
<title>Leonetienne/Hazelnupp: include/Hazelnupp/DataType.h Source File</title>
|
||||||
|
<link href="tabs.css" rel="stylesheet" type="text/css"/>
|
||||||
|
<script type="text/javascript" src="jquery.js"></script>
|
||||||
|
<script type="text/javascript" src="dynsections.js"></script>
|
||||||
|
<link href="search/search.css" rel="stylesheet" type="text/css"/>
|
||||||
|
<script type="text/javascript" src="search/searchdata.js"></script>
|
||||||
|
<script type="text/javascript" src="search/search.js"></script>
|
||||||
|
<script type="text/x-mathjax-config">
|
||||||
|
MathJax.Hub.Config({
|
||||||
|
extensions: ["tex2jax.js"],
|
||||||
|
jax: ["input/TeX","output/HTML-CSS"],
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
<script type="text/javascript" async="async" src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.5/MathJax.js"></script>
|
||||||
|
<link href="doxygen.css" rel="stylesheet" type="text/css" />
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
|
||||||
|
<div id="titlearea">
|
||||||
|
<table cellspacing="0" cellpadding="0">
|
||||||
|
<tbody>
|
||||||
|
<tr id="projectrow">
|
||||||
|
<td id="projectalign">
|
||||||
|
<div id="projectname">Leonetienne/Hazelnupp
|
||||||
|
</div>
|
||||||
|
<div id="projectbrief">Simple, easy to use, command line parameter interface</div>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<!-- end header part -->
|
||||||
|
<!-- Generated by Doxygen 1.9.3 -->
|
||||||
|
<script type="text/javascript">
|
||||||
|
/* @license magnet:?xt=urn:btih:d3d9a9a6595521f9666a5e94cc830dab83b65699&dn=expat.txt MIT */
|
||||||
|
var searchBox = new SearchBox("searchBox", "search",'Search','.html');
|
||||||
|
/* @license-end */
|
||||||
|
</script>
|
||||||
|
<script type="text/javascript" src="menudata.js"></script>
|
||||||
|
<script type="text/javascript" src="menu.js"></script>
|
||||||
|
<script type="text/javascript">
|
||||||
|
/* @license magnet:?xt=urn:btih:d3d9a9a6595521f9666a5e94cc830dab83b65699&dn=expat.txt MIT */
|
||||||
|
$(function() {
|
||||||
|
initMenu('',true,false,'search.php','Search');
|
||||||
|
$(document).ready(function() { init_search(); });
|
||||||
|
});
|
||||||
|
/* @license-end */
|
||||||
|
</script>
|
||||||
|
<div id="main-nav"></div>
|
||||||
|
<!-- window showing the filter options -->
|
||||||
|
<div id="MSearchSelectWindow"
|
||||||
|
onmouseover="return searchBox.OnSearchSelectShow()"
|
||||||
|
onmouseout="return searchBox.OnSearchSelectHide()"
|
||||||
|
onkeydown="return searchBox.OnSearchSelectKey(event)">
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- iframe showing the search results (closed by default) -->
|
||||||
|
<div id="MSearchResultsWindow">
|
||||||
|
<iframe src="javascript:void(0)" frameborder="0"
|
||||||
|
name="MSearchResults" id="MSearchResults">
|
||||||
|
</iframe>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="nav-path" class="navpath">
|
||||||
|
<ul>
|
||||||
|
<li class="navelem"><a class="el" href="dir_d44c64559bbebec7f509842c48db8b23.html">include</a></li><li class="navelem"><a class="el" href="dir_326d56889c0e0cda5fb508341c73d89d.html">Hazelnupp</a></li> </ul>
|
||||||
|
</div>
|
||||||
|
</div><!-- top -->
|
||||||
|
<div class="header">
|
||||||
|
<div class="headertitle"><div class="title">DataType.h</div></div>
|
||||||
|
</div><!--header-->
|
||||||
|
<div class="contents">
|
||||||
|
<a href="DataType_8h.html">Go to the documentation of this file.</a><div class="fragment"><div class="line"><a id="l00001" name="l00001"></a><span class="lineno"> 1</span><span class="preprocessor">#pragma once</span></div>
|
||||||
|
<div class="line"><a id="l00002" name="l00002"></a><span class="lineno"> 2</span><span class="preprocessor">#include <string></span></div>
|
||||||
|
<div class="line"><a id="l00003" name="l00003"></a><span class="lineno"> 3</span> </div>
|
||||||
|
<div class="line"><a id="l00004" name="l00004"></a><span class="lineno"> 4</span><span class="keyword">namespace </span><a class="code hl_namespace" href="namespaceHazelnp.html">Hazelnp</a></div>
|
||||||
|
<div class="line"><a id="l00005" name="l00005"></a><span class="lineno"> 5</span>{<span class="comment"></span></div>
|
||||||
|
<div class="line"><a id="l00006" name="l00006"></a><span class="lineno"> 6</span><span class="comment"> /** The different data types a paramater can be</span></div>
|
||||||
|
<div class="line"><a id="l00007" name="l00007"></a><span class="lineno"> 7</span><span class="comment"> */</span></div>
|
||||||
|
<div class="line"><a id="l00008" name="l00008"></a><span class="lineno"><a class="line" href="namespaceHazelnp.html#a07b61ac22ce9cd97eceebdf9487f803f"> 8</a></span> <span class="keyword">enum class</span> <a class="code hl_enumeration" href="namespaceHazelnp.html#a07b61ac22ce9cd97eceebdf9487f803f">DATA_TYPE</a></div>
|
||||||
|
<div class="line"><a id="l00009" name="l00009"></a><span class="lineno"> 9</span> {</div>
|
||||||
|
<div class="line"><a id="l00010" name="l00010"></a><span class="lineno"> 10</span> <a class="code hl_enumvalue" href="namespaceHazelnp.html#a07b61ac22ce9cd97eceebdf9487f803fa6d0c9fc747131795e6e5d0c5119f12cb">VOID</a>,</div>
|
||||||
|
<div class="line"><a id="l00011" name="l00011"></a><span class="lineno"> 11</span> <a class="code hl_enumvalue" href="namespaceHazelnp.html#a07b61ac22ce9cd97eceebdf9487f803fa53f93baa3057821107c750323892fa92">INT</a>,</div>
|
||||||
|
<div class="line"><a id="l00012" name="l00012"></a><span class="lineno"> 12</span> <a class="code hl_enumvalue" href="namespaceHazelnp.html#a07b61ac22ce9cd97eceebdf9487f803fae738c26bf4ce1037fa81b039a915cbf6">FLOAT</a>,</div>
|
||||||
|
<div class="line"><a id="l00013" name="l00013"></a><span class="lineno"> 13</span> <a class="code hl_enumvalue" href="namespaceHazelnp.html#a07b61ac22ce9cd97eceebdf9487f803fa63b588d5559f64f89a416e656880b949">STRING</a>,</div>
|
||||||
|
<div class="line"><a id="l00014" name="l00014"></a><span class="lineno"> 14</span> <a class="code hl_enumvalue" href="namespaceHazelnp.html#a07b61ac22ce9cd97eceebdf9487f803fa298cb25408234de02baf2085803a464a">LIST</a></div>
|
||||||
|
<div class="line"><a id="l00015" name="l00015"></a><span class="lineno"> 15</span> };</div>
|
||||||
|
<div class="line"><a id="l00016" name="l00016"></a><span class="lineno"> 16</span> </div>
|
||||||
|
<div class="line"><a id="l00017" name="l00017"></a><span class="lineno"><a class="line" href="namespaceHazelnp.html#a7fb1e5ad9e2ecb6c0025beb19f11621b"> 17</a></span> <span class="keyword">static</span> <span class="keyword">inline</span> std::string <a class="code hl_function" href="namespaceHazelnp.html#a7fb1e5ad9e2ecb6c0025beb19f11621b">DataTypeToString</a>(<a class="code hl_enumeration" href="namespaceHazelnp.html#a07b61ac22ce9cd97eceebdf9487f803f">DATA_TYPE</a> type)</div>
|
||||||
|
<div class="line"><a id="l00018" name="l00018"></a><span class="lineno"> 18</span> {</div>
|
||||||
|
<div class="line"><a id="l00019" name="l00019"></a><span class="lineno"> 19</span> <span class="keywordflow">switch</span> (type)</div>
|
||||||
|
<div class="line"><a id="l00020" name="l00020"></a><span class="lineno"> 20</span> {</div>
|
||||||
|
<div class="line"><a id="l00021" name="l00021"></a><span class="lineno"> 21</span> <span class="keywordflow">case</span> <a class="code hl_enumvalue" href="namespaceHazelnp.html#a07b61ac22ce9cd97eceebdf9487f803fa6d0c9fc747131795e6e5d0c5119f12cb">DATA_TYPE::VOID</a>:</div>
|
||||||
|
<div class="line"><a id="l00022" name="l00022"></a><span class="lineno"> 22</span> <span class="keywordflow">return</span> <span class="stringliteral">"VOID"</span>;</div>
|
||||||
|
<div class="line"><a id="l00023" name="l00023"></a><span class="lineno"> 23</span> </div>
|
||||||
|
<div class="line"><a id="l00024" name="l00024"></a><span class="lineno"> 24</span> <span class="keywordflow">case</span> <a class="code hl_enumvalue" href="namespaceHazelnp.html#a07b61ac22ce9cd97eceebdf9487f803fa53f93baa3057821107c750323892fa92">DATA_TYPE::INT</a>:</div>
|
||||||
|
<div class="line"><a id="l00025" name="l00025"></a><span class="lineno"> 25</span> <span class="keywordflow">return</span> <span class="stringliteral">"INT"</span>;</div>
|
||||||
|
<div class="line"><a id="l00026" name="l00026"></a><span class="lineno"> 26</span> </div>
|
||||||
|
<div class="line"><a id="l00027" name="l00027"></a><span class="lineno"> 27</span> <span class="keywordflow">case</span> <a class="code hl_enumvalue" href="namespaceHazelnp.html#a07b61ac22ce9cd97eceebdf9487f803fae738c26bf4ce1037fa81b039a915cbf6">DATA_TYPE::FLOAT</a>:</div>
|
||||||
|
<div class="line"><a id="l00028" name="l00028"></a><span class="lineno"> 28</span> <span class="keywordflow">return</span> <span class="stringliteral">"FLOAT"</span>;</div>
|
||||||
|
<div class="line"><a id="l00029" name="l00029"></a><span class="lineno"> 29</span> </div>
|
||||||
|
<div class="line"><a id="l00030" name="l00030"></a><span class="lineno"> 30</span> <span class="keywordflow">case</span> <a class="code hl_enumvalue" href="namespaceHazelnp.html#a07b61ac22ce9cd97eceebdf9487f803fa63b588d5559f64f89a416e656880b949">DATA_TYPE::STRING</a>:</div>
|
||||||
|
<div class="line"><a id="l00031" name="l00031"></a><span class="lineno"> 31</span> <span class="keywordflow">return</span> <span class="stringliteral">"STRING"</span>;</div>
|
||||||
|
<div class="line"><a id="l00032" name="l00032"></a><span class="lineno"> 32</span> </div>
|
||||||
|
<div class="line"><a id="l00033" name="l00033"></a><span class="lineno"> 33</span> <span class="keywordflow">case</span> <a class="code hl_enumvalue" href="namespaceHazelnp.html#a07b61ac22ce9cd97eceebdf9487f803fa298cb25408234de02baf2085803a464a">DATA_TYPE::LIST</a>:</div>
|
||||||
|
<div class="line"><a id="l00034" name="l00034"></a><span class="lineno"> 34</span> <span class="keywordflow">return</span> <span class="stringliteral">"LIST"</span>;</div>
|
||||||
|
<div class="line"><a id="l00035" name="l00035"></a><span class="lineno"> 35</span> }</div>
|
||||||
|
<div class="line"><a id="l00036" name="l00036"></a><span class="lineno"> 36</span> </div>
|
||||||
|
<div class="line"><a id="l00037" name="l00037"></a><span class="lineno"> 37</span> <span class="keywordflow">return</span> <span class="stringliteral">""</span>;</div>
|
||||||
|
<div class="line"><a id="l00038" name="l00038"></a><span class="lineno"> 38</span> }</div>
|
||||||
|
<div class="line"><a id="l00039" name="l00039"></a><span class="lineno"> 39</span>}</div>
|
||||||
|
<div class="ttc" id="anamespaceHazelnp_html"><div class="ttname"><a href="namespaceHazelnp.html">Hazelnp</a></div><div class="ttdef"><b>Definition:</b> <a href="CmdArgsInterface_8h_source.html#l00009">CmdArgsInterface.h:10</a></div></div>
|
||||||
|
<div class="ttc" id="anamespaceHazelnp_html_a07b61ac22ce9cd97eceebdf9487f803f"><div class="ttname"><a href="namespaceHazelnp.html#a07b61ac22ce9cd97eceebdf9487f803f">Hazelnp::DATA_TYPE</a></div><div class="ttdeci">DATA_TYPE</div><div class="ttdoc">The different data types a paramater can be.</div><div class="ttdef"><b>Definition:</b> <a href="DataType_8h_source.html#l00008">DataType.h:9</a></div></div>
|
||||||
|
<div class="ttc" id="anamespaceHazelnp_html_a07b61ac22ce9cd97eceebdf9487f803fa298cb25408234de02baf2085803a464a"><div class="ttname"><a href="namespaceHazelnp.html#a07b61ac22ce9cd97eceebdf9487f803fa298cb25408234de02baf2085803a464a">Hazelnp::DATA_TYPE::LIST</a></div><div class="ttdeci">@ LIST</div></div>
|
||||||
|
<div class="ttc" id="anamespaceHazelnp_html_a07b61ac22ce9cd97eceebdf9487f803fa53f93baa3057821107c750323892fa92"><div class="ttname"><a href="namespaceHazelnp.html#a07b61ac22ce9cd97eceebdf9487f803fa53f93baa3057821107c750323892fa92">Hazelnp::DATA_TYPE::INT</a></div><div class="ttdeci">@ INT</div></div>
|
||||||
|
<div class="ttc" id="anamespaceHazelnp_html_a07b61ac22ce9cd97eceebdf9487f803fa63b588d5559f64f89a416e656880b949"><div class="ttname"><a href="namespaceHazelnp.html#a07b61ac22ce9cd97eceebdf9487f803fa63b588d5559f64f89a416e656880b949">Hazelnp::DATA_TYPE::STRING</a></div><div class="ttdeci">@ STRING</div></div>
|
||||||
|
<div class="ttc" id="anamespaceHazelnp_html_a07b61ac22ce9cd97eceebdf9487f803fa6d0c9fc747131795e6e5d0c5119f12cb"><div class="ttname"><a href="namespaceHazelnp.html#a07b61ac22ce9cd97eceebdf9487f803fa6d0c9fc747131795e6e5d0c5119f12cb">Hazelnp::DATA_TYPE::VOID</a></div><div class="ttdeci">@ VOID</div></div>
|
||||||
|
<div class="ttc" id="anamespaceHazelnp_html_a07b61ac22ce9cd97eceebdf9487f803fae738c26bf4ce1037fa81b039a915cbf6"><div class="ttname"><a href="namespaceHazelnp.html#a07b61ac22ce9cd97eceebdf9487f803fae738c26bf4ce1037fa81b039a915cbf6">Hazelnp::DATA_TYPE::FLOAT</a></div><div class="ttdeci">@ FLOAT</div></div>
|
||||||
|
<div class="ttc" id="anamespaceHazelnp_html_a7fb1e5ad9e2ecb6c0025beb19f11621b"><div class="ttname"><a href="namespaceHazelnp.html#a7fb1e5ad9e2ecb6c0025beb19f11621b">Hazelnp::DataTypeToString</a></div><div class="ttdeci">static std::string DataTypeToString(DATA_TYPE type)</div><div class="ttdef"><b>Definition:</b> <a href="DataType_8h_source.html#l00017">DataType.h:17</a></div></div>
|
||||||
|
</div><!-- fragment --></div><!-- contents -->
|
||||||
|
<!-- start footer part -->
|
||||||
|
<hr class="footer"/><address class="footer"><small>
|
||||||
|
Generated on Thu Apr 28 2022 12:05:07 for Leonetienne/Hazelnupp by <a href="https://www.doxygen.org/index.html"><img class="footer" src="doxygen.svg" width="104" height="31" alt="doxygen"/></a> 1.9.3
|
||||||
|
</small></address>
|
||||||
|
</body>
|
||||||
|
</html>
|
108
Hazelnupp/doxygen/build/FloatValue_8cpp.html
Normal file
108
Hazelnupp/doxygen/build/FloatValue_8cpp.html
Normal file
@ -0,0 +1,108 @@
|
|||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||||
|
<head>
|
||||||
|
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=11"/>
|
||||||
|
<meta name="generator" content="Doxygen 1.9.3"/>
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
||||||
|
<title>Leonetienne/Hazelnupp: src/FloatValue.cpp File Reference</title>
|
||||||
|
<link href="tabs.css" rel="stylesheet" type="text/css"/>
|
||||||
|
<script type="text/javascript" src="jquery.js"></script>
|
||||||
|
<script type="text/javascript" src="dynsections.js"></script>
|
||||||
|
<link href="search/search.css" rel="stylesheet" type="text/css"/>
|
||||||
|
<script type="text/javascript" src="search/searchdata.js"></script>
|
||||||
|
<script type="text/javascript" src="search/search.js"></script>
|
||||||
|
<script type="text/x-mathjax-config">
|
||||||
|
MathJax.Hub.Config({
|
||||||
|
extensions: ["tex2jax.js"],
|
||||||
|
jax: ["input/TeX","output/HTML-CSS"],
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
<script type="text/javascript" async="async" src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.5/MathJax.js"></script>
|
||||||
|
<link href="doxygen.css" rel="stylesheet" type="text/css" />
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
|
||||||
|
<div id="titlearea">
|
||||||
|
<table cellspacing="0" cellpadding="0">
|
||||||
|
<tbody>
|
||||||
|
<tr id="projectrow">
|
||||||
|
<td id="projectalign">
|
||||||
|
<div id="projectname">Leonetienne/Hazelnupp
|
||||||
|
</div>
|
||||||
|
<div id="projectbrief">Simple, easy to use, command line parameter interface</div>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<!-- end header part -->
|
||||||
|
<!-- Generated by Doxygen 1.9.3 -->
|
||||||
|
<script type="text/javascript">
|
||||||
|
/* @license magnet:?xt=urn:btih:d3d9a9a6595521f9666a5e94cc830dab83b65699&dn=expat.txt MIT */
|
||||||
|
var searchBox = new SearchBox("searchBox", "search",'Search','.html');
|
||||||
|
/* @license-end */
|
||||||
|
</script>
|
||||||
|
<script type="text/javascript" src="menudata.js"></script>
|
||||||
|
<script type="text/javascript" src="menu.js"></script>
|
||||||
|
<script type="text/javascript">
|
||||||
|
/* @license magnet:?xt=urn:btih:d3d9a9a6595521f9666a5e94cc830dab83b65699&dn=expat.txt MIT */
|
||||||
|
$(function() {
|
||||||
|
initMenu('',true,false,'search.php','Search');
|
||||||
|
$(document).ready(function() { init_search(); });
|
||||||
|
});
|
||||||
|
/* @license-end */
|
||||||
|
</script>
|
||||||
|
<div id="main-nav"></div>
|
||||||
|
<!-- window showing the filter options -->
|
||||||
|
<div id="MSearchSelectWindow"
|
||||||
|
onmouseover="return searchBox.OnSearchSelectShow()"
|
||||||
|
onmouseout="return searchBox.OnSearchSelectHide()"
|
||||||
|
onkeydown="return searchBox.OnSearchSelectKey(event)">
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- iframe showing the search results (closed by default) -->
|
||||||
|
<div id="MSearchResultsWindow">
|
||||||
|
<iframe src="javascript:void(0)" frameborder="0"
|
||||||
|
name="MSearchResults" id="MSearchResults">
|
||||||
|
</iframe>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="nav-path" class="navpath">
|
||||||
|
<ul>
|
||||||
|
<li class="navelem"><a class="el" href="dir_68267d1309a1af8e8297ef4c3efbcdba.html">src</a></li> </ul>
|
||||||
|
</div>
|
||||||
|
</div><!-- top -->
|
||||||
|
<div class="header">
|
||||||
|
<div class="headertitle"><div class="title">FloatValue.cpp File Reference</div></div>
|
||||||
|
</div><!--header-->
|
||||||
|
<div class="contents">
|
||||||
|
<div class="textblock"><code>#include "<a class="el" href="FloatValue_8h_source.html">Hazelnupp/FloatValue.h</a>"</code><br />
|
||||||
|
<code>#include "<a class="el" href="HazelnuppException_8h_source.html">Hazelnupp/HazelnuppException.h</a>"</code><br />
|
||||||
|
<code>#include <sstream></code><br />
|
||||||
|
</div><div class="textblock"><div class="dynheader">
|
||||||
|
Include dependency graph for FloatValue.cpp:</div>
|
||||||
|
<div class="dyncontent">
|
||||||
|
<div class="center"><img src="FloatValue_8cpp__incl.png" border="0" usemap="#asrc_2FloatValue_8cpp" alt=""/></div>
|
||||||
|
<map name="asrc_2FloatValue_8cpp" id="asrc_2FloatValue_8cpp">
|
||||||
|
<area shape="rect" title=" " alt="" coords="272,5,403,32"/>
|
||||||
|
<area shape="rect" href="FloatValue_8h.html" title=" " alt="" coords="47,80,206,107"/>
|
||||||
|
<area shape="rect" href="HazelnuppException_8h.html" title=" " alt="" coords="230,80,445,107"/>
|
||||||
|
<area shape="rect" title=" " alt="" coords="448,155,517,181"/>
|
||||||
|
<area shape="rect" href="Value_8h.html" title=" " alt="" coords="95,155,161,181"/>
|
||||||
|
<area shape="rect" title=" " alt="" coords="5,229,75,256"/>
|
||||||
|
<area shape="rect" href="DataType_8h.html" title=" " alt="" coords="182,229,269,256"/>
|
||||||
|
<area shape="rect" title=" " alt="" coords="99,229,157,256"/>
|
||||||
|
<area shape="rect" title=" " alt="" coords="238,304,293,331"/>
|
||||||
|
<area shape="rect" title=" " alt="" coords="345,155,423,181"/>
|
||||||
|
</map>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<p><a href="FloatValue_8cpp_source.html">Go to the source code of this file.</a></p>
|
||||||
|
</div><!-- contents -->
|
||||||
|
<!-- start footer part -->
|
||||||
|
<hr class="footer"/><address class="footer"><small>
|
||||||
|
Generated on Thu Apr 28 2022 12:05:07 for Leonetienne/Hazelnupp by <a href="https://www.doxygen.org/index.html"><img class="footer" src="doxygen.svg" width="104" height="31" alt="doxygen"/></a> 1.9.3
|
||||||
|
</small></address>
|
||||||
|
</body>
|
||||||
|
</html>
|
12
Hazelnupp/doxygen/build/FloatValue_8cpp__incl.map
Normal file
12
Hazelnupp/doxygen/build/FloatValue_8cpp__incl.map
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
<map id="src/FloatValue.cpp" name="src/FloatValue.cpp">
|
||||||
|
<area shape="rect" id="node1" title=" " alt="" coords="272,5,403,32"/>
|
||||||
|
<area shape="rect" id="node2" href="$FloatValue_8h.html" title=" " alt="" coords="47,80,206,107"/>
|
||||||
|
<area shape="rect" id="node8" href="$HazelnuppException_8h.html" title=" " alt="" coords="230,80,445,107"/>
|
||||||
|
<area shape="rect" id="node10" title=" " alt="" coords="448,155,517,181"/>
|
||||||
|
<area shape="rect" id="node3" href="$Value_8h.html" title=" " alt="" coords="95,155,161,181"/>
|
||||||
|
<area shape="rect" id="node6" title=" " alt="" coords="5,229,75,256"/>
|
||||||
|
<area shape="rect" id="node4" href="$DataType_8h.html" title=" " alt="" coords="182,229,269,256"/>
|
||||||
|
<area shape="rect" id="node7" title=" " alt="" coords="99,229,157,256"/>
|
||||||
|
<area shape="rect" id="node5" title=" " alt="" coords="238,304,293,331"/>
|
||||||
|
<area shape="rect" id="node9" title=" " alt="" coords="345,155,423,181"/>
|
||||||
|
</map>
|
1
Hazelnupp/doxygen/build/FloatValue_8cpp__incl.md5
Normal file
1
Hazelnupp/doxygen/build/FloatValue_8cpp__incl.md5
Normal file
@ -0,0 +1 @@
|
|||||||
|
305d8a78d87c8f42eca6ffe7f75b8446
|
BIN
Hazelnupp/doxygen/build/FloatValue_8cpp__incl.png
Normal file
BIN
Hazelnupp/doxygen/build/FloatValue_8cpp__incl.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 32 KiB |
178
Hazelnupp/doxygen/build/FloatValue_8cpp_source.html
Normal file
178
Hazelnupp/doxygen/build/FloatValue_8cpp_source.html
Normal file
@ -0,0 +1,178 @@
|
|||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||||
|
<head>
|
||||||
|
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=11"/>
|
||||||
|
<meta name="generator" content="Doxygen 1.9.3"/>
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
||||||
|
<title>Leonetienne/Hazelnupp: src/FloatValue.cpp Source File</title>
|
||||||
|
<link href="tabs.css" rel="stylesheet" type="text/css"/>
|
||||||
|
<script type="text/javascript" src="jquery.js"></script>
|
||||||
|
<script type="text/javascript" src="dynsections.js"></script>
|
||||||
|
<link href="search/search.css" rel="stylesheet" type="text/css"/>
|
||||||
|
<script type="text/javascript" src="search/searchdata.js"></script>
|
||||||
|
<script type="text/javascript" src="search/search.js"></script>
|
||||||
|
<script type="text/x-mathjax-config">
|
||||||
|
MathJax.Hub.Config({
|
||||||
|
extensions: ["tex2jax.js"],
|
||||||
|
jax: ["input/TeX","output/HTML-CSS"],
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
<script type="text/javascript" async="async" src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.5/MathJax.js"></script>
|
||||||
|
<link href="doxygen.css" rel="stylesheet" type="text/css" />
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
|
||||||
|
<div id="titlearea">
|
||||||
|
<table cellspacing="0" cellpadding="0">
|
||||||
|
<tbody>
|
||||||
|
<tr id="projectrow">
|
||||||
|
<td id="projectalign">
|
||||||
|
<div id="projectname">Leonetienne/Hazelnupp
|
||||||
|
</div>
|
||||||
|
<div id="projectbrief">Simple, easy to use, command line parameter interface</div>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<!-- end header part -->
|
||||||
|
<!-- Generated by Doxygen 1.9.3 -->
|
||||||
|
<script type="text/javascript">
|
||||||
|
/* @license magnet:?xt=urn:btih:d3d9a9a6595521f9666a5e94cc830dab83b65699&dn=expat.txt MIT */
|
||||||
|
var searchBox = new SearchBox("searchBox", "search",'Search','.html');
|
||||||
|
/* @license-end */
|
||||||
|
</script>
|
||||||
|
<script type="text/javascript" src="menudata.js"></script>
|
||||||
|
<script type="text/javascript" src="menu.js"></script>
|
||||||
|
<script type="text/javascript">
|
||||||
|
/* @license magnet:?xt=urn:btih:d3d9a9a6595521f9666a5e94cc830dab83b65699&dn=expat.txt MIT */
|
||||||
|
$(function() {
|
||||||
|
initMenu('',true,false,'search.php','Search');
|
||||||
|
$(document).ready(function() { init_search(); });
|
||||||
|
});
|
||||||
|
/* @license-end */
|
||||||
|
</script>
|
||||||
|
<div id="main-nav"></div>
|
||||||
|
<!-- window showing the filter options -->
|
||||||
|
<div id="MSearchSelectWindow"
|
||||||
|
onmouseover="return searchBox.OnSearchSelectShow()"
|
||||||
|
onmouseout="return searchBox.OnSearchSelectHide()"
|
||||||
|
onkeydown="return searchBox.OnSearchSelectKey(event)">
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- iframe showing the search results (closed by default) -->
|
||||||
|
<div id="MSearchResultsWindow">
|
||||||
|
<iframe src="javascript:void(0)" frameborder="0"
|
||||||
|
name="MSearchResults" id="MSearchResults">
|
||||||
|
</iframe>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="nav-path" class="navpath">
|
||||||
|
<ul>
|
||||||
|
<li class="navelem"><a class="el" href="dir_68267d1309a1af8e8297ef4c3efbcdba.html">src</a></li> </ul>
|
||||||
|
</div>
|
||||||
|
</div><!-- top -->
|
||||||
|
<div class="header">
|
||||||
|
<div class="headertitle"><div class="title">FloatValue.cpp</div></div>
|
||||||
|
</div><!--header-->
|
||||||
|
<div class="contents">
|
||||||
|
<a href="FloatValue_8cpp.html">Go to the documentation of this file.</a><div class="fragment"><div class="line"><a id="l00001" name="l00001"></a><span class="lineno"> 1</span><span class="preprocessor">#include "<a class="code" href="FloatValue_8h.html">Hazelnupp/FloatValue.h</a>"</span></div>
|
||||||
|
<div class="line"><a id="l00002" name="l00002"></a><span class="lineno"> 2</span><span class="preprocessor">#include "<a class="code" href="HazelnuppException_8h.html">Hazelnupp/HazelnuppException.h</a>"</span></div>
|
||||||
|
<div class="line"><a id="l00003" name="l00003"></a><span class="lineno"> 3</span><span class="preprocessor">#include <sstream></span></div>
|
||||||
|
<div class="line"><a id="l00004" name="l00004"></a><span class="lineno"> 4</span> </div>
|
||||||
|
<div class="line"><a id="l00005" name="l00005"></a><span class="lineno"> 5</span><span class="keyword">using namespace </span><a class="code hl_namespace" href="namespaceHazelnp.html">Hazelnp</a>;</div>
|
||||||
|
<div class="line"><a id="l00006" name="l00006"></a><span class="lineno"> 6</span> </div>
|
||||||
|
<div class="line"><a id="l00007" name="l00007"></a><span class="lineno"><a class="line" href="classHazelnp_1_1FloatValue.html#a6bb35564e3331a3feb57b08caad0df44"> 7</a></span>FloatValue::FloatValue(<span class="keyword">const</span> <span class="keywordtype">long</span> <span class="keywordtype">double</span>& value)</div>
|
||||||
|
<div class="line"><a id="l00008" name="l00008"></a><span class="lineno"> 8</span> :</div>
|
||||||
|
<div class="line"><a id="l00009" name="l00009"></a><span class="lineno"> 9</span> <a class="code hl_class" href="classHazelnp_1_1Value.html">Value</a>(<a class="code hl_enumeration" href="namespaceHazelnp.html#a07b61ac22ce9cd97eceebdf9487f803f">DATA_TYPE</a>::<a class="code hl_enumvalue" href="namespaceHazelnp.html#a07b61ac22ce9cd97eceebdf9487f803fae738c26bf4ce1037fa81b039a915cbf6">FLOAT</a>),</div>
|
||||||
|
<div class="line"><a id="l00010" name="l00010"></a><span class="lineno"> 10</span> value { value }</div>
|
||||||
|
<div class="line"><a id="l00011" name="l00011"></a><span class="lineno"> 11</span>{</div>
|
||||||
|
<div class="line"><a id="l00012" name="l00012"></a><span class="lineno"> 12</span> <span class="keywordflow">return</span>;</div>
|
||||||
|
<div class="line"><a id="l00013" name="l00013"></a><span class="lineno"> 13</span>}</div>
|
||||||
|
<div class="line"><a id="l00014" name="l00014"></a><span class="lineno"> 14</span> </div>
|
||||||
|
<div class="line"><a id="l00015" name="l00015"></a><span class="lineno"><a class="line" href="classHazelnp_1_1FloatValue.html#ab071916339a0d5a266d821ebbc8f12b0"> 15</a></span><a class="code hl_class" href="classHazelnp_1_1Value.html">Value</a>* <a class="code hl_function" href="classHazelnp_1_1FloatValue.html#ab071916339a0d5a266d821ebbc8f12b0">FloatValue::Deepcopy</a>()<span class="keyword"> const</span></div>
|
||||||
|
<div class="line"><a id="l00016" name="l00016"></a><span class="lineno"> 16</span><span class="keyword"></span>{</div>
|
||||||
|
<div class="line"><a id="l00017" name="l00017"></a><span class="lineno"> 17</span> <span class="keywordflow">return</span> <span class="keyword">new</span> <a class="code hl_function" href="classHazelnp_1_1FloatValue.html#a6bb35564e3331a3feb57b08caad0df44">FloatValue</a>(value);</div>
|
||||||
|
<div class="line"><a id="l00018" name="l00018"></a><span class="lineno"> 18</span>}</div>
|
||||||
|
<div class="line"><a id="l00019" name="l00019"></a><span class="lineno"> 19</span> </div>
|
||||||
|
<div class="line"><a id="l00020" name="l00020"></a><span class="lineno"><a class="line" href="classHazelnp_1_1FloatValue.html#a6c9a4b70a7618252f56d9062c483531c"> 20</a></span>std::string <a class="code hl_function" href="classHazelnp_1_1FloatValue.html#a6c9a4b70a7618252f56d9062c483531c">FloatValue::GetAsOsString</a>()<span class="keyword"> const</span></div>
|
||||||
|
<div class="line"><a id="l00021" name="l00021"></a><span class="lineno"> 21</span><span class="keyword"></span>{</div>
|
||||||
|
<div class="line"><a id="l00022" name="l00022"></a><span class="lineno"> 22</span> std::stringstream ss;</div>
|
||||||
|
<div class="line"><a id="l00023" name="l00023"></a><span class="lineno"> 23</span> ss << <span class="stringliteral">"FloatValue: "</span> << value;</div>
|
||||||
|
<div class="line"><a id="l00024" name="l00024"></a><span class="lineno"> 24</span> <span class="keywordflow">return</span> ss.str();</div>
|
||||||
|
<div class="line"><a id="l00025" name="l00025"></a><span class="lineno"> 25</span>}</div>
|
||||||
|
<div class="line"><a id="l00026" name="l00026"></a><span class="lineno"> 26</span> </div>
|
||||||
|
<div class="line"><a id="l00027" name="l00027"></a><span class="lineno"><a class="line" href="classHazelnp_1_1FloatValue.html#a2ad79d8bfe75e45120d1fce132a89b8f"> 27</a></span><span class="keyword">const</span> <span class="keywordtype">long</span> <span class="keywordtype">double</span>& <a class="code hl_function" href="classHazelnp_1_1FloatValue.html#a2ad79d8bfe75e45120d1fce132a89b8f">FloatValue::GetValue</a>()<span class="keyword"> const</span></div>
|
||||||
|
<div class="line"><a id="l00028" name="l00028"></a><span class="lineno"> 28</span><span class="keyword"></span>{</div>
|
||||||
|
<div class="line"><a id="l00029" name="l00029"></a><span class="lineno"> 29</span> <span class="keywordflow">return</span> value;</div>
|
||||||
|
<div class="line"><a id="l00030" name="l00030"></a><span class="lineno"> 30</span>}</div>
|
||||||
|
<div class="line"><a id="l00031" name="l00031"></a><span class="lineno"> 31</span> </div>
|
||||||
|
<div class="line"><a id="l00032" name="l00032"></a><span class="lineno"><a class="line" href="classHazelnp_1_1FloatValue.html#ad0d4c589190fbab7e6c4d8fcc130ac1b"> 32</a></span>FloatValue::operator <span class="keywordtype">long</span> double()<span class="keyword"> const</span></div>
|
||||||
|
<div class="line"><a id="l00033" name="l00033"></a><span class="lineno"> 33</span><span class="keyword"></span>{</div>
|
||||||
|
<div class="line"><a id="l00034" name="l00034"></a><span class="lineno"> 34</span> <span class="keywordflow">return</span> value;</div>
|
||||||
|
<div class="line"><a id="l00035" name="l00035"></a><span class="lineno"> 35</span>}</div>
|
||||||
|
<div class="line"><a id="l00036" name="l00036"></a><span class="lineno"> 36</span> </div>
|
||||||
|
<div class="line"><a id="l00037" name="l00037"></a><span class="lineno"><a class="line" href="classHazelnp_1_1FloatValue.html#ae02de376bbb2b76e0f9d16b1fc4de06d"> 37</a></span>FloatValue::operator double()<span class="keyword"> const</span></div>
|
||||||
|
<div class="line"><a id="l00038" name="l00038"></a><span class="lineno"> 38</span><span class="keyword"></span>{</div>
|
||||||
|
<div class="line"><a id="l00039" name="l00039"></a><span class="lineno"> 39</span> <span class="keywordflow">return</span> (<span class="keywordtype">double</span>)value;</div>
|
||||||
|
<div class="line"><a id="l00040" name="l00040"></a><span class="lineno"> 40</span>}</div>
|
||||||
|
<div class="line"><a id="l00041" name="l00041"></a><span class="lineno"> 41</span> </div>
|
||||||
|
<div class="line"><a id="l00042" name="l00042"></a><span class="lineno"> 42</span> </div>
|
||||||
|
<div class="line"><a id="l00043" name="l00043"></a><span class="lineno"> 43</span> </div>
|
||||||
|
<div class="line"><a id="l00044" name="l00044"></a><span class="lineno"><a class="line" href="classHazelnp_1_1FloatValue.html#a762520d504d4564c48cf3bbefbb0f183"> 44</a></span><span class="keywordtype">long</span> <span class="keywordtype">long</span> <span class="keywordtype">int</span> <a class="code hl_function" href="classHazelnp_1_1FloatValue.html#a762520d504d4564c48cf3bbefbb0f183">FloatValue::GetInt64</a>()<span class="keyword"> const</span></div>
|
||||||
|
<div class="line"><a id="l00045" name="l00045"></a><span class="lineno"> 45</span><span class="keyword"></span>{</div>
|
||||||
|
<div class="line"><a id="l00046" name="l00046"></a><span class="lineno"> 46</span> <span class="keywordflow">return</span> (<span class="keywordtype">long</span> <span class="keywordtype">long</span> <span class="keywordtype">int</span>)value;</div>
|
||||||
|
<div class="line"><a id="l00047" name="l00047"></a><span class="lineno"> 47</span>}</div>
|
||||||
|
<div class="line"><a id="l00048" name="l00048"></a><span class="lineno"> 48</span> </div>
|
||||||
|
<div class="line"><a id="l00049" name="l00049"></a><span class="lineno"><a class="line" href="classHazelnp_1_1FloatValue.html#a565741e80cd99a4d2af861ddc3c2dc99"> 49</a></span><span class="keywordtype">int</span> <a class="code hl_function" href="classHazelnp_1_1FloatValue.html#a565741e80cd99a4d2af861ddc3c2dc99">FloatValue::GetInt32</a>()<span class="keyword"> const</span></div>
|
||||||
|
<div class="line"><a id="l00050" name="l00050"></a><span class="lineno"> 50</span><span class="keyword"></span>{</div>
|
||||||
|
<div class="line"><a id="l00051" name="l00051"></a><span class="lineno"> 51</span> <span class="keywordflow">return</span> (<span class="keywordtype">int</span>)value;</div>
|
||||||
|
<div class="line"><a id="l00052" name="l00052"></a><span class="lineno"> 52</span>}</div>
|
||||||
|
<div class="line"><a id="l00053" name="l00053"></a><span class="lineno"> 53</span> </div>
|
||||||
|
<div class="line"><a id="l00054" name="l00054"></a><span class="lineno"><a class="line" href="classHazelnp_1_1FloatValue.html#add33b370ef691ccb2f0957d0fe4ef6f9"> 54</a></span><span class="keywordtype">long</span> <span class="keywordtype">double</span> <a class="code hl_function" href="classHazelnp_1_1FloatValue.html#add33b370ef691ccb2f0957d0fe4ef6f9">FloatValue::GetFloat64</a>()<span class="keyword"> const</span></div>
|
||||||
|
<div class="line"><a id="l00055" name="l00055"></a><span class="lineno"> 55</span><span class="keyword"></span>{</div>
|
||||||
|
<div class="line"><a id="l00056" name="l00056"></a><span class="lineno"> 56</span> <span class="keywordflow">return</span> value;</div>
|
||||||
|
<div class="line"><a id="l00057" name="l00057"></a><span class="lineno"> 57</span>}</div>
|
||||||
|
<div class="line"><a id="l00058" name="l00058"></a><span class="lineno"> 58</span> </div>
|
||||||
|
<div class="line"><a id="l00059" name="l00059"></a><span class="lineno"><a class="line" href="classHazelnp_1_1FloatValue.html#a1653ab3f4fa1700cf1b618ac6552ea81"> 59</a></span><span class="keywordtype">double</span> <a class="code hl_function" href="classHazelnp_1_1FloatValue.html#a1653ab3f4fa1700cf1b618ac6552ea81">FloatValue::GetFloat32</a>()<span class="keyword"> const</span></div>
|
||||||
|
<div class="line"><a id="l00060" name="l00060"></a><span class="lineno"> 60</span><span class="keyword"></span>{</div>
|
||||||
|
<div class="line"><a id="l00061" name="l00061"></a><span class="lineno"> 61</span> <span class="keywordflow">return</span> (<span class="keywordtype">double</span>)value;</div>
|
||||||
|
<div class="line"><a id="l00062" name="l00062"></a><span class="lineno"> 62</span>}</div>
|
||||||
|
<div class="line"><a id="l00063" name="l00063"></a><span class="lineno"> 63</span> </div>
|
||||||
|
<div class="line"><a id="l00064" name="l00064"></a><span class="lineno"><a class="line" href="classHazelnp_1_1FloatValue.html#afd5d078683f410cb9d450c61f12f250d"> 64</a></span>std::string <a class="code hl_function" href="classHazelnp_1_1FloatValue.html#afd5d078683f410cb9d450c61f12f250d">FloatValue::GetString</a>()<span class="keyword"> const</span></div>
|
||||||
|
<div class="line"><a id="l00065" name="l00065"></a><span class="lineno"> 65</span><span class="keyword"></span>{</div>
|
||||||
|
<div class="line"><a id="l00066" name="l00066"></a><span class="lineno"> 66</span> std::stringstream ss;</div>
|
||||||
|
<div class="line"><a id="l00067" name="l00067"></a><span class="lineno"> 67</span> ss << value;</div>
|
||||||
|
<div class="line"><a id="l00068" name="l00068"></a><span class="lineno"> 68</span> </div>
|
||||||
|
<div class="line"><a id="l00069" name="l00069"></a><span class="lineno"> 69</span> <span class="keywordflow">return</span> ss.str();</div>
|
||||||
|
<div class="line"><a id="l00070" name="l00070"></a><span class="lineno"> 70</span>}</div>
|
||||||
|
<div class="line"><a id="l00071" name="l00071"></a><span class="lineno"> 71</span> </div>
|
||||||
|
<div class="line"><a id="l00072" name="l00072"></a><span class="lineno"><a class="line" href="classHazelnp_1_1FloatValue.html#a60b2698f28f1aacac0b67b6453c89fd1"> 72</a></span><span class="keyword">const</span> std::vector<Value*>& <a class="code hl_function" href="classHazelnp_1_1FloatValue.html#a60b2698f28f1aacac0b67b6453c89fd1">FloatValue::GetList</a>()<span class="keyword"> const</span></div>
|
||||||
|
<div class="line"><a id="l00073" name="l00073"></a><span class="lineno"> 73</span><span class="keyword"></span>{</div>
|
||||||
|
<div class="line"><a id="l00074" name="l00074"></a><span class="lineno"> 74</span> <span class="keywordflow">throw</span> <a class="code hl_class" href="classHazelnp_1_1HazelnuppValueNotConvertibleException.html">HazelnuppValueNotConvertibleException</a>();</div>
|
||||||
|
<div class="line"><a id="l00075" name="l00075"></a><span class="lineno"> 75</span>}</div>
|
||||||
|
<div class="ttc" id="aFloatValue_8h_html"><div class="ttname"><a href="FloatValue_8h.html">FloatValue.h</a></div></div>
|
||||||
|
<div class="ttc" id="aHazelnuppException_8h_html"><div class="ttname"><a href="HazelnuppException_8h.html">HazelnuppException.h</a></div></div>
|
||||||
|
<div class="ttc" id="aclassHazelnp_1_1FloatValue_html_a1653ab3f4fa1700cf1b618ac6552ea81"><div class="ttname"><a href="classHazelnp_1_1FloatValue.html#a1653ab3f4fa1700cf1b618ac6552ea81">Hazelnp::FloatValue::GetFloat32</a></div><div class="ttdeci">double GetFloat32() const override</div><div class="ttdoc">Will return the data as a double.</div><div class="ttdef"><b>Definition:</b> <a href="FloatValue_8cpp_source.html#l00059">FloatValue.cpp:59</a></div></div>
|
||||||
|
<div class="ttc" id="aclassHazelnp_1_1FloatValue_html_a2ad79d8bfe75e45120d1fce132a89b8f"><div class="ttname"><a href="classHazelnp_1_1FloatValue.html#a2ad79d8bfe75e45120d1fce132a89b8f">Hazelnp::FloatValue::GetValue</a></div><div class="ttdeci">const long double & GetValue() const</div><div class="ttdoc">Will return the raw value.</div><div class="ttdef"><b>Definition:</b> <a href="FloatValue_8cpp_source.html#l00027">FloatValue.cpp:27</a></div></div>
|
||||||
|
<div class="ttc" id="aclassHazelnp_1_1FloatValue_html_a565741e80cd99a4d2af861ddc3c2dc99"><div class="ttname"><a href="classHazelnp_1_1FloatValue.html#a565741e80cd99a4d2af861ddc3c2dc99">Hazelnp::FloatValue::GetInt32</a></div><div class="ttdeci">int GetInt32() const override</div><div class="ttdoc">Will return the data as an int.</div><div class="ttdef"><b>Definition:</b> <a href="FloatValue_8cpp_source.html#l00049">FloatValue.cpp:49</a></div></div>
|
||||||
|
<div class="ttc" id="aclassHazelnp_1_1FloatValue_html_a60b2698f28f1aacac0b67b6453c89fd1"><div class="ttname"><a href="classHazelnp_1_1FloatValue.html#a60b2698f28f1aacac0b67b6453c89fd1">Hazelnp::FloatValue::GetList</a></div><div class="ttdeci">const std::vector< Value * > & GetList() const override</div><div class="ttdoc">Throws HazelnuppValueNotConvertibleException.</div><div class="ttdef"><b>Definition:</b> <a href="FloatValue_8cpp_source.html#l00072">FloatValue.cpp:72</a></div></div>
|
||||||
|
<div class="ttc" id="aclassHazelnp_1_1FloatValue_html_a6bb35564e3331a3feb57b08caad0df44"><div class="ttname"><a href="classHazelnp_1_1FloatValue.html#a6bb35564e3331a3feb57b08caad0df44">Hazelnp::FloatValue::FloatValue</a></div><div class="ttdeci">FloatValue(const long double &value)</div><div class="ttdef"><b>Definition:</b> <a href="FloatValue_8cpp_source.html#l00007">FloatValue.cpp:7</a></div></div>
|
||||||
|
<div class="ttc" id="aclassHazelnp_1_1FloatValue_html_a6c9a4b70a7618252f56d9062c483531c"><div class="ttname"><a href="classHazelnp_1_1FloatValue.html#a6c9a4b70a7618252f56d9062c483531c">Hazelnp::FloatValue::GetAsOsString</a></div><div class="ttdeci">std::string GetAsOsString() const override</div><div class="ttdoc">Will return a string suitable for an std::ostream;.</div><div class="ttdef"><b>Definition:</b> <a href="FloatValue_8cpp_source.html#l00020">FloatValue.cpp:20</a></div></div>
|
||||||
|
<div class="ttc" id="aclassHazelnp_1_1FloatValue_html_a762520d504d4564c48cf3bbefbb0f183"><div class="ttname"><a href="classHazelnp_1_1FloatValue.html#a762520d504d4564c48cf3bbefbb0f183">Hazelnp::FloatValue::GetInt64</a></div><div class="ttdeci">long long int GetInt64() const override</div><div class="ttdoc">Will return the data as a long long int.</div><div class="ttdef"><b>Definition:</b> <a href="FloatValue_8cpp_source.html#l00044">FloatValue.cpp:44</a></div></div>
|
||||||
|
<div class="ttc" id="aclassHazelnp_1_1FloatValue_html_ab071916339a0d5a266d821ebbc8f12b0"><div class="ttname"><a href="classHazelnp_1_1FloatValue.html#ab071916339a0d5a266d821ebbc8f12b0">Hazelnp::FloatValue::Deepcopy</a></div><div class="ttdeci">Value * Deepcopy() const override</div><div class="ttdoc">Will return a deeopopy of this object.</div><div class="ttdef"><b>Definition:</b> <a href="FloatValue_8cpp_source.html#l00015">FloatValue.cpp:15</a></div></div>
|
||||||
|
<div class="ttc" id="aclassHazelnp_1_1FloatValue_html_add33b370ef691ccb2f0957d0fe4ef6f9"><div class="ttname"><a href="classHazelnp_1_1FloatValue.html#add33b370ef691ccb2f0957d0fe4ef6f9">Hazelnp::FloatValue::GetFloat64</a></div><div class="ttdeci">long double GetFloat64() const override</div><div class="ttdoc">Will return the data as a long double.</div><div class="ttdef"><b>Definition:</b> <a href="FloatValue_8cpp_source.html#l00054">FloatValue.cpp:54</a></div></div>
|
||||||
|
<div class="ttc" id="aclassHazelnp_1_1FloatValue_html_afd5d078683f410cb9d450c61f12f250d"><div class="ttname"><a href="classHazelnp_1_1FloatValue.html#afd5d078683f410cb9d450c61f12f250d">Hazelnp::FloatValue::GetString</a></div><div class="ttdeci">std::string GetString() const override</div><div class="ttdoc">Will return the data as a string.</div><div class="ttdef"><b>Definition:</b> <a href="FloatValue_8cpp_source.html#l00064">FloatValue.cpp:64</a></div></div>
|
||||||
|
<div class="ttc" id="aclassHazelnp_1_1HazelnuppValueNotConvertibleException_html"><div class="ttname"><a href="classHazelnp_1_1HazelnuppValueNotConvertibleException.html">Hazelnp::HazelnuppValueNotConvertibleException</a></div><div class="ttdoc">Gets thrown when an attempt is made to retrieve the wrong data type from a value, when the value not ...</div><div class="ttdef"><b>Definition:</b> <a href="HazelnuppException_8h_source.html#l00038">HazelnuppException.h:39</a></div></div>
|
||||||
|
<div class="ttc" id="aclassHazelnp_1_1Value_html"><div class="ttname"><a href="classHazelnp_1_1Value.html">Hazelnp::Value</a></div><div class="ttdoc">Abstract class for values.</div><div class="ttdef"><b>Definition:</b> <a href="Value_8h_source.html#l00010">Value.h:11</a></div></div>
|
||||||
|
<div class="ttc" id="anamespaceHazelnp_html"><div class="ttname"><a href="namespaceHazelnp.html">Hazelnp</a></div><div class="ttdef"><b>Definition:</b> <a href="CmdArgsInterface_8h_source.html#l00009">CmdArgsInterface.h:10</a></div></div>
|
||||||
|
<div class="ttc" id="anamespaceHazelnp_html_a07b61ac22ce9cd97eceebdf9487f803f"><div class="ttname"><a href="namespaceHazelnp.html#a07b61ac22ce9cd97eceebdf9487f803f">Hazelnp::DATA_TYPE</a></div><div class="ttdeci">DATA_TYPE</div><div class="ttdoc">The different data types a paramater can be.</div><div class="ttdef"><b>Definition:</b> <a href="DataType_8h_source.html#l00008">DataType.h:9</a></div></div>
|
||||||
|
<div class="ttc" id="anamespaceHazelnp_html_a07b61ac22ce9cd97eceebdf9487f803fae738c26bf4ce1037fa81b039a915cbf6"><div class="ttname"><a href="namespaceHazelnp.html#a07b61ac22ce9cd97eceebdf9487f803fae738c26bf4ce1037fa81b039a915cbf6">Hazelnp::DATA_TYPE::FLOAT</a></div><div class="ttdeci">@ FLOAT</div></div>
|
||||||
|
</div><!-- fragment --></div><!-- contents -->
|
||||||
|
<!-- start footer part -->
|
||||||
|
<hr class="footer"/><address class="footer"><small>
|
||||||
|
Generated on Thu Apr 28 2022 12:05:07 for Leonetienne/Hazelnupp by <a href="https://www.doxygen.org/index.html"><img class="footer" src="doxygen.svg" width="104" height="31" alt="doxygen"/></a> 1.9.3
|
||||||
|
</small></address>
|
||||||
|
</body>
|
||||||
|
</html>
|
128
Hazelnupp/doxygen/build/FloatValue_8h.html
Normal file
128
Hazelnupp/doxygen/build/FloatValue_8h.html
Normal file
@ -0,0 +1,128 @@
|
|||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||||
|
<head>
|
||||||
|
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=11"/>
|
||||||
|
<meta name="generator" content="Doxygen 1.9.3"/>
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
||||||
|
<title>Leonetienne/Hazelnupp: include/Hazelnupp/FloatValue.h File Reference</title>
|
||||||
|
<link href="tabs.css" rel="stylesheet" type="text/css"/>
|
||||||
|
<script type="text/javascript" src="jquery.js"></script>
|
||||||
|
<script type="text/javascript" src="dynsections.js"></script>
|
||||||
|
<link href="search/search.css" rel="stylesheet" type="text/css"/>
|
||||||
|
<script type="text/javascript" src="search/searchdata.js"></script>
|
||||||
|
<script type="text/javascript" src="search/search.js"></script>
|
||||||
|
<script type="text/x-mathjax-config">
|
||||||
|
MathJax.Hub.Config({
|
||||||
|
extensions: ["tex2jax.js"],
|
||||||
|
jax: ["input/TeX","output/HTML-CSS"],
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
<script type="text/javascript" async="async" src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.5/MathJax.js"></script>
|
||||||
|
<link href="doxygen.css" rel="stylesheet" type="text/css" />
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
|
||||||
|
<div id="titlearea">
|
||||||
|
<table cellspacing="0" cellpadding="0">
|
||||||
|
<tbody>
|
||||||
|
<tr id="projectrow">
|
||||||
|
<td id="projectalign">
|
||||||
|
<div id="projectname">Leonetienne/Hazelnupp
|
||||||
|
</div>
|
||||||
|
<div id="projectbrief">Simple, easy to use, command line parameter interface</div>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<!-- end header part -->
|
||||||
|
<!-- Generated by Doxygen 1.9.3 -->
|
||||||
|
<script type="text/javascript">
|
||||||
|
/* @license magnet:?xt=urn:btih:d3d9a9a6595521f9666a5e94cc830dab83b65699&dn=expat.txt MIT */
|
||||||
|
var searchBox = new SearchBox("searchBox", "search",'Search','.html');
|
||||||
|
/* @license-end */
|
||||||
|
</script>
|
||||||
|
<script type="text/javascript" src="menudata.js"></script>
|
||||||
|
<script type="text/javascript" src="menu.js"></script>
|
||||||
|
<script type="text/javascript">
|
||||||
|
/* @license magnet:?xt=urn:btih:d3d9a9a6595521f9666a5e94cc830dab83b65699&dn=expat.txt MIT */
|
||||||
|
$(function() {
|
||||||
|
initMenu('',true,false,'search.php','Search');
|
||||||
|
$(document).ready(function() { init_search(); });
|
||||||
|
});
|
||||||
|
/* @license-end */
|
||||||
|
</script>
|
||||||
|
<div id="main-nav"></div>
|
||||||
|
<!-- window showing the filter options -->
|
||||||
|
<div id="MSearchSelectWindow"
|
||||||
|
onmouseover="return searchBox.OnSearchSelectShow()"
|
||||||
|
onmouseout="return searchBox.OnSearchSelectHide()"
|
||||||
|
onkeydown="return searchBox.OnSearchSelectKey(event)">
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- iframe showing the search results (closed by default) -->
|
||||||
|
<div id="MSearchResultsWindow">
|
||||||
|
<iframe src="javascript:void(0)" frameborder="0"
|
||||||
|
name="MSearchResults" id="MSearchResults">
|
||||||
|
</iframe>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="nav-path" class="navpath">
|
||||||
|
<ul>
|
||||||
|
<li class="navelem"><a class="el" href="dir_d44c64559bbebec7f509842c48db8b23.html">include</a></li><li class="navelem"><a class="el" href="dir_326d56889c0e0cda5fb508341c73d89d.html">Hazelnupp</a></li> </ul>
|
||||||
|
</div>
|
||||||
|
</div><!-- top -->
|
||||||
|
<div class="header">
|
||||||
|
<div class="summary">
|
||||||
|
<a href="#nested-classes">Classes</a> |
|
||||||
|
<a href="#namespaces">Namespaces</a> </div>
|
||||||
|
<div class="headertitle"><div class="title">FloatValue.h File Reference</div></div>
|
||||||
|
</div><!--header-->
|
||||||
|
<div class="contents">
|
||||||
|
<div class="textblock"><code>#include "<a class="el" href="Value_8h_source.html">Value.h</a>"</code><br />
|
||||||
|
<code>#include <ostream></code><br />
|
||||||
|
</div><div class="textblock"><div class="dynheader">
|
||||||
|
Include dependency graph for FloatValue.h:</div>
|
||||||
|
<div class="dyncontent">
|
||||||
|
<div class="center"><img src="FloatValue_8h__incl.png" border="0" usemap="#ainclude_2Hazelnupp_2FloatValue_8h" alt=""/></div>
|
||||||
|
<map name="ainclude_2Hazelnupp_2FloatValue_8h" id="ainclude_2Hazelnupp_2FloatValue_8h">
|
||||||
|
<area shape="rect" title=" " alt="" coords="87,5,291,32"/>
|
||||||
|
<area shape="rect" href="Value_8h.html" title=" " alt="" coords="121,80,187,107"/>
|
||||||
|
<area shape="rect" title=" " alt="" coords="199,155,269,181"/>
|
||||||
|
<area shape="rect" href="DataType_8h.html" title=" " alt="" coords="5,155,92,181"/>
|
||||||
|
<area shape="rect" title=" " alt="" coords="117,155,175,181"/>
|
||||||
|
<area shape="rect" title=" " alt="" coords="21,229,76,256"/>
|
||||||
|
</map>
|
||||||
|
</div>
|
||||||
|
</div><div class="textblock"><div class="dynheader">
|
||||||
|
This graph shows which files directly or indirectly include this file:</div>
|
||||||
|
<div class="dyncontent">
|
||||||
|
<div class="center"><img src="FloatValue_8h__dep__incl.png" border="0" usemap="#ainclude_2Hazelnupp_2FloatValue_8hdep" alt=""/></div>
|
||||||
|
<map name="ainclude_2Hazelnupp_2FloatValue_8hdep" id="ainclude_2Hazelnupp_2FloatValue_8hdep">
|
||||||
|
<area shape="rect" title=" " alt="" coords="78,5,282,32"/>
|
||||||
|
<area shape="rect" href="CmdArgsInterface_8cpp.html" title=" " alt="" coords="5,80,179,107"/>
|
||||||
|
<area shape="rect" href="FloatValue_8cpp.html" title=" " alt="" coords="203,80,333,107"/>
|
||||||
|
</map>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<p><a href="FloatValue_8h_source.html">Go to the source code of this file.</a></p>
|
||||||
|
<table class="memberdecls">
|
||||||
|
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a id="nested-classes" name="nested-classes"></a>
|
||||||
|
Classes</h2></td></tr>
|
||||||
|
<tr class="memitem:"><td class="memItemLeft" align="right" valign="top">class  </td><td class="memItemRight" valign="bottom"><a class="el" href="classHazelnp_1_1FloatValue.html">Hazelnp::FloatValue</a></td></tr>
|
||||||
|
<tr class="memdesc:"><td class="mdescLeft"> </td><td class="mdescRight">Specializations for floating point values (uses long double) <a href="classHazelnp_1_1FloatValue.html#details">More...</a><br /></td></tr>
|
||||||
|
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr>
|
||||||
|
</table><table class="memberdecls">
|
||||||
|
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a id="namespaces" name="namespaces"></a>
|
||||||
|
Namespaces</h2></td></tr>
|
||||||
|
<tr class="memitem:namespaceHazelnp"><td class="memItemLeft" align="right" valign="top">namespace  </td><td class="memItemRight" valign="bottom"><a class="el" href="namespaceHazelnp.html">Hazelnp</a></td></tr>
|
||||||
|
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr>
|
||||||
|
</table>
|
||||||
|
</div><!-- contents -->
|
||||||
|
<!-- start footer part -->
|
||||||
|
<hr class="footer"/><address class="footer"><small>
|
||||||
|
Generated on Thu Apr 28 2022 12:05:07 for Leonetienne/Hazelnupp by <a href="https://www.doxygen.org/index.html"><img class="footer" src="doxygen.svg" width="104" height="31" alt="doxygen"/></a> 1.9.3
|
||||||
|
</small></address>
|
||||||
|
</body>
|
||||||
|
</html>
|
5
Hazelnupp/doxygen/build/FloatValue_8h__dep__incl.map
Normal file
5
Hazelnupp/doxygen/build/FloatValue_8h__dep__incl.map
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
<map id="include/Hazelnupp/FloatValue.h" name="include/Hazelnupp/FloatValue.h">
|
||||||
|
<area shape="rect" id="node1" title=" " alt="" coords="78,5,282,32"/>
|
||||||
|
<area shape="rect" id="node2" href="$CmdArgsInterface_8cpp.html" title=" " alt="" coords="5,80,179,107"/>
|
||||||
|
<area shape="rect" id="node3" href="$FloatValue_8cpp.html" title=" " alt="" coords="203,80,333,107"/>
|
||||||
|
</map>
|
1
Hazelnupp/doxygen/build/FloatValue_8h__dep__incl.md5
Normal file
1
Hazelnupp/doxygen/build/FloatValue_8h__dep__incl.md5
Normal file
@ -0,0 +1 @@
|
|||||||
|
190ffc3c18bffef926e9213d894bb2ac
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user