Refactoring of repository, improved CMake, fixed compile issues on modern gcc, added README

This commit is contained in:
Michele Adduci
2020-06-22 06:12:34 +02:00
parent f8d7d2eede
commit 4ad00608e3
175 changed files with 60960 additions and 307 deletions

73
.clang-format Normal file
View File

@@ -0,0 +1,73 @@
AccessModifierOffset: -2
AlignAfterOpenBracket: Align
AlignConsecutiveAssignments: true
AlignConsecutiveDeclarations: true
AlignEscapedNewlinesLeft: Right
AlignOperands: true
AlignTrailingComments: true
AllowAllParametersOfDeclarationOnNextLine: false
AllowShortBlocksOnASingleLine: false
AllowShortCaseLabelsOnASingleLine: false
AllowShortFunctionsOnASingleLine: Empty
AllowShortIfStatementsOnASingleLine: false
AllowShortLoopsOnASingleLine: false
AlwaysBreakAfterReturnType: None
AlwaysBreakBeforeMultilineStrings: false
AlwaysBreakTemplateDeclarations: true
BinPackArguments: true
BinPackParameters: true
BreakBeforeBraces: Custom
BraceWrapping:
AfterClass: true
AfterControlStatement: true
AfterEnum: true
AfterFunction: true
AfterNamespace: true
AfterStruct: true
AfterUnion: true
AfterExternBlock: true
BeforeCatch: true
BeforeElse: true
SplitEmptyFunction: false
SplitEmptyRecord: false
SplitEmptyNamespace: false
BreakBeforeBinaryOperators: All
BreakBeforeTernaryOperators: true
BreakConstructorInitializers: BeforeColon
BreakStringLiterals: false
ColumnLimit: 160
CompactNamespaces: true
ConstructorInitializerAllOnOneLineOrOnePerLine: false
ConstructorInitializerIndentWidth: 0
ContinuationIndentWidth: 2
Cpp11BracedListStyle: true
DerivePointerAlignment: false
FixNamespaceComments: true
IncludeBlocks: Preserve
IndentCaseLabels: false
IndentPPDirectives: AfterHash
IndentWidth: 2
IndentWrappedFunctionNames: true
KeepEmptyLinesAtTheStartOfBlocks: false
Language: Cpp
MaxEmptyLinesToKeep: 1
NamespaceIndentation: Inner
PenaltyBreakBeforeFirstCallParameter: 19937
PenaltyReturnTypeOnItsOwnLine: 19937
PointerAlignment: Left
ReflowComments: true
SortIncludes: true
SortUsingDeclarations: true
SpaceAfterCStyleCast: false
SpaceAfterTemplateKeyword: true
SpaceBeforeAssignmentOperators: true
SpaceBeforeParens: ControlStatements
SpaceInEmptyParentheses: false
SpacesBeforeTrailingComments: 1
SpacesInAngles: false
SpacesInCStyleCastParentheses: false
SpacesInParentheses: false
SpacesInSquareBrackets: false
Standard: Cpp11
TabWidth: 2
UseTab: Never

View File

@@ -1,3 +1,8 @@
2020-06-22 madduci
added support for conan, reorganisation of code
update codebase to c++17
updated CMake project
added LICENSE, CONTRIBUTORS files
2013-08-29 roland_schwarz
SVN commit test
2013-04-03 roland_schwarz

View File

@@ -1,283 +1,225 @@
# $Id: CMakeLists.txt 332 2013-04-03 14:24:08Z roland_schwarz $
# This is the CMake project file for the libe57 reference implementation
# This is an update version of the CMake project file for the libe57 reference
# implementation, with support for Conan targets, to make the dependency
# management easier and reproducible on all the supported platforms
#
# Copyright 2010-2012 Roland Schwarz, Riegl LMS GmbH
# Original work Copyright 2010-2012 Roland Schwarz, Riegl LMS GmbH
# Modified work Copyright 2020 Michele Adduci <adduci@tutanota.com>
#
# Permission is hereby granted, free of charge, to any person or organization
# obtaining a copy of the software and accompanying documentation covered by
# this license (the "Software") to use, reproduce, display, distribute,
# execute, and transmit the Software, and to prepare derivative works of the
# Software, and to permit third-parties to whom the Software is furnished to
# do so, all subject to the following:
# this license (the "Software") to use, reproduce, display, distribute, execute,
# and transmit the Software, and to prepare derivative works of the Software,
# and to permit third-parties to whom the Software is furnished to do so, all
# subject to the following:
#
# The copyright notices in the Software and this entire statement, including
# the above license grant, this restriction and the following disclaimer,
# must be included in all copies of the Software, in whole or in part, and
# all derivative works of the Software, unless such copies or derivative
# works are solely in the form of machine-executable object code generated by
# a source language processor.
# The copyright notices in the Software and this entire statement, including the
# above license grant, this restriction and the following disclaimer, must be
# included in all copies of the Software, in whole or in part, and all
# derivative works of the Software, unless such copies or derivative works are
# solely in the form of machine-executable object code generated by a source
# language processor.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT
# SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE
# FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE,
# SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE FOR
# ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE,
# ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
# DEALINGS IN THE SOFTWARE.
#
# Requirements:
# Xerces library: http://xerces.apache.org/
# Boost library: http://www.boost.org
# Notes:
# Since there is not standard cmake module to find the xerces library
# we provide one with this distribution. It should be able to find
# the library from the XERCES_ROOT cmake variable. Standard layout, as
# with the binary packages from apache is assumed.
# If you find any errors or have suggestion to improve the build script:
# patches are most welcome! Please send them to the development mailing list.
# Requirements:
# * Xerces library: http://xerces.apache.org/
# * Boost library: http://www.boost.org
#
# Notes: Since there is not standard cmake module to find the xerces library we
# provide one with this distribution. It should be able to find the library from
# the XERCES_ROOT cmake variable. Standard layout, as with the binary packages
# from apache is assumed. If you find any errors or have suggestion to improve
# the build script: patches are most welcome!
cmake_minimum_required(VERSION 3.15.0 FATAL_ERROR)
cmake_minimum_required(VERSION 2.8.2)
# Enables the MSVC_RUNTIME_LIBRARY property on targets
cmake_policy(SET CMP0091 NEW)
# Override flags to enable prepare for linking to static runtime
set(CMAKE_USER_MAKE_RULES_OVERRIDE ${CMAKE_CURRENT_SOURCE_DIR}/cmake/c_flag_overrides.cmake)
set(CMAKE_USER_MAKE_RULES_OVERRIDE_CXX ${CMAKE_CURRENT_SOURCE_DIR}/cmake/cxx_flag_overrides.cmake)
project(openE57 VERSION 1.2.0 LANGUAGES C CXX DESCRIPTION "openE57 is a library for handling e57 files")
set(CMAKE_CXX_STANDARD 17)
set(CMAKE_CXX_STANDARD_REQUIRED TRUE)
set(CMAKE_EXPORT_COMPILE_COMMANDS TRUE)
set(CMAKE_SKIP_BUILD_RPATH FALSE)
set(CMAKE_BUILD_WITH_INSTALL_RPATH FALSE)
set(CMAKE_INSTALL_RPATH_USE_LINK_PATH TRUE)
set(CMAKE_INSTALL_PREFIX ${CMAKE_BINARY_DIR}/redist-${PROJECT_NAME}-v${PROJECT_VERSION})
list(FIND CMAKE_PLATFORM_IMPLICIT_LINK_DIRECTORIES "${CMAKE_INSTALL_PREFIX}/lib" isSystemDir)
if("${isSystemDir}" STREQUAL "-1")
set(CMAKE_INSTALL_RPATH "${CMAKE_INSTALL_PREFIX}/lib")
endif("${isSystemDir}" STREQUAL "-1")
option(BUILD_EXAMPLES "Build e57 examples" FALSE)
option(BUILD_TOOLS "Build e57 tools" FALSE)
option(BUILD_TESTS "Build e57 tests" FALSE)
option(BUILD_SHARED_LIBS "Build e57 shared libraries" FALSE)
option(BUILD_WITH_MT "Build e57 libraries as MultiThreaded DLL" FALSE)
if(BUILD_SHARED_LIBS)
message(FATAL_ERROR "Shared Libraries are not supported due to missing exported symbols")
else(BUILD_SHARED_LIBS)
set(LIBRARY_TYPE STATIC)
endif()
if(EXISTS ${CMAKE_BINARY_DIR}/conanbuildinfo.cmake)
include(${CMAKE_BINARY_DIR}/conanbuildinfo.cmake)
conan_basic_setup(TARGETS)
endif()
# Set a private module find path
set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} "${CMAKE_SOURCE_DIR}/cmake/Modules/")
project(E57RefImpl)
include(GNUInstallDirs)
include(CMakePackageConfigHelpers)
include(InstallRequiredSystemLibraries)
include(GenerateExportHeader)
include(${CMAKE_SOURCE_DIR}/cmake/compiler_options.cmake)
include(${CMAKE_SOURCE_DIR}/cmake/dependencies.cmake)
# developer adjustable version numbers
set(${PROJECT_NAME}_MAJOR_VERSION 1)
set(${PROJECT_NAME}_MINOR_VERSION 1)
set(CONFIG_PACKAGE_INSTALL_DIR lib/cmake/${PROJECT_NAME})
include(Tags)
# propose a default installation directory
if(CMAKE_INSTALL_PREFIX_INITIALIZED_TO_DEFAULT)
string(REGEX REPLACE "/${PROJECT_NAME}" "" CMAKE_INSTALL_PREFIX ${CMAKE_INSTALL_PREFIX})
set(T_ ${PROJECT_NAME})
set(T_ ${T_}-${${PROJECT_NAME}_MAJOR_VERSION})
set(T_ ${T_}.${${PROJECT_NAME}_MINOR_VERSION})
set(T_ ${T_}.${${PROJECT_NAME}_BUILD_VERSION})
set(T_ ${T_}-${${PROJECT_NAME}_BUILD_TAG})
set(CMAKE_INSTALL_PREFIX ${CMAKE_INSTALL_PREFIX}/${T_}
CACHE PATH
"Install path prefix, prepended onto install directories."
FORCE
)
endif(CMAKE_INSTALL_PREFIX_INITIALIZED_TO_DEFAULT)
find_package(Threads REQUIRED)
# Find the Boost and Xerces libraries
set(Boost_USE_STATIC_LIBS ON)
set(Boost_USE_STATIC_RUNTIME ON)
set(Boost_USE_MULTITHREADED ON)
find_package(Boost
COMPONENTS
program_options
system
thread
filesystem
QUIET
)
if (NOT Boost_FOUND)
set(BOOST_ROOT CACHE PATH "Location of the boost root directory" )
message(FATAL_ERROR
"Unable to find boost library.
Please set the BOOST_ROOT to point to the boost distribution files."
)
endif(NOT Boost_FOUND)
set(Xerces_USE_STATIC_LIBS On)
find_package(Xerces QUIET)
if (NOT Xerces_FOUND)
set(XERCES_ROOT CACHE PATH "Location of the xerces library")
message(FATAL_ERROR
"Unable to find xerces library.
Please set the the XERCES_ROOT to point to the root of the xerces directory."
)
endif (NOT Xerces_FOUND)
set(XML_LIBRARIES ${Xerces_LIBRARY})
set(XML_INCLUDE_DIRS ${Xerces_INCLUDE_DIR})
if (${CMAKE_SYSTEM_NAME} STREQUAL "Linux")
add_definitions(-DLINUX)
find_package(ICU REQUIRED)
set(XML_LIBRARIES ${XML_LIBRARIES} ${ICU_LIBRARIES})
set(XML_INCLUDE_DIRS ${XML_INCLUDE_DIRS} ${ICU_INCLUDE_DIRS})
elseif(${CMAKE_SYSTEM_NAME} STREQUAL "Windows")
add_definitions(-DWINDOWS)
endif()
add_definitions(${Boost_LIB_DIAGNOSTIC_DEFINITIONS})
add_definitions(-DBOOST_ALL_NO_LIB -DXERCES_STATIC_LIBRARY)
add_definitions(-DE57_REFIMPL_REVISION_ID=${PROJECT_NAME}-${${PROJECT_NAME}_MAJOR_VERSION}.${${PROJECT_NAME}_MINOR_VERSION}.${${PROJECT_NAME}_BUILD_VERSION}-${${PROJECT_NAME}_BUILD_TAG})
configure_file (
"${PROJECT_SOURCE_DIR}/include/config.h.in"
"${PROJECT_BINARY_DIR}/include/config.h"
)
include_directories(
${PROJECT_BINARY_DIR}/include
include
include/time_conversion
src/refimpl
${XML_INCLUDE_DIRS}
${Boost_INCLUDE_DIR}
)
link_directories(
${Boost_LIBRARY_DIRS}
)
list(APPEND compiler_definitions
E57_REFIMPL_REVISION_ID=${PROJECT_NAME}-${PROJECT_VERSION})
configure_file("${PROJECT_SOURCE_DIR}/include/config.h.in"
"${PROJECT_BINARY_DIR}/include/config.h")
#
# The reference implementation
# The main library
#
add_library(
${PROJECT_NAME} ${LIBRARY_TYPE}
${CMAKE_SOURCE_DIR}/src/E57Simple.cpp
${CMAKE_SOURCE_DIR}/src/E57SimpleImpl.cpp
${CMAKE_SOURCE_DIR}/src/E57Foundation.cpp
${CMAKE_SOURCE_DIR}/src/E57FoundationImpl.cpp
${CMAKE_SOURCE_DIR}/include/openE57/impl/E57FoundationImpl.h
${CMAKE_SOURCE_DIR}/include/openE57/impl/E57SimpleImpl.h
${CMAKE_SOURCE_DIR}/include/openE57/E57Foundation.h
${CMAKE_SOURCE_DIR}/include/openE57/E57Simple.h)
add_library( E57RefImpl STATIC
src/refimpl/E57Foundation.cpp
src/refimpl/E57FoundationImpl.cpp
src/refimpl/E57FoundationImpl.h
include/E57Foundation.h
)
set_target_properties( E57RefImpl
PROPERTIES DEBUG_POSTFIX "-d"
generate_export_header(${PROJECT_NAME})
set_target_properties(${PROJECT_NAME} PROPERTIES
DEBUG_POSTFIX "-d"
MSVC_RUNTIME_LIBRARY "${MSVC_RUNTIME_TYPE}")
target_compile_options(${PROJECT_NAME} PUBLIC ${compiler_options})
target_compile_definitions(${PROJECT_NAME} PUBLIC ${compiler_definitions})
target_link_options(${PROJECT_NAME} PUBLIC ${linker_flags})
target_include_directories(${PROJECT_NAME}
PRIVATE
$<BUILD_INTERFACE:${PROJECT_BINARY_DIR}/include>
${CMAKE_SOURCE_DIR}/include
${XML_INCLUDE_DIRS}
${Boost_INCLUDE_DIR}
)
#
# Files for LAS format support
#
target_link_libraries(${PROJECT_NAME} PUBLIC ${Boost_LIBRARY_DIRS} ${XML_LIBRARIES})
add_library( LASReader STATIC
src/LASReader/LASReader.cpp
include/LASReader.h
#
# Library for LAS I/O support
#
add_library(LASReader ${LIBRARY_TYPE}
${CMAKE_SOURCE_DIR}/src/LAS/LASReader.cpp
${CMAKE_SOURCE_DIR}/include/openE57/LAS/LASReader.h)
set_target_properties(LASReader PROPERTIES
DEBUG_POSTFIX "-d"
MSVC_RUNTIME_LIBRARY "${MSVC_RUNTIME_TYPE}")
target_compile_options(LASReader PUBLIC ${compiler_options})
target_compile_definitions(LASReader PUBLIC ${compiler_definitions})
target_link_options(LASReader PUBLIC ${linker_flags})
target_include_directories(LASReader
PRIVATE
$<BUILD_INTERFACE:${PROJECT_BINARY_DIR}/include>
${CMAKE_SOURCE_DIR}/include
${XML_INCLUDE_DIRS}
${Boost_INCLUDE_DIR}
)
target_link_libraries(LASReader PUBLIC ${Boost_LIBRARY_DIRS} ${XML_LIBRARIES})
#
# Time conversion utilities
#
add_library(time_conversion ${LIBRARY_TYPE}
${CMAKE_SOURCE_DIR}/src/time_conversion/time_conversion.c
${CMAKE_SOURCE_DIR}/include/openE57/time_conversion/time_conversion.h
${CMAKE_SOURCE_DIR}/include/openE57/time_conversion/basictypes.h
${CMAKE_SOURCE_DIR}/include/openE57/time_conversion/constants.h
${CMAKE_SOURCE_DIR}/include/openE57/time_conversion/gnss_error.h)
add_library( time_conversion STATIC
src/time_conversion/time_conversion.c
include/time_conversion/time_conversion.h
include/time_conversion/basictypes.h
include/time_conversion/constants.h
include/time_conversion/gnss_error.h
set_target_properties(time_conversion PROPERTIES
DEBUG_POSTFIX "-d"
MSVC_RUNTIME_LIBRARY "${MSVC_RUNTIME_TYPE}")
target_compile_options(time_conversion PUBLIC ${compiler_options})
target_compile_definitions(time_conversion PUBLIC ${compiler_definitions})
target_link_options(time_conversion PUBLIC ${linker_flags})
target_include_directories(time_conversion
PRIVATE
$<BUILD_INTERFACE:${PROJECT_BINARY_DIR}/include>
${CMAKE_SOURCE_DIR}/include
)
#
# Example programs
#
add_executable( DemoWrite01
src/examples/DemoWrite01.cpp
)
target_link_libraries( DemoWrite01
E57RefImpl
target_link_libraries(time_conversion
PUBLIC
${Boost_LIBRARY_DIRS}
${XML_LIBRARIES}
${CMAKE_THREAD_LIBS_INIT}
)
add_executable( DemoRead01
src/examples/DemoRead01.cpp
)
target_link_libraries( DemoRead01
E57RefImpl
${XML_LIBRARIES}
${CMAKE_THREAD_LIBS_INIT}
$<$<OR:$<C_COMPILER_ID:GNU>,$<C_COMPILER_ID:Clang>>:dl>
$<$<OR:$<C_COMPILER_ID:GNU>,$<C_COMPILER_ID:Clang>>:m>
$<$<OR:$<C_COMPILER_ID:GNU>,$<C_COMPILER_ID:Clang>>:c>
)
#
# E57-4 Tools
#
if(${BUILD_EXAMPLES})
add_subdirectory(${CMAKE_SOURCE_DIR}/examples)
endif()
add_executable( las2e57
src/tools/las2e57.cpp
)
target_link_libraries( las2e57
E57RefImpl
if(${BUILD_TESTS})
add_subdirectory(${CMAKE_SOURCE_DIR}/tests)
endif()
if(${BUILD_TOOLS})
add_subdirectory(${CMAKE_SOURCE_DIR}/tools)
endif()
#
# Install Artifacts
#
install(
TARGETS
${PROJECT_NAME}
LASReader
time_conversion
${XML_LIBRARIES}
${CMAKE_THREAD_LIBS_INIT}
)
add_executable( e57fields
src/tools/e57fields.cpp
)
target_link_libraries( e57fields
E57RefImpl
${XML_LIBRARIES}
${CMAKE_THREAD_LIBS_INIT}
)
add_executable( e57xmldump
src/tools/e57xmldump.cpp
)
target_link_libraries( e57xmldump
E57RefImpl
${XML_LIBRARIES}
${CMAKE_THREAD_LIBS_INIT}
)
add_executable( e57validate
src/tools/e57validate.cpp
)
target_link_libraries( e57validate
E57RefImpl
${XML_LIBRARIES}
${CMAKE_THREAD_LIBS_INIT}
)
add_executable( e57unpack
src/tools/e57unpack.cpp
)
target_link_libraries( e57unpack
E57RefImpl
${XML_LIBRARIES}
${Boost_LIBRARIES}
${CMAKE_THREAD_LIBS_INIT}
)
#
# Install section
#
RUNTIME DESTINATION bin
ARCHIVE DESTINATION lib)
install(
TARGETS
E57RefImpl
e57fields
e57xmldump
e57unpack
e57validate
las2e57
RUNTIME DESTINATION bin
ARCHIVE DESTINATION lib
)
install(
FILES
include/E57Foundation.h
DESTINATION include/e57
)
FILES
${CMAKE_SOURCE_DIR}/include/openE57/E57Foundation.h
${CMAKE_SOURCE_DIR}/include/openE57/E57Simple.h
${CMAKE_BINARY_DIR}/opene57_export.h
DESTINATION
include/e57)
install(
FILES
CHANGES.TXT
README.TXT
src/refimpl/E57RefImplConfig.cmake
DESTINATION .
)
install(FILES
${CMAKE_SOURCE_DIR}/CHANGES.TXT
DESTINATION .)
#include (InstallRequiredSystemLibraries)
set(CPACK_PACKAGE_VENDOR "Michele Adduci <adduci@tutanota.com>")
set(CPACK_PACKAGE_VERSION_MAJOR "${${PROJECT_NAME}_MAJOR_VERSION}")
set(CPACK_PACKAGE_VERSION_MINOR "${${PROJECT_NAME}_MINOR_VERSION}")
set(CPACK_PACKAGE_VERSION_PATCH "${${PROJECT_NAME}_BUILD_VERSION}")
set(CPACK_SYSTEM_NAME "${${PROJECT_NAME}_BUILD_TAG}")
set(CPACK_GENERATOR "ZIP")
set(CPACK_STRIP_FILES "TRUE")
set (CPACK_PACKAGE_VENDOR "Riegl LMS GmbH")
set (CPACK_PACKAGE_VERSION_MAJOR "${${PROJECT_NAME}_MAJOR_VERSION}")
set (CPACK_PACKAGE_VERSION_MINOR "${${PROJECT_NAME}_MINOR_VERSION}")
set (CPACK_PACKAGE_VERSION_PATCH "${${PROJECT_NAME}_BUILD_VERSION}")
set (CPACK_SYSTEM_NAME "${${PROJECT_NAME}_BUILD_TAG}")
set (CPACK_GENERATOR "ZIP")
set (CPACK_STRIP_FILES "TRUE")
include (CPack)
include(CPack)

9
CONTRIBUTORS.txt Normal file
View File

@@ -0,0 +1,9 @@
Contributors
-------------
This is the list of contributors to this project source code, in alphabetical order.
- Kevin Ackley (kackley@e57consulting.com)
- Michele Adduci (adduci@tutanota.com)
- Roland Schwarz (rschwarz@riegl.co.at)
- Stan Coleby (stan.coleby@gmail.com)

11
LICENSE Normal file
View File

@@ -0,0 +1,11 @@
MIT License
openE57
Copyright (c) 2020 Michele Adduci (adduci@tutanota.com)
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

31
LICENSE.libE57 Normal file
View File

@@ -0,0 +1,31 @@
# E57 Software Licenses
## E57 Foundation API
Copyright 2009 - 2010 Kevin Ackley (kackley@e57consulting.com), All Rights Reserved.
Permission is hereby granted, free of charge, to any person or organization obtaining a copy of the software and accompanying documentation covered by this license (the "Software") to use, reproduce, display, distribute, execute, and transmit the Software, and to prepare derivative works of the Software, and to permit third-parties to whom the Software is furnished to do so, all subject to the following:
The copyright notices in the Software and this entire statement, including the above license grant, this restriction and the following disclaimer, must be included in all copies of the Software, in whole or in part, and all derivative works of the Software, unless such copies or derivative works are solely in the form of machine-executable object code generated by a source language processor.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
## E57 Simple API
Copyright (c) 2010 Stan Coleby (stan.coleby@gmail.com), All Rights Reserved.
Permission is hereby granted, free of charge, to any person or organization obtaining a copy of the software and accompanying documentation covered by this license (the "Software") to use, reproduce, display, distribute, execute, and transmit the Software, and to prepare derivative works of the Software, and to permit third-parties to whom the Software is furnished to do so, all subject to the following:
The copyright notices in the Software and this entire statement, including the above license grant, this restriction and the following disclaimer, must be included in all copies of the Software, in whole or in part, and all derivative works of the Software, unless such copies or derivative works are solely in the form of machine-executable object code generated by a source language processor.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
## CMake project libe57
Copyright 2010 Roland Schwarz (rschwarz@riegl.co.at), Riegl LMS GmbH, All Rights Reserved.
Permission is hereby granted, free of charge, to any person or organization obtaining a copy of the software and accompanying documentation covered by this license (the "Software") to use, reproduce, display, distribute, execute, and transmit the Software, and to prepare derivative works of the Software, and to permit third-parties to whom the Software is furnished to do so, all subject to the following:
The copyright notices in the Software and this entire statement, including the above license grant, this restriction and the following disclaimer, must be included in all copies of the Software, in whole or in part, and all derivative works of the Software, unless such copies or derivative works are solely in the form of machine-executable object code generated by a source language processor.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

View File

@@ -1,8 +0,0 @@
2011-03-10: roland_schwarz
Added E57RefImplConfig.cmake for user project configuration.
The build instructions can be found inside the CMakeLists.txt file.
See doc\libe57ReleaseNotes.doc for:
- release notes
- instructions on compiling/linking applications
- instructions on validating .e57 files

55
README.md Normal file
View File

@@ -0,0 +1,55 @@
# openE57
openE57 is a forked version of the original LibE57 (http://www.libe57.org) project, with the intent to refine and optimize the source code in a modern C++ idiomatic way and remove unnecessary dependencies (e.g. Boost) in favour of the C++ Standard Library.
The library is compiled as C++17, since some of following language intrinsics and libraries are used:
* constexpr values
* enum classes
* filesystem (replaces boost::filesystem)
* thread (replaces boost::thread)
* memory (replaces boost::shared_ptr and std::auto_ptr)
## Requirements
You need the following tools to build this library:
* A C++17 compiler (MSVC 2017+, gcc 7+, clang 7+)
* A recent version of CMake (3.15+)
* A recent version of conan (1.25+)
## How to build it
On Linux:
```shell
git clone https://github.com/madduci/openE57.git
cd open57
mkdir -p build/linux && cd build/linux
conan install ../.. --build=missing
cmake ../.. -DCMAKE_BUILD_TYPE=Release
cmake --build .
cmake --install .
```
On Windows:
```cmd
git clone https://github.com/madduci/openE57.git
cd open57
md build\windows && cd build\windows
conan install ..\.. --build=missing
cmake ..\.. -DCMAKE_BUILD_TYPE=Release
cmake --build . --config Release
cmake --install . --config Release
```
Available CMake options (but disabled by default) are the following onews:
* BUILD_EXAMPLES
* BUILD_TOOLS
* BUILD_TESTS
* BUILD_WITH_MT (MSVC Only)
* BUILD_SHARED_LIBS (Not supported at the moment - no symbol is exported yet)
The dependencies are now managed with conan and integrated in CMake, without the need of compiling the required libraries by yourself.

528
build/linux/CMakeCache.txt Normal file
View File

@@ -0,0 +1,528 @@
# This is the CMakeCache file.
# For build in directory: /home/madduci/Projects/openE57/build/linux
# 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
########################
//Build e57 examples
BUILD_EXAMPLES:BOOL=ON
//Build e57 shared libraries
BUILD_SHARED_LIBS:BOOL=OFF
//Build e57 tests
BUILD_TESTS:BOOL=OFF
//Build e57 tools
BUILD_TOOLS:BOOL=ON
//Build e57 libraries as MultiThreaded DLL
BUILD_WITH_MT:BOOL=OFF
//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=Release
//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=
//User executables (bin)
CMAKE_INSTALL_BINDIR:PATH=bin
//Read-only architecture-independent data (DATAROOTDIR)
CMAKE_INSTALL_DATADIR:PATH=
//Read-only architecture-independent data root (share)
CMAKE_INSTALL_DATAROOTDIR:PATH=share
//Documentation root (DATAROOTDIR/doc/PROJECT_NAME)
CMAKE_INSTALL_DOCDIR:PATH=
//C header files (include)
CMAKE_INSTALL_INCLUDEDIR:PATH=include
//Info documentation (DATAROOTDIR/info)
CMAKE_INSTALL_INFODIR:PATH=
//Object code libraries (lib)
CMAKE_INSTALL_LIBDIR:PATH=lib
//Program executables (libexec)
CMAKE_INSTALL_LIBEXECDIR:PATH=libexec
//Locale-dependent data (DATAROOTDIR/locale)
CMAKE_INSTALL_LOCALEDIR:PATH=
//Modifiable single-machine data (var)
CMAKE_INSTALL_LOCALSTATEDIR:PATH=var
//Man documentation (DATAROOTDIR/man)
CMAKE_INSTALL_MANDIR:PATH=
//C header files for non-gcc (/usr/include)
CMAKE_INSTALL_OLDINCLUDEDIR:PATH=/usr/include
//Install path prefix, prepended onto install directories.
CMAKE_INSTALL_PREFIX:PATH=/usr/local
//Run-time variable data (LOCALSTATEDIR/run)
CMAKE_INSTALL_RUNSTATEDIR:PATH=
//System admin executables (sbin)
CMAKE_INSTALL_SBINDIR:PATH=sbin
//Modifiable architecture-independent data (com)
CMAKE_INSTALL_SHAREDSTATEDIR:PATH=com
//Read-only single-machine data (etc)
CMAKE_INSTALL_SYSCONFDIR:PATH=etc
//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=openE57 is a library for handling e57 files
//Value Computed by CMake
CMAKE_PROJECT_HOMEPAGE_URL:STATIC=
//Value Computed by CMake
CMAKE_PROJECT_NAME:STATIC=openE57
//Value Computed by CMake
CMAKE_PROJECT_VERSION:STATIC=1.2.0
//Value Computed by CMake
CMAKE_PROJECT_VERSION_MAJOR:STATIC=1
//Value Computed by CMake
CMAKE_PROJECT_VERSION_MINOR:STATIC=2
//Value Computed by CMake
CMAKE_PROJECT_VERSION_PATCH:STATIC=0
//Value Computed by CMake
CMAKE_PROJECT_VERSION_TWEAK:STATIC=
//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
//Enable to build RPM source packages
CPACK_SOURCE_RPM:BOOL=OFF
//Enable to build TBZ2 source packages
CPACK_SOURCE_TBZ2:BOOL=ON
//Enable to build TGZ source packages
CPACK_SOURCE_TGZ:BOOL=ON
//Enable to build TXZ source packages
CPACK_SOURCE_TXZ:BOOL=ON
//Enable to build TZ source packages
CPACK_SOURCE_TZ:BOOL=ON
//Enable to build ZIP source packages
CPACK_SOURCE_ZIP:BOOL=OFF
//Value Computed by CMake
openE57_BINARY_DIR:STATIC=/home/madduci/Projects/openE57/build/linux
//Value Computed by CMake
openE57_SOURCE_DIR:STATIC=/home/madduci/Projects/openE57
########################
# 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/madduci/Projects/openE57/build/linux
//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=17
//Patch version of cmake used to create the current loaded cache
CMAKE_CACHE_PATCH_VERSION:INTERNAL=3
//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=
//Test CMAKE_HAVE_LIBC_PTHREAD
CMAKE_HAVE_LIBC_PTHREAD:INTERNAL=
//Have library pthreads
CMAKE_HAVE_PTHREADS_CREATE:INTERNAL=
//Have library pthread
CMAKE_HAVE_PTHREAD_CREATE:INTERNAL=1
//Have include pthread.h
CMAKE_HAVE_PTHREAD_H:INTERNAL=1
//Source directory with the top level CMakeLists.txt file for this
// project
CMAKE_HOME_DIRECTORY:INTERNAL=/home/madduci/Projects/openE57
//ADVANCED property for variable: CMAKE_INSTALL_BINDIR
CMAKE_INSTALL_BINDIR-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_INSTALL_DATADIR
CMAKE_INSTALL_DATADIR-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_INSTALL_DATAROOTDIR
CMAKE_INSTALL_DATAROOTDIR-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_INSTALL_DOCDIR
CMAKE_INSTALL_DOCDIR-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_INSTALL_INCLUDEDIR
CMAKE_INSTALL_INCLUDEDIR-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_INSTALL_INFODIR
CMAKE_INSTALL_INFODIR-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_INSTALL_LIBDIR
CMAKE_INSTALL_LIBDIR-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_INSTALL_LIBEXECDIR
CMAKE_INSTALL_LIBEXECDIR-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_INSTALL_LOCALEDIR
CMAKE_INSTALL_LOCALEDIR-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_INSTALL_LOCALSTATEDIR
CMAKE_INSTALL_LOCALSTATEDIR-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_INSTALL_MANDIR
CMAKE_INSTALL_MANDIR-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_INSTALL_OLDINCLUDEDIR
CMAKE_INSTALL_OLDINCLUDEDIR-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_INSTALL_RUNSTATEDIR
CMAKE_INSTALL_RUNSTATEDIR-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_INSTALL_SBINDIR
CMAKE_INSTALL_SBINDIR-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_INSTALL_SHAREDSTATEDIR
CMAKE_INSTALL_SHAREDSTATEDIR-ADVANCED:INTERNAL=1
//Install .so files without execute permission.
CMAKE_INSTALL_SO_NO_EXE:INTERNAL=0
//ADVANCED property for variable: CMAKE_INSTALL_SYSCONFDIR
CMAKE_INSTALL_SYSCONFDIR-ADVANCED:INTERNAL=1
//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=3
//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-3.17
//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
//Compiler support for a deprecated attribute
COMPILER_HAS_DEPRECATED:INTERNAL=1
//Test COMPILER_HAS_DEPRECATED_ATTR
COMPILER_HAS_DEPRECATED_ATTR:INTERNAL=1
//Test COMPILER_HAS_HIDDEN_INLINE_VISIBILITY
COMPILER_HAS_HIDDEN_INLINE_VISIBILITY:INTERNAL=1
//Test COMPILER_HAS_HIDDEN_VISIBILITY
COMPILER_HAS_HIDDEN_VISIBILITY:INTERNAL=1
//ADVANCED property for variable: CPACK_SOURCE_RPM
CPACK_SOURCE_RPM-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CPACK_SOURCE_TBZ2
CPACK_SOURCE_TBZ2-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CPACK_SOURCE_TGZ
CPACK_SOURCE_TGZ-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CPACK_SOURCE_TXZ
CPACK_SOURCE_TXZ-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CPACK_SOURCE_TZ
CPACK_SOURCE_TZ-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CPACK_SOURCE_ZIP
CPACK_SOURCE_ZIP-ADVANCED:INTERNAL=1
//Details about finding Threads
FIND_PACKAGE_MESSAGE_DETAILS_Threads:INTERNAL=[TRUE][v()]
//CMAKE_INSTALL_PREFIX during last run
_GNUInstallDirs_LAST_CMAKE_INSTALL_PREFIX:INTERNAL=/home/madduci/Projects/openE57/build/linux/redist-openE57-v1.2.0

View File

@@ -0,0 +1,76 @@
set(CMAKE_C_COMPILER "/usr/bin/cc")
set(CMAKE_C_COMPILER_ARG1 "")
set(CMAKE_C_COMPILER_ID "GNU")
set(CMAKE_C_COMPILER_VERSION "10.1.0")
set(CMAKE_C_COMPILER_VERSION_INTERNAL "")
set(CMAKE_C_COMPILER_WRAPPER "")
set(CMAKE_C_STANDARD_COMPUTED_DEFAULT "11")
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")
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_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_COMPILER_IS_MINGW )
set(CMAKE_COMPILER_IS_CYGWIN )
if(CMAKE_COMPILER_IS_CYGWIN)
set(CYGWIN 1)
set(UNIX 1)
endif()
set(CMAKE_C_COMPILER_ENV_VAR "CC")
if(CMAKE_COMPILER_IS_MINGW)
set(MINGW 1)
endif()
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_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/10.1.0/include;/usr/local/include;/usr/lib/gcc/x86_64-pc-linux-gnu/10.1.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/10.1.0;/usr/lib;/lib")
set(CMAKE_C_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "")

View File

@@ -0,0 +1,88 @@
set(CMAKE_CXX_COMPILER "/usr/bin/c++")
set(CMAKE_CXX_COMPILER_ARG1 "")
set(CMAKE_CXX_COMPILER_ID "GNU")
set(CMAKE_CXX_COMPILER_VERSION "10.1.0")
set(CMAKE_CXX_COMPILER_VERSION_INTERNAL "")
set(CMAKE_CXX_COMPILER_WRAPPER "")
set(CMAKE_CXX_STANDARD_COMPUTED_DEFAULT "14")
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")
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_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_COMPILER_IS_MINGW )
set(CMAKE_COMPILER_IS_CYGWIN )
if(CMAKE_COMPILER_IS_CYGWIN)
set(CYGWIN 1)
set(UNIX 1)
endif()
set(CMAKE_CXX_COMPILER_ENV_VAR "CXX")
if(CMAKE_COMPILER_IS_MINGW)
set(MINGW 1)
endif()
set(CMAKE_CXX_COMPILER_ID_RUN 1)
set(CMAKE_CXX_SOURCE_FILE_EXTENSIONS C;M;c++;cc;cpp;cxx;m;mm;CPP)
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_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++/10.1.0;/usr/include/c++/10.1.0/x86_64-pc-linux-gnu;/usr/include/c++/10.1.0/backward;/usr/lib/gcc/x86_64-pc-linux-gnu/10.1.0/include;/usr/local/include;/usr/lib/gcc/x86_64-pc-linux-gnu/10.1.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/10.1.0;/usr/lib;/lib")
set(CMAKE_CXX_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "")

View File

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

View File

@@ -0,0 +1,671 @@
#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
/* 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 */
# 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
# 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(__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(__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(__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(__FUJITSU) || defined(__FCC_VERSION) || defined(__fcc_version)
# define COMPILER_ID "Fujitsu"
#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(__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__))
# 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(__CRAYXE) || defined(__CRAYXC)
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(__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"
# 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_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"
# 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
#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 components. */
#ifdef 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'};
#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__)
# if (defined(_MSC_VER) && !defined(__clang__)) \
|| (defined(__ibmxl__) || defined(__IBMC__))
# define C_DIALECT "90"
# else
# define C_DIALECT
# endif
#elif __STDC_VERSION__ >= 201000L
# define C_DIALECT "11"
#elif __STDC_VERSION__ >= 199901L
# define C_DIALECT "99"
#else
# define C_DIALECT "90"
#endif
const char* info_language_dialect_default =
"INFO" ":" "dialect_default[" C_DIALECT "]";
/*--------------------------------------------------------------------------*/
#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(__CRAYXE) || defined(__CRAYXC)
require += info_cray[argc];
#endif
require += info_language_dialect_default[argc];
(void)argv;
return require;
}
#endif

View File

@@ -0,0 +1,660 @@
/* 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
/* 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 */
# 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
# 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(__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(__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(__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(__FUJITSU) || defined(__FCC_VERSION) || defined(__fcc_version)
# define COMPILER_ID "Fujitsu"
#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(__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__))
# 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(__CRAYXE) || defined(__CRAYXC)
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(__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"
# 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_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"
# 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
#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 components. */
#ifdef 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'};
#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_dialect_default = "INFO" ":" "dialect_default["
#if CXX_STD > 201703L
"20"
#elif CXX_STD >= 201703L
"17"
#elif CXX_STD >= 201402L
"14"
#elif CXX_STD >= 201103L
"11"
#else
"98"
#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(__CRAYXE) || defined(__CRAYXC)
require += info_cray[argc];
#endif
require += info_language_dialect_default[argc];
(void)argv;
return require;
}

View File

@@ -0,0 +1,16 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 3.17
# Relative path conversion top directories.
set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/home/madduci/Projects/openE57")
set(CMAKE_RELATIVE_PATH_TOP_BINARY "/home/madduci/Projects/openE57/build/linux")
# Force unix paths in dependencies.
set(CMAKE_FORCE_UNIX_PATHS 1)
# The C and CXX include file regular expressions for this directory.
set(CMAKE_C_INCLUDE_REGEX_SCAN "^.*$")
set(CMAKE_C_INCLUDE_REGEX_COMPLAIN "^$")
set(CMAKE_CXX_INCLUDE_REGEX_SCAN ${CMAKE_C_INCLUDE_REGEX_SCAN})
set(CMAKE_CXX_INCLUDE_REGEX_COMPLAIN ${CMAKE_C_INCLUDE_REGEX_COMPLAIN})

View File

@@ -0,0 +1,60 @@
Performing C SOURCE FILE Test CMAKE_HAVE_LIBC_PTHREAD failed with the following output:
Change Dir: /home/madduci/Projects/openE57/build/linux/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/make cmTC_4f68e/fast && /usr/bin/make -f CMakeFiles/cmTC_4f68e.dir/build.make CMakeFiles/cmTC_4f68e.dir/build
make[1]: Entering directory '/home/madduci/Projects/openE57/build/linux/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_4f68e.dir/src.c.o
/usr/bin/cc -DCMAKE_HAVE_LIBC_PTHREAD -o CMakeFiles/cmTC_4f68e.dir/src.c.o -c /home/madduci/Projects/openE57/build/linux/CMakeFiles/CMakeTmp/src.c
Linking C executable cmTC_4f68e
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_4f68e.dir/link.txt --verbose=1
/usr/bin/cc -DCMAKE_HAVE_LIBC_PTHREAD CMakeFiles/cmTC_4f68e.dir/src.c.o -o cmTC_4f68e
/usr/bin/ld: CMakeFiles/cmTC_4f68e.dir/src.c.o: in function `main':
src.c:(.text+0x3e): undefined reference to `pthread_create'
/usr/bin/ld: src.c:(.text+0x4a): undefined reference to `pthread_detach'
/usr/bin/ld: src.c:(.text+0x56): undefined reference to `pthread_cancel'
/usr/bin/ld: src.c:(.text+0x67): undefined reference to `pthread_join'
collect2: error: ld returned 1 exit status
make[1]: *** [CMakeFiles/cmTC_4f68e.dir/build.make:107: cmTC_4f68e] Error 1
make[1]: Leaving directory '/home/madduci/Projects/openE57/build/linux/CMakeFiles/CMakeTmp'
make: *** [Makefile:141: cmTC_4f68e/fast] Error 2
Source file was:
#include <pthread.h>
void* test_func(void* data)
{
return data;
}
int main(void)
{
pthread_t thread;
pthread_create(&thread, NULL, test_func, NULL);
pthread_detach(thread);
pthread_cancel(thread);
pthread_join(thread, NULL);
pthread_atfork(NULL, NULL, NULL);
pthread_exit(NULL);
return 0;
}
Determining if the function pthread_create exists in the pthreads failed with the following output:
Change Dir: /home/madduci/Projects/openE57/build/linux/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/make cmTC_0c1b3/fast && /usr/bin/make -f CMakeFiles/cmTC_0c1b3.dir/build.make CMakeFiles/cmTC_0c1b3.dir/build
make[1]: Entering directory '/home/madduci/Projects/openE57/build/linux/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_0c1b3.dir/CheckFunctionExists.c.o
/usr/bin/cc -DCHECK_FUNCTION_EXISTS=pthread_create -o CMakeFiles/cmTC_0c1b3.dir/CheckFunctionExists.c.o -c /usr/share/cmake-3.17/Modules/CheckFunctionExists.c
Linking C executable cmTC_0c1b3
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_0c1b3.dir/link.txt --verbose=1
/usr/bin/cc -DCHECK_FUNCTION_EXISTS=pthread_create CMakeFiles/cmTC_0c1b3.dir/CheckFunctionExists.c.o -o cmTC_0c1b3 -lpthreads
/usr/bin/ld: cannot find -lpthreads
collect2: error: ld returned 1 exit status
make[1]: *** [CMakeFiles/cmTC_0c1b3.dir/build.make:107: cmTC_0c1b3] Error 1
make[1]: Leaving directory '/home/madduci/Projects/openE57/build/linux/CMakeFiles/CMakeTmp'
make: *** [Makefile:141: cmTC_0c1b3/fast] Error 2

View File

@@ -0,0 +1,506 @@
The system is: Linux - 5.7.0-3-MANJARO - x86_64
Compiling the C compiler identification source file "CMakeCCompilerId.c" succeeded.
Compiler: /usr/bin/cc
Build flags:
Id flags:
The output was:
0
Compilation of the C compiler identification source "CMakeCCompilerId.c" produced "a.out"
The C compiler identification is GNU, found in "/home/madduci/Projects/openE57/build/linux/CMakeFiles/3.17.3/CompilerIdC/a.out"
Compiling the CXX compiler identification source file "CMakeCXXCompilerId.cpp" succeeded.
Compiler: /usr/bin/c++
Build flags:
Id flags:
The output was:
0
Compilation of the CXX compiler identification source "CMakeCXXCompilerId.cpp" produced "a.out"
The CXX compiler identification is GNU, found in "/home/madduci/Projects/openE57/build/linux/CMakeFiles/3.17.3/CompilerIdCXX/a.out"
Determining if the C compiler works passed with the following output:
Change Dir: /home/madduci/Projects/openE57/build/linux/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/make cmTC_268b9/fast && /usr/bin/make -f CMakeFiles/cmTC_268b9.dir/build.make CMakeFiles/cmTC_268b9.dir/build
make[1]: Entering directory '/home/madduci/Projects/openE57/build/linux/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_268b9.dir/testCCompiler.c.o
/usr/bin/cc -o CMakeFiles/cmTC_268b9.dir/testCCompiler.c.o -c /home/madduci/Projects/openE57/build/linux/CMakeFiles/CMakeTmp/testCCompiler.c
Linking C executable cmTC_268b9
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_268b9.dir/link.txt --verbose=1
/usr/bin/cc CMakeFiles/cmTC_268b9.dir/testCCompiler.c.o -o cmTC_268b9
make[1]: Leaving directory '/home/madduci/Projects/openE57/build/linux/CMakeFiles/CMakeTmp'
Detecting C compiler ABI info compiled with the following output:
Change Dir: /home/madduci/Projects/openE57/build/linux/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/make cmTC_ef5c7/fast && /usr/bin/make -f CMakeFiles/cmTC_ef5c7.dir/build.make CMakeFiles/cmTC_ef5c7.dir/build
make[1]: Entering directory '/home/madduci/Projects/openE57/build/linux/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_ef5c7.dir/CMakeCCompilerABI.c.o
/usr/bin/cc -v -o CMakeFiles/cmTC_ef5c7.dir/CMakeCCompilerABI.c.o -c /usr/share/cmake-3.17/Modules/CMakeCCompilerABI.c
Using built-in specs.
COLLECT_GCC=/usr/bin/cc
Target: x86_64-pc-linux-gnu
Configured with: /build/gcc/src/gcc/configure --prefix=/usr --libdir=/usr/lib --libexecdir=/usr/lib --mandir=/usr/share/man --infodir=/usr/share/info --with-bugurl=https://bugs.archlinux.org/ --enable-languages=c,c++,ada,fortran,go,lto,objc,obj-c++,d --with-isl --with-linker-hash-style=gnu --with-system-zlib --enable-__cxa_atexit --enable-cet=auto --enable-checking=release --enable-clocale=gnu --enable-default-pie --enable-default-ssp --enable-gnu-indirect-function --enable-gnu-unique-object --enable-install-libiberty --enable-linker-build-id --enable-lto --enable-multilib --enable-plugin --enable-shared --enable-threads=posix --disable-libssp --disable-libstdcxx-pch --disable-libunwind-exceptions --disable-werror gdc_include_dir=/usr/include/dlang/gdc
Thread model: posix
Supported LTO compression algorithms: zlib zstd
gcc version 10.1.0 (GCC)
COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_ef5c7.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64'
/usr/lib/gcc/x86_64-pc-linux-gnu/10.1.0/cc1 -quiet -v /usr/share/cmake-3.17/Modules/CMakeCCompilerABI.c -quiet -dumpbase CMakeCCompilerABI.c -mtune=generic -march=x86-64 -auxbase-strip CMakeFiles/cmTC_ef5c7.dir/CMakeCCompilerABI.c.o -version -o /tmp/ccXwErku.s
GNU C17 (GCC) version 10.1.0 (x86_64-pc-linux-gnu)
compiled by GNU C version 10.1.0, GMP version 6.2.0, MPFR version 4.0.2, MPC version 1.1.0, isl version isl-0.21-GMP
GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072
ignoring nonexistent directory "/usr/lib/gcc/x86_64-pc-linux-gnu/10.1.0/../../../../x86_64-pc-linux-gnu/include"
#include "..." search starts here:
#include <...> search starts here:
/usr/lib/gcc/x86_64-pc-linux-gnu/10.1.0/include
/usr/local/include
/usr/lib/gcc/x86_64-pc-linux-gnu/10.1.0/include-fixed
/usr/include
End of search list.
GNU C17 (GCC) version 10.1.0 (x86_64-pc-linux-gnu)
compiled by GNU C version 10.1.0, GMP version 6.2.0, MPFR version 4.0.2, MPC version 1.1.0, isl version isl-0.21-GMP
GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072
Compiler executable checksum: 8cbeeaf463513b43dc3c4cd12e0bccb6
COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_ef5c7.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64'
as -v --64 -o CMakeFiles/cmTC_ef5c7.dir/CMakeCCompilerABI.c.o /tmp/ccXwErku.s
GNU assembler version 2.34.0 (x86_64-pc-linux-gnu) using BFD version (GNU Binutils) 2.34.0
COMPILER_PATH=/usr/lib/gcc/x86_64-pc-linux-gnu/10.1.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/10.1.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/:/usr/lib/gcc/x86_64-pc-linux-gnu/10.1.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/
LIBRARY_PATH=/usr/lib/gcc/x86_64-pc-linux-gnu/10.1.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/10.1.0/../../../../lib/:/lib/../lib/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-pc-linux-gnu/10.1.0/../../../:/lib/:/usr/lib/
COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_ef5c7.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64'
Linking C executable cmTC_ef5c7
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_ef5c7.dir/link.txt --verbose=1
/usr/bin/cc -v CMakeFiles/cmTC_ef5c7.dir/CMakeCCompilerABI.c.o -o cmTC_ef5c7
Using built-in specs.
COLLECT_GCC=/usr/bin/cc
COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-pc-linux-gnu/10.1.0/lto-wrapper
Target: x86_64-pc-linux-gnu
Configured with: /build/gcc/src/gcc/configure --prefix=/usr --libdir=/usr/lib --libexecdir=/usr/lib --mandir=/usr/share/man --infodir=/usr/share/info --with-bugurl=https://bugs.archlinux.org/ --enable-languages=c,c++,ada,fortran,go,lto,objc,obj-c++,d --with-isl --with-linker-hash-style=gnu --with-system-zlib --enable-__cxa_atexit --enable-cet=auto --enable-checking=release --enable-clocale=gnu --enable-default-pie --enable-default-ssp --enable-gnu-indirect-function --enable-gnu-unique-object --enable-install-libiberty --enable-linker-build-id --enable-lto --enable-multilib --enable-plugin --enable-shared --enable-threads=posix --disable-libssp --disable-libstdcxx-pch --disable-libunwind-exceptions --disable-werror gdc_include_dir=/usr/include/dlang/gdc
Thread model: posix
Supported LTO compression algorithms: zlib zstd
gcc version 10.1.0 (GCC)
COMPILER_PATH=/usr/lib/gcc/x86_64-pc-linux-gnu/10.1.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/10.1.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/:/usr/lib/gcc/x86_64-pc-linux-gnu/10.1.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/
LIBRARY_PATH=/usr/lib/gcc/x86_64-pc-linux-gnu/10.1.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/10.1.0/../../../../lib/:/lib/../lib/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-pc-linux-gnu/10.1.0/../../../:/lib/:/usr/lib/
COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_ef5c7' '-mtune=generic' '-march=x86-64'
/usr/lib/gcc/x86_64-pc-linux-gnu/10.1.0/collect2 -plugin /usr/lib/gcc/x86_64-pc-linux-gnu/10.1.0/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-pc-linux-gnu/10.1.0/lto-wrapper -plugin-opt=-fresolution=/tmp/ccsQ4QbP.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s --build-id --eh-frame-hdr --hash-style=gnu -m elf_x86_64 -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -o cmTC_ef5c7 /usr/lib/gcc/x86_64-pc-linux-gnu/10.1.0/../../../../lib/Scrt1.o /usr/lib/gcc/x86_64-pc-linux-gnu/10.1.0/../../../../lib/crti.o /usr/lib/gcc/x86_64-pc-linux-gnu/10.1.0/crtbeginS.o -L/usr/lib/gcc/x86_64-pc-linux-gnu/10.1.0 -L/usr/lib/gcc/x86_64-pc-linux-gnu/10.1.0/../../../../lib -L/lib/../lib -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-pc-linux-gnu/10.1.0/../../.. CMakeFiles/cmTC_ef5c7.dir/CMakeCCompilerABI.c.o -lgcc --push-state --as-needed -lgcc_s --pop-state -lc -lgcc --push-state --as-needed -lgcc_s --pop-state /usr/lib/gcc/x86_64-pc-linux-gnu/10.1.0/crtendS.o /usr/lib/gcc/x86_64-pc-linux-gnu/10.1.0/../../../../lib/crtn.o
COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_ef5c7' '-mtune=generic' '-march=x86-64'
make[1]: Leaving directory '/home/madduci/Projects/openE57/build/linux/CMakeFiles/CMakeTmp'
Parsed C implicit include dir info from above output: rv=done
found start of include info
found start of implicit include info
add: [/usr/lib/gcc/x86_64-pc-linux-gnu/10.1.0/include]
add: [/usr/local/include]
add: [/usr/lib/gcc/x86_64-pc-linux-gnu/10.1.0/include-fixed]
add: [/usr/include]
end of search list found
collapse include dir [/usr/lib/gcc/x86_64-pc-linux-gnu/10.1.0/include] ==> [/usr/lib/gcc/x86_64-pc-linux-gnu/10.1.0/include]
collapse include dir [/usr/local/include] ==> [/usr/local/include]
collapse include dir [/usr/lib/gcc/x86_64-pc-linux-gnu/10.1.0/include-fixed] ==> [/usr/lib/gcc/x86_64-pc-linux-gnu/10.1.0/include-fixed]
collapse include dir [/usr/include] ==> [/usr/include]
implicit include dirs: [/usr/lib/gcc/x86_64-pc-linux-gnu/10.1.0/include;/usr/local/include;/usr/lib/gcc/x86_64-pc-linux-gnu/10.1.0/include-fixed;/usr/include]
Parsed C implicit link information from above output:
link line regex: [^( *|.*[/\])(ld|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\]+-)?ld|collect2)[^/\]*( |$)]
ignore line: [Change Dir: /home/madduci/Projects/openE57/build/linux/CMakeFiles/CMakeTmp]
ignore line: []
ignore line: [Run Build Command(s):/usr/bin/make cmTC_ef5c7/fast && /usr/bin/make -f CMakeFiles/cmTC_ef5c7.dir/build.make CMakeFiles/cmTC_ef5c7.dir/build]
ignore line: [make[1]: Entering directory '/home/madduci/Projects/openE57/build/linux/CMakeFiles/CMakeTmp']
ignore line: [Building C object CMakeFiles/cmTC_ef5c7.dir/CMakeCCompilerABI.c.o]
ignore line: [/usr/bin/cc -v -o CMakeFiles/cmTC_ef5c7.dir/CMakeCCompilerABI.c.o -c /usr/share/cmake-3.17/Modules/CMakeCCompilerABI.c]
ignore line: [Using built-in specs.]
ignore line: [COLLECT_GCC=/usr/bin/cc]
ignore line: [Target: x86_64-pc-linux-gnu]
ignore line: [Configured with: /build/gcc/src/gcc/configure --prefix=/usr --libdir=/usr/lib --libexecdir=/usr/lib --mandir=/usr/share/man --infodir=/usr/share/info --with-bugurl=https://bugs.archlinux.org/ --enable-languages=c c++ ada fortran go lto objc obj-c++ d --with-isl --with-linker-hash-style=gnu --with-system-zlib --enable-__cxa_atexit --enable-cet=auto --enable-checking=release --enable-clocale=gnu --enable-default-pie --enable-default-ssp --enable-gnu-indirect-function --enable-gnu-unique-object --enable-install-libiberty --enable-linker-build-id --enable-lto --enable-multilib --enable-plugin --enable-shared --enable-threads=posix --disable-libssp --disable-libstdcxx-pch --disable-libunwind-exceptions --disable-werror gdc_include_dir=/usr/include/dlang/gdc]
ignore line: [Thread model: posix]
ignore line: [Supported LTO compression algorithms: zlib zstd]
ignore line: [gcc version 10.1.0 (GCC) ]
ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_ef5c7.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64']
ignore line: [ /usr/lib/gcc/x86_64-pc-linux-gnu/10.1.0/cc1 -quiet -v /usr/share/cmake-3.17/Modules/CMakeCCompilerABI.c -quiet -dumpbase CMakeCCompilerABI.c -mtune=generic -march=x86-64 -auxbase-strip CMakeFiles/cmTC_ef5c7.dir/CMakeCCompilerABI.c.o -version -o /tmp/ccXwErku.s]
ignore line: [GNU C17 (GCC) version 10.1.0 (x86_64-pc-linux-gnu)]
ignore line: [ compiled by GNU C version 10.1.0 GMP version 6.2.0 MPFR version 4.0.2 MPC version 1.1.0 isl version isl-0.21-GMP]
ignore line: []
ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072]
ignore line: [ignoring nonexistent directory "/usr/lib/gcc/x86_64-pc-linux-gnu/10.1.0/../../../../x86_64-pc-linux-gnu/include"]
ignore line: [#include "..." search starts here:]
ignore line: [#include <...> search starts here:]
ignore line: [ /usr/lib/gcc/x86_64-pc-linux-gnu/10.1.0/include]
ignore line: [ /usr/local/include]
ignore line: [ /usr/lib/gcc/x86_64-pc-linux-gnu/10.1.0/include-fixed]
ignore line: [ /usr/include]
ignore line: [End of search list.]
ignore line: [GNU C17 (GCC) version 10.1.0 (x86_64-pc-linux-gnu)]
ignore line: [ compiled by GNU C version 10.1.0 GMP version 6.2.0 MPFR version 4.0.2 MPC version 1.1.0 isl version isl-0.21-GMP]
ignore line: []
ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072]
ignore line: [Compiler executable checksum: 8cbeeaf463513b43dc3c4cd12e0bccb6]
ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_ef5c7.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64']
ignore line: [ as -v --64 -o CMakeFiles/cmTC_ef5c7.dir/CMakeCCompilerABI.c.o /tmp/ccXwErku.s]
ignore line: [GNU assembler version 2.34.0 (x86_64-pc-linux-gnu) using BFD version (GNU Binutils) 2.34.0]
ignore line: [COMPILER_PATH=/usr/lib/gcc/x86_64-pc-linux-gnu/10.1.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/10.1.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/:/usr/lib/gcc/x86_64-pc-linux-gnu/10.1.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/]
ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-pc-linux-gnu/10.1.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/10.1.0/../../../../lib/:/lib/../lib/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-pc-linux-gnu/10.1.0/../../../:/lib/:/usr/lib/]
ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_ef5c7.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64']
ignore line: [Linking C executable cmTC_ef5c7]
ignore line: [/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_ef5c7.dir/link.txt --verbose=1]
ignore line: [/usr/bin/cc -v CMakeFiles/cmTC_ef5c7.dir/CMakeCCompilerABI.c.o -o cmTC_ef5c7 ]
ignore line: [Using built-in specs.]
ignore line: [COLLECT_GCC=/usr/bin/cc]
ignore line: [COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-pc-linux-gnu/10.1.0/lto-wrapper]
ignore line: [Target: x86_64-pc-linux-gnu]
ignore line: [Configured with: /build/gcc/src/gcc/configure --prefix=/usr --libdir=/usr/lib --libexecdir=/usr/lib --mandir=/usr/share/man --infodir=/usr/share/info --with-bugurl=https://bugs.archlinux.org/ --enable-languages=c c++ ada fortran go lto objc obj-c++ d --with-isl --with-linker-hash-style=gnu --with-system-zlib --enable-__cxa_atexit --enable-cet=auto --enable-checking=release --enable-clocale=gnu --enable-default-pie --enable-default-ssp --enable-gnu-indirect-function --enable-gnu-unique-object --enable-install-libiberty --enable-linker-build-id --enable-lto --enable-multilib --enable-plugin --enable-shared --enable-threads=posix --disable-libssp --disable-libstdcxx-pch --disable-libunwind-exceptions --disable-werror gdc_include_dir=/usr/include/dlang/gdc]
ignore line: [Thread model: posix]
ignore line: [Supported LTO compression algorithms: zlib zstd]
ignore line: [gcc version 10.1.0 (GCC) ]
ignore line: [COMPILER_PATH=/usr/lib/gcc/x86_64-pc-linux-gnu/10.1.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/10.1.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/:/usr/lib/gcc/x86_64-pc-linux-gnu/10.1.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/]
ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-pc-linux-gnu/10.1.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/10.1.0/../../../../lib/:/lib/../lib/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-pc-linux-gnu/10.1.0/../../../:/lib/:/usr/lib/]
ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_ef5c7' '-mtune=generic' '-march=x86-64']
link line: [ /usr/lib/gcc/x86_64-pc-linux-gnu/10.1.0/collect2 -plugin /usr/lib/gcc/x86_64-pc-linux-gnu/10.1.0/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-pc-linux-gnu/10.1.0/lto-wrapper -plugin-opt=-fresolution=/tmp/ccsQ4QbP.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s --build-id --eh-frame-hdr --hash-style=gnu -m elf_x86_64 -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -o cmTC_ef5c7 /usr/lib/gcc/x86_64-pc-linux-gnu/10.1.0/../../../../lib/Scrt1.o /usr/lib/gcc/x86_64-pc-linux-gnu/10.1.0/../../../../lib/crti.o /usr/lib/gcc/x86_64-pc-linux-gnu/10.1.0/crtbeginS.o -L/usr/lib/gcc/x86_64-pc-linux-gnu/10.1.0 -L/usr/lib/gcc/x86_64-pc-linux-gnu/10.1.0/../../../../lib -L/lib/../lib -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-pc-linux-gnu/10.1.0/../../.. CMakeFiles/cmTC_ef5c7.dir/CMakeCCompilerABI.c.o -lgcc --push-state --as-needed -lgcc_s --pop-state -lc -lgcc --push-state --as-needed -lgcc_s --pop-state /usr/lib/gcc/x86_64-pc-linux-gnu/10.1.0/crtendS.o /usr/lib/gcc/x86_64-pc-linux-gnu/10.1.0/../../../../lib/crtn.o]
arg [/usr/lib/gcc/x86_64-pc-linux-gnu/10.1.0/collect2] ==> ignore
arg [-plugin] ==> ignore
arg [/usr/lib/gcc/x86_64-pc-linux-gnu/10.1.0/liblto_plugin.so] ==> ignore
arg [-plugin-opt=/usr/lib/gcc/x86_64-pc-linux-gnu/10.1.0/lto-wrapper] ==> ignore
arg [-plugin-opt=-fresolution=/tmp/ccsQ4QbP.res] ==> ignore
arg [-plugin-opt=-pass-through=-lgcc] ==> ignore
arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore
arg [-plugin-opt=-pass-through=-lc] ==> ignore
arg [-plugin-opt=-pass-through=-lgcc] ==> ignore
arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore
arg [--build-id] ==> ignore
arg [--eh-frame-hdr] ==> ignore
arg [--hash-style=gnu] ==> ignore
arg [-m] ==> ignore
arg [elf_x86_64] ==> ignore
arg [-dynamic-linker] ==> ignore
arg [/lib64/ld-linux-x86-64.so.2] ==> ignore
arg [-pie] ==> ignore
arg [-o] ==> ignore
arg [cmTC_ef5c7] ==> ignore
arg [/usr/lib/gcc/x86_64-pc-linux-gnu/10.1.0/../../../../lib/Scrt1.o] ==> ignore
arg [/usr/lib/gcc/x86_64-pc-linux-gnu/10.1.0/../../../../lib/crti.o] ==> ignore
arg [/usr/lib/gcc/x86_64-pc-linux-gnu/10.1.0/crtbeginS.o] ==> ignore
arg [-L/usr/lib/gcc/x86_64-pc-linux-gnu/10.1.0] ==> dir [/usr/lib/gcc/x86_64-pc-linux-gnu/10.1.0]
arg [-L/usr/lib/gcc/x86_64-pc-linux-gnu/10.1.0/../../../../lib] ==> dir [/usr/lib/gcc/x86_64-pc-linux-gnu/10.1.0/../../../../lib]
arg [-L/lib/../lib] ==> dir [/lib/../lib]
arg [-L/usr/lib/../lib] ==> dir [/usr/lib/../lib]
arg [-L/usr/lib/gcc/x86_64-pc-linux-gnu/10.1.0/../../..] ==> dir [/usr/lib/gcc/x86_64-pc-linux-gnu/10.1.0/../../..]
arg [CMakeFiles/cmTC_ef5c7.dir/CMakeCCompilerABI.c.o] ==> ignore
arg [-lgcc] ==> lib [gcc]
arg [--push-state] ==> ignore
arg [--as-needed] ==> ignore
arg [-lgcc_s] ==> lib [gcc_s]
arg [--pop-state] ==> ignore
arg [-lc] ==> lib [c]
arg [-lgcc] ==> lib [gcc]
arg [--push-state] ==> ignore
arg [--as-needed] ==> ignore
arg [-lgcc_s] ==> lib [gcc_s]
arg [--pop-state] ==> ignore
arg [/usr/lib/gcc/x86_64-pc-linux-gnu/10.1.0/crtendS.o] ==> ignore
arg [/usr/lib/gcc/x86_64-pc-linux-gnu/10.1.0/../../../../lib/crtn.o] ==> ignore
collapse library dir [/usr/lib/gcc/x86_64-pc-linux-gnu/10.1.0] ==> [/usr/lib/gcc/x86_64-pc-linux-gnu/10.1.0]
collapse library dir [/usr/lib/gcc/x86_64-pc-linux-gnu/10.1.0/../../../../lib] ==> [/usr/lib]
collapse library dir [/lib/../lib] ==> [/lib]
collapse library dir [/usr/lib/../lib] ==> [/usr/lib]
collapse library dir [/usr/lib/gcc/x86_64-pc-linux-gnu/10.1.0/../../..] ==> [/usr/lib]
implicit libs: [gcc;gcc_s;c;gcc;gcc_s]
implicit dirs: [/usr/lib/gcc/x86_64-pc-linux-gnu/10.1.0;/usr/lib;/lib]
implicit fwks: []
Determining if the CXX compiler works passed with the following output:
Change Dir: /home/madduci/Projects/openE57/build/linux/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/make cmTC_2ed97/fast && /usr/bin/make -f CMakeFiles/cmTC_2ed97.dir/build.make CMakeFiles/cmTC_2ed97.dir/build
make[1]: Entering directory '/home/madduci/Projects/openE57/build/linux/CMakeFiles/CMakeTmp'
Building CXX object CMakeFiles/cmTC_2ed97.dir/testCXXCompiler.cxx.o
/usr/bin/c++ -o CMakeFiles/cmTC_2ed97.dir/testCXXCompiler.cxx.o -c /home/madduci/Projects/openE57/build/linux/CMakeFiles/CMakeTmp/testCXXCompiler.cxx
Linking CXX executable cmTC_2ed97
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_2ed97.dir/link.txt --verbose=1
/usr/bin/c++ CMakeFiles/cmTC_2ed97.dir/testCXXCompiler.cxx.o -o cmTC_2ed97
make[1]: Leaving directory '/home/madduci/Projects/openE57/build/linux/CMakeFiles/CMakeTmp'
Detecting CXX compiler ABI info compiled with the following output:
Change Dir: /home/madduci/Projects/openE57/build/linux/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/make cmTC_4d9a0/fast && /usr/bin/make -f CMakeFiles/cmTC_4d9a0.dir/build.make CMakeFiles/cmTC_4d9a0.dir/build
make[1]: Entering directory '/home/madduci/Projects/openE57/build/linux/CMakeFiles/CMakeTmp'
Building CXX object CMakeFiles/cmTC_4d9a0.dir/CMakeCXXCompilerABI.cpp.o
/usr/bin/c++ -v -o CMakeFiles/cmTC_4d9a0.dir/CMakeCXXCompilerABI.cpp.o -c /usr/share/cmake-3.17/Modules/CMakeCXXCompilerABI.cpp
Using built-in specs.
COLLECT_GCC=/usr/bin/c++
Target: x86_64-pc-linux-gnu
Configured with: /build/gcc/src/gcc/configure --prefix=/usr --libdir=/usr/lib --libexecdir=/usr/lib --mandir=/usr/share/man --infodir=/usr/share/info --with-bugurl=https://bugs.archlinux.org/ --enable-languages=c,c++,ada,fortran,go,lto,objc,obj-c++,d --with-isl --with-linker-hash-style=gnu --with-system-zlib --enable-__cxa_atexit --enable-cet=auto --enable-checking=release --enable-clocale=gnu --enable-default-pie --enable-default-ssp --enable-gnu-indirect-function --enable-gnu-unique-object --enable-install-libiberty --enable-linker-build-id --enable-lto --enable-multilib --enable-plugin --enable-shared --enable-threads=posix --disable-libssp --disable-libstdcxx-pch --disable-libunwind-exceptions --disable-werror gdc_include_dir=/usr/include/dlang/gdc
Thread model: posix
Supported LTO compression algorithms: zlib zstd
gcc version 10.1.0 (GCC)
COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_4d9a0.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64'
/usr/lib/gcc/x86_64-pc-linux-gnu/10.1.0/cc1plus -quiet -v -D_GNU_SOURCE /usr/share/cmake-3.17/Modules/CMakeCXXCompilerABI.cpp -quiet -dumpbase CMakeCXXCompilerABI.cpp -mtune=generic -march=x86-64 -auxbase-strip CMakeFiles/cmTC_4d9a0.dir/CMakeCXXCompilerABI.cpp.o -version -o /tmp/ccjyq1rd.s
GNU C++14 (GCC) version 10.1.0 (x86_64-pc-linux-gnu)
compiled by GNU C version 10.1.0, GMP version 6.2.0, MPFR version 4.0.2, MPC version 1.1.0, isl version isl-0.21-GMP
GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072
ignoring nonexistent directory "/usr/lib/gcc/x86_64-pc-linux-gnu/10.1.0/../../../../x86_64-pc-linux-gnu/include"
#include "..." search starts here:
#include <...> search starts here:
/usr/lib/gcc/x86_64-pc-linux-gnu/10.1.0/../../../../include/c++/10.1.0
/usr/lib/gcc/x86_64-pc-linux-gnu/10.1.0/../../../../include/c++/10.1.0/x86_64-pc-linux-gnu
/usr/lib/gcc/x86_64-pc-linux-gnu/10.1.0/../../../../include/c++/10.1.0/backward
/usr/lib/gcc/x86_64-pc-linux-gnu/10.1.0/include
/usr/local/include
/usr/lib/gcc/x86_64-pc-linux-gnu/10.1.0/include-fixed
/usr/include
End of search list.
GNU C++14 (GCC) version 10.1.0 (x86_64-pc-linux-gnu)
compiled by GNU C version 10.1.0, GMP version 6.2.0, MPFR version 4.0.2, MPC version 1.1.0, isl version isl-0.21-GMP
GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072
Compiler executable checksum: 262bfe0a9d27898ea74cb944d94238f6
COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_4d9a0.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64'
as -v --64 -o CMakeFiles/cmTC_4d9a0.dir/CMakeCXXCompilerABI.cpp.o /tmp/ccjyq1rd.s
GNU assembler version 2.34.0 (x86_64-pc-linux-gnu) using BFD version (GNU Binutils) 2.34.0
COMPILER_PATH=/usr/lib/gcc/x86_64-pc-linux-gnu/10.1.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/10.1.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/:/usr/lib/gcc/x86_64-pc-linux-gnu/10.1.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/
LIBRARY_PATH=/usr/lib/gcc/x86_64-pc-linux-gnu/10.1.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/10.1.0/../../../../lib/:/lib/../lib/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-pc-linux-gnu/10.1.0/../../../:/lib/:/usr/lib/
COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_4d9a0.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64'
Linking CXX executable cmTC_4d9a0
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_4d9a0.dir/link.txt --verbose=1
/usr/bin/c++ -v CMakeFiles/cmTC_4d9a0.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_4d9a0
Using built-in specs.
COLLECT_GCC=/usr/bin/c++
COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-pc-linux-gnu/10.1.0/lto-wrapper
Target: x86_64-pc-linux-gnu
Configured with: /build/gcc/src/gcc/configure --prefix=/usr --libdir=/usr/lib --libexecdir=/usr/lib --mandir=/usr/share/man --infodir=/usr/share/info --with-bugurl=https://bugs.archlinux.org/ --enable-languages=c,c++,ada,fortran,go,lto,objc,obj-c++,d --with-isl --with-linker-hash-style=gnu --with-system-zlib --enable-__cxa_atexit --enable-cet=auto --enable-checking=release --enable-clocale=gnu --enable-default-pie --enable-default-ssp --enable-gnu-indirect-function --enable-gnu-unique-object --enable-install-libiberty --enable-linker-build-id --enable-lto --enable-multilib --enable-plugin --enable-shared --enable-threads=posix --disable-libssp --disable-libstdcxx-pch --disable-libunwind-exceptions --disable-werror gdc_include_dir=/usr/include/dlang/gdc
Thread model: posix
Supported LTO compression algorithms: zlib zstd
gcc version 10.1.0 (GCC)
COMPILER_PATH=/usr/lib/gcc/x86_64-pc-linux-gnu/10.1.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/10.1.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/:/usr/lib/gcc/x86_64-pc-linux-gnu/10.1.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/
LIBRARY_PATH=/usr/lib/gcc/x86_64-pc-linux-gnu/10.1.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/10.1.0/../../../../lib/:/lib/../lib/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-pc-linux-gnu/10.1.0/../../../:/lib/:/usr/lib/
COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_4d9a0' '-shared-libgcc' '-mtune=generic' '-march=x86-64'
/usr/lib/gcc/x86_64-pc-linux-gnu/10.1.0/collect2 -plugin /usr/lib/gcc/x86_64-pc-linux-gnu/10.1.0/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-pc-linux-gnu/10.1.0/lto-wrapper -plugin-opt=-fresolution=/tmp/ccUGbdfC.res -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc --build-id --eh-frame-hdr --hash-style=gnu -m elf_x86_64 -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -o cmTC_4d9a0 /usr/lib/gcc/x86_64-pc-linux-gnu/10.1.0/../../../../lib/Scrt1.o /usr/lib/gcc/x86_64-pc-linux-gnu/10.1.0/../../../../lib/crti.o /usr/lib/gcc/x86_64-pc-linux-gnu/10.1.0/crtbeginS.o -L/usr/lib/gcc/x86_64-pc-linux-gnu/10.1.0 -L/usr/lib/gcc/x86_64-pc-linux-gnu/10.1.0/../../../../lib -L/lib/../lib -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-pc-linux-gnu/10.1.0/../../.. CMakeFiles/cmTC_4d9a0.dir/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm -lgcc_s -lgcc -lc -lgcc_s -lgcc /usr/lib/gcc/x86_64-pc-linux-gnu/10.1.0/crtendS.o /usr/lib/gcc/x86_64-pc-linux-gnu/10.1.0/../../../../lib/crtn.o
COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_4d9a0' '-shared-libgcc' '-mtune=generic' '-march=x86-64'
make[1]: Leaving directory '/home/madduci/Projects/openE57/build/linux/CMakeFiles/CMakeTmp'
Parsed CXX implicit include dir info from above output: rv=done
found start of include info
found start of implicit include info
add: [/usr/lib/gcc/x86_64-pc-linux-gnu/10.1.0/../../../../include/c++/10.1.0]
add: [/usr/lib/gcc/x86_64-pc-linux-gnu/10.1.0/../../../../include/c++/10.1.0/x86_64-pc-linux-gnu]
add: [/usr/lib/gcc/x86_64-pc-linux-gnu/10.1.0/../../../../include/c++/10.1.0/backward]
add: [/usr/lib/gcc/x86_64-pc-linux-gnu/10.1.0/include]
add: [/usr/local/include]
add: [/usr/lib/gcc/x86_64-pc-linux-gnu/10.1.0/include-fixed]
add: [/usr/include]
end of search list found
collapse include dir [/usr/lib/gcc/x86_64-pc-linux-gnu/10.1.0/../../../../include/c++/10.1.0] ==> [/usr/include/c++/10.1.0]
collapse include dir [/usr/lib/gcc/x86_64-pc-linux-gnu/10.1.0/../../../../include/c++/10.1.0/x86_64-pc-linux-gnu] ==> [/usr/include/c++/10.1.0/x86_64-pc-linux-gnu]
collapse include dir [/usr/lib/gcc/x86_64-pc-linux-gnu/10.1.0/../../../../include/c++/10.1.0/backward] ==> [/usr/include/c++/10.1.0/backward]
collapse include dir [/usr/lib/gcc/x86_64-pc-linux-gnu/10.1.0/include] ==> [/usr/lib/gcc/x86_64-pc-linux-gnu/10.1.0/include]
collapse include dir [/usr/local/include] ==> [/usr/local/include]
collapse include dir [/usr/lib/gcc/x86_64-pc-linux-gnu/10.1.0/include-fixed] ==> [/usr/lib/gcc/x86_64-pc-linux-gnu/10.1.0/include-fixed]
collapse include dir [/usr/include] ==> [/usr/include]
implicit include dirs: [/usr/include/c++/10.1.0;/usr/include/c++/10.1.0/x86_64-pc-linux-gnu;/usr/include/c++/10.1.0/backward;/usr/lib/gcc/x86_64-pc-linux-gnu/10.1.0/include;/usr/local/include;/usr/lib/gcc/x86_64-pc-linux-gnu/10.1.0/include-fixed;/usr/include]
Parsed CXX implicit link information from above output:
link line regex: [^( *|.*[/\])(ld|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\]+-)?ld|collect2)[^/\]*( |$)]
ignore line: [Change Dir: /home/madduci/Projects/openE57/build/linux/CMakeFiles/CMakeTmp]
ignore line: []
ignore line: [Run Build Command(s):/usr/bin/make cmTC_4d9a0/fast && /usr/bin/make -f CMakeFiles/cmTC_4d9a0.dir/build.make CMakeFiles/cmTC_4d9a0.dir/build]
ignore line: [make[1]: Entering directory '/home/madduci/Projects/openE57/build/linux/CMakeFiles/CMakeTmp']
ignore line: [Building CXX object CMakeFiles/cmTC_4d9a0.dir/CMakeCXXCompilerABI.cpp.o]
ignore line: [/usr/bin/c++ -v -o CMakeFiles/cmTC_4d9a0.dir/CMakeCXXCompilerABI.cpp.o -c /usr/share/cmake-3.17/Modules/CMakeCXXCompilerABI.cpp]
ignore line: [Using built-in specs.]
ignore line: [COLLECT_GCC=/usr/bin/c++]
ignore line: [Target: x86_64-pc-linux-gnu]
ignore line: [Configured with: /build/gcc/src/gcc/configure --prefix=/usr --libdir=/usr/lib --libexecdir=/usr/lib --mandir=/usr/share/man --infodir=/usr/share/info --with-bugurl=https://bugs.archlinux.org/ --enable-languages=c c++ ada fortran go lto objc obj-c++ d --with-isl --with-linker-hash-style=gnu --with-system-zlib --enable-__cxa_atexit --enable-cet=auto --enable-checking=release --enable-clocale=gnu --enable-default-pie --enable-default-ssp --enable-gnu-indirect-function --enable-gnu-unique-object --enable-install-libiberty --enable-linker-build-id --enable-lto --enable-multilib --enable-plugin --enable-shared --enable-threads=posix --disable-libssp --disable-libstdcxx-pch --disable-libunwind-exceptions --disable-werror gdc_include_dir=/usr/include/dlang/gdc]
ignore line: [Thread model: posix]
ignore line: [Supported LTO compression algorithms: zlib zstd]
ignore line: [gcc version 10.1.0 (GCC) ]
ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_4d9a0.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64']
ignore line: [ /usr/lib/gcc/x86_64-pc-linux-gnu/10.1.0/cc1plus -quiet -v -D_GNU_SOURCE /usr/share/cmake-3.17/Modules/CMakeCXXCompilerABI.cpp -quiet -dumpbase CMakeCXXCompilerABI.cpp -mtune=generic -march=x86-64 -auxbase-strip CMakeFiles/cmTC_4d9a0.dir/CMakeCXXCompilerABI.cpp.o -version -o /tmp/ccjyq1rd.s]
ignore line: [GNU C++14 (GCC) version 10.1.0 (x86_64-pc-linux-gnu)]
ignore line: [ compiled by GNU C version 10.1.0 GMP version 6.2.0 MPFR version 4.0.2 MPC version 1.1.0 isl version isl-0.21-GMP]
ignore line: []
ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072]
ignore line: [ignoring nonexistent directory "/usr/lib/gcc/x86_64-pc-linux-gnu/10.1.0/../../../../x86_64-pc-linux-gnu/include"]
ignore line: [#include "..." search starts here:]
ignore line: [#include <...> search starts here:]
ignore line: [ /usr/lib/gcc/x86_64-pc-linux-gnu/10.1.0/../../../../include/c++/10.1.0]
ignore line: [ /usr/lib/gcc/x86_64-pc-linux-gnu/10.1.0/../../../../include/c++/10.1.0/x86_64-pc-linux-gnu]
ignore line: [ /usr/lib/gcc/x86_64-pc-linux-gnu/10.1.0/../../../../include/c++/10.1.0/backward]
ignore line: [ /usr/lib/gcc/x86_64-pc-linux-gnu/10.1.0/include]
ignore line: [ /usr/local/include]
ignore line: [ /usr/lib/gcc/x86_64-pc-linux-gnu/10.1.0/include-fixed]
ignore line: [ /usr/include]
ignore line: [End of search list.]
ignore line: [GNU C++14 (GCC) version 10.1.0 (x86_64-pc-linux-gnu)]
ignore line: [ compiled by GNU C version 10.1.0 GMP version 6.2.0 MPFR version 4.0.2 MPC version 1.1.0 isl version isl-0.21-GMP]
ignore line: []
ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072]
ignore line: [Compiler executable checksum: 262bfe0a9d27898ea74cb944d94238f6]
ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_4d9a0.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64']
ignore line: [ as -v --64 -o CMakeFiles/cmTC_4d9a0.dir/CMakeCXXCompilerABI.cpp.o /tmp/ccjyq1rd.s]
ignore line: [GNU assembler version 2.34.0 (x86_64-pc-linux-gnu) using BFD version (GNU Binutils) 2.34.0]
ignore line: [COMPILER_PATH=/usr/lib/gcc/x86_64-pc-linux-gnu/10.1.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/10.1.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/:/usr/lib/gcc/x86_64-pc-linux-gnu/10.1.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/]
ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-pc-linux-gnu/10.1.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/10.1.0/../../../../lib/:/lib/../lib/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-pc-linux-gnu/10.1.0/../../../:/lib/:/usr/lib/]
ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_4d9a0.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64']
ignore line: [Linking CXX executable cmTC_4d9a0]
ignore line: [/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_4d9a0.dir/link.txt --verbose=1]
ignore line: [/usr/bin/c++ -v CMakeFiles/cmTC_4d9a0.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_4d9a0 ]
ignore line: [Using built-in specs.]
ignore line: [COLLECT_GCC=/usr/bin/c++]
ignore line: [COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-pc-linux-gnu/10.1.0/lto-wrapper]
ignore line: [Target: x86_64-pc-linux-gnu]
ignore line: [Configured with: /build/gcc/src/gcc/configure --prefix=/usr --libdir=/usr/lib --libexecdir=/usr/lib --mandir=/usr/share/man --infodir=/usr/share/info --with-bugurl=https://bugs.archlinux.org/ --enable-languages=c c++ ada fortran go lto objc obj-c++ d --with-isl --with-linker-hash-style=gnu --with-system-zlib --enable-__cxa_atexit --enable-cet=auto --enable-checking=release --enable-clocale=gnu --enable-default-pie --enable-default-ssp --enable-gnu-indirect-function --enable-gnu-unique-object --enable-install-libiberty --enable-linker-build-id --enable-lto --enable-multilib --enable-plugin --enable-shared --enable-threads=posix --disable-libssp --disable-libstdcxx-pch --disable-libunwind-exceptions --disable-werror gdc_include_dir=/usr/include/dlang/gdc]
ignore line: [Thread model: posix]
ignore line: [Supported LTO compression algorithms: zlib zstd]
ignore line: [gcc version 10.1.0 (GCC) ]
ignore line: [COMPILER_PATH=/usr/lib/gcc/x86_64-pc-linux-gnu/10.1.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/10.1.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/:/usr/lib/gcc/x86_64-pc-linux-gnu/10.1.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/]
ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-pc-linux-gnu/10.1.0/:/usr/lib/gcc/x86_64-pc-linux-gnu/10.1.0/../../../../lib/:/lib/../lib/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-pc-linux-gnu/10.1.0/../../../:/lib/:/usr/lib/]
ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_4d9a0' '-shared-libgcc' '-mtune=generic' '-march=x86-64']
link line: [ /usr/lib/gcc/x86_64-pc-linux-gnu/10.1.0/collect2 -plugin /usr/lib/gcc/x86_64-pc-linux-gnu/10.1.0/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-pc-linux-gnu/10.1.0/lto-wrapper -plugin-opt=-fresolution=/tmp/ccUGbdfC.res -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc --build-id --eh-frame-hdr --hash-style=gnu -m elf_x86_64 -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -o cmTC_4d9a0 /usr/lib/gcc/x86_64-pc-linux-gnu/10.1.0/../../../../lib/Scrt1.o /usr/lib/gcc/x86_64-pc-linux-gnu/10.1.0/../../../../lib/crti.o /usr/lib/gcc/x86_64-pc-linux-gnu/10.1.0/crtbeginS.o -L/usr/lib/gcc/x86_64-pc-linux-gnu/10.1.0 -L/usr/lib/gcc/x86_64-pc-linux-gnu/10.1.0/../../../../lib -L/lib/../lib -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-pc-linux-gnu/10.1.0/../../.. CMakeFiles/cmTC_4d9a0.dir/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm -lgcc_s -lgcc -lc -lgcc_s -lgcc /usr/lib/gcc/x86_64-pc-linux-gnu/10.1.0/crtendS.o /usr/lib/gcc/x86_64-pc-linux-gnu/10.1.0/../../../../lib/crtn.o]
arg [/usr/lib/gcc/x86_64-pc-linux-gnu/10.1.0/collect2] ==> ignore
arg [-plugin] ==> ignore
arg [/usr/lib/gcc/x86_64-pc-linux-gnu/10.1.0/liblto_plugin.so] ==> ignore
arg [-plugin-opt=/usr/lib/gcc/x86_64-pc-linux-gnu/10.1.0/lto-wrapper] ==> ignore
arg [-plugin-opt=-fresolution=/tmp/ccUGbdfC.res] ==> ignore
arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore
arg [-plugin-opt=-pass-through=-lgcc] ==> ignore
arg [-plugin-opt=-pass-through=-lc] ==> ignore
arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore
arg [-plugin-opt=-pass-through=-lgcc] ==> ignore
arg [--build-id] ==> ignore
arg [--eh-frame-hdr] ==> ignore
arg [--hash-style=gnu] ==> ignore
arg [-m] ==> ignore
arg [elf_x86_64] ==> ignore
arg [-dynamic-linker] ==> ignore
arg [/lib64/ld-linux-x86-64.so.2] ==> ignore
arg [-pie] ==> ignore
arg [-o] ==> ignore
arg [cmTC_4d9a0] ==> ignore
arg [/usr/lib/gcc/x86_64-pc-linux-gnu/10.1.0/../../../../lib/Scrt1.o] ==> ignore
arg [/usr/lib/gcc/x86_64-pc-linux-gnu/10.1.0/../../../../lib/crti.o] ==> ignore
arg [/usr/lib/gcc/x86_64-pc-linux-gnu/10.1.0/crtbeginS.o] ==> ignore
arg [-L/usr/lib/gcc/x86_64-pc-linux-gnu/10.1.0] ==> dir [/usr/lib/gcc/x86_64-pc-linux-gnu/10.1.0]
arg [-L/usr/lib/gcc/x86_64-pc-linux-gnu/10.1.0/../../../../lib] ==> dir [/usr/lib/gcc/x86_64-pc-linux-gnu/10.1.0/../../../../lib]
arg [-L/lib/../lib] ==> dir [/lib/../lib]
arg [-L/usr/lib/../lib] ==> dir [/usr/lib/../lib]
arg [-L/usr/lib/gcc/x86_64-pc-linux-gnu/10.1.0/../../..] ==> dir [/usr/lib/gcc/x86_64-pc-linux-gnu/10.1.0/../../..]
arg [CMakeFiles/cmTC_4d9a0.dir/CMakeCXXCompilerABI.cpp.o] ==> ignore
arg [-lstdc++] ==> lib [stdc++]
arg [-lm] ==> lib [m]
arg [-lgcc_s] ==> lib [gcc_s]
arg [-lgcc] ==> lib [gcc]
arg [-lc] ==> lib [c]
arg [-lgcc_s] ==> lib [gcc_s]
arg [-lgcc] ==> lib [gcc]
arg [/usr/lib/gcc/x86_64-pc-linux-gnu/10.1.0/crtendS.o] ==> ignore
arg [/usr/lib/gcc/x86_64-pc-linux-gnu/10.1.0/../../../../lib/crtn.o] ==> ignore
collapse library dir [/usr/lib/gcc/x86_64-pc-linux-gnu/10.1.0] ==> [/usr/lib/gcc/x86_64-pc-linux-gnu/10.1.0]
collapse library dir [/usr/lib/gcc/x86_64-pc-linux-gnu/10.1.0/../../../../lib] ==> [/usr/lib]
collapse library dir [/lib/../lib] ==> [/lib]
collapse library dir [/usr/lib/../lib] ==> [/usr/lib]
collapse library dir [/usr/lib/gcc/x86_64-pc-linux-gnu/10.1.0/../../..] ==> [/usr/lib]
implicit libs: [stdc++;m;gcc_s;gcc;c;gcc_s;gcc]
implicit dirs: [/usr/lib/gcc/x86_64-pc-linux-gnu/10.1.0;/usr/lib;/lib]
implicit fwks: []
Determining if the include file pthread.h exists passed with the following output:
Change Dir: /home/madduci/Projects/openE57/build/linux/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/make cmTC_e3b0c/fast && /usr/bin/make -f CMakeFiles/cmTC_e3b0c.dir/build.make CMakeFiles/cmTC_e3b0c.dir/build
make[1]: Entering directory '/home/madduci/Projects/openE57/build/linux/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_e3b0c.dir/CheckIncludeFile.c.o
/usr/bin/cc -o CMakeFiles/cmTC_e3b0c.dir/CheckIncludeFile.c.o -c /home/madduci/Projects/openE57/build/linux/CMakeFiles/CMakeTmp/CheckIncludeFile.c
Linking C executable cmTC_e3b0c
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_e3b0c.dir/link.txt --verbose=1
/usr/bin/cc CMakeFiles/cmTC_e3b0c.dir/CheckIncludeFile.c.o -o cmTC_e3b0c
make[1]: Leaving directory '/home/madduci/Projects/openE57/build/linux/CMakeFiles/CMakeTmp'
Determining if the function pthread_create exists in the pthread passed with the following output:
Change Dir: /home/madduci/Projects/openE57/build/linux/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/make cmTC_2d465/fast && /usr/bin/make -f CMakeFiles/cmTC_2d465.dir/build.make CMakeFiles/cmTC_2d465.dir/build
make[1]: Entering directory '/home/madduci/Projects/openE57/build/linux/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_2d465.dir/CheckFunctionExists.c.o
/usr/bin/cc -DCHECK_FUNCTION_EXISTS=pthread_create -o CMakeFiles/cmTC_2d465.dir/CheckFunctionExists.c.o -c /usr/share/cmake-3.17/Modules/CheckFunctionExists.c
Linking C executable cmTC_2d465
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_2d465.dir/link.txt --verbose=1
/usr/bin/cc -DCHECK_FUNCTION_EXISTS=pthread_create CMakeFiles/cmTC_2d465.dir/CheckFunctionExists.c.o -o cmTC_2d465 -lpthread
make[1]: Leaving directory '/home/madduci/Projects/openE57/build/linux/CMakeFiles/CMakeTmp'
Performing C++ SOURCE FILE Test COMPILER_HAS_HIDDEN_VISIBILITY succeeded with the following output:
Change Dir: /home/madduci/Projects/openE57/build/linux/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/make cmTC_e33d9/fast && /usr/bin/make -f CMakeFiles/cmTC_e33d9.dir/build.make CMakeFiles/cmTC_e33d9.dir/build
make[1]: Entering directory '/home/madduci/Projects/openE57/build/linux/CMakeFiles/CMakeTmp'
Building CXX object CMakeFiles/cmTC_e33d9.dir/src.cxx.o
/usr/bin/c++ -DCOMPILER_HAS_HIDDEN_VISIBILITY -fvisibility=hidden -std=gnu++17 -o CMakeFiles/cmTC_e33d9.dir/src.cxx.o -c /home/madduci/Projects/openE57/build/linux/CMakeFiles/CMakeTmp/src.cxx
Linking CXX executable cmTC_e33d9
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_e33d9.dir/link.txt --verbose=1
/usr/bin/c++ -DCOMPILER_HAS_HIDDEN_VISIBILITY CMakeFiles/cmTC_e33d9.dir/src.cxx.o -o cmTC_e33d9
make[1]: Leaving directory '/home/madduci/Projects/openE57/build/linux/CMakeFiles/CMakeTmp'
Source file was:
int main() { return 0; }
Performing C++ SOURCE FILE Test COMPILER_HAS_HIDDEN_INLINE_VISIBILITY succeeded with the following output:
Change Dir: /home/madduci/Projects/openE57/build/linux/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/make cmTC_028de/fast && /usr/bin/make -f CMakeFiles/cmTC_028de.dir/build.make CMakeFiles/cmTC_028de.dir/build
make[1]: Entering directory '/home/madduci/Projects/openE57/build/linux/CMakeFiles/CMakeTmp'
Building CXX object CMakeFiles/cmTC_028de.dir/src.cxx.o
/usr/bin/c++ -DCOMPILER_HAS_HIDDEN_INLINE_VISIBILITY -fvisibility-inlines-hidden -std=gnu++17 -o CMakeFiles/cmTC_028de.dir/src.cxx.o -c /home/madduci/Projects/openE57/build/linux/CMakeFiles/CMakeTmp/src.cxx
Linking CXX executable cmTC_028de
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_028de.dir/link.txt --verbose=1
/usr/bin/c++ -DCOMPILER_HAS_HIDDEN_INLINE_VISIBILITY CMakeFiles/cmTC_028de.dir/src.cxx.o -o cmTC_028de
make[1]: Leaving directory '/home/madduci/Projects/openE57/build/linux/CMakeFiles/CMakeTmp'
Source file was:
int main() { return 0; }
Performing C++ SOURCE FILE Test COMPILER_HAS_DEPRECATED_ATTR succeeded with the following output:
Change Dir: /home/madduci/Projects/openE57/build/linux/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/make cmTC_ec977/fast && /usr/bin/make -f CMakeFiles/cmTC_ec977.dir/build.make CMakeFiles/cmTC_ec977.dir/build
make[1]: Entering directory '/home/madduci/Projects/openE57/build/linux/CMakeFiles/CMakeTmp'
Building CXX object CMakeFiles/cmTC_ec977.dir/src.cxx.o
/usr/bin/c++ -DCOMPILER_HAS_DEPRECATED_ATTR -std=gnu++17 -o CMakeFiles/cmTC_ec977.dir/src.cxx.o -c /home/madduci/Projects/openE57/build/linux/CMakeFiles/CMakeTmp/src.cxx
/home/madduci/Projects/openE57/build/linux/CMakeFiles/CMakeTmp/src.cxx: In function int main():
/home/madduci/Projects/openE57/build/linux/CMakeFiles/CMakeTmp/src.cxx:2:34: warning: int somefunc() is deprecated [-Wdeprecated-declarations]
2 | int main() { return somefunc();}
| ^
/home/madduci/Projects/openE57/build/linux/CMakeFiles/CMakeTmp/src.cxx:1:37: note: declared here
1 | __attribute__((__deprecated__)) int somefunc() { return 0; }
| ^~~~~~~~
Linking CXX executable cmTC_ec977
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_ec977.dir/link.txt --verbose=1
/usr/bin/c++ -DCOMPILER_HAS_DEPRECATED_ATTR CMakeFiles/cmTC_ec977.dir/src.cxx.o -o cmTC_ec977
make[1]: Leaving directory '/home/madduci/Projects/openE57/build/linux/CMakeFiles/CMakeTmp'
Source file was:
__attribute__((__deprecated__)) int somefunc() { return 0; }
int main() { return somefunc();}

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,36 @@
# The set of languages for which implicit dependencies are needed:
set(CMAKE_DEPENDS_LANGUAGES
"CXX"
)
# The set of files for implicit dependencies of each language:
set(CMAKE_DEPENDS_CHECK_CXX
"/home/madduci/Projects/openE57/src/LAS/LASReader.cpp" "/home/madduci/Projects/openE57/build/linux/CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o"
)
set(CMAKE_CXX_COMPILER_ID "GNU")
# Preprocessor definitions for this target.
set(CMAKE_TARGET_DEFINITIONS_CXX
"E57_REFIMPL_REVISION_ID=openE57-1.2.0"
"LINUX"
"U_STATIC_IMPLEMENTATION"
"_FORTIFY_SOURCE=2"
"_GLIBCXX_USE_CXX11_ABI=1"
)
# The include file search paths:
set(CMAKE_CXX_TARGET_INCLUDE_PATH
"include"
"../../include"
"/home/madduci/.conan/data/xerces-c/3.2.2/_/_/package/b173bbda18164d49a449ffadc1c9e817f49e819d/include"
"/home/madduci/.conan/data/icu/67.1/_/_/package/a8ceb9852beb2633e3b6f0e115181aa8c3c63b84/include"
"/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include"
"/home/madduci/.conan/data/zlib/1.2.11/_/_/package/19729b9559f3ae196cad45cb2b97468ccb75dcd1/include"
"/home/madduci/.conan/data/bzip2/1.0.8/_/_/package/91a8b22c2c5a149bc617cfc06cdd21bf23b12567/include"
)
# Targets to which this target links.
set(CMAKE_TARGET_LINKED_INFO_FILES
)
# Fortran module output directory.
set(CMAKE_Fortran_TARGET_MODULE_DIR "")

View File

@@ -0,0 +1,119 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 3.17
# 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/madduci/Projects/openE57
# The top-level build directory on which CMake was run.
CMAKE_BINARY_DIR = /home/madduci/Projects/openE57/build/linux
# Include any dependencies generated for this target.
include CMakeFiles/LASReader.dir/depend.make
# Include the progress variables for this target.
include CMakeFiles/LASReader.dir/progress.make
# Include the compile flags for this target's objects.
include CMakeFiles/LASReader.dir/flags.make
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: CMakeFiles/LASReader.dir/flags.make
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: ../../src/LAS/LASReader.cpp
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/madduci/Projects/openE57/build/linux/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o"
/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -o CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o -c /home/madduci/Projects/openE57/src/LAS/LASReader.cpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.i: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.i"
/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/madduci/Projects/openE57/src/LAS/LASReader.cpp > CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.i
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.s: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.s"
/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/madduci/Projects/openE57/src/LAS/LASReader.cpp -o CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.s
# Object files for target LASReader
LASReader_OBJECTS = \
"CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o"
# External object files for target LASReader
LASReader_EXTERNAL_OBJECTS =
lib/libLASReader.a: CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o
lib/libLASReader.a: CMakeFiles/LASReader.dir/build.make
lib/libLASReader.a: CMakeFiles/LASReader.dir/link.txt
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --bold --progress-dir=/home/madduci/Projects/openE57/build/linux/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Linking CXX static library lib/libLASReader.a"
$(CMAKE_COMMAND) -P CMakeFiles/LASReader.dir/cmake_clean_target.cmake
$(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/LASReader.dir/link.txt --verbose=$(VERBOSE)
# Rule to build all files generated by this target.
CMakeFiles/LASReader.dir/build: lib/libLASReader.a
.PHONY : CMakeFiles/LASReader.dir/build
CMakeFiles/LASReader.dir/clean:
$(CMAKE_COMMAND) -P CMakeFiles/LASReader.dir/cmake_clean.cmake
.PHONY : CMakeFiles/LASReader.dir/clean
CMakeFiles/LASReader.dir/depend:
cd /home/madduci/Projects/openE57/build/linux && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/madduci/Projects/openE57 /home/madduci/Projects/openE57 /home/madduci/Projects/openE57/build/linux /home/madduci/Projects/openE57/build/linux /home/madduci/Projects/openE57/build/linux/CMakeFiles/LASReader.dir/DependInfo.cmake --color=$(COLOR)
.PHONY : CMakeFiles/LASReader.dir/depend

View File

@@ -0,0 +1,10 @@
file(REMOVE_RECURSE
"CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o"
"lib/libLASReader.a"
"lib/libLASReader.pdb"
)
# Per-language clean rules from dependency scanning.
foreach(lang CXX)
include(CMakeFiles/LASReader.dir/cmake_clean_${lang}.cmake OPTIONAL)
endforeach()

View File

@@ -0,0 +1,3 @@
file(REMOVE_RECURSE
"lib/libLASReader.a"
)

View File

@@ -0,0 +1,275 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 3.17
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o
../../include/openE57/E57Foundation.h
../../include/openE57/LAS/LASReader.h
../../include/openE57/impl/E57FoundationImpl.h
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/array.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/assert.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/assert/source_location.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/checked_delete.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/compiler/borland.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/compiler/clang.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/compiler/codegear.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/compiler/comeau.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/compiler/common_edg.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/compiler/compaq_cxx.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/compiler/cray.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/compiler/digitalmars.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/compiler/gcc.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/compiler/gcc_xml.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/compiler/greenhills.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/compiler/hp_acc.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/compiler/intel.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/compiler/kai.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/compiler/metrowerks.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/compiler/mpw.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/compiler/nvcc.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/compiler/pathscale.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/compiler/pgi.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/compiler/sgi_mipspro.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/compiler/sunpro_cc.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/compiler/vacpp.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/compiler/visualc.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/compiler/xlcpp.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/compiler/xlcpp_zos.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/detail/posix_features.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/detail/select_compiler_config.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/detail/select_platform_config.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/detail/select_stdlib_config.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/detail/suffix.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/helper_macros.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/no_tr1/memory.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/no_tr1/utility.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/platform/aix.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/platform/amigaos.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/platform/beos.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/platform/bsd.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/platform/cray.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/platform/cygwin.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/platform/hpux.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/platform/irix.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/platform/linux.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/platform/macos.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/platform/qnxnto.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/platform/solaris.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/platform/symbian.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/platform/vms.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/platform/vxworks.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/platform/win32.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/platform/zos.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/pragma_message.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/stdlib/dinkumware.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/stdlib/libcomo.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/stdlib/libcpp.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/stdlib/libstdcpp3.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/stdlib/modena.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/stdlib/msl.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/stdlib/roguewave.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/stdlib/sgi.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/stdlib/stlport.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/stdlib/vacpp.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/stdlib/xlcpp_zos.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/user.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/workaround.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/core/addressof.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/core/checked_delete.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/core/demangle.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/core/enable_if.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/core/swap.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/core/typeinfo.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/crc.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/cstdint.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/current_function.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/detail/iterator.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/detail/workaround.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/enable_shared_from_this.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/exception/exception.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/integer.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/integer_fwd.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/integer_traits.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/limits.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/shared_ptr.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/bad_weak_ptr.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/lightweight_mutex.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/local_counted_base.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/local_sp_deleter.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/lwm_pthreads.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/lwm_std_mutex.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/lwm_win32_cs.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/operator_bool.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/quick_allocator.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/shared_count.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/sp_convertible.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/sp_counted_base.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/sp_counted_base_acc_ia64.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/sp_counted_base_aix.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/sp_counted_base_clang.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/sp_counted_base_cw_ppc.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/sp_counted_base_gcc_ia64.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/sp_counted_base_gcc_mips.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/sp_counted_base_gcc_ppc.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/sp_counted_base_gcc_sparc.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/sp_counted_base_gcc_x86.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/sp_counted_base_nt.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/sp_counted_base_pt.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/sp_counted_base_snc_ps3.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/sp_counted_base_spin.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/sp_counted_base_std_atomic.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/sp_counted_base_sync.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/sp_counted_base_vacpp_ppc.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/sp_counted_base_w32.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/sp_counted_impl.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/sp_disable_deprecated.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/sp_has_sync.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/sp_interlocked.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/sp_noexcept.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/sp_nullptr_t.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/sp_typeinfo_.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/spinlock.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/spinlock_gcc_arm.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/spinlock_nt.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/spinlock_pool.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/spinlock_pt.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/spinlock_std_atomic.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/spinlock_sync.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/spinlock_w32.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/yield_k.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/enable_shared_from_this.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/shared_ptr.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/weak_ptr.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/static_assert.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/swap.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/throw_exception.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/add_lvalue_reference.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/add_reference.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/add_rvalue_reference.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/alignment_of.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/conditional.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/declval.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/detail/config.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/detail/is_function_cxx_03.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/detail/is_function_cxx_11.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/detail/is_function_msvc10_fix.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/detail/is_function_ptr_helper.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/detail/is_function_ptr_tester.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/detail/is_mem_fun_pointer_impl.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/detail/is_mem_fun_pointer_tester.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/detail/is_member_function_pointer_cxx_03.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/detail/is_member_function_pointer_cxx_11.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/detail/is_rvalue_reference_msvc10_fix.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/detail/yes_no_type.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/integral_constant.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/intrinsics.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/is_abstract.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/is_arithmetic.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/is_array.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/is_class.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/is_complete.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/is_convertible.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/is_enum.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/is_floating_point.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/is_function.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/is_integral.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/is_lvalue_reference.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/is_member_function_pointer.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/is_member_pointer.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/is_pod.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/is_pointer.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/is_polymorphic.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/is_reference.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/is_rvalue_reference.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/is_same.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/is_scalar.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/is_union.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/is_void.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/is_volatile.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/remove_cv.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/remove_reference.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/type_with_alignment.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/version.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/weak_ptr.hpp
/home/madduci/.conan/data/xerces-c/3.2.2/_/_/package/b173bbda18164d49a449ffadc1c9e817f49e819d/include/xercesc/dom/DOMError.hpp
/home/madduci/.conan/data/xerces-c/3.2.2/_/_/package/b173bbda18164d49a449ffadc1c9e817f49e819d/include/xercesc/framework/MemoryManager.hpp
/home/madduci/.conan/data/xerces-c/3.2.2/_/_/package/b173bbda18164d49a449ffadc1c9e817f49e819d/include/xercesc/framework/ValidationContext.hpp
/home/madduci/.conan/data/xerces-c/3.2.2/_/_/package/b173bbda18164d49a449ffadc1c9e817f49e819d/include/xercesc/framework/XMLAttDef.hpp
/home/madduci/.conan/data/xerces-c/3.2.2/_/_/package/b173bbda18164d49a449ffadc1c9e817f49e819d/include/xercesc/framework/XMLAttDefList.hpp
/home/madduci/.conan/data/xerces-c/3.2.2/_/_/package/b173bbda18164d49a449ffadc1c9e817f49e819d/include/xercesc/framework/XMLAttr.hpp
/home/madduci/.conan/data/xerces-c/3.2.2/_/_/package/b173bbda18164d49a449ffadc1c9e817f49e819d/include/xercesc/framework/XMLBuffer.hpp
/home/madduci/.conan/data/xerces-c/3.2.2/_/_/package/b173bbda18164d49a449ffadc1c9e817f49e819d/include/xercesc/framework/XMLElementDecl.hpp
/home/madduci/.conan/data/xerces-c/3.2.2/_/_/package/b173bbda18164d49a449ffadc1c9e817f49e819d/include/xercesc/framework/XMLEntityDecl.hpp
/home/madduci/.conan/data/xerces-c/3.2.2/_/_/package/b173bbda18164d49a449ffadc1c9e817f49e819d/include/xercesc/framework/XMLErrorReporter.hpp
/home/madduci/.conan/data/xerces-c/3.2.2/_/_/package/b173bbda18164d49a449ffadc1c9e817f49e819d/include/xercesc/framework/XMLNotationDecl.hpp
/home/madduci/.conan/data/xerces-c/3.2.2/_/_/package/b173bbda18164d49a449ffadc1c9e817f49e819d/include/xercesc/framework/XMLPScanToken.hpp
/home/madduci/.conan/data/xerces-c/3.2.2/_/_/package/b173bbda18164d49a449ffadc1c9e817f49e819d/include/xercesc/framework/XMLValidator.hpp
/home/madduci/.conan/data/xerces-c/3.2.2/_/_/package/b173bbda18164d49a449ffadc1c9e817f49e819d/include/xercesc/framework/XMLValidityCodes.hpp
/home/madduci/.conan/data/xerces-c/3.2.2/_/_/package/b173bbda18164d49a449ffadc1c9e817f49e819d/include/xercesc/framework/psvi/XSConstants.hpp
/home/madduci/.conan/data/xerces-c/3.2.2/_/_/package/b173bbda18164d49a449ffadc1c9e817f49e819d/include/xercesc/framework/psvi/XSObject.hpp
/home/madduci/.conan/data/xerces-c/3.2.2/_/_/package/b173bbda18164d49a449ffadc1c9e817f49e819d/include/xercesc/framework/psvi/XSSimpleTypeDefinition.hpp
/home/madduci/.conan/data/xerces-c/3.2.2/_/_/package/b173bbda18164d49a449ffadc1c9e817f49e819d/include/xercesc/framework/psvi/XSTypeDefinition.hpp
/home/madduci/.conan/data/xerces-c/3.2.2/_/_/package/b173bbda18164d49a449ffadc1c9e817f49e819d/include/xercesc/internal/XProtoType.hpp
/home/madduci/.conan/data/xerces-c/3.2.2/_/_/package/b173bbda18164d49a449ffadc1c9e817f49e819d/include/xercesc/internal/XSerializable.hpp
/home/madduci/.conan/data/xerces-c/3.2.2/_/_/package/b173bbda18164d49a449ffadc1c9e817f49e819d/include/xercesc/internal/XSerializationException.hpp
/home/madduci/.conan/data/xerces-c/3.2.2/_/_/package/b173bbda18164d49a449ffadc1c9e817f49e819d/include/xercesc/internal/XSerializeEngine.hpp
/home/madduci/.conan/data/xerces-c/3.2.2/_/_/package/b173bbda18164d49a449ffadc1c9e817f49e819d/include/xercesc/sax/DTDHandler.hpp
/home/madduci/.conan/data/xerces-c/3.2.2/_/_/package/b173bbda18164d49a449ffadc1c9e817f49e819d/include/xercesc/sax/EntityResolver.hpp
/home/madduci/.conan/data/xerces-c/3.2.2/_/_/package/b173bbda18164d49a449ffadc1c9e817f49e819d/include/xercesc/sax/ErrorHandler.hpp
/home/madduci/.conan/data/xerces-c/3.2.2/_/_/package/b173bbda18164d49a449ffadc1c9e817f49e819d/include/xercesc/sax/SAXException.hpp
/home/madduci/.conan/data/xerces-c/3.2.2/_/_/package/b173bbda18164d49a449ffadc1c9e817f49e819d/include/xercesc/sax/SAXParseException.hpp
/home/madduci/.conan/data/xerces-c/3.2.2/_/_/package/b173bbda18164d49a449ffadc1c9e817f49e819d/include/xercesc/sax2/Attributes.hpp
/home/madduci/.conan/data/xerces-c/3.2.2/_/_/package/b173bbda18164d49a449ffadc1c9e817f49e819d/include/xercesc/sax2/ContentHandler.hpp
/home/madduci/.conan/data/xerces-c/3.2.2/_/_/package/b173bbda18164d49a449ffadc1c9e817f49e819d/include/xercesc/sax2/DeclHandler.hpp
/home/madduci/.conan/data/xerces-c/3.2.2/_/_/package/b173bbda18164d49a449ffadc1c9e817f49e819d/include/xercesc/sax2/DefaultHandler.hpp
/home/madduci/.conan/data/xerces-c/3.2.2/_/_/package/b173bbda18164d49a449ffadc1c9e817f49e819d/include/xercesc/sax2/LexicalHandler.hpp
/home/madduci/.conan/data/xerces-c/3.2.2/_/_/package/b173bbda18164d49a449ffadc1c9e817f49e819d/include/xercesc/sax2/SAX2XMLReader.hpp
/home/madduci/.conan/data/xerces-c/3.2.2/_/_/package/b173bbda18164d49a449ffadc1c9e817f49e819d/include/xercesc/sax2/XMLReaderFactory.hpp
/home/madduci/.conan/data/xerces-c/3.2.2/_/_/package/b173bbda18164d49a449ffadc1c9e817f49e819d/include/xercesc/util/ArrayIndexOutOfBoundsException.hpp
/home/madduci/.conan/data/xerces-c/3.2.2/_/_/package/b173bbda18164d49a449ffadc1c9e817f49e819d/include/xercesc/util/BaseRefVectorOf.c
/home/madduci/.conan/data/xerces-c/3.2.2/_/_/package/b173bbda18164d49a449ffadc1c9e817f49e819d/include/xercesc/util/BaseRefVectorOf.hpp
/home/madduci/.conan/data/xerces-c/3.2.2/_/_/package/b173bbda18164d49a449ffadc1c9e817f49e819d/include/xercesc/util/Hashers.hpp
/home/madduci/.conan/data/xerces-c/3.2.2/_/_/package/b173bbda18164d49a449ffadc1c9e817f49e819d/include/xercesc/util/IllegalArgumentException.hpp
/home/madduci/.conan/data/xerces-c/3.2.2/_/_/package/b173bbda18164d49a449ffadc1c9e817f49e819d/include/xercesc/util/Janitor.c
/home/madduci/.conan/data/xerces-c/3.2.2/_/_/package/b173bbda18164d49a449ffadc1c9e817f49e819d/include/xercesc/util/Janitor.hpp
/home/madduci/.conan/data/xerces-c/3.2.2/_/_/package/b173bbda18164d49a449ffadc1c9e817f49e819d/include/xercesc/util/KVStringPair.hpp
/home/madduci/.conan/data/xerces-c/3.2.2/_/_/package/b173bbda18164d49a449ffadc1c9e817f49e819d/include/xercesc/util/Mutexes.hpp
/home/madduci/.conan/data/xerces-c/3.2.2/_/_/package/b173bbda18164d49a449ffadc1c9e817f49e819d/include/xercesc/util/NameIdPool.c
/home/madduci/.conan/data/xerces-c/3.2.2/_/_/package/b173bbda18164d49a449ffadc1c9e817f49e819d/include/xercesc/util/NameIdPool.hpp
/home/madduci/.conan/data/xerces-c/3.2.2/_/_/package/b173bbda18164d49a449ffadc1c9e817f49e819d/include/xercesc/util/NoSuchElementException.hpp
/home/madduci/.conan/data/xerces-c/3.2.2/_/_/package/b173bbda18164d49a449ffadc1c9e817f49e819d/include/xercesc/util/NullPointerException.hpp
/home/madduci/.conan/data/xerces-c/3.2.2/_/_/package/b173bbda18164d49a449ffadc1c9e817f49e819d/include/xercesc/util/PanicHandler.hpp
/home/madduci/.conan/data/xerces-c/3.2.2/_/_/package/b173bbda18164d49a449ffadc1c9e817f49e819d/include/xercesc/util/PlatformUtils.hpp
/home/madduci/.conan/data/xerces-c/3.2.2/_/_/package/b173bbda18164d49a449ffadc1c9e817f49e819d/include/xercesc/util/QName.hpp
/home/madduci/.conan/data/xerces-c/3.2.2/_/_/package/b173bbda18164d49a449ffadc1c9e817f49e819d/include/xercesc/util/RefArrayVectorOf.c
/home/madduci/.conan/data/xerces-c/3.2.2/_/_/package/b173bbda18164d49a449ffadc1c9e817f49e819d/include/xercesc/util/RefArrayVectorOf.hpp
/home/madduci/.conan/data/xerces-c/3.2.2/_/_/package/b173bbda18164d49a449ffadc1c9e817f49e819d/include/xercesc/util/RefHashTableOf.c
/home/madduci/.conan/data/xerces-c/3.2.2/_/_/package/b173bbda18164d49a449ffadc1c9e817f49e819d/include/xercesc/util/RefHashTableOf.hpp
/home/madduci/.conan/data/xerces-c/3.2.2/_/_/package/b173bbda18164d49a449ffadc1c9e817f49e819d/include/xercesc/util/RefVectorOf.c
/home/madduci/.conan/data/xerces-c/3.2.2/_/_/package/b173bbda18164d49a449ffadc1c9e817f49e819d/include/xercesc/util/RefVectorOf.hpp
/home/madduci/.conan/data/xerces-c/3.2.2/_/_/package/b173bbda18164d49a449ffadc1c9e817f49e819d/include/xercesc/util/RuntimeException.hpp
/home/madduci/.conan/data/xerces-c/3.2.2/_/_/package/b173bbda18164d49a449ffadc1c9e817f49e819d/include/xercesc/util/ValueVectorOf.c
/home/madduci/.conan/data/xerces-c/3.2.2/_/_/package/b173bbda18164d49a449ffadc1c9e817f49e819d/include/xercesc/util/ValueVectorOf.hpp
/home/madduci/.conan/data/xerces-c/3.2.2/_/_/package/b173bbda18164d49a449ffadc1c9e817f49e819d/include/xercesc/util/XMLEnumerator.hpp
/home/madduci/.conan/data/xerces-c/3.2.2/_/_/package/b173bbda18164d49a449ffadc1c9e817f49e819d/include/xercesc/util/XMLExceptMsgs.hpp
/home/madduci/.conan/data/xerces-c/3.2.2/_/_/package/b173bbda18164d49a449ffadc1c9e817f49e819d/include/xercesc/util/XMLException.hpp
/home/madduci/.conan/data/xerces-c/3.2.2/_/_/package/b173bbda18164d49a449ffadc1c9e817f49e819d/include/xercesc/util/XMLFileMgr.hpp
/home/madduci/.conan/data/xerces-c/3.2.2/_/_/package/b173bbda18164d49a449ffadc1c9e817f49e819d/include/xercesc/util/XMLMutexMgr.hpp
/home/madduci/.conan/data/xerces-c/3.2.2/_/_/package/b173bbda18164d49a449ffadc1c9e817f49e819d/include/xercesc/util/XMLString.hpp
/home/madduci/.conan/data/xerces-c/3.2.2/_/_/package/b173bbda18164d49a449ffadc1c9e817f49e819d/include/xercesc/util/XMLUni.hpp
/home/madduci/.conan/data/xerces-c/3.2.2/_/_/package/b173bbda18164d49a449ffadc1c9e817f49e819d/include/xercesc/util/XMLUniDefs.hpp
/home/madduci/.conan/data/xerces-c/3.2.2/_/_/package/b173bbda18164d49a449ffadc1c9e817f49e819d/include/xercesc/util/XMemory.hpp
/home/madduci/.conan/data/xerces-c/3.2.2/_/_/package/b173bbda18164d49a449ffadc1c9e817f49e819d/include/xercesc/util/XercesDefs.hpp
/home/madduci/.conan/data/xerces-c/3.2.2/_/_/package/b173bbda18164d49a449ffadc1c9e817f49e819d/include/xercesc/util/XercesVersion.hpp
/home/madduci/.conan/data/xerces-c/3.2.2/_/_/package/b173bbda18164d49a449ffadc1c9e817f49e819d/include/xercesc/util/Xerces_autoconf_config.hpp
/home/madduci/.conan/data/xerces-c/3.2.2/_/_/package/b173bbda18164d49a449ffadc1c9e817f49e819d/include/xercesc/util/regx/BMPattern.hpp
/home/madduci/.conan/data/xerces-c/3.2.2/_/_/package/b173bbda18164d49a449ffadc1c9e817f49e819d/include/xercesc/util/regx/Op.hpp
/home/madduci/.conan/data/xerces-c/3.2.2/_/_/package/b173bbda18164d49a449ffadc1c9e817f49e819d/include/xercesc/util/regx/OpFactory.hpp
/home/madduci/.conan/data/xerces-c/3.2.2/_/_/package/b173bbda18164d49a449ffadc1c9e817f49e819d/include/xercesc/util/regx/RegularExpression.hpp
/home/madduci/.conan/data/xerces-c/3.2.2/_/_/package/b173bbda18164d49a449ffadc1c9e817f49e819d/include/xercesc/util/regx/RegxUtil.hpp
/home/madduci/.conan/data/xerces-c/3.2.2/_/_/package/b173bbda18164d49a449ffadc1c9e817f49e819d/include/xercesc/util/regx/Token.hpp
/home/madduci/.conan/data/xerces-c/3.2.2/_/_/package/b173bbda18164d49a449ffadc1c9e817f49e819d/include/xercesc/util/regx/TokenFactory.hpp
/home/madduci/.conan/data/xerces-c/3.2.2/_/_/package/b173bbda18164d49a449ffadc1c9e817f49e819d/include/xercesc/validators/common/Grammar.hpp
/home/madduci/.conan/data/xerces-c/3.2.2/_/_/package/b173bbda18164d49a449ffadc1c9e817f49e819d/include/xercesc/validators/datatype/DatatypeValidator.hpp
/home/madduci/.conan/data/xerces-c/3.2.2/_/_/package/b173bbda18164d49a449ffadc1c9e817f49e819d/include/xercesc/validators/schema/SchemaSymbols.hpp
/home/madduci/Projects/openE57/src/LAS/LASReader.cpp

View File

@@ -0,0 +1,275 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 3.17
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: ../../include/openE57/E57Foundation.h
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: ../../include/openE57/LAS/LASReader.h
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: ../../include/openE57/impl/E57FoundationImpl.h
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/array.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/assert.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/assert/source_location.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/checked_delete.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/compiler/borland.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/compiler/clang.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/compiler/codegear.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/compiler/comeau.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/compiler/common_edg.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/compiler/compaq_cxx.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/compiler/cray.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/compiler/digitalmars.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/compiler/gcc.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/compiler/gcc_xml.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/compiler/greenhills.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/compiler/hp_acc.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/compiler/intel.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/compiler/kai.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/compiler/metrowerks.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/compiler/mpw.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/compiler/nvcc.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/compiler/pathscale.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/compiler/pgi.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/compiler/sgi_mipspro.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/compiler/sunpro_cc.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/compiler/vacpp.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/compiler/visualc.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/compiler/xlcpp.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/compiler/xlcpp_zos.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/detail/posix_features.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/detail/select_compiler_config.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/detail/select_platform_config.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/detail/select_stdlib_config.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/detail/suffix.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/helper_macros.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/no_tr1/memory.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/no_tr1/utility.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/platform/aix.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/platform/amigaos.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/platform/beos.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/platform/bsd.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/platform/cray.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/platform/cygwin.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/platform/hpux.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/platform/irix.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/platform/linux.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/platform/macos.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/platform/qnxnto.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/platform/solaris.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/platform/symbian.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/platform/vms.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/platform/vxworks.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/platform/win32.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/platform/zos.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/pragma_message.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/stdlib/dinkumware.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/stdlib/libcomo.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/stdlib/libcpp.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/stdlib/libstdcpp3.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/stdlib/modena.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/stdlib/msl.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/stdlib/roguewave.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/stdlib/sgi.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/stdlib/stlport.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/stdlib/vacpp.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/stdlib/xlcpp_zos.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/user.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/workaround.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/core/addressof.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/core/checked_delete.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/core/demangle.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/core/enable_if.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/core/swap.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/core/typeinfo.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/crc.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/cstdint.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/current_function.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/detail/iterator.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/detail/workaround.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/enable_shared_from_this.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/exception/exception.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/integer.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/integer_fwd.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/integer_traits.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/limits.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/shared_ptr.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/bad_weak_ptr.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/lightweight_mutex.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/local_counted_base.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/local_sp_deleter.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/lwm_pthreads.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/lwm_std_mutex.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/lwm_win32_cs.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/operator_bool.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/quick_allocator.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/shared_count.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/sp_convertible.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/sp_counted_base.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/sp_counted_base_acc_ia64.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/sp_counted_base_aix.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/sp_counted_base_clang.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/sp_counted_base_cw_ppc.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/sp_counted_base_gcc_ia64.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/sp_counted_base_gcc_mips.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/sp_counted_base_gcc_ppc.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/sp_counted_base_gcc_sparc.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/sp_counted_base_gcc_x86.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/sp_counted_base_nt.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/sp_counted_base_pt.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/sp_counted_base_snc_ps3.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/sp_counted_base_spin.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/sp_counted_base_std_atomic.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/sp_counted_base_sync.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/sp_counted_base_vacpp_ppc.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/sp_counted_base_w32.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/sp_counted_impl.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/sp_disable_deprecated.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/sp_has_sync.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/sp_interlocked.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/sp_noexcept.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/sp_nullptr_t.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/sp_typeinfo_.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/spinlock.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/spinlock_gcc_arm.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/spinlock_nt.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/spinlock_pool.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/spinlock_pt.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/spinlock_std_atomic.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/spinlock_sync.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/spinlock_w32.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/yield_k.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/enable_shared_from_this.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/shared_ptr.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/weak_ptr.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/static_assert.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/swap.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/throw_exception.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/add_lvalue_reference.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/add_reference.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/add_rvalue_reference.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/alignment_of.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/conditional.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/declval.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/detail/config.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/detail/is_function_cxx_03.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/detail/is_function_cxx_11.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/detail/is_function_msvc10_fix.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/detail/is_function_ptr_helper.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/detail/is_function_ptr_tester.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/detail/is_mem_fun_pointer_impl.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/detail/is_mem_fun_pointer_tester.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/detail/is_member_function_pointer_cxx_03.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/detail/is_member_function_pointer_cxx_11.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/detail/is_rvalue_reference_msvc10_fix.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/detail/yes_no_type.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/integral_constant.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/intrinsics.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/is_abstract.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/is_arithmetic.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/is_array.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/is_class.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/is_complete.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/is_convertible.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/is_enum.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/is_floating_point.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/is_function.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/is_integral.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/is_lvalue_reference.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/is_member_function_pointer.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/is_member_pointer.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/is_pod.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/is_pointer.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/is_polymorphic.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/is_reference.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/is_rvalue_reference.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/is_same.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/is_scalar.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/is_union.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/is_void.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/is_volatile.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/remove_cv.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/remove_reference.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/type_with_alignment.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/version.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/weak_ptr.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/xerces-c/3.2.2/_/_/package/b173bbda18164d49a449ffadc1c9e817f49e819d/include/xercesc/dom/DOMError.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/xerces-c/3.2.2/_/_/package/b173bbda18164d49a449ffadc1c9e817f49e819d/include/xercesc/framework/MemoryManager.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/xerces-c/3.2.2/_/_/package/b173bbda18164d49a449ffadc1c9e817f49e819d/include/xercesc/framework/ValidationContext.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/xerces-c/3.2.2/_/_/package/b173bbda18164d49a449ffadc1c9e817f49e819d/include/xercesc/framework/XMLAttDef.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/xerces-c/3.2.2/_/_/package/b173bbda18164d49a449ffadc1c9e817f49e819d/include/xercesc/framework/XMLAttDefList.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/xerces-c/3.2.2/_/_/package/b173bbda18164d49a449ffadc1c9e817f49e819d/include/xercesc/framework/XMLAttr.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/xerces-c/3.2.2/_/_/package/b173bbda18164d49a449ffadc1c9e817f49e819d/include/xercesc/framework/XMLBuffer.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/xerces-c/3.2.2/_/_/package/b173bbda18164d49a449ffadc1c9e817f49e819d/include/xercesc/framework/XMLElementDecl.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/xerces-c/3.2.2/_/_/package/b173bbda18164d49a449ffadc1c9e817f49e819d/include/xercesc/framework/XMLEntityDecl.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/xerces-c/3.2.2/_/_/package/b173bbda18164d49a449ffadc1c9e817f49e819d/include/xercesc/framework/XMLErrorReporter.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/xerces-c/3.2.2/_/_/package/b173bbda18164d49a449ffadc1c9e817f49e819d/include/xercesc/framework/XMLNotationDecl.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/xerces-c/3.2.2/_/_/package/b173bbda18164d49a449ffadc1c9e817f49e819d/include/xercesc/framework/XMLPScanToken.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/xerces-c/3.2.2/_/_/package/b173bbda18164d49a449ffadc1c9e817f49e819d/include/xercesc/framework/XMLValidator.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/xerces-c/3.2.2/_/_/package/b173bbda18164d49a449ffadc1c9e817f49e819d/include/xercesc/framework/XMLValidityCodes.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/xerces-c/3.2.2/_/_/package/b173bbda18164d49a449ffadc1c9e817f49e819d/include/xercesc/framework/psvi/XSConstants.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/xerces-c/3.2.2/_/_/package/b173bbda18164d49a449ffadc1c9e817f49e819d/include/xercesc/framework/psvi/XSObject.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/xerces-c/3.2.2/_/_/package/b173bbda18164d49a449ffadc1c9e817f49e819d/include/xercesc/framework/psvi/XSSimpleTypeDefinition.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/xerces-c/3.2.2/_/_/package/b173bbda18164d49a449ffadc1c9e817f49e819d/include/xercesc/framework/psvi/XSTypeDefinition.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/xerces-c/3.2.2/_/_/package/b173bbda18164d49a449ffadc1c9e817f49e819d/include/xercesc/internal/XProtoType.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/xerces-c/3.2.2/_/_/package/b173bbda18164d49a449ffadc1c9e817f49e819d/include/xercesc/internal/XSerializable.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/xerces-c/3.2.2/_/_/package/b173bbda18164d49a449ffadc1c9e817f49e819d/include/xercesc/internal/XSerializationException.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/xerces-c/3.2.2/_/_/package/b173bbda18164d49a449ffadc1c9e817f49e819d/include/xercesc/internal/XSerializeEngine.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/xerces-c/3.2.2/_/_/package/b173bbda18164d49a449ffadc1c9e817f49e819d/include/xercesc/sax/DTDHandler.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/xerces-c/3.2.2/_/_/package/b173bbda18164d49a449ffadc1c9e817f49e819d/include/xercesc/sax/EntityResolver.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/xerces-c/3.2.2/_/_/package/b173bbda18164d49a449ffadc1c9e817f49e819d/include/xercesc/sax/ErrorHandler.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/xerces-c/3.2.2/_/_/package/b173bbda18164d49a449ffadc1c9e817f49e819d/include/xercesc/sax/SAXException.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/xerces-c/3.2.2/_/_/package/b173bbda18164d49a449ffadc1c9e817f49e819d/include/xercesc/sax/SAXParseException.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/xerces-c/3.2.2/_/_/package/b173bbda18164d49a449ffadc1c9e817f49e819d/include/xercesc/sax2/Attributes.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/xerces-c/3.2.2/_/_/package/b173bbda18164d49a449ffadc1c9e817f49e819d/include/xercesc/sax2/ContentHandler.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/xerces-c/3.2.2/_/_/package/b173bbda18164d49a449ffadc1c9e817f49e819d/include/xercesc/sax2/DeclHandler.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/xerces-c/3.2.2/_/_/package/b173bbda18164d49a449ffadc1c9e817f49e819d/include/xercesc/sax2/DefaultHandler.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/xerces-c/3.2.2/_/_/package/b173bbda18164d49a449ffadc1c9e817f49e819d/include/xercesc/sax2/LexicalHandler.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/xerces-c/3.2.2/_/_/package/b173bbda18164d49a449ffadc1c9e817f49e819d/include/xercesc/sax2/SAX2XMLReader.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/xerces-c/3.2.2/_/_/package/b173bbda18164d49a449ffadc1c9e817f49e819d/include/xercesc/sax2/XMLReaderFactory.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/xerces-c/3.2.2/_/_/package/b173bbda18164d49a449ffadc1c9e817f49e819d/include/xercesc/util/ArrayIndexOutOfBoundsException.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/xerces-c/3.2.2/_/_/package/b173bbda18164d49a449ffadc1c9e817f49e819d/include/xercesc/util/BaseRefVectorOf.c
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/xerces-c/3.2.2/_/_/package/b173bbda18164d49a449ffadc1c9e817f49e819d/include/xercesc/util/BaseRefVectorOf.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/xerces-c/3.2.2/_/_/package/b173bbda18164d49a449ffadc1c9e817f49e819d/include/xercesc/util/Hashers.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/xerces-c/3.2.2/_/_/package/b173bbda18164d49a449ffadc1c9e817f49e819d/include/xercesc/util/IllegalArgumentException.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/xerces-c/3.2.2/_/_/package/b173bbda18164d49a449ffadc1c9e817f49e819d/include/xercesc/util/Janitor.c
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/xerces-c/3.2.2/_/_/package/b173bbda18164d49a449ffadc1c9e817f49e819d/include/xercesc/util/Janitor.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/xerces-c/3.2.2/_/_/package/b173bbda18164d49a449ffadc1c9e817f49e819d/include/xercesc/util/KVStringPair.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/xerces-c/3.2.2/_/_/package/b173bbda18164d49a449ffadc1c9e817f49e819d/include/xercesc/util/Mutexes.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/xerces-c/3.2.2/_/_/package/b173bbda18164d49a449ffadc1c9e817f49e819d/include/xercesc/util/NameIdPool.c
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/xerces-c/3.2.2/_/_/package/b173bbda18164d49a449ffadc1c9e817f49e819d/include/xercesc/util/NameIdPool.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/xerces-c/3.2.2/_/_/package/b173bbda18164d49a449ffadc1c9e817f49e819d/include/xercesc/util/NoSuchElementException.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/xerces-c/3.2.2/_/_/package/b173bbda18164d49a449ffadc1c9e817f49e819d/include/xercesc/util/NullPointerException.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/xerces-c/3.2.2/_/_/package/b173bbda18164d49a449ffadc1c9e817f49e819d/include/xercesc/util/PanicHandler.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/xerces-c/3.2.2/_/_/package/b173bbda18164d49a449ffadc1c9e817f49e819d/include/xercesc/util/PlatformUtils.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/xerces-c/3.2.2/_/_/package/b173bbda18164d49a449ffadc1c9e817f49e819d/include/xercesc/util/QName.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/xerces-c/3.2.2/_/_/package/b173bbda18164d49a449ffadc1c9e817f49e819d/include/xercesc/util/RefArrayVectorOf.c
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/xerces-c/3.2.2/_/_/package/b173bbda18164d49a449ffadc1c9e817f49e819d/include/xercesc/util/RefArrayVectorOf.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/xerces-c/3.2.2/_/_/package/b173bbda18164d49a449ffadc1c9e817f49e819d/include/xercesc/util/RefHashTableOf.c
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/xerces-c/3.2.2/_/_/package/b173bbda18164d49a449ffadc1c9e817f49e819d/include/xercesc/util/RefHashTableOf.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/xerces-c/3.2.2/_/_/package/b173bbda18164d49a449ffadc1c9e817f49e819d/include/xercesc/util/RefVectorOf.c
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/xerces-c/3.2.2/_/_/package/b173bbda18164d49a449ffadc1c9e817f49e819d/include/xercesc/util/RefVectorOf.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/xerces-c/3.2.2/_/_/package/b173bbda18164d49a449ffadc1c9e817f49e819d/include/xercesc/util/RuntimeException.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/xerces-c/3.2.2/_/_/package/b173bbda18164d49a449ffadc1c9e817f49e819d/include/xercesc/util/ValueVectorOf.c
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/xerces-c/3.2.2/_/_/package/b173bbda18164d49a449ffadc1c9e817f49e819d/include/xercesc/util/ValueVectorOf.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/xerces-c/3.2.2/_/_/package/b173bbda18164d49a449ffadc1c9e817f49e819d/include/xercesc/util/XMLEnumerator.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/xerces-c/3.2.2/_/_/package/b173bbda18164d49a449ffadc1c9e817f49e819d/include/xercesc/util/XMLExceptMsgs.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/xerces-c/3.2.2/_/_/package/b173bbda18164d49a449ffadc1c9e817f49e819d/include/xercesc/util/XMLException.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/xerces-c/3.2.2/_/_/package/b173bbda18164d49a449ffadc1c9e817f49e819d/include/xercesc/util/XMLFileMgr.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/xerces-c/3.2.2/_/_/package/b173bbda18164d49a449ffadc1c9e817f49e819d/include/xercesc/util/XMLMutexMgr.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/xerces-c/3.2.2/_/_/package/b173bbda18164d49a449ffadc1c9e817f49e819d/include/xercesc/util/XMLString.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/xerces-c/3.2.2/_/_/package/b173bbda18164d49a449ffadc1c9e817f49e819d/include/xercesc/util/XMLUni.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/xerces-c/3.2.2/_/_/package/b173bbda18164d49a449ffadc1c9e817f49e819d/include/xercesc/util/XMLUniDefs.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/xerces-c/3.2.2/_/_/package/b173bbda18164d49a449ffadc1c9e817f49e819d/include/xercesc/util/XMemory.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/xerces-c/3.2.2/_/_/package/b173bbda18164d49a449ffadc1c9e817f49e819d/include/xercesc/util/XercesDefs.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/xerces-c/3.2.2/_/_/package/b173bbda18164d49a449ffadc1c9e817f49e819d/include/xercesc/util/XercesVersion.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/xerces-c/3.2.2/_/_/package/b173bbda18164d49a449ffadc1c9e817f49e819d/include/xercesc/util/Xerces_autoconf_config.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/xerces-c/3.2.2/_/_/package/b173bbda18164d49a449ffadc1c9e817f49e819d/include/xercesc/util/regx/BMPattern.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/xerces-c/3.2.2/_/_/package/b173bbda18164d49a449ffadc1c9e817f49e819d/include/xercesc/util/regx/Op.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/xerces-c/3.2.2/_/_/package/b173bbda18164d49a449ffadc1c9e817f49e819d/include/xercesc/util/regx/OpFactory.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/xerces-c/3.2.2/_/_/package/b173bbda18164d49a449ffadc1c9e817f49e819d/include/xercesc/util/regx/RegularExpression.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/xerces-c/3.2.2/_/_/package/b173bbda18164d49a449ffadc1c9e817f49e819d/include/xercesc/util/regx/RegxUtil.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/xerces-c/3.2.2/_/_/package/b173bbda18164d49a449ffadc1c9e817f49e819d/include/xercesc/util/regx/Token.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/xerces-c/3.2.2/_/_/package/b173bbda18164d49a449ffadc1c9e817f49e819d/include/xercesc/util/regx/TokenFactory.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/xerces-c/3.2.2/_/_/package/b173bbda18164d49a449ffadc1c9e817f49e819d/include/xercesc/validators/common/Grammar.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/xerces-c/3.2.2/_/_/package/b173bbda18164d49a449ffadc1c9e817f49e819d/include/xercesc/validators/datatype/DatatypeValidator.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: /home/madduci/.conan/data/xerces-c/3.2.2/_/_/package/b173bbda18164d49a449ffadc1c9e817f49e819d/include/xercesc/validators/schema/SchemaSymbols.hpp
CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o: ../../src/LAS/LASReader.cpp

View File

@@ -0,0 +1,10 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 3.17
# compile CXX with /usr/bin/c++
CXX_FLAGS = -O3 -DNDEBUG -Wall -Wextra -Wpedantic -O2 -std=gnu++17
CXX_DEFINES = -DE57_REFIMPL_REVISION_ID=openE57-1.2.0 -DLINUX -DU_STATIC_IMPLEMENTATION -D_FORTIFY_SOURCE=2 -D_GLIBCXX_USE_CXX11_ABI=1
CXX_INCLUDES = -I/home/madduci/Projects/openE57/build/linux/include -I/home/madduci/Projects/openE57/include -isystem /home/madduci/.conan/data/xerces-c/3.2.2/_/_/package/b173bbda18164d49a449ffadc1c9e817f49e819d/include -isystem /home/madduci/.conan/data/icu/67.1/_/_/package/a8ceb9852beb2633e3b6f0e115181aa8c3c63b84/include -isystem /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include -isystem /home/madduci/.conan/data/zlib/1.2.11/_/_/package/19729b9559f3ae196cad45cb2b97468ccb75dcd1/include -isystem /home/madduci/.conan/data/bzip2/1.0.8/_/_/package/91a8b22c2c5a149bc617cfc06cdd21bf23b12567/include

View File

@@ -0,0 +1,2 @@
/usr/bin/ar qc lib/libLASReader.a CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o
/usr/bin/ranlib lib/libLASReader.a

View File

@@ -0,0 +1,3 @@
CMAKE_PROGRESS_1 = 5
CMAKE_PROGRESS_2 = 6

View File

@@ -0,0 +1,89 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 3.17
# 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.17.3/CMakeCCompiler.cmake"
"CMakeFiles/3.17.3/CMakeCXXCompiler.cmake"
"CMakeFiles/3.17.3/CMakeSystem.cmake"
"conanbuildinfo.cmake"
"../../cmake/compiler_options.cmake"
"../../cmake/dependencies.cmake"
"../../examples/CMakeLists.txt"
"../../include/config.h.in"
"../../tools/CMakeLists.txt"
"/usr/share/cmake-3.17/Modules/CMakeCInformation.cmake"
"/usr/share/cmake-3.17/Modules/CMakeCXXInformation.cmake"
"/usr/share/cmake-3.17/Modules/CMakeCheckCompilerFlagCommonPatterns.cmake"
"/usr/share/cmake-3.17/Modules/CMakeCommonLanguageInclude.cmake"
"/usr/share/cmake-3.17/Modules/CMakeGenericSystem.cmake"
"/usr/share/cmake-3.17/Modules/CMakeInitializeConfigs.cmake"
"/usr/share/cmake-3.17/Modules/CMakeLanguageInformation.cmake"
"/usr/share/cmake-3.17/Modules/CMakePackageConfigHelpers.cmake"
"/usr/share/cmake-3.17/Modules/CMakeParseArguments.cmake"
"/usr/share/cmake-3.17/Modules/CMakeSystemSpecificInformation.cmake"
"/usr/share/cmake-3.17/Modules/CMakeSystemSpecificInitialize.cmake"
"/usr/share/cmake-3.17/Modules/CPack.cmake"
"/usr/share/cmake-3.17/Modules/CPackComponent.cmake"
"/usr/share/cmake-3.17/Modules/CheckCCompilerFlag.cmake"
"/usr/share/cmake-3.17/Modules/CheckCSourceCompiles.cmake"
"/usr/share/cmake-3.17/Modules/CheckCXXCompilerFlag.cmake"
"/usr/share/cmake-3.17/Modules/CheckCXXSourceCompiles.cmake"
"/usr/share/cmake-3.17/Modules/CheckIncludeFile.cmake"
"/usr/share/cmake-3.17/Modules/CheckLibraryExists.cmake"
"/usr/share/cmake-3.17/Modules/Compiler/CMakeCommonCompilerMacros.cmake"
"/usr/share/cmake-3.17/Modules/Compiler/GNU-C.cmake"
"/usr/share/cmake-3.17/Modules/Compiler/GNU-CXX.cmake"
"/usr/share/cmake-3.17/Modules/Compiler/GNU.cmake"
"/usr/share/cmake-3.17/Modules/FindPackageHandleStandardArgs.cmake"
"/usr/share/cmake-3.17/Modules/FindPackageMessage.cmake"
"/usr/share/cmake-3.17/Modules/FindThreads.cmake"
"/usr/share/cmake-3.17/Modules/GNUInstallDirs.cmake"
"/usr/share/cmake-3.17/Modules/GenerateExportHeader.cmake"
"/usr/share/cmake-3.17/Modules/InstallRequiredSystemLibraries.cmake"
"/usr/share/cmake-3.17/Modules/Internal/CMakeCheckCompilerFlag.cmake"
"/usr/share/cmake-3.17/Modules/Platform/Linux-GNU-C.cmake"
"/usr/share/cmake-3.17/Modules/Platform/Linux-GNU-CXX.cmake"
"/usr/share/cmake-3.17/Modules/Platform/Linux-GNU.cmake"
"/usr/share/cmake-3.17/Modules/Platform/Linux.cmake"
"/usr/share/cmake-3.17/Modules/Platform/UnixPaths.cmake"
"/usr/share/cmake-3.17/Modules/WriteBasicConfigVersionFile.cmake"
"/usr/share/cmake-3.17/Modules/exportheader.cmake.in"
"/usr/share/cmake-3.17/Templates/CPackConfig.cmake.in"
)
# The corresponding makefile is:
set(CMAKE_MAKEFILE_OUTPUTS
"Makefile"
"CMakeFiles/cmake.check_cache"
)
# Byproducts of CMake generate step:
set(CMAKE_MAKEFILE_PRODUCTS
"include/config.h"
"opene57_export.h"
"CPackConfig.cmake"
"CPackSourceConfig.cmake"
"CMakeFiles/CMakeDirectoryInformation.cmake"
"examples/CMakeFiles/CMakeDirectoryInformation.cmake"
"tools/CMakeFiles/CMakeDirectoryInformation.cmake"
)
# Dependency information for all targets:
set(CMAKE_DEPEND_INFO_FILES
"CMakeFiles/time_conversion.dir/DependInfo.cmake"
"CMakeFiles/LASReader.dir/DependInfo.cmake"
"CMakeFiles/openE57.dir/DependInfo.cmake"
"examples/CMakeFiles/DemoRead01.dir/DependInfo.cmake"
"examples/CMakeFiles/DemoWrite01.dir/DependInfo.cmake"
"tools/CMakeFiles/las2e57.dir/DependInfo.cmake"
"tools/CMakeFiles/e57xmldump.dir/DependInfo.cmake"
"tools/CMakeFiles/e57validate.dir/DependInfo.cmake"
"tools/CMakeFiles/e57unpack.dir/DependInfo.cmake"
"tools/CMakeFiles/e57fields.dir/DependInfo.cmake"
)

View File

@@ -0,0 +1,426 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 3.17
# 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/madduci/Projects/openE57
# The top-level build directory on which CMake was run.
CMAKE_BINARY_DIR = /home/madduci/Projects/openE57/build/linux
#=============================================================================
# Directory level rules for the build root directory
# The main recursive "all" target.
all: CMakeFiles/time_conversion.dir/all
all: CMakeFiles/LASReader.dir/all
all: CMakeFiles/openE57.dir/all
all: examples/all
all: tools/all
.PHONY : all
# The main recursive "preinstall" target.
preinstall: examples/preinstall
preinstall: tools/preinstall
.PHONY : preinstall
# The main recursive "clean" target.
clean: CMakeFiles/time_conversion.dir/clean
clean: CMakeFiles/LASReader.dir/clean
clean: CMakeFiles/openE57.dir/clean
clean: examples/clean
clean: tools/clean
.PHONY : clean
#=============================================================================
# Directory level rules for directory examples
# Recursive "all" directory target.
examples/all: examples/CMakeFiles/DemoRead01.dir/all
examples/all: examples/CMakeFiles/DemoWrite01.dir/all
.PHONY : examples/all
# Recursive "preinstall" directory target.
examples/preinstall:
.PHONY : examples/preinstall
# Recursive "clean" directory target.
examples/clean: examples/CMakeFiles/DemoRead01.dir/clean
examples/clean: examples/CMakeFiles/DemoWrite01.dir/clean
.PHONY : examples/clean
#=============================================================================
# Directory level rules for directory tools
# Recursive "all" directory target.
tools/all: tools/CMakeFiles/las2e57.dir/all
tools/all: tools/CMakeFiles/e57xmldump.dir/all
tools/all: tools/CMakeFiles/e57validate.dir/all
tools/all: tools/CMakeFiles/e57unpack.dir/all
tools/all: tools/CMakeFiles/e57fields.dir/all
.PHONY : tools/all
# Recursive "preinstall" directory target.
tools/preinstall:
.PHONY : tools/preinstall
# Recursive "clean" directory target.
tools/clean: tools/CMakeFiles/las2e57.dir/clean
tools/clean: tools/CMakeFiles/e57xmldump.dir/clean
tools/clean: tools/CMakeFiles/e57validate.dir/clean
tools/clean: tools/CMakeFiles/e57unpack.dir/clean
tools/clean: tools/CMakeFiles/e57fields.dir/clean
.PHONY : tools/clean
#=============================================================================
# Target rules for target CMakeFiles/time_conversion.dir
# All Build rule for target.
CMakeFiles/time_conversion.dir/all:
$(MAKE) $(MAKESILENT) -f CMakeFiles/time_conversion.dir/build.make CMakeFiles/time_conversion.dir/depend
$(MAKE) $(MAKESILENT) -f CMakeFiles/time_conversion.dir/build.make CMakeFiles/time_conversion.dir/build
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/madduci/Projects/openE57/build/linux/CMakeFiles --progress-num=22,23 "Built target time_conversion"
.PHONY : CMakeFiles/time_conversion.dir/all
# Build rule for subdir invocation for target.
CMakeFiles/time_conversion.dir/rule: cmake_check_build_system
$(CMAKE_COMMAND) -E cmake_progress_start /home/madduci/Projects/openE57/build/linux/CMakeFiles 2
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 CMakeFiles/time_conversion.dir/all
$(CMAKE_COMMAND) -E cmake_progress_start /home/madduci/Projects/openE57/build/linux/CMakeFiles 0
.PHONY : CMakeFiles/time_conversion.dir/rule
# Convenience name for target.
time_conversion: CMakeFiles/time_conversion.dir/rule
.PHONY : time_conversion
# clean rule for target.
CMakeFiles/time_conversion.dir/clean:
$(MAKE) $(MAKESILENT) -f CMakeFiles/time_conversion.dir/build.make CMakeFiles/time_conversion.dir/clean
.PHONY : CMakeFiles/time_conversion.dir/clean
#=============================================================================
# Target rules for target CMakeFiles/LASReader.dir
# All Build rule for target.
CMakeFiles/LASReader.dir/all:
$(MAKE) $(MAKESILENT) -f CMakeFiles/LASReader.dir/build.make CMakeFiles/LASReader.dir/depend
$(MAKE) $(MAKESILENT) -f CMakeFiles/LASReader.dir/build.make CMakeFiles/LASReader.dir/build
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/madduci/Projects/openE57/build/linux/CMakeFiles --progress-num=5,6 "Built target LASReader"
.PHONY : CMakeFiles/LASReader.dir/all
# Build rule for subdir invocation for target.
CMakeFiles/LASReader.dir/rule: cmake_check_build_system
$(CMAKE_COMMAND) -E cmake_progress_start /home/madduci/Projects/openE57/build/linux/CMakeFiles 2
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 CMakeFiles/LASReader.dir/all
$(CMAKE_COMMAND) -E cmake_progress_start /home/madduci/Projects/openE57/build/linux/CMakeFiles 0
.PHONY : CMakeFiles/LASReader.dir/rule
# Convenience name for target.
LASReader: CMakeFiles/LASReader.dir/rule
.PHONY : LASReader
# clean rule for target.
CMakeFiles/LASReader.dir/clean:
$(MAKE) $(MAKESILENT) -f CMakeFiles/LASReader.dir/build.make CMakeFiles/LASReader.dir/clean
.PHONY : CMakeFiles/LASReader.dir/clean
#=============================================================================
# Target rules for target CMakeFiles/openE57.dir
# All Build rule for target.
CMakeFiles/openE57.dir/all:
$(MAKE) $(MAKESILENT) -f CMakeFiles/openE57.dir/build.make CMakeFiles/openE57.dir/depend
$(MAKE) $(MAKESILENT) -f CMakeFiles/openE57.dir/build.make CMakeFiles/openE57.dir/build
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/madduci/Projects/openE57/build/linux/CMakeFiles --progress-num=17,18,19,20,21 "Built target openE57"
.PHONY : CMakeFiles/openE57.dir/all
# Build rule for subdir invocation for target.
CMakeFiles/openE57.dir/rule: cmake_check_build_system
$(CMAKE_COMMAND) -E cmake_progress_start /home/madduci/Projects/openE57/build/linux/CMakeFiles 5
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 CMakeFiles/openE57.dir/all
$(CMAKE_COMMAND) -E cmake_progress_start /home/madduci/Projects/openE57/build/linux/CMakeFiles 0
.PHONY : CMakeFiles/openE57.dir/rule
# Convenience name for target.
openE57: CMakeFiles/openE57.dir/rule
.PHONY : openE57
# clean rule for target.
CMakeFiles/openE57.dir/clean:
$(MAKE) $(MAKESILENT) -f CMakeFiles/openE57.dir/build.make CMakeFiles/openE57.dir/clean
.PHONY : CMakeFiles/openE57.dir/clean
#=============================================================================
# Target rules for target examples/CMakeFiles/DemoRead01.dir
# All Build rule for target.
examples/CMakeFiles/DemoRead01.dir/all: CMakeFiles/openE57.dir/all
$(MAKE) $(MAKESILENT) -f examples/CMakeFiles/DemoRead01.dir/build.make examples/CMakeFiles/DemoRead01.dir/depend
$(MAKE) $(MAKESILENT) -f examples/CMakeFiles/DemoRead01.dir/build.make examples/CMakeFiles/DemoRead01.dir/build
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/madduci/Projects/openE57/build/linux/CMakeFiles --progress-num=1,2 "Built target DemoRead01"
.PHONY : examples/CMakeFiles/DemoRead01.dir/all
# Build rule for subdir invocation for target.
examples/CMakeFiles/DemoRead01.dir/rule: cmake_check_build_system
$(CMAKE_COMMAND) -E cmake_progress_start /home/madduci/Projects/openE57/build/linux/CMakeFiles 7
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 examples/CMakeFiles/DemoRead01.dir/all
$(CMAKE_COMMAND) -E cmake_progress_start /home/madduci/Projects/openE57/build/linux/CMakeFiles 0
.PHONY : examples/CMakeFiles/DemoRead01.dir/rule
# Convenience name for target.
DemoRead01: examples/CMakeFiles/DemoRead01.dir/rule
.PHONY : DemoRead01
# clean rule for target.
examples/CMakeFiles/DemoRead01.dir/clean:
$(MAKE) $(MAKESILENT) -f examples/CMakeFiles/DemoRead01.dir/build.make examples/CMakeFiles/DemoRead01.dir/clean
.PHONY : examples/CMakeFiles/DemoRead01.dir/clean
#=============================================================================
# Target rules for target examples/CMakeFiles/DemoWrite01.dir
# All Build rule for target.
examples/CMakeFiles/DemoWrite01.dir/all: CMakeFiles/openE57.dir/all
$(MAKE) $(MAKESILENT) -f examples/CMakeFiles/DemoWrite01.dir/build.make examples/CMakeFiles/DemoWrite01.dir/depend
$(MAKE) $(MAKESILENT) -f examples/CMakeFiles/DemoWrite01.dir/build.make examples/CMakeFiles/DemoWrite01.dir/build
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/madduci/Projects/openE57/build/linux/CMakeFiles --progress-num=3,4 "Built target DemoWrite01"
.PHONY : examples/CMakeFiles/DemoWrite01.dir/all
# Build rule for subdir invocation for target.
examples/CMakeFiles/DemoWrite01.dir/rule: cmake_check_build_system
$(CMAKE_COMMAND) -E cmake_progress_start /home/madduci/Projects/openE57/build/linux/CMakeFiles 7
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 examples/CMakeFiles/DemoWrite01.dir/all
$(CMAKE_COMMAND) -E cmake_progress_start /home/madduci/Projects/openE57/build/linux/CMakeFiles 0
.PHONY : examples/CMakeFiles/DemoWrite01.dir/rule
# Convenience name for target.
DemoWrite01: examples/CMakeFiles/DemoWrite01.dir/rule
.PHONY : DemoWrite01
# clean rule for target.
examples/CMakeFiles/DemoWrite01.dir/clean:
$(MAKE) $(MAKESILENT) -f examples/CMakeFiles/DemoWrite01.dir/build.make examples/CMakeFiles/DemoWrite01.dir/clean
.PHONY : examples/CMakeFiles/DemoWrite01.dir/clean
#=============================================================================
# Target rules for target tools/CMakeFiles/las2e57.dir
# All Build rule for target.
tools/CMakeFiles/las2e57.dir/all: CMakeFiles/time_conversion.dir/all
tools/CMakeFiles/las2e57.dir/all: CMakeFiles/LASReader.dir/all
tools/CMakeFiles/las2e57.dir/all: CMakeFiles/openE57.dir/all
$(MAKE) $(MAKESILENT) -f tools/CMakeFiles/las2e57.dir/build.make tools/CMakeFiles/las2e57.dir/depend
$(MAKE) $(MAKESILENT) -f tools/CMakeFiles/las2e57.dir/build.make tools/CMakeFiles/las2e57.dir/build
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/madduci/Projects/openE57/build/linux/CMakeFiles --progress-num=15,16 "Built target las2e57"
.PHONY : tools/CMakeFiles/las2e57.dir/all
# Build rule for subdir invocation for target.
tools/CMakeFiles/las2e57.dir/rule: cmake_check_build_system
$(CMAKE_COMMAND) -E cmake_progress_start /home/madduci/Projects/openE57/build/linux/CMakeFiles 11
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 tools/CMakeFiles/las2e57.dir/all
$(CMAKE_COMMAND) -E cmake_progress_start /home/madduci/Projects/openE57/build/linux/CMakeFiles 0
.PHONY : tools/CMakeFiles/las2e57.dir/rule
# Convenience name for target.
las2e57: tools/CMakeFiles/las2e57.dir/rule
.PHONY : las2e57
# clean rule for target.
tools/CMakeFiles/las2e57.dir/clean:
$(MAKE) $(MAKESILENT) -f tools/CMakeFiles/las2e57.dir/build.make tools/CMakeFiles/las2e57.dir/clean
.PHONY : tools/CMakeFiles/las2e57.dir/clean
#=============================================================================
# Target rules for target tools/CMakeFiles/e57xmldump.dir
# All Build rule for target.
tools/CMakeFiles/e57xmldump.dir/all: CMakeFiles/openE57.dir/all
$(MAKE) $(MAKESILENT) -f tools/CMakeFiles/e57xmldump.dir/build.make tools/CMakeFiles/e57xmldump.dir/depend
$(MAKE) $(MAKESILENT) -f tools/CMakeFiles/e57xmldump.dir/build.make tools/CMakeFiles/e57xmldump.dir/build
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/madduci/Projects/openE57/build/linux/CMakeFiles --progress-num=13,14 "Built target e57xmldump"
.PHONY : tools/CMakeFiles/e57xmldump.dir/all
# Build rule for subdir invocation for target.
tools/CMakeFiles/e57xmldump.dir/rule: cmake_check_build_system
$(CMAKE_COMMAND) -E cmake_progress_start /home/madduci/Projects/openE57/build/linux/CMakeFiles 7
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 tools/CMakeFiles/e57xmldump.dir/all
$(CMAKE_COMMAND) -E cmake_progress_start /home/madduci/Projects/openE57/build/linux/CMakeFiles 0
.PHONY : tools/CMakeFiles/e57xmldump.dir/rule
# Convenience name for target.
e57xmldump: tools/CMakeFiles/e57xmldump.dir/rule
.PHONY : e57xmldump
# clean rule for target.
tools/CMakeFiles/e57xmldump.dir/clean:
$(MAKE) $(MAKESILENT) -f tools/CMakeFiles/e57xmldump.dir/build.make tools/CMakeFiles/e57xmldump.dir/clean
.PHONY : tools/CMakeFiles/e57xmldump.dir/clean
#=============================================================================
# Target rules for target tools/CMakeFiles/e57validate.dir
# All Build rule for target.
tools/CMakeFiles/e57validate.dir/all: CMakeFiles/openE57.dir/all
$(MAKE) $(MAKESILENT) -f tools/CMakeFiles/e57validate.dir/build.make tools/CMakeFiles/e57validate.dir/depend
$(MAKE) $(MAKESILENT) -f tools/CMakeFiles/e57validate.dir/build.make tools/CMakeFiles/e57validate.dir/build
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/madduci/Projects/openE57/build/linux/CMakeFiles --progress-num=11,12 "Built target e57validate"
.PHONY : tools/CMakeFiles/e57validate.dir/all
# Build rule for subdir invocation for target.
tools/CMakeFiles/e57validate.dir/rule: cmake_check_build_system
$(CMAKE_COMMAND) -E cmake_progress_start /home/madduci/Projects/openE57/build/linux/CMakeFiles 7
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 tools/CMakeFiles/e57validate.dir/all
$(CMAKE_COMMAND) -E cmake_progress_start /home/madduci/Projects/openE57/build/linux/CMakeFiles 0
.PHONY : tools/CMakeFiles/e57validate.dir/rule
# Convenience name for target.
e57validate: tools/CMakeFiles/e57validate.dir/rule
.PHONY : e57validate
# clean rule for target.
tools/CMakeFiles/e57validate.dir/clean:
$(MAKE) $(MAKESILENT) -f tools/CMakeFiles/e57validate.dir/build.make tools/CMakeFiles/e57validate.dir/clean
.PHONY : tools/CMakeFiles/e57validate.dir/clean
#=============================================================================
# Target rules for target tools/CMakeFiles/e57unpack.dir
# All Build rule for target.
tools/CMakeFiles/e57unpack.dir/all: CMakeFiles/openE57.dir/all
$(MAKE) $(MAKESILENT) -f tools/CMakeFiles/e57unpack.dir/build.make tools/CMakeFiles/e57unpack.dir/depend
$(MAKE) $(MAKESILENT) -f tools/CMakeFiles/e57unpack.dir/build.make tools/CMakeFiles/e57unpack.dir/build
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/madduci/Projects/openE57/build/linux/CMakeFiles --progress-num=9,10 "Built target e57unpack"
.PHONY : tools/CMakeFiles/e57unpack.dir/all
# Build rule for subdir invocation for target.
tools/CMakeFiles/e57unpack.dir/rule: cmake_check_build_system
$(CMAKE_COMMAND) -E cmake_progress_start /home/madduci/Projects/openE57/build/linux/CMakeFiles 7
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 tools/CMakeFiles/e57unpack.dir/all
$(CMAKE_COMMAND) -E cmake_progress_start /home/madduci/Projects/openE57/build/linux/CMakeFiles 0
.PHONY : tools/CMakeFiles/e57unpack.dir/rule
# Convenience name for target.
e57unpack: tools/CMakeFiles/e57unpack.dir/rule
.PHONY : e57unpack
# clean rule for target.
tools/CMakeFiles/e57unpack.dir/clean:
$(MAKE) $(MAKESILENT) -f tools/CMakeFiles/e57unpack.dir/build.make tools/CMakeFiles/e57unpack.dir/clean
.PHONY : tools/CMakeFiles/e57unpack.dir/clean
#=============================================================================
# Target rules for target tools/CMakeFiles/e57fields.dir
# All Build rule for target.
tools/CMakeFiles/e57fields.dir/all: CMakeFiles/openE57.dir/all
$(MAKE) $(MAKESILENT) -f tools/CMakeFiles/e57fields.dir/build.make tools/CMakeFiles/e57fields.dir/depend
$(MAKE) $(MAKESILENT) -f tools/CMakeFiles/e57fields.dir/build.make tools/CMakeFiles/e57fields.dir/build
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/madduci/Projects/openE57/build/linux/CMakeFiles --progress-num=7,8 "Built target e57fields"
.PHONY : tools/CMakeFiles/e57fields.dir/all
# Build rule for subdir invocation for target.
tools/CMakeFiles/e57fields.dir/rule: cmake_check_build_system
$(CMAKE_COMMAND) -E cmake_progress_start /home/madduci/Projects/openE57/build/linux/CMakeFiles 7
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 tools/CMakeFiles/e57fields.dir/all
$(CMAKE_COMMAND) -E cmake_progress_start /home/madduci/Projects/openE57/build/linux/CMakeFiles 0
.PHONY : tools/CMakeFiles/e57fields.dir/rule
# Convenience name for target.
e57fields: tools/CMakeFiles/e57fields.dir/rule
.PHONY : e57fields
# clean rule for target.
tools/CMakeFiles/e57fields.dir/clean:
$(MAKE) $(MAKESILENT) -f tools/CMakeFiles/e57fields.dir/build.make tools/CMakeFiles/e57fields.dir/clean
.PHONY : tools/CMakeFiles/e57fields.dir/clean
#=============================================================================
# Special targets to cleanup operation of make.
# Special rule to run CMake to check the build system integrity.
# No rule that depends on this can have commands that come from listfiles
# because they might be regenerated.
cmake_check_build_system:
$(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0
.PHONY : cmake_check_build_system

View File

@@ -0,0 +1,34 @@
/home/madduci/Projects/openE57/build/linux/CMakeFiles/install/strip.dir
/home/madduci/Projects/openE57/build/linux/CMakeFiles/edit_cache.dir
/home/madduci/Projects/openE57/build/linux/CMakeFiles/install/local.dir
/home/madduci/Projects/openE57/build/linux/CMakeFiles/time_conversion.dir
/home/madduci/Projects/openE57/build/linux/CMakeFiles/package_source.dir
/home/madduci/Projects/openE57/build/linux/CMakeFiles/LASReader.dir
/home/madduci/Projects/openE57/build/linux/CMakeFiles/install.dir
/home/madduci/Projects/openE57/build/linux/CMakeFiles/list_install_components.dir
/home/madduci/Projects/openE57/build/linux/CMakeFiles/rebuild_cache.dir
/home/madduci/Projects/openE57/build/linux/CMakeFiles/package.dir
/home/madduci/Projects/openE57/build/linux/CMakeFiles/openE57.dir
/home/madduci/Projects/openE57/build/linux/examples/CMakeFiles/install/strip.dir
/home/madduci/Projects/openE57/build/linux/examples/CMakeFiles/install/local.dir
/home/madduci/Projects/openE57/build/linux/examples/CMakeFiles/edit_cache.dir
/home/madduci/Projects/openE57/build/linux/examples/CMakeFiles/package_source.dir
/home/madduci/Projects/openE57/build/linux/examples/CMakeFiles/install.dir
/home/madduci/Projects/openE57/build/linux/examples/CMakeFiles/list_install_components.dir
/home/madduci/Projects/openE57/build/linux/examples/CMakeFiles/rebuild_cache.dir
/home/madduci/Projects/openE57/build/linux/examples/CMakeFiles/package.dir
/home/madduci/Projects/openE57/build/linux/examples/CMakeFiles/DemoRead01.dir
/home/madduci/Projects/openE57/build/linux/examples/CMakeFiles/DemoWrite01.dir
/home/madduci/Projects/openE57/build/linux/tools/CMakeFiles/install/strip.dir
/home/madduci/Projects/openE57/build/linux/tools/CMakeFiles/edit_cache.dir
/home/madduci/Projects/openE57/build/linux/tools/CMakeFiles/package_source.dir
/home/madduci/Projects/openE57/build/linux/tools/CMakeFiles/install.dir
/home/madduci/Projects/openE57/build/linux/tools/CMakeFiles/list_install_components.dir
/home/madduci/Projects/openE57/build/linux/tools/CMakeFiles/rebuild_cache.dir
/home/madduci/Projects/openE57/build/linux/tools/CMakeFiles/package.dir
/home/madduci/Projects/openE57/build/linux/tools/CMakeFiles/las2e57.dir
/home/madduci/Projects/openE57/build/linux/tools/CMakeFiles/e57xmldump.dir
/home/madduci/Projects/openE57/build/linux/tools/CMakeFiles/e57validate.dir
/home/madduci/Projects/openE57/build/linux/tools/CMakeFiles/install/local.dir
/home/madduci/Projects/openE57/build/linux/tools/CMakeFiles/e57unpack.dir
/home/madduci/Projects/openE57/build/linux/tools/CMakeFiles/e57fields.dir

View File

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

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,39 @@
# The set of languages for which implicit dependencies are needed:
set(CMAKE_DEPENDS_LANGUAGES
"CXX"
)
# The set of files for implicit dependencies of each language:
set(CMAKE_DEPENDS_CHECK_CXX
"/home/madduci/Projects/openE57/src/E57Foundation.cpp" "/home/madduci/Projects/openE57/build/linux/CMakeFiles/openE57.dir/src/E57Foundation.cpp.o"
"/home/madduci/Projects/openE57/src/E57FoundationImpl.cpp" "/home/madduci/Projects/openE57/build/linux/CMakeFiles/openE57.dir/src/E57FoundationImpl.cpp.o"
"/home/madduci/Projects/openE57/src/E57Simple.cpp" "/home/madduci/Projects/openE57/build/linux/CMakeFiles/openE57.dir/src/E57Simple.cpp.o"
"/home/madduci/Projects/openE57/src/E57SimpleImpl.cpp" "/home/madduci/Projects/openE57/build/linux/CMakeFiles/openE57.dir/src/E57SimpleImpl.cpp.o"
)
set(CMAKE_CXX_COMPILER_ID "GNU")
# Preprocessor definitions for this target.
set(CMAKE_TARGET_DEFINITIONS_CXX
"E57_REFIMPL_REVISION_ID=openE57-1.2.0"
"LINUX"
"U_STATIC_IMPLEMENTATION"
"_FORTIFY_SOURCE=2"
"_GLIBCXX_USE_CXX11_ABI=1"
)
# The include file search paths:
set(CMAKE_CXX_TARGET_INCLUDE_PATH
"include"
"../../include"
"/home/madduci/.conan/data/xerces-c/3.2.2/_/_/package/b173bbda18164d49a449ffadc1c9e817f49e819d/include"
"/home/madduci/.conan/data/icu/67.1/_/_/package/a8ceb9852beb2633e3b6f0e115181aa8c3c63b84/include"
"/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include"
"/home/madduci/.conan/data/zlib/1.2.11/_/_/package/19729b9559f3ae196cad45cb2b97468ccb75dcd1/include"
"/home/madduci/.conan/data/bzip2/1.0.8/_/_/package/91a8b22c2c5a149bc617cfc06cdd21bf23b12567/include"
)
# Targets to which this target links.
set(CMAKE_TARGET_LINKED_INFO_FILES
)
# Fortran module output directory.
set(CMAKE_Fortran_TARGET_MODULE_DIR "")

View File

@@ -0,0 +1,164 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 3.17
# 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/madduci/Projects/openE57
# The top-level build directory on which CMake was run.
CMAKE_BINARY_DIR = /home/madduci/Projects/openE57/build/linux
# Include any dependencies generated for this target.
include CMakeFiles/openE57.dir/depend.make
# Include the progress variables for this target.
include CMakeFiles/openE57.dir/progress.make
# Include the compile flags for this target's objects.
include CMakeFiles/openE57.dir/flags.make
CMakeFiles/openE57.dir/src/E57Simple.cpp.o: CMakeFiles/openE57.dir/flags.make
CMakeFiles/openE57.dir/src/E57Simple.cpp.o: ../../src/E57Simple.cpp
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/madduci/Projects/openE57/build/linux/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object CMakeFiles/openE57.dir/src/E57Simple.cpp.o"
/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -o CMakeFiles/openE57.dir/src/E57Simple.cpp.o -c /home/madduci/Projects/openE57/src/E57Simple.cpp
CMakeFiles/openE57.dir/src/E57Simple.cpp.i: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/openE57.dir/src/E57Simple.cpp.i"
/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/madduci/Projects/openE57/src/E57Simple.cpp > CMakeFiles/openE57.dir/src/E57Simple.cpp.i
CMakeFiles/openE57.dir/src/E57Simple.cpp.s: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/openE57.dir/src/E57Simple.cpp.s"
/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/madduci/Projects/openE57/src/E57Simple.cpp -o CMakeFiles/openE57.dir/src/E57Simple.cpp.s
CMakeFiles/openE57.dir/src/E57SimpleImpl.cpp.o: CMakeFiles/openE57.dir/flags.make
CMakeFiles/openE57.dir/src/E57SimpleImpl.cpp.o: ../../src/E57SimpleImpl.cpp
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/madduci/Projects/openE57/build/linux/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building CXX object CMakeFiles/openE57.dir/src/E57SimpleImpl.cpp.o"
/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -o CMakeFiles/openE57.dir/src/E57SimpleImpl.cpp.o -c /home/madduci/Projects/openE57/src/E57SimpleImpl.cpp
CMakeFiles/openE57.dir/src/E57SimpleImpl.cpp.i: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/openE57.dir/src/E57SimpleImpl.cpp.i"
/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/madduci/Projects/openE57/src/E57SimpleImpl.cpp > CMakeFiles/openE57.dir/src/E57SimpleImpl.cpp.i
CMakeFiles/openE57.dir/src/E57SimpleImpl.cpp.s: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/openE57.dir/src/E57SimpleImpl.cpp.s"
/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/madduci/Projects/openE57/src/E57SimpleImpl.cpp -o CMakeFiles/openE57.dir/src/E57SimpleImpl.cpp.s
CMakeFiles/openE57.dir/src/E57Foundation.cpp.o: CMakeFiles/openE57.dir/flags.make
CMakeFiles/openE57.dir/src/E57Foundation.cpp.o: ../../src/E57Foundation.cpp
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/madduci/Projects/openE57/build/linux/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Building CXX object CMakeFiles/openE57.dir/src/E57Foundation.cpp.o"
/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -o CMakeFiles/openE57.dir/src/E57Foundation.cpp.o -c /home/madduci/Projects/openE57/src/E57Foundation.cpp
CMakeFiles/openE57.dir/src/E57Foundation.cpp.i: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/openE57.dir/src/E57Foundation.cpp.i"
/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/madduci/Projects/openE57/src/E57Foundation.cpp > CMakeFiles/openE57.dir/src/E57Foundation.cpp.i
CMakeFiles/openE57.dir/src/E57Foundation.cpp.s: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/openE57.dir/src/E57Foundation.cpp.s"
/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/madduci/Projects/openE57/src/E57Foundation.cpp -o CMakeFiles/openE57.dir/src/E57Foundation.cpp.s
CMakeFiles/openE57.dir/src/E57FoundationImpl.cpp.o: CMakeFiles/openE57.dir/flags.make
CMakeFiles/openE57.dir/src/E57FoundationImpl.cpp.o: ../../src/E57FoundationImpl.cpp
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/madduci/Projects/openE57/build/linux/CMakeFiles --progress-num=$(CMAKE_PROGRESS_4) "Building CXX object CMakeFiles/openE57.dir/src/E57FoundationImpl.cpp.o"
/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -o CMakeFiles/openE57.dir/src/E57FoundationImpl.cpp.o -c /home/madduci/Projects/openE57/src/E57FoundationImpl.cpp
CMakeFiles/openE57.dir/src/E57FoundationImpl.cpp.i: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/openE57.dir/src/E57FoundationImpl.cpp.i"
/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/madduci/Projects/openE57/src/E57FoundationImpl.cpp > CMakeFiles/openE57.dir/src/E57FoundationImpl.cpp.i
CMakeFiles/openE57.dir/src/E57FoundationImpl.cpp.s: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/openE57.dir/src/E57FoundationImpl.cpp.s"
/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/madduci/Projects/openE57/src/E57FoundationImpl.cpp -o CMakeFiles/openE57.dir/src/E57FoundationImpl.cpp.s
# Object files for target openE57
openE57_OBJECTS = \
"CMakeFiles/openE57.dir/src/E57Simple.cpp.o" \
"CMakeFiles/openE57.dir/src/E57SimpleImpl.cpp.o" \
"CMakeFiles/openE57.dir/src/E57Foundation.cpp.o" \
"CMakeFiles/openE57.dir/src/E57FoundationImpl.cpp.o"
# External object files for target openE57
openE57_EXTERNAL_OBJECTS =
lib/libopenE57.a: CMakeFiles/openE57.dir/src/E57Simple.cpp.o
lib/libopenE57.a: CMakeFiles/openE57.dir/src/E57SimpleImpl.cpp.o
lib/libopenE57.a: CMakeFiles/openE57.dir/src/E57Foundation.cpp.o
lib/libopenE57.a: CMakeFiles/openE57.dir/src/E57FoundationImpl.cpp.o
lib/libopenE57.a: CMakeFiles/openE57.dir/build.make
lib/libopenE57.a: CMakeFiles/openE57.dir/link.txt
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --bold --progress-dir=/home/madduci/Projects/openE57/build/linux/CMakeFiles --progress-num=$(CMAKE_PROGRESS_5) "Linking CXX static library lib/libopenE57.a"
$(CMAKE_COMMAND) -P CMakeFiles/openE57.dir/cmake_clean_target.cmake
$(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/openE57.dir/link.txt --verbose=$(VERBOSE)
# Rule to build all files generated by this target.
CMakeFiles/openE57.dir/build: lib/libopenE57.a
.PHONY : CMakeFiles/openE57.dir/build
CMakeFiles/openE57.dir/clean:
$(CMAKE_COMMAND) -P CMakeFiles/openE57.dir/cmake_clean.cmake
.PHONY : CMakeFiles/openE57.dir/clean
CMakeFiles/openE57.dir/depend:
cd /home/madduci/Projects/openE57/build/linux && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/madduci/Projects/openE57 /home/madduci/Projects/openE57 /home/madduci/Projects/openE57/build/linux /home/madduci/Projects/openE57/build/linux /home/madduci/Projects/openE57/build/linux/CMakeFiles/openE57.dir/DependInfo.cmake --color=$(COLOR)
.PHONY : CMakeFiles/openE57.dir/depend

View File

@@ -0,0 +1,13 @@
file(REMOVE_RECURSE
"CMakeFiles/openE57.dir/src/E57Foundation.cpp.o"
"CMakeFiles/openE57.dir/src/E57FoundationImpl.cpp.o"
"CMakeFiles/openE57.dir/src/E57Simple.cpp.o"
"CMakeFiles/openE57.dir/src/E57SimpleImpl.cpp.o"
"lib/libopenE57.a"
"lib/libopenE57.pdb"
)
# Per-language clean rules from dependency scanning.
foreach(lang CXX)
include(CMakeFiles/openE57.dir/cmake_clean_${lang}.cmake OPTIONAL)
endforeach()

View File

@@ -0,0 +1,3 @@
file(REMOVE_RECURSE
"lib/libopenE57.a"
)

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,10 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 3.17
# compile CXX with /usr/bin/c++
CXX_FLAGS = -O3 -DNDEBUG -Wall -Wextra -Wpedantic -O2 -std=gnu++17
CXX_DEFINES = -DE57_REFIMPL_REVISION_ID=openE57-1.2.0 -DLINUX -DU_STATIC_IMPLEMENTATION -D_FORTIFY_SOURCE=2 -D_GLIBCXX_USE_CXX11_ABI=1
CXX_INCLUDES = -I/home/madduci/Projects/openE57/build/linux/include -I/home/madduci/Projects/openE57/include -isystem /home/madduci/.conan/data/xerces-c/3.2.2/_/_/package/b173bbda18164d49a449ffadc1c9e817f49e819d/include -isystem /home/madduci/.conan/data/icu/67.1/_/_/package/a8ceb9852beb2633e3b6f0e115181aa8c3c63b84/include -isystem /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include -isystem /home/madduci/.conan/data/zlib/1.2.11/_/_/package/19729b9559f3ae196cad45cb2b97468ccb75dcd1/include -isystem /home/madduci/.conan/data/bzip2/1.0.8/_/_/package/91a8b22c2c5a149bc617cfc06cdd21bf23b12567/include

View File

@@ -0,0 +1,2 @@
/usr/bin/ar qc lib/libopenE57.a CMakeFiles/openE57.dir/src/E57Simple.cpp.o CMakeFiles/openE57.dir/src/E57SimpleImpl.cpp.o CMakeFiles/openE57.dir/src/E57Foundation.cpp.o CMakeFiles/openE57.dir/src/E57FoundationImpl.cpp.o
/usr/bin/ranlib lib/libopenE57.a

View File

@@ -0,0 +1,6 @@
CMAKE_PROGRESS_1 = 17
CMAKE_PROGRESS_2 = 18
CMAKE_PROGRESS_3 = 19
CMAKE_PROGRESS_4 = 20
CMAKE_PROGRESS_5 = 21

View File

@@ -0,0 +1 @@
23

View File

@@ -0,0 +1,36 @@
#IncludeRegexLine: ^[ ]*[#%][ ]*(include|import)[ ]*[<"]([^">]+)([">])
#IncludeRegexScan: ^.*$
#IncludeRegexComplain: ^$
#IncludeRegexTransform:
../../include/openE57/time_conversion/basictypes.h
../../include/openE57/time_conversion/constants.h
../../include/openE57/time_conversion/gnss_error.h
stdio.h
-
../../include/openE57/time_conversion/time_conversion.h
basictypes.h
../../include/openE57/time_conversion/basictypes.h
/home/madduci/Projects/openE57/src/time_conversion/time_conversion.c
sys/timeb.h
-
time.h
-
math.h
-
openE57/time_conversion/gnss_error.h
-
openE57/time_conversion/time_conversion.h
-
openE57/time_conversion/constants.h
-
windows.h
-

View File

@@ -0,0 +1,36 @@
# The set of languages for which implicit dependencies are needed:
set(CMAKE_DEPENDS_LANGUAGES
"C"
)
# The set of files for implicit dependencies of each language:
set(CMAKE_DEPENDS_CHECK_C
"/home/madduci/Projects/openE57/src/time_conversion/time_conversion.c" "/home/madduci/Projects/openE57/build/linux/CMakeFiles/time_conversion.dir/src/time_conversion/time_conversion.c.o"
)
set(CMAKE_C_COMPILER_ID "GNU")
# Preprocessor definitions for this target.
set(CMAKE_TARGET_DEFINITIONS_C
"E57_REFIMPL_REVISION_ID=openE57-1.2.0"
"LINUX"
"U_STATIC_IMPLEMENTATION"
"_FORTIFY_SOURCE=2"
"_GLIBCXX_USE_CXX11_ABI=1"
)
# The include file search paths:
set(CMAKE_C_TARGET_INCLUDE_PATH
"include"
"../../include"
"/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include"
"/home/madduci/.conan/data/zlib/1.2.11/_/_/package/19729b9559f3ae196cad45cb2b97468ccb75dcd1/include"
"/home/madduci/.conan/data/bzip2/1.0.8/_/_/package/91a8b22c2c5a149bc617cfc06cdd21bf23b12567/include"
"/home/madduci/.conan/data/xerces-c/3.2.2/_/_/package/b173bbda18164d49a449ffadc1c9e817f49e819d/include"
"/home/madduci/.conan/data/icu/67.1/_/_/package/a8ceb9852beb2633e3b6f0e115181aa8c3c63b84/include"
)
# Targets to which this target links.
set(CMAKE_TARGET_LINKED_INFO_FILES
)
# Fortran module output directory.
set(CMAKE_Fortran_TARGET_MODULE_DIR "")

View File

@@ -0,0 +1,119 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 3.17
# 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/madduci/Projects/openE57
# The top-level build directory on which CMake was run.
CMAKE_BINARY_DIR = /home/madduci/Projects/openE57/build/linux
# Include any dependencies generated for this target.
include CMakeFiles/time_conversion.dir/depend.make
# Include the progress variables for this target.
include CMakeFiles/time_conversion.dir/progress.make
# Include the compile flags for this target's objects.
include CMakeFiles/time_conversion.dir/flags.make
CMakeFiles/time_conversion.dir/src/time_conversion/time_conversion.c.o: CMakeFiles/time_conversion.dir/flags.make
CMakeFiles/time_conversion.dir/src/time_conversion/time_conversion.c.o: ../../src/time_conversion/time_conversion.c
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/madduci/Projects/openE57/build/linux/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building C object CMakeFiles/time_conversion.dir/src/time_conversion/time_conversion.c.o"
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/time_conversion.dir/src/time_conversion/time_conversion.c.o -c /home/madduci/Projects/openE57/src/time_conversion/time_conversion.c
CMakeFiles/time_conversion.dir/src/time_conversion/time_conversion.c.i: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/time_conversion.dir/src/time_conversion/time_conversion.c.i"
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/madduci/Projects/openE57/src/time_conversion/time_conversion.c > CMakeFiles/time_conversion.dir/src/time_conversion/time_conversion.c.i
CMakeFiles/time_conversion.dir/src/time_conversion/time_conversion.c.s: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/time_conversion.dir/src/time_conversion/time_conversion.c.s"
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/madduci/Projects/openE57/src/time_conversion/time_conversion.c -o CMakeFiles/time_conversion.dir/src/time_conversion/time_conversion.c.s
# Object files for target time_conversion
time_conversion_OBJECTS = \
"CMakeFiles/time_conversion.dir/src/time_conversion/time_conversion.c.o"
# External object files for target time_conversion
time_conversion_EXTERNAL_OBJECTS =
lib/libtime_conversion.a: CMakeFiles/time_conversion.dir/src/time_conversion/time_conversion.c.o
lib/libtime_conversion.a: CMakeFiles/time_conversion.dir/build.make
lib/libtime_conversion.a: CMakeFiles/time_conversion.dir/link.txt
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --bold --progress-dir=/home/madduci/Projects/openE57/build/linux/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Linking C static library lib/libtime_conversion.a"
$(CMAKE_COMMAND) -P CMakeFiles/time_conversion.dir/cmake_clean_target.cmake
$(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/time_conversion.dir/link.txt --verbose=$(VERBOSE)
# Rule to build all files generated by this target.
CMakeFiles/time_conversion.dir/build: lib/libtime_conversion.a
.PHONY : CMakeFiles/time_conversion.dir/build
CMakeFiles/time_conversion.dir/clean:
$(CMAKE_COMMAND) -P CMakeFiles/time_conversion.dir/cmake_clean.cmake
.PHONY : CMakeFiles/time_conversion.dir/clean
CMakeFiles/time_conversion.dir/depend:
cd /home/madduci/Projects/openE57/build/linux && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/madduci/Projects/openE57 /home/madduci/Projects/openE57 /home/madduci/Projects/openE57/build/linux /home/madduci/Projects/openE57/build/linux /home/madduci/Projects/openE57/build/linux/CMakeFiles/time_conversion.dir/DependInfo.cmake --color=$(COLOR)
.PHONY : CMakeFiles/time_conversion.dir/depend

View File

@@ -0,0 +1,10 @@
file(REMOVE_RECURSE
"CMakeFiles/time_conversion.dir/src/time_conversion/time_conversion.c.o"
"lib/libtime_conversion.a"
"lib/libtime_conversion.pdb"
)
# Per-language clean rules from dependency scanning.
foreach(lang C)
include(CMakeFiles/time_conversion.dir/cmake_clean_${lang}.cmake OPTIONAL)
endforeach()

View File

@@ -0,0 +1,3 @@
file(REMOVE_RECURSE
"lib/libtime_conversion.a"
)

View File

@@ -0,0 +1,9 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 3.17
CMakeFiles/time_conversion.dir/src/time_conversion/time_conversion.c.o
../../include/openE57/time_conversion/basictypes.h
../../include/openE57/time_conversion/constants.h
../../include/openE57/time_conversion/gnss_error.h
../../include/openE57/time_conversion/time_conversion.h
/home/madduci/Projects/openE57/src/time_conversion/time_conversion.c

View File

@@ -0,0 +1,9 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 3.17
CMakeFiles/time_conversion.dir/src/time_conversion/time_conversion.c.o: ../../include/openE57/time_conversion/basictypes.h
CMakeFiles/time_conversion.dir/src/time_conversion/time_conversion.c.o: ../../include/openE57/time_conversion/constants.h
CMakeFiles/time_conversion.dir/src/time_conversion/time_conversion.c.o: ../../include/openE57/time_conversion/gnss_error.h
CMakeFiles/time_conversion.dir/src/time_conversion/time_conversion.c.o: ../../include/openE57/time_conversion/time_conversion.h
CMakeFiles/time_conversion.dir/src/time_conversion/time_conversion.c.o: ../../src/time_conversion/time_conversion.c

View File

@@ -0,0 +1,10 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 3.17
# compile C with /usr/bin/cc
C_FLAGS = -O3 -DNDEBUG -Wall -Wextra -Wpedantic -O2
C_DEFINES = -DE57_REFIMPL_REVISION_ID=openE57-1.2.0 -DLINUX -DU_STATIC_IMPLEMENTATION -D_FORTIFY_SOURCE=2 -D_GLIBCXX_USE_CXX11_ABI=1
C_INCLUDES = -I/home/madduci/Projects/openE57/build/linux/include -I/home/madduci/Projects/openE57/include -isystem /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include -isystem /home/madduci/.conan/data/zlib/1.2.11/_/_/package/19729b9559f3ae196cad45cb2b97468ccb75dcd1/include -isystem /home/madduci/.conan/data/bzip2/1.0.8/_/_/package/91a8b22c2c5a149bc617cfc06cdd21bf23b12567/include -isystem /home/madduci/.conan/data/xerces-c/3.2.2/_/_/package/b173bbda18164d49a449ffadc1c9e817f49e819d/include -isystem /home/madduci/.conan/data/icu/67.1/_/_/package/a8ceb9852beb2633e3b6f0e115181aa8c3c63b84/include

View File

@@ -0,0 +1,2 @@
/usr/bin/ar qc lib/libtime_conversion.a CMakeFiles/time_conversion.dir/src/time_conversion/time_conversion.c.o
/usr/bin/ranlib lib/libtime_conversion.a

View File

@@ -0,0 +1,3 @@
CMAKE_PROGRESS_1 = 22
CMAKE_PROGRESS_2 = 23

View File

@@ -0,0 +1,66 @@
# This file will be configured to contain variables for CPack. These variables
# should be set in the CMake list file of the project before CPack module is
# included. The list of available CPACK_xxx variables and their associated
# documentation may be obtained using
# cpack --help-variable-list
#
# Some variables are common to all generators (e.g. CPACK_PACKAGE_NAME)
# and some are specific to a generator
# (e.g. CPACK_NSIS_EXTRA_INSTALL_COMMANDS). The generator specific variables
# usually begin with CPACK_<GENNAME>_xxxx.
set(CPACK_BUILD_SOURCE_DIRS "/home/madduci/Projects/openE57;/home/madduci/Projects/openE57/build/linux")
set(CPACK_CMAKE_GENERATOR "Unix Makefiles")
set(CPACK_COMPONENT_UNSPECIFIED_HIDDEN "TRUE")
set(CPACK_COMPONENT_UNSPECIFIED_REQUIRED "TRUE")
set(CPACK_DEFAULT_PACKAGE_DESCRIPTION_FILE "/usr/share/cmake-3.17/Templates/CPack.GenericDescription.txt")
set(CPACK_DEFAULT_PACKAGE_DESCRIPTION_SUMMARY "openE57 built using CMake")
set(CPACK_GENERATOR "ZIP")
set(CPACK_INSTALL_CMAKE_PROJECTS "/home/madduci/Projects/openE57/build/linux;openE57;ALL;/")
set(CPACK_INSTALL_PREFIX "/home/madduci/Projects/openE57/build/linux/redist-openE57-v1.2.0")
set(CPACK_MODULE_PATH "/home/madduci/.conan/data/icu/67.1/_/_/package/a8ceb9852beb2633e3b6f0e115181aa8c3c63b84/;/home/madduci/.conan/data/xerces-c/3.2.2/_/_/package/b173bbda18164d49a449ffadc1c9e817f49e819d/;/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/;/home/madduci/.conan/data/zlib/1.2.11/_/_/package/19729b9559f3ae196cad45cb2b97468ccb75dcd1/;/home/madduci/.conan/data/bzip2/1.0.8/_/_/package/91a8b22c2c5a149bc617cfc06cdd21bf23b12567/;/home/madduci/Projects/openE57/cmake/Modules/")
set(CPACK_NSIS_DISPLAY_NAME "openE57 ")
set(CPACK_NSIS_INSTALLER_ICON_CODE "")
set(CPACK_NSIS_INSTALLER_MUI_ICON_CODE "")
set(CPACK_NSIS_INSTALL_ROOT "$PROGRAMFILES")
set(CPACK_NSIS_PACKAGE_NAME "openE57 ")
set(CPACK_NSIS_UNINSTALL_NAME "Uninstall")
set(CPACK_OUTPUT_CONFIG_FILE "/home/madduci/Projects/openE57/build/linux/CPackConfig.cmake")
set(CPACK_PACKAGE_DEFAULT_LOCATION "/")
set(CPACK_PACKAGE_DESCRIPTION_FILE "/usr/share/cmake-3.17/Templates/CPack.GenericDescription.txt")
set(CPACK_PACKAGE_DESCRIPTION_SUMMARY "openE57 is a library for handling e57 files")
set(CPACK_PACKAGE_FILE_NAME "openE57--")
set(CPACK_PACKAGE_INSTALL_DIRECTORY "openE57 ")
set(CPACK_PACKAGE_INSTALL_REGISTRY_KEY "openE57 ")
set(CPACK_PACKAGE_NAME "openE57")
set(CPACK_PACKAGE_RELOCATABLE "true")
set(CPACK_PACKAGE_VENDOR "Michele Adduci <adduci@tutanota.com>")
set(CPACK_PACKAGE_VERSION "")
set(CPACK_PACKAGE_VERSION_MAJOR "")
set(CPACK_PACKAGE_VERSION_MINOR "")
set(CPACK_PACKAGE_VERSION_PATCH "")
set(CPACK_RESOURCE_FILE_LICENSE "/usr/share/cmake-3.17/Templates/CPack.GenericLicense.txt")
set(CPACK_RESOURCE_FILE_README "/usr/share/cmake-3.17/Templates/CPack.GenericDescription.txt")
set(CPACK_RESOURCE_FILE_WELCOME "/usr/share/cmake-3.17/Templates/CPack.GenericWelcome.txt")
set(CPACK_SET_DESTDIR "OFF")
set(CPACK_SOURCE_GENERATOR "TBZ2;TGZ;TXZ;TZ")
set(CPACK_SOURCE_OUTPUT_CONFIG_FILE "/home/madduci/Projects/openE57/build/linux/CPackSourceConfig.cmake")
set(CPACK_SOURCE_RPM "OFF")
set(CPACK_SOURCE_TBZ2 "ON")
set(CPACK_SOURCE_TGZ "ON")
set(CPACK_SOURCE_TXZ "ON")
set(CPACK_SOURCE_TZ "ON")
set(CPACK_SOURCE_ZIP "OFF")
set(CPACK_STRIP_FILES "TRUE")
set(CPACK_SYSTEM_NAME "")
set(CPACK_TOPLEVEL_TAG "")
set(CPACK_WIX_SIZEOF_VOID_P "8")
if(NOT CPACK_PROPERTIES_FILE)
set(CPACK_PROPERTIES_FILE "/home/madduci/Projects/openE57/build/linux/CPackProperties.cmake")
endif()
if(EXISTS ${CPACK_PROPERTIES_FILE})
include(${CPACK_PROPERTIES_FILE})
endif()

View File

@@ -0,0 +1,73 @@
# This file will be configured to contain variables for CPack. These variables
# should be set in the CMake list file of the project before CPack module is
# included. The list of available CPACK_xxx variables and their associated
# documentation may be obtained using
# cpack --help-variable-list
#
# Some variables are common to all generators (e.g. CPACK_PACKAGE_NAME)
# and some are specific to a generator
# (e.g. CPACK_NSIS_EXTRA_INSTALL_COMMANDS). The generator specific variables
# usually begin with CPACK_<GENNAME>_xxxx.
set(CPACK_BUILD_SOURCE_DIRS "/home/madduci/Projects/openE57;/home/madduci/Projects/openE57/build/linux")
set(CPACK_CMAKE_GENERATOR "Unix Makefiles")
set(CPACK_COMPONENT_UNSPECIFIED_HIDDEN "TRUE")
set(CPACK_COMPONENT_UNSPECIFIED_REQUIRED "TRUE")
set(CPACK_DEFAULT_PACKAGE_DESCRIPTION_FILE "/usr/share/cmake-3.17/Templates/CPack.GenericDescription.txt")
set(CPACK_DEFAULT_PACKAGE_DESCRIPTION_SUMMARY "openE57 built using CMake")
set(CPACK_GENERATOR "TBZ2;TGZ;TXZ;TZ")
set(CPACK_IGNORE_FILES "/CVS/;/\\.svn/;/\\.bzr/;/\\.hg/;/\\.git/;\\.swp\$;\\.#;/#")
set(CPACK_INSTALLED_DIRECTORIES "/home/madduci/Projects/openE57;/")
set(CPACK_INSTALL_CMAKE_PROJECTS "")
set(CPACK_INSTALL_PREFIX "/home/madduci/Projects/openE57/build/linux/redist-openE57-v1.2.0")
set(CPACK_MODULE_PATH "/home/madduci/.conan/data/icu/67.1/_/_/package/a8ceb9852beb2633e3b6f0e115181aa8c3c63b84/;/home/madduci/.conan/data/xerces-c/3.2.2/_/_/package/b173bbda18164d49a449ffadc1c9e817f49e819d/;/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/;/home/madduci/.conan/data/zlib/1.2.11/_/_/package/19729b9559f3ae196cad45cb2b97468ccb75dcd1/;/home/madduci/.conan/data/bzip2/1.0.8/_/_/package/91a8b22c2c5a149bc617cfc06cdd21bf23b12567/;/home/madduci/Projects/openE57/cmake/Modules/")
set(CPACK_NSIS_DISPLAY_NAME "openE57 ")
set(CPACK_NSIS_INSTALLER_ICON_CODE "")
set(CPACK_NSIS_INSTALLER_MUI_ICON_CODE "")
set(CPACK_NSIS_INSTALL_ROOT "$PROGRAMFILES")
set(CPACK_NSIS_PACKAGE_NAME "openE57 ")
set(CPACK_NSIS_UNINSTALL_NAME "Uninstall")
set(CPACK_OUTPUT_CONFIG_FILE "/home/madduci/Projects/openE57/build/linux/CPackConfig.cmake")
set(CPACK_PACKAGE_DEFAULT_LOCATION "/")
set(CPACK_PACKAGE_DESCRIPTION_FILE "/usr/share/cmake-3.17/Templates/CPack.GenericDescription.txt")
set(CPACK_PACKAGE_DESCRIPTION_SUMMARY "openE57 is a library for handling e57 files")
set(CPACK_PACKAGE_FILE_NAME "openE57--Source")
set(CPACK_PACKAGE_INSTALL_DIRECTORY "openE57 ")
set(CPACK_PACKAGE_INSTALL_REGISTRY_KEY "openE57 ")
set(CPACK_PACKAGE_NAME "openE57")
set(CPACK_PACKAGE_RELOCATABLE "true")
set(CPACK_PACKAGE_VENDOR "Michele Adduci <adduci@tutanota.com>")
set(CPACK_PACKAGE_VERSION "")
set(CPACK_PACKAGE_VERSION_MAJOR "")
set(CPACK_PACKAGE_VERSION_MINOR "")
set(CPACK_PACKAGE_VERSION_PATCH "")
set(CPACK_RESOURCE_FILE_LICENSE "/usr/share/cmake-3.17/Templates/CPack.GenericLicense.txt")
set(CPACK_RESOURCE_FILE_README "/usr/share/cmake-3.17/Templates/CPack.GenericDescription.txt")
set(CPACK_RESOURCE_FILE_WELCOME "/usr/share/cmake-3.17/Templates/CPack.GenericWelcome.txt")
set(CPACK_RPM_PACKAGE_SOURCES "ON")
set(CPACK_SET_DESTDIR "OFF")
set(CPACK_SOURCE_GENERATOR "TBZ2;TGZ;TXZ;TZ")
set(CPACK_SOURCE_IGNORE_FILES "/CVS/;/\\.svn/;/\\.bzr/;/\\.hg/;/\\.git/;\\.swp\$;\\.#;/#")
set(CPACK_SOURCE_INSTALLED_DIRECTORIES "/home/madduci/Projects/openE57;/")
set(CPACK_SOURCE_OUTPUT_CONFIG_FILE "/home/madduci/Projects/openE57/build/linux/CPackSourceConfig.cmake")
set(CPACK_SOURCE_PACKAGE_FILE_NAME "openE57--Source")
set(CPACK_SOURCE_RPM "OFF")
set(CPACK_SOURCE_TBZ2 "ON")
set(CPACK_SOURCE_TGZ "ON")
set(CPACK_SOURCE_TOPLEVEL_TAG "-Source")
set(CPACK_SOURCE_TXZ "ON")
set(CPACK_SOURCE_TZ "ON")
set(CPACK_SOURCE_ZIP "OFF")
set(CPACK_STRIP_FILES "")
set(CPACK_SYSTEM_NAME "")
set(CPACK_TOPLEVEL_TAG "-Source")
set(CPACK_WIX_SIZEOF_VOID_P "8")
if(NOT CPACK_PROPERTIES_FILE)
set(CPACK_PROPERTIES_FILE "/home/madduci/Projects/openE57/build/linux/CPackProperties.cmake")
endif()
if(EXISTS ${CPACK_PROPERTIES_FILE})
include(${CPACK_PROPERTIES_FILE})
endif()

548
build/linux/Makefile Normal file
View File

@@ -0,0 +1,548 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 3.17
# 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/madduci/Projects/openE57
# The top-level build directory on which CMake was run.
CMAKE_BINARY_DIR = /home/madduci/Projects/openE57/build/linux
#=============================================================================
# Targets provided globally by CMake.
# Special rule for the target install/strip
install/strip: preinstall
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing the project stripped..."
/usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake
.PHONY : install/strip
# Special rule for the target install/strip
install/strip/fast: preinstall/fast
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing the project stripped..."
/usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake
.PHONY : install/strip/fast
# 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 install/local
install/local: preinstall
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing only the local directory..."
/usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake
.PHONY : install/local
# Special rule for the target install/local
install/local/fast: preinstall/fast
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing only the local directory..."
/usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake
.PHONY : install/local/fast
# Special rule for the target package_source
package_source:
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Run CPack packaging tool for source..."
/usr/bin/cpack --config ./CPackSourceConfig.cmake /home/madduci/Projects/openE57/build/linux/CPackSourceConfig.cmake
.PHONY : package_source
# Special rule for the target package_source
package_source/fast: package_source
.PHONY : package_source/fast
# Special rule for the target install
install: preinstall
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Install the project..."
/usr/bin/cmake -P cmake_install.cmake
.PHONY : install
# Special rule for the target install
install/fast: preinstall/fast
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Install the project..."
/usr/bin/cmake -P cmake_install.cmake
.PHONY : install/fast
# Special rule for the target list_install_components
list_install_components:
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Available install components are: \"Unspecified\""
.PHONY : list_install_components
# Special rule for the target list_install_components
list_install_components/fast: list_install_components
.PHONY : list_install_components/fast
# Special rule for the target rebuild_cache
rebuild_cache:
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running CMake to regenerate build system..."
/usr/bin/cmake --regenerate-during-build -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR)
.PHONY : rebuild_cache
# Special rule for the target rebuild_cache
rebuild_cache/fast: rebuild_cache
.PHONY : rebuild_cache/fast
# Special rule for the target package
package: preinstall
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Run CPack packaging tool..."
/usr/bin/cpack --config ./CPackConfig.cmake
.PHONY : package
# Special rule for the target package
package/fast: package
.PHONY : package/fast
# The main all target
all: cmake_check_build_system
$(CMAKE_COMMAND) -E cmake_progress_start /home/madduci/Projects/openE57/build/linux/CMakeFiles /home/madduci/Projects/openE57/build/linux/CMakeFiles/progress.marks
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 all
$(CMAKE_COMMAND) -E cmake_progress_start /home/madduci/Projects/openE57/build/linux/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 time_conversion
# Build rule for target.
time_conversion: cmake_check_build_system
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 time_conversion
.PHONY : time_conversion
# fast build rule for target.
time_conversion/fast:
$(MAKE) $(MAKESILENT) -f CMakeFiles/time_conversion.dir/build.make CMakeFiles/time_conversion.dir/build
.PHONY : time_conversion/fast
#=============================================================================
# Target rules for targets named LASReader
# Build rule for target.
LASReader: cmake_check_build_system
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 LASReader
.PHONY : LASReader
# fast build rule for target.
LASReader/fast:
$(MAKE) $(MAKESILENT) -f CMakeFiles/LASReader.dir/build.make CMakeFiles/LASReader.dir/build
.PHONY : LASReader/fast
#=============================================================================
# Target rules for targets named openE57
# Build rule for target.
openE57: cmake_check_build_system
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 openE57
.PHONY : openE57
# fast build rule for target.
openE57/fast:
$(MAKE) $(MAKESILENT) -f CMakeFiles/openE57.dir/build.make CMakeFiles/openE57.dir/build
.PHONY : openE57/fast
#=============================================================================
# Target rules for targets named DemoRead01
# Build rule for target.
DemoRead01: cmake_check_build_system
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 DemoRead01
.PHONY : DemoRead01
# fast build rule for target.
DemoRead01/fast:
$(MAKE) $(MAKESILENT) -f examples/CMakeFiles/DemoRead01.dir/build.make examples/CMakeFiles/DemoRead01.dir/build
.PHONY : DemoRead01/fast
#=============================================================================
# Target rules for targets named DemoWrite01
# Build rule for target.
DemoWrite01: cmake_check_build_system
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 DemoWrite01
.PHONY : DemoWrite01
# fast build rule for target.
DemoWrite01/fast:
$(MAKE) $(MAKESILENT) -f examples/CMakeFiles/DemoWrite01.dir/build.make examples/CMakeFiles/DemoWrite01.dir/build
.PHONY : DemoWrite01/fast
#=============================================================================
# Target rules for targets named las2e57
# Build rule for target.
las2e57: cmake_check_build_system
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 las2e57
.PHONY : las2e57
# fast build rule for target.
las2e57/fast:
$(MAKE) $(MAKESILENT) -f tools/CMakeFiles/las2e57.dir/build.make tools/CMakeFiles/las2e57.dir/build
.PHONY : las2e57/fast
#=============================================================================
# Target rules for targets named e57xmldump
# Build rule for target.
e57xmldump: cmake_check_build_system
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 e57xmldump
.PHONY : e57xmldump
# fast build rule for target.
e57xmldump/fast:
$(MAKE) $(MAKESILENT) -f tools/CMakeFiles/e57xmldump.dir/build.make tools/CMakeFiles/e57xmldump.dir/build
.PHONY : e57xmldump/fast
#=============================================================================
# Target rules for targets named e57validate
# Build rule for target.
e57validate: cmake_check_build_system
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 e57validate
.PHONY : e57validate
# fast build rule for target.
e57validate/fast:
$(MAKE) $(MAKESILENT) -f tools/CMakeFiles/e57validate.dir/build.make tools/CMakeFiles/e57validate.dir/build
.PHONY : e57validate/fast
#=============================================================================
# Target rules for targets named e57unpack
# Build rule for target.
e57unpack: cmake_check_build_system
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 e57unpack
.PHONY : e57unpack
# fast build rule for target.
e57unpack/fast:
$(MAKE) $(MAKESILENT) -f tools/CMakeFiles/e57unpack.dir/build.make tools/CMakeFiles/e57unpack.dir/build
.PHONY : e57unpack/fast
#=============================================================================
# Target rules for targets named e57fields
# Build rule for target.
e57fields: cmake_check_build_system
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 e57fields
.PHONY : e57fields
# fast build rule for target.
e57fields/fast:
$(MAKE) $(MAKESILENT) -f tools/CMakeFiles/e57fields.dir/build.make tools/CMakeFiles/e57fields.dir/build
.PHONY : e57fields/fast
src/E57Foundation.o: src/E57Foundation.cpp.o
.PHONY : src/E57Foundation.o
# target to build an object file
src/E57Foundation.cpp.o:
$(MAKE) $(MAKESILENT) -f CMakeFiles/openE57.dir/build.make CMakeFiles/openE57.dir/src/E57Foundation.cpp.o
.PHONY : src/E57Foundation.cpp.o
src/E57Foundation.i: src/E57Foundation.cpp.i
.PHONY : src/E57Foundation.i
# target to preprocess a source file
src/E57Foundation.cpp.i:
$(MAKE) $(MAKESILENT) -f CMakeFiles/openE57.dir/build.make CMakeFiles/openE57.dir/src/E57Foundation.cpp.i
.PHONY : src/E57Foundation.cpp.i
src/E57Foundation.s: src/E57Foundation.cpp.s
.PHONY : src/E57Foundation.s
# target to generate assembly for a file
src/E57Foundation.cpp.s:
$(MAKE) $(MAKESILENT) -f CMakeFiles/openE57.dir/build.make CMakeFiles/openE57.dir/src/E57Foundation.cpp.s
.PHONY : src/E57Foundation.cpp.s
src/E57FoundationImpl.o: src/E57FoundationImpl.cpp.o
.PHONY : src/E57FoundationImpl.o
# target to build an object file
src/E57FoundationImpl.cpp.o:
$(MAKE) $(MAKESILENT) -f CMakeFiles/openE57.dir/build.make CMakeFiles/openE57.dir/src/E57FoundationImpl.cpp.o
.PHONY : src/E57FoundationImpl.cpp.o
src/E57FoundationImpl.i: src/E57FoundationImpl.cpp.i
.PHONY : src/E57FoundationImpl.i
# target to preprocess a source file
src/E57FoundationImpl.cpp.i:
$(MAKE) $(MAKESILENT) -f CMakeFiles/openE57.dir/build.make CMakeFiles/openE57.dir/src/E57FoundationImpl.cpp.i
.PHONY : src/E57FoundationImpl.cpp.i
src/E57FoundationImpl.s: src/E57FoundationImpl.cpp.s
.PHONY : src/E57FoundationImpl.s
# target to generate assembly for a file
src/E57FoundationImpl.cpp.s:
$(MAKE) $(MAKESILENT) -f CMakeFiles/openE57.dir/build.make CMakeFiles/openE57.dir/src/E57FoundationImpl.cpp.s
.PHONY : src/E57FoundationImpl.cpp.s
src/E57Simple.o: src/E57Simple.cpp.o
.PHONY : src/E57Simple.o
# target to build an object file
src/E57Simple.cpp.o:
$(MAKE) $(MAKESILENT) -f CMakeFiles/openE57.dir/build.make CMakeFiles/openE57.dir/src/E57Simple.cpp.o
.PHONY : src/E57Simple.cpp.o
src/E57Simple.i: src/E57Simple.cpp.i
.PHONY : src/E57Simple.i
# target to preprocess a source file
src/E57Simple.cpp.i:
$(MAKE) $(MAKESILENT) -f CMakeFiles/openE57.dir/build.make CMakeFiles/openE57.dir/src/E57Simple.cpp.i
.PHONY : src/E57Simple.cpp.i
src/E57Simple.s: src/E57Simple.cpp.s
.PHONY : src/E57Simple.s
# target to generate assembly for a file
src/E57Simple.cpp.s:
$(MAKE) $(MAKESILENT) -f CMakeFiles/openE57.dir/build.make CMakeFiles/openE57.dir/src/E57Simple.cpp.s
.PHONY : src/E57Simple.cpp.s
src/E57SimpleImpl.o: src/E57SimpleImpl.cpp.o
.PHONY : src/E57SimpleImpl.o
# target to build an object file
src/E57SimpleImpl.cpp.o:
$(MAKE) $(MAKESILENT) -f CMakeFiles/openE57.dir/build.make CMakeFiles/openE57.dir/src/E57SimpleImpl.cpp.o
.PHONY : src/E57SimpleImpl.cpp.o
src/E57SimpleImpl.i: src/E57SimpleImpl.cpp.i
.PHONY : src/E57SimpleImpl.i
# target to preprocess a source file
src/E57SimpleImpl.cpp.i:
$(MAKE) $(MAKESILENT) -f CMakeFiles/openE57.dir/build.make CMakeFiles/openE57.dir/src/E57SimpleImpl.cpp.i
.PHONY : src/E57SimpleImpl.cpp.i
src/E57SimpleImpl.s: src/E57SimpleImpl.cpp.s
.PHONY : src/E57SimpleImpl.s
# target to generate assembly for a file
src/E57SimpleImpl.cpp.s:
$(MAKE) $(MAKESILENT) -f CMakeFiles/openE57.dir/build.make CMakeFiles/openE57.dir/src/E57SimpleImpl.cpp.s
.PHONY : src/E57SimpleImpl.cpp.s
src/LAS/LASReader.o: src/LAS/LASReader.cpp.o
.PHONY : src/LAS/LASReader.o
# target to build an object file
src/LAS/LASReader.cpp.o:
$(MAKE) $(MAKESILENT) -f CMakeFiles/LASReader.dir/build.make CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o
.PHONY : src/LAS/LASReader.cpp.o
src/LAS/LASReader.i: src/LAS/LASReader.cpp.i
.PHONY : src/LAS/LASReader.i
# target to preprocess a source file
src/LAS/LASReader.cpp.i:
$(MAKE) $(MAKESILENT) -f CMakeFiles/LASReader.dir/build.make CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.i
.PHONY : src/LAS/LASReader.cpp.i
src/LAS/LASReader.s: src/LAS/LASReader.cpp.s
.PHONY : src/LAS/LASReader.s
# target to generate assembly for a file
src/LAS/LASReader.cpp.s:
$(MAKE) $(MAKESILENT) -f CMakeFiles/LASReader.dir/build.make CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.s
.PHONY : src/LAS/LASReader.cpp.s
src/time_conversion/time_conversion.o: src/time_conversion/time_conversion.c.o
.PHONY : src/time_conversion/time_conversion.o
# target to build an object file
src/time_conversion/time_conversion.c.o:
$(MAKE) $(MAKESILENT) -f CMakeFiles/time_conversion.dir/build.make CMakeFiles/time_conversion.dir/src/time_conversion/time_conversion.c.o
.PHONY : src/time_conversion/time_conversion.c.o
src/time_conversion/time_conversion.i: src/time_conversion/time_conversion.c.i
.PHONY : src/time_conversion/time_conversion.i
# target to preprocess a source file
src/time_conversion/time_conversion.c.i:
$(MAKE) $(MAKESILENT) -f CMakeFiles/time_conversion.dir/build.make CMakeFiles/time_conversion.dir/src/time_conversion/time_conversion.c.i
.PHONY : src/time_conversion/time_conversion.c.i
src/time_conversion/time_conversion.s: src/time_conversion/time_conversion.c.s
.PHONY : src/time_conversion/time_conversion.s
# target to generate assembly for a file
src/time_conversion/time_conversion.c.s:
$(MAKE) $(MAKESILENT) -f CMakeFiles/time_conversion.dir/build.make CMakeFiles/time_conversion.dir/src/time_conversion/time_conversion.c.s
.PHONY : src/time_conversion/time_conversion.c.s
# Help Target
help:
@echo "The following are some of the valid targets for this Makefile:"
@echo "... all (the default if no target is provided)"
@echo "... clean"
@echo "... depend"
@echo "... edit_cache"
@echo "... install"
@echo "... install/local"
@echo "... install/strip"
@echo "... list_install_components"
@echo "... package"
@echo "... package_source"
@echo "... rebuild_cache"
@echo "... DemoRead01"
@echo "... DemoWrite01"
@echo "... LASReader"
@echo "... e57fields"
@echo "... e57unpack"
@echo "... e57validate"
@echo "... e57xmldump"
@echo "... las2e57"
@echo "... openE57"
@echo "... time_conversion"
@echo "... src/E57Foundation.o"
@echo "... src/E57Foundation.i"
@echo "... src/E57Foundation.s"
@echo "... src/E57FoundationImpl.o"
@echo "... src/E57FoundationImpl.i"
@echo "... src/E57FoundationImpl.s"
@echo "... src/E57Simple.o"
@echo "... src/E57Simple.i"
@echo "... src/E57Simple.s"
@echo "... src/E57SimpleImpl.o"
@echo "... src/E57SimpleImpl.i"
@echo "... src/E57SimpleImpl.s"
@echo "... src/LAS/LASReader.o"
@echo "... src/LAS/LASReader.i"
@echo "... src/LAS/LASReader.s"
@echo "... src/time_conversion/time_conversion.o"
@echo "... src/time_conversion/time_conversion.i"
@echo "... src/time_conversion/time_conversion.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

BIN
build/linux/bin/DemoRead01 Executable file

Binary file not shown.

BIN
build/linux/bin/DemoWrite01 Executable file

Binary file not shown.

BIN
build/linux/bin/e57fields Executable file

Binary file not shown.

BIN
build/linux/bin/e57unpack Executable file

Binary file not shown.

BIN
build/linux/bin/e57validate Executable file

Binary file not shown.

BIN
build/linux/bin/e57xmldump Executable file

Binary file not shown.

BIN
build/linux/bin/las2e57 Executable file

Binary file not shown.

View File

@@ -0,0 +1,83 @@
# Install script for directory: /home/madduci/Projects/openE57
# Set the install prefix
if(NOT DEFINED CMAKE_INSTALL_PREFIX)
set(CMAKE_INSTALL_PREFIX "/home/madduci/Projects/openE57/build/linux/redist-openE57-v1.2.0")
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 "Release")
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()
if(NOT CMAKE_INSTALL_LOCAL_ONLY)
# Include the install script for the subdirectory.
include("/home/madduci/Projects/openE57/build/linux/examples/cmake_install.cmake")
endif()
if(NOT CMAKE_INSTALL_LOCAL_ONLY)
# Include the install script for the subdirectory.
include("/home/madduci/Projects/openE57/build/linux/tools/cmake_install.cmake")
endif()
if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_COMPONENT)
file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/lib" TYPE STATIC_LIBRARY FILES "/home/madduci/Projects/openE57/build/linux/lib/libopenE57.a")
endif()
if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_COMPONENT)
file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/lib" TYPE STATIC_LIBRARY FILES "/home/madduci/Projects/openE57/build/linux/lib/libLASReader.a")
endif()
if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_COMPONENT)
file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/lib" TYPE STATIC_LIBRARY FILES "/home/madduci/Projects/openE57/build/linux/lib/libtime_conversion.a")
endif()
if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_COMPONENT)
file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/include/e57" TYPE FILE FILES
"/home/madduci/Projects/openE57/include/openE57/E57Foundation.h"
"/home/madduci/Projects/openE57/include/openE57/E57Simple.h"
"/home/madduci/Projects/openE57/build/linux/opene57_export.h"
)
endif()
if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_COMPONENT)
file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/." TYPE FILE FILES "/home/madduci/Projects/openE57/CHANGES.TXT")
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/madduci/Projects/openE57/build/linux/${CMAKE_INSTALL_MANIFEST}"
"${CMAKE_INSTALL_MANIFEST_CONTENT}")

View File

@@ -0,0 +1,67 @@
[
{
"directory": "/home/madduci/Projects/openE57/build/linux",
"command": "/usr/bin/cc -DE57_REFIMPL_REVISION_ID=openE57-1.2.0 -DLINUX -DU_STATIC_IMPLEMENTATION -D_FORTIFY_SOURCE=2 -D_GLIBCXX_USE_CXX11_ABI=1 -I/home/madduci/Projects/openE57/build/linux/include -I/home/madduci/Projects/openE57/include -isystem /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include -isystem /home/madduci/.conan/data/zlib/1.2.11/_/_/package/19729b9559f3ae196cad45cb2b97468ccb75dcd1/include -isystem /home/madduci/.conan/data/bzip2/1.0.8/_/_/package/91a8b22c2c5a149bc617cfc06cdd21bf23b12567/include -isystem /home/madduci/.conan/data/xerces-c/3.2.2/_/_/package/b173bbda18164d49a449ffadc1c9e817f49e819d/include -isystem /home/madduci/.conan/data/icu/67.1/_/_/package/a8ceb9852beb2633e3b6f0e115181aa8c3c63b84/include -O3 -DNDEBUG -Wall -Wextra -Wpedantic -O2 -o CMakeFiles/time_conversion.dir/src/time_conversion/time_conversion.c.o -c /home/madduci/Projects/openE57/src/time_conversion/time_conversion.c",
"file": "/home/madduci/Projects/openE57/src/time_conversion/time_conversion.c"
},
{
"directory": "/home/madduci/Projects/openE57/build/linux",
"command": "/usr/bin/c++ -DE57_REFIMPL_REVISION_ID=openE57-1.2.0 -DLINUX -DU_STATIC_IMPLEMENTATION -D_FORTIFY_SOURCE=2 -D_GLIBCXX_USE_CXX11_ABI=1 -I/home/madduci/Projects/openE57/build/linux/include -I/home/madduci/Projects/openE57/include -isystem /home/madduci/.conan/data/xerces-c/3.2.2/_/_/package/b173bbda18164d49a449ffadc1c9e817f49e819d/include -isystem /home/madduci/.conan/data/icu/67.1/_/_/package/a8ceb9852beb2633e3b6f0e115181aa8c3c63b84/include -isystem /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include -isystem /home/madduci/.conan/data/zlib/1.2.11/_/_/package/19729b9559f3ae196cad45cb2b97468ccb75dcd1/include -isystem /home/madduci/.conan/data/bzip2/1.0.8/_/_/package/91a8b22c2c5a149bc617cfc06cdd21bf23b12567/include -O3 -DNDEBUG -Wall -Wextra -Wpedantic -O2 -std=gnu++17 -o CMakeFiles/LASReader.dir/src/LAS/LASReader.cpp.o -c /home/madduci/Projects/openE57/src/LAS/LASReader.cpp",
"file": "/home/madduci/Projects/openE57/src/LAS/LASReader.cpp"
},
{
"directory": "/home/madduci/Projects/openE57/build/linux",
"command": "/usr/bin/c++ -DE57_REFIMPL_REVISION_ID=openE57-1.2.0 -DLINUX -DU_STATIC_IMPLEMENTATION -D_FORTIFY_SOURCE=2 -D_GLIBCXX_USE_CXX11_ABI=1 -I/home/madduci/Projects/openE57/build/linux/include -I/home/madduci/Projects/openE57/include -isystem /home/madduci/.conan/data/xerces-c/3.2.2/_/_/package/b173bbda18164d49a449ffadc1c9e817f49e819d/include -isystem /home/madduci/.conan/data/icu/67.1/_/_/package/a8ceb9852beb2633e3b6f0e115181aa8c3c63b84/include -isystem /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include -isystem /home/madduci/.conan/data/zlib/1.2.11/_/_/package/19729b9559f3ae196cad45cb2b97468ccb75dcd1/include -isystem /home/madduci/.conan/data/bzip2/1.0.8/_/_/package/91a8b22c2c5a149bc617cfc06cdd21bf23b12567/include -O3 -DNDEBUG -Wall -Wextra -Wpedantic -O2 -std=gnu++17 -o CMakeFiles/openE57.dir/src/E57Simple.cpp.o -c /home/madduci/Projects/openE57/src/E57Simple.cpp",
"file": "/home/madduci/Projects/openE57/src/E57Simple.cpp"
},
{
"directory": "/home/madduci/Projects/openE57/build/linux",
"command": "/usr/bin/c++ -DE57_REFIMPL_REVISION_ID=openE57-1.2.0 -DLINUX -DU_STATIC_IMPLEMENTATION -D_FORTIFY_SOURCE=2 -D_GLIBCXX_USE_CXX11_ABI=1 -I/home/madduci/Projects/openE57/build/linux/include -I/home/madduci/Projects/openE57/include -isystem /home/madduci/.conan/data/xerces-c/3.2.2/_/_/package/b173bbda18164d49a449ffadc1c9e817f49e819d/include -isystem /home/madduci/.conan/data/icu/67.1/_/_/package/a8ceb9852beb2633e3b6f0e115181aa8c3c63b84/include -isystem /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include -isystem /home/madduci/.conan/data/zlib/1.2.11/_/_/package/19729b9559f3ae196cad45cb2b97468ccb75dcd1/include -isystem /home/madduci/.conan/data/bzip2/1.0.8/_/_/package/91a8b22c2c5a149bc617cfc06cdd21bf23b12567/include -O3 -DNDEBUG -Wall -Wextra -Wpedantic -O2 -std=gnu++17 -o CMakeFiles/openE57.dir/src/E57SimpleImpl.cpp.o -c /home/madduci/Projects/openE57/src/E57SimpleImpl.cpp",
"file": "/home/madduci/Projects/openE57/src/E57SimpleImpl.cpp"
},
{
"directory": "/home/madduci/Projects/openE57/build/linux",
"command": "/usr/bin/c++ -DE57_REFIMPL_REVISION_ID=openE57-1.2.0 -DLINUX -DU_STATIC_IMPLEMENTATION -D_FORTIFY_SOURCE=2 -D_GLIBCXX_USE_CXX11_ABI=1 -I/home/madduci/Projects/openE57/build/linux/include -I/home/madduci/Projects/openE57/include -isystem /home/madduci/.conan/data/xerces-c/3.2.2/_/_/package/b173bbda18164d49a449ffadc1c9e817f49e819d/include -isystem /home/madduci/.conan/data/icu/67.1/_/_/package/a8ceb9852beb2633e3b6f0e115181aa8c3c63b84/include -isystem /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include -isystem /home/madduci/.conan/data/zlib/1.2.11/_/_/package/19729b9559f3ae196cad45cb2b97468ccb75dcd1/include -isystem /home/madduci/.conan/data/bzip2/1.0.8/_/_/package/91a8b22c2c5a149bc617cfc06cdd21bf23b12567/include -O3 -DNDEBUG -Wall -Wextra -Wpedantic -O2 -std=gnu++17 -o CMakeFiles/openE57.dir/src/E57Foundation.cpp.o -c /home/madduci/Projects/openE57/src/E57Foundation.cpp",
"file": "/home/madduci/Projects/openE57/src/E57Foundation.cpp"
},
{
"directory": "/home/madduci/Projects/openE57/build/linux",
"command": "/usr/bin/c++ -DE57_REFIMPL_REVISION_ID=openE57-1.2.0 -DLINUX -DU_STATIC_IMPLEMENTATION -D_FORTIFY_SOURCE=2 -D_GLIBCXX_USE_CXX11_ABI=1 -I/home/madduci/Projects/openE57/build/linux/include -I/home/madduci/Projects/openE57/include -isystem /home/madduci/.conan/data/xerces-c/3.2.2/_/_/package/b173bbda18164d49a449ffadc1c9e817f49e819d/include -isystem /home/madduci/.conan/data/icu/67.1/_/_/package/a8ceb9852beb2633e3b6f0e115181aa8c3c63b84/include -isystem /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include -isystem /home/madduci/.conan/data/zlib/1.2.11/_/_/package/19729b9559f3ae196cad45cb2b97468ccb75dcd1/include -isystem /home/madduci/.conan/data/bzip2/1.0.8/_/_/package/91a8b22c2c5a149bc617cfc06cdd21bf23b12567/include -O3 -DNDEBUG -Wall -Wextra -Wpedantic -O2 -std=gnu++17 -o CMakeFiles/openE57.dir/src/E57FoundationImpl.cpp.o -c /home/madduci/Projects/openE57/src/E57FoundationImpl.cpp",
"file": "/home/madduci/Projects/openE57/src/E57FoundationImpl.cpp"
},
{
"directory": "/home/madduci/Projects/openE57/build/linux/examples",
"command": "/usr/bin/c++ -DE57_REFIMPL_REVISION_ID=openE57-1.2.0 -DLINUX -DU_STATIC_IMPLEMENTATION -D_FORTIFY_SOURCE=2 -D_GLIBCXX_USE_CXX11_ABI=1 -I/home/madduci/Projects/openE57/include -isystem /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include -isystem /home/madduci/.conan/data/zlib/1.2.11/_/_/package/19729b9559f3ae196cad45cb2b97468ccb75dcd1/include -isystem /home/madduci/.conan/data/bzip2/1.0.8/_/_/package/91a8b22c2c5a149bc617cfc06cdd21bf23b12567/include -isystem /home/madduci/.conan/data/xerces-c/3.2.2/_/_/package/b173bbda18164d49a449ffadc1c9e817f49e819d/include -isystem /home/madduci/.conan/data/icu/67.1/_/_/package/a8ceb9852beb2633e3b6f0e115181aa8c3c63b84/include -O3 -DNDEBUG -Wall -Wextra -Wpedantic -O2 -std=gnu++17 -o CMakeFiles/DemoRead01.dir/DemoRead01.cpp.o -c /home/madduci/Projects/openE57/examples/DemoRead01.cpp",
"file": "/home/madduci/Projects/openE57/examples/DemoRead01.cpp"
},
{
"directory": "/home/madduci/Projects/openE57/build/linux/examples",
"command": "/usr/bin/c++ -DE57_REFIMPL_REVISION_ID=openE57-1.2.0 -DLINUX -DU_STATIC_IMPLEMENTATION -D_FORTIFY_SOURCE=2 -D_GLIBCXX_USE_CXX11_ABI=1 -I/home/madduci/Projects/openE57/include -isystem /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include -isystem /home/madduci/.conan/data/zlib/1.2.11/_/_/package/19729b9559f3ae196cad45cb2b97468ccb75dcd1/include -isystem /home/madduci/.conan/data/bzip2/1.0.8/_/_/package/91a8b22c2c5a149bc617cfc06cdd21bf23b12567/include -isystem /home/madduci/.conan/data/xerces-c/3.2.2/_/_/package/b173bbda18164d49a449ffadc1c9e817f49e819d/include -isystem /home/madduci/.conan/data/icu/67.1/_/_/package/a8ceb9852beb2633e3b6f0e115181aa8c3c63b84/include -O3 -DNDEBUG -Wall -Wextra -Wpedantic -O2 -std=gnu++17 -o CMakeFiles/DemoWrite01.dir/DemoWrite01.cpp.o -c /home/madduci/Projects/openE57/examples/DemoWrite01.cpp",
"file": "/home/madduci/Projects/openE57/examples/DemoWrite01.cpp"
},
{
"directory": "/home/madduci/Projects/openE57/build/linux/tools",
"command": "/usr/bin/c++ -DE57_REFIMPL_REVISION_ID=openE57-1.2.0 -DLINUX -DU_STATIC_IMPLEMENTATION -D_FORTIFY_SOURCE=2 -D_GLIBCXX_USE_CXX11_ABI=1 -I/home/madduci/Projects/openE57/build/linux/include -I/home/madduci/Projects/openE57/include -isystem /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include -isystem /home/madduci/.conan/data/zlib/1.2.11/_/_/package/19729b9559f3ae196cad45cb2b97468ccb75dcd1/include -isystem /home/madduci/.conan/data/bzip2/1.0.8/_/_/package/91a8b22c2c5a149bc617cfc06cdd21bf23b12567/include -isystem /home/madduci/.conan/data/xerces-c/3.2.2/_/_/package/b173bbda18164d49a449ffadc1c9e817f49e819d/include -isystem /home/madduci/.conan/data/icu/67.1/_/_/package/a8ceb9852beb2633e3b6f0e115181aa8c3c63b84/include -O3 -DNDEBUG -Wall -Wextra -Wpedantic -O2 -std=gnu++17 -o CMakeFiles/las2e57.dir/las2e57.cpp.o -c /home/madduci/Projects/openE57/tools/las2e57.cpp",
"file": "/home/madduci/Projects/openE57/tools/las2e57.cpp"
},
{
"directory": "/home/madduci/Projects/openE57/build/linux/tools",
"command": "/usr/bin/c++ -DE57_REFIMPL_REVISION_ID=openE57-1.2.0 -DLINUX -DU_STATIC_IMPLEMENTATION -D_FORTIFY_SOURCE=2 -D_GLIBCXX_USE_CXX11_ABI=1 -I/home/madduci/Projects/openE57/build/linux/include -I/home/madduci/Projects/openE57/include -isystem /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include -isystem /home/madduci/.conan/data/zlib/1.2.11/_/_/package/19729b9559f3ae196cad45cb2b97468ccb75dcd1/include -isystem /home/madduci/.conan/data/bzip2/1.0.8/_/_/package/91a8b22c2c5a149bc617cfc06cdd21bf23b12567/include -isystem /home/madduci/.conan/data/xerces-c/3.2.2/_/_/package/b173bbda18164d49a449ffadc1c9e817f49e819d/include -isystem /home/madduci/.conan/data/icu/67.1/_/_/package/a8ceb9852beb2633e3b6f0e115181aa8c3c63b84/include -O3 -DNDEBUG -Wall -Wextra -Wpedantic -O2 -std=gnu++17 -o CMakeFiles/e57xmldump.dir/e57xmldump.cpp.o -c /home/madduci/Projects/openE57/tools/e57xmldump.cpp",
"file": "/home/madduci/Projects/openE57/tools/e57xmldump.cpp"
},
{
"directory": "/home/madduci/Projects/openE57/build/linux/tools",
"command": "/usr/bin/c++ -DE57_REFIMPL_REVISION_ID=openE57-1.2.0 -DLINUX -DU_STATIC_IMPLEMENTATION -D_FORTIFY_SOURCE=2 -D_GLIBCXX_USE_CXX11_ABI=1 -I/home/madduci/Projects/openE57/build/linux/include -I/home/madduci/Projects/openE57/include -isystem /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include -isystem /home/madduci/.conan/data/zlib/1.2.11/_/_/package/19729b9559f3ae196cad45cb2b97468ccb75dcd1/include -isystem /home/madduci/.conan/data/bzip2/1.0.8/_/_/package/91a8b22c2c5a149bc617cfc06cdd21bf23b12567/include -isystem /home/madduci/.conan/data/xerces-c/3.2.2/_/_/package/b173bbda18164d49a449ffadc1c9e817f49e819d/include -isystem /home/madduci/.conan/data/icu/67.1/_/_/package/a8ceb9852beb2633e3b6f0e115181aa8c3c63b84/include -O3 -DNDEBUG -Wall -Wextra -Wpedantic -O2 -std=gnu++17 -o CMakeFiles/e57validate.dir/e57validate.cpp.o -c /home/madduci/Projects/openE57/tools/e57validate.cpp",
"file": "/home/madduci/Projects/openE57/tools/e57validate.cpp"
},
{
"directory": "/home/madduci/Projects/openE57/build/linux/tools",
"command": "/usr/bin/c++ -DE57_REFIMPL_REVISION_ID=openE57-1.2.0 -DLINUX -DU_STATIC_IMPLEMENTATION -D_FORTIFY_SOURCE=2 -D_GLIBCXX_USE_CXX11_ABI=1 -I/home/madduci/Projects/openE57/build/linux/include -I/home/madduci/Projects/openE57/include -isystem /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include -isystem /home/madduci/.conan/data/zlib/1.2.11/_/_/package/19729b9559f3ae196cad45cb2b97468ccb75dcd1/include -isystem /home/madduci/.conan/data/bzip2/1.0.8/_/_/package/91a8b22c2c5a149bc617cfc06cdd21bf23b12567/include -isystem /home/madduci/.conan/data/xerces-c/3.2.2/_/_/package/b173bbda18164d49a449ffadc1c9e817f49e819d/include -isystem /home/madduci/.conan/data/icu/67.1/_/_/package/a8ceb9852beb2633e3b6f0e115181aa8c3c63b84/include -O3 -DNDEBUG -Wall -Wextra -Wpedantic -O2 -std=gnu++17 -o CMakeFiles/e57unpack.dir/e57unpack.cpp.o -c /home/madduci/Projects/openE57/tools/e57unpack.cpp",
"file": "/home/madduci/Projects/openE57/tools/e57unpack.cpp"
},
{
"directory": "/home/madduci/Projects/openE57/build/linux/tools",
"command": "/usr/bin/c++ -DE57_REFIMPL_REVISION_ID=openE57-1.2.0 -DLINUX -DU_STATIC_IMPLEMENTATION -D_FORTIFY_SOURCE=2 -D_GLIBCXX_USE_CXX11_ABI=1 -I/home/madduci/Projects/openE57/build/linux/include -I/home/madduci/Projects/openE57/include -isystem /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include -isystem /home/madduci/.conan/data/zlib/1.2.11/_/_/package/19729b9559f3ae196cad45cb2b97468ccb75dcd1/include -isystem /home/madduci/.conan/data/bzip2/1.0.8/_/_/package/91a8b22c2c5a149bc617cfc06cdd21bf23b12567/include -isystem /home/madduci/.conan/data/xerces-c/3.2.2/_/_/package/b173bbda18164d49a449ffadc1c9e817f49e819d/include -isystem /home/madduci/.conan/data/icu/67.1/_/_/package/a8ceb9852beb2633e3b6f0e115181aa8c3c63b84/include -O3 -DNDEBUG -Wall -Wextra -Wpedantic -O2 -std=gnu++17 -o CMakeFiles/e57fields.dir/e57fields.cpp.o -c /home/madduci/Projects/openE57/tools/e57fields.cpp",
"file": "/home/madduci/Projects/openE57/tools/e57fields.cpp"
}
]

42
build/linux/conan.lock Normal file
View File

@@ -0,0 +1,42 @@
{
"profile_host": "[settings]\narch=x86_64\narch_build=x86_64\nbuild_type=Release\ncompiler=gcc\ncompiler.libcxx=libstdc++11\ncompiler.version=10\nos=Linux\nos_build=Linux\n[options]\n[build_requires]\n[env]\nCFLAGS=-O2 -fstack-protector-strong -Wp,-D_FORTIFY_SOURCE=2\nCXXFLAGS=-O2 -fstack-protector-strong -Wp,-D_FORTIFY_SOURCE=2\nLDFLAGS=-Wl,--as-needed -Wl,-z,relro,-z,now -Wa,--noexecstack",
"graph_lock": {
"nodes": {
"0": {
"pref": null,
"options": "boost:asio_no_deprecated=False\nboost:bzip2=True\nboost:debug_level=2\nboost:error_code_header_only=False\nboost:extra_b2_flags=None\nboost:fPIC=True\nboost:filesystem_no_deprecated=False\nboost:header_only=False\nboost:i18n_backend=iconv\nboost:layout=system\nboost:lzma=False\nboost:magic_autolink=False\nboost:multithreading=True\nboost:namespace=boost\nboost:namespace_alias=False\nboost:pch=True\nboost:python_executable=None\nboost:python_version=None\nboost:segmented_stacks=False\nboost:shared=False\nboost:system_no_deprecated=False\nboost:without_atomic=False\nboost:without_chrono=False\nboost:without_container=False\nboost:without_context=False\nboost:without_contract=False\nboost:without_coroutine=False\nboost:without_date_time=False\nboost:without_exception=False\nboost:without_fiber=False\nboost:without_filesystem=False\nboost:without_graph=False\nboost:without_graph_parallel=False\nboost:without_iostreams=False\nboost:without_locale=False\nboost:without_log=False\nboost:without_math=False\nboost:without_mpi=False\nboost:without_program_options=False\nboost:without_python=True\nboost:without_random=False\nboost:without_regex=False\nboost:without_serialization=False\nboost:without_stacktrace=False\nboost:without_system=False\nboost:without_test=False\nboost:without_thread=False\nboost:without_timer=False\nboost:without_type_erasure=False\nboost:without_wave=False\nboost:zlib=True\nboost:zstd=False\nbzip2:build_executable=True\nbzip2:fPIC=True\nbzip2:shared=False\nicu:data_packaging=archive\nicu:fPIC=True\nicu:shared=False\nicu:silent=True\nicu:with_dyload=True\nicu:with_unit_tests=False\nxerces-c:fPIC=True\nxerces-c:shared=False\nzlib:fPIC=True\nzlib:minizip=False\nzlib:shared=False",
"requires": [
"1",
"2",
"3"
],
"path": "/home/madduci/Projects/openE57/conanfile.txt"
},
"1": {
"pref": "icu/67.1#0:a8ceb9852beb2633e3b6f0e115181aa8c3c63b84#1be81eabb8d8885bb15ac22eddbf6f61",
"options": "data_packaging=archive\nfPIC=True\nshared=False\nsilent=True\nwith_dyload=True\nwith_unit_tests=False"
},
"2": {
"pref": "xerces-c/3.2.2#0:b173bbda18164d49a449ffadc1c9e817f49e819d#7bd339b0f461d547c822ce5812e792a2",
"options": "fPIC=True\nshared=False"
},
"3": {
"pref": "boost/1.73.0#0:104297d4d8bdbca7e9351b0f32c32f11628164c7#5f1d3d95d5ea38f534f10b66b88a20c8",
"options": "asio_no_deprecated=False\nbzip2=True\ndebug_level=2\nerror_code_header_only=False\nextra_b2_flags=None\nfPIC=True\nfilesystem_no_deprecated=False\nheader_only=False\ni18n_backend=iconv\nlayout=system\nlzma=False\nmagic_autolink=False\nmultithreading=True\nnamespace=boost\nnamespace_alias=False\npch=True\npython_executable=None\npython_version=None\nsegmented_stacks=False\nshared=False\nsystem_no_deprecated=False\nwithout_atomic=False\nwithout_chrono=False\nwithout_container=False\nwithout_context=False\nwithout_contract=False\nwithout_coroutine=False\nwithout_date_time=False\nwithout_exception=False\nwithout_fiber=False\nwithout_filesystem=False\nwithout_graph=False\nwithout_graph_parallel=False\nwithout_iostreams=False\nwithout_locale=False\nwithout_log=False\nwithout_math=False\nwithout_mpi=False\nwithout_program_options=False\nwithout_python=True\nwithout_random=False\nwithout_regex=False\nwithout_serialization=False\nwithout_stacktrace=False\nwithout_system=False\nwithout_test=False\nwithout_thread=False\nwithout_timer=False\nwithout_type_erasure=False\nwithout_wave=False\nzlib=True\nzstd=False\nbzip2:build_executable=True\nbzip2:fPIC=True\nbzip2:shared=False\nzlib:fPIC=True\nzlib:minizip=False\nzlib:shared=False",
"requires": [
"4",
"5"
]
},
"4": {
"pref": "zlib/1.2.11#0:19729b9559f3ae196cad45cb2b97468ccb75dcd1#f07bc875c885836b4db4c5711c4531f6",
"options": "fPIC=True\nminizip=False\nshared=False"
},
"5": {
"pref": "bzip2/1.0.8#0:91a8b22c2c5a149bc617cfc06cdd21bf23b12567#75164718133e62c9baf1e0d065b979f9",
"options": "build_executable=True\nfPIC=True\nshared=False"
}
}
},
"version": "0.3"
}

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,459 @@
[includedirs]
/home/madduci/.conan/data/icu/67.1/_/_/package/a8ceb9852beb2633e3b6f0e115181aa8c3c63b84/include
/home/madduci/.conan/data/xerces-c/3.2.2/_/_/package/b173bbda18164d49a449ffadc1c9e817f49e819d/include
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include
/home/madduci/.conan/data/zlib/1.2.11/_/_/package/19729b9559f3ae196cad45cb2b97468ccb75dcd1/include
/home/madduci/.conan/data/bzip2/1.0.8/_/_/package/91a8b22c2c5a149bc617cfc06cdd21bf23b12567/include
[libdirs]
/home/madduci/.conan/data/icu/67.1/_/_/package/a8ceb9852beb2633e3b6f0e115181aa8c3c63b84/lib
/home/madduci/.conan/data/xerces-c/3.2.2/_/_/package/b173bbda18164d49a449ffadc1c9e817f49e819d/lib
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/lib
/home/madduci/.conan/data/zlib/1.2.11/_/_/package/19729b9559f3ae196cad45cb2b97468ccb75dcd1/lib
/home/madduci/.conan/data/bzip2/1.0.8/_/_/package/91a8b22c2c5a149bc617cfc06cdd21bf23b12567/lib
[bindirs]
/home/madduci/.conan/data/icu/67.1/_/_/package/a8ceb9852beb2633e3b6f0e115181aa8c3c63b84/bin
/home/madduci/.conan/data/icu/67.1/_/_/package/a8ceb9852beb2633e3b6f0e115181aa8c3c63b84/lib
/home/madduci/.conan/data/xerces-c/3.2.2/_/_/package/b173bbda18164d49a449ffadc1c9e817f49e819d/bin
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/lib
/home/madduci/.conan/data/bzip2/1.0.8/_/_/package/91a8b22c2c5a149bc617cfc06cdd21bf23b12567/bin
[resdirs]
[builddirs]
/home/madduci/.conan/data/icu/67.1/_/_/package/a8ceb9852beb2633e3b6f0e115181aa8c3c63b84/
/home/madduci/.conan/data/xerces-c/3.2.2/_/_/package/b173bbda18164d49a449ffadc1c9e817f49e819d/
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/
/home/madduci/.conan/data/zlib/1.2.11/_/_/package/19729b9559f3ae196cad45cb2b97468ccb75dcd1/
/home/madduci/.conan/data/bzip2/1.0.8/_/_/package/91a8b22c2c5a149bc617cfc06cdd21bf23b12567/
[libs]
icui18n
icuio
icutest
icutu
icuuc
icudata
xerces-c-3.2
pthread
boost_wave
boost_container
boost_contract
boost_exception
boost_graph
boost_iostreams
boost_locale
boost_log
boost_program_options
boost_random
boost_regex
boost_serialization
boost_wserialization
boost_coroutine
boost_fiber
boost_context
boost_timer
boost_thread
boost_chrono
boost_date_time
boost_atomic
boost_filesystem
boost_system
boost_type_erasure
boost_log_setup
boost_math_c99
boost_math_c99f
boost_math_c99l
boost_math_tr1
boost_math_tr1f
boost_math_tr1l
boost_nowide
boost_stacktrace_addr2line
boost_stacktrace_basic
boost_stacktrace_noop
boost_unit_test_framework
z
bz2
[system_libs]
dl
rt
pthread
[defines]
_GLIBCXX_USE_CXX11_ABI=1
U_STATIC_IMPLEMENTATION
[cppflags]
[cxxflags]
[cflags]
[sharedlinkflags]
[exelinkflags]
[sysroot]
[frameworks]
[frameworkdirs]
[includedirs_icu]
/home/madduci/.conan/data/icu/67.1/_/_/package/a8ceb9852beb2633e3b6f0e115181aa8c3c63b84/include
[libdirs_icu]
/home/madduci/.conan/data/icu/67.1/_/_/package/a8ceb9852beb2633e3b6f0e115181aa8c3c63b84/lib
[bindirs_icu]
/home/madduci/.conan/data/icu/67.1/_/_/package/a8ceb9852beb2633e3b6f0e115181aa8c3c63b84/bin
/home/madduci/.conan/data/icu/67.1/_/_/package/a8ceb9852beb2633e3b6f0e115181aa8c3c63b84/lib
[resdirs_icu]
[builddirs_icu]
/home/madduci/.conan/data/icu/67.1/_/_/package/a8ceb9852beb2633e3b6f0e115181aa8c3c63b84/
[libs_icu]
icui18n
icuio
icutest
icutu
icuuc
icudata
[system_libs_icu]
dl
pthread
[defines_icu]
U_STATIC_IMPLEMENTATION
[cppflags_icu]
[cxxflags_icu]
[cflags_icu]
[sharedlinkflags_icu]
[exelinkflags_icu]
[sysroot_icu]
[frameworks_icu]
[frameworkdirs_icu]
[rootpath_icu]
/home/madduci/.conan/data/icu/67.1/_/_/package/a8ceb9852beb2633e3b6f0e115181aa8c3c63b84
[name_icu]
icu
[version_icu]
67.1
[includedirs_xerces-c]
/home/madduci/.conan/data/xerces-c/3.2.2/_/_/package/b173bbda18164d49a449ffadc1c9e817f49e819d/include
[libdirs_xerces-c]
/home/madduci/.conan/data/xerces-c/3.2.2/_/_/package/b173bbda18164d49a449ffadc1c9e817f49e819d/lib
[bindirs_xerces-c]
/home/madduci/.conan/data/xerces-c/3.2.2/_/_/package/b173bbda18164d49a449ffadc1c9e817f49e819d/bin
[resdirs_xerces-c]
[builddirs_xerces-c]
/home/madduci/.conan/data/xerces-c/3.2.2/_/_/package/b173bbda18164d49a449ffadc1c9e817f49e819d/
[libs_xerces-c]
xerces-c-3.2
pthread
[system_libs_xerces-c]
[defines_xerces-c]
[cppflags_xerces-c]
[cxxflags_xerces-c]
[cflags_xerces-c]
[sharedlinkflags_xerces-c]
[exelinkflags_xerces-c]
[sysroot_xerces-c]
[frameworks_xerces-c]
[frameworkdirs_xerces-c]
[rootpath_xerces-c]
/home/madduci/.conan/data/xerces-c/3.2.2/_/_/package/b173bbda18164d49a449ffadc1c9e817f49e819d
[name_xerces-c]
xerces-c
[version_xerces-c]
3.2.2
[includedirs_boost]
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include
[libdirs_boost]
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/lib
[bindirs_boost]
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/lib
[resdirs_boost]
[builddirs_boost]
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/
[libs_boost]
boost_wave
boost_container
boost_contract
boost_exception
boost_graph
boost_iostreams
boost_locale
boost_log
boost_program_options
boost_random
boost_regex
boost_serialization
boost_wserialization
boost_coroutine
boost_fiber
boost_context
boost_timer
boost_thread
boost_chrono
boost_date_time
boost_atomic
boost_filesystem
boost_system
boost_type_erasure
boost_log_setup
boost_math_c99
boost_math_c99f
boost_math_c99l
boost_math_tr1
boost_math_tr1f
boost_math_tr1l
boost_nowide
boost_stacktrace_addr2line
boost_stacktrace_basic
boost_stacktrace_noop
boost_unit_test_framework
[system_libs_boost]
rt
pthread
[defines_boost]
_GLIBCXX_USE_CXX11_ABI=1
[cppflags_boost]
[cxxflags_boost]
[cflags_boost]
[sharedlinkflags_boost]
[exelinkflags_boost]
[sysroot_boost]
[frameworks_boost]
[frameworkdirs_boost]
[rootpath_boost]
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7
[name_boost]
boost
[version_boost]
1.73.0
[includedirs_zlib]
/home/madduci/.conan/data/zlib/1.2.11/_/_/package/19729b9559f3ae196cad45cb2b97468ccb75dcd1/include
[libdirs_zlib]
/home/madduci/.conan/data/zlib/1.2.11/_/_/package/19729b9559f3ae196cad45cb2b97468ccb75dcd1/lib
[bindirs_zlib]
[resdirs_zlib]
[builddirs_zlib]
/home/madduci/.conan/data/zlib/1.2.11/_/_/package/19729b9559f3ae196cad45cb2b97468ccb75dcd1/
[libs_zlib]
z
[system_libs_zlib]
[defines_zlib]
[cppflags_zlib]
[cxxflags_zlib]
[cflags_zlib]
[sharedlinkflags_zlib]
[exelinkflags_zlib]
[sysroot_zlib]
[frameworks_zlib]
[frameworkdirs_zlib]
[rootpath_zlib]
/home/madduci/.conan/data/zlib/1.2.11/_/_/package/19729b9559f3ae196cad45cb2b97468ccb75dcd1
[name_zlib]
zlib
[version_zlib]
1.2.11
[includedirs_bzip2]
/home/madduci/.conan/data/bzip2/1.0.8/_/_/package/91a8b22c2c5a149bc617cfc06cdd21bf23b12567/include
[libdirs_bzip2]
/home/madduci/.conan/data/bzip2/1.0.8/_/_/package/91a8b22c2c5a149bc617cfc06cdd21bf23b12567/lib
[bindirs_bzip2]
/home/madduci/.conan/data/bzip2/1.0.8/_/_/package/91a8b22c2c5a149bc617cfc06cdd21bf23b12567/bin
[resdirs_bzip2]
[builddirs_bzip2]
/home/madduci/.conan/data/bzip2/1.0.8/_/_/package/91a8b22c2c5a149bc617cfc06cdd21bf23b12567/
[libs_bzip2]
bz2
[system_libs_bzip2]
[defines_bzip2]
[cppflags_bzip2]
[cxxflags_bzip2]
[cflags_bzip2]
[sharedlinkflags_bzip2]
[exelinkflags_bzip2]
[sysroot_bzip2]
[frameworks_bzip2]
[frameworkdirs_bzip2]
[rootpath_bzip2]
/home/madduci/.conan/data/bzip2/1.0.8/_/_/package/91a8b22c2c5a149bc617cfc06cdd21bf23b12567
[name_bzip2]
bzip2
[version_bzip2]
1.0.8
[USER_icu]
[USER_xerces-c]
[USER_boost]
[USER_zlib]
[USER_bzip2]
[ENV_icu]
ICU_DATA=["/home/madduci/.conan/data/icu/67.1/_/_/package/a8ceb9852beb2633e3b6f0e115181aa8c3c63b84/lib/icu/67.1/icudt67l.dat"]
[ENV_xerces-c]
[ENV_boost]
BOOST_ROOT=/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7
[ENV_zlib]
[ENV_bzip2]

108
build/linux/conaninfo.txt Normal file
View File

@@ -0,0 +1,108 @@
[settings]
arch=x86_64
build_type=Release
compiler=gcc
compiler.libcxx=libstdc++11
compiler.version=10
os=Linux
[requires]
boost/1.Y.Z
icu/67.Y.Z
xerces-c/3.Y.Z
[options]
[full_settings]
arch=x86_64
arch_build=x86_64
build_type=Release
compiler=gcc
compiler.libcxx=libstdc++11
compiler.version=10
os=Linux
os_build=Linux
[full_requires]
boost/1.73.0:104297d4d8bdbca7e9351b0f32c32f11628164c7
bzip2/1.0.8:91a8b22c2c5a149bc617cfc06cdd21bf23b12567
icu/67.1:a8ceb9852beb2633e3b6f0e115181aa8c3c63b84
xerces-c/3.2.2:b173bbda18164d49a449ffadc1c9e817f49e819d
zlib/1.2.11:19729b9559f3ae196cad45cb2b97468ccb75dcd1
[full_options]
boost:asio_no_deprecated=False
boost:bzip2=True
boost:debug_level=2
boost:error_code_header_only=False
boost:extra_b2_flags=None
boost:fPIC=True
boost:filesystem_no_deprecated=False
boost:header_only=False
boost:i18n_backend=iconv
boost:layout=system
boost:lzma=False
boost:magic_autolink=False
boost:multithreading=True
boost:namespace=boost
boost:namespace_alias=False
boost:pch=True
boost:python_executable=None
boost:python_version=None
boost:segmented_stacks=False
boost:shared=False
boost:system_no_deprecated=False
boost:without_atomic=False
boost:without_chrono=False
boost:without_container=False
boost:without_context=False
boost:without_contract=False
boost:without_coroutine=False
boost:without_date_time=False
boost:without_exception=False
boost:without_fiber=False
boost:without_filesystem=False
boost:without_graph=False
boost:without_graph_parallel=False
boost:without_iostreams=False
boost:without_locale=False
boost:without_log=False
boost:without_math=False
boost:without_mpi=False
boost:without_program_options=False
boost:without_python=True
boost:without_random=False
boost:without_regex=False
boost:without_serialization=False
boost:without_stacktrace=False
boost:without_system=False
boost:without_test=False
boost:without_thread=False
boost:without_timer=False
boost:without_type_erasure=False
boost:without_wave=False
boost:zlib=True
boost:zstd=False
bzip2:build_executable=True
bzip2:fPIC=True
bzip2:shared=False
icu:data_packaging=archive
icu:fPIC=True
icu:shared=False
icu:silent=True
icu:with_dyload=True
icu:with_unit_tests=False
xerces-c:fPIC=True
xerces-c:shared=False
zlib:fPIC=True
zlib:minizip=False
zlib:shared=False
[recipe_hash]
[env]
CFLAGS=-O2 -fstack-protector-strong -Wp,-D_FORTIFY_SOURCE=2
CXXFLAGS=-O2 -fstack-protector-strong -Wp,-D_FORTIFY_SOURCE=2
LDFLAGS=-Wl,--as-needed -Wl,-z,relro,-z,now -Wa,--noexecstack

View File

@@ -0,0 +1,16 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 3.17
# Relative path conversion top directories.
set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/home/madduci/Projects/openE57")
set(CMAKE_RELATIVE_PATH_TOP_BINARY "/home/madduci/Projects/openE57/build/linux")
# 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})

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,36 @@
# The set of languages for which implicit dependencies are needed:
set(CMAKE_DEPENDS_LANGUAGES
"CXX"
)
# The set of files for implicit dependencies of each language:
set(CMAKE_DEPENDS_CHECK_CXX
"/home/madduci/Projects/openE57/examples/DemoRead01.cpp" "/home/madduci/Projects/openE57/build/linux/examples/CMakeFiles/DemoRead01.dir/DemoRead01.cpp.o"
)
set(CMAKE_CXX_COMPILER_ID "GNU")
# Preprocessor definitions for this target.
set(CMAKE_TARGET_DEFINITIONS_CXX
"E57_REFIMPL_REVISION_ID=openE57-1.2.0"
"LINUX"
"U_STATIC_IMPLEMENTATION"
"_FORTIFY_SOURCE=2"
"_GLIBCXX_USE_CXX11_ABI=1"
)
# The include file search paths:
set(CMAKE_CXX_TARGET_INCLUDE_PATH
"../../include"
"/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include"
"/home/madduci/.conan/data/zlib/1.2.11/_/_/package/19729b9559f3ae196cad45cb2b97468ccb75dcd1/include"
"/home/madduci/.conan/data/bzip2/1.0.8/_/_/package/91a8b22c2c5a149bc617cfc06cdd21bf23b12567/include"
"/home/madduci/.conan/data/xerces-c/3.2.2/_/_/package/b173bbda18164d49a449ffadc1c9e817f49e819d/include"
"/home/madduci/.conan/data/icu/67.1/_/_/package/a8ceb9852beb2633e3b6f0e115181aa8c3c63b84/include"
)
# Targets to which this target links.
set(CMAKE_TARGET_LINKED_INFO_FILES
"/home/madduci/Projects/openE57/build/linux/CMakeFiles/openE57.dir/DependInfo.cmake"
)
# Fortran module output directory.
set(CMAKE_Fortran_TARGET_MODULE_DIR "")

View File

@@ -0,0 +1,164 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 3.17
# 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/madduci/Projects/openE57
# The top-level build directory on which CMake was run.
CMAKE_BINARY_DIR = /home/madduci/Projects/openE57/build/linux
# Include any dependencies generated for this target.
include examples/CMakeFiles/DemoRead01.dir/depend.make
# Include the progress variables for this target.
include examples/CMakeFiles/DemoRead01.dir/progress.make
# Include the compile flags for this target's objects.
include examples/CMakeFiles/DemoRead01.dir/flags.make
examples/CMakeFiles/DemoRead01.dir/DemoRead01.cpp.o: examples/CMakeFiles/DemoRead01.dir/flags.make
examples/CMakeFiles/DemoRead01.dir/DemoRead01.cpp.o: ../../examples/DemoRead01.cpp
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/madduci/Projects/openE57/build/linux/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object examples/CMakeFiles/DemoRead01.dir/DemoRead01.cpp.o"
cd /home/madduci/Projects/openE57/build/linux/examples && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -o CMakeFiles/DemoRead01.dir/DemoRead01.cpp.o -c /home/madduci/Projects/openE57/examples/DemoRead01.cpp
examples/CMakeFiles/DemoRead01.dir/DemoRead01.cpp.i: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/DemoRead01.dir/DemoRead01.cpp.i"
cd /home/madduci/Projects/openE57/build/linux/examples && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/madduci/Projects/openE57/examples/DemoRead01.cpp > CMakeFiles/DemoRead01.dir/DemoRead01.cpp.i
examples/CMakeFiles/DemoRead01.dir/DemoRead01.cpp.s: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/DemoRead01.dir/DemoRead01.cpp.s"
cd /home/madduci/Projects/openE57/build/linux/examples && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/madduci/Projects/openE57/examples/DemoRead01.cpp -o CMakeFiles/DemoRead01.dir/DemoRead01.cpp.s
# Object files for target DemoRead01
DemoRead01_OBJECTS = \
"CMakeFiles/DemoRead01.dir/DemoRead01.cpp.o"
# External object files for target DemoRead01
DemoRead01_EXTERNAL_OBJECTS =
bin/DemoRead01: examples/CMakeFiles/DemoRead01.dir/DemoRead01.cpp.o
bin/DemoRead01: examples/CMakeFiles/DemoRead01.dir/build.make
bin/DemoRead01: lib/libopenE57.a
bin/DemoRead01: /home/madduci/.conan/data/xerces-c/3.2.2/_/_/package/b173bbda18164d49a449ffadc1c9e817f49e819d/lib/libxerces-c-3.2.a
bin/DemoRead01: /home/madduci/.conan/data/icu/67.1/_/_/package/a8ceb9852beb2633e3b6f0e115181aa8c3c63b84/lib/libicui18n.a
bin/DemoRead01: /home/madduci/.conan/data/icu/67.1/_/_/package/a8ceb9852beb2633e3b6f0e115181aa8c3c63b84/lib/libicuio.a
bin/DemoRead01: /home/madduci/.conan/data/icu/67.1/_/_/package/a8ceb9852beb2633e3b6f0e115181aa8c3c63b84/lib/libicutest.a
bin/DemoRead01: /home/madduci/.conan/data/icu/67.1/_/_/package/a8ceb9852beb2633e3b6f0e115181aa8c3c63b84/lib/libicutu.a
bin/DemoRead01: /home/madduci/.conan/data/icu/67.1/_/_/package/a8ceb9852beb2633e3b6f0e115181aa8c3c63b84/lib/libicuuc.a
bin/DemoRead01: /home/madduci/.conan/data/icu/67.1/_/_/package/a8ceb9852beb2633e3b6f0e115181aa8c3c63b84/lib/libicudata.a
bin/DemoRead01: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/lib/libboost_wave.a
bin/DemoRead01: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/lib/libboost_container.a
bin/DemoRead01: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/lib/libboost_contract.a
bin/DemoRead01: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/lib/libboost_exception.a
bin/DemoRead01: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/lib/libboost_graph.a
bin/DemoRead01: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/lib/libboost_iostreams.a
bin/DemoRead01: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/lib/libboost_locale.a
bin/DemoRead01: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/lib/libboost_log.a
bin/DemoRead01: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/lib/libboost_program_options.a
bin/DemoRead01: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/lib/libboost_random.a
bin/DemoRead01: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/lib/libboost_regex.a
bin/DemoRead01: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/lib/libboost_serialization.a
bin/DemoRead01: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/lib/libboost_wserialization.a
bin/DemoRead01: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/lib/libboost_coroutine.a
bin/DemoRead01: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/lib/libboost_fiber.a
bin/DemoRead01: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/lib/libboost_context.a
bin/DemoRead01: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/lib/libboost_timer.a
bin/DemoRead01: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/lib/libboost_thread.a
bin/DemoRead01: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/lib/libboost_chrono.a
bin/DemoRead01: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/lib/libboost_date_time.a
bin/DemoRead01: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/lib/libboost_atomic.a
bin/DemoRead01: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/lib/libboost_filesystem.a
bin/DemoRead01: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/lib/libboost_system.a
bin/DemoRead01: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/lib/libboost_type_erasure.a
bin/DemoRead01: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/lib/libboost_log_setup.a
bin/DemoRead01: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/lib/libboost_math_c99.a
bin/DemoRead01: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/lib/libboost_math_c99f.a
bin/DemoRead01: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/lib/libboost_math_c99l.a
bin/DemoRead01: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/lib/libboost_math_tr1.a
bin/DemoRead01: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/lib/libboost_math_tr1f.a
bin/DemoRead01: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/lib/libboost_math_tr1l.a
bin/DemoRead01: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/lib/libboost_nowide.a
bin/DemoRead01: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/lib/libboost_stacktrace_addr2line.a
bin/DemoRead01: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/lib/libboost_stacktrace_basic.a
bin/DemoRead01: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/lib/libboost_stacktrace_noop.a
bin/DemoRead01: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/lib/libboost_unit_test_framework.a
bin/DemoRead01: /home/madduci/.conan/data/zlib/1.2.11/_/_/package/19729b9559f3ae196cad45cb2b97468ccb75dcd1/lib/libz.a
bin/DemoRead01: /home/madduci/.conan/data/bzip2/1.0.8/_/_/package/91a8b22c2c5a149bc617cfc06cdd21bf23b12567/lib/libbz2.a
bin/DemoRead01: examples/CMakeFiles/DemoRead01.dir/link.txt
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --bold --progress-dir=/home/madduci/Projects/openE57/build/linux/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Linking CXX executable ../bin/DemoRead01"
cd /home/madduci/Projects/openE57/build/linux/examples && $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/DemoRead01.dir/link.txt --verbose=$(VERBOSE)
# Rule to build all files generated by this target.
examples/CMakeFiles/DemoRead01.dir/build: bin/DemoRead01
.PHONY : examples/CMakeFiles/DemoRead01.dir/build
examples/CMakeFiles/DemoRead01.dir/clean:
cd /home/madduci/Projects/openE57/build/linux/examples && $(CMAKE_COMMAND) -P CMakeFiles/DemoRead01.dir/cmake_clean.cmake
.PHONY : examples/CMakeFiles/DemoRead01.dir/clean
examples/CMakeFiles/DemoRead01.dir/depend:
cd /home/madduci/Projects/openE57/build/linux && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/madduci/Projects/openE57 /home/madduci/Projects/openE57/examples /home/madduci/Projects/openE57/build/linux /home/madduci/Projects/openE57/build/linux/examples /home/madduci/Projects/openE57/build/linux/examples/CMakeFiles/DemoRead01.dir/DependInfo.cmake --color=$(COLOR)
.PHONY : examples/CMakeFiles/DemoRead01.dir/depend

View File

@@ -0,0 +1,10 @@
file(REMOVE_RECURSE
"../bin/DemoRead01"
"../bin/DemoRead01.pdb"
"CMakeFiles/DemoRead01.dir/DemoRead01.cpp.o"
)
# Per-language clean rules from dependency scanning.
foreach(lang CXX)
include(CMakeFiles/DemoRead01.dir/cmake_clean_${lang}.cmake OPTIONAL)
endforeach()

View File

@@ -0,0 +1,183 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 3.17
examples/CMakeFiles/DemoRead01.dir/DemoRead01.cpp.o
../../include/openE57/E57Foundation.h
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/assert.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/assert/source_location.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/checked_delete.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/compiler/borland.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/compiler/clang.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/compiler/codegear.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/compiler/comeau.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/compiler/common_edg.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/compiler/compaq_cxx.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/compiler/cray.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/compiler/digitalmars.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/compiler/gcc.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/compiler/gcc_xml.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/compiler/greenhills.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/compiler/hp_acc.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/compiler/intel.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/compiler/kai.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/compiler/metrowerks.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/compiler/mpw.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/compiler/nvcc.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/compiler/pathscale.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/compiler/pgi.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/compiler/sgi_mipspro.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/compiler/sunpro_cc.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/compiler/vacpp.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/compiler/visualc.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/compiler/xlcpp.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/compiler/xlcpp_zos.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/detail/posix_features.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/detail/select_compiler_config.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/detail/select_platform_config.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/detail/select_stdlib_config.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/detail/suffix.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/helper_macros.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/no_tr1/memory.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/no_tr1/utility.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/platform/aix.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/platform/amigaos.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/platform/beos.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/platform/bsd.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/platform/cray.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/platform/cygwin.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/platform/hpux.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/platform/irix.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/platform/linux.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/platform/macos.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/platform/qnxnto.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/platform/solaris.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/platform/symbian.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/platform/vms.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/platform/vxworks.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/platform/win32.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/platform/zos.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/pragma_message.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/stdlib/dinkumware.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/stdlib/libcomo.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/stdlib/libcpp.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/stdlib/libstdcpp3.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/stdlib/modena.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/stdlib/msl.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/stdlib/roguewave.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/stdlib/sgi.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/stdlib/stlport.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/stdlib/vacpp.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/stdlib/xlcpp_zos.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/user.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/workaround.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/core/addressof.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/core/checked_delete.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/core/demangle.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/core/typeinfo.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/cstdint.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/current_function.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/detail/workaround.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/enable_shared_from_this.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/exception/exception.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/limits.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/shared_ptr.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/bad_weak_ptr.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/lightweight_mutex.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/local_counted_base.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/local_sp_deleter.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/lwm_pthreads.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/lwm_std_mutex.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/lwm_win32_cs.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/operator_bool.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/quick_allocator.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/shared_count.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/sp_convertible.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/sp_counted_base.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/sp_counted_base_acc_ia64.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/sp_counted_base_aix.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/sp_counted_base_clang.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/sp_counted_base_cw_ppc.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/sp_counted_base_gcc_ia64.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/sp_counted_base_gcc_mips.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/sp_counted_base_gcc_ppc.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/sp_counted_base_gcc_sparc.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/sp_counted_base_gcc_x86.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/sp_counted_base_nt.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/sp_counted_base_pt.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/sp_counted_base_snc_ps3.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/sp_counted_base_spin.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/sp_counted_base_std_atomic.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/sp_counted_base_sync.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/sp_counted_base_vacpp_ppc.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/sp_counted_base_w32.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/sp_counted_impl.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/sp_disable_deprecated.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/sp_has_sync.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/sp_interlocked.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/sp_noexcept.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/sp_nullptr_t.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/sp_typeinfo_.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/spinlock.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/spinlock_gcc_arm.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/spinlock_nt.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/spinlock_pool.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/spinlock_pt.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/spinlock_std_atomic.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/spinlock_sync.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/spinlock_w32.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/yield_k.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/enable_shared_from_this.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/shared_ptr.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/weak_ptr.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/static_assert.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/throw_exception.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/add_lvalue_reference.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/add_reference.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/add_rvalue_reference.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/alignment_of.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/conditional.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/declval.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/detail/config.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/detail/is_function_cxx_03.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/detail/is_function_cxx_11.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/detail/is_function_msvc10_fix.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/detail/is_function_ptr_helper.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/detail/is_function_ptr_tester.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/detail/is_mem_fun_pointer_impl.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/detail/is_mem_fun_pointer_tester.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/detail/is_member_function_pointer_cxx_03.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/detail/is_member_function_pointer_cxx_11.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/detail/is_rvalue_reference_msvc10_fix.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/detail/yes_no_type.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/integral_constant.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/intrinsics.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/is_abstract.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/is_arithmetic.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/is_array.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/is_class.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/is_complete.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/is_convertible.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/is_enum.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/is_floating_point.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/is_function.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/is_integral.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/is_lvalue_reference.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/is_member_function_pointer.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/is_member_pointer.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/is_pod.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/is_pointer.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/is_polymorphic.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/is_reference.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/is_rvalue_reference.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/is_same.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/is_scalar.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/is_union.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/is_void.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/is_volatile.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/remove_cv.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/remove_reference.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/type_with_alignment.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/version.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/weak_ptr.hpp
/home/madduci/Projects/openE57/examples/DemoRead01.cpp

View File

@@ -0,0 +1,183 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 3.17
examples/CMakeFiles/DemoRead01.dir/DemoRead01.cpp.o: ../../include/openE57/E57Foundation.h
examples/CMakeFiles/DemoRead01.dir/DemoRead01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/assert.hpp
examples/CMakeFiles/DemoRead01.dir/DemoRead01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/assert/source_location.hpp
examples/CMakeFiles/DemoRead01.dir/DemoRead01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/checked_delete.hpp
examples/CMakeFiles/DemoRead01.dir/DemoRead01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config.hpp
examples/CMakeFiles/DemoRead01.dir/DemoRead01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/compiler/borland.hpp
examples/CMakeFiles/DemoRead01.dir/DemoRead01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/compiler/clang.hpp
examples/CMakeFiles/DemoRead01.dir/DemoRead01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/compiler/codegear.hpp
examples/CMakeFiles/DemoRead01.dir/DemoRead01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/compiler/comeau.hpp
examples/CMakeFiles/DemoRead01.dir/DemoRead01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/compiler/common_edg.hpp
examples/CMakeFiles/DemoRead01.dir/DemoRead01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/compiler/compaq_cxx.hpp
examples/CMakeFiles/DemoRead01.dir/DemoRead01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/compiler/cray.hpp
examples/CMakeFiles/DemoRead01.dir/DemoRead01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/compiler/digitalmars.hpp
examples/CMakeFiles/DemoRead01.dir/DemoRead01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/compiler/gcc.hpp
examples/CMakeFiles/DemoRead01.dir/DemoRead01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/compiler/gcc_xml.hpp
examples/CMakeFiles/DemoRead01.dir/DemoRead01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/compiler/greenhills.hpp
examples/CMakeFiles/DemoRead01.dir/DemoRead01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/compiler/hp_acc.hpp
examples/CMakeFiles/DemoRead01.dir/DemoRead01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/compiler/intel.hpp
examples/CMakeFiles/DemoRead01.dir/DemoRead01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/compiler/kai.hpp
examples/CMakeFiles/DemoRead01.dir/DemoRead01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/compiler/metrowerks.hpp
examples/CMakeFiles/DemoRead01.dir/DemoRead01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/compiler/mpw.hpp
examples/CMakeFiles/DemoRead01.dir/DemoRead01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/compiler/nvcc.hpp
examples/CMakeFiles/DemoRead01.dir/DemoRead01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/compiler/pathscale.hpp
examples/CMakeFiles/DemoRead01.dir/DemoRead01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/compiler/pgi.hpp
examples/CMakeFiles/DemoRead01.dir/DemoRead01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/compiler/sgi_mipspro.hpp
examples/CMakeFiles/DemoRead01.dir/DemoRead01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/compiler/sunpro_cc.hpp
examples/CMakeFiles/DemoRead01.dir/DemoRead01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/compiler/vacpp.hpp
examples/CMakeFiles/DemoRead01.dir/DemoRead01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/compiler/visualc.hpp
examples/CMakeFiles/DemoRead01.dir/DemoRead01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/compiler/xlcpp.hpp
examples/CMakeFiles/DemoRead01.dir/DemoRead01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/compiler/xlcpp_zos.hpp
examples/CMakeFiles/DemoRead01.dir/DemoRead01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/detail/posix_features.hpp
examples/CMakeFiles/DemoRead01.dir/DemoRead01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/detail/select_compiler_config.hpp
examples/CMakeFiles/DemoRead01.dir/DemoRead01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/detail/select_platform_config.hpp
examples/CMakeFiles/DemoRead01.dir/DemoRead01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/detail/select_stdlib_config.hpp
examples/CMakeFiles/DemoRead01.dir/DemoRead01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/detail/suffix.hpp
examples/CMakeFiles/DemoRead01.dir/DemoRead01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/helper_macros.hpp
examples/CMakeFiles/DemoRead01.dir/DemoRead01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/no_tr1/memory.hpp
examples/CMakeFiles/DemoRead01.dir/DemoRead01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/no_tr1/utility.hpp
examples/CMakeFiles/DemoRead01.dir/DemoRead01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/platform/aix.hpp
examples/CMakeFiles/DemoRead01.dir/DemoRead01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/platform/amigaos.hpp
examples/CMakeFiles/DemoRead01.dir/DemoRead01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/platform/beos.hpp
examples/CMakeFiles/DemoRead01.dir/DemoRead01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/platform/bsd.hpp
examples/CMakeFiles/DemoRead01.dir/DemoRead01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/platform/cray.hpp
examples/CMakeFiles/DemoRead01.dir/DemoRead01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/platform/cygwin.hpp
examples/CMakeFiles/DemoRead01.dir/DemoRead01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/platform/hpux.hpp
examples/CMakeFiles/DemoRead01.dir/DemoRead01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/platform/irix.hpp
examples/CMakeFiles/DemoRead01.dir/DemoRead01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/platform/linux.hpp
examples/CMakeFiles/DemoRead01.dir/DemoRead01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/platform/macos.hpp
examples/CMakeFiles/DemoRead01.dir/DemoRead01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/platform/qnxnto.hpp
examples/CMakeFiles/DemoRead01.dir/DemoRead01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/platform/solaris.hpp
examples/CMakeFiles/DemoRead01.dir/DemoRead01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/platform/symbian.hpp
examples/CMakeFiles/DemoRead01.dir/DemoRead01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/platform/vms.hpp
examples/CMakeFiles/DemoRead01.dir/DemoRead01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/platform/vxworks.hpp
examples/CMakeFiles/DemoRead01.dir/DemoRead01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/platform/win32.hpp
examples/CMakeFiles/DemoRead01.dir/DemoRead01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/platform/zos.hpp
examples/CMakeFiles/DemoRead01.dir/DemoRead01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/pragma_message.hpp
examples/CMakeFiles/DemoRead01.dir/DemoRead01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/stdlib/dinkumware.hpp
examples/CMakeFiles/DemoRead01.dir/DemoRead01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/stdlib/libcomo.hpp
examples/CMakeFiles/DemoRead01.dir/DemoRead01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/stdlib/libcpp.hpp
examples/CMakeFiles/DemoRead01.dir/DemoRead01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/stdlib/libstdcpp3.hpp
examples/CMakeFiles/DemoRead01.dir/DemoRead01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/stdlib/modena.hpp
examples/CMakeFiles/DemoRead01.dir/DemoRead01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/stdlib/msl.hpp
examples/CMakeFiles/DemoRead01.dir/DemoRead01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/stdlib/roguewave.hpp
examples/CMakeFiles/DemoRead01.dir/DemoRead01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/stdlib/sgi.hpp
examples/CMakeFiles/DemoRead01.dir/DemoRead01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/stdlib/stlport.hpp
examples/CMakeFiles/DemoRead01.dir/DemoRead01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/stdlib/vacpp.hpp
examples/CMakeFiles/DemoRead01.dir/DemoRead01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/stdlib/xlcpp_zos.hpp
examples/CMakeFiles/DemoRead01.dir/DemoRead01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/user.hpp
examples/CMakeFiles/DemoRead01.dir/DemoRead01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/workaround.hpp
examples/CMakeFiles/DemoRead01.dir/DemoRead01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/core/addressof.hpp
examples/CMakeFiles/DemoRead01.dir/DemoRead01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/core/checked_delete.hpp
examples/CMakeFiles/DemoRead01.dir/DemoRead01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/core/demangle.hpp
examples/CMakeFiles/DemoRead01.dir/DemoRead01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/core/typeinfo.hpp
examples/CMakeFiles/DemoRead01.dir/DemoRead01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/cstdint.hpp
examples/CMakeFiles/DemoRead01.dir/DemoRead01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/current_function.hpp
examples/CMakeFiles/DemoRead01.dir/DemoRead01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/detail/workaround.hpp
examples/CMakeFiles/DemoRead01.dir/DemoRead01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/enable_shared_from_this.hpp
examples/CMakeFiles/DemoRead01.dir/DemoRead01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/exception/exception.hpp
examples/CMakeFiles/DemoRead01.dir/DemoRead01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/limits.hpp
examples/CMakeFiles/DemoRead01.dir/DemoRead01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/shared_ptr.hpp
examples/CMakeFiles/DemoRead01.dir/DemoRead01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/bad_weak_ptr.hpp
examples/CMakeFiles/DemoRead01.dir/DemoRead01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/lightweight_mutex.hpp
examples/CMakeFiles/DemoRead01.dir/DemoRead01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/local_counted_base.hpp
examples/CMakeFiles/DemoRead01.dir/DemoRead01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/local_sp_deleter.hpp
examples/CMakeFiles/DemoRead01.dir/DemoRead01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/lwm_pthreads.hpp
examples/CMakeFiles/DemoRead01.dir/DemoRead01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/lwm_std_mutex.hpp
examples/CMakeFiles/DemoRead01.dir/DemoRead01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/lwm_win32_cs.hpp
examples/CMakeFiles/DemoRead01.dir/DemoRead01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/operator_bool.hpp
examples/CMakeFiles/DemoRead01.dir/DemoRead01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/quick_allocator.hpp
examples/CMakeFiles/DemoRead01.dir/DemoRead01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/shared_count.hpp
examples/CMakeFiles/DemoRead01.dir/DemoRead01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/sp_convertible.hpp
examples/CMakeFiles/DemoRead01.dir/DemoRead01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/sp_counted_base.hpp
examples/CMakeFiles/DemoRead01.dir/DemoRead01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/sp_counted_base_acc_ia64.hpp
examples/CMakeFiles/DemoRead01.dir/DemoRead01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/sp_counted_base_aix.hpp
examples/CMakeFiles/DemoRead01.dir/DemoRead01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/sp_counted_base_clang.hpp
examples/CMakeFiles/DemoRead01.dir/DemoRead01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/sp_counted_base_cw_ppc.hpp
examples/CMakeFiles/DemoRead01.dir/DemoRead01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/sp_counted_base_gcc_ia64.hpp
examples/CMakeFiles/DemoRead01.dir/DemoRead01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/sp_counted_base_gcc_mips.hpp
examples/CMakeFiles/DemoRead01.dir/DemoRead01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/sp_counted_base_gcc_ppc.hpp
examples/CMakeFiles/DemoRead01.dir/DemoRead01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/sp_counted_base_gcc_sparc.hpp
examples/CMakeFiles/DemoRead01.dir/DemoRead01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/sp_counted_base_gcc_x86.hpp
examples/CMakeFiles/DemoRead01.dir/DemoRead01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/sp_counted_base_nt.hpp
examples/CMakeFiles/DemoRead01.dir/DemoRead01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/sp_counted_base_pt.hpp
examples/CMakeFiles/DemoRead01.dir/DemoRead01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/sp_counted_base_snc_ps3.hpp
examples/CMakeFiles/DemoRead01.dir/DemoRead01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/sp_counted_base_spin.hpp
examples/CMakeFiles/DemoRead01.dir/DemoRead01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/sp_counted_base_std_atomic.hpp
examples/CMakeFiles/DemoRead01.dir/DemoRead01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/sp_counted_base_sync.hpp
examples/CMakeFiles/DemoRead01.dir/DemoRead01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/sp_counted_base_vacpp_ppc.hpp
examples/CMakeFiles/DemoRead01.dir/DemoRead01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/sp_counted_base_w32.hpp
examples/CMakeFiles/DemoRead01.dir/DemoRead01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/sp_counted_impl.hpp
examples/CMakeFiles/DemoRead01.dir/DemoRead01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/sp_disable_deprecated.hpp
examples/CMakeFiles/DemoRead01.dir/DemoRead01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/sp_has_sync.hpp
examples/CMakeFiles/DemoRead01.dir/DemoRead01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/sp_interlocked.hpp
examples/CMakeFiles/DemoRead01.dir/DemoRead01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/sp_noexcept.hpp
examples/CMakeFiles/DemoRead01.dir/DemoRead01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/sp_nullptr_t.hpp
examples/CMakeFiles/DemoRead01.dir/DemoRead01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/sp_typeinfo_.hpp
examples/CMakeFiles/DemoRead01.dir/DemoRead01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/spinlock.hpp
examples/CMakeFiles/DemoRead01.dir/DemoRead01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/spinlock_gcc_arm.hpp
examples/CMakeFiles/DemoRead01.dir/DemoRead01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/spinlock_nt.hpp
examples/CMakeFiles/DemoRead01.dir/DemoRead01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/spinlock_pool.hpp
examples/CMakeFiles/DemoRead01.dir/DemoRead01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/spinlock_pt.hpp
examples/CMakeFiles/DemoRead01.dir/DemoRead01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/spinlock_std_atomic.hpp
examples/CMakeFiles/DemoRead01.dir/DemoRead01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/spinlock_sync.hpp
examples/CMakeFiles/DemoRead01.dir/DemoRead01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/spinlock_w32.hpp
examples/CMakeFiles/DemoRead01.dir/DemoRead01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/yield_k.hpp
examples/CMakeFiles/DemoRead01.dir/DemoRead01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/enable_shared_from_this.hpp
examples/CMakeFiles/DemoRead01.dir/DemoRead01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/shared_ptr.hpp
examples/CMakeFiles/DemoRead01.dir/DemoRead01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/weak_ptr.hpp
examples/CMakeFiles/DemoRead01.dir/DemoRead01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/static_assert.hpp
examples/CMakeFiles/DemoRead01.dir/DemoRead01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/throw_exception.hpp
examples/CMakeFiles/DemoRead01.dir/DemoRead01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/add_lvalue_reference.hpp
examples/CMakeFiles/DemoRead01.dir/DemoRead01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/add_reference.hpp
examples/CMakeFiles/DemoRead01.dir/DemoRead01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/add_rvalue_reference.hpp
examples/CMakeFiles/DemoRead01.dir/DemoRead01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/alignment_of.hpp
examples/CMakeFiles/DemoRead01.dir/DemoRead01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/conditional.hpp
examples/CMakeFiles/DemoRead01.dir/DemoRead01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/declval.hpp
examples/CMakeFiles/DemoRead01.dir/DemoRead01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/detail/config.hpp
examples/CMakeFiles/DemoRead01.dir/DemoRead01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/detail/is_function_cxx_03.hpp
examples/CMakeFiles/DemoRead01.dir/DemoRead01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/detail/is_function_cxx_11.hpp
examples/CMakeFiles/DemoRead01.dir/DemoRead01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/detail/is_function_msvc10_fix.hpp
examples/CMakeFiles/DemoRead01.dir/DemoRead01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/detail/is_function_ptr_helper.hpp
examples/CMakeFiles/DemoRead01.dir/DemoRead01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/detail/is_function_ptr_tester.hpp
examples/CMakeFiles/DemoRead01.dir/DemoRead01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/detail/is_mem_fun_pointer_impl.hpp
examples/CMakeFiles/DemoRead01.dir/DemoRead01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/detail/is_mem_fun_pointer_tester.hpp
examples/CMakeFiles/DemoRead01.dir/DemoRead01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/detail/is_member_function_pointer_cxx_03.hpp
examples/CMakeFiles/DemoRead01.dir/DemoRead01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/detail/is_member_function_pointer_cxx_11.hpp
examples/CMakeFiles/DemoRead01.dir/DemoRead01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/detail/is_rvalue_reference_msvc10_fix.hpp
examples/CMakeFiles/DemoRead01.dir/DemoRead01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/detail/yes_no_type.hpp
examples/CMakeFiles/DemoRead01.dir/DemoRead01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/integral_constant.hpp
examples/CMakeFiles/DemoRead01.dir/DemoRead01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/intrinsics.hpp
examples/CMakeFiles/DemoRead01.dir/DemoRead01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/is_abstract.hpp
examples/CMakeFiles/DemoRead01.dir/DemoRead01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/is_arithmetic.hpp
examples/CMakeFiles/DemoRead01.dir/DemoRead01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/is_array.hpp
examples/CMakeFiles/DemoRead01.dir/DemoRead01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/is_class.hpp
examples/CMakeFiles/DemoRead01.dir/DemoRead01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/is_complete.hpp
examples/CMakeFiles/DemoRead01.dir/DemoRead01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/is_convertible.hpp
examples/CMakeFiles/DemoRead01.dir/DemoRead01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/is_enum.hpp
examples/CMakeFiles/DemoRead01.dir/DemoRead01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/is_floating_point.hpp
examples/CMakeFiles/DemoRead01.dir/DemoRead01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/is_function.hpp
examples/CMakeFiles/DemoRead01.dir/DemoRead01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/is_integral.hpp
examples/CMakeFiles/DemoRead01.dir/DemoRead01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/is_lvalue_reference.hpp
examples/CMakeFiles/DemoRead01.dir/DemoRead01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/is_member_function_pointer.hpp
examples/CMakeFiles/DemoRead01.dir/DemoRead01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/is_member_pointer.hpp
examples/CMakeFiles/DemoRead01.dir/DemoRead01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/is_pod.hpp
examples/CMakeFiles/DemoRead01.dir/DemoRead01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/is_pointer.hpp
examples/CMakeFiles/DemoRead01.dir/DemoRead01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/is_polymorphic.hpp
examples/CMakeFiles/DemoRead01.dir/DemoRead01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/is_reference.hpp
examples/CMakeFiles/DemoRead01.dir/DemoRead01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/is_rvalue_reference.hpp
examples/CMakeFiles/DemoRead01.dir/DemoRead01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/is_same.hpp
examples/CMakeFiles/DemoRead01.dir/DemoRead01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/is_scalar.hpp
examples/CMakeFiles/DemoRead01.dir/DemoRead01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/is_union.hpp
examples/CMakeFiles/DemoRead01.dir/DemoRead01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/is_void.hpp
examples/CMakeFiles/DemoRead01.dir/DemoRead01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/is_volatile.hpp
examples/CMakeFiles/DemoRead01.dir/DemoRead01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/remove_cv.hpp
examples/CMakeFiles/DemoRead01.dir/DemoRead01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/remove_reference.hpp
examples/CMakeFiles/DemoRead01.dir/DemoRead01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/type_with_alignment.hpp
examples/CMakeFiles/DemoRead01.dir/DemoRead01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/version.hpp
examples/CMakeFiles/DemoRead01.dir/DemoRead01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/weak_ptr.hpp
examples/CMakeFiles/DemoRead01.dir/DemoRead01.cpp.o: ../../examples/DemoRead01.cpp

View File

@@ -0,0 +1,10 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 3.17
# compile CXX with /usr/bin/c++
CXX_FLAGS = -O3 -DNDEBUG -Wall -Wextra -Wpedantic -O2 -std=gnu++17
CXX_DEFINES = -DE57_REFIMPL_REVISION_ID=openE57-1.2.0 -DLINUX -DU_STATIC_IMPLEMENTATION -D_FORTIFY_SOURCE=2 -D_GLIBCXX_USE_CXX11_ABI=1
CXX_INCLUDES = -I/home/madduci/Projects/openE57/include -isystem /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include -isystem /home/madduci/.conan/data/zlib/1.2.11/_/_/package/19729b9559f3ae196cad45cb2b97468ccb75dcd1/include -isystem /home/madduci/.conan/data/bzip2/1.0.8/_/_/package/91a8b22c2c5a149bc617cfc06cdd21bf23b12567/include -isystem /home/madduci/.conan/data/xerces-c/3.2.2/_/_/package/b173bbda18164d49a449ffadc1c9e817f49e819d/include -isystem /home/madduci/.conan/data/icu/67.1/_/_/package/a8ceb9852beb2633e3b6f0e115181aa8c3c63b84/include

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1,3 @@
CMAKE_PROGRESS_1 = 1
CMAKE_PROGRESS_2 = 2

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,36 @@
# The set of languages for which implicit dependencies are needed:
set(CMAKE_DEPENDS_LANGUAGES
"CXX"
)
# The set of files for implicit dependencies of each language:
set(CMAKE_DEPENDS_CHECK_CXX
"/home/madduci/Projects/openE57/examples/DemoWrite01.cpp" "/home/madduci/Projects/openE57/build/linux/examples/CMakeFiles/DemoWrite01.dir/DemoWrite01.cpp.o"
)
set(CMAKE_CXX_COMPILER_ID "GNU")
# Preprocessor definitions for this target.
set(CMAKE_TARGET_DEFINITIONS_CXX
"E57_REFIMPL_REVISION_ID=openE57-1.2.0"
"LINUX"
"U_STATIC_IMPLEMENTATION"
"_FORTIFY_SOURCE=2"
"_GLIBCXX_USE_CXX11_ABI=1"
)
# The include file search paths:
set(CMAKE_CXX_TARGET_INCLUDE_PATH
"../../include"
"/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include"
"/home/madduci/.conan/data/zlib/1.2.11/_/_/package/19729b9559f3ae196cad45cb2b97468ccb75dcd1/include"
"/home/madduci/.conan/data/bzip2/1.0.8/_/_/package/91a8b22c2c5a149bc617cfc06cdd21bf23b12567/include"
"/home/madduci/.conan/data/xerces-c/3.2.2/_/_/package/b173bbda18164d49a449ffadc1c9e817f49e819d/include"
"/home/madduci/.conan/data/icu/67.1/_/_/package/a8ceb9852beb2633e3b6f0e115181aa8c3c63b84/include"
)
# Targets to which this target links.
set(CMAKE_TARGET_LINKED_INFO_FILES
"/home/madduci/Projects/openE57/build/linux/CMakeFiles/openE57.dir/DependInfo.cmake"
)
# Fortran module output directory.
set(CMAKE_Fortran_TARGET_MODULE_DIR "")

View File

@@ -0,0 +1,164 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 3.17
# 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/madduci/Projects/openE57
# The top-level build directory on which CMake was run.
CMAKE_BINARY_DIR = /home/madduci/Projects/openE57/build/linux
# Include any dependencies generated for this target.
include examples/CMakeFiles/DemoWrite01.dir/depend.make
# Include the progress variables for this target.
include examples/CMakeFiles/DemoWrite01.dir/progress.make
# Include the compile flags for this target's objects.
include examples/CMakeFiles/DemoWrite01.dir/flags.make
examples/CMakeFiles/DemoWrite01.dir/DemoWrite01.cpp.o: examples/CMakeFiles/DemoWrite01.dir/flags.make
examples/CMakeFiles/DemoWrite01.dir/DemoWrite01.cpp.o: ../../examples/DemoWrite01.cpp
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/madduci/Projects/openE57/build/linux/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object examples/CMakeFiles/DemoWrite01.dir/DemoWrite01.cpp.o"
cd /home/madduci/Projects/openE57/build/linux/examples && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -o CMakeFiles/DemoWrite01.dir/DemoWrite01.cpp.o -c /home/madduci/Projects/openE57/examples/DemoWrite01.cpp
examples/CMakeFiles/DemoWrite01.dir/DemoWrite01.cpp.i: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/DemoWrite01.dir/DemoWrite01.cpp.i"
cd /home/madduci/Projects/openE57/build/linux/examples && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/madduci/Projects/openE57/examples/DemoWrite01.cpp > CMakeFiles/DemoWrite01.dir/DemoWrite01.cpp.i
examples/CMakeFiles/DemoWrite01.dir/DemoWrite01.cpp.s: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/DemoWrite01.dir/DemoWrite01.cpp.s"
cd /home/madduci/Projects/openE57/build/linux/examples && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/madduci/Projects/openE57/examples/DemoWrite01.cpp -o CMakeFiles/DemoWrite01.dir/DemoWrite01.cpp.s
# Object files for target DemoWrite01
DemoWrite01_OBJECTS = \
"CMakeFiles/DemoWrite01.dir/DemoWrite01.cpp.o"
# External object files for target DemoWrite01
DemoWrite01_EXTERNAL_OBJECTS =
bin/DemoWrite01: examples/CMakeFiles/DemoWrite01.dir/DemoWrite01.cpp.o
bin/DemoWrite01: examples/CMakeFiles/DemoWrite01.dir/build.make
bin/DemoWrite01: lib/libopenE57.a
bin/DemoWrite01: /home/madduci/.conan/data/xerces-c/3.2.2/_/_/package/b173bbda18164d49a449ffadc1c9e817f49e819d/lib/libxerces-c-3.2.a
bin/DemoWrite01: /home/madduci/.conan/data/icu/67.1/_/_/package/a8ceb9852beb2633e3b6f0e115181aa8c3c63b84/lib/libicui18n.a
bin/DemoWrite01: /home/madduci/.conan/data/icu/67.1/_/_/package/a8ceb9852beb2633e3b6f0e115181aa8c3c63b84/lib/libicuio.a
bin/DemoWrite01: /home/madduci/.conan/data/icu/67.1/_/_/package/a8ceb9852beb2633e3b6f0e115181aa8c3c63b84/lib/libicutest.a
bin/DemoWrite01: /home/madduci/.conan/data/icu/67.1/_/_/package/a8ceb9852beb2633e3b6f0e115181aa8c3c63b84/lib/libicutu.a
bin/DemoWrite01: /home/madduci/.conan/data/icu/67.1/_/_/package/a8ceb9852beb2633e3b6f0e115181aa8c3c63b84/lib/libicuuc.a
bin/DemoWrite01: /home/madduci/.conan/data/icu/67.1/_/_/package/a8ceb9852beb2633e3b6f0e115181aa8c3c63b84/lib/libicudata.a
bin/DemoWrite01: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/lib/libboost_wave.a
bin/DemoWrite01: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/lib/libboost_container.a
bin/DemoWrite01: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/lib/libboost_contract.a
bin/DemoWrite01: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/lib/libboost_exception.a
bin/DemoWrite01: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/lib/libboost_graph.a
bin/DemoWrite01: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/lib/libboost_iostreams.a
bin/DemoWrite01: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/lib/libboost_locale.a
bin/DemoWrite01: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/lib/libboost_log.a
bin/DemoWrite01: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/lib/libboost_program_options.a
bin/DemoWrite01: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/lib/libboost_random.a
bin/DemoWrite01: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/lib/libboost_regex.a
bin/DemoWrite01: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/lib/libboost_serialization.a
bin/DemoWrite01: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/lib/libboost_wserialization.a
bin/DemoWrite01: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/lib/libboost_coroutine.a
bin/DemoWrite01: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/lib/libboost_fiber.a
bin/DemoWrite01: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/lib/libboost_context.a
bin/DemoWrite01: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/lib/libboost_timer.a
bin/DemoWrite01: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/lib/libboost_thread.a
bin/DemoWrite01: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/lib/libboost_chrono.a
bin/DemoWrite01: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/lib/libboost_date_time.a
bin/DemoWrite01: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/lib/libboost_atomic.a
bin/DemoWrite01: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/lib/libboost_filesystem.a
bin/DemoWrite01: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/lib/libboost_system.a
bin/DemoWrite01: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/lib/libboost_type_erasure.a
bin/DemoWrite01: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/lib/libboost_log_setup.a
bin/DemoWrite01: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/lib/libboost_math_c99.a
bin/DemoWrite01: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/lib/libboost_math_c99f.a
bin/DemoWrite01: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/lib/libboost_math_c99l.a
bin/DemoWrite01: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/lib/libboost_math_tr1.a
bin/DemoWrite01: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/lib/libboost_math_tr1f.a
bin/DemoWrite01: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/lib/libboost_math_tr1l.a
bin/DemoWrite01: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/lib/libboost_nowide.a
bin/DemoWrite01: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/lib/libboost_stacktrace_addr2line.a
bin/DemoWrite01: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/lib/libboost_stacktrace_basic.a
bin/DemoWrite01: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/lib/libboost_stacktrace_noop.a
bin/DemoWrite01: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/lib/libboost_unit_test_framework.a
bin/DemoWrite01: /home/madduci/.conan/data/zlib/1.2.11/_/_/package/19729b9559f3ae196cad45cb2b97468ccb75dcd1/lib/libz.a
bin/DemoWrite01: /home/madduci/.conan/data/bzip2/1.0.8/_/_/package/91a8b22c2c5a149bc617cfc06cdd21bf23b12567/lib/libbz2.a
bin/DemoWrite01: examples/CMakeFiles/DemoWrite01.dir/link.txt
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --bold --progress-dir=/home/madduci/Projects/openE57/build/linux/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Linking CXX executable ../bin/DemoWrite01"
cd /home/madduci/Projects/openE57/build/linux/examples && $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/DemoWrite01.dir/link.txt --verbose=$(VERBOSE)
# Rule to build all files generated by this target.
examples/CMakeFiles/DemoWrite01.dir/build: bin/DemoWrite01
.PHONY : examples/CMakeFiles/DemoWrite01.dir/build
examples/CMakeFiles/DemoWrite01.dir/clean:
cd /home/madduci/Projects/openE57/build/linux/examples && $(CMAKE_COMMAND) -P CMakeFiles/DemoWrite01.dir/cmake_clean.cmake
.PHONY : examples/CMakeFiles/DemoWrite01.dir/clean
examples/CMakeFiles/DemoWrite01.dir/depend:
cd /home/madduci/Projects/openE57/build/linux && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/madduci/Projects/openE57 /home/madduci/Projects/openE57/examples /home/madduci/Projects/openE57/build/linux /home/madduci/Projects/openE57/build/linux/examples /home/madduci/Projects/openE57/build/linux/examples/CMakeFiles/DemoWrite01.dir/DependInfo.cmake --color=$(COLOR)
.PHONY : examples/CMakeFiles/DemoWrite01.dir/depend

View File

@@ -0,0 +1,10 @@
file(REMOVE_RECURSE
"../bin/DemoWrite01"
"../bin/DemoWrite01.pdb"
"CMakeFiles/DemoWrite01.dir/DemoWrite01.cpp.o"
)
# Per-language clean rules from dependency scanning.
foreach(lang CXX)
include(CMakeFiles/DemoWrite01.dir/cmake_clean_${lang}.cmake OPTIONAL)
endforeach()

View File

@@ -0,0 +1,183 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 3.17
examples/CMakeFiles/DemoWrite01.dir/DemoWrite01.cpp.o
../../include/openE57/E57Foundation.h
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/assert.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/assert/source_location.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/checked_delete.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/compiler/borland.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/compiler/clang.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/compiler/codegear.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/compiler/comeau.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/compiler/common_edg.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/compiler/compaq_cxx.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/compiler/cray.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/compiler/digitalmars.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/compiler/gcc.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/compiler/gcc_xml.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/compiler/greenhills.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/compiler/hp_acc.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/compiler/intel.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/compiler/kai.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/compiler/metrowerks.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/compiler/mpw.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/compiler/nvcc.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/compiler/pathscale.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/compiler/pgi.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/compiler/sgi_mipspro.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/compiler/sunpro_cc.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/compiler/vacpp.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/compiler/visualc.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/compiler/xlcpp.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/compiler/xlcpp_zos.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/detail/posix_features.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/detail/select_compiler_config.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/detail/select_platform_config.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/detail/select_stdlib_config.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/detail/suffix.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/helper_macros.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/no_tr1/memory.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/no_tr1/utility.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/platform/aix.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/platform/amigaos.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/platform/beos.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/platform/bsd.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/platform/cray.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/platform/cygwin.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/platform/hpux.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/platform/irix.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/platform/linux.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/platform/macos.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/platform/qnxnto.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/platform/solaris.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/platform/symbian.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/platform/vms.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/platform/vxworks.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/platform/win32.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/platform/zos.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/pragma_message.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/stdlib/dinkumware.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/stdlib/libcomo.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/stdlib/libcpp.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/stdlib/libstdcpp3.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/stdlib/modena.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/stdlib/msl.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/stdlib/roguewave.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/stdlib/sgi.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/stdlib/stlport.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/stdlib/vacpp.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/stdlib/xlcpp_zos.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/user.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/workaround.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/core/addressof.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/core/checked_delete.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/core/demangle.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/core/typeinfo.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/cstdint.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/current_function.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/detail/workaround.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/enable_shared_from_this.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/exception/exception.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/limits.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/shared_ptr.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/bad_weak_ptr.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/lightweight_mutex.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/local_counted_base.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/local_sp_deleter.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/lwm_pthreads.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/lwm_std_mutex.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/lwm_win32_cs.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/operator_bool.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/quick_allocator.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/shared_count.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/sp_convertible.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/sp_counted_base.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/sp_counted_base_acc_ia64.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/sp_counted_base_aix.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/sp_counted_base_clang.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/sp_counted_base_cw_ppc.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/sp_counted_base_gcc_ia64.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/sp_counted_base_gcc_mips.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/sp_counted_base_gcc_ppc.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/sp_counted_base_gcc_sparc.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/sp_counted_base_gcc_x86.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/sp_counted_base_nt.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/sp_counted_base_pt.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/sp_counted_base_snc_ps3.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/sp_counted_base_spin.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/sp_counted_base_std_atomic.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/sp_counted_base_sync.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/sp_counted_base_vacpp_ppc.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/sp_counted_base_w32.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/sp_counted_impl.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/sp_disable_deprecated.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/sp_has_sync.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/sp_interlocked.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/sp_noexcept.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/sp_nullptr_t.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/sp_typeinfo_.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/spinlock.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/spinlock_gcc_arm.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/spinlock_nt.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/spinlock_pool.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/spinlock_pt.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/spinlock_std_atomic.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/spinlock_sync.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/spinlock_w32.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/yield_k.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/enable_shared_from_this.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/shared_ptr.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/weak_ptr.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/static_assert.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/throw_exception.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/add_lvalue_reference.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/add_reference.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/add_rvalue_reference.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/alignment_of.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/conditional.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/declval.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/detail/config.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/detail/is_function_cxx_03.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/detail/is_function_cxx_11.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/detail/is_function_msvc10_fix.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/detail/is_function_ptr_helper.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/detail/is_function_ptr_tester.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/detail/is_mem_fun_pointer_impl.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/detail/is_mem_fun_pointer_tester.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/detail/is_member_function_pointer_cxx_03.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/detail/is_member_function_pointer_cxx_11.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/detail/is_rvalue_reference_msvc10_fix.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/detail/yes_no_type.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/integral_constant.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/intrinsics.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/is_abstract.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/is_arithmetic.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/is_array.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/is_class.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/is_complete.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/is_convertible.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/is_enum.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/is_floating_point.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/is_function.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/is_integral.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/is_lvalue_reference.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/is_member_function_pointer.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/is_member_pointer.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/is_pod.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/is_pointer.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/is_polymorphic.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/is_reference.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/is_rvalue_reference.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/is_same.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/is_scalar.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/is_union.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/is_void.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/is_volatile.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/remove_cv.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/remove_reference.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/type_with_alignment.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/version.hpp
/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/weak_ptr.hpp
/home/madduci/Projects/openE57/examples/DemoWrite01.cpp

View File

@@ -0,0 +1,183 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 3.17
examples/CMakeFiles/DemoWrite01.dir/DemoWrite01.cpp.o: ../../include/openE57/E57Foundation.h
examples/CMakeFiles/DemoWrite01.dir/DemoWrite01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/assert.hpp
examples/CMakeFiles/DemoWrite01.dir/DemoWrite01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/assert/source_location.hpp
examples/CMakeFiles/DemoWrite01.dir/DemoWrite01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/checked_delete.hpp
examples/CMakeFiles/DemoWrite01.dir/DemoWrite01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config.hpp
examples/CMakeFiles/DemoWrite01.dir/DemoWrite01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/compiler/borland.hpp
examples/CMakeFiles/DemoWrite01.dir/DemoWrite01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/compiler/clang.hpp
examples/CMakeFiles/DemoWrite01.dir/DemoWrite01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/compiler/codegear.hpp
examples/CMakeFiles/DemoWrite01.dir/DemoWrite01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/compiler/comeau.hpp
examples/CMakeFiles/DemoWrite01.dir/DemoWrite01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/compiler/common_edg.hpp
examples/CMakeFiles/DemoWrite01.dir/DemoWrite01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/compiler/compaq_cxx.hpp
examples/CMakeFiles/DemoWrite01.dir/DemoWrite01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/compiler/cray.hpp
examples/CMakeFiles/DemoWrite01.dir/DemoWrite01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/compiler/digitalmars.hpp
examples/CMakeFiles/DemoWrite01.dir/DemoWrite01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/compiler/gcc.hpp
examples/CMakeFiles/DemoWrite01.dir/DemoWrite01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/compiler/gcc_xml.hpp
examples/CMakeFiles/DemoWrite01.dir/DemoWrite01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/compiler/greenhills.hpp
examples/CMakeFiles/DemoWrite01.dir/DemoWrite01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/compiler/hp_acc.hpp
examples/CMakeFiles/DemoWrite01.dir/DemoWrite01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/compiler/intel.hpp
examples/CMakeFiles/DemoWrite01.dir/DemoWrite01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/compiler/kai.hpp
examples/CMakeFiles/DemoWrite01.dir/DemoWrite01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/compiler/metrowerks.hpp
examples/CMakeFiles/DemoWrite01.dir/DemoWrite01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/compiler/mpw.hpp
examples/CMakeFiles/DemoWrite01.dir/DemoWrite01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/compiler/nvcc.hpp
examples/CMakeFiles/DemoWrite01.dir/DemoWrite01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/compiler/pathscale.hpp
examples/CMakeFiles/DemoWrite01.dir/DemoWrite01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/compiler/pgi.hpp
examples/CMakeFiles/DemoWrite01.dir/DemoWrite01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/compiler/sgi_mipspro.hpp
examples/CMakeFiles/DemoWrite01.dir/DemoWrite01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/compiler/sunpro_cc.hpp
examples/CMakeFiles/DemoWrite01.dir/DemoWrite01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/compiler/vacpp.hpp
examples/CMakeFiles/DemoWrite01.dir/DemoWrite01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/compiler/visualc.hpp
examples/CMakeFiles/DemoWrite01.dir/DemoWrite01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/compiler/xlcpp.hpp
examples/CMakeFiles/DemoWrite01.dir/DemoWrite01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/compiler/xlcpp_zos.hpp
examples/CMakeFiles/DemoWrite01.dir/DemoWrite01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/detail/posix_features.hpp
examples/CMakeFiles/DemoWrite01.dir/DemoWrite01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/detail/select_compiler_config.hpp
examples/CMakeFiles/DemoWrite01.dir/DemoWrite01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/detail/select_platform_config.hpp
examples/CMakeFiles/DemoWrite01.dir/DemoWrite01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/detail/select_stdlib_config.hpp
examples/CMakeFiles/DemoWrite01.dir/DemoWrite01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/detail/suffix.hpp
examples/CMakeFiles/DemoWrite01.dir/DemoWrite01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/helper_macros.hpp
examples/CMakeFiles/DemoWrite01.dir/DemoWrite01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/no_tr1/memory.hpp
examples/CMakeFiles/DemoWrite01.dir/DemoWrite01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/no_tr1/utility.hpp
examples/CMakeFiles/DemoWrite01.dir/DemoWrite01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/platform/aix.hpp
examples/CMakeFiles/DemoWrite01.dir/DemoWrite01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/platform/amigaos.hpp
examples/CMakeFiles/DemoWrite01.dir/DemoWrite01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/platform/beos.hpp
examples/CMakeFiles/DemoWrite01.dir/DemoWrite01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/platform/bsd.hpp
examples/CMakeFiles/DemoWrite01.dir/DemoWrite01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/platform/cray.hpp
examples/CMakeFiles/DemoWrite01.dir/DemoWrite01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/platform/cygwin.hpp
examples/CMakeFiles/DemoWrite01.dir/DemoWrite01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/platform/hpux.hpp
examples/CMakeFiles/DemoWrite01.dir/DemoWrite01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/platform/irix.hpp
examples/CMakeFiles/DemoWrite01.dir/DemoWrite01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/platform/linux.hpp
examples/CMakeFiles/DemoWrite01.dir/DemoWrite01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/platform/macos.hpp
examples/CMakeFiles/DemoWrite01.dir/DemoWrite01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/platform/qnxnto.hpp
examples/CMakeFiles/DemoWrite01.dir/DemoWrite01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/platform/solaris.hpp
examples/CMakeFiles/DemoWrite01.dir/DemoWrite01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/platform/symbian.hpp
examples/CMakeFiles/DemoWrite01.dir/DemoWrite01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/platform/vms.hpp
examples/CMakeFiles/DemoWrite01.dir/DemoWrite01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/platform/vxworks.hpp
examples/CMakeFiles/DemoWrite01.dir/DemoWrite01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/platform/win32.hpp
examples/CMakeFiles/DemoWrite01.dir/DemoWrite01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/platform/zos.hpp
examples/CMakeFiles/DemoWrite01.dir/DemoWrite01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/pragma_message.hpp
examples/CMakeFiles/DemoWrite01.dir/DemoWrite01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/stdlib/dinkumware.hpp
examples/CMakeFiles/DemoWrite01.dir/DemoWrite01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/stdlib/libcomo.hpp
examples/CMakeFiles/DemoWrite01.dir/DemoWrite01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/stdlib/libcpp.hpp
examples/CMakeFiles/DemoWrite01.dir/DemoWrite01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/stdlib/libstdcpp3.hpp
examples/CMakeFiles/DemoWrite01.dir/DemoWrite01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/stdlib/modena.hpp
examples/CMakeFiles/DemoWrite01.dir/DemoWrite01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/stdlib/msl.hpp
examples/CMakeFiles/DemoWrite01.dir/DemoWrite01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/stdlib/roguewave.hpp
examples/CMakeFiles/DemoWrite01.dir/DemoWrite01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/stdlib/sgi.hpp
examples/CMakeFiles/DemoWrite01.dir/DemoWrite01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/stdlib/stlport.hpp
examples/CMakeFiles/DemoWrite01.dir/DemoWrite01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/stdlib/vacpp.hpp
examples/CMakeFiles/DemoWrite01.dir/DemoWrite01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/stdlib/xlcpp_zos.hpp
examples/CMakeFiles/DemoWrite01.dir/DemoWrite01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/user.hpp
examples/CMakeFiles/DemoWrite01.dir/DemoWrite01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/config/workaround.hpp
examples/CMakeFiles/DemoWrite01.dir/DemoWrite01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/core/addressof.hpp
examples/CMakeFiles/DemoWrite01.dir/DemoWrite01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/core/checked_delete.hpp
examples/CMakeFiles/DemoWrite01.dir/DemoWrite01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/core/demangle.hpp
examples/CMakeFiles/DemoWrite01.dir/DemoWrite01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/core/typeinfo.hpp
examples/CMakeFiles/DemoWrite01.dir/DemoWrite01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/cstdint.hpp
examples/CMakeFiles/DemoWrite01.dir/DemoWrite01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/current_function.hpp
examples/CMakeFiles/DemoWrite01.dir/DemoWrite01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/detail/workaround.hpp
examples/CMakeFiles/DemoWrite01.dir/DemoWrite01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/enable_shared_from_this.hpp
examples/CMakeFiles/DemoWrite01.dir/DemoWrite01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/exception/exception.hpp
examples/CMakeFiles/DemoWrite01.dir/DemoWrite01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/limits.hpp
examples/CMakeFiles/DemoWrite01.dir/DemoWrite01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/shared_ptr.hpp
examples/CMakeFiles/DemoWrite01.dir/DemoWrite01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/bad_weak_ptr.hpp
examples/CMakeFiles/DemoWrite01.dir/DemoWrite01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/lightweight_mutex.hpp
examples/CMakeFiles/DemoWrite01.dir/DemoWrite01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/local_counted_base.hpp
examples/CMakeFiles/DemoWrite01.dir/DemoWrite01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/local_sp_deleter.hpp
examples/CMakeFiles/DemoWrite01.dir/DemoWrite01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/lwm_pthreads.hpp
examples/CMakeFiles/DemoWrite01.dir/DemoWrite01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/lwm_std_mutex.hpp
examples/CMakeFiles/DemoWrite01.dir/DemoWrite01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/lwm_win32_cs.hpp
examples/CMakeFiles/DemoWrite01.dir/DemoWrite01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/operator_bool.hpp
examples/CMakeFiles/DemoWrite01.dir/DemoWrite01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/quick_allocator.hpp
examples/CMakeFiles/DemoWrite01.dir/DemoWrite01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/shared_count.hpp
examples/CMakeFiles/DemoWrite01.dir/DemoWrite01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/sp_convertible.hpp
examples/CMakeFiles/DemoWrite01.dir/DemoWrite01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/sp_counted_base.hpp
examples/CMakeFiles/DemoWrite01.dir/DemoWrite01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/sp_counted_base_acc_ia64.hpp
examples/CMakeFiles/DemoWrite01.dir/DemoWrite01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/sp_counted_base_aix.hpp
examples/CMakeFiles/DemoWrite01.dir/DemoWrite01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/sp_counted_base_clang.hpp
examples/CMakeFiles/DemoWrite01.dir/DemoWrite01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/sp_counted_base_cw_ppc.hpp
examples/CMakeFiles/DemoWrite01.dir/DemoWrite01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/sp_counted_base_gcc_ia64.hpp
examples/CMakeFiles/DemoWrite01.dir/DemoWrite01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/sp_counted_base_gcc_mips.hpp
examples/CMakeFiles/DemoWrite01.dir/DemoWrite01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/sp_counted_base_gcc_ppc.hpp
examples/CMakeFiles/DemoWrite01.dir/DemoWrite01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/sp_counted_base_gcc_sparc.hpp
examples/CMakeFiles/DemoWrite01.dir/DemoWrite01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/sp_counted_base_gcc_x86.hpp
examples/CMakeFiles/DemoWrite01.dir/DemoWrite01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/sp_counted_base_nt.hpp
examples/CMakeFiles/DemoWrite01.dir/DemoWrite01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/sp_counted_base_pt.hpp
examples/CMakeFiles/DemoWrite01.dir/DemoWrite01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/sp_counted_base_snc_ps3.hpp
examples/CMakeFiles/DemoWrite01.dir/DemoWrite01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/sp_counted_base_spin.hpp
examples/CMakeFiles/DemoWrite01.dir/DemoWrite01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/sp_counted_base_std_atomic.hpp
examples/CMakeFiles/DemoWrite01.dir/DemoWrite01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/sp_counted_base_sync.hpp
examples/CMakeFiles/DemoWrite01.dir/DemoWrite01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/sp_counted_base_vacpp_ppc.hpp
examples/CMakeFiles/DemoWrite01.dir/DemoWrite01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/sp_counted_base_w32.hpp
examples/CMakeFiles/DemoWrite01.dir/DemoWrite01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/sp_counted_impl.hpp
examples/CMakeFiles/DemoWrite01.dir/DemoWrite01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/sp_disable_deprecated.hpp
examples/CMakeFiles/DemoWrite01.dir/DemoWrite01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/sp_has_sync.hpp
examples/CMakeFiles/DemoWrite01.dir/DemoWrite01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/sp_interlocked.hpp
examples/CMakeFiles/DemoWrite01.dir/DemoWrite01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/sp_noexcept.hpp
examples/CMakeFiles/DemoWrite01.dir/DemoWrite01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/sp_nullptr_t.hpp
examples/CMakeFiles/DemoWrite01.dir/DemoWrite01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/sp_typeinfo_.hpp
examples/CMakeFiles/DemoWrite01.dir/DemoWrite01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/spinlock.hpp
examples/CMakeFiles/DemoWrite01.dir/DemoWrite01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/spinlock_gcc_arm.hpp
examples/CMakeFiles/DemoWrite01.dir/DemoWrite01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/spinlock_nt.hpp
examples/CMakeFiles/DemoWrite01.dir/DemoWrite01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/spinlock_pool.hpp
examples/CMakeFiles/DemoWrite01.dir/DemoWrite01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/spinlock_pt.hpp
examples/CMakeFiles/DemoWrite01.dir/DemoWrite01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/spinlock_std_atomic.hpp
examples/CMakeFiles/DemoWrite01.dir/DemoWrite01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/spinlock_sync.hpp
examples/CMakeFiles/DemoWrite01.dir/DemoWrite01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/spinlock_w32.hpp
examples/CMakeFiles/DemoWrite01.dir/DemoWrite01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/detail/yield_k.hpp
examples/CMakeFiles/DemoWrite01.dir/DemoWrite01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/enable_shared_from_this.hpp
examples/CMakeFiles/DemoWrite01.dir/DemoWrite01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/shared_ptr.hpp
examples/CMakeFiles/DemoWrite01.dir/DemoWrite01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/smart_ptr/weak_ptr.hpp
examples/CMakeFiles/DemoWrite01.dir/DemoWrite01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/static_assert.hpp
examples/CMakeFiles/DemoWrite01.dir/DemoWrite01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/throw_exception.hpp
examples/CMakeFiles/DemoWrite01.dir/DemoWrite01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/add_lvalue_reference.hpp
examples/CMakeFiles/DemoWrite01.dir/DemoWrite01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/add_reference.hpp
examples/CMakeFiles/DemoWrite01.dir/DemoWrite01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/add_rvalue_reference.hpp
examples/CMakeFiles/DemoWrite01.dir/DemoWrite01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/alignment_of.hpp
examples/CMakeFiles/DemoWrite01.dir/DemoWrite01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/conditional.hpp
examples/CMakeFiles/DemoWrite01.dir/DemoWrite01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/declval.hpp
examples/CMakeFiles/DemoWrite01.dir/DemoWrite01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/detail/config.hpp
examples/CMakeFiles/DemoWrite01.dir/DemoWrite01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/detail/is_function_cxx_03.hpp
examples/CMakeFiles/DemoWrite01.dir/DemoWrite01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/detail/is_function_cxx_11.hpp
examples/CMakeFiles/DemoWrite01.dir/DemoWrite01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/detail/is_function_msvc10_fix.hpp
examples/CMakeFiles/DemoWrite01.dir/DemoWrite01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/detail/is_function_ptr_helper.hpp
examples/CMakeFiles/DemoWrite01.dir/DemoWrite01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/detail/is_function_ptr_tester.hpp
examples/CMakeFiles/DemoWrite01.dir/DemoWrite01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/detail/is_mem_fun_pointer_impl.hpp
examples/CMakeFiles/DemoWrite01.dir/DemoWrite01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/detail/is_mem_fun_pointer_tester.hpp
examples/CMakeFiles/DemoWrite01.dir/DemoWrite01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/detail/is_member_function_pointer_cxx_03.hpp
examples/CMakeFiles/DemoWrite01.dir/DemoWrite01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/detail/is_member_function_pointer_cxx_11.hpp
examples/CMakeFiles/DemoWrite01.dir/DemoWrite01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/detail/is_rvalue_reference_msvc10_fix.hpp
examples/CMakeFiles/DemoWrite01.dir/DemoWrite01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/detail/yes_no_type.hpp
examples/CMakeFiles/DemoWrite01.dir/DemoWrite01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/integral_constant.hpp
examples/CMakeFiles/DemoWrite01.dir/DemoWrite01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/intrinsics.hpp
examples/CMakeFiles/DemoWrite01.dir/DemoWrite01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/is_abstract.hpp
examples/CMakeFiles/DemoWrite01.dir/DemoWrite01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/is_arithmetic.hpp
examples/CMakeFiles/DemoWrite01.dir/DemoWrite01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/is_array.hpp
examples/CMakeFiles/DemoWrite01.dir/DemoWrite01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/is_class.hpp
examples/CMakeFiles/DemoWrite01.dir/DemoWrite01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/is_complete.hpp
examples/CMakeFiles/DemoWrite01.dir/DemoWrite01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/is_convertible.hpp
examples/CMakeFiles/DemoWrite01.dir/DemoWrite01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/is_enum.hpp
examples/CMakeFiles/DemoWrite01.dir/DemoWrite01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/is_floating_point.hpp
examples/CMakeFiles/DemoWrite01.dir/DemoWrite01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/is_function.hpp
examples/CMakeFiles/DemoWrite01.dir/DemoWrite01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/is_integral.hpp
examples/CMakeFiles/DemoWrite01.dir/DemoWrite01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/is_lvalue_reference.hpp
examples/CMakeFiles/DemoWrite01.dir/DemoWrite01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/is_member_function_pointer.hpp
examples/CMakeFiles/DemoWrite01.dir/DemoWrite01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/is_member_pointer.hpp
examples/CMakeFiles/DemoWrite01.dir/DemoWrite01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/is_pod.hpp
examples/CMakeFiles/DemoWrite01.dir/DemoWrite01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/is_pointer.hpp
examples/CMakeFiles/DemoWrite01.dir/DemoWrite01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/is_polymorphic.hpp
examples/CMakeFiles/DemoWrite01.dir/DemoWrite01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/is_reference.hpp
examples/CMakeFiles/DemoWrite01.dir/DemoWrite01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/is_rvalue_reference.hpp
examples/CMakeFiles/DemoWrite01.dir/DemoWrite01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/is_same.hpp
examples/CMakeFiles/DemoWrite01.dir/DemoWrite01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/is_scalar.hpp
examples/CMakeFiles/DemoWrite01.dir/DemoWrite01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/is_union.hpp
examples/CMakeFiles/DemoWrite01.dir/DemoWrite01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/is_void.hpp
examples/CMakeFiles/DemoWrite01.dir/DemoWrite01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/is_volatile.hpp
examples/CMakeFiles/DemoWrite01.dir/DemoWrite01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/remove_cv.hpp
examples/CMakeFiles/DemoWrite01.dir/DemoWrite01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/remove_reference.hpp
examples/CMakeFiles/DemoWrite01.dir/DemoWrite01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/type_traits/type_with_alignment.hpp
examples/CMakeFiles/DemoWrite01.dir/DemoWrite01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/version.hpp
examples/CMakeFiles/DemoWrite01.dir/DemoWrite01.cpp.o: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include/boost/weak_ptr.hpp
examples/CMakeFiles/DemoWrite01.dir/DemoWrite01.cpp.o: ../../examples/DemoWrite01.cpp

View File

@@ -0,0 +1,10 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 3.17
# compile CXX with /usr/bin/c++
CXX_FLAGS = -O3 -DNDEBUG -Wall -Wextra -Wpedantic -O2 -std=gnu++17
CXX_DEFINES = -DE57_REFIMPL_REVISION_ID=openE57-1.2.0 -DLINUX -DU_STATIC_IMPLEMENTATION -D_FORTIFY_SOURCE=2 -D_GLIBCXX_USE_CXX11_ABI=1
CXX_INCLUDES = -I/home/madduci/Projects/openE57/include -isystem /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include -isystem /home/madduci/.conan/data/zlib/1.2.11/_/_/package/19729b9559f3ae196cad45cb2b97468ccb75dcd1/include -isystem /home/madduci/.conan/data/bzip2/1.0.8/_/_/package/91a8b22c2c5a149bc617cfc06cdd21bf23b12567/include -isystem /home/madduci/.conan/data/xerces-c/3.2.2/_/_/package/b173bbda18164d49a449ffadc1c9e817f49e819d/include -isystem /home/madduci/.conan/data/icu/67.1/_/_/package/a8ceb9852beb2633e3b6f0e115181aa8c3c63b84/include

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1,3 @@
CMAKE_PROGRESS_1 = 3
CMAKE_PROGRESS_2 = 4

View File

@@ -0,0 +1 @@
9

View File

@@ -0,0 +1,320 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 3.17
# 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/madduci/Projects/openE57
# The top-level build directory on which CMake was run.
CMAKE_BINARY_DIR = /home/madduci/Projects/openE57/build/linux
#=============================================================================
# Targets provided globally by CMake.
# Special rule for the target install/strip
install/strip: preinstall
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing the project stripped..."
/usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake
.PHONY : install/strip
# Special rule for the target install/strip
install/strip/fast: preinstall/fast
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing the project stripped..."
/usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake
.PHONY : install/strip/fast
# Special rule for the target install/local
install/local: preinstall
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing only the local directory..."
/usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake
.PHONY : install/local
# Special rule for the target install/local
install/local/fast: preinstall/fast
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing only the local directory..."
/usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake
.PHONY : install/local/fast
# Special rule for the target 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 package_source
package_source:
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Run CPack packaging tool for source..."
cd /home/madduci/Projects/openE57/build/linux && /usr/bin/cpack --config ./CPackSourceConfig.cmake /home/madduci/Projects/openE57/build/linux/CPackSourceConfig.cmake
.PHONY : package_source
# Special rule for the target package_source
package_source/fast: package_source
.PHONY : package_source/fast
# Special rule for the target install
install: preinstall
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Install the project..."
/usr/bin/cmake -P cmake_install.cmake
.PHONY : install
# Special rule for the target install
install/fast: preinstall/fast
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Install the project..."
/usr/bin/cmake -P cmake_install.cmake
.PHONY : install/fast
# Special rule for the target list_install_components
list_install_components:
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Available install components are: \"Unspecified\""
.PHONY : list_install_components
# Special rule for the target list_install_components
list_install_components/fast: list_install_components
.PHONY : list_install_components/fast
# Special rule for the target rebuild_cache
rebuild_cache:
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running CMake to regenerate build system..."
/usr/bin/cmake --regenerate-during-build -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR)
.PHONY : rebuild_cache
# Special rule for the target rebuild_cache
rebuild_cache/fast: rebuild_cache
.PHONY : rebuild_cache/fast
# Special rule for the target package
package: preinstall
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Run CPack packaging tool..."
cd /home/madduci/Projects/openE57/build/linux && /usr/bin/cpack --config ./CPackConfig.cmake
.PHONY : package
# Special rule for the target package
package/fast: package
.PHONY : package/fast
# The main all target
all: cmake_check_build_system
cd /home/madduci/Projects/openE57/build/linux && $(CMAKE_COMMAND) -E cmake_progress_start /home/madduci/Projects/openE57/build/linux/CMakeFiles /home/madduci/Projects/openE57/build/linux/examples/CMakeFiles/progress.marks
cd /home/madduci/Projects/openE57/build/linux && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 examples/all
$(CMAKE_COMMAND) -E cmake_progress_start /home/madduci/Projects/openE57/build/linux/CMakeFiles 0
.PHONY : all
# The main clean target
clean:
cd /home/madduci/Projects/openE57/build/linux && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 examples/clean
.PHONY : clean
# The main clean target
clean/fast: clean
.PHONY : clean/fast
# Prepare targets for installation.
preinstall: all
cd /home/madduci/Projects/openE57/build/linux && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 examples/preinstall
.PHONY : preinstall
# Prepare targets for installation.
preinstall/fast:
cd /home/madduci/Projects/openE57/build/linux && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 examples/preinstall
.PHONY : preinstall/fast
# clear depends
depend:
cd /home/madduci/Projects/openE57/build/linux && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1
.PHONY : depend
# Convenience name for target.
examples/CMakeFiles/DemoRead01.dir/rule:
cd /home/madduci/Projects/openE57/build/linux && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 examples/CMakeFiles/DemoRead01.dir/rule
.PHONY : examples/CMakeFiles/DemoRead01.dir/rule
# Convenience name for target.
DemoRead01: examples/CMakeFiles/DemoRead01.dir/rule
.PHONY : DemoRead01
# fast build rule for target.
DemoRead01/fast:
cd /home/madduci/Projects/openE57/build/linux && $(MAKE) $(MAKESILENT) -f examples/CMakeFiles/DemoRead01.dir/build.make examples/CMakeFiles/DemoRead01.dir/build
.PHONY : DemoRead01/fast
# Convenience name for target.
examples/CMakeFiles/DemoWrite01.dir/rule:
cd /home/madduci/Projects/openE57/build/linux && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 examples/CMakeFiles/DemoWrite01.dir/rule
.PHONY : examples/CMakeFiles/DemoWrite01.dir/rule
# Convenience name for target.
DemoWrite01: examples/CMakeFiles/DemoWrite01.dir/rule
.PHONY : DemoWrite01
# fast build rule for target.
DemoWrite01/fast:
cd /home/madduci/Projects/openE57/build/linux && $(MAKE) $(MAKESILENT) -f examples/CMakeFiles/DemoWrite01.dir/build.make examples/CMakeFiles/DemoWrite01.dir/build
.PHONY : DemoWrite01/fast
DemoRead01.o: DemoRead01.cpp.o
.PHONY : DemoRead01.o
# target to build an object file
DemoRead01.cpp.o:
cd /home/madduci/Projects/openE57/build/linux && $(MAKE) $(MAKESILENT) -f examples/CMakeFiles/DemoRead01.dir/build.make examples/CMakeFiles/DemoRead01.dir/DemoRead01.cpp.o
.PHONY : DemoRead01.cpp.o
DemoRead01.i: DemoRead01.cpp.i
.PHONY : DemoRead01.i
# target to preprocess a source file
DemoRead01.cpp.i:
cd /home/madduci/Projects/openE57/build/linux && $(MAKE) $(MAKESILENT) -f examples/CMakeFiles/DemoRead01.dir/build.make examples/CMakeFiles/DemoRead01.dir/DemoRead01.cpp.i
.PHONY : DemoRead01.cpp.i
DemoRead01.s: DemoRead01.cpp.s
.PHONY : DemoRead01.s
# target to generate assembly for a file
DemoRead01.cpp.s:
cd /home/madduci/Projects/openE57/build/linux && $(MAKE) $(MAKESILENT) -f examples/CMakeFiles/DemoRead01.dir/build.make examples/CMakeFiles/DemoRead01.dir/DemoRead01.cpp.s
.PHONY : DemoRead01.cpp.s
DemoWrite01.o: DemoWrite01.cpp.o
.PHONY : DemoWrite01.o
# target to build an object file
DemoWrite01.cpp.o:
cd /home/madduci/Projects/openE57/build/linux && $(MAKE) $(MAKESILENT) -f examples/CMakeFiles/DemoWrite01.dir/build.make examples/CMakeFiles/DemoWrite01.dir/DemoWrite01.cpp.o
.PHONY : DemoWrite01.cpp.o
DemoWrite01.i: DemoWrite01.cpp.i
.PHONY : DemoWrite01.i
# target to preprocess a source file
DemoWrite01.cpp.i:
cd /home/madduci/Projects/openE57/build/linux && $(MAKE) $(MAKESILENT) -f examples/CMakeFiles/DemoWrite01.dir/build.make examples/CMakeFiles/DemoWrite01.dir/DemoWrite01.cpp.i
.PHONY : DemoWrite01.cpp.i
DemoWrite01.s: DemoWrite01.cpp.s
.PHONY : DemoWrite01.s
# target to generate assembly for a file
DemoWrite01.cpp.s:
cd /home/madduci/Projects/openE57/build/linux && $(MAKE) $(MAKESILENT) -f examples/CMakeFiles/DemoWrite01.dir/build.make examples/CMakeFiles/DemoWrite01.dir/DemoWrite01.cpp.s
.PHONY : DemoWrite01.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 "... install"
@echo "... install/local"
@echo "... install/strip"
@echo "... list_install_components"
@echo "... package"
@echo "... package_source"
@echo "... rebuild_cache"
@echo "... DemoRead01"
@echo "... DemoWrite01"
@echo "... DemoRead01.o"
@echo "... DemoRead01.i"
@echo "... DemoRead01.s"
@echo "... DemoWrite01.o"
@echo "... DemoWrite01.i"
@echo "... DemoWrite01.s"
.PHONY : help
#=============================================================================
# Special targets to cleanup operation of make.
# Special rule to run CMake to check the build system integrity.
# No rule that depends on this can have commands that come from listfiles
# because they might be regenerated.
cmake_check_build_system:
cd /home/madduci/Projects/openE57/build/linux && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0
.PHONY : cmake_check_build_system

View File

@@ -0,0 +1,39 @@
# Install script for directory: /home/madduci/Projects/openE57/examples
# Set the install prefix
if(NOT DEFINED CMAKE_INSTALL_PREFIX)
set(CMAKE_INSTALL_PREFIX "/home/madduci/Projects/openE57/build/linux/redist-openE57-v1.2.0")
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 "Release")
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()

274
build/linux/graph_info.json Normal file
View File

@@ -0,0 +1,274 @@
{
"options": [
[
"boost:asio_no_deprecated",
"False"
],
[
"boost:bzip2",
"True"
],
[
"boost:debug_level",
"2"
],
[
"boost:error_code_header_only",
"False"
],
[
"boost:extra_b2_flags",
"None"
],
[
"boost:fPIC",
"True"
],
[
"boost:filesystem_no_deprecated",
"False"
],
[
"boost:header_only",
"False"
],
[
"boost:i18n_backend",
"iconv"
],
[
"boost:layout",
"system"
],
[
"boost:lzma",
"False"
],
[
"boost:magic_autolink",
"False"
],
[
"boost:multithreading",
"True"
],
[
"boost:namespace",
"boost"
],
[
"boost:namespace_alias",
"False"
],
[
"boost:pch",
"True"
],
[
"boost:python_executable",
"None"
],
[
"boost:python_version",
"None"
],
[
"boost:segmented_stacks",
"False"
],
[
"boost:shared",
"False"
],
[
"boost:system_no_deprecated",
"False"
],
[
"boost:without_atomic",
"False"
],
[
"boost:without_chrono",
"False"
],
[
"boost:without_container",
"False"
],
[
"boost:without_context",
"False"
],
[
"boost:without_contract",
"False"
],
[
"boost:without_coroutine",
"False"
],
[
"boost:without_date_time",
"False"
],
[
"boost:without_exception",
"False"
],
[
"boost:without_fiber",
"False"
],
[
"boost:without_filesystem",
"False"
],
[
"boost:without_graph",
"False"
],
[
"boost:without_graph_parallel",
"False"
],
[
"boost:without_iostreams",
"False"
],
[
"boost:without_locale",
"False"
],
[
"boost:without_log",
"False"
],
[
"boost:without_math",
"False"
],
[
"boost:without_mpi",
"False"
],
[
"boost:without_program_options",
"False"
],
[
"boost:without_python",
"True"
],
[
"boost:without_random",
"False"
],
[
"boost:without_regex",
"False"
],
[
"boost:without_serialization",
"False"
],
[
"boost:without_stacktrace",
"False"
],
[
"boost:without_system",
"False"
],
[
"boost:without_test",
"False"
],
[
"boost:without_thread",
"False"
],
[
"boost:without_timer",
"False"
],
[
"boost:without_type_erasure",
"False"
],
[
"boost:without_wave",
"False"
],
[
"boost:zlib",
"True"
],
[
"boost:zstd",
"False"
],
[
"bzip2:build_executable",
"True"
],
[
"bzip2:fPIC",
"True"
],
[
"bzip2:shared",
"False"
],
[
"icu:data_packaging",
"archive"
],
[
"icu:fPIC",
"True"
],
[
"icu:shared",
"False"
],
[
"icu:silent",
"True"
],
[
"icu:with_dyload",
"True"
],
[
"icu:with_unit_tests",
"False"
],
[
"xerces-c:fPIC",
"True"
],
[
"xerces-c:shared",
"False"
],
[
"zlib:fPIC",
"True"
],
[
"zlib:minizip",
"False"
],
[
"zlib:shared",
"False"
]
],
"root": {
"name": null,
"version": null,
"user": null,
"channel": null
}
}

View File

@@ -0,0 +1,11 @@
#ifndef CONFIG_H
#define CONFIG_H
#ifndef E57_REFIMPL_REVISION_ID
# define E57_REFIMPL_REVISION_ID "E57RefImpl-..-"
#endif
#define SVN_VERSION
#endif /* CONFIG_H */

View File

@@ -0,0 +1,42 @@
#ifndef OPENE57_EXPORT_H
#define OPENE57_EXPORT_H
#ifdef OPENE57_STATIC_DEFINE
# define OPENE57_EXPORT
# define OPENE57_NO_EXPORT
#else
# ifndef OPENE57_EXPORT
# ifdef openE57_EXPORTS
/* We are building this library */
# define OPENE57_EXPORT
# else
/* We are using this library */
# define OPENE57_EXPORT
# endif
# endif
# ifndef OPENE57_NO_EXPORT
# define OPENE57_NO_EXPORT
# endif
#endif
#ifndef OPENE57_DEPRECATED
# define OPENE57_DEPRECATED __attribute__ ((__deprecated__))
#endif
#ifndef OPENE57_DEPRECATED_EXPORT
# define OPENE57_DEPRECATED_EXPORT OPENE57_EXPORT OPENE57_DEPRECATED
#endif
#ifndef OPENE57_DEPRECATED_NO_EXPORT
# define OPENE57_DEPRECATED_NO_EXPORT OPENE57_NO_EXPORT OPENE57_DEPRECATED
#endif
#if 0 /* DEFINE_NO_DEPRECATED */
# ifndef OPENE57_NO_DEPRECATED
# define OPENE57_NO_DEPRECATED
# endif
#endif
#endif /* OPENE57_EXPORT_H */

View File

@@ -0,0 +1,16 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 3.17
# Relative path conversion top directories.
set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/home/madduci/Projects/openE57")
set(CMAKE_RELATIVE_PATH_TOP_BINARY "/home/madduci/Projects/openE57/build/linux")
# 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})

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,37 @@
# The set of languages for which implicit dependencies are needed:
set(CMAKE_DEPENDS_LANGUAGES
"CXX"
)
# The set of files for implicit dependencies of each language:
set(CMAKE_DEPENDS_CHECK_CXX
"/home/madduci/Projects/openE57/tools/e57fields.cpp" "/home/madduci/Projects/openE57/build/linux/tools/CMakeFiles/e57fields.dir/e57fields.cpp.o"
)
set(CMAKE_CXX_COMPILER_ID "GNU")
# Preprocessor definitions for this target.
set(CMAKE_TARGET_DEFINITIONS_CXX
"E57_REFIMPL_REVISION_ID=openE57-1.2.0"
"LINUX"
"U_STATIC_IMPLEMENTATION"
"_FORTIFY_SOURCE=2"
"_GLIBCXX_USE_CXX11_ABI=1"
)
# The include file search paths:
set(CMAKE_CXX_TARGET_INCLUDE_PATH
"include"
"../../include"
"/home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/include"
"/home/madduci/.conan/data/zlib/1.2.11/_/_/package/19729b9559f3ae196cad45cb2b97468ccb75dcd1/include"
"/home/madduci/.conan/data/bzip2/1.0.8/_/_/package/91a8b22c2c5a149bc617cfc06cdd21bf23b12567/include"
"/home/madduci/.conan/data/xerces-c/3.2.2/_/_/package/b173bbda18164d49a449ffadc1c9e817f49e819d/include"
"/home/madduci/.conan/data/icu/67.1/_/_/package/a8ceb9852beb2633e3b6f0e115181aa8c3c63b84/include"
)
# Targets to which this target links.
set(CMAKE_TARGET_LINKED_INFO_FILES
"/home/madduci/Projects/openE57/build/linux/CMakeFiles/openE57.dir/DependInfo.cmake"
)
# Fortran module output directory.
set(CMAKE_Fortran_TARGET_MODULE_DIR "")

View File

@@ -0,0 +1,164 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 3.17
# 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/madduci/Projects/openE57
# The top-level build directory on which CMake was run.
CMAKE_BINARY_DIR = /home/madduci/Projects/openE57/build/linux
# Include any dependencies generated for this target.
include tools/CMakeFiles/e57fields.dir/depend.make
# Include the progress variables for this target.
include tools/CMakeFiles/e57fields.dir/progress.make
# Include the compile flags for this target's objects.
include tools/CMakeFiles/e57fields.dir/flags.make
tools/CMakeFiles/e57fields.dir/e57fields.cpp.o: tools/CMakeFiles/e57fields.dir/flags.make
tools/CMakeFiles/e57fields.dir/e57fields.cpp.o: ../../tools/e57fields.cpp
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/madduci/Projects/openE57/build/linux/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object tools/CMakeFiles/e57fields.dir/e57fields.cpp.o"
cd /home/madduci/Projects/openE57/build/linux/tools && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -o CMakeFiles/e57fields.dir/e57fields.cpp.o -c /home/madduci/Projects/openE57/tools/e57fields.cpp
tools/CMakeFiles/e57fields.dir/e57fields.cpp.i: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/e57fields.dir/e57fields.cpp.i"
cd /home/madduci/Projects/openE57/build/linux/tools && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/madduci/Projects/openE57/tools/e57fields.cpp > CMakeFiles/e57fields.dir/e57fields.cpp.i
tools/CMakeFiles/e57fields.dir/e57fields.cpp.s: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/e57fields.dir/e57fields.cpp.s"
cd /home/madduci/Projects/openE57/build/linux/tools && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/madduci/Projects/openE57/tools/e57fields.cpp -o CMakeFiles/e57fields.dir/e57fields.cpp.s
# Object files for target e57fields
e57fields_OBJECTS = \
"CMakeFiles/e57fields.dir/e57fields.cpp.o"
# External object files for target e57fields
e57fields_EXTERNAL_OBJECTS =
bin/e57fields: tools/CMakeFiles/e57fields.dir/e57fields.cpp.o
bin/e57fields: tools/CMakeFiles/e57fields.dir/build.make
bin/e57fields: lib/libopenE57.a
bin/e57fields: /home/madduci/.conan/data/xerces-c/3.2.2/_/_/package/b173bbda18164d49a449ffadc1c9e817f49e819d/lib/libxerces-c-3.2.a
bin/e57fields: /home/madduci/.conan/data/icu/67.1/_/_/package/a8ceb9852beb2633e3b6f0e115181aa8c3c63b84/lib/libicui18n.a
bin/e57fields: /home/madduci/.conan/data/icu/67.1/_/_/package/a8ceb9852beb2633e3b6f0e115181aa8c3c63b84/lib/libicuio.a
bin/e57fields: /home/madduci/.conan/data/icu/67.1/_/_/package/a8ceb9852beb2633e3b6f0e115181aa8c3c63b84/lib/libicutest.a
bin/e57fields: /home/madduci/.conan/data/icu/67.1/_/_/package/a8ceb9852beb2633e3b6f0e115181aa8c3c63b84/lib/libicutu.a
bin/e57fields: /home/madduci/.conan/data/icu/67.1/_/_/package/a8ceb9852beb2633e3b6f0e115181aa8c3c63b84/lib/libicuuc.a
bin/e57fields: /home/madduci/.conan/data/icu/67.1/_/_/package/a8ceb9852beb2633e3b6f0e115181aa8c3c63b84/lib/libicudata.a
bin/e57fields: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/lib/libboost_wave.a
bin/e57fields: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/lib/libboost_container.a
bin/e57fields: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/lib/libboost_contract.a
bin/e57fields: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/lib/libboost_exception.a
bin/e57fields: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/lib/libboost_graph.a
bin/e57fields: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/lib/libboost_iostreams.a
bin/e57fields: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/lib/libboost_locale.a
bin/e57fields: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/lib/libboost_log.a
bin/e57fields: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/lib/libboost_program_options.a
bin/e57fields: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/lib/libboost_random.a
bin/e57fields: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/lib/libboost_regex.a
bin/e57fields: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/lib/libboost_serialization.a
bin/e57fields: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/lib/libboost_wserialization.a
bin/e57fields: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/lib/libboost_coroutine.a
bin/e57fields: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/lib/libboost_fiber.a
bin/e57fields: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/lib/libboost_context.a
bin/e57fields: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/lib/libboost_timer.a
bin/e57fields: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/lib/libboost_thread.a
bin/e57fields: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/lib/libboost_chrono.a
bin/e57fields: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/lib/libboost_date_time.a
bin/e57fields: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/lib/libboost_atomic.a
bin/e57fields: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/lib/libboost_filesystem.a
bin/e57fields: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/lib/libboost_system.a
bin/e57fields: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/lib/libboost_type_erasure.a
bin/e57fields: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/lib/libboost_log_setup.a
bin/e57fields: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/lib/libboost_math_c99.a
bin/e57fields: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/lib/libboost_math_c99f.a
bin/e57fields: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/lib/libboost_math_c99l.a
bin/e57fields: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/lib/libboost_math_tr1.a
bin/e57fields: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/lib/libboost_math_tr1f.a
bin/e57fields: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/lib/libboost_math_tr1l.a
bin/e57fields: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/lib/libboost_nowide.a
bin/e57fields: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/lib/libboost_stacktrace_addr2line.a
bin/e57fields: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/lib/libboost_stacktrace_basic.a
bin/e57fields: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/lib/libboost_stacktrace_noop.a
bin/e57fields: /home/madduci/.conan/data/boost/1.73.0/_/_/package/104297d4d8bdbca7e9351b0f32c32f11628164c7/lib/libboost_unit_test_framework.a
bin/e57fields: /home/madduci/.conan/data/zlib/1.2.11/_/_/package/19729b9559f3ae196cad45cb2b97468ccb75dcd1/lib/libz.a
bin/e57fields: /home/madduci/.conan/data/bzip2/1.0.8/_/_/package/91a8b22c2c5a149bc617cfc06cdd21bf23b12567/lib/libbz2.a
bin/e57fields: tools/CMakeFiles/e57fields.dir/link.txt
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --bold --progress-dir=/home/madduci/Projects/openE57/build/linux/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Linking CXX executable ../bin/e57fields"
cd /home/madduci/Projects/openE57/build/linux/tools && $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/e57fields.dir/link.txt --verbose=$(VERBOSE)
# Rule to build all files generated by this target.
tools/CMakeFiles/e57fields.dir/build: bin/e57fields
.PHONY : tools/CMakeFiles/e57fields.dir/build
tools/CMakeFiles/e57fields.dir/clean:
cd /home/madduci/Projects/openE57/build/linux/tools && $(CMAKE_COMMAND) -P CMakeFiles/e57fields.dir/cmake_clean.cmake
.PHONY : tools/CMakeFiles/e57fields.dir/clean
tools/CMakeFiles/e57fields.dir/depend:
cd /home/madduci/Projects/openE57/build/linux && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/madduci/Projects/openE57 /home/madduci/Projects/openE57/tools /home/madduci/Projects/openE57/build/linux /home/madduci/Projects/openE57/build/linux/tools /home/madduci/Projects/openE57/build/linux/tools/CMakeFiles/e57fields.dir/DependInfo.cmake --color=$(COLOR)
.PHONY : tools/CMakeFiles/e57fields.dir/depend

View File

@@ -0,0 +1,10 @@
file(REMOVE_RECURSE
"../bin/e57fields"
"../bin/e57fields.pdb"
"CMakeFiles/e57fields.dir/e57fields.cpp.o"
)
# Per-language clean rules from dependency scanning.
foreach(lang CXX)
include(CMakeFiles/e57fields.dir/cmake_clean_${lang}.cmake OPTIONAL)
endforeach()

Some files were not shown because too many files have changed in this diff Show More