commit 87dcf1bda3153478c4c1d8042072d057901ca046 Author: Av3m <7688354+Av3m@users.noreply.github.com> Date: Wed Apr 4 12:28:46 2018 +0200 initial commit diff --git a/boost/FindBoost.cmake b/boost/FindBoost.cmake new file mode 100644 index 0000000..3d8adeb --- /dev/null +++ b/boost/FindBoost.cmake @@ -0,0 +1,43 @@ +message(STATUS "********* Conan FindBoost wrapper **********") +message("COMPONENTS TO SEARCH: ${Boost_FIND_COMPONENTS}") + +set(BOOST_ROOT ${CONAN_BOOST_ROOT}) +set(BOOST_INCLUDEDIR ${CONAN_INCLUDE_DIRS_BOOST}) +set(Boost_LIBRARY_DIR ${CONAN_LIB_DIRS_BOOST}) +set(BOOST_LIBRARYDIR ${CONAN_LIB_DIRS_BOOST}) +set(Boost_NO_SYSTEM_PATHS ON) +set(Boost_NO_BOOST_CMAKE ON) + +# READ conaninfo and detect HEADER ONLY +file(READ ${CONAN_BOOST_ROOT}/conaninfo.txt CONANINFO_FILE) +if(WIN32) + # Appends "g" + if(CONANINFO_FILE MATCHES "build_type=Debug") + set(Boost_USE_DEBUG_RUNTIME ON) + else() + set(Boost_USE_DEBUG_RUNTIME OFF) + endif() + + # Appends "s" + if(CONANINFO_FILE MATCHES "compiler.runtime=MT" OR CONANINFO_FILE MATCHES "compiler.runtime=MTd") + set(Boost_USE_STATIC_RUNTIME ON) + else() + set(Boost_USE_STATIC_RUNTIME OFF) + endif() + + message("DEBUG RUNTIME: ${Boost_USE_DEBUG_RUNTIME}") + message("STATIC RUNTIME: ${Boost_USE_STATIC_RUNTIME}") + + # The space is important, so it doesn't match the flag for zlib:shared=False + if(CONANINFO_FILE MATCHES " shared=False") + set(Boost_USE_STATIC_LIBS ON) # Removed in the original file + else() + set(Boost_USE_STATIC_LIBS OFF) + endif() +endif() + + +find_package(Boost ${Boost_FIND_REQUIRED} COMPONENTS ${Boost_FIND_COMPONENTS} NO_CMAKE_PACKAGE_REGISTRY ) + + + diff --git a/boost/conanfile.py b/boost/conanfile.py new file mode 100644 index 0000000..a4a6747 --- /dev/null +++ b/boost/conanfile.py @@ -0,0 +1,315 @@ +from conans import ConanFile +from conans import tools +import platform, os, sys + + +class BoostConan(ConanFile): + name = "Boost" + settings = "os", "arch", "compiler", "build_type" + version = "1.66.0" + # The current python option requires the package to be built locally, to find default Python implementation + options = { + "shared": [True, False], + "header_only": [True, False], + "fPIC": [True, False], + "python": [True, False], # Note: this variable does not have the 'without_' prefix to keep the old shas + "without_atomic": [True, False], + "without_chrono": [True, False], + "without_container": [True, False], + "without_context": [True, False], + "without_coroutine": [True, False], + "without_coroutine2": [True, False], + "without_date_time": [True, False], + "without_exception": [True, False], + "without_filesystem": [True, False], + "without_graph": [True, False], + "without_graph_parallel": [True, False], + "without_iostreams": [True, False], + "without_locale": [True, False], + "without_log": [True, False], + "without_math": [True, False], + "without_mpi": [True, False], + "without_program_options": [True, False], + "without_random": [True, False], + "without_regex": [True, False], + "without_serialization": [True, False], + "without_signals": [True, False], + "without_system": [True, False], + "without_test": [True, False], + "without_thread": [True, False], + "without_timer": [True, False], + "without_type_erasure": [True, False], + "without_wave": [True, False] + } + + default_options = "shared=False", \ + "header_only=False", \ + "fPIC=False", \ + "python=False", \ + "without_atomic=False", \ + "without_chrono=False", \ + "without_container=False", \ + "without_context=False", \ + "without_coroutine=False", \ + "without_coroutine2=False", \ + "without_date_time=False", \ + "without_exception=False", \ + "without_filesystem=False", \ + "without_graph=False", \ + "without_graph_parallel=False", \ + "without_iostreams=False", \ + "without_locale=False", \ + "without_log=False", \ + "without_math=False", \ + "without_mpi=False", \ + "without_program_options=False", \ + "without_random=False", \ + "without_regex=False", \ + "without_serialization=False", \ + "without_signals=False", \ + "without_system=False", \ + "without_test=False", \ + "without_thread=False", \ + "without_timer=False", \ + "without_type_erasure=False", \ + "without_wave=False" + + url="https://github.com/Av3m/conan-boost" + exports = ["FindBoost.cmake"] + license="Boost Software License - Version 1.0. http://www.boost.org/LICENSE_1_0.txt" + short_paths = True + + def config_options(self): + """ First configuration step. Only settings are defined. Options can be removed + according to these settings + """ + if self.settings.compiler == "Visual Studio": + self.options.remove("fPIC") + + def configure(self): + """ Second configuration step. Both settings and options have values, in this case + we can force static library if MT was specified as runtime + """ + if self.settings.compiler == "Visual Studio" and \ + self.options.shared and "MT" in str(self.settings.compiler.runtime): + self.options.shared = False + + if self.options.header_only: + # Should be doable in conan_info() but the UX is not ready + self.options.remove("shared") + self.options.remove("fPIC") + self.options.remove("python") + + if not self.options.without_iostreams: + if self.settings.os == "Linux" or self.settings.os == "Macos": + self.requires("bzip2/1.0.6@conan/stable") + if not self.options.header_only: + self.options["bzip2"].shared = self.options.shared + self.requires("zlib/1.2.11@conan/stable") + if not self.options.header_only: + self.options["zlib"].shared = self.options.shared + + def conan_info(self): + """ if it is header only, the requirements, settings and options do not affect the package ID + so they should be removed, so just 1 package for header only is generated, not one for each + different compiler and option. This is the last step, after build, and package + """ + if self.options.header_only: + self.info.requires.clear() + self.info.settings.clear() + + def source(self): + FOLDER_NAME = "boost_%s" % self.version.replace(".", "_") + zip_name = "%s.zip" % FOLDER_NAME if sys.platform == "win32" else "%s.tar.gz" % FOLDER_NAME + url = "http://sourceforge.net/projects/boost/files/boost/%s/%s/download" % (self.version, zip_name) + self.output.info("Downloading %s..." % url) + tools.download(url, zip_name) + tools.unzip(zip_name, ".") + os.unlink(zip_name) + + def build(self): + FOLDER_NAME = "boost_%s" % self.version.replace(".", "_") + + if self.options.header_only: + self.output.warn("Header only package, skipping build") + return + command = "bootstrap" if self.settings.os == "Windows" else "./bootstrap.sh" + if self.settings.os == "Windows" and self.settings.compiler == "gcc": + command += " mingw" + try: + self.run("cd %s && %s" % (FOLDER_NAME, command)) + except: + self.run("cd %s && type bootstrap.log" % FOLDER_NAME + if self.settings.os == "Windows" + else "cd %s && cat bootstrap.log" % FOLDER_NAME) + raise + + flags = [] + if self.settings.compiler == "Visual Studio": + flags.append("toolset=msvc-%s.0" % self.settings.compiler.version) + elif str(self.settings.compiler) in ["clang", "gcc"]: + flags.append("toolset=%s"% self.settings.compiler) + + flags.append("link=%s" % ("static" if not self.options.shared else "shared")) + if self.settings.compiler == "Visual Studio" and self.settings.compiler.runtime: + flags.append("runtime-link=%s" % ("static" if "MT" in str(self.settings.compiler.runtime) else "shared")) + flags.append("variant=%s" % str(self.settings.build_type).lower()) + flags.append("address-model=%s" % ("32" if self.settings.arch == "x86" else "64")) + + option_names = { + "--without-atomic": self.options.without_atomic, + "--without-chrono": self.options.without_chrono, + "--without-container": self.options.without_container, + "--without-coroutine": self.options.without_coroutine, + "--without-coroutine2": self.options.without_coroutine2, + "--without-date_time": self.options.without_date_time, + "--without-exception": self.options.without_exception, + "--without-filesystem": self.options.without_filesystem, + "--without-graph": self.options.without_graph, + "--without-graph_parallel": self.options.without_graph_parallel, + "--without-iostreams": self.options.without_iostreams, + "--without-locale": self.options.without_locale, + "--without-log": self.options.without_log, + "--without-math": self.options.without_math, + "--without-mpi": self.options.without_mpi, + "--without-program_options": self.options.without_program_options, + "--without-random": self.options.without_random, + "--without-regex": self.options.without_regex, + "--without-serialization": self.options.without_serialization, + "--without-signals": self.options.without_signals, + "--without-system": self.options.without_system, + "--without-test": self.options.without_test, + "--without-thread": self.options.without_thread, + "--without-timer": self.options.without_timer, + "--without-type_erasure": self.options.without_type_erasure, + "--without-wave": self.options.without_wave + } + + for option_name, activated in option_names.items(): + if activated: + flags.append(option_name) + + cxx_flags = [] + # fPIC DEFINITION + if self.settings.compiler != "Visual Studio": + if self.options.fPIC: + cxx_flags.append("-fPIC") + + + # LIBCXX DEFINITION FOR BOOST B2 + try: + if str(self.settings.compiler.libcxx) == "libstdc++": + flags.append("define=_GLIBCXX_USE_CXX11_ABI=0") + elif str(self.settings.compiler.libcxx) == "libstdc++11": + flags.append("define=_GLIBCXX_USE_CXX11_ABI=1") + if "clang" in str(self.settings.compiler): + if str(self.settings.compiler.libcxx) == "libc++": + cxx_flags.append("-stdlib=libc++") + cxx_flags.append("-std=c++11") + flags.append('linkflags="-stdlib=libc++"') + else: + cxx_flags.append("-stdlib=libstdc++") + cxx_flags.append("-std=c++11") + except: + pass + + cxx_flags = 'cxxflags="%s"' % " ".join(cxx_flags) if cxx_flags else "" + flags.append(cxx_flags) + + # JOIN ALL FLAGS + b2_flags = " ".join(flags) + + command = "b2" if self.settings.os == "Windows" else "./b2" + if self.settings.os == "Linux": + deps_options = self.prepare_deps_options() + else: + deps_options = "" + + without_python = "--without-python" if not self.options.python else "" + full_command = "cd %s && %s %s -j%s --abbreviate-paths %s %s" % ( + FOLDER_NAME, + command, + b2_flags, + tools.cpu_count(), + without_python, + deps_options) + self.output.warn(full_command) + self.run(full_command)#, output=False) + + def prepare_deps_options(self): + ret = "" + if "bzip2" in self.requires: + include_path = self.deps_cpp_info["bzip2"].include_paths[0] + lib_path = self.deps_cpp_info["bzip2"].lib_paths[0] + lib_name = self.deps_cpp_info["bzip2"].libs[0] + ret += "-s BZIP2_BINARY=%s -s BZIP2_INCLUDE=%s -s BZIP2_LIBPATH=%s" % (lib_name, include_path, lib_path) +# FIXME: I think ZLIB variables should be setted now as env variables. But compilation works anyway. +# if "zlib" in self.requires: +# include_path = self.deps_cpp_info["zlib"].include_paths[0] +# lib_path = self.deps_cpp_info["zlib"].lib_paths[0] +# lib_name = self.deps_cpp_info["zlib"].libs[0] +# ret += "-s ZLIB_BINARY=%s -s ZLIB_INCLUDE=%s -s ZLIB_LIBPATH=%s" % (lib_name, include_path, lib_path) + + return ret + + def package(self): + FOLDER_NAME = "boost_%s" % self.version.replace(".", "_") + # Copy findZLIB.cmake to package + self.copy("FindBoost.cmake", ".", ".") + + self.copy(pattern="*", dst="include/boost", src="%s/boost" % FOLDER_NAME) + self.copy(pattern="*.a", dst="lib", src="%s/stage/lib" % FOLDER_NAME) + self.copy(pattern="*.so", dst="lib", src="%s/stage/lib" % FOLDER_NAME) + self.copy(pattern="*.so.*", dst="lib", src="%s/stage/lib" % FOLDER_NAME) + self.copy(pattern="*.dylib*", dst="lib", src="%s/stage/lib" % FOLDER_NAME) + self.copy(pattern="*.lib", dst="lib", src="%s/stage/lib" % FOLDER_NAME) + self.copy(pattern="*.dll", dst="bin", src="%s/stage/lib" % FOLDER_NAME) + + def package_info(self): + + if not self.options.header_only and self.options.shared: + self.cpp_info.defines.append("BOOST_ALL_DYN_LINK") + else: + self.cpp_info.defines.append("BOOST_USE_STATIC_LIBS") + + if self.options.header_only: + return + + libs = ("wave unit_test_framework prg_exec_monitor test_exec_monitor container exception " + "graph iostreams locale log log_setup math_c99 math_c99f math_c99l math_tr1 " + "math_tr1f math_tr1l program_options random regex wserialization serialization " + "signals coroutine context timer thread chrono date_time atomic filesystem system").split() + + if self.options.python: + libs.append("python") + if not self.options.shared: + self.cpp_info.defines.append("BOOST_PYTHON_STATIC_LIB") + + if self.settings.compiler != "Visual Studio": + self.cpp_info.libs.extend(["boost_%s" % lib for lib in libs]) + else: + win_libs = [] + # http://www.boost.org/doc/libs/1_55_0/more/getting_started/windows.html + visual_version = int(str(self.settings.compiler.version)) * 10 + runtime = "mt" # str(self.settings.compiler.runtime).lower() + + abi_tags = [] + if self.settings.compiler.runtime in ("MTd", "MT"): + abi_tags.append("s") + + if self.settings.build_type == "Debug": + abi_tags.append("gd") + + abi_tags = ("-%s" % "".join(abi_tags)) if abi_tags else "" + + version = "_".join(self.version.split(".")[0:2]) + suffix = "vc%d-%s%s-%s" % (visual_version, runtime, abi_tags, version) + prefix = "lib" if not self.options.shared else "" + + + win_libs.extend(["%sboost_%s-%s" % (prefix, lib, suffix) for lib in libs if lib not in ["exception", "test_exec_monitor"]]) + win_libs.extend(["libboost_exception-%s" % suffix, "libboost_test_exec_monitor-%s" % suffix]) + + #self.output.warn("EXPORTED BOOST LIBRARIES: %s" % win_libs) + self.cpp_info.libs.extend(win_libs) + self.cpp_info.defines.extend(["BOOST_ALL_NO_LIB"]) # DISABLES AUTO LINKING! NO SMART AND MAGIC DECISIONS THANKS! diff --git a/boost/test_package/.CMakeLists.txt.un~ b/boost/test_package/.CMakeLists.txt.un~ new file mode 100644 index 0000000..b943da7 Binary files /dev/null and b/boost/test_package/.CMakeLists.txt.un~ differ diff --git a/boost/test_package/CMakeLists.txt b/boost/test_package/CMakeLists.txt new file mode 100644 index 0000000..c835367 --- /dev/null +++ b/boost/test_package/CMakeLists.txt @@ -0,0 +1,15 @@ +project(PackageTest CXX) +cmake_minimum_required(VERSION 2.8.12) + +include(${CMAKE_BINARY_DIR}/conanbuildinfo.cmake) +conan_basic_setup() + +find_package(Boost REQUIRED COMPONENTS io system) +add_executable(example example.cpp) +target_link_libraries(example ${Boost_LIBRARIES}) + +# CTest is a testing tool that can be used to test your project. +# enable_testing() +# add_test(NAME example +# WORKING_DIRECTORY ${CMAKE_BINARY_DIR}/bin +# COMMAND example) diff --git a/boost/test_package/CMakeLists.txt~ b/boost/test_package/CMakeLists.txt~ new file mode 100644 index 0000000..15c5a8c --- /dev/null +++ b/boost/test_package/CMakeLists.txt~ @@ -0,0 +1,14 @@ +project(PackageTest CXX) +cmake_minimum_required(VERSION 2.8.12) + +include(${CMAKE_BINARY_DIR}/conanbuildinfo.cmake) +conan_basic_setup() + +add_executable(example example.cpp) +target_link_libraries(example ${CONAN_LIBS}) + +# CTest is a testing tool that can be used to test your project. +# enable_testing() +# add_test(NAME example +# WORKING_DIRECTORY ${CMAKE_BINARY_DIR}/bin +# COMMAND example) diff --git a/boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/ALL_BUILD.vcxproj b/boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/ALL_BUILD.vcxproj new file mode 100644 index 0000000..f433f72 --- /dev/null +++ b/boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/ALL_BUILD.vcxproj @@ -0,0 +1,169 @@ + + + + + Debug + x64 + + + Release + x64 + + + MinSizeRel + x64 + + + RelWithDebInfo + x64 + + + + {8192D579-EC2C-31B5-8C0C-EA680624F8D4} + Win32Proj + x64 + ALL_BUILD + + + + Utility + MultiByte + Windows7.1SDK + + + Utility + MultiByte + Windows7.1SDK + + + Utility + MultiByte + Windows7.1SDK + + + Utility + MultiByte + Windows7.1SDK + + + + + + + + + + <_ProjectFileVersion>10.0.20506.1 + $(Platform)\$(Configuration)\$(ProjectName)\ + $(Platform)\$(Configuration)\$(ProjectName)\ + $(Platform)\$(Configuration)\$(ProjectName)\ + $(Platform)\$(Configuration)\$(ProjectName)\ + + + + C:\.conan\oqf7uzoi\1\include;C:\Users\thoma\.conan\data\zlib\1.2.11\conan\stable\package\85f780d0530411a64b0be4407b381706014b445d\include;%(AdditionalIncludeDirectories) + $(ProjectDir)/$(IntDir) + %(Filename).h + %(Filename).tlb + %(Filename)_i.c + %(Filename)_p.c + + + + + C:\.conan\oqf7uzoi\1\include;C:\Users\thoma\.conan\data\zlib\1.2.11\conan\stable\package\85f780d0530411a64b0be4407b381706014b445d\include;%(AdditionalIncludeDirectories) + $(ProjectDir)/$(IntDir) + %(Filename).h + %(Filename).tlb + %(Filename)_i.c + %(Filename)_p.c + + + + + C:\.conan\oqf7uzoi\1\include;C:\Users\thoma\.conan\data\zlib\1.2.11\conan\stable\package\85f780d0530411a64b0be4407b381706014b445d\include;%(AdditionalIncludeDirectories) + $(ProjectDir)/$(IntDir) + %(Filename).h + %(Filename).tlb + %(Filename)_i.c + %(Filename)_p.c + + + + + C:\.conan\oqf7uzoi\1\include;C:\Users\thoma\.conan\data\zlib\1.2.11\conan\stable\package\85f780d0530411a64b0be4407b381706014b445d\include;%(AdditionalIncludeDirectories) + $(ProjectDir)/$(IntDir) + %(Filename).h + %(Filename).tlb + %(Filename)_i.c + %(Filename)_p.c + + + + + Building Custom Rule C:/Users/thoma/Documents/repos/conan-boost/test_package/CMakeLists.txt + setlocal +"C:\Program Files\CMake\bin\cmake.exe" -HC:/Users/thoma/Documents/repos/conan-boost/test_package -BC:/Users/thoma/Documents/repos/conan-boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd --check-stamp-file C:/Users/thoma/Documents/repos/conan-boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/generate.stamp +if %errorlevel% neq 0 goto :cmEnd +:cmEnd +endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone +:cmErrorLevel +exit /b %1 +:cmDone +if %errorlevel% neq 0 goto :VCEnd + C:/Users/thoma/Documents/repos/conan-boost/test_package/CMakeLists.txt;C:\Users\thoma\Documents\repos\conan-boost\test_package\CMakeLists.txt;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineSystem.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeSystem.cmake.in;C:\Users\thoma\Documents\repos\conan-boost\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\3.10.1\CMakeSystem.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeSystemSpecificInitialize.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCXXCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\Windows-Determine-CXX.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCompilerId.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCompilerIdDetection.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\ADSP-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\ARMCC-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\AppleClang-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Clang-DetermineCompilerInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Borland-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Clang-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Clang-DetermineCompilerInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Comeau-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Compaq-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Cray-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Embarcadero-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Fujitsu-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\GHS-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\GNU-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\HP-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\IAR-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Intel-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\MIPSpro-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\MSVC-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\NVIDIA-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\OpenWatcom-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\PGI-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\PathScale-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\SCO-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\SunPro-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\TI-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\VisualAge-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\IBMCPP-CXX-DetermineVersionInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Watcom-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\XL-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\IBMCPP-CXX-DetermineVersionInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\zOS-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\IBMCPP-CXX-DetermineVersionInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CompilerId\VS-10.vcxproj.in;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeFindBinUtils.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCXXCompiler.cmake.in;C:\Users\thoma\Documents\repos\conan-boost\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\3.10.1\CMakeCXXCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeSystemSpecificInformation.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeGenericSystem.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\Windows.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\WindowsPaths.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCXXInformation.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeLanguageInformation.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\MSVC-CXX.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\CMakeCommonCompilerMacros.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\Windows-MSVC-CXX.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\Windows-MSVC.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineRCCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeRCCompiler.cmake.in;C:\Users\thoma\Documents\repos\conan-boost\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\3.10.1\CMakeRCCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeRCInformation.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeTestRCCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCommonLanguageInclude.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeTestCXXCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeTestCompilerCommon.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCompilerABI.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeParseImplicitLinkInfo.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCXXCompilerABI.cpp;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCompileFeatures.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Internal\FeatureTesting.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\MSVC-CXX-FeatureTests.cmake;C:\Users\thoma\Documents\repos\conan-boost\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\feature_tests.cxx;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCXXCompiler.cmake.in;C:\Users\thoma\Documents\repos\conan-boost\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\3.10.1\CMakeCXXCompiler.cmake;C:\Users\thoma\Documents\repos\conan-boost\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\conanbuildinfo.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeParseArguments.cmake;C:\.conan\oqf7uzoi\1\FindBoost.cmake;C:\Users\thoma\Documents\repos\conan-boost\test_package\CMakeLists.txt;%(AdditionalInputs) + C:\Users\thoma\Documents\repos\conan-boost\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\generate.stamp + Building Custom Rule C:/Users/thoma/Documents/repos/conan-boost/test_package/CMakeLists.txt + setlocal +"C:\Program Files\CMake\bin\cmake.exe" -HC:/Users/thoma/Documents/repos/conan-boost/test_package -BC:/Users/thoma/Documents/repos/conan-boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd --check-stamp-file C:/Users/thoma/Documents/repos/conan-boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/generate.stamp +if %errorlevel% neq 0 goto :cmEnd +:cmEnd +endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone +:cmErrorLevel +exit /b %1 +:cmDone +if %errorlevel% neq 0 goto :VCEnd + C:/Users/thoma/Documents/repos/conan-boost/test_package/CMakeLists.txt;C:\Users\thoma\Documents\repos\conan-boost\test_package\CMakeLists.txt;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineSystem.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeSystem.cmake.in;C:\Users\thoma\Documents\repos\conan-boost\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\3.10.1\CMakeSystem.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeSystemSpecificInitialize.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCXXCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\Windows-Determine-CXX.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCompilerId.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCompilerIdDetection.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\ADSP-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\ARMCC-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\AppleClang-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Clang-DetermineCompilerInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Borland-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Clang-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Clang-DetermineCompilerInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Comeau-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Compaq-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Cray-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Embarcadero-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Fujitsu-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\GHS-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\GNU-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\HP-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\IAR-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Intel-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\MIPSpro-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\MSVC-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\NVIDIA-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\OpenWatcom-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\PGI-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\PathScale-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\SCO-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\SunPro-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\TI-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\VisualAge-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\IBMCPP-CXX-DetermineVersionInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Watcom-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\XL-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\IBMCPP-CXX-DetermineVersionInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\zOS-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\IBMCPP-CXX-DetermineVersionInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CompilerId\VS-10.vcxproj.in;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeFindBinUtils.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCXXCompiler.cmake.in;C:\Users\thoma\Documents\repos\conan-boost\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\3.10.1\CMakeCXXCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeSystemSpecificInformation.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeGenericSystem.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\Windows.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\WindowsPaths.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCXXInformation.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeLanguageInformation.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\MSVC-CXX.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\CMakeCommonCompilerMacros.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\Windows-MSVC-CXX.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\Windows-MSVC.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineRCCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeRCCompiler.cmake.in;C:\Users\thoma\Documents\repos\conan-boost\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\3.10.1\CMakeRCCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeRCInformation.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeTestRCCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCommonLanguageInclude.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeTestCXXCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeTestCompilerCommon.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCompilerABI.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeParseImplicitLinkInfo.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCXXCompilerABI.cpp;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCompileFeatures.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Internal\FeatureTesting.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\MSVC-CXX-FeatureTests.cmake;C:\Users\thoma\Documents\repos\conan-boost\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\feature_tests.cxx;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCXXCompiler.cmake.in;C:\Users\thoma\Documents\repos\conan-boost\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\3.10.1\CMakeCXXCompiler.cmake;C:\Users\thoma\Documents\repos\conan-boost\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\conanbuildinfo.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeParseArguments.cmake;C:\.conan\oqf7uzoi\1\FindBoost.cmake;C:\Users\thoma\Documents\repos\conan-boost\test_package\CMakeLists.txt;%(AdditionalInputs) + C:\Users\thoma\Documents\repos\conan-boost\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\generate.stamp + Building Custom Rule C:/Users/thoma/Documents/repos/conan-boost/test_package/CMakeLists.txt + setlocal +"C:\Program Files\CMake\bin\cmake.exe" -HC:/Users/thoma/Documents/repos/conan-boost/test_package -BC:/Users/thoma/Documents/repos/conan-boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd --check-stamp-file C:/Users/thoma/Documents/repos/conan-boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/generate.stamp +if %errorlevel% neq 0 goto :cmEnd +:cmEnd +endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone +:cmErrorLevel +exit /b %1 +:cmDone +if %errorlevel% neq 0 goto :VCEnd + C:/Users/thoma/Documents/repos/conan-boost/test_package/CMakeLists.txt;C:\Users\thoma\Documents\repos\conan-boost\test_package\CMakeLists.txt;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineSystem.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeSystem.cmake.in;C:\Users\thoma\Documents\repos\conan-boost\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\3.10.1\CMakeSystem.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeSystemSpecificInitialize.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCXXCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\Windows-Determine-CXX.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCompilerId.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCompilerIdDetection.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\ADSP-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\ARMCC-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\AppleClang-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Clang-DetermineCompilerInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Borland-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Clang-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Clang-DetermineCompilerInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Comeau-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Compaq-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Cray-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Embarcadero-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Fujitsu-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\GHS-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\GNU-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\HP-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\IAR-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Intel-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\MIPSpro-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\MSVC-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\NVIDIA-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\OpenWatcom-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\PGI-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\PathScale-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\SCO-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\SunPro-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\TI-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\VisualAge-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\IBMCPP-CXX-DetermineVersionInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Watcom-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\XL-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\IBMCPP-CXX-DetermineVersionInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\zOS-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\IBMCPP-CXX-DetermineVersionInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CompilerId\VS-10.vcxproj.in;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeFindBinUtils.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCXXCompiler.cmake.in;C:\Users\thoma\Documents\repos\conan-boost\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\3.10.1\CMakeCXXCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeSystemSpecificInformation.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeGenericSystem.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\Windows.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\WindowsPaths.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCXXInformation.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeLanguageInformation.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\MSVC-CXX.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\CMakeCommonCompilerMacros.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\Windows-MSVC-CXX.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\Windows-MSVC.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineRCCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeRCCompiler.cmake.in;C:\Users\thoma\Documents\repos\conan-boost\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\3.10.1\CMakeRCCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeRCInformation.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeTestRCCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCommonLanguageInclude.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeTestCXXCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeTestCompilerCommon.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCompilerABI.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeParseImplicitLinkInfo.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCXXCompilerABI.cpp;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCompileFeatures.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Internal\FeatureTesting.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\MSVC-CXX-FeatureTests.cmake;C:\Users\thoma\Documents\repos\conan-boost\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\feature_tests.cxx;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCXXCompiler.cmake.in;C:\Users\thoma\Documents\repos\conan-boost\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\3.10.1\CMakeCXXCompiler.cmake;C:\Users\thoma\Documents\repos\conan-boost\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\conanbuildinfo.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeParseArguments.cmake;C:\.conan\oqf7uzoi\1\FindBoost.cmake;C:\Users\thoma\Documents\repos\conan-boost\test_package\CMakeLists.txt;%(AdditionalInputs) + C:\Users\thoma\Documents\repos\conan-boost\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\generate.stamp + Building Custom Rule C:/Users/thoma/Documents/repos/conan-boost/test_package/CMakeLists.txt + setlocal +"C:\Program Files\CMake\bin\cmake.exe" -HC:/Users/thoma/Documents/repos/conan-boost/test_package -BC:/Users/thoma/Documents/repos/conan-boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd --check-stamp-file C:/Users/thoma/Documents/repos/conan-boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/generate.stamp +if %errorlevel% neq 0 goto :cmEnd +:cmEnd +endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone +:cmErrorLevel +exit /b %1 +:cmDone +if %errorlevel% neq 0 goto :VCEnd + C:/Users/thoma/Documents/repos/conan-boost/test_package/CMakeLists.txt;C:\Users\thoma\Documents\repos\conan-boost\test_package\CMakeLists.txt;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineSystem.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeSystem.cmake.in;C:\Users\thoma\Documents\repos\conan-boost\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\3.10.1\CMakeSystem.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeSystemSpecificInitialize.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCXXCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\Windows-Determine-CXX.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCompilerId.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCompilerIdDetection.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\ADSP-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\ARMCC-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\AppleClang-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Clang-DetermineCompilerInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Borland-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Clang-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Clang-DetermineCompilerInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Comeau-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Compaq-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Cray-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Embarcadero-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Fujitsu-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\GHS-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\GNU-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\HP-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\IAR-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Intel-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\MIPSpro-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\MSVC-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\NVIDIA-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\OpenWatcom-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\PGI-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\PathScale-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\SCO-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\SunPro-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\TI-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\VisualAge-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\IBMCPP-CXX-DetermineVersionInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Watcom-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\XL-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\IBMCPP-CXX-DetermineVersionInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\zOS-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\IBMCPP-CXX-DetermineVersionInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CompilerId\VS-10.vcxproj.in;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeFindBinUtils.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCXXCompiler.cmake.in;C:\Users\thoma\Documents\repos\conan-boost\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\3.10.1\CMakeCXXCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeSystemSpecificInformation.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeGenericSystem.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\Windows.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\WindowsPaths.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCXXInformation.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeLanguageInformation.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\MSVC-CXX.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\CMakeCommonCompilerMacros.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\Windows-MSVC-CXX.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\Windows-MSVC.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineRCCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeRCCompiler.cmake.in;C:\Users\thoma\Documents\repos\conan-boost\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\3.10.1\CMakeRCCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeRCInformation.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeTestRCCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCommonLanguageInclude.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeTestCXXCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeTestCompilerCommon.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCompilerABI.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeParseImplicitLinkInfo.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCXXCompilerABI.cpp;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCompileFeatures.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Internal\FeatureTesting.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\MSVC-CXX-FeatureTests.cmake;C:\Users\thoma\Documents\repos\conan-boost\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\feature_tests.cxx;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCXXCompiler.cmake.in;C:\Users\thoma\Documents\repos\conan-boost\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\3.10.1\CMakeCXXCompiler.cmake;C:\Users\thoma\Documents\repos\conan-boost\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\conanbuildinfo.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeParseArguments.cmake;C:\.conan\oqf7uzoi\1\FindBoost.cmake;C:\Users\thoma\Documents\repos\conan-boost\test_package\CMakeLists.txt;%(AdditionalInputs) + C:\Users\thoma\Documents\repos\conan-boost\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\generate.stamp + + + + + + + {E3821C68-24D8-3914-BBE5-11F0AC651B82} + ZERO_CHECK + + + {A9BB12A1-994E-3D78-A03C-406D1B02115E} + example + + + + + + \ No newline at end of file diff --git a/boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/ALL_BUILD.vcxproj.filters b/boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/ALL_BUILD.vcxproj.filters new file mode 100644 index 0000000..f32149c --- /dev/null +++ b/boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/ALL_BUILD.vcxproj.filters @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeCache.txt b/boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeCache.txt new file mode 100644 index 0000000..dc71fee --- /dev/null +++ b/boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeCache.txt @@ -0,0 +1,291 @@ +# This is the CMakeCache file. +# For build in directory: c:/Users/thoma/Documents/repos/conan-boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd +# It was generated by CMake: C:/Program Files/CMake/bin/cmake.exe +# 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 +######################## + +//The directory containing a CMake configuration file for Boost. +Boost_DIR:PATH=Boost_DIR-NOTFOUND + +//Semicolon separated list of supported configuration types, only +// supports Debug, Release, MinSizeRel, and RelWithDebInfo, anything +// else will be ignored. +CMAKE_CONFIGURATION_TYPES:STRING=Debug;Release;MinSizeRel;RelWithDebInfo + +//Flags used by the compiler during all build types. +CMAKE_CXX_FLAGS:STRING=/DWIN32 /D_WINDOWS /W3 /GR /EHsc + +//Flags used by the compiler during debug builds. +CMAKE_CXX_FLAGS_DEBUG:STRING=/MDd /Zi /Ob0 /Od /RTC1 + +//Flags used by the compiler during release builds for minimum +// size. +CMAKE_CXX_FLAGS_MINSIZEREL:STRING=/MD /O1 /Ob1 /DNDEBUG + +//Flags used by the compiler during release builds. +CMAKE_CXX_FLAGS_RELEASE:STRING=/MD /O2 /Ob2 /DNDEBUG + +//Flags used by the compiler during release builds with debug info. +CMAKE_CXX_FLAGS_RELWITHDEBINFO:STRING=/MD /Zi /O2 /Ob1 /DNDEBUG + +//Libraries linked by default with all C++ applications. +CMAKE_CXX_STANDARD_LIBRARIES:STRING=kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib + +//Flags used by the linker. +CMAKE_EXE_LINKER_FLAGS:STRING=/machine:x64 + +//Flags used by the linker during debug builds. +CMAKE_EXE_LINKER_FLAGS_DEBUG:STRING=/debug /INCREMENTAL + +//Flags used by the linker during release minsize builds. +CMAKE_EXE_LINKER_FLAGS_MINSIZEREL:STRING=/INCREMENTAL:NO + +//Flags used by the linker during release builds. +CMAKE_EXE_LINKER_FLAGS_RELEASE:STRING=/INCREMENTAL:NO + +//Flags used by the linker during Release with Debug Info builds. +CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO:STRING=/debug /INCREMENTAL + +//Install path prefix, prepended onto install directories. +CMAKE_INSTALL_PREFIX:PATH=C:/Program Files/PackageTest + +//Path to a program. +CMAKE_LINKER:FILEPATH=C:/Program Files (x86)/Microsoft Visual Studio 10.0/VC/bin/x86_amd64/link.exe + +//Flags used by the linker during the creation of modules. +CMAKE_MODULE_LINKER_FLAGS:STRING=/machine:x64 + +//Flags used by the linker during debug builds. +CMAKE_MODULE_LINKER_FLAGS_DEBUG:STRING=/debug /INCREMENTAL + +//Flags used by the linker during release minsize builds. +CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL:STRING=/INCREMENTAL:NO + +//Flags used by the linker during release builds. +CMAKE_MODULE_LINKER_FLAGS_RELEASE:STRING=/INCREMENTAL:NO + +//Flags used by the linker during Release with Debug Info builds. +CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO:STRING=/debug /INCREMENTAL + +//Value Computed by CMake +CMAKE_PROJECT_NAME:STATIC=PackageTest + +//RC compiler +CMAKE_RC_COMPILER:FILEPATH=rc + +//Flags for Windows Resource Compiler. +CMAKE_RC_FLAGS:STRING=/DWIN32 + +//Flags for Windows Resource Compiler during debug builds. +CMAKE_RC_FLAGS_DEBUG:STRING=/D_DEBUG + +//Flags for Windows Resource Compiler during release builds for +// minimum size. +CMAKE_RC_FLAGS_MINSIZEREL:STRING= + +//Flags for Windows Resource Compiler during release builds. +CMAKE_RC_FLAGS_RELEASE:STRING= + +//Flags for Windows Resource Compiler during release builds with +// debug info. +CMAKE_RC_FLAGS_RELWITHDEBINFO:STRING= + +//Flags used by the linker during the creation of dll's. +CMAKE_SHARED_LINKER_FLAGS:STRING=/machine:x64 + +//Flags used by the linker during debug builds. +CMAKE_SHARED_LINKER_FLAGS_DEBUG:STRING=/debug /INCREMENTAL + +//Flags used by the linker during release minsize builds. +CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL:STRING=/INCREMENTAL:NO + +//Flags used by the linker during release builds. +CMAKE_SHARED_LINKER_FLAGS_RELEASE:STRING=/INCREMENTAL:NO + +//Flags used by the linker during Release with Debug Info builds. +CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO:STRING=/debug /INCREMENTAL + +//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. +CMAKE_STATIC_LINKER_FLAGS:STRING=/machine:x64 + +//Flags used by the linker during debug builds. +CMAKE_STATIC_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during release minsize builds. +CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during release builds. +CMAKE_STATIC_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during Release with Debug Info builds. +CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//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 + +//No help, variable specified on the command line. +CONAN_COMPILER:UNINITIALIZED=Visual Studio + +//No help, variable specified on the command line. +CONAN_COMPILER_VERSION:UNINITIALIZED=10 + +//No help, variable specified on the command line. +CONAN_CXX_FLAGS:UNINITIALIZED=/MP8 + +//No help, variable specified on the command line. +CONAN_C_FLAGS:UNINITIALIZED=/MP8 + +//No help, variable specified on the command line. +CONAN_EXPORTED:UNINITIALIZED=1 + +//No help, variable specified on the command line. +CONAN_LINK_RUNTIME:UNINITIALIZED=/MD + +//Value Computed by CMake +PackageTest_BINARY_DIR:STATIC=C:/Users/thoma/Documents/repos/conan-boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd + +//Value Computed by CMake +PackageTest_SOURCE_DIR:STATIC=C:/Users/thoma/Documents/repos/conan-boost/test_package + + +######################## +# INTERNAL cache entries +######################## + +//This is the directory where this CMakeCache.txt was created +CMAKE_CACHEFILE_DIR:INTERNAL=c:/Users/thoma/Documents/repos/conan-boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd +//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=10 +//Patch version of cmake used to create the current loaded cache +CMAKE_CACHE_PATCH_VERSION:INTERNAL=1 +//Path to CMake executable. +CMAKE_COMMAND:INTERNAL=C:/Program Files/CMake/bin/cmake.exe +//Path to cpack program executable. +CMAKE_CPACK_COMMAND:INTERNAL=C:/Program Files/CMake/bin/cpack.exe +//Path to ctest program executable. +CMAKE_CTEST_COMMAND:INTERNAL=C:/Program Files/CMake/bin/ctest.exe +//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_CXX_STANDARD_LIBRARIES +CMAKE_CXX_STANDARD_LIBRARIES-ADVANCED:INTERNAL=1 +//Whether to issue deprecation errors for macros and functions. +CMAKE_ERROR_DEPRECATED:INTERNAL=FALSE +//Executable file format +CMAKE_EXECUTABLE_FORMAT:INTERNAL=Unknown +//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 +//Name of external makefile project generator. +CMAKE_EXTRA_GENERATOR:INTERNAL= +//Name of generator. +CMAKE_GENERATOR:INTERNAL=Visual Studio 10 2010 Win64 +//Name of generator platform. +CMAKE_GENERATOR_PLATFORM:INTERNAL= +//Name of generator toolset. +CMAKE_GENERATOR_TOOLSET:INTERNAL= +//Source directory with the top level CMakeLists.txt file for this +// project +CMAKE_HOME_DIRECTORY:INTERNAL=C:/Users/thoma/Documents/repos/conan-boost/test_package +//ADVANCED property for variable: CMAKE_LINKER +CMAKE_LINKER-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 +//number of local generators +CMAKE_NUMBER_OF_MAKEFILES:INTERNAL=1 +//Platform information initialized +CMAKE_PLATFORM_INFO_INITIALIZED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_RC_COMPILER +CMAKE_RC_COMPILER-ADVANCED:INTERNAL=1 +CMAKE_RC_COMPILER_WORKS:INTERNAL=1 +//ADVANCED property for variable: CMAKE_RC_FLAGS +CMAKE_RC_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_RC_FLAGS_DEBUG +CMAKE_RC_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_RC_FLAGS_MINSIZEREL +CMAKE_RC_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_RC_FLAGS_RELEASE +CMAKE_RC_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_RC_FLAGS_RELWITHDEBINFO +CMAKE_RC_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//Path to CMake installation. +CMAKE_ROOT:INTERNAL=C:/Program Files/CMake/share/cmake-3.10 +//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 +//Suppress errors that are meant for the author of the CMakeLists.txt +// files. +CMAKE_SUPPRESS_DEVELOPER_ERRORS:INTERNAL=TRUE +//Suppress Warnings that are meant for the author of the CMakeLists.txt +// files. +CMAKE_SUPPRESS_DEVELOPER_WARNINGS:INTERNAL=TRUE +//ADVANCED property for variable: CMAKE_VERBOSE_MAKEFILE +CMAKE_VERBOSE_MAKEFILE-ADVANCED:INTERNAL=1 +//Whether to issue warnings for deprecated functionality. +CMAKE_WARN_DEPRECATED:INTERNAL=FALSE + diff --git a/boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.1/CMakeCXXCompiler.cmake b/boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.1/CMakeCXXCompiler.cmake new file mode 100644 index 0000000..1d85b7f --- /dev/null +++ b/boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.1/CMakeCXXCompiler.cmake @@ -0,0 +1,75 @@ +set(CMAKE_CXX_COMPILER "c:/Program Files (x86)/Microsoft Visual Studio 10.0/VC/bin/x86_amd64/cl.exe") +set(CMAKE_CXX_COMPILER_ARG1 "") +set(CMAKE_CXX_COMPILER_ID "MSVC") +set(CMAKE_CXX_COMPILER_VERSION "16.0.40219.1") +set(CMAKE_CXX_COMPILER_VERSION_INTERNAL "") +set(CMAKE_CXX_COMPILER_WRAPPER "") +set(CMAKE_CXX_STANDARD_COMPUTED_DEFAULT "98") +set(CMAKE_CXX_COMPILE_FEATURES "cxx_std_98;cxx_std_11;cxx_std_14;cxx_std_17;cxx_auto_type;cxx_decltype;cxx_extended_friend_declarations;cxx_extern_templates;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_nullptr;cxx_override;cxx_right_angle_brackets;cxx_rvalue_references;cxx_static_assert;cxx_template_template_parameters;cxx_trailing_return_types;cxx_variadic_macros") +set(CMAKE_CXX98_COMPILE_FEATURES "") +set(CMAKE_CXX11_COMPILE_FEATURES "") +set(CMAKE_CXX14_COMPILE_FEATURES "") +set(CMAKE_CXX17_COMPILE_FEATURES "") + +set(CMAKE_CXX_PLATFORM_ID "Windows") +set(CMAKE_CXX_SIMULATE_ID "") +set(CMAKE_CXX_SIMULATE_VERSION "") +set(CMAKE_CXX_COMPILER_ARCHITECTURE_ID x64) +set(MSVC_CXX_ARCHITECTURE_ID x64) + +set(CMAKE_AR "") +set(CMAKE_CXX_COMPILER_AR "") +set(CMAKE_RANLIB "") +set(CMAKE_CXX_COMPILER_RANLIB "") +set(CMAKE_LINKER "C:/Program Files (x86)/Microsoft Visual Studio 10.0/VC/bin/x86_amd64/link.exe") +set(CMAKE_COMPILER_IS_GNUCXX ) +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_IGNORE_EXTENSIONS inl;h;hpp;HPP;H;o;O;obj;OBJ;def;DEF;rc;RC) +set(CMAKE_CXX_SOURCE_FILE_EXTENSIONS C;M;c++;cc;cpp;cxx;mm;CPP) +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 "") +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_LINK_LIBRARIES "") +set(CMAKE_CXX_IMPLICIT_LINK_DIRECTORIES "") +set(CMAKE_CXX_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "") diff --git a/boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.1/CMakeDetermineCompilerABI_CXX.bin b/boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.1/CMakeDetermineCompilerABI_CXX.bin new file mode 100644 index 0000000..ddc0406 Binary files /dev/null and b/boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.1/CMakeDetermineCompilerABI_CXX.bin differ diff --git a/boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.1/CMakeRCCompiler.cmake b/boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.1/CMakeRCCompiler.cmake new file mode 100644 index 0000000..0f61961 --- /dev/null +++ b/boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.1/CMakeRCCompiler.cmake @@ -0,0 +1,6 @@ +set(CMAKE_RC_COMPILER "rc") +set(CMAKE_RC_COMPILER_ARG1 "") +set(CMAKE_RC_COMPILER_LOADED 1) +set(CMAKE_RC_SOURCE_FILE_EXTENSIONS rc;RC) +set(CMAKE_RC_OUTPUT_EXTENSION .res) +set(CMAKE_RC_COMPILER_ENV_VAR "RC") diff --git a/boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.1/CMakeSystem.cmake b/boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.1/CMakeSystem.cmake new file mode 100644 index 0000000..f4a560d --- /dev/null +++ b/boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.1/CMakeSystem.cmake @@ -0,0 +1,15 @@ +set(CMAKE_HOST_SYSTEM "Windows-10.0.16299") +set(CMAKE_HOST_SYSTEM_NAME "Windows") +set(CMAKE_HOST_SYSTEM_VERSION "10.0.16299") +set(CMAKE_HOST_SYSTEM_PROCESSOR "AMD64") + + + +set(CMAKE_SYSTEM "Windows-10.0.16299") +set(CMAKE_SYSTEM_NAME "Windows") +set(CMAKE_SYSTEM_VERSION "10.0.16299") +set(CMAKE_SYSTEM_PROCESSOR "AMD64") + +set(CMAKE_CROSSCOMPILING "FALSE") + +set(CMAKE_SYSTEM_LOADED 1) diff --git a/boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.1/CompilerIdCXX/CMakeCXXCompilerId.cpp b/boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.1/CompilerIdCXX/CMakeCXXCompilerId.cpp new file mode 100644 index 0000000..2d66298 --- /dev/null +++ b/boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.1/CompilerIdCXX/CMakeCXXCompilerId.cpp @@ -0,0 +1,576 @@ +/* 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 + /* __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 + +#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(__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(__SCO_VERSION__) +# define COMPILER_ID "SCO" + +#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__) +# 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__) +# 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__) +# endif + +#elif defined(__ARMCC_VERSION) +# 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(_SGI_COMPILER_VERSION) || defined(_COMPILER_VERSION) +# define COMPILER_ID "MIPSpro" +# if defined(_SGI_COMPILER_VERSION) + /* _SGI_COMPILER_VERSION = VRP */ +# define COMPILER_VERSION_MAJOR DEC(_SGI_COMPILER_VERSION/100) +# define COMPILER_VERSION_MINOR DEC(_SGI_COMPILER_VERSION/10 % 10) +# define COMPILER_VERSION_PATCH DEC(_SGI_COMPILER_VERSION % 10) +# else + /* _COMPILER_VERSION = VRP */ +# define COMPILER_VERSION_MAJOR DEC(_COMPILER_VERSION/100) +# define COMPILER_VERSION_MINOR DEC(_COMPILER_VERSION/10 % 10) +# define COMPILER_VERSION_PATCH DEC(_COMPILER_VERSION % 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(__sgi) +# define COMPILER_ID "MIPSpro" + +#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(__sgi) || defined(__sgi__) || defined(_SGI) +# define PLATFORM_ID "IRIX" + +#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 + +#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(__ICCAVR__) +# define ARCHITECTURE_ID "AVR" + +# 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(_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 > 201402L + "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; +} diff --git a/boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.1/CompilerIdCXX/CompilerIdCXX.exe b/boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.1/CompilerIdCXX/CompilerIdCXX.exe new file mode 100644 index 0000000..58da7bf Binary files /dev/null and b/boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.1/CompilerIdCXX/CompilerIdCXX.exe differ diff --git a/boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.1/CompilerIdCXX/CompilerIdCXX.vcxproj b/boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.1/CompilerIdCXX/CompilerIdCXX.vcxproj new file mode 100644 index 0000000..810d410 --- /dev/null +++ b/boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.1/CompilerIdCXX/CompilerIdCXX.vcxproj @@ -0,0 +1,67 @@ + + + + + Debug + x64 + + + + {CAE07175-D007-4FC3-BFE8-47B392814159} + CompilerIdCXX + Win32Proj + + + + + + + + + + + Application + Windows7.1SDK + MultiByte + + + + + + + <_ProjectFileVersion>10.0.30319.1 + .\ + $(Configuration)\ + false + + + + Disabled + %(PreprocessorDefinitions) + false + EnableFastChecks + MultiThreadedDebugDLL + + + TurnOffAllWarnings + + + + + + false + Console + + + + for %%i in (cl.exe) do %40echo CMAKE_CXX_COMPILER=%%~$PATH:i + + + + + + + + + + diff --git a/boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.1/CompilerIdCXX/Debug/CL.read.1.tlog b/boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.1/CompilerIdCXX/Debug/CL.read.1.tlog new file mode 100644 index 0000000..26f8d1b Binary files /dev/null and b/boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.1/CompilerIdCXX/Debug/CL.read.1.tlog differ diff --git a/boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.1/CompilerIdCXX/Debug/CL.write.1.tlog b/boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.1/CompilerIdCXX/Debug/CL.write.1.tlog new file mode 100644 index 0000000..7ba9efc Binary files /dev/null and b/boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.1/CompilerIdCXX/Debug/CL.write.1.tlog differ diff --git a/boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.1/CompilerIdCXX/Debug/CMakeCXXCompilerId.obj b/boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.1/CompilerIdCXX/Debug/CMakeCXXCompilerId.obj new file mode 100644 index 0000000..04497e5 Binary files /dev/null and b/boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.1/CompilerIdCXX/Debug/CMakeCXXCompilerId.obj differ diff --git a/boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.1/CompilerIdCXX/Debug/CompilerIdCXX.exe.intermediate.manifest b/boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.1/CompilerIdCXX/Debug/CompilerIdCXX.exe.intermediate.manifest new file mode 100644 index 0000000..ecea6f7 --- /dev/null +++ b/boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.1/CompilerIdCXX/Debug/CompilerIdCXX.exe.intermediate.manifest @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.1/CompilerIdCXX/Debug/CompilerIdCXX.lastbuildstate b/boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.1/CompilerIdCXX/Debug/CompilerIdCXX.lastbuildstate new file mode 100644 index 0000000..97e7ac0 --- /dev/null +++ b/boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.1/CompilerIdCXX/Debug/CompilerIdCXX.lastbuildstate @@ -0,0 +1,2 @@ +#v4.0:Windows7.1SDK:false +Debug|x64|C:\Users\thoma\Documents\repos\conan-boost\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\3.10.1\CompilerIdCXX\| diff --git a/boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.1/CompilerIdCXX/Debug/CompilerIdCXX.vcxprojResolveAssemblyReference.cache b/boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.1/CompilerIdCXX/Debug/CompilerIdCXX.vcxprojResolveAssemblyReference.cache new file mode 100644 index 0000000..f5be7cf Binary files /dev/null and b/boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.1/CompilerIdCXX/Debug/CompilerIdCXX.vcxprojResolveAssemblyReference.cache differ diff --git a/boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.1/CompilerIdCXX/Debug/CompilerIdCXX.write.1.tlog b/boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.1/CompilerIdCXX/Debug/CompilerIdCXX.write.1.tlog new file mode 100644 index 0000000..e69de29 diff --git a/boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.1/CompilerIdCXX/Debug/cl.command.1.tlog b/boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.1/CompilerIdCXX/Debug/cl.command.1.tlog new file mode 100644 index 0000000..69d9a06 Binary files /dev/null and b/boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.1/CompilerIdCXX/Debug/cl.command.1.tlog differ diff --git a/boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.1/CompilerIdCXX/Debug/link.command.1.tlog b/boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.1/CompilerIdCXX/Debug/link.command.1.tlog new file mode 100644 index 0000000..95250ab Binary files /dev/null and b/boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.1/CompilerIdCXX/Debug/link.command.1.tlog differ diff --git a/boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.1/CompilerIdCXX/Debug/link.read.1.tlog b/boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.1/CompilerIdCXX/Debug/link.read.1.tlog new file mode 100644 index 0000000..4dc4323 Binary files /dev/null and b/boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.1/CompilerIdCXX/Debug/link.read.1.tlog differ diff --git a/boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.1/CompilerIdCXX/Debug/link.write.1.tlog b/boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.1/CompilerIdCXX/Debug/link.write.1.tlog new file mode 100644 index 0000000..a8d7805 Binary files /dev/null and b/boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.1/CompilerIdCXX/Debug/link.write.1.tlog differ diff --git a/boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.1/CompilerIdCXX/Debug/mt.command.1.tlog b/boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.1/CompilerIdCXX/Debug/mt.command.1.tlog new file mode 100644 index 0000000..63ddf7f Binary files /dev/null and b/boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.1/CompilerIdCXX/Debug/mt.command.1.tlog differ diff --git a/boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.1/CompilerIdCXX/Debug/mt.read.1.tlog b/boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.1/CompilerIdCXX/Debug/mt.read.1.tlog new file mode 100644 index 0000000..8c898cc Binary files /dev/null and b/boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.1/CompilerIdCXX/Debug/mt.read.1.tlog differ diff --git a/boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.1/CompilerIdCXX/Debug/mt.write.1.tlog b/boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.1/CompilerIdCXX/Debug/mt.write.1.tlog new file mode 100644 index 0000000..4bdbf67 Binary files /dev/null and b/boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.1/CompilerIdCXX/Debug/mt.write.1.tlog differ diff --git a/boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.1/VCTargetsPath.txt b/boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.1/VCTargetsPath.txt new file mode 100644 index 0000000..0c6ffe6 --- /dev/null +++ b/boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.1/VCTargetsPath.txt @@ -0,0 +1 @@ +C:/Program Files (x86)/MSBuild/Microsoft.Cpp/v4.0 diff --git a/boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.1/VCTargetsPath.vcxproj b/boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.1/VCTargetsPath.vcxproj new file mode 100644 index 0000000..6f7cb7b --- /dev/null +++ b/boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.1/VCTargetsPath.vcxproj @@ -0,0 +1,27 @@ + + + + + Debug + x64 + + + + {F3FC6D86-508D-3FB1-96D2-995F08B142EC} + Win32Proj + x64 + + + + Utility + MultiByte + Windows7.1SDK + + + + + echo VCTargetsPath=$(VCTargetsPath) + + + + diff --git a/boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.1/x64/Debug/VCTargetsPath.lastbuildstate b/boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.1/x64/Debug/VCTargetsPath.lastbuildstate new file mode 100644 index 0000000..ec5b168 --- /dev/null +++ b/boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.1/x64/Debug/VCTargetsPath.lastbuildstate @@ -0,0 +1,2 @@ +#v4.0:Windows7.1SDK:false +Debug|x64|C:\Users\thoma\Documents\repos\conan-boost\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\3.10.1\| diff --git a/boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.1/x64/Debug/VCTargetsPath.vcxprojResolveAssemblyReference.cache b/boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.1/x64/Debug/VCTargetsPath.vcxprojResolveAssemblyReference.cache new file mode 100644 index 0000000..f5be7cf Binary files /dev/null and b/boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.1/x64/Debug/VCTargetsPath.vcxprojResolveAssemblyReference.cache differ diff --git a/boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3801bbff68c590f24f44c75865690a36/generate.stamp.rule b/boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3801bbff68c590f24f44c75865690a36/generate.stamp.rule new file mode 100644 index 0000000..2d3998c --- /dev/null +++ b/boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3801bbff68c590f24f44c75865690a36/generate.stamp.rule @@ -0,0 +1 @@ +# generated from CMake diff --git a/boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/CMakeOutput.log b/boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/CMakeOutput.log new file mode 100644 index 0000000..34442ba --- /dev/null +++ b/boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/CMakeOutput.log @@ -0,0 +1,249 @@ +The system is: Windows - 10.0.16299 - AMD64 +Compiling the CXX compiler identification source file "CMakeCXXCompilerId.cpp" succeeded. +Compiler: +Build flags: +Id flags: + +The output was: +0 +Microsoft (R)-Buildmodul, Version 4.7.2556.0 +[Microsoft .NET Framework, Version 4.0.30319.42000] +Copyright (C) Microsoft Corporation. Alle Rechte vorbehalten. + +Der Buildvorgang wurde am 28.01.2018 14:53:51 gestartet. +Projekt "C:\Users\thoma\Documents\repos\conan-boost\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\3.10.1\CompilerIdCXX\CompilerIdCXX.vcxproj" auf Knoten "1" (Standardziele). +PrepareForBuild: + Das Verzeichnis "Debug\" wird erstellt. +InitializeBuildStatus: + "Debug\CompilerIdCXX.unsuccessfulbuild" wird erstellt, da "AlwaysCreate" angegeben wurde. +ClCompile: + c:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\bin\x86_amd64\CL.exe /c /nologo /W0 /WX- /Od /D _MBCS /Gm- /EHsc /RTC1 /MDd /GS /fp:precise /Zc:wchar_t /Zc:forScope /Fo"Debug\\" /Fd"Debug\vcWindows7.1SDK.pdb" /Gd /TP /errorReport:queue CMakeCXXCompilerId.cpp + CMakeCXXCompilerId.cpp +Link: + c:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\bin\x86_amd64\link.exe /ERRORREPORT:QUEUE /OUT:".\CompilerIdCXX.exe" /INCREMENTAL:NO /NOLOGO kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /MANIFEST /ManifestFile:"Debug\CompilerIdCXX.exe.intermediate.manifest" /MANIFESTUAC:"level='asInvoker' uiAccess='false'" /PDB:"C:\Users\thoma\Documents\repos\conan-boost\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\3.10.1\CompilerIdCXX\CompilerIdCXX.pdb" /SUBSYSTEM:CONSOLE /TLBID:1 /DYNAMICBASE /NXCOMPAT /IMPLIB:".\CompilerIdCXX.lib" /MACHINE:X64 Debug\CMakeCXXCompilerId.obj + CompilerIdCXX.vcxproj -> C:\Users\thoma\Documents\repos\conan-boost\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\3.10.1\CompilerIdCXX\.\CompilerIdCXX.exe +Manifest: + C:\Program Files\Microsoft SDKs\Windows\v7.1\bin\mt.exe /nologo /verbose /outputresource:".\CompilerIdCXX.exe;#1" /manifest Debug\CompilerIdCXX.exe.intermediate.manifest +PostBuildEvent: + for %%i in (cl.exe) do @echo CMAKE_CXX_COMPILER=%%~$PATH:i + :VCEnd + CMAKE_CXX_COMPILER=c:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\bin\x86_amd64\cl.exe +FinalizeBuildStatus: + Die Datei "Debug\CompilerIdCXX.unsuccessfulbuild" wird gelscht. + Aktualisieren des Timestamps von "Debug\CompilerIdCXX.lastbuildstate". +Die Erstellung von Projekt "C:\Users\thoma\Documents\repos\conan-boost\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\3.10.1\CompilerIdCXX\CompilerIdCXX.vcxproj" ist abgeschlossen (Standardziele). + +Der Buildvorgang wurde erfolgreich ausgefhrt. + 0 Warnung(en) + 0 Fehler + +Verstrichene Zeit 00:00:01.16 + + +Compilation of the CXX compiler identification source "CMakeCXXCompilerId.cpp" produced "CompilerIdCXX.exe" + +Compilation of the CXX compiler identification source "CMakeCXXCompilerId.cpp" produced "CompilerIdCXX.vcxproj" + +The CXX compiler identification is MSVC, found in "C:/Users/thoma/Documents/repos/conan-boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.1/CompilerIdCXX/CompilerIdCXX.exe" + +Determining if the CXX compiler works passed with the following output: +Change Dir: C:/Users/thoma/Documents/repos/conan-boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/CMakeTmp + +Run Build Command:"C:/Windows/Microsoft.NET/Framework/v4.0.30319/MSBuild.exe" "cmTC_6d15f.vcxproj" "/p:Configuration=Debug" "/p:VisualStudioVersion=10.0" +Microsoft (R)-Buildmodul, Version 4.7.2556.0 +[Microsoft .NET Framework, Version 4.0.30319.42000] +Copyright (C) Microsoft Corporation. Alle Rechte vorbehalten. + +Der Buildvorgang wurde am 28.01.2018 14:53:53 gestartet. +Projekt "C:\Users\thoma\Documents\repos\conan-boost\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\CMakeTmp\cmTC_6d15f.vcxproj" auf Knoten "1" (Standardziele). +PrepareForBuild: + Das Verzeichnis "cmTC_6d15f.dir\Debug\" wird erstellt. + Das Verzeichnis "C:\Users\thoma\Documents\repos\conan-boost\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\CMakeTmp\Debug\" wird erstellt. +InitializeBuildStatus: + "cmTC_6d15f.dir\Debug\cmTC_6d15f.unsuccessfulbuild" wird erstellt, da "AlwaysCreate" angegeben wurde. +ClCompile: + c:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\bin\x86_amd64\CL.exe /c /Zi /W3 /WX- /Od /Ob0 /D WIN32 /D _WINDOWS /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /EHsc /RTC1 /MDd /GS /fp:precise /Zc:wchar_t /Zc:forScope /GR /Fo"cmTC_6d15f.dir\Debug\\" /Fd"cmTC_6d15f.dir\Debug\vcWindows7.1SDK.pdb" /Gd /TP /errorReport:queue testCXXCompiler.cxx + Microsoft (R) C/C++ Optimizing Compiler Version 16.00.40219.01 for x64 + Copyright (C) Microsoft Corporation. All rights reserved. + + cl /c /Zi /W3 /WX- /Od /Ob0 /D WIN32 /D _WINDOWS /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /EHsc /RTC1 /MDd /GS /fp:precise /Zc:wchar_t /Zc:forScope /GR /Fo"cmTC_6d15f.dir\Debug\\" /Fd"cmTC_6d15f.dir\Debug\vcWindows7.1SDK.pdb" /Gd /TP /errorReport:queue testCXXCompiler.cxx + + testCXXCompiler.cxx +ManifestResourceCompile: + C:\Program Files\Microsoft SDKs\Windows\v7.1\bin\rc.exe /nologo /fo"cmTC_6d15f.dir\Debug\cmTC_6d15f.exe.embed.manifest.res" cmTC_6d15f.dir\Debug\cmTC_6d15f_manifest.rc +Link: + c:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\bin\x86_amd64\link.exe /ERRORREPORT:QUEUE /OUT:"C:\Users\thoma\Documents\repos\conan-boost\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\CMakeTmp\Debug\cmTC_6d15f.exe" /INCREMENTAL /NOLOGO kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib /MANIFEST /ManifestFile:"cmTC_6d15f.dir\Debug\cmTC_6d15f.exe.intermediate.manifest" /MANIFESTUAC:"level='asInvoker' uiAccess='false'" /DEBUG /PDB:"C:/Users/thoma/Documents/repos/conan-boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/CMakeTmp/Debug/cmTC_6d15f.pdb" /SUBSYSTEM:CONSOLE /TLBID:1 /DYNAMICBASE /NXCOMPAT /IMPLIB:"C:/Users/thoma/Documents/repos/conan-boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/CMakeTmp/Debug/cmTC_6d15f.lib" /MACHINE:X64 cmTC_6d15f.dir\Debug\cmTC_6d15f.exe.embed.manifest.res + cmTC_6d15f.dir\Debug\testCXXCompiler.obj /machine:x64 + cmTC_6d15f.vcxproj -> C:\Users\thoma\Documents\repos\conan-boost\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\CMakeTmp\Debug\cmTC_6d15f.exe +Manifest: + C:\Program Files\Microsoft SDKs\Windows\v7.1\bin\mt.exe /nologo /verbose /out:"cmTC_6d15f.dir\Debug\cmTC_6d15f.exe.embed.manifest" /manifest cmTC_6d15f.dir\Debug\cmTC_6d15f.exe.intermediate.manifest + C:\Program Files\Microsoft SDKs\Windows\v7.1\bin\rc.exe /nologo /fo"cmTC_6d15f.dir\Debug\cmTC_6d15f.exe.embed.manifest.res" cmTC_6d15f.dir\Debug\cmTC_6d15f_manifest.rc +LinkEmbedManifest: + c:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\bin\x86_amd64\link.exe /ERRORREPORT:QUEUE /OUT:"C:\Users\thoma\Documents\repos\conan-boost\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\CMakeTmp\Debug\cmTC_6d15f.exe" /INCREMENTAL /NOLOGO kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib /MANIFEST /ManifestFile:"cmTC_6d15f.dir\Debug\cmTC_6d15f.exe.intermediate.manifest" /MANIFESTUAC:"level='asInvoker' uiAccess='false'" /DEBUG /PDB:"C:/Users/thoma/Documents/repos/conan-boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/CMakeTmp/Debug/cmTC_6d15f.pdb" /SUBSYSTEM:CONSOLE /TLBID:1 /DYNAMICBASE /NXCOMPAT /IMPLIB:"C:/Users/thoma/Documents/repos/conan-boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/CMakeTmp/Debug/cmTC_6d15f.lib" /MACHINE:X64 cmTC_6d15f.dir\Debug\cmTC_6d15f.exe.embed.manifest.res + cmTC_6d15f.dir\Debug\testCXXCompiler.obj /machine:x64 + cmTC_6d15f.vcxproj -> C:\Users\thoma\Documents\repos\conan-boost\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\CMakeTmp\Debug\cmTC_6d15f.exe +FinalizeBuildStatus: + Die Datei "cmTC_6d15f.dir\Debug\cmTC_6d15f.unsuccessfulbuild" wird gelöscht. + Aktualisieren des Timestamps von "cmTC_6d15f.dir\Debug\cmTC_6d15f.lastbuildstate". +Die Erstellung von Projekt "C:\Users\thoma\Documents\repos\conan-boost\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\CMakeTmp\cmTC_6d15f.vcxproj" ist abgeschlossen (Standardziele). + +Der Buildvorgang wurde erfolgreich ausgeführt. + 0 Warnung(en) + 0 Fehler + +Verstrichene Zeit 00:00:01.93 + + +Detecting CXX compiler ABI info compiled with the following output: +Change Dir: C:/Users/thoma/Documents/repos/conan-boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/CMakeTmp + +Run Build Command:"C:/Windows/Microsoft.NET/Framework/v4.0.30319/MSBuild.exe" "cmTC_35b6a.vcxproj" "/p:Configuration=Debug" "/p:VisualStudioVersion=10.0" +Microsoft (R)-Buildmodul, Version 4.7.2556.0 +[Microsoft .NET Framework, Version 4.0.30319.42000] +Copyright (C) Microsoft Corporation. Alle Rechte vorbehalten. + +Der Buildvorgang wurde am 28.01.2018 14:53:55 gestartet. +Projekt "C:\Users\thoma\Documents\repos\conan-boost\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\CMakeTmp\cmTC_35b6a.vcxproj" auf Knoten "1" (Standardziele). +PrepareForBuild: + Das Verzeichnis "cmTC_35b6a.dir\Debug\" wird erstellt. + Das Verzeichnis "C:\Users\thoma\Documents\repos\conan-boost\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\CMakeTmp\Debug\" wird erstellt. +InitializeBuildStatus: + "cmTC_35b6a.dir\Debug\cmTC_35b6a.unsuccessfulbuild" wird erstellt, da "AlwaysCreate" angegeben wurde. +ClCompile: + c:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\bin\x86_amd64\CL.exe /c /Zi /W3 /WX- /Od /Ob0 /D WIN32 /D _WINDOWS /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /EHsc /RTC1 /MDd /GS /fp:precise /Zc:wchar_t /Zc:forScope /GR /Fo"cmTC_35b6a.dir\Debug\\" /Fd"cmTC_35b6a.dir\Debug\vcWindows7.1SDK.pdb" /Gd /TP /errorReport:queue "..\..\..\..\..\..\..\..\..\..\Program Files\CMake\share\cmake-3.10\Modules\CMakeCXXCompilerABI.cpp" + Microsoft (R) C/C++ Optimizing Compiler Version 16.00.40219.01 for x64 + Copyright (C) Microsoft Corporation. All rights reserved. + + cl /c /Zi /W3 /WX- /Od /Ob0 /D WIN32 /D _WINDOWS /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /EHsc /RTC1 /MDd /GS /fp:precise /Zc:wchar_t /Zc:forScope /GR /Fo"cmTC_35b6a.dir\Debug\\" /Fd"cmTC_35b6a.dir\Debug\vcWindows7.1SDK.pdb" /Gd /TP /errorReport:queue "..\..\..\..\..\..\..\..\..\..\Program Files\CMake\share\cmake-3.10\Modules\CMakeCXXCompilerABI.cpp" + + CMakeCXXCompilerABI.cpp +ManifestResourceCompile: + C:\Program Files\Microsoft SDKs\Windows\v7.1\bin\rc.exe /nologo /fo"cmTC_35b6a.dir\Debug\cmTC_35b6a.exe.embed.manifest.res" cmTC_35b6a.dir\Debug\cmTC_35b6a_manifest.rc +Link: + c:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\bin\x86_amd64\link.exe /ERRORREPORT:QUEUE /OUT:"C:\Users\thoma\Documents\repos\conan-boost\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\CMakeTmp\Debug\cmTC_35b6a.exe" /INCREMENTAL /NOLOGO kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib /MANIFEST /ManifestFile:"cmTC_35b6a.dir\Debug\cmTC_35b6a.exe.intermediate.manifest" /MANIFESTUAC:"level='asInvoker' uiAccess='false'" /DEBUG /PDB:"C:/Users/thoma/Documents/repos/conan-boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/CMakeTmp/Debug/cmTC_35b6a.pdb" /SUBSYSTEM:CONSOLE /TLBID:1 /DYNAMICBASE /NXCOMPAT /IMPLIB:"C:/Users/thoma/Documents/repos/conan-boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/CMakeTmp/Debug/cmTC_35b6a.lib" /MACHINE:X64 cmTC_35b6a.dir\Debug\cmTC_35b6a.exe.embed.manifest.res + cmTC_35b6a.dir\Debug\CMakeCXXCompilerABI.obj /machine:x64 + cmTC_35b6a.vcxproj -> C:\Users\thoma\Documents\repos\conan-boost\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\CMakeTmp\Debug\cmTC_35b6a.exe +Manifest: + C:\Program Files\Microsoft SDKs\Windows\v7.1\bin\mt.exe /nologo /verbose /out:"cmTC_35b6a.dir\Debug\cmTC_35b6a.exe.embed.manifest" /manifest cmTC_35b6a.dir\Debug\cmTC_35b6a.exe.intermediate.manifest + C:\Program Files\Microsoft SDKs\Windows\v7.1\bin\rc.exe /nologo /fo"cmTC_35b6a.dir\Debug\cmTC_35b6a.exe.embed.manifest.res" cmTC_35b6a.dir\Debug\cmTC_35b6a_manifest.rc +LinkEmbedManifest: + c:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\bin\x86_amd64\link.exe /ERRORREPORT:QUEUE /OUT:"C:\Users\thoma\Documents\repos\conan-boost\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\CMakeTmp\Debug\cmTC_35b6a.exe" /INCREMENTAL /NOLOGO kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib /MANIFEST /ManifestFile:"cmTC_35b6a.dir\Debug\cmTC_35b6a.exe.intermediate.manifest" /MANIFESTUAC:"level='asInvoker' uiAccess='false'" /DEBUG /PDB:"C:/Users/thoma/Documents/repos/conan-boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/CMakeTmp/Debug/cmTC_35b6a.pdb" /SUBSYSTEM:CONSOLE /TLBID:1 /DYNAMICBASE /NXCOMPAT /IMPLIB:"C:/Users/thoma/Documents/repos/conan-boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/CMakeTmp/Debug/cmTC_35b6a.lib" /MACHINE:X64 cmTC_35b6a.dir\Debug\cmTC_35b6a.exe.embed.manifest.res + cmTC_35b6a.dir\Debug\CMakeCXXCompilerABI.obj /machine:x64 + cmTC_35b6a.vcxproj -> C:\Users\thoma\Documents\repos\conan-boost\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\CMakeTmp\Debug\cmTC_35b6a.exe +FinalizeBuildStatus: + Die Datei "cmTC_35b6a.dir\Debug\cmTC_35b6a.unsuccessfulbuild" wird gelöscht. + Aktualisieren des Timestamps von "cmTC_35b6a.dir\Debug\cmTC_35b6a.lastbuildstate". +Die Erstellung von Projekt "C:\Users\thoma\Documents\repos\conan-boost\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\CMakeTmp\cmTC_35b6a.vcxproj" ist abgeschlossen (Standardziele). + +Der Buildvorgang wurde erfolgreich ausgeführt. + 0 Warnung(en) + 0 Fehler + +Verstrichene Zeit 00:00:01.84 + + + + +Detecting CXX [] compiler features compiled with the following output: +Change Dir: C:/Users/thoma/Documents/repos/conan-boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/CMakeTmp + +Run Build Command:"C:/Windows/Microsoft.NET/Framework/v4.0.30319/MSBuild.exe" "cmTC_30f0c.vcxproj" "/p:Configuration=Debug" "/p:VisualStudioVersion=10.0" +Microsoft (R)-Buildmodul, Version 4.7.2556.0 +[Microsoft .NET Framework, Version 4.0.30319.42000] +Copyright (C) Microsoft Corporation. Alle Rechte vorbehalten. + +Der Buildvorgang wurde am 28.01.2018 14:53:57 gestartet. +Projekt "C:\Users\thoma\Documents\repos\conan-boost\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\CMakeTmp\cmTC_30f0c.vcxproj" auf Knoten "1" (Standardziele). +PrepareForBuild: + Das Verzeichnis "cmTC_30f0c.dir\Debug\" wird erstellt. + Das Verzeichnis "C:\Users\thoma\Documents\repos\conan-boost\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\CMakeTmp\Debug\" wird erstellt. +InitializeBuildStatus: + "cmTC_30f0c.dir\Debug\cmTC_30f0c.unsuccessfulbuild" wird erstellt, da "AlwaysCreate" angegeben wurde. +ClCompile: + c:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\bin\x86_amd64\CL.exe /c /Zi /W3 /WX- /Od /Ob0 /D WIN32 /D _WINDOWS /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /EHsc /RTC1 /MDd /GS /fp:precise /Zc:wchar_t /Zc:forScope /GR /Fo"cmTC_30f0c.dir\Debug\\" /Fd"cmTC_30f0c.dir\Debug\vcWindows7.1SDK.pdb" /Gd /TP /errorReport:queue ..\feature_tests.cxx + Microsoft (R) C/C++ Optimizing Compiler Version 16.00.40219.01 for x64 + Copyright (C) Microsoft Corporation. All rights reserved. + + cl /c /Zi /W3 /WX- /Od /Ob0 /D WIN32 /D _WINDOWS /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /EHsc /RTC1 /MDd /GS /fp:precise /Zc:wchar_t /Zc:forScope /GR /Fo"cmTC_30f0c.dir\Debug\\" /Fd"cmTC_30f0c.dir\Debug\vcWindows7.1SDK.pdb" /Gd /TP /errorReport:queue ..\feature_tests.cxx + + feature_tests.cxx +ManifestResourceCompile: + C:\Program Files\Microsoft SDKs\Windows\v7.1\bin\rc.exe /nologo /fo"cmTC_30f0c.dir\Debug\cmTC_30f0c.exe.embed.manifest.res" cmTC_30f0c.dir\Debug\cmTC_30f0c_manifest.rc +Link: + c:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\bin\x86_amd64\link.exe /ERRORREPORT:QUEUE /OUT:"C:\Users\thoma\Documents\repos\conan-boost\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\CMakeTmp\Debug\cmTC_30f0c.exe" /INCREMENTAL /NOLOGO kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib /MANIFEST /ManifestFile:"cmTC_30f0c.dir\Debug\cmTC_30f0c.exe.intermediate.manifest" /MANIFESTUAC:"level='asInvoker' uiAccess='false'" /DEBUG /PDB:"C:/Users/thoma/Documents/repos/conan-boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/CMakeTmp/Debug/cmTC_30f0c.pdb" /SUBSYSTEM:CONSOLE /TLBID:1 /DYNAMICBASE /NXCOMPAT /IMPLIB:"C:/Users/thoma/Documents/repos/conan-boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/CMakeTmp/Debug/cmTC_30f0c.lib" /MACHINE:X64 cmTC_30f0c.dir\Debug\cmTC_30f0c.exe.embed.manifest.res + cmTC_30f0c.dir\Debug\feature_tests.obj /machine:x64 + cmTC_30f0c.vcxproj -> C:\Users\thoma\Documents\repos\conan-boost\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\CMakeTmp\Debug\cmTC_30f0c.exe +Manifest: + C:\Program Files\Microsoft SDKs\Windows\v7.1\bin\mt.exe /nologo /verbose /out:"cmTC_30f0c.dir\Debug\cmTC_30f0c.exe.embed.manifest" /manifest cmTC_30f0c.dir\Debug\cmTC_30f0c.exe.intermediate.manifest + C:\Program Files\Microsoft SDKs\Windows\v7.1\bin\rc.exe /nologo /fo"cmTC_30f0c.dir\Debug\cmTC_30f0c.exe.embed.manifest.res" cmTC_30f0c.dir\Debug\cmTC_30f0c_manifest.rc +LinkEmbedManifest: + c:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\bin\x86_amd64\link.exe /ERRORREPORT:QUEUE /OUT:"C:\Users\thoma\Documents\repos\conan-boost\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\CMakeTmp\Debug\cmTC_30f0c.exe" /INCREMENTAL /NOLOGO kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib /MANIFEST /ManifestFile:"cmTC_30f0c.dir\Debug\cmTC_30f0c.exe.intermediate.manifest" /MANIFESTUAC:"level='asInvoker' uiAccess='false'" /DEBUG /PDB:"C:/Users/thoma/Documents/repos/conan-boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/CMakeTmp/Debug/cmTC_30f0c.pdb" /SUBSYSTEM:CONSOLE /TLBID:1 /DYNAMICBASE /NXCOMPAT /IMPLIB:"C:/Users/thoma/Documents/repos/conan-boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/CMakeTmp/Debug/cmTC_30f0c.lib" /MACHINE:X64 cmTC_30f0c.dir\Debug\cmTC_30f0c.exe.embed.manifest.res + cmTC_30f0c.dir\Debug\feature_tests.obj /machine:x64 + cmTC_30f0c.vcxproj -> C:\Users\thoma\Documents\repos\conan-boost\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\CMakeTmp\Debug\cmTC_30f0c.exe +FinalizeBuildStatus: + Die Datei "cmTC_30f0c.dir\Debug\cmTC_30f0c.unsuccessfulbuild" wird gelöscht. + Aktualisieren des Timestamps von "cmTC_30f0c.dir\Debug\cmTC_30f0c.lastbuildstate". +Die Erstellung von Projekt "C:\Users\thoma\Documents\repos\conan-boost\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\CMakeTmp\cmTC_30f0c.vcxproj" ist abgeschlossen (Standardziele). + +Der Buildvorgang wurde erfolgreich ausgeführt. + 0 Warnung(en) + 0 Fehler + +Verstrichene Zeit 00:00:01.92 + + + Feature record: CXX_FEATURE:0cxx_aggregate_default_initializers + Feature record: CXX_FEATURE:0cxx_alias_templates + Feature record: CXX_FEATURE:0cxx_alignas + Feature record: CXX_FEATURE:0cxx_alignof + Feature record: CXX_FEATURE:0cxx_attributes + Feature record: CXX_FEATURE:0cxx_attribute_deprecated + Feature record: CXX_FEATURE:1cxx_auto_type + Feature record: CXX_FEATURE:0cxx_binary_literals + Feature record: CXX_FEATURE:0cxx_constexpr + Feature record: CXX_FEATURE:0cxx_contextual_conversions + Feature record: CXX_FEATURE:1cxx_decltype + Feature record: CXX_FEATURE:0cxx_decltype_auto + Feature record: CXX_FEATURE:0cxx_default_function_template_args + Feature record: CXX_FEATURE:0cxx_defaulted_functions + Feature record: CXX_FEATURE:0cxx_defaulted_move_initializers + Feature record: CXX_FEATURE:0cxx_delegating_constructors + Feature record: CXX_FEATURE:0cxx_deleted_functions + Feature record: CXX_FEATURE:0cxx_digit_separators + Feature record: CXX_FEATURE:0cxx_enum_forward_declarations + Feature record: CXX_FEATURE:0cxx_explicit_conversions + Feature record: CXX_FEATURE:1cxx_extended_friend_declarations + Feature record: CXX_FEATURE:1cxx_extern_templates + Feature record: CXX_FEATURE:0cxx_final + Feature record: CXX_FEATURE:0cxx_func_identifier + Feature record: CXX_FEATURE:0cxx_generalized_initializers + Feature record: CXX_FEATURE:0cxx_generic_lambdas + Feature record: CXX_FEATURE:0cxx_inheriting_constructors + Feature record: CXX_FEATURE:0cxx_inline_namespaces + Feature record: CXX_FEATURE:1cxx_lambdas + Feature record: CXX_FEATURE:0cxx_lambda_init_captures + Feature record: CXX_FEATURE:1cxx_local_type_template_args + Feature record: CXX_FEATURE:1cxx_long_long_type + Feature record: CXX_FEATURE:0cxx_noexcept + Feature record: CXX_FEATURE:0cxx_nonstatic_member_init + Feature record: CXX_FEATURE:1cxx_nullptr + Feature record: CXX_FEATURE:1cxx_override + Feature record: CXX_FEATURE:0cxx_range_for + Feature record: CXX_FEATURE:0cxx_raw_string_literals + Feature record: CXX_FEATURE:0cxx_reference_qualified_functions + Feature record: CXX_FEATURE:0cxx_return_type_deduction + Feature record: CXX_FEATURE:1cxx_right_angle_brackets + Feature record: CXX_FEATURE:1cxx_rvalue_references + Feature record: CXX_FEATURE:0cxx_sizeof_member + Feature record: CXX_FEATURE:1cxx_static_assert + Feature record: CXX_FEATURE:0cxx_strong_enums + Feature record: CXX_FEATURE:1cxx_template_template_parameters + Feature record: CXX_FEATURE:0cxx_thread_local + Feature record: CXX_FEATURE:1cxx_trailing_return_types + Feature record: CXX_FEATURE:0cxx_unicode_literals + Feature record: CXX_FEATURE:0cxx_uniform_initialization + Feature record: CXX_FEATURE:0cxx_unrestricted_unions + Feature record: CXX_FEATURE:0cxx_user_literals + Feature record: CXX_FEATURE:0cxx_variable_templates + Feature record: CXX_FEATURE:1cxx_variadic_macros + Feature record: CXX_FEATURE:0cxx_variadic_templates diff --git a/boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/TargetDirectories.txt b/boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/TargetDirectories.txt new file mode 100644 index 0000000..ef5c055 --- /dev/null +++ b/boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/TargetDirectories.txt @@ -0,0 +1,3 @@ +C:/Users/thoma/Documents/repos/conan-boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/example.dir +C:/Users/thoma/Documents/repos/conan-boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/ALL_BUILD.dir +C:/Users/thoma/Documents/repos/conan-boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/ZERO_CHECK.dir diff --git a/boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/cmake.check_cache b/boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/cmake.check_cache new file mode 100644 index 0000000..3dccd73 --- /dev/null +++ b/boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/cmake.check_cache @@ -0,0 +1 @@ +# This file is generated by cmake for dependency checking of the CMakeCache.txt file diff --git a/boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/feature_tests.bin b/boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/feature_tests.bin new file mode 100644 index 0000000..c594b5d Binary files /dev/null and b/boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/feature_tests.bin differ diff --git a/boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/feature_tests.cxx b/boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/feature_tests.cxx new file mode 100644 index 0000000..79ac5fe --- /dev/null +++ b/boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/feature_tests.cxx @@ -0,0 +1,391 @@ + + const char features[] = {"\n" +"CXX_FEATURE:" +#if _MSC_FULL_VER >= 190024406 +"1" +#else +"0" +#endif +"cxx_aggregate_default_initializers\n" +"CXX_FEATURE:" +#if _MSC_VER >= 1800 +"1" +#else +"0" +#endif +"cxx_alias_templates\n" +"CXX_FEATURE:" +#if _MSC_VER >= 1900 +"1" +#else +"0" +#endif +"cxx_alignas\n" +"CXX_FEATURE:" +#if _MSC_VER >= 1900 +"1" +#else +"0" +#endif +"cxx_alignof\n" +"CXX_FEATURE:" +#if _MSC_VER >= 1900 +"1" +#else +"0" +#endif +"cxx_attributes\n" +"CXX_FEATURE:" +#if _MSC_VER >= 1900 +"1" +#else +"0" +#endif +"cxx_attribute_deprecated\n" +"CXX_FEATURE:" +#if _MSC_VER >= 1600 +"1" +#else +"0" +#endif +"cxx_auto_type\n" +"CXX_FEATURE:" +#if _MSC_VER >= 1900 +"1" +#else +"0" +#endif +"cxx_binary_literals\n" +"CXX_FEATURE:" +#if _MSC_VER >= 1900 +"1" +#else +"0" +#endif +"cxx_constexpr\n" +"CXX_FEATURE:" +#if _MSC_VER >= 1800 +"1" +#else +"0" +#endif +"cxx_contextual_conversions\n" +"CXX_FEATURE:" +#if _MSC_VER >= 1600 +"1" +#else +"0" +#endif +"cxx_decltype\n" +"CXX_FEATURE:" +#if _MSC_VER >= 1900 +"1" +#else +"0" +#endif +"cxx_decltype_auto\n" +"CXX_FEATURE:" +#if _MSC_VER >= 1800 +"1" +#else +"0" +#endif +"cxx_default_function_template_args\n" +"CXX_FEATURE:" +#if _MSC_VER >= 1800 +"1" +#else +"0" +#endif +"cxx_defaulted_functions\n" +"CXX_FEATURE:" +#if _MSC_VER >= 1900 +"1" +#else +"0" +#endif +"cxx_defaulted_move_initializers\n" +"CXX_FEATURE:" +#if _MSC_VER >= 1800 +"1" +#else +"0" +#endif +"cxx_delegating_constructors\n" +"CXX_FEATURE:" +#if _MSC_VER >= 1900 +"1" +#else +"0" +#endif +"cxx_deleted_functions\n" +"CXX_FEATURE:" +#if _MSC_VER >= 1900 +"1" +#else +"0" +#endif +"cxx_digit_separators\n" +"CXX_FEATURE:" +#if _MSC_VER >= 1700 +"1" +#else +"0" +#endif +"cxx_enum_forward_declarations\n" +"CXX_FEATURE:" +#if _MSC_VER >= 1800 +"1" +#else +"0" +#endif +"cxx_explicit_conversions\n" +"CXX_FEATURE:" +#if _MSC_VER >= 1600 +"1" +#else +"0" +#endif +"cxx_extended_friend_declarations\n" +"CXX_FEATURE:" +#if _MSC_VER >= 1600 +"1" +#else +"0" +#endif +"cxx_extern_templates\n" +"CXX_FEATURE:" +#if _MSC_VER >= 1700 +"1" +#else +"0" +#endif +"cxx_final\n" +"CXX_FEATURE:" +#if _MSC_VER >= 1900 +"1" +#else +"0" +#endif +"cxx_func_identifier\n" +"CXX_FEATURE:" +#if _MSC_FULL_VER >= 180030723 +"1" +#else +"0" +#endif +"cxx_generalized_initializers\n" +"CXX_FEATURE:" +#if _MSC_VER >= 1900 +"1" +#else +"0" +#endif +"cxx_generic_lambdas\n" +"CXX_FEATURE:" +#if _MSC_VER >= 1900 +"1" +#else +"0" +#endif +"cxx_inheriting_constructors\n" +"CXX_FEATURE:" +#if _MSC_VER >= 1900 +"1" +#else +"0" +#endif +"cxx_inline_namespaces\n" +"CXX_FEATURE:" +#if _MSC_VER >= 1600 +"1" +#else +"0" +#endif +"cxx_lambdas\n" +"CXX_FEATURE:" +#if _MSC_VER >= 1900 +"1" +#else +"0" +#endif +"cxx_lambda_init_captures\n" +"CXX_FEATURE:" +#if _MSC_VER >= 1600 +"1" +#else +"0" +#endif +"cxx_local_type_template_args\n" +"CXX_FEATURE:" +#if _MSC_VER >= 1600 +"1" +#else +"0" +#endif +"cxx_long_long_type\n" +"CXX_FEATURE:" +#if _MSC_VER >= 1900 +"1" +#else +"0" +#endif +"cxx_noexcept\n" +"CXX_FEATURE:" +#if _MSC_VER >= 1900 +"1" +#else +"0" +#endif +"cxx_nonstatic_member_init\n" +"CXX_FEATURE:" +#if _MSC_VER >= 1600 +"1" +#else +"0" +#endif +"cxx_nullptr\n" +"CXX_FEATURE:" +#if _MSC_VER >= 1600 +"1" +#else +"0" +#endif +"cxx_override\n" +"CXX_FEATURE:" +#if _MSC_VER >= 1700 +"1" +#else +"0" +#endif +"cxx_range_for\n" +"CXX_FEATURE:" +#if _MSC_VER >= 1800 +"1" +#else +"0" +#endif +"cxx_raw_string_literals\n" +"CXX_FEATURE:" +#if _MSC_VER >= 1900 +"1" +#else +"0" +#endif +"cxx_reference_qualified_functions\n" +"CXX_FEATURE:" +#if _MSC_VER >= 1900 +"1" +#else +"0" +#endif +"cxx_return_type_deduction\n" +"CXX_FEATURE:" +#if _MSC_VER >= 1600 +"1" +#else +"0" +#endif +"cxx_right_angle_brackets\n" +"CXX_FEATURE:" +#if _MSC_VER >= 1600 +"1" +#else +"0" +#endif +"cxx_rvalue_references\n" +"CXX_FEATURE:" +#if _MSC_VER >= 1900 +"1" +#else +"0" +#endif +"cxx_sizeof_member\n" +"CXX_FEATURE:" +#if _MSC_VER >= 1600 +"1" +#else +"0" +#endif +"cxx_static_assert\n" +"CXX_FEATURE:" +#if _MSC_VER >= 1700 +"1" +#else +"0" +#endif +"cxx_strong_enums\n" +"CXX_FEATURE:" +#if _MSC_VER >= 1600 +"1" +#else +"0" +#endif +"cxx_template_template_parameters\n" +"CXX_FEATURE:" +#if _MSC_VER >= 1900 +"1" +#else +"0" +#endif +"cxx_thread_local\n" +"CXX_FEATURE:" +#if _MSC_VER >= 1600 +"1" +#else +"0" +#endif +"cxx_trailing_return_types\n" +"CXX_FEATURE:" +#if _MSC_VER >= 1900 +"1" +#else +"0" +#endif +"cxx_unicode_literals\n" +"CXX_FEATURE:" +#if _MSC_VER >= 1800 +"1" +#else +"0" +#endif +"cxx_uniform_initialization\n" +"CXX_FEATURE:" +#if _MSC_VER >= 1900 +"1" +#else +"0" +#endif +"cxx_unrestricted_unions\n" +"CXX_FEATURE:" +#if _MSC_VER >= 1900 +"1" +#else +"0" +#endif +"cxx_user_literals\n" +"CXX_FEATURE:" +#if _MSC_FULL_VER >= 190023918 +"1" +#else +"0" +#endif +"cxx_variable_templates\n" +"CXX_FEATURE:" +#if _MSC_VER >= 1600 +"1" +#else +"0" +#endif +"cxx_variadic_macros\n" +"CXX_FEATURE:" +#if _MSC_VER >= 1800 +"1" +#else +"0" +#endif +"cxx_variadic_templates\n" + +}; + +int main(int argc, char** argv) { (void)argv; return features[argc]; } diff --git a/boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/generate.stamp b/boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/generate.stamp new file mode 100644 index 0000000..9b5f49f --- /dev/null +++ b/boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/generate.stamp @@ -0,0 +1 @@ +# CMake generation timestamp file for this directory. diff --git a/boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/generate.stamp.depend b/boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/generate.stamp.depend new file mode 100644 index 0000000..c620b17 --- /dev/null +++ b/boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/generate.stamp.depend @@ -0,0 +1,78 @@ +# CMake generation dependency list for this directory. +C:/Users/thoma/Documents/repos/conan-boost/test_package/CMakeLists.txt +C:/Program Files/CMake/share/cmake-3.10/Modules/CMakeDetermineSystem.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/CMakeSystem.cmake.in +C:/Users/thoma/Documents/repos/conan-boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.1/CMakeSystem.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/CMakeSystemSpecificInitialize.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/CMakeDetermineCXXCompiler.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/CMakeDetermineCompiler.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/Platform/Windows-Determine-CXX.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/CMakeDetermineCompilerId.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/CMakeCompilerIdDetection.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/Compiler/ADSP-DetermineCompiler.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/Compiler/ARMCC-DetermineCompiler.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/Compiler/AppleClang-DetermineCompiler.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/Compiler/Clang-DetermineCompilerInternal.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/Compiler/Borland-DetermineCompiler.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/Compiler/Clang-DetermineCompiler.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/Compiler/Clang-DetermineCompilerInternal.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/Compiler/Comeau-CXX-DetermineCompiler.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/Compiler/Compaq-CXX-DetermineCompiler.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/Compiler/Cray-DetermineCompiler.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/Compiler/Embarcadero-DetermineCompiler.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/Compiler/Fujitsu-DetermineCompiler.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/Compiler/GHS-DetermineCompiler.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/Compiler/GNU-CXX-DetermineCompiler.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/Compiler/HP-CXX-DetermineCompiler.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/Compiler/IAR-DetermineCompiler.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/Compiler/Intel-DetermineCompiler.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/Compiler/MIPSpro-DetermineCompiler.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/Compiler/MSVC-DetermineCompiler.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/Compiler/NVIDIA-DetermineCompiler.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/Compiler/PGI-DetermineCompiler.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/Compiler/PathScale-DetermineCompiler.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/Compiler/SCO-DetermineCompiler.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/Compiler/TI-DetermineCompiler.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/Compiler/VisualAge-CXX-DetermineCompiler.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/Compiler/Watcom-DetermineCompiler.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/Compiler/XL-CXX-DetermineCompiler.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/Compiler/zOS-CXX-DetermineCompiler.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/CompilerId/VS-10.vcxproj.in +C:/Program Files/CMake/share/cmake-3.10/Modules/CMakeFindBinUtils.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/CMakeCXXCompiler.cmake.in +C:/Users/thoma/Documents/repos/conan-boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.1/CMakeCXXCompiler.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/CMakeSystemSpecificInformation.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/CMakeGenericSystem.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/Platform/Windows.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/Platform/WindowsPaths.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/CMakeCXXInformation.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/CMakeLanguageInformation.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/Compiler/MSVC-CXX.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/Compiler/CMakeCommonCompilerMacros.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/Platform/Windows-MSVC-CXX.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/Platform/Windows-MSVC.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/CMakeDetermineRCCompiler.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/CMakeRCCompiler.cmake.in +C:/Users/thoma/Documents/repos/conan-boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.1/CMakeRCCompiler.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/CMakeRCInformation.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/CMakeTestRCCompiler.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/CMakeCommonLanguageInclude.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/CMakeTestCXXCompiler.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/CMakeTestCompilerCommon.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/CMakeDetermineCompilerABI.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/CMakeParseImplicitLinkInfo.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/CMakeCXXCompilerABI.cpp +C:/Program Files/CMake/share/cmake-3.10/Modules/CMakeDetermineCompileFeatures.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/Internal/FeatureTesting.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/Compiler/MSVC-CXX-FeatureTests.cmake +C:/Users/thoma/Documents/repos/conan-boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/feature_tests.cxx +C:/Program Files/CMake/share/cmake-3.10/Modules/CMakeCXXCompiler.cmake.in +C:/Users/thoma/Documents/repos/conan-boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.1/CMakeCXXCompiler.cmake +C:/Users/thoma/Documents/repos/conan-boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/conanbuildinfo.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/CMakeParseArguments.cmake +C:/.conan/oqf7uzoi/1/FindBoost.cmake diff --git a/boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/generate.stamp.list b/boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/generate.stamp.list new file mode 100644 index 0000000..b43548e --- /dev/null +++ b/boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/generate.stamp.list @@ -0,0 +1 @@ +C:/Users/thoma/Documents/repos/conan-boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/generate.stamp diff --git a/boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/PackageTest.sln b/boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/PackageTest.sln new file mode 100644 index 0000000..55c7d99 --- /dev/null +++ b/boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/PackageTest.sln @@ -0,0 +1,52 @@ +Microsoft Visual Studio Solution File, Format Version 11.00 +# Visual C++ Express 2010 +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ALL_BUILD", "ALL_BUILD.vcxproj", "{8192D579-EC2C-31B5-8C0C-EA680624F8D4}" + ProjectSection(ProjectDependencies) = postProject + {E3821C68-24D8-3914-BBE5-11F0AC651B82} = {E3821C68-24D8-3914-BBE5-11F0AC651B82} + {A9BB12A1-994E-3D78-A03C-406D1B02115E} = {A9BB12A1-994E-3D78-A03C-406D1B02115E} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ZERO_CHECK", "ZERO_CHECK.vcxproj", "{E3821C68-24D8-3914-BBE5-11F0AC651B82}" + ProjectSection(ProjectDependencies) = postProject + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "example", "example.vcxproj", "{A9BB12A1-994E-3D78-A03C-406D1B02115E}" + ProjectSection(ProjectDependencies) = postProject + {E3821C68-24D8-3914-BBE5-11F0AC651B82} = {E3821C68-24D8-3914-BBE5-11F0AC651B82} + EndProjectSection +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|x64 = Debug|x64 + Release|x64 = Release|x64 + MinSizeRel|x64 = MinSizeRel|x64 + RelWithDebInfo|x64 = RelWithDebInfo|x64 + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {8192D579-EC2C-31B5-8C0C-EA680624F8D4}.Debug|x64.ActiveCfg = Debug|x64 + {8192D579-EC2C-31B5-8C0C-EA680624F8D4}.Release|x64.ActiveCfg = Release|x64 + {8192D579-EC2C-31B5-8C0C-EA680624F8D4}.MinSizeRel|x64.ActiveCfg = MinSizeRel|x64 + {8192D579-EC2C-31B5-8C0C-EA680624F8D4}.RelWithDebInfo|x64.ActiveCfg = RelWithDebInfo|x64 + {E3821C68-24D8-3914-BBE5-11F0AC651B82}.Debug|x64.ActiveCfg = Debug|x64 + {E3821C68-24D8-3914-BBE5-11F0AC651B82}.Debug|x64.Build.0 = Debug|x64 + {E3821C68-24D8-3914-BBE5-11F0AC651B82}.Release|x64.ActiveCfg = Release|x64 + {E3821C68-24D8-3914-BBE5-11F0AC651B82}.Release|x64.Build.0 = Release|x64 + {E3821C68-24D8-3914-BBE5-11F0AC651B82}.MinSizeRel|x64.ActiveCfg = MinSizeRel|x64 + {E3821C68-24D8-3914-BBE5-11F0AC651B82}.MinSizeRel|x64.Build.0 = MinSizeRel|x64 + {E3821C68-24D8-3914-BBE5-11F0AC651B82}.RelWithDebInfo|x64.ActiveCfg = RelWithDebInfo|x64 + {E3821C68-24D8-3914-BBE5-11F0AC651B82}.RelWithDebInfo|x64.Build.0 = RelWithDebInfo|x64 + {A9BB12A1-994E-3D78-A03C-406D1B02115E}.Debug|x64.ActiveCfg = Debug|x64 + {A9BB12A1-994E-3D78-A03C-406D1B02115E}.Debug|x64.Build.0 = Debug|x64 + {A9BB12A1-994E-3D78-A03C-406D1B02115E}.Release|x64.ActiveCfg = Release|x64 + {A9BB12A1-994E-3D78-A03C-406D1B02115E}.Release|x64.Build.0 = Release|x64 + {A9BB12A1-994E-3D78-A03C-406D1B02115E}.MinSizeRel|x64.ActiveCfg = MinSizeRel|x64 + {A9BB12A1-994E-3D78-A03C-406D1B02115E}.MinSizeRel|x64.Build.0 = MinSizeRel|x64 + {A9BB12A1-994E-3D78-A03C-406D1B02115E}.RelWithDebInfo|x64.ActiveCfg = RelWithDebInfo|x64 + {A9BB12A1-994E-3D78-A03C-406D1B02115E}.RelWithDebInfo|x64.Build.0 = RelWithDebInfo|x64 + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {3C0A1C38-E8FB-31C8-99D0-CA00F8A6A65D} + EndGlobalSection + GlobalSection(ExtensibilityAddIns) = postSolution + EndGlobalSection +EndGlobal diff --git a/boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/ZERO_CHECK.vcxproj b/boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/ZERO_CHECK.vcxproj new file mode 100644 index 0000000..7e80601 --- /dev/null +++ b/boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/ZERO_CHECK.vcxproj @@ -0,0 +1,161 @@ + + + + + Debug + x64 + + + Release + x64 + + + MinSizeRel + x64 + + + RelWithDebInfo + x64 + + + + {E3821C68-24D8-3914-BBE5-11F0AC651B82} + Win32Proj + x64 + ZERO_CHECK + + + + Utility + MultiByte + Windows7.1SDK + + + Utility + MultiByte + Windows7.1SDK + + + Utility + MultiByte + Windows7.1SDK + + + Utility + MultiByte + Windows7.1SDK + + + + + + + + + + <_ProjectFileVersion>10.0.20506.1 + $(Platform)\$(Configuration)\$(ProjectName)\ + $(Platform)\$(Configuration)\$(ProjectName)\ + $(Platform)\$(Configuration)\$(ProjectName)\ + $(Platform)\$(Configuration)\$(ProjectName)\ + + + + C:\.conan\oqf7uzoi\1\include;C:\Users\thoma\.conan\data\zlib\1.2.11\conan\stable\package\85f780d0530411a64b0be4407b381706014b445d\include;%(AdditionalIncludeDirectories) + $(ProjectDir)/$(IntDir) + %(Filename).h + %(Filename).tlb + %(Filename)_i.c + %(Filename)_p.c + + + + + C:\.conan\oqf7uzoi\1\include;C:\Users\thoma\.conan\data\zlib\1.2.11\conan\stable\package\85f780d0530411a64b0be4407b381706014b445d\include;%(AdditionalIncludeDirectories) + $(ProjectDir)/$(IntDir) + %(Filename).h + %(Filename).tlb + %(Filename)_i.c + %(Filename)_p.c + + + + + C:\.conan\oqf7uzoi\1\include;C:\Users\thoma\.conan\data\zlib\1.2.11\conan\stable\package\85f780d0530411a64b0be4407b381706014b445d\include;%(AdditionalIncludeDirectories) + $(ProjectDir)/$(IntDir) + %(Filename).h + %(Filename).tlb + %(Filename)_i.c + %(Filename)_p.c + + + + + C:\.conan\oqf7uzoi\1\include;C:\Users\thoma\.conan\data\zlib\1.2.11\conan\stable\package\85f780d0530411a64b0be4407b381706014b445d\include;%(AdditionalIncludeDirectories) + $(ProjectDir)/$(IntDir) + %(Filename).h + %(Filename).tlb + %(Filename)_i.c + %(Filename)_p.c + + + + + Checking Build System + setlocal +"C:\Program Files\CMake\bin\cmake.exe" -HC:/Users/thoma/Documents/repos/conan-boost/test_package -BC:/Users/thoma/Documents/repos/conan-boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd --check-stamp-list CMakeFiles/generate.stamp.list --vs-solution-file C:/Users/thoma/Documents/repos/conan-boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/PackageTest.sln +if %errorlevel% neq 0 goto :cmEnd +:cmEnd +endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone +:cmErrorLevel +exit /b %1 +:cmDone +if %errorlevel% neq 0 goto :VCEnd + C:/Users/thoma/Documents/repos/conan-boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3801bbff68c590f24f44c75865690a36/generate.stamp.rule;C:\.conan\oqf7uzoi\1\FindBoost.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCXXCompiler.cmake.in;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCXXCompilerABI.cpp;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCXXInformation.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCommonLanguageInclude.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCompilerIdDetection.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCXXCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCompileFeatures.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCompilerABI.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCompilerId.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineRCCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineSystem.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeFindBinUtils.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeGenericSystem.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeLanguageInformation.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeParseArguments.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeParseImplicitLinkInfo.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeRCCompiler.cmake.in;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeRCInformation.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeSystem.cmake.in;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeSystemSpecificInformation.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeSystemSpecificInitialize.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeTestCXXCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeTestCompilerCommon.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeTestRCCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\ADSP-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\ARMCC-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\AppleClang-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Borland-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\CMakeCommonCompilerMacros.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Clang-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Clang-DetermineCompilerInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Comeau-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Compaq-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Cray-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Embarcadero-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Fujitsu-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\GHS-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\GNU-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\HP-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\IAR-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\IBMCPP-CXX-DetermineVersionInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Intel-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\MIPSpro-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\MSVC-CXX-FeatureTests.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\MSVC-CXX.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\MSVC-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\NVIDIA-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\OpenWatcom-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\PGI-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\PathScale-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\SCO-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\SunPro-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\TI-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\VisualAge-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Watcom-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\XL-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\zOS-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CompilerId\VS-10.vcxproj.in;C:\Program Files\CMake\share\cmake-3.10\Modules\Internal\FeatureTesting.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\Windows-Determine-CXX.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\Windows-MSVC-CXX.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\Windows-MSVC.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\Windows.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\WindowsPaths.cmake;C:\Users\thoma\Documents\repos\conan-boost\test_package\CMakeLists.txt;C:\Users\thoma\Documents\repos\conan-boost\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\3.10.1\CMakeCXXCompiler.cmake;C:\Users\thoma\Documents\repos\conan-boost\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\3.10.1\CMakeRCCompiler.cmake;C:\Users\thoma\Documents\repos\conan-boost\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\3.10.1\CMakeSystem.cmake;C:\Users\thoma\Documents\repos\conan-boost\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\feature_tests.cxx;C:\Users\thoma\Documents\repos\conan-boost\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\conanbuildinfo.cmake;%(AdditionalInputs) + C:\Users\thoma\Documents\repos\conan-boost\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\generate.stamp + Checking Build System + setlocal +"C:\Program Files\CMake\bin\cmake.exe" -HC:/Users/thoma/Documents/repos/conan-boost/test_package -BC:/Users/thoma/Documents/repos/conan-boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd --check-stamp-list CMakeFiles/generate.stamp.list --vs-solution-file C:/Users/thoma/Documents/repos/conan-boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/PackageTest.sln +if %errorlevel% neq 0 goto :cmEnd +:cmEnd +endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone +:cmErrorLevel +exit /b %1 +:cmDone +if %errorlevel% neq 0 goto :VCEnd + C:/Users/thoma/Documents/repos/conan-boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3801bbff68c590f24f44c75865690a36/generate.stamp.rule;C:\.conan\oqf7uzoi\1\FindBoost.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCXXCompiler.cmake.in;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCXXCompilerABI.cpp;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCXXInformation.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCommonLanguageInclude.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCompilerIdDetection.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCXXCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCompileFeatures.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCompilerABI.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCompilerId.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineRCCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineSystem.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeFindBinUtils.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeGenericSystem.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeLanguageInformation.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeParseArguments.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeParseImplicitLinkInfo.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeRCCompiler.cmake.in;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeRCInformation.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeSystem.cmake.in;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeSystemSpecificInformation.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeSystemSpecificInitialize.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeTestCXXCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeTestCompilerCommon.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeTestRCCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\ADSP-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\ARMCC-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\AppleClang-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Borland-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\CMakeCommonCompilerMacros.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Clang-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Clang-DetermineCompilerInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Comeau-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Compaq-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Cray-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Embarcadero-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Fujitsu-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\GHS-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\GNU-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\HP-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\IAR-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\IBMCPP-CXX-DetermineVersionInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Intel-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\MIPSpro-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\MSVC-CXX-FeatureTests.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\MSVC-CXX.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\MSVC-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\NVIDIA-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\OpenWatcom-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\PGI-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\PathScale-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\SCO-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\SunPro-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\TI-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\VisualAge-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Watcom-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\XL-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\zOS-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CompilerId\VS-10.vcxproj.in;C:\Program Files\CMake\share\cmake-3.10\Modules\Internal\FeatureTesting.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\Windows-Determine-CXX.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\Windows-MSVC-CXX.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\Windows-MSVC.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\Windows.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\WindowsPaths.cmake;C:\Users\thoma\Documents\repos\conan-boost\test_package\CMakeLists.txt;C:\Users\thoma\Documents\repos\conan-boost\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\3.10.1\CMakeCXXCompiler.cmake;C:\Users\thoma\Documents\repos\conan-boost\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\3.10.1\CMakeRCCompiler.cmake;C:\Users\thoma\Documents\repos\conan-boost\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\3.10.1\CMakeSystem.cmake;C:\Users\thoma\Documents\repos\conan-boost\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\feature_tests.cxx;C:\Users\thoma\Documents\repos\conan-boost\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\conanbuildinfo.cmake;%(AdditionalInputs) + C:\Users\thoma\Documents\repos\conan-boost\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\generate.stamp + Checking Build System + setlocal +"C:\Program Files\CMake\bin\cmake.exe" -HC:/Users/thoma/Documents/repos/conan-boost/test_package -BC:/Users/thoma/Documents/repos/conan-boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd --check-stamp-list CMakeFiles/generate.stamp.list --vs-solution-file C:/Users/thoma/Documents/repos/conan-boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/PackageTest.sln +if %errorlevel% neq 0 goto :cmEnd +:cmEnd +endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone +:cmErrorLevel +exit /b %1 +:cmDone +if %errorlevel% neq 0 goto :VCEnd + C:/Users/thoma/Documents/repos/conan-boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3801bbff68c590f24f44c75865690a36/generate.stamp.rule;C:\.conan\oqf7uzoi\1\FindBoost.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCXXCompiler.cmake.in;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCXXCompilerABI.cpp;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCXXInformation.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCommonLanguageInclude.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCompilerIdDetection.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCXXCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCompileFeatures.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCompilerABI.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCompilerId.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineRCCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineSystem.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeFindBinUtils.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeGenericSystem.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeLanguageInformation.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeParseArguments.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeParseImplicitLinkInfo.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeRCCompiler.cmake.in;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeRCInformation.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeSystem.cmake.in;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeSystemSpecificInformation.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeSystemSpecificInitialize.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeTestCXXCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeTestCompilerCommon.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeTestRCCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\ADSP-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\ARMCC-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\AppleClang-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Borland-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\CMakeCommonCompilerMacros.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Clang-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Clang-DetermineCompilerInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Comeau-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Compaq-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Cray-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Embarcadero-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Fujitsu-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\GHS-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\GNU-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\HP-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\IAR-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\IBMCPP-CXX-DetermineVersionInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Intel-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\MIPSpro-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\MSVC-CXX-FeatureTests.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\MSVC-CXX.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\MSVC-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\NVIDIA-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\OpenWatcom-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\PGI-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\PathScale-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\SCO-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\SunPro-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\TI-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\VisualAge-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Watcom-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\XL-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\zOS-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CompilerId\VS-10.vcxproj.in;C:\Program Files\CMake\share\cmake-3.10\Modules\Internal\FeatureTesting.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\Windows-Determine-CXX.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\Windows-MSVC-CXX.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\Windows-MSVC.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\Windows.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\WindowsPaths.cmake;C:\Users\thoma\Documents\repos\conan-boost\test_package\CMakeLists.txt;C:\Users\thoma\Documents\repos\conan-boost\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\3.10.1\CMakeCXXCompiler.cmake;C:\Users\thoma\Documents\repos\conan-boost\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\3.10.1\CMakeRCCompiler.cmake;C:\Users\thoma\Documents\repos\conan-boost\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\3.10.1\CMakeSystem.cmake;C:\Users\thoma\Documents\repos\conan-boost\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\feature_tests.cxx;C:\Users\thoma\Documents\repos\conan-boost\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\conanbuildinfo.cmake;%(AdditionalInputs) + C:\Users\thoma\Documents\repos\conan-boost\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\generate.stamp + Checking Build System + setlocal +"C:\Program Files\CMake\bin\cmake.exe" -HC:/Users/thoma/Documents/repos/conan-boost/test_package -BC:/Users/thoma/Documents/repos/conan-boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd --check-stamp-list CMakeFiles/generate.stamp.list --vs-solution-file C:/Users/thoma/Documents/repos/conan-boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/PackageTest.sln +if %errorlevel% neq 0 goto :cmEnd +:cmEnd +endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone +:cmErrorLevel +exit /b %1 +:cmDone +if %errorlevel% neq 0 goto :VCEnd + C:/Users/thoma/Documents/repos/conan-boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3801bbff68c590f24f44c75865690a36/generate.stamp.rule;C:\.conan\oqf7uzoi\1\FindBoost.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCXXCompiler.cmake.in;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCXXCompilerABI.cpp;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCXXInformation.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCommonLanguageInclude.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCompilerIdDetection.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCXXCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCompileFeatures.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCompilerABI.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCompilerId.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineRCCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineSystem.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeFindBinUtils.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeGenericSystem.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeLanguageInformation.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeParseArguments.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeParseImplicitLinkInfo.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeRCCompiler.cmake.in;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeRCInformation.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeSystem.cmake.in;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeSystemSpecificInformation.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeSystemSpecificInitialize.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeTestCXXCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeTestCompilerCommon.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeTestRCCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\ADSP-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\ARMCC-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\AppleClang-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Borland-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\CMakeCommonCompilerMacros.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Clang-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Clang-DetermineCompilerInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Comeau-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Compaq-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Cray-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Embarcadero-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Fujitsu-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\GHS-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\GNU-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\HP-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\IAR-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\IBMCPP-CXX-DetermineVersionInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Intel-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\MIPSpro-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\MSVC-CXX-FeatureTests.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\MSVC-CXX.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\MSVC-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\NVIDIA-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\OpenWatcom-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\PGI-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\PathScale-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\SCO-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\SunPro-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\TI-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\VisualAge-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Watcom-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\XL-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\zOS-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CompilerId\VS-10.vcxproj.in;C:\Program Files\CMake\share\cmake-3.10\Modules\Internal\FeatureTesting.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\Windows-Determine-CXX.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\Windows-MSVC-CXX.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\Windows-MSVC.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\Windows.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\WindowsPaths.cmake;C:\Users\thoma\Documents\repos\conan-boost\test_package\CMakeLists.txt;C:\Users\thoma\Documents\repos\conan-boost\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\3.10.1\CMakeCXXCompiler.cmake;C:\Users\thoma\Documents\repos\conan-boost\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\3.10.1\CMakeRCCompiler.cmake;C:\Users\thoma\Documents\repos\conan-boost\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\3.10.1\CMakeSystem.cmake;C:\Users\thoma\Documents\repos\conan-boost\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\feature_tests.cxx;C:\Users\thoma\Documents\repos\conan-boost\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\conanbuildinfo.cmake;%(AdditionalInputs) + C:\Users\thoma\Documents\repos\conan-boost\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\generate.stamp + + + + + + + + + + \ No newline at end of file diff --git a/boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/ZERO_CHECK.vcxproj.filters b/boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/ZERO_CHECK.vcxproj.filters new file mode 100644 index 0000000..e63545a --- /dev/null +++ b/boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/ZERO_CHECK.vcxproj.filters @@ -0,0 +1,13 @@ + + + + + CMake Rules + + + + + {1AF45788-17FC-35FC-9DDC-5438440411A5} + + + diff --git a/boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/bin/example.exe b/boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/bin/example.exe new file mode 100644 index 0000000..3fe4a64 Binary files /dev/null and b/boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/bin/example.exe differ diff --git a/boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/cmake_install.cmake b/boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/cmake_install.cmake new file mode 100644 index 0000000..f22e457 --- /dev/null +++ b/boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/cmake_install.cmake @@ -0,0 +1,44 @@ +# Install script for directory: C:/Users/thoma/Documents/repos/conan-boost/test_package + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files/PackageTest") +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() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "FALSE") +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 "C:/Users/thoma/Documents/repos/conan-boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/${CMAKE_INSTALL_MANIFEST}" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") diff --git a/boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/conanbuildinfo.cmake b/boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/conanbuildinfo.cmake new file mode 100644 index 0000000..300851d --- /dev/null +++ b/boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/conanbuildinfo.cmake @@ -0,0 +1,561 @@ +include(CMakeParseArguments) +set(CONAN_BOOST_ROOT "C:/.conan/oqf7uzoi/1") +set(CONAN_INCLUDE_DIRS_BOOST "C:/.conan/oqf7uzoi/1/include") +set(CONAN_LIB_DIRS_BOOST "C:/.conan/oqf7uzoi/1/lib") +set(CONAN_BIN_DIRS_BOOST ) +set(CONAN_RES_DIRS_BOOST ) +set(CONAN_BUILD_DIRS_BOOST "C:/.conan/oqf7uzoi/1/") +set(CONAN_LIBS_BOOST libboost_wave-vc100-mt-1_66 libboost_unit_test_framework-vc100-mt-1_66 libboost_prg_exec_monitor-vc100-mt-1_66 libboost_container-vc100-mt-1_66 libboost_graph-vc100-mt-1_66 libboost_iostreams-vc100-mt-1_66 libboost_locale-vc100-mt-1_66 libboost_log-vc100-mt-1_66 libboost_log_setup-vc100-mt-1_66 libboost_math_c99-vc100-mt-1_66 libboost_math_c99f-vc100-mt-1_66 libboost_math_c99l-vc100-mt-1_66 libboost_math_tr1-vc100-mt-1_66 libboost_math_tr1f-vc100-mt-1_66 libboost_math_tr1l-vc100-mt-1_66 libboost_program_options-vc100-mt-1_66 libboost_random-vc100-mt-1_66 libboost_regex-vc100-mt-1_66 libboost_wserialization-vc100-mt-1_66 libboost_serialization-vc100-mt-1_66 libboost_signals-vc100-mt-1_66 libboost_coroutine-vc100-mt-1_66 libboost_context-vc100-mt-1_66 libboost_timer-vc100-mt-1_66 libboost_thread-vc100-mt-1_66 libboost_chrono-vc100-mt-1_66 libboost_date_time-vc100-mt-1_66 libboost_atomic-vc100-mt-1_66 libboost_filesystem-vc100-mt-1_66 libboost_system-vc100-mt-1_66 libboost_exception-vc100-mt-1_66 libboost_test_exec_monitor-vc100-mt-1_66) +set(CONAN_DEFINES_BOOST -DBOOST_USE_STATIC_LIBS + -DBOOST_ALL_NO_LIB) +# COMPILE_DEFINITIONS are equal to CONAN_DEFINES without -D, for targets +set(CONAN_COMPILE_DEFINITIONS_BOOST BOOST_USE_STATIC_LIBS + BOOST_ALL_NO_LIB) + +set(CONAN_C_FLAGS_BOOST "") +set(CONAN_CXX_FLAGS_BOOST "") +set(CONAN_SHARED_LINKER_FLAGS_BOOST "") +set(CONAN_EXE_LINKER_FLAGS_BOOST "") + +# For modern cmake targets we use the list variables (separated with ;) +set(CONAN_C_FLAGS_BOOST_LIST "") +set(CONAN_CXX_FLAGS_BOOST_LIST "") +set(CONAN_SHARED_LINKER_FLAGS_BOOST_LIST "") +set(CONAN_EXE_LINKER_FLAGS_BOOST_LIST "") + + +set(CONAN_ZLIB_ROOT "C:/Users/thoma/.conan/data/zlib/1.2.11/conan/stable/package/85f780d0530411a64b0be4407b381706014b445d") +set(CONAN_INCLUDE_DIRS_ZLIB "C:/Users/thoma/.conan/data/zlib/1.2.11/conan/stable/package/85f780d0530411a64b0be4407b381706014b445d/include") +set(CONAN_LIB_DIRS_ZLIB "C:/Users/thoma/.conan/data/zlib/1.2.11/conan/stable/package/85f780d0530411a64b0be4407b381706014b445d/lib") +set(CONAN_BIN_DIRS_ZLIB ) +set(CONAN_RES_DIRS_ZLIB ) +set(CONAN_BUILD_DIRS_ZLIB "C:/Users/thoma/.conan/data/zlib/1.2.11/conan/stable/package/85f780d0530411a64b0be4407b381706014b445d/") +set(CONAN_LIBS_ZLIB zlib) +set(CONAN_DEFINES_ZLIB ) +# COMPILE_DEFINITIONS are equal to CONAN_DEFINES without -D, for targets +set(CONAN_COMPILE_DEFINITIONS_ZLIB ) + +set(CONAN_C_FLAGS_ZLIB "") +set(CONAN_CXX_FLAGS_ZLIB "") +set(CONAN_SHARED_LINKER_FLAGS_ZLIB "") +set(CONAN_EXE_LINKER_FLAGS_ZLIB "") + +# For modern cmake targets we use the list variables (separated with ;) +set(CONAN_C_FLAGS_ZLIB_LIST "") +set(CONAN_CXX_FLAGS_ZLIB_LIST "") +set(CONAN_SHARED_LINKER_FLAGS_ZLIB_LIST "") +set(CONAN_EXE_LINKER_FLAGS_ZLIB_LIST "") + + + +### Definition of global aggregated variables ### + +set(CONAN_PACKAGE_NAME None) +set(CONAN_PACKAGE_VERSION None) + +set(CONAN_SETTINGS_ARCH "x86_64") +set(CONAN_SETTINGS_BUILD_TYPE "Release") +set(CONAN_SETTINGS_COMPILER "Visual Studio") +set(CONAN_SETTINGS_COMPILER_RUNTIME "MD") +set(CONAN_SETTINGS_COMPILER_VERSION "10") +set(CONAN_SETTINGS_OS "Windows") + +set(CONAN_DEPENDENCIES Boost zlib) +# Storing original command line args (CMake helper) flags +set(CONAN_CMD_CXX_FLAGS ${CONAN_CXX_FLAGS}) + +set(CONAN_CMD_SHARED_LINKER_FLAGS ${CONAN_SHARED_LINKER_FLAGS}) +set(CONAN_CMD_C_FLAGS ${CONAN_C_FLAGS}) +# Defining accumulated conan variables for all deps + +set(CONAN_INCLUDE_DIRS "C:/.conan/oqf7uzoi/1/include" + "C:/Users/thoma/.conan/data/zlib/1.2.11/conan/stable/package/85f780d0530411a64b0be4407b381706014b445d/include" ${CONAN_INCLUDE_DIRS}) +set(CONAN_LIB_DIRS "C:/.conan/oqf7uzoi/1/lib" + "C:/Users/thoma/.conan/data/zlib/1.2.11/conan/stable/package/85f780d0530411a64b0be4407b381706014b445d/lib" ${CONAN_LIB_DIRS}) +set(CONAN_BIN_DIRS ${CONAN_BIN_DIRS}) +set(CONAN_RES_DIRS ${CONAN_RES_DIRS}) +set(CONAN_LIBS libboost_wave-vc100-mt-1_66 libboost_unit_test_framework-vc100-mt-1_66 libboost_prg_exec_monitor-vc100-mt-1_66 libboost_container-vc100-mt-1_66 libboost_graph-vc100-mt-1_66 libboost_iostreams-vc100-mt-1_66 libboost_locale-vc100-mt-1_66 libboost_log-vc100-mt-1_66 libboost_log_setup-vc100-mt-1_66 libboost_math_c99-vc100-mt-1_66 libboost_math_c99f-vc100-mt-1_66 libboost_math_c99l-vc100-mt-1_66 libboost_math_tr1-vc100-mt-1_66 libboost_math_tr1f-vc100-mt-1_66 libboost_math_tr1l-vc100-mt-1_66 libboost_program_options-vc100-mt-1_66 libboost_random-vc100-mt-1_66 libboost_regex-vc100-mt-1_66 libboost_wserialization-vc100-mt-1_66 libboost_serialization-vc100-mt-1_66 libboost_signals-vc100-mt-1_66 libboost_coroutine-vc100-mt-1_66 libboost_context-vc100-mt-1_66 libboost_timer-vc100-mt-1_66 libboost_thread-vc100-mt-1_66 libboost_chrono-vc100-mt-1_66 libboost_date_time-vc100-mt-1_66 libboost_atomic-vc100-mt-1_66 libboost_filesystem-vc100-mt-1_66 libboost_system-vc100-mt-1_66 libboost_exception-vc100-mt-1_66 libboost_test_exec_monitor-vc100-mt-1_66 zlib ${CONAN_LIBS}) +set(CONAN_DEFINES -DBOOST_USE_STATIC_LIBS + -DBOOST_ALL_NO_LIB ${CONAN_DEFINES}) +set(CONAN_CMAKE_MODULE_PATH "C:/.conan/oqf7uzoi/1/" + "C:/Users/thoma/.conan/data/zlib/1.2.11/conan/stable/package/85f780d0530411a64b0be4407b381706014b445d/" ${CONAN_CMAKE_MODULE_PATH}) + +set(CONAN_CXX_FLAGS " ${CONAN_CXX_FLAGS}") +set(CONAN_SHARED_LINKER_FLAGS " ${CONAN_SHARED_LINKER_FLAGS}") +set(CONAN_EXE_LINKER_FLAGS " ${CONAN_EXE_LINKER_FLAGS}") +set(CONAN_C_FLAGS " ${CONAN_C_FLAGS}") + + +### Definition of macros and functions ### + +macro(conan_define_targets) + if(${CMAKE_VERSION} VERSION_LESS "3.1.2") + message(FATAL_ERROR "TARGETS not supported by your CMake version!") + endif() # CMAKE > 3.x + set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${CONAN_CMD_CXX_FLAGS}") + set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} ${CONAN_CMD_C_FLAGS}") + set(CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} ${CONAN_CMD_SHARED_LINKER_FLAGS}") + + + conan_package_library_targets("${CONAN_LIBS_BOOST}" "${CONAN_LIB_DIRS_BOOST}" + CONAN_PACKAGE_TARGETS_BOOST "CONAN_PKG::zlib" "" Boost) + conan_package_library_targets("${CONAN_LIBS_BOOST_DEBUG}" "${CONAN_LIB_DIRS_BOOST_DEBUG}" + CONAN_PACKAGE_TARGETS_BOOST_DEBUG "CONAN_PKG::zlib" "debug" Boost) + conan_package_library_targets("${CONAN_LIBS_BOOST_RELEASE}" "${CONAN_LIB_DIRS_BOOST_RELEASE}" + CONAN_PACKAGE_TARGETS_BOOST_RELEASE "CONAN_PKG::zlib" "release" Boost) + + add_library(CONAN_PKG::Boost INTERFACE IMPORTED) + + # Property INTERFACE_LINK_FLAGS do not work, necessary to add to INTERFACE_LINK_LIBRARIES + set_property(TARGET CONAN_PKG::Boost PROPERTY INTERFACE_LINK_LIBRARIES ${CONAN_PACKAGE_TARGETS_BOOST} ${CONAN_SHARED_LINKER_FLAGS_BOOST_LIST} ${CONAN_EXE_LINKER_FLAGS_BOOST_LIST} + $<$:${CONAN_PACKAGE_TARGETS_BOOST_RELEASE} ${CONAN_SHARED_LINKER_FLAGS_BOOST_RELEASE_LIST} ${CONAN_EXE_LINKER_FLAGS_BOOST_RELEASE_LIST}> + $<$:${CONAN_PACKAGE_TARGETS_BOOST_RELEASE} ${CONAN_SHARED_LINKER_FLAGS_BOOST_RELEASE_LIST} ${CONAN_EXE_LINKER_FLAGS_BOOST_RELEASE_LIST}> + $<$:${CONAN_PACKAGE_TARGETS_BOOST_RELEASE} ${CONAN_SHARED_LINKER_FLAGS_BOOST_RELEASE_LIST} ${CONAN_EXE_LINKER_FLAGS_BOOST_RELEASE_LIST}> + $<$:${CONAN_PACKAGE_TARGETS_BOOST_DEBUG} ${CONAN_SHARED_LINKER_FLAGS_BOOST_DEBUG_LIST} ${CONAN_EXE_LINKER_FLAGS_BOOST_DEBUG_LIST}> + CONAN_PKG::zlib) + set_property(TARGET CONAN_PKG::Boost PROPERTY INTERFACE_INCLUDE_DIRECTORIES ${CONAN_INCLUDE_DIRS_BOOST} + $<$:${CONAN_INCLUDE_DIRS_BOOST_RELEASE}> + $<$:${CONAN_INCLUDE_DIRS_BOOST_RELEASE}> + $<$:${CONAN_INCLUDE_DIRS_BOOST_RELEASE}> + $<$:${CONAN_INCLUDE_DIRS_BOOST_DEBUG}>) + set_property(TARGET CONAN_PKG::Boost PROPERTY INTERFACE_COMPILE_DEFINITIONS ${CONAN_COMPILE_DEFINITIONS_BOOST} + $<$:${CONAN_COMPILE_DEFINITIONS_BOOST_RELEASE}> + $<$:${CONAN_COMPILE_DEFINITIONS_BOOST_RELEASE}> + $<$:${CONAN_COMPILE_DEFINITIONS_BOOST_RELEASE}> + $<$:${CONAN_COMPILE_DEFINITIONS_BOOST_DEBUG}>) + set_property(TARGET CONAN_PKG::Boost PROPERTY INTERFACE_COMPILE_OPTIONS ${CONAN_C_FLAGS_BOOST_LIST} ${CONAN_CXX_FLAGS_BOOST_LIST} + $<$:${CONAN_C_FLAGS_BOOST_RELEASE_LIST} ${CONAN_CXX_FLAGS_BOOST_RELEASE_LIST}> + $<$:${CONAN_C_FLAGS_BOOST_RELEASE_LIST} ${CONAN_CXX_FLAGS_BOOST_RELEASE_LIST}> + $<$:${CONAN_C_FLAGS_BOOST_RELEASE_LIST} ${CONAN_CXX_FLAGS_BOOST_RELEASE_LIST}> + $<$:${CONAN_C_FLAGS_BOOST_DEBUG_LIST} ${CONAN_CXX_FLAGS_BOOST_DEBUG_LIST}>) + + + conan_package_library_targets("${CONAN_LIBS_ZLIB}" "${CONAN_LIB_DIRS_ZLIB}" + CONAN_PACKAGE_TARGETS_ZLIB "" "" zlib) + conan_package_library_targets("${CONAN_LIBS_ZLIB_DEBUG}" "${CONAN_LIB_DIRS_ZLIB_DEBUG}" + CONAN_PACKAGE_TARGETS_ZLIB_DEBUG "" "debug" zlib) + conan_package_library_targets("${CONAN_LIBS_ZLIB_RELEASE}" "${CONAN_LIB_DIRS_ZLIB_RELEASE}" + CONAN_PACKAGE_TARGETS_ZLIB_RELEASE "" "release" zlib) + + add_library(CONAN_PKG::zlib INTERFACE IMPORTED) + + # Property INTERFACE_LINK_FLAGS do not work, necessary to add to INTERFACE_LINK_LIBRARIES + set_property(TARGET CONAN_PKG::zlib PROPERTY INTERFACE_LINK_LIBRARIES ${CONAN_PACKAGE_TARGETS_ZLIB} ${CONAN_SHARED_LINKER_FLAGS_ZLIB_LIST} ${CONAN_EXE_LINKER_FLAGS_ZLIB_LIST} + $<$:${CONAN_PACKAGE_TARGETS_ZLIB_RELEASE} ${CONAN_SHARED_LINKER_FLAGS_ZLIB_RELEASE_LIST} ${CONAN_EXE_LINKER_FLAGS_ZLIB_RELEASE_LIST}> + $<$:${CONAN_PACKAGE_TARGETS_ZLIB_RELEASE} ${CONAN_SHARED_LINKER_FLAGS_ZLIB_RELEASE_LIST} ${CONAN_EXE_LINKER_FLAGS_ZLIB_RELEASE_LIST}> + $<$:${CONAN_PACKAGE_TARGETS_ZLIB_RELEASE} ${CONAN_SHARED_LINKER_FLAGS_ZLIB_RELEASE_LIST} ${CONAN_EXE_LINKER_FLAGS_ZLIB_RELEASE_LIST}> + $<$:${CONAN_PACKAGE_TARGETS_ZLIB_DEBUG} ${CONAN_SHARED_LINKER_FLAGS_ZLIB_DEBUG_LIST} ${CONAN_EXE_LINKER_FLAGS_ZLIB_DEBUG_LIST}> + ) + set_property(TARGET CONAN_PKG::zlib PROPERTY INTERFACE_INCLUDE_DIRECTORIES ${CONAN_INCLUDE_DIRS_ZLIB} + $<$:${CONAN_INCLUDE_DIRS_ZLIB_RELEASE}> + $<$:${CONAN_INCLUDE_DIRS_ZLIB_RELEASE}> + $<$:${CONAN_INCLUDE_DIRS_ZLIB_RELEASE}> + $<$:${CONAN_INCLUDE_DIRS_ZLIB_DEBUG}>) + set_property(TARGET CONAN_PKG::zlib PROPERTY INTERFACE_COMPILE_DEFINITIONS ${CONAN_COMPILE_DEFINITIONS_ZLIB} + $<$:${CONAN_COMPILE_DEFINITIONS_ZLIB_RELEASE}> + $<$:${CONAN_COMPILE_DEFINITIONS_ZLIB_RELEASE}> + $<$:${CONAN_COMPILE_DEFINITIONS_ZLIB_RELEASE}> + $<$:${CONAN_COMPILE_DEFINITIONS_ZLIB_DEBUG}>) + set_property(TARGET CONAN_PKG::zlib PROPERTY INTERFACE_COMPILE_OPTIONS ${CONAN_C_FLAGS_ZLIB_LIST} ${CONAN_CXX_FLAGS_ZLIB_LIST} + $<$:${CONAN_C_FLAGS_ZLIB_RELEASE_LIST} ${CONAN_CXX_FLAGS_ZLIB_RELEASE_LIST}> + $<$:${CONAN_C_FLAGS_ZLIB_RELEASE_LIST} ${CONAN_CXX_FLAGS_ZLIB_RELEASE_LIST}> + $<$:${CONAN_C_FLAGS_ZLIB_RELEASE_LIST} ${CONAN_CXX_FLAGS_ZLIB_RELEASE_LIST}> + $<$:${CONAN_C_FLAGS_ZLIB_DEBUG_LIST} ${CONAN_CXX_FLAGS_ZLIB_DEBUG_LIST}>) + + set(CONAN_TARGETS CONAN_PKG::Boost CONAN_PKG::zlib) + +endmacro() + + +macro(conan_basic_setup) + set(options TARGETS NO_OUTPUT_DIRS SKIP_RPATH KEEP_RPATHS) + cmake_parse_arguments(ARGUMENTS "${options}" "${oneValueArgs}" "${multiValueArgs}" ${ARGN} ) + if(CONAN_EXPORTED) + message(STATUS "Conan: called by CMake conan helper") + endif() + conan_check_compiler() + if(NOT ARGUMENTS_NO_OUTPUT_DIRS) + conan_output_dirs_setup() + endif() + conan_set_find_library_paths() + if(NOT ARGUMENTS_TARGETS) + message(STATUS "Conan: Using cmake global configuration") + conan_global_flags() + else() + message(STATUS "Conan: Using cmake targets configuration") + conan_define_targets() + endif() + if(ARGUMENTS_SKIP_RPATH) + # Change by "DEPRECATION" or "SEND_ERROR" when we are ready + message(WARNING "Conan: SKIP_RPATH is deprecated, it has been renamed to KEEP_RPATHS") + endif() + if(NOT ARGUMENTS_SKIP_RPATH AND NOT ARGUMENTS_KEEP_RPATHS) + # Parameter has renamed, but we keep the compatibility with old SKIP_RPATH + message(STATUS "Conan: Adjusting default RPATHs Conan policies") + conan_set_rpath() + endif() + conan_set_vs_runtime() + conan_set_libcxx() + conan_set_find_paths() +endmacro() + +macro(conan_set_find_paths) + # CMAKE_MODULE_PATH does not have Debug/Release config, but there are variables + # CONAN_CMAKE_MODULE_PATH_DEBUG to be used by the consumer + # CMake can find findXXX.cmake files in the root of packages + set(CMAKE_MODULE_PATH ${CONAN_CMAKE_MODULE_PATH} ${CMAKE_MODULE_PATH}) + + # Make find_package() to work + set(CMAKE_PREFIX_PATH ${CONAN_CMAKE_MODULE_PATH} ${CMAKE_PREFIX_PATH}) + + # Set the find root path (cross build) + set(CMAKE_FIND_ROOT_PATH ${CONAN_CMAKE_FIND_ROOT_PATH} ${CMAKE_FIND_ROOT_PATH}) + if(CONAN_CMAKE_FIND_ROOT_PATH_MODE_PROGRAM) + set(CMAKE_FIND_ROOT_PATH_MODE_PROGRAM ${CONAN_CMAKE_FIND_ROOT_PATH_MODE_PROGRAM}) + endif() + if(CONAN_CMAKE_FIND_ROOT_PATH_MODE_LIBRARY) + set(CMAKE_FIND_ROOT_PATH_MODE_LIBRARY ${CONAN_CMAKE_FIND_ROOT_PATH_MODE_LIBRARY}) + endif() + if(CONAN_CMAKE_FIND_ROOT_PATH_MODE_INCLUDE) + set(CMAKE_FIND_ROOT_PATH_MODE_INCLUDE ${CONAN_CMAKE_FIND_ROOT_PATH_MODE_INCLUDE}) + endif() +endmacro() + +macro(conan_set_find_library_paths) + # CMAKE_INCLUDE_PATH, CMAKE_LIBRARY_PATH does not have Debug/Release config, but there are variables + # CONAN_INCLUDE_DIRS_DEBUG/RELEASE CONAN_LIB_DIRS_DEBUG/RELEASE to be used by the consumer + # For find_library + set(CMAKE_INCLUDE_PATH ${CONAN_INCLUDE_DIRS} ${CMAKE_INCLUDE_PATH}) + set(CMAKE_LIBRARY_PATH ${CONAN_LIB_DIRS} ${CMAKE_LIBRARY_PATH}) +endmacro() + +macro(conan_set_vs_runtime) + if(CONAN_LINK_RUNTIME) + foreach(flag CMAKE_C_FLAGS_RELEASE CMAKE_CXX_FLAGS_RELEASE + CMAKE_C_FLAGS_RELWITHDEBINFO CMAKE_CXX_FLAGS_RELWITHDEBINFO + CMAKE_C_FLAGS_MINSIZEREL CMAKE_CXX_FLAGS_MINSIZEREL) + if(DEFINED ${flag}) + string(REPLACE "/MD" ${CONAN_LINK_RUNTIME} ${flag} "${${flag}}") + endif() + endforeach() + foreach(flag CMAKE_C_FLAGS_DEBUG CMAKE_CXX_FLAGS_DEBUG) + if(DEFINED ${flag}) + string(REPLACE "/MDd" ${CONAN_LINK_RUNTIME} ${flag} "${${flag}}") + endif() + endforeach() + endif() +endmacro() + +macro(conan_flags_setup) + # Macro maintained for backwards compatibility + conan_set_find_library_paths() + conan_global_flags() + conan_set_rpath() + conan_set_vs_runtime() + conan_set_libcxx() +endmacro() + + + +function(conan_find_libraries_abs_path libraries package_libdir libraries_abs_path) + foreach(_LIBRARY_NAME ${libraries}) + unset(CONAN_FOUND_LIBRARY CACHE) + find_library(CONAN_FOUND_LIBRARY NAME ${_LIBRARY_NAME} PATHS ${package_libdir} + NO_DEFAULT_PATH NO_CMAKE_FIND_ROOT_PATH) + if(CONAN_FOUND_LIBRARY) + message(STATUS "Library ${_LIBRARY_NAME} found ${CONAN_FOUND_LIBRARY}") + set(CONAN_FULLPATH_LIBS ${CONAN_FULLPATH_LIBS} ${CONAN_FOUND_LIBRARY}) + else() + message(STATUS "Library ${_LIBRARY_NAME} not found in package, might be system one") + set(CONAN_FULLPATH_LIBS ${CONAN_FULLPATH_LIBS} ${_LIBRARY_NAME}) + endif() + endforeach() + unset(CONAN_FOUND_LIBRARY CACHE) + set(${libraries_abs_path} ${CONAN_FULLPATH_LIBS} PARENT_SCOPE) +endfunction() + +function(conan_package_library_targets libraries package_libdir libraries_abs_path deps build_type package_name) + foreach(_LIBRARY_NAME ${libraries}) + unset(CONAN_FOUND_LIBRARY CACHE) + find_library(CONAN_FOUND_LIBRARY NAME ${_LIBRARY_NAME} PATHS ${package_libdir} + NO_DEFAULT_PATH NO_CMAKE_FIND_ROOT_PATH) + if(CONAN_FOUND_LIBRARY) + message(STATUS "Library ${_LIBRARY_NAME} found ${CONAN_FOUND_LIBRARY}") + set(_LIB_NAME CONAN_LIB::${package_name}_${_LIBRARY_NAME}${build_type}) + add_library(${_LIB_NAME} UNKNOWN IMPORTED) + set_target_properties(${_LIB_NAME} PROPERTIES IMPORTED_LOCATION ${CONAN_FOUND_LIBRARY}) + string(REPLACE " " ";" deps_list "${deps}") + set_property(TARGET ${_LIB_NAME} PROPERTY INTERFACE_LINK_LIBRARIES ${deps_list}) + set(CONAN_FULLPATH_LIBS ${CONAN_FULLPATH_LIBS} ${_LIB_NAME}) + else() + message(STATUS "Library ${_LIBRARY_NAME} not found in package, might be system one") + set(CONAN_FULLPATH_LIBS ${CONAN_FULLPATH_LIBS} ${_LIBRARY_NAME}) + endif() + endforeach() + unset(CONAN_FOUND_LIBRARY CACHE) + set(${libraries_abs_path} ${CONAN_FULLPATH_LIBS} PARENT_SCOPE) +endfunction() + +macro(conan_set_libcxx) + if(DEFINED CONAN_LIBCXX) + message(STATUS "Conan: C++ stdlib: ${CONAN_LIBCXX}") + if(CONAN_COMPILER STREQUAL "clang" OR CONAN_COMPILER STREQUAL "apple-clang") + if(CONAN_LIBCXX STREQUAL "libstdc++" OR CONAN_LIBCXX STREQUAL "libstdc++11" ) + set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -stdlib=libstdc++") + elseif(CONAN_LIBCXX STREQUAL "libc++") + set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -stdlib=libc++") + endif() + endif() + if(CONAN_COMPILER STREQUAL "sun-cc") + if(CONAN_LIBCXX STREQUAL "libCstd") + set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -library=Cstd") + elseif(CONAN_LIBCXX STREQUAL "libstdcxx") + set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -library=stdcxx4") + elseif(CONAN_LIBCXX STREQUAL "libstlport") + set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -library=stlport4") + elseif(CONAN_LIBCXX STREQUAL "libstdc++") + set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -library=stdcpp") + endif() + endif() + if(CONAN_LIBCXX STREQUAL "libstdc++11") + add_definitions(-D_GLIBCXX_USE_CXX11_ABI=1) + elseif(CONAN_LIBCXX STREQUAL "libstdc++") + add_definitions(-D_GLIBCXX_USE_CXX11_ABI=0) + endif() + endif() +endmacro() + +macro(conan_set_rpath) + if(APPLE) + # https://cmake.org/Wiki/CMake_RPATH_handling + # CONAN GUIDE: All generated libraries should have the id and dependencies to other + # dylibs without path, just the name, EX: + # libMyLib1.dylib: + # libMyLib1.dylib (compatibility version 0.0.0, current version 0.0.0) + # libMyLib0.dylib (compatibility version 0.0.0, current version 0.0.0) + # /usr/lib/libc++.1.dylib (compatibility version 1.0.0, current version 120.0.0) + # /usr/lib/libSystem.B.dylib (compatibility version 1.0.0, current version 1197.1.1) + set(CMAKE_SKIP_RPATH 1) # AVOID RPATH FOR *.dylib, ALL LIBS BETWEEN THEM AND THE EXE + # SHOULD BE ON THE LINKER RESOLVER PATH (./ IS ONE OF THEM) + # Policy CMP0068 + # We want the old behavior, in CMake >= 3.9 CMAKE_SKIP_RPATH won't affect the install_name in OSX + set(CMAKE_INSTALL_NAME_DIR "") + endif() +endmacro() + +macro(conan_output_dirs_setup) + set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/bin) + set(CMAKE_RUNTIME_OUTPUT_DIRECTORY_RELEASE ${CMAKE_RUNTIME_OUTPUT_DIRECTORY}) + set(CMAKE_RUNTIME_OUTPUT_DIRECTORY_RELWITHDEBINFO ${CMAKE_RUNTIME_OUTPUT_DIRECTORY}) + set(CMAKE_RUNTIME_OUTPUT_DIRECTORY_MINSIZEREL ${CMAKE_RUNTIME_OUTPUT_DIRECTORY}) + set(CMAKE_RUNTIME_OUTPUT_DIRECTORY_DEBUG ${CMAKE_RUNTIME_OUTPUT_DIRECTORY}) + + set(CMAKE_ARCHIVE_OUTPUT_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/lib) + set(CMAKE_ARCHIVE_OUTPUT_DIRECTORY_RELEASE ${CMAKE_ARCHIVE_OUTPUT_DIRECTORY}) + set(CMAKE_ARCHIVE_OUTPUT_DIRECTORY_RELWITHDEBINFO ${CMAKE_ARCHIVE_OUTPUT_DIRECTORY}) + set(CMAKE_ARCHIVE_OUTPUT_DIRECTORY_MINSIZEREL ${CMAKE_ARCHIVE_OUTPUT_DIRECTORY}) + set(CMAKE_ARCHIVE_OUTPUT_DIRECTORY_DEBUG ${CMAKE_ARCHIVE_OUTPUT_DIRECTORY}) + + set(CMAKE_LIBRARY_OUTPUT_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/lib) + set(CMAKE_LIBRARY_OUTPUT_DIRECTORY_RELEASE ${CMAKE_LIBRARY_OUTPUT_DIRECTORY}) + set(CMAKE_LIBRARY_OUTPUT_DIRECTORY_RELWITHDEBINFO ${CMAKE_LIBRARY_OUTPUT_DIRECTORY}) + set(CMAKE_LIBRARY_OUTPUT_DIRECTORY_MINSIZEREL ${CMAKE_LIBRARY_OUTPUT_DIRECTORY}) + set(CMAKE_LIBRARY_OUTPUT_DIRECTORY_DEBUG ${CMAKE_LIBRARY_OUTPUT_DIRECTORY}) +endmacro() + +macro(conan_split_version VERSION_STRING MAJOR MINOR) + #make a list from the version string + string(REPLACE "." ";" VERSION_LIST "${VERSION_STRING}") + + #write output values + list(LENGTH VERSION_LIST _version_len) + list(GET VERSION_LIST 0 ${MAJOR}) + if(${_version_len} GREATER 1) + list(GET VERSION_LIST 1 ${MINOR}) + endif() +endmacro() + +macro(conan_error_compiler_version) + message(FATAL_ERROR "Incorrect '${CONAN_COMPILER}' version 'compiler.version=${CONAN_COMPILER_VERSION}'" + " is not the one detected by CMake: '${CMAKE_CXX_COMPILER_ID}=" ${VERSION_MAJOR}.${VERSION_MINOR}') +endmacro() + +set(_CONAN_CURRENT_DIR ${CMAKE_CURRENT_LIST_DIR}) +function(conan_get_compiler CONAN_INFO_COMPILER CONAN_INFO_COMPILER_VERSION) + MESSAGE(STATUS "Current conanbuildinfo.cmake directory: " ${_CONAN_CURRENT_DIR}) + if(NOT EXISTS ${_CONAN_CURRENT_DIR}/conaninfo.txt) + message(STATUS "WARN: conaninfo.txt not found") + return() + endif() + + file (READ "${_CONAN_CURRENT_DIR}/conaninfo.txt" CONANINFO) + + string(REGEX MATCH "compiler=([-A-Za-z0-9_ ]+)" _MATCHED ${CONANINFO}) + if(DEFINED CMAKE_MATCH_1) + string(STRIP "${CMAKE_MATCH_1}" _CONAN_INFO_COMPILER) + set(${CONAN_INFO_COMPILER} ${_CONAN_INFO_COMPILER} PARENT_SCOPE) + endif() + + string(REGEX MATCH "compiler.version=([-A-Za-z0-9_.]+)" _MATCHED ${CONANINFO}) + if(DEFINED CMAKE_MATCH_1) + string(STRIP "${CMAKE_MATCH_1}" _CONAN_INFO_COMPILER_VERSION) + set(${CONAN_INFO_COMPILER_VERSION} ${_CONAN_INFO_COMPILER_VERSION} PARENT_SCOPE) + endif() +endfunction() + +function(check_compiler_version) + conan_split_version(${CMAKE_CXX_COMPILER_VERSION} VERSION_MAJOR VERSION_MINOR) + if(CMAKE_CXX_COMPILER_ID MATCHES MSVC) + # https://cmake.org/cmake/help/v3.2/variable/MSVC_VERSION.html + if( (CONAN_COMPILER_VERSION STREQUAL "14" AND NOT VERSION_MAJOR STREQUAL "19") OR + (CONAN_COMPILER_VERSION STREQUAL "12" AND NOT VERSION_MAJOR STREQUAL "18") OR + (CONAN_COMPILER_VERSION STREQUAL "11" AND NOT VERSION_MAJOR STREQUAL "17") OR + (CONAN_COMPILER_VERSION STREQUAL "10" AND NOT VERSION_MAJOR STREQUAL "16") OR + (CONAN_COMPILER_VERSION STREQUAL "9" AND NOT VERSION_MAJOR STREQUAL "15") OR + (CONAN_COMPILER_VERSION STREQUAL "8" AND NOT VERSION_MAJOR STREQUAL "14") OR + (CONAN_COMPILER_VERSION STREQUAL "7" AND NOT VERSION_MAJOR STREQUAL "13") OR + (CONAN_COMPILER_VERSION STREQUAL "6" AND NOT VERSION_MAJOR STREQUAL "12") ) + conan_error_compiler_version() + endif() + elseif(CONAN_COMPILER STREQUAL "gcc") + set(_CHECK_VERSION ${VERSION_MAJOR}.${VERSION_MINOR}) + if(NOT ${CONAN_COMPILER_VERSION} VERSION_LESS 5.0) + message(STATUS "Conan: Compiler GCC>=5, checking major version ${CONAN_COMPILER_VERSION}") + conan_split_version(${CONAN_COMPILER_VERSION} CONAN_COMPILER_MAJOR CONAN_COMPILER_MINOR) + if("${CONAN_COMPILER_MINOR}" STREQUAL "") + set(_CHECK_VERSION ${VERSION_MAJOR}) + endif() + endif() + message(STATUS "Conan: Checking correct version: ${_CHECK_VERSION}") + if(NOT ${_CHECK_VERSION} VERSION_EQUAL CONAN_COMPILER_VERSION) + conan_error_compiler_version() + endif() + elseif(CONAN_COMPILER MATCHES "clang" OR CONAN_COMPILER STREQUAL "sun-cc") + if(NOT ${VERSION_MAJOR}.${VERSION_MINOR} VERSION_EQUAL CONAN_COMPILER_VERSION) + conan_error_compiler_version() + endif() + else() + message(STATUS "WARN: Unknown compiler '${CONAN_COMPILER}', skipping the version check...") + endif() +endfunction() + +function(conan_check_compiler) + if(NOT DEFINED CMAKE_CXX_COMPILER_ID) + if(DEFINED CMAKE_C_COMPILER_ID) + message(STATUS "This project seems to be plain C, using '${CMAKE_C_COMPILER_ID}' compiler") + set(CMAKE_CXX_COMPILER_ID ${CMAKE_C_COMPILER_ID}) + set(CMAKE_CXX_COMPILER_VERSION ${CMAKE_C_COMPILER_VERSION}) + else() + message(FATAL_ERROR "This project seems to be plain C, but no compiler defined") + endif() + endif() + if(CONAN_DISABLE_CHECK_COMPILER) + message(STATUS "WARN: Disabled conan compiler checks") + return() + endif() + + if(NOT DEFINED CONAN_COMPILER) + conan_get_compiler(CONAN_COMPILER CONAN_COMPILER_VERSION) + if(NOT DEFINED CONAN_COMPILER) + message(STATUS "WARN: CONAN_COMPILER variable not set, please make sure yourself that " + "your compiler and version matches your declared settings") + return() + endif() + endif() + + if(NOT CMAKE_HOST_SYSTEM_NAME STREQUAL ${CMAKE_SYSTEM_NAME}) + set(CROSS_BUILDING 1) + endif() + + # If using VS, verify toolset + if (CONAN_COMPILER STREQUAL "Visual Studio") + if (CONAN_SETTINGS_COMPILER_TOOLSET MATCHES "LLVM" OR + CONAN_SETTINGS_COMPILER_TOOLSET MATCHES "clang") + set(EXPECTED_CMAKE_CXX_COMPILER_ID "Clang") + elseif (CONAN_SETTINGS_COMPILER_TOOLSET MATCHES "Intel") + set(EXPECTED_CMAKE_CXX_COMPILER_ID "Intel") + else() + set(EXPECTED_CMAKE_CXX_COMPILER_ID "MSVC") + endif() + + if (NOT CMAKE_CXX_COMPILER_ID MATCHES ${EXPECTED_CMAKE_CXX_COMPILER_ID}) + message(FATAL_ERROR "Incorrect '${CONAN_COMPILER}'. Toolset specifies compiler as '${EXPECTED_CMAKE_CXX_COMPILER_ID}' " + "but CMake detected '${CMAKE_CXX_COMPILER_ID}'") + endif() + + # Avoid checks when cross compiling, apple-clang crashes because its APPLE but not apple-clang + # Actually CMake is detecting "clang" when you are using apple-clang, only if CMP0025 is set to NEW will detect apple-clang + elseif((CONAN_COMPILER STREQUAL "gcc" AND NOT CMAKE_CXX_COMPILER_ID MATCHES "GNU") OR + (CONAN_COMPILER STREQUAL "apple-clang" AND NOT CROSS_BUILDING AND (NOT APPLE OR NOT CMAKE_CXX_COMPILER_ID MATCHES "Clang")) OR + (CONAN_COMPILER STREQUAL "clang" AND NOT CMAKE_CXX_COMPILER_ID MATCHES "Clang") OR + (CONAN_COMPILER STREQUAL "sun-cc" AND NOT CMAKE_CXX_COMPILER_ID MATCHES "SunPro") ) + message(FATAL_ERROR "Incorrect '${CONAN_COMPILER}', is not the one detected by CMake: '${CMAKE_CXX_COMPILER_ID}'") + endif() + + + if(NOT DEFINED CONAN_COMPILER_VERSION) + message(STATUS "WARN: CONAN_COMPILER_VERSION variable not set, please make sure yourself " + "that your compiler version matches your declared settings") + return() + endif() + check_compiler_version() +endfunction() + +macro(conan_set_flags build_type) + set(CMAKE_CXX_FLAGS${build_type} "${CMAKE_CXX_FLAGS${build_type}} ${CONAN_CXX_FLAGS${build_type}}") + set(CMAKE_C_FLAGS${build_type} "${CMAKE_C_FLAGS${build_type}} ${CONAN_C_FLAGS${build_type}}") + set(CMAKE_SHARED_LINKER_FLAGS${build_type} "${CMAKE_SHARED_LINKER_FLAGS${build_type}} ${CONAN_SHARED_LINKER_FLAGS${build_type}}") + set(CMAKE_EXE_LINKER_FLAGS${build_type} "${CMAKE_EXE_LINKER_FLAGS${build_type}} ${CONAN_EXE_LINKER_FLAGS${build_type}}") +endmacro() + +macro(conan_global_flags) + if(CONAN_SYSTEM_INCLUDES) + include_directories(SYSTEM ${CONAN_INCLUDE_DIRS} + "$<$:${CONAN_INCLUDE_DIRS_RELEASE}>" + "$<$:${CONAN_INCLUDE_DIRS_RELEASE}>" + "$<$:${CONAN_INCLUDE_DIRS_RELEASE}>" + "$<$:${CONAN_INCLUDE_DIRS_DEBUG}>") + else() + include_directories(${CONAN_INCLUDE_DIRS} + "$<$:${CONAN_INCLUDE_DIRS_RELEASE}>" + "$<$:${CONAN_INCLUDE_DIRS_RELEASE}>" + "$<$:${CONAN_INCLUDE_DIRS_RELEASE}>" + "$<$:${CONAN_INCLUDE_DIRS_DEBUG}>") + endif() + + link_directories(${CONAN_LIB_DIRS}) + + conan_find_libraries_abs_path("${CONAN_LIBS_DEBUG}" "${CONAN_LIB_DIRS_DEBUG}" + CONAN_LIBS_DEBUG) + conan_find_libraries_abs_path("${CONAN_LIBS_RELEASE}" "${CONAN_LIB_DIRS_RELEASE}" + CONAN_LIBS_RELEASE) + + add_compile_options(${CONAN_DEFINES} + "$<$:${CONAN_DEFINES_DEBUG}>" + "$<$:${CONAN_DEFINES_RELEASE}>" + "$<$:${CONAN_DEFINES_RELEASE}>" + "$<$:${CONAN_DEFINES_RELEASE}>") + + conan_set_flags("") + conan_set_flags("_RELEASE") + conan_set_flags("_DEBUG") + +endmacro() + +macro(conan_target_link_libraries target) + if(CONAN_TARGETS) + target_link_libraries(${target} ${CONAN_TARGETS}) + else() + target_link_libraries(${target} ${CONAN_LIBS}) + foreach(_LIB ${CONAN_LIBS_RELEASE}) + target_link_libraries(${target} optimized ${_LIB}) + endforeach() + foreach(_LIB ${CONAN_LIBS_DEBUG}) + target_link_libraries(${target} debug ${_LIB}) + endforeach() + endif() +endmacro() + + +### Definition of user declared vars (user_info) ### + diff --git a/boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/conanbuildinfo.txt b/boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/conanbuildinfo.txt new file mode 100644 index 0000000..4b9477c --- /dev/null +++ b/boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/conanbuildinfo.txt @@ -0,0 +1,180 @@ +[includedirs] +C:/.conan/oqf7uzoi/1/include +C:/Users/thoma/.conan/data/zlib/1.2.11/conan/stable/package/85f780d0530411a64b0be4407b381706014b445d/include + +[libdirs] +C:/.conan/oqf7uzoi/1/lib +C:/Users/thoma/.conan/data/zlib/1.2.11/conan/stable/package/85f780d0530411a64b0be4407b381706014b445d/lib + +[bindirs] + + +[resdirs] + + +[builddirs] +C:/.conan/oqf7uzoi/1/ +C:/Users/thoma/.conan/data/zlib/1.2.11/conan/stable/package/85f780d0530411a64b0be4407b381706014b445d/ + +[libs] +libboost_wave-vc100-mt-1_66 +libboost_unit_test_framework-vc100-mt-1_66 +libboost_prg_exec_monitor-vc100-mt-1_66 +libboost_container-vc100-mt-1_66 +libboost_graph-vc100-mt-1_66 +libboost_iostreams-vc100-mt-1_66 +libboost_locale-vc100-mt-1_66 +libboost_log-vc100-mt-1_66 +libboost_log_setup-vc100-mt-1_66 +libboost_math_c99-vc100-mt-1_66 +libboost_math_c99f-vc100-mt-1_66 +libboost_math_c99l-vc100-mt-1_66 +libboost_math_tr1-vc100-mt-1_66 +libboost_math_tr1f-vc100-mt-1_66 +libboost_math_tr1l-vc100-mt-1_66 +libboost_program_options-vc100-mt-1_66 +libboost_random-vc100-mt-1_66 +libboost_regex-vc100-mt-1_66 +libboost_wserialization-vc100-mt-1_66 +libboost_serialization-vc100-mt-1_66 +libboost_signals-vc100-mt-1_66 +libboost_coroutine-vc100-mt-1_66 +libboost_context-vc100-mt-1_66 +libboost_timer-vc100-mt-1_66 +libboost_thread-vc100-mt-1_66 +libboost_chrono-vc100-mt-1_66 +libboost_date_time-vc100-mt-1_66 +libboost_atomic-vc100-mt-1_66 +libboost_filesystem-vc100-mt-1_66 +libboost_system-vc100-mt-1_66 +libboost_exception-vc100-mt-1_66 +libboost_test_exec_monitor-vc100-mt-1_66 +zlib + +[defines] +BOOST_USE_STATIC_LIBS +BOOST_ALL_NO_LIB + +[cppflags] + + +[cflags] + + +[sharedlinkflags] + + +[exelinkflags] + + + +[includedirs_Boost] +C:/.conan/oqf7uzoi/1/include + +[libdirs_Boost] +C:/.conan/oqf7uzoi/1/lib + +[bindirs_Boost] + + +[resdirs_Boost] + + +[builddirs_Boost] +C:/.conan/oqf7uzoi/1/ + +[libs_Boost] +libboost_wave-vc100-mt-1_66 +libboost_unit_test_framework-vc100-mt-1_66 +libboost_prg_exec_monitor-vc100-mt-1_66 +libboost_container-vc100-mt-1_66 +libboost_graph-vc100-mt-1_66 +libboost_iostreams-vc100-mt-1_66 +libboost_locale-vc100-mt-1_66 +libboost_log-vc100-mt-1_66 +libboost_log_setup-vc100-mt-1_66 +libboost_math_c99-vc100-mt-1_66 +libboost_math_c99f-vc100-mt-1_66 +libboost_math_c99l-vc100-mt-1_66 +libboost_math_tr1-vc100-mt-1_66 +libboost_math_tr1f-vc100-mt-1_66 +libboost_math_tr1l-vc100-mt-1_66 +libboost_program_options-vc100-mt-1_66 +libboost_random-vc100-mt-1_66 +libboost_regex-vc100-mt-1_66 +libboost_wserialization-vc100-mt-1_66 +libboost_serialization-vc100-mt-1_66 +libboost_signals-vc100-mt-1_66 +libboost_coroutine-vc100-mt-1_66 +libboost_context-vc100-mt-1_66 +libboost_timer-vc100-mt-1_66 +libboost_thread-vc100-mt-1_66 +libboost_chrono-vc100-mt-1_66 +libboost_date_time-vc100-mt-1_66 +libboost_atomic-vc100-mt-1_66 +libboost_filesystem-vc100-mt-1_66 +libboost_system-vc100-mt-1_66 +libboost_exception-vc100-mt-1_66 +libboost_test_exec_monitor-vc100-mt-1_66 + +[defines_Boost] +BOOST_USE_STATIC_LIBS +BOOST_ALL_NO_LIB + +[cppflags_Boost] + + +[cflags_Boost] + + +[sharedlinkflags_Boost] + + +[exelinkflags_Boost] + + +[rootpath_Boost] +C:/.conan/oqf7uzoi/1 + + +[includedirs_zlib] +C:/Users/thoma/.conan/data/zlib/1.2.11/conan/stable/package/85f780d0530411a64b0be4407b381706014b445d/include + +[libdirs_zlib] +C:/Users/thoma/.conan/data/zlib/1.2.11/conan/stable/package/85f780d0530411a64b0be4407b381706014b445d/lib + +[bindirs_zlib] + + +[resdirs_zlib] + + +[builddirs_zlib] +C:/Users/thoma/.conan/data/zlib/1.2.11/conan/stable/package/85f780d0530411a64b0be4407b381706014b445d/ + +[libs_zlib] +zlib + +[defines_zlib] + + +[cppflags_zlib] + + +[cflags_zlib] + + +[sharedlinkflags_zlib] + + +[exelinkflags_zlib] + + +[rootpath_zlib] +C:/Users/thoma/.conan/data/zlib/1.2.11/conan/stable/package/85f780d0530411a64b0be4407b381706014b445d + + +[USER_Boost] +[USER_zlib] +[ENV_Boost] +[ENV_zlib] \ No newline at end of file diff --git a/boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/conaninfo.txt b/boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/conaninfo.txt new file mode 100644 index 0000000..a121513 --- /dev/null +++ b/boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/conaninfo.txt @@ -0,0 +1,64 @@ +[settings] + arch=x86_64 + build_type=Release + compiler=Visual Studio + compiler.runtime=MD + compiler.version=10 + os=Windows + +[requires] + Boost/1.Y.Z + +[options] + + +[full_settings] + arch=x86_64 + build_type=Release + compiler=Visual Studio + compiler.runtime=MD + compiler.version=10 + os=Windows + +[full_requires] + Boost/1.66.0@intence/testing:b7d6bfb52908a406ec1df5d10e4e10219eaa8250 + zlib/1.2.11@conan/stable:85f780d0530411a64b0be4407b381706014b445d + +[full_options] + Boost:header_only=False + Boost:python=False + Boost:shared=False + Boost:without_atomic=False + Boost:without_chrono=False + Boost:without_container=False + Boost:without_context=False + Boost:without_coroutine=False + Boost:without_coroutine2=False + Boost:without_date_time=False + Boost:without_exception=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_random=False + Boost:without_regex=False + Boost:without_serialization=False + Boost:without_signals=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 + zlib:shared=False + +[recipe_hash] + + +[env] + diff --git a/boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/example.dir/Release/CL.read.1.tlog b/boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/example.dir/Release/CL.read.1.tlog new file mode 100644 index 0000000..638f377 Binary files /dev/null and b/boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/example.dir/Release/CL.read.1.tlog differ diff --git a/boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/example.dir/Release/CL.write.1.tlog b/boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/example.dir/Release/CL.write.1.tlog new file mode 100644 index 0000000..1d00a0d Binary files /dev/null and b/boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/example.dir/Release/CL.write.1.tlog differ diff --git a/boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/example.dir/Release/cl.command.1.tlog b/boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/example.dir/Release/cl.command.1.tlog new file mode 100644 index 0000000..f96e363 Binary files /dev/null and b/boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/example.dir/Release/cl.command.1.tlog differ diff --git a/boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/example.dir/Release/custombuild.command.1.tlog b/boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/example.dir/Release/custombuild.command.1.tlog new file mode 100644 index 0000000..9557173 Binary files /dev/null and b/boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/example.dir/Release/custombuild.command.1.tlog differ diff --git a/boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/example.dir/Release/custombuild.read.1.tlog b/boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/example.dir/Release/custombuild.read.1.tlog new file mode 100644 index 0000000..43afb0c Binary files /dev/null and b/boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/example.dir/Release/custombuild.read.1.tlog differ diff --git a/boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/example.dir/Release/custombuild.write.1.tlog b/boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/example.dir/Release/custombuild.write.1.tlog new file mode 100644 index 0000000..6061b28 Binary files /dev/null and b/boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/example.dir/Release/custombuild.write.1.tlog differ diff --git a/boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/example.dir/Release/example.exe.intermediate.manifest b/boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/example.dir/Release/example.exe.intermediate.manifest new file mode 100644 index 0000000..ecea6f7 --- /dev/null +++ b/boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/example.dir/Release/example.exe.intermediate.manifest @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/example.dir/Release/example.lastbuildstate b/boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/example.dir/Release/example.lastbuildstate new file mode 100644 index 0000000..9e59947 --- /dev/null +++ b/boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/example.dir/Release/example.lastbuildstate @@ -0,0 +1,2 @@ +#v4.0:Windows7.1SDK:false +Release|x64|C:\Users\thoma\Documents\repos\conan-boost\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\| diff --git a/boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/example.dir/Release/example.obj b/boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/example.dir/Release/example.obj new file mode 100644 index 0000000..473e0a0 Binary files /dev/null and b/boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/example.dir/Release/example.obj differ diff --git a/boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/example.dir/Release/example.write.1.tlog b/boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/example.dir/Release/example.write.1.tlog new file mode 100644 index 0000000..e69de29 diff --git a/boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/example.dir/Release/link.command.1.tlog b/boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/example.dir/Release/link.command.1.tlog new file mode 100644 index 0000000..f7f584d Binary files /dev/null and b/boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/example.dir/Release/link.command.1.tlog differ diff --git a/boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/example.dir/Release/link.read.1.tlog b/boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/example.dir/Release/link.read.1.tlog new file mode 100644 index 0000000..01e0887 Binary files /dev/null and b/boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/example.dir/Release/link.read.1.tlog differ diff --git a/boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/example.dir/Release/link.write.1.tlog b/boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/example.dir/Release/link.write.1.tlog new file mode 100644 index 0000000..77288be Binary files /dev/null and b/boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/example.dir/Release/link.write.1.tlog differ diff --git a/boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/example.dir/Release/mt.command.1.tlog b/boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/example.dir/Release/mt.command.1.tlog new file mode 100644 index 0000000..05aa14e Binary files /dev/null and b/boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/example.dir/Release/mt.command.1.tlog differ diff --git a/boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/example.dir/Release/mt.read.1.tlog b/boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/example.dir/Release/mt.read.1.tlog new file mode 100644 index 0000000..c12e500 Binary files /dev/null and b/boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/example.dir/Release/mt.read.1.tlog differ diff --git a/boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/example.dir/Release/mt.write.1.tlog b/boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/example.dir/Release/mt.write.1.tlog new file mode 100644 index 0000000..80c5181 Binary files /dev/null and b/boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/example.dir/Release/mt.write.1.tlog differ diff --git a/boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/example.vcxproj b/boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/example.vcxproj new file mode 100644 index 0000000..e724fc5 --- /dev/null +++ b/boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/example.vcxproj @@ -0,0 +1,323 @@ + + + + + Debug + x64 + + + Release + x64 + + + MinSizeRel + x64 + + + RelWithDebInfo + x64 + + + + {A9BB12A1-994E-3D78-A03C-406D1B02115E} + Win32Proj + x64 + example + + + + Application + MultiByte + Windows7.1SDK + + + Application + MultiByte + Windows7.1SDK + + + Application + MultiByte + Windows7.1SDK + + + Application + MultiByte + Windows7.1SDK + + + + + + + + + + <_ProjectFileVersion>10.0.20506.1 + C:\Users\thoma\Documents\repos\conan-boost\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\bin\ + example.dir\Debug\ + example + .exe + true + true + C:\Users\thoma\Documents\repos\conan-boost\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\bin\ + example.dir\Release\ + example + .exe + false + true + C:\Users\thoma\Documents\repos\conan-boost\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\bin\ + example.dir\MinSizeRel\ + example + .exe + false + true + C:\Users\thoma\Documents\repos\conan-boost\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\bin\ + example.dir\RelWithDebInfo\ + example + .exe + true + true + + + + C:\.conan\oqf7uzoi\1\include;C:\Users\thoma\.conan\data\zlib\1.2.11\conan\stable\package\85f780d0530411a64b0be4407b381706014b445d\include;%(AdditionalIncludeDirectories) + Debug/ + EnableFastChecks + CompileAsCpp + ProgramDatabase + Sync + Disabled + true + Disabled + NotUsing + 8 + MultiThreadedDLL + true + Level3 + WIN32;_WINDOWS;BOOST_USE_STATIC_LIBS;BOOST_ALL_NO_LIB;CMAKE_INTDIR="Debug";%(PreprocessorDefinitions) + $(IntDir) + + + WIN32;_DEBUG;_WINDOWS;BOOST_USE_STATIC_LIBS;BOOST_ALL_NO_LIB;CMAKE_INTDIR=\"Debug\";%(PreprocessorDefinitions) + C:\.conan\oqf7uzoi\1\include;C:\Users\thoma\.conan\data\zlib\1.2.11\conan\stable\package\85f780d0530411a64b0be4407b381706014b445d\include;%(AdditionalIncludeDirectories) + + + C:\.conan\oqf7uzoi\1\include;C:\Users\thoma\.conan\data\zlib\1.2.11\conan\stable\package\85f780d0530411a64b0be4407b381706014b445d\include;%(AdditionalIncludeDirectories) + $(ProjectDir)/$(IntDir) + %(Filename).h + %(Filename).tlb + %(Filename)_i.c + %(Filename)_p.c + + + kernel32.lib;user32.lib;gdi32.lib;winspool.lib;shell32.lib;ole32.lib;oleaut32.lib;uuid.lib;comdlg32.lib;advapi32.lib + C:/.conan/oqf7uzoi/1/lib;C:/.conan/oqf7uzoi/1/lib/$(Configuration);C:/Users/thoma/.conan/data/zlib/1.2.11/conan/stable/package/85f780d0530411a64b0be4407b381706014b445d/lib;C:/Users/thoma/.conan/data/zlib/1.2.11/conan/stable/package/85f780d0530411a64b0be4407b381706014b445d/lib/$(Configuration);%(AdditionalLibraryDirectories) + %(AdditionalOptions) /machine:x64 + true + %(IgnoreSpecificDefaultLibraries) + C:/Users/thoma/Documents/repos/conan-boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/lib/example.lib + C:/Users/thoma/Documents/repos/conan-boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/bin/example.pdb + Console + + + false + + + + + C:\.conan\oqf7uzoi\1\include;C:\Users\thoma\.conan\data\zlib\1.2.11\conan\stable\package\85f780d0530411a64b0be4407b381706014b445d\include;%(AdditionalIncludeDirectories) + Release/ + CompileAsCpp + Sync + AnySuitable + true + MaxSpeed + NotUsing + 8 + MultiThreadedDLL + true + Level3 + WIN32;_WINDOWS;NDEBUG;BOOST_USE_STATIC_LIBS;BOOST_ALL_NO_LIB;CMAKE_INTDIR="Release";%(PreprocessorDefinitions) + $(IntDir) + + + + WIN32;_WINDOWS;NDEBUG;BOOST_USE_STATIC_LIBS;BOOST_ALL_NO_LIB;CMAKE_INTDIR=\"Release\";%(PreprocessorDefinitions) + C:\.conan\oqf7uzoi\1\include;C:\Users\thoma\.conan\data\zlib\1.2.11\conan\stable\package\85f780d0530411a64b0be4407b381706014b445d\include;%(AdditionalIncludeDirectories) + + + C:\.conan\oqf7uzoi\1\include;C:\Users\thoma\.conan\data\zlib\1.2.11\conan\stable\package\85f780d0530411a64b0be4407b381706014b445d\include;%(AdditionalIncludeDirectories) + $(ProjectDir)/$(IntDir) + %(Filename).h + %(Filename).tlb + %(Filename)_i.c + %(Filename)_p.c + + + kernel32.lib;user32.lib;gdi32.lib;winspool.lib;shell32.lib;ole32.lib;oleaut32.lib;uuid.lib;comdlg32.lib;advapi32.lib + C:/.conan/oqf7uzoi/1/lib;C:/.conan/oqf7uzoi/1/lib/$(Configuration);C:/Users/thoma/.conan/data/zlib/1.2.11/conan/stable/package/85f780d0530411a64b0be4407b381706014b445d/lib;C:/Users/thoma/.conan/data/zlib/1.2.11/conan/stable/package/85f780d0530411a64b0be4407b381706014b445d/lib/$(Configuration);%(AdditionalLibraryDirectories) + %(AdditionalOptions) /machine:x64 + false + %(IgnoreSpecificDefaultLibraries) + C:/Users/thoma/Documents/repos/conan-boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/lib/example.lib + C:/Users/thoma/Documents/repos/conan-boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/bin/example.pdb + Console + + + false + + + + + C:\.conan\oqf7uzoi\1\include;C:\Users\thoma\.conan\data\zlib\1.2.11\conan\stable\package\85f780d0530411a64b0be4407b381706014b445d\include;%(AdditionalIncludeDirectories) + MinSizeRel/ + CompileAsCpp + Sync + OnlyExplicitInline + true + MinSpace + NotUsing + 8 + MultiThreadedDLL + true + Level3 + WIN32;_WINDOWS;NDEBUG;BOOST_USE_STATIC_LIBS;BOOST_ALL_NO_LIB;CMAKE_INTDIR="MinSizeRel";%(PreprocessorDefinitions) + $(IntDir) + + + + WIN32;_WINDOWS;NDEBUG;BOOST_USE_STATIC_LIBS;BOOST_ALL_NO_LIB;CMAKE_INTDIR=\"MinSizeRel\";%(PreprocessorDefinitions) + C:\.conan\oqf7uzoi\1\include;C:\Users\thoma\.conan\data\zlib\1.2.11\conan\stable\package\85f780d0530411a64b0be4407b381706014b445d\include;%(AdditionalIncludeDirectories) + + + C:\.conan\oqf7uzoi\1\include;C:\Users\thoma\.conan\data\zlib\1.2.11\conan\stable\package\85f780d0530411a64b0be4407b381706014b445d\include;%(AdditionalIncludeDirectories) + $(ProjectDir)/$(IntDir) + %(Filename).h + %(Filename).tlb + %(Filename)_i.c + %(Filename)_p.c + + + kernel32.lib;user32.lib;gdi32.lib;winspool.lib;shell32.lib;ole32.lib;oleaut32.lib;uuid.lib;comdlg32.lib;advapi32.lib + C:/.conan/oqf7uzoi/1/lib;C:/.conan/oqf7uzoi/1/lib/$(Configuration);C:/Users/thoma/.conan/data/zlib/1.2.11/conan/stable/package/85f780d0530411a64b0be4407b381706014b445d/lib;C:/Users/thoma/.conan/data/zlib/1.2.11/conan/stable/package/85f780d0530411a64b0be4407b381706014b445d/lib/$(Configuration);%(AdditionalLibraryDirectories) + %(AdditionalOptions) /machine:x64 + false + %(IgnoreSpecificDefaultLibraries) + C:/Users/thoma/Documents/repos/conan-boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/lib/example.lib + C:/Users/thoma/Documents/repos/conan-boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/bin/example.pdb + Console + + + false + + + + + C:\.conan\oqf7uzoi\1\include;C:\Users\thoma\.conan\data\zlib\1.2.11\conan\stable\package\85f780d0530411a64b0be4407b381706014b445d\include;%(AdditionalIncludeDirectories) + RelWithDebInfo/ + CompileAsCpp + ProgramDatabase + Sync + OnlyExplicitInline + true + MaxSpeed + NotUsing + 8 + MultiThreadedDLL + true + Level3 + WIN32;_WINDOWS;NDEBUG;BOOST_USE_STATIC_LIBS;BOOST_ALL_NO_LIB;CMAKE_INTDIR="RelWithDebInfo";%(PreprocessorDefinitions) + $(IntDir) + + + WIN32;_WINDOWS;NDEBUG;BOOST_USE_STATIC_LIBS;BOOST_ALL_NO_LIB;CMAKE_INTDIR=\"RelWithDebInfo\";%(PreprocessorDefinitions) + C:\.conan\oqf7uzoi\1\include;C:\Users\thoma\.conan\data\zlib\1.2.11\conan\stable\package\85f780d0530411a64b0be4407b381706014b445d\include;%(AdditionalIncludeDirectories) + + + C:\.conan\oqf7uzoi\1\include;C:\Users\thoma\.conan\data\zlib\1.2.11\conan\stable\package\85f780d0530411a64b0be4407b381706014b445d\include;%(AdditionalIncludeDirectories) + $(ProjectDir)/$(IntDir) + %(Filename).h + %(Filename).tlb + %(Filename)_i.c + %(Filename)_p.c + + + kernel32.lib;user32.lib;gdi32.lib;winspool.lib;shell32.lib;ole32.lib;oleaut32.lib;uuid.lib;comdlg32.lib;advapi32.lib + C:/.conan/oqf7uzoi/1/lib;C:/.conan/oqf7uzoi/1/lib/$(Configuration);C:/Users/thoma/.conan/data/zlib/1.2.11/conan/stable/package/85f780d0530411a64b0be4407b381706014b445d/lib;C:/Users/thoma/.conan/data/zlib/1.2.11/conan/stable/package/85f780d0530411a64b0be4407b381706014b445d/lib/$(Configuration);%(AdditionalLibraryDirectories) + %(AdditionalOptions) /machine:x64 + true + %(IgnoreSpecificDefaultLibraries) + C:/Users/thoma/Documents/repos/conan-boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/lib/example.lib + C:/Users/thoma/Documents/repos/conan-boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/bin/example.pdb + Console + + + false + + + + + Building Custom Rule C:/Users/thoma/Documents/repos/conan-boost/test_package/CMakeLists.txt + setlocal +"C:\Program Files\CMake\bin\cmake.exe" -HC:/Users/thoma/Documents/repos/conan-boost/test_package -BC:/Users/thoma/Documents/repos/conan-boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd --check-stamp-file C:/Users/thoma/Documents/repos/conan-boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/generate.stamp +if %errorlevel% neq 0 goto :cmEnd +:cmEnd +endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone +:cmErrorLevel +exit /b %1 +:cmDone +if %errorlevel% neq 0 goto :VCEnd + C:/Users/thoma/Documents/repos/conan-boost/test_package/CMakeLists.txt;C:\Users\thoma\Documents\repos\conan-boost\test_package\CMakeLists.txt;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineSystem.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeSystem.cmake.in;C:\Users\thoma\Documents\repos\conan-boost\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\3.10.1\CMakeSystem.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeSystemSpecificInitialize.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCXXCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\Windows-Determine-CXX.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCompilerId.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCompilerIdDetection.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\ADSP-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\ARMCC-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\AppleClang-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Clang-DetermineCompilerInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Borland-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Clang-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Clang-DetermineCompilerInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Comeau-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Compaq-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Cray-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Embarcadero-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Fujitsu-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\GHS-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\GNU-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\HP-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\IAR-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Intel-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\MIPSpro-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\MSVC-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\NVIDIA-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\OpenWatcom-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\PGI-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\PathScale-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\SCO-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\SunPro-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\TI-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\VisualAge-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\IBMCPP-CXX-DetermineVersionInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Watcom-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\XL-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\IBMCPP-CXX-DetermineVersionInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\zOS-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\IBMCPP-CXX-DetermineVersionInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CompilerId\VS-10.vcxproj.in;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeFindBinUtils.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCXXCompiler.cmake.in;C:\Users\thoma\Documents\repos\conan-boost\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\3.10.1\CMakeCXXCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeSystemSpecificInformation.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeGenericSystem.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\Windows.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\WindowsPaths.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCXXInformation.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeLanguageInformation.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\MSVC-CXX.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\CMakeCommonCompilerMacros.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\Windows-MSVC-CXX.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\Windows-MSVC.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineRCCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeRCCompiler.cmake.in;C:\Users\thoma\Documents\repos\conan-boost\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\3.10.1\CMakeRCCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeRCInformation.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeTestRCCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCommonLanguageInclude.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeTestCXXCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeTestCompilerCommon.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCompilerABI.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeParseImplicitLinkInfo.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCXXCompilerABI.cpp;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCompileFeatures.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Internal\FeatureTesting.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\MSVC-CXX-FeatureTests.cmake;C:\Users\thoma\Documents\repos\conan-boost\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\feature_tests.cxx;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCXXCompiler.cmake.in;C:\Users\thoma\Documents\repos\conan-boost\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\3.10.1\CMakeCXXCompiler.cmake;C:\Users\thoma\Documents\repos\conan-boost\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\conanbuildinfo.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeParseArguments.cmake;C:\.conan\oqf7uzoi\1\FindBoost.cmake;C:\Users\thoma\Documents\repos\conan-boost\test_package\CMakeLists.txt;%(AdditionalInputs) + C:\Users\thoma\Documents\repos\conan-boost\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\generate.stamp + Building Custom Rule C:/Users/thoma/Documents/repos/conan-boost/test_package/CMakeLists.txt + setlocal +"C:\Program Files\CMake\bin\cmake.exe" -HC:/Users/thoma/Documents/repos/conan-boost/test_package -BC:/Users/thoma/Documents/repos/conan-boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd --check-stamp-file C:/Users/thoma/Documents/repos/conan-boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/generate.stamp +if %errorlevel% neq 0 goto :cmEnd +:cmEnd +endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone +:cmErrorLevel +exit /b %1 +:cmDone +if %errorlevel% neq 0 goto :VCEnd + C:/Users/thoma/Documents/repos/conan-boost/test_package/CMakeLists.txt;C:\Users\thoma\Documents\repos\conan-boost\test_package\CMakeLists.txt;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineSystem.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeSystem.cmake.in;C:\Users\thoma\Documents\repos\conan-boost\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\3.10.1\CMakeSystem.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeSystemSpecificInitialize.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCXXCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\Windows-Determine-CXX.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCompilerId.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCompilerIdDetection.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\ADSP-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\ARMCC-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\AppleClang-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Clang-DetermineCompilerInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Borland-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Clang-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Clang-DetermineCompilerInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Comeau-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Compaq-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Cray-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Embarcadero-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Fujitsu-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\GHS-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\GNU-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\HP-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\IAR-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Intel-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\MIPSpro-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\MSVC-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\NVIDIA-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\OpenWatcom-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\PGI-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\PathScale-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\SCO-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\SunPro-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\TI-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\VisualAge-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\IBMCPP-CXX-DetermineVersionInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Watcom-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\XL-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\IBMCPP-CXX-DetermineVersionInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\zOS-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\IBMCPP-CXX-DetermineVersionInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CompilerId\VS-10.vcxproj.in;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeFindBinUtils.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCXXCompiler.cmake.in;C:\Users\thoma\Documents\repos\conan-boost\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\3.10.1\CMakeCXXCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeSystemSpecificInformation.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeGenericSystem.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\Windows.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\WindowsPaths.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCXXInformation.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeLanguageInformation.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\MSVC-CXX.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\CMakeCommonCompilerMacros.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\Windows-MSVC-CXX.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\Windows-MSVC.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineRCCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeRCCompiler.cmake.in;C:\Users\thoma\Documents\repos\conan-boost\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\3.10.1\CMakeRCCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeRCInformation.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeTestRCCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCommonLanguageInclude.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeTestCXXCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeTestCompilerCommon.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCompilerABI.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeParseImplicitLinkInfo.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCXXCompilerABI.cpp;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCompileFeatures.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Internal\FeatureTesting.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\MSVC-CXX-FeatureTests.cmake;C:\Users\thoma\Documents\repos\conan-boost\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\feature_tests.cxx;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCXXCompiler.cmake.in;C:\Users\thoma\Documents\repos\conan-boost\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\3.10.1\CMakeCXXCompiler.cmake;C:\Users\thoma\Documents\repos\conan-boost\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\conanbuildinfo.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeParseArguments.cmake;C:\.conan\oqf7uzoi\1\FindBoost.cmake;C:\Users\thoma\Documents\repos\conan-boost\test_package\CMakeLists.txt;%(AdditionalInputs) + C:\Users\thoma\Documents\repos\conan-boost\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\generate.stamp + Building Custom Rule C:/Users/thoma/Documents/repos/conan-boost/test_package/CMakeLists.txt + setlocal +"C:\Program Files\CMake\bin\cmake.exe" -HC:/Users/thoma/Documents/repos/conan-boost/test_package -BC:/Users/thoma/Documents/repos/conan-boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd --check-stamp-file C:/Users/thoma/Documents/repos/conan-boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/generate.stamp +if %errorlevel% neq 0 goto :cmEnd +:cmEnd +endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone +:cmErrorLevel +exit /b %1 +:cmDone +if %errorlevel% neq 0 goto :VCEnd + C:/Users/thoma/Documents/repos/conan-boost/test_package/CMakeLists.txt;C:\Users\thoma\Documents\repos\conan-boost\test_package\CMakeLists.txt;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineSystem.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeSystem.cmake.in;C:\Users\thoma\Documents\repos\conan-boost\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\3.10.1\CMakeSystem.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeSystemSpecificInitialize.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCXXCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\Windows-Determine-CXX.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCompilerId.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCompilerIdDetection.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\ADSP-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\ARMCC-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\AppleClang-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Clang-DetermineCompilerInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Borland-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Clang-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Clang-DetermineCompilerInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Comeau-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Compaq-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Cray-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Embarcadero-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Fujitsu-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\GHS-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\GNU-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\HP-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\IAR-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Intel-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\MIPSpro-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\MSVC-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\NVIDIA-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\OpenWatcom-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\PGI-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\PathScale-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\SCO-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\SunPro-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\TI-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\VisualAge-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\IBMCPP-CXX-DetermineVersionInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Watcom-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\XL-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\IBMCPP-CXX-DetermineVersionInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\zOS-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\IBMCPP-CXX-DetermineVersionInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CompilerId\VS-10.vcxproj.in;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeFindBinUtils.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCXXCompiler.cmake.in;C:\Users\thoma\Documents\repos\conan-boost\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\3.10.1\CMakeCXXCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeSystemSpecificInformation.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeGenericSystem.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\Windows.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\WindowsPaths.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCXXInformation.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeLanguageInformation.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\MSVC-CXX.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\CMakeCommonCompilerMacros.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\Windows-MSVC-CXX.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\Windows-MSVC.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineRCCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeRCCompiler.cmake.in;C:\Users\thoma\Documents\repos\conan-boost\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\3.10.1\CMakeRCCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeRCInformation.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeTestRCCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCommonLanguageInclude.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeTestCXXCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeTestCompilerCommon.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCompilerABI.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeParseImplicitLinkInfo.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCXXCompilerABI.cpp;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCompileFeatures.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Internal\FeatureTesting.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\MSVC-CXX-FeatureTests.cmake;C:\Users\thoma\Documents\repos\conan-boost\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\feature_tests.cxx;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCXXCompiler.cmake.in;C:\Users\thoma\Documents\repos\conan-boost\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\3.10.1\CMakeCXXCompiler.cmake;C:\Users\thoma\Documents\repos\conan-boost\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\conanbuildinfo.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeParseArguments.cmake;C:\.conan\oqf7uzoi\1\FindBoost.cmake;C:\Users\thoma\Documents\repos\conan-boost\test_package\CMakeLists.txt;%(AdditionalInputs) + C:\Users\thoma\Documents\repos\conan-boost\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\generate.stamp + Building Custom Rule C:/Users/thoma/Documents/repos/conan-boost/test_package/CMakeLists.txt + setlocal +"C:\Program Files\CMake\bin\cmake.exe" -HC:/Users/thoma/Documents/repos/conan-boost/test_package -BC:/Users/thoma/Documents/repos/conan-boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd --check-stamp-file C:/Users/thoma/Documents/repos/conan-boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/generate.stamp +if %errorlevel% neq 0 goto :cmEnd +:cmEnd +endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone +:cmErrorLevel +exit /b %1 +:cmDone +if %errorlevel% neq 0 goto :VCEnd + C:/Users/thoma/Documents/repos/conan-boost/test_package/CMakeLists.txt;C:\Users\thoma\Documents\repos\conan-boost\test_package\CMakeLists.txt;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineSystem.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeSystem.cmake.in;C:\Users\thoma\Documents\repos\conan-boost\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\3.10.1\CMakeSystem.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeSystemSpecificInitialize.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCXXCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\Windows-Determine-CXX.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCompilerId.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCompilerIdDetection.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\ADSP-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\ARMCC-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\AppleClang-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Clang-DetermineCompilerInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Borland-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Clang-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Clang-DetermineCompilerInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Comeau-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Compaq-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Cray-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Embarcadero-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Fujitsu-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\GHS-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\GNU-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\HP-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\IAR-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Intel-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\MIPSpro-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\MSVC-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\NVIDIA-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\OpenWatcom-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\PGI-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\PathScale-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\SCO-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\SunPro-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\TI-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\VisualAge-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\IBMCPP-CXX-DetermineVersionInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Watcom-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\XL-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\IBMCPP-CXX-DetermineVersionInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\zOS-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\IBMCPP-CXX-DetermineVersionInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CompilerId\VS-10.vcxproj.in;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeFindBinUtils.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCXXCompiler.cmake.in;C:\Users\thoma\Documents\repos\conan-boost\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\3.10.1\CMakeCXXCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeSystemSpecificInformation.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeGenericSystem.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\Windows.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\WindowsPaths.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCXXInformation.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeLanguageInformation.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\MSVC-CXX.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\CMakeCommonCompilerMacros.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\Windows-MSVC-CXX.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\Windows-MSVC.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineRCCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeRCCompiler.cmake.in;C:\Users\thoma\Documents\repos\conan-boost\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\3.10.1\CMakeRCCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeRCInformation.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeTestRCCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCommonLanguageInclude.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeTestCXXCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeTestCompilerCommon.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCompilerABI.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeParseImplicitLinkInfo.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCXXCompilerABI.cpp;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCompileFeatures.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Internal\FeatureTesting.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\MSVC-CXX-FeatureTests.cmake;C:\Users\thoma\Documents\repos\conan-boost\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\feature_tests.cxx;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCXXCompiler.cmake.in;C:\Users\thoma\Documents\repos\conan-boost\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\3.10.1\CMakeCXXCompiler.cmake;C:\Users\thoma\Documents\repos\conan-boost\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\conanbuildinfo.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeParseArguments.cmake;C:\.conan\oqf7uzoi\1\FindBoost.cmake;C:\Users\thoma\Documents\repos\conan-boost\test_package\CMakeLists.txt;%(AdditionalInputs) + C:\Users\thoma\Documents\repos\conan-boost\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\generate.stamp + + + + + + + + {E3821C68-24D8-3914-BBE5-11F0AC651B82} + ZERO_CHECK + + + + + + \ No newline at end of file diff --git a/boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/example.vcxproj.filters b/boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/example.vcxproj.filters new file mode 100644 index 0000000..a859ebc --- /dev/null +++ b/boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/example.vcxproj.filters @@ -0,0 +1,16 @@ + + + + + Source Files + + + + + + + + {EE1E9F9B-724C-394C-820D-D37BFAD84A17} + + + diff --git a/boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/x64/Release/ALL_BUILD/ALL_BUILD.lastbuildstate b/boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/x64/Release/ALL_BUILD/ALL_BUILD.lastbuildstate new file mode 100644 index 0000000..9e59947 --- /dev/null +++ b/boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/x64/Release/ALL_BUILD/ALL_BUILD.lastbuildstate @@ -0,0 +1,2 @@ +#v4.0:Windows7.1SDK:false +Release|x64|C:\Users\thoma\Documents\repos\conan-boost\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\| diff --git a/boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/x64/Release/ALL_BUILD/custombuild.command.1.tlog b/boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/x64/Release/ALL_BUILD/custombuild.command.1.tlog new file mode 100644 index 0000000..9557173 Binary files /dev/null and b/boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/x64/Release/ALL_BUILD/custombuild.command.1.tlog differ diff --git a/boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/x64/Release/ALL_BUILD/custombuild.read.1.tlog b/boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/x64/Release/ALL_BUILD/custombuild.read.1.tlog new file mode 100644 index 0000000..43afb0c Binary files /dev/null and b/boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/x64/Release/ALL_BUILD/custombuild.read.1.tlog differ diff --git a/boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/x64/Release/ALL_BUILD/custombuild.write.1.tlog b/boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/x64/Release/ALL_BUILD/custombuild.write.1.tlog new file mode 100644 index 0000000..6061b28 Binary files /dev/null and b/boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/x64/Release/ALL_BUILD/custombuild.write.1.tlog differ diff --git a/boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/x64/Release/ZERO_CHECK/ZERO_CHECK.lastbuildstate b/boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/x64/Release/ZERO_CHECK/ZERO_CHECK.lastbuildstate new file mode 100644 index 0000000..9e59947 --- /dev/null +++ b/boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/x64/Release/ZERO_CHECK/ZERO_CHECK.lastbuildstate @@ -0,0 +1,2 @@ +#v4.0:Windows7.1SDK:false +Release|x64|C:\Users\thoma\Documents\repos\conan-boost\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\| diff --git a/boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/x64/Release/ZERO_CHECK/ZERO_CHECK.vcxprojResolveAssemblyReference.cache b/boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/x64/Release/ZERO_CHECK/ZERO_CHECK.vcxprojResolveAssemblyReference.cache new file mode 100644 index 0000000..f5be7cf Binary files /dev/null and b/boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/x64/Release/ZERO_CHECK/ZERO_CHECK.vcxprojResolveAssemblyReference.cache differ diff --git a/boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/x64/Release/ZERO_CHECK/custombuild.command.1.tlog b/boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/x64/Release/ZERO_CHECK/custombuild.command.1.tlog new file mode 100644 index 0000000..a5ea632 Binary files /dev/null and b/boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/x64/Release/ZERO_CHECK/custombuild.command.1.tlog differ diff --git a/boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/x64/Release/ZERO_CHECK/custombuild.read.1.tlog b/boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/x64/Release/ZERO_CHECK/custombuild.read.1.tlog new file mode 100644 index 0000000..679b134 Binary files /dev/null and b/boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/x64/Release/ZERO_CHECK/custombuild.read.1.tlog differ diff --git a/boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/x64/Release/ZERO_CHECK/custombuild.write.1.tlog b/boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/x64/Release/ZERO_CHECK/custombuild.write.1.tlog new file mode 100644 index 0000000..e92d4cd Binary files /dev/null and b/boost/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/x64/Release/ZERO_CHECK/custombuild.write.1.tlog differ diff --git a/boost/test_package/conanfile.py b/boost/test_package/conanfile.py new file mode 100644 index 0000000..9fd40f7 --- /dev/null +++ b/boost/test_package/conanfile.py @@ -0,0 +1,22 @@ +from conans import ConanFile, CMake, tools +import os + +class BoostTestConan(ConanFile): + settings = "os", "compiler", "build_type", "arch" + generators = "cmake" + + def build(self): + cmake = CMake(self) + # Current dir is "test_package/build/" and CMakeLists.txt is in "test_package" + cmake.configure() + cmake.build() + + def imports(self): + self.copy("*.dll", dst="bin", src="bin") + self.copy("*.dylib*", dst="bin", src="lib") + self.copy('*.so*', dst='bin', src='lib') + + def test(self): + if not tools.cross_building(self.settings): + os.chdir("bin") + self.run(".%sexample" % os.sep) diff --git a/boost/test_package/example.cpp b/boost/test_package/example.cpp new file mode 100644 index 0000000..5c6d1fd --- /dev/null +++ b/boost/test_package/example.cpp @@ -0,0 +1,20 @@ +#include +#include +#include + + +class A { + private: + int _x; + public: + A(int x): _x(x) {} + + int getX(){ return _x; } + +}; + +int main() { + + boost::shared_ptr x = boost::make_shared(0); + return x->getX(); +} diff --git a/cares/conanfile.py b/cares/conanfile.py new file mode 100644 index 0000000..646f96a --- /dev/null +++ b/cares/conanfile.py @@ -0,0 +1,44 @@ +from conans import ConanFile, CMake, tools + + +class CaresConan(ConanFile): + name = "cares" + version = "1.14.0" + license = "" + url = "" + description = "" + settings = "os", "compiler", "build_type", "arch" + options = {"shared": [True, False]} + default_options = "shared=False" + generators = "cmake" + + def source(self): + version_str = 'cares-' + str(self.version).replace(".","_") + self.run("git clone --branch %s --single-branch https://github.com/c-ares/c-ares.git cares" %(version_str) ) + # This small hack might be useful to guarantee proper /MT /MD linkage + # in MSVC if the packaged project doesn't have variables to set it + # properly + tools.replace_in_file("cares/CMakeLists.txt", "PROJECT (c-ares C)", + '''PROJECT (c-ares C) +include(${CMAKE_BINARY_DIR}/conanbuildinfo.cmake) +conan_basic_setup()''') + + def build(self): + cmake = CMake(self) + cmake.definitions['CMAKE_INSTALL_PREFIX'] = "install" + if ( self.options.shared ) : + cmake.definitions['CARES_STATIC'] = 'OFF' + cmake.definitions['CARES_SHARED'] = 'ON' + else: + cmake.definitions['CARES_STATIC'] = 'ON' + cmake.definitions['CARES_SHARED'] = 'OFF' + cmake.configure(source_folder="cares") + cmake.build() + cmake.install() + + def package(self): + self.copy("*", dst=".", src="install") + + def package_info(self): + pass + diff --git a/eigen/conanfile.py b/eigen/conanfile.py new file mode 100644 index 0000000..562f28d --- /dev/null +++ b/eigen/conanfile.py @@ -0,0 +1,30 @@ +from conans import ConanFile, CMake, tools +import os + +class Eigen3Conan(ConanFile): + name = "Eigen3" + license = "" + url = "https://github.com/Av3m/conan-eigen.git" + options = {"shared": [True, False]} + default_options = "shared=False" + settings = "os", "arch", "build_type", "compiler" + generators = "cmake" + + def source(self): + self.run("hg clone https://bitbucket.org/eigen/eigen") + self.run("hg checkout %s" %( self.version ),cwd="eigen") + + def build(self): + cmake = CMake(self) + cmake.definitions["CMAKE_INSTALL_PREFIX"] = "install" + cmake.configure(source_dir="eigen", build_dir=".") + cmake.build() + cmake.install() + + def package(self): + self.copy("*", dst=".", src="install") + self.copy("*", dst="cmake", src="install/share/eigen3/cmake") + tools.replace_in_file(os.path.join(self.package_folder,"cmake","Eigen3Config.cmake") ,"""get_filename_component(PACKAGE_PREFIX_DIR "${CMAKE_CURRENT_LIST_DIR}/../../../" ABSOLUTE)""","""get_filename_component(PACKAGE_PREFIX_DIR "${CMAKE_CURRENT_LIST_DIR}/../" ABSOLUTE)""") + + def package_info(self): + self.cpp_info.includedirs = [ os.path.join("include","eigen3") ] diff --git a/flann/conanfile.py b/flann/conanfile.py new file mode 100644 index 0000000..40f7b0d --- /dev/null +++ b/flann/conanfile.py @@ -0,0 +1,66 @@ +from conans import ConanFile, CMake, tools +from conans.tools import download, unzip, check_md5, check_sha1, check_sha256 +import os +import shutil + + +class FlannConan(ConanFile): + name = "flann" + license = "BSD-2-Clause" + url = "http://www.cs.ubc.ca/research/flann/" + settings = "os", "compiler", "build_type", "arch" + options = {"shared": [True, False]} + default_options = "shared=False" + generators = "cmake" + exports="patches*" + description="""FLANN is a library for performing fast approximate nearest neighbor searches in high dimensional spaces. It contains a collection of algorithms we found to work best for nearest neighbor search and a system for automatically choosing the best algorithm and optimum parameters depending on the dataset. +\nFLANN is written in C++ and contains bindings for the following languages: C, MATLAB and Python. +""" + + def source(self): + zipfile="flann-%s-src.zip" % ( self.version ) + download("http://www.cs.ubc.ca/research/flann/uploads/FLANN/flann-%s-src.zip" % (self.version) ,zipfile ) + unzip(zipfile) + shutil.move("flann-%s-src" %(self.version) ,"flann_src") + + # This small hack might be useful to guarantee proper /MT /MD linkage in MSVC + # if the packaged project doesn't have variables to set it properly + + tools.replace_in_file("flann_src/CMakeLists.txt", "project(flann)", '''PROJECT(flann) +include(${CMAKE_BINARY_DIR}/conanbuildinfo.cmake) +conan_basic_setup()''') + + if ( self.settings.compiler == "Visual Studio" ): + tools.patch(patch_file="patches/msvc_fix.patch") + + + def build(self): + cmake = CMake(self) + cmake.definitions["CMAKE_INSTALL_PREFIX"]="install" + if self.options.shared: + cmake.definitions["BUILD_SHARED_LIBS"]="ON" + else: + cmake.definitions["BUILD_SHARED_LIBS"]="OFF" + cmake.configure(source_dir="flann_src",build_dir=".") + cmake.build() + cmake.install() + + def package(self): + self.copy("*", dst=".", src="install",keep_path=True) + self.copy("FindFlann.cmake", dst=".", src="flann_src/cmake",keep_path=False) + + + def package_info(self): + self.cpp_info.includedirs = ['include'] # Ordered list of include paths + self.cpp_info.libs = ['flann'] # The libs to link against + self.cpp_info.libdirs = ['lib'] # Directories where libraries can be found + self.cpp_info.resdirs = ['res'] # Directories where resources, data, etc can be found + self.cpp_info.bindirs = [] # Directories where executables and shared libs can be found + self.cpp_info.defines = [] # preprocessor definitions + self.cpp_info.cflags = [] # pure C flags + self.cpp_info.cppflags = [] # C++ compilation flags + self.cpp_info.sharedlinkflags = [] # linker flags + self.cpp_info.exelinkflags = [] # linker flags + self.env_info.FLANN_ROOT= self.package_folder + self.env_info.PKG_CONFIG_PATH.append(os.path.join(self.package_folder,"lib","pkgconfig")) + tools.replace_prefix_in_pc_file(os.path.join(self.package_folder,"lib","pkgconfig","flann.pc"), self.package_folder) diff --git a/flann/patches/msvc_fix.patch b/flann/patches/msvc_fix.patch new file mode 100644 index 0000000..6a5b709 --- /dev/null +++ b/flann/patches/msvc_fix.patch @@ -0,0 +1,13 @@ +--- flann_src/src/cpp/flann/util/serialization.h.orig Tue Jan 10 20:37:31 2017 ++++ flann_src/src/cpp/flann/util/serialization.h Tue Jan 10 20:53:54 2017 +@@ -89,7 +89,9 @@ + BASIC_TYPE_SERIALIZER(float); + BASIC_TYPE_SERIALIZER(double); + BASIC_TYPE_SERIALIZER(bool); +- ++#ifdef _MSC_VER ++BASIC_TYPE_SERIALIZER(unsigned __int64); ++#endif + + + // serializer for std::vector diff --git a/g2o/.conanfile.py.un~ b/g2o/.conanfile.py.un~ new file mode 100644 index 0000000..cd5b285 Binary files /dev/null and b/g2o/.conanfile.py.un~ differ diff --git a/g2o/conanfile.py b/g2o/conanfile.py new file mode 100644 index 0000000..61a9162 --- /dev/null +++ b/g2o/conanfile.py @@ -0,0 +1,113 @@ +from conans import ConanFile, CMake, tools +import os +import shutil + +class G2OConan(ConanFile): + name = "g2o" + url = "http://www.intence.de" + settings = "os", "compiler", "build_type", "arch" + options = {"shared": [True, False]} + default_options = "shared=True" + generators = "cmake" + version = "2e35669" + + def requirements(self): + self.requires("suitesparse/5164583@%s/%s" %( self.user, self.channel) ) + + self.requires("Eigen3/3.3.4@%s/%s" %( self.user, self.channel)) + + def source(self): + #self.run('git clone --branch %s --single-branch https://github.com/RainerKuemmerle/g2o.git' % (self.version) ) + self.run('git clone https://github.com/RainerKuemmerle/g2o.git' ) + self.run('git checkout %s' % (self.version),cwd="g2o" ) + + + def build(self): + + tools.replace_in_file("g2o/CMakeLists.txt","""PROJECT(g2o)""","""PROJECT(g2o) +include(${CMAKE_BINARY_DIR}/conanbuildinfo.cmake) +conan_basic_setup()""") + + #fix wrong define + tools.replace_in_file("g2o/CMakeLists.txt","""ADD_DEFINITIONS(-DWINDOWS)""", + """ADD_DEFINITIONS(-DWINDOWS) + ADD_DEFINITIONS(-Od) +ADD_DEFINITIONS(-D_WINDOWS)""") + + + #tools.replace_in_file("g2o/CMakeLists.txt","""FIND_PACKAGE(CSparse)""","""FIND_PACKAGE(CSparse NO_CMAKE_SYSTEM_PATH)""") + + #fix Non-C++11 compatibility + #tools.replace_in_file("g2o/g2o/core/dynamic_aligned_buffer.hpp","""m_size{ 0 }, m_ptr{ nullptr }""","""m_size( 0 ), m_ptr( nullptr )""") + + #fix very strange compiler issue with VS2010 SP1 + tools.replace_in_file("g2o/g2o/core/sparse_optimizer.cpp", + """estimatePropagator.propagate(fixedVertices, costFunction);""", + """estimatePropagator.propagate(fixedVertices, costFunction, EstimatePropagator::PropagateAction(),numeric_limits::max(),numeric_limits::max());""") + + + #fix cmake package detection + if ( self.settings.compiler == "Visual Studio"): + os.remove("g2o/cmake_modules/FindBLAS.cmake") + os.remove("g2o/cmake_modules/FindLAPACK.cmake") + + os.remove("g2o/cmake_modules/FindCSparse.cmake") + os.remove("g2o/cmake_modules/FindSuiteSparse.cmake") + os.remove("g2o/cmake_modules/FindCholmod.cmake") + + + cmake = CMake(self,parallel=True) + + if self.options.shared: + cmake.definitions["BUILD_SHARED_LIBS"] = "ON" + + cmake.definitions["CMAKE_INSTALL_PREFIX"] = "install" + cmake.definitions["G2O_BUILD_EXAMPLES"] = "OFF" + cmake.definitions["G2O_BUILD_APPS"] = "ON" + cmake.definitions["G2O_USE_CSPARSE"] = "ON" + cmake.definitions["BUILD_CSPARSE"] = "OFF" + + + cmake.configure(source_dir="g2o",build_dir="." ) + cmake.build() + cmake.install() + + + def package(self): + self.copy("*", src="install", dst=".") + self.copy("FindG2O.cmake", src="g2o/cmake_modules", dst=".",keep_path=False) + + def package_info(self): + libs = [ + "g2o_core", + "g2o_cli", + "g2o_opengl_helper", + "g2o_ext_freeglut_minimal", + "g2o_solver_pcg", + "g2o_solver_eigen", + "g2o_solver_dense", + "g2o_solver_cholmod", + "g2o_solver_csparse", + "g2o_solver_structure_only", + "g2o_solver_slam2d_linear", + "g2o_stuff", + "g2o_types_data", + "g2o_types_icp", + "g2o_types_sba", + "g2o_types_sclam2d", + "g2o_types_sim3", + "g2o_types_slam2d_addons", + "g2o_types_slam2d", + "g2o_types_slam3d_addons", + "g2o_types_slam3d" + ] + + + if self.settings.build_type == 'Debug': + self.cpp_info.libs = [ name+"_d" for name in libs ] + else: + self.cpp_info.libs = libs + + self.cpp_info.includedirs = ['include'] # Ordered list of include paths + self.cpp_info.libdirs = ['lib'] # Directories where libraries can be found + self.cpp_info.bindirs = ['bin'] # Directories where executables and shared libs can be found diff --git a/g2o/conanfile.py~ b/g2o/conanfile.py~ new file mode 100644 index 0000000..7e0faba --- /dev/null +++ b/g2o/conanfile.py~ @@ -0,0 +1,111 @@ +from conans import ConanFile, CMake, tools +import os +import shutil + +class G2OConan(ConanFile): + name = "g2o" + url = "http://www.intence.de" + settings = "os", "compiler", "build_type", "arch" + options = {"shared": [True, False]} + default_options = "shared=True" + generators = "cmake" + version = "2e35669" + + def requirements(self): + self.requires("suitesparse/5164583@%s/%s" %( self.user, self.channel) ) + + self.requires("Eigen3/3.3.4@%s/%s" %( self.user, self.channel)) + + def source(self): + #self.run('git clone --branch %s --single-branch https://github.com/RainerKuemmerle/g2o.git' % (self.version) ) + self.run('git clone https://github.com/RainerKuemmerle/g2o.git' ) + self.run('git checkout %s' % (self.version),cwd="g2o" ) + + + def build(self): + + tools.replace_in_file("g2o/CMakeLists.txt","""PROJECT(g2o)""","""PROJECT(g2o) +include(${CMAKE_BINARY_DIR}/conanbuildinfo.cmake) +conan_basic_setup()""") + + #fix wrong define + tools.replace_in_file("g2o/CMakeLists.txt","""ADD_DEFINITIONS(-DWINDOWS)""", + """ADD_DEFINITIONS(-DWINDOWS) + ADD_DEFINITIONS(-Od) +ADD_DEFINITIONS(-D_WINDOWS)""") + + + #tools.replace_in_file("g2o/CMakeLists.txt","""FIND_PACKAGE(CSparse)""","""FIND_PACKAGE(CSparse NO_CMAKE_SYSTEM_PATH)""") + + #fix Non-C++11 compatibility + #tools.replace_in_file("g2o/g2o/core/dynamic_aligned_buffer.hpp","""m_size{ 0 }, m_ptr{ nullptr }""","""m_size( 0 ), m_ptr( nullptr )""") + + #fix very strange compiler issue with VS2010 SP1 + tools.replace_in_file("g2o/g2o/core/sparse_optimizer.cpp", + """estimatePropagator.propagate(fixedVertices, costFunction);""", + """estimatePropagator.propagate(fixedVertices, costFunction, EstimatePropagator::PropagateAction(),numeric_limits::max(),numeric_limits::max());""") + + + #fix cmake package detection + if ( self.settings.compiler == "Visual Studio"): + os.remove("g2o/cmake_modules/FindBLAS.cmake") + os.remove("g2o/cmake_modules/FindLAPACK.cmake") + + os.remove("g2o/cmake_modules/FindCSparse.cmake") + os.remove("g2o/cmake_modules/FindSuiteSparse.cmake") + os.remove("g2o/cmake_modules/FindCholmod.cmake") + + + cmake = CMake(self,parallel=True) + + if self.options.shared: + cmake.definitions["BUILD_SHARED_LIBS"] = "ON" + + cmake.definitions["CMAKE_INSTALL_PREFIX"] = "install" + cmake.definitions["G2O_BUILD_EXAMPLES"] = "OFF" + cmake.definitions["G2O_BUILD_APPS"] = "ON" + cmake.definitions["G2O_USE_CSPARSE"] = "ON" + cmake.definitions["BUILD_CSPARSE"] = "OFF" + + + cmake.configure(source_dir="g2o",build_dir="." ) + cmake.build() + cmake.install() + + + def package(self): + self.copy("*", src="install", dst=".") + self.copy("FindG2O.cmake", src="g2o/cmake_modules", dst=".",keep_path=False) + + def package_info(self): + libs = [ + "g2o_core", + "g2o_opengl_helper", + "g2o_ext_freeglut_minimal", + "g2o_solver_pcg", + "g2o_solver_eigen", + "g2o_solver_dense", + "g2o_solver_cholmod", + "g2o_solver_csparse", + "g2o_solver_structure_only", + "g2o_stuff", + "g2o_types_data", + "g2o_types_icp", + "g2o_types_sba", + "g2o_types_sclam2d", + "g2o_types_sim3", + "g2o_types_slam2d_addons", + "g2o_types_slam2d", + "g2o_types_slam3d_addons", + "g2o_types_slam3d" + ] + + + if self.settings.build_type == 'Debug': + self.cpp_info.libs = [ name+"_d" for name in libs ] + else: + self.cpp_info.libs = libs + + self.cpp_info.includedirs = ['include'] # Ordered list of include paths + self.cpp_info.libdirs = ['lib'] # Directories where libraries can be found + self.cpp_info.bindirs = ['bin'] # Directories where executables and shared libs can be found diff --git a/gdal/conanfile.py b/gdal/conanfile.py new file mode 100644 index 0000000..62c363e --- /dev/null +++ b/gdal/conanfile.py @@ -0,0 +1,91 @@ + +from conans import ConanFile, CMake, tools +from conans.tools import download, unzip, vcvars_command +import shutil +import os + +class GdalConan(ConanFile): + name = "gdal" + license = "MIT" + url = "https://github.com/Av3m/conan-gdal.git" + settings = "os", "compiler", "build_type", "arch" + options = {} + + def _getargs(self): + nmake_args = [] + nmake_args = ["WIN64=YES" if self.settings.arch == "x86_64" else "WIN64=NO"] + if self.settings.compiler == "Visual Studio": + version = self.settings.compiler.version + if version == "9": + nmake_args.append("MSVC_VER=1500") + elif version == "10": + nmake_args.append("MSVC_VER=1600") + elif version == "11": + nmake_args.append("MSVC_VER=1700") + elif version == "12": + nmake_args.append("MSVC_VER=1800") + else: + # this is the highest version of msvc that + # gdal recognises, but if compiles fine at least up + # to VS 2017 + nmake_args.append("MSVC_VER=1900") + nmake_args.append("GDAL_HOME={0}".format(self.build_folder ) ) + nmake_args.append("BINDIR={0}".format( os.path.join(self.build_folder,"install","bin") ) ) + nmake_args.append("DATADIR={0}".format(os.path.join(self.build_folder,"install","data") ) ) + nmake_args.append("LIBDIR={0}".format(os.path.join(self.build_folder,"install","lib") ) ) + nmake_args.append("INCDIR={0}".format(os.path.join(self.build_folder,"install","include") ) ) + nmake_args.append("HTMLDIR={0}".format(os.path.join(self.build_folder,"install","doc") ) ) + return nmake_args + + def source(self): + zip_name = "gdal.zip" + download("http://download.osgeo.org/gdal/%s/gdal%s.zip" % (str(self.version), str(self.version).replace(".","") ), zip_name) + unzip(zip_name) + shutil.move("gdal-%s" % ( self.version), "gdal") + #copy makefile to source/gdal + #translate all makefile.vc to linux makefiles + os.unlink(zip_name) + + + def build_windows(self): + nmake_args = self._getargs() + nmake_args = " ".join(nmake_args) + cmd = vcvars_command(self.settings) + self.run("%s && nmake /f makefile.vc %s" %(cmd,nmake_args),cwd="gdal") + self.run("%s && nmake /f makefile.vc %s devinstall"%(cmd,nmake_args),cwd="gdal") + + def build(self): + if ( self.settings.compiler == "Visual Studio"): + self.build_windows() + else: + self.run("chmod +x gdal/configure") + self.run("chmod +x gdal/install-sh") + self.run("./configure --with-grass=yes --with-geotiff=yes --with-libtiff=yes --with-ogdi=yes --with-pg=yes --with-geos=yes --with-odbc=yes --prefix=%s" % (self.conanfile_directory + "/install"),cwd="gdal") + #self.run("sudo -i") + self.run("make",cwd="gdal") + #self.run("make",cwd="gdal/ogr") + #self.run("make",cwd="gdal/ogr/ogrsf_frmts") + self.run("sudo make install",cwd="gdal") + + def package(self): + self.copy("*.h",src="gdal/ogr",dst="include/ogr") + self.copy("*",src="install",dst=".") + + + def package_info(self): + if ( self.settings.compiler == "Visual Studio"): + self.cpp_info.libs = ['gdal_i'] + else: + self.cpp_info.libs = ['libgdal'] + + self.cpp_info.includedirs = ['include', 'include/ogr'] # Ordered list of include paths + self.cpp_info.libdirs = ['lib'] # Directories where libraries can be found + self.cpp_info.resdirs = ['doc', 'data'] # Directories where resources, data, etc can be found + self.cpp_info.bindirs = ['bin'] # Directories where executables and shared libs can be found + self.cpp_info.defines = [] # preprocessor definitions + self.cpp_info.cflags = [] # pure C flags + self.cpp_info.cppflags = [] # C++ compilation flags + self.cpp_info.sharedlinkflags = [] # linker flags + self.cpp_info.exelinkflags = [] # linker flags + + self.env_info.path.append(os.path.join(self.package_folder,"bin")) diff --git a/geographiclib/conanfile.py b/geographiclib/conanfile.py new file mode 100644 index 0000000..f37f1ee --- /dev/null +++ b/geographiclib/conanfile.py @@ -0,0 +1,63 @@ +from conans import ConanFile, CMake +from conans import tools +from conans.util import files +import os +import shutil + + +class GeographicLibConan(ConanFile): + name = "GeographicLib" + version = "1.46" + url = "https://github.com/Av3m/conan-geographiclib.git" + settings = "os", "compiler", "build_type", "arch" + license = "MIT" + options = {"static": [False, False], "shared": [True, False], "precision": [1, 2, 3, 4, 5]} + default_options = "static=False", "shared=True", "precision=2" + + def source(self): + distrib_url = 'https://sourceforge.net/projects/geographiclib/files/distrib/' + tarball = '%s-%s.tar.gz' % (self.name, self.version) + self.output.info('Downloading %s' % tarball) + tools.download(distrib_url + tarball, tarball) + tools.untargz(tarball) + shutil.move('%s-%s' % (self.name, self.version), 'geographiclib_src') + os.unlink(tarball) + + def build(self): + options = [] + options.append('-DCMAKE_INSTALL_PREFIX=__install') + options.append('-DGEOGRAPHICLIB_LIB_TYPE=%s' % self.lib_type()) + options.append('-DGEOGRAPHICLIB_PRECISION=%s' % self.options.precision) + cmake = CMake(self) + self.run('cmake %s %s geographiclib_src' % (' '.join(options), cmake.command_line)) + self.run('cmake --build . --config %s --target install' % str(self.settings.build_type) ) + + def package(self): + self.copy(pattern="*", dst=".", src="__install") + + def package_info(self): + if self.settings.build_type == "Release": + self.cpp_info.libs = ["Geographic_-i"] + elif self.settings.build_type=="Debug": + self.cpp_info.libs = ["Geographic_d-i"] + self.cpp_info.includedirs = ['include'] # Ordered list of include paths + self.cpp_info.libs = [] # The libs to link against + self.cpp_info.libdirs = ['lib'] # Directories where libraries can be found + self.cpp_info.resdirs = ['res'] # Directories where resources, data, etc can be found + self.cpp_info.bindirs = ['bin'] # Directories where executables and shared libs can be found + self.cpp_info.defines = [] # preprocessor definitions + self.cpp_info.cflags = [] # pure C flags + self.cpp_info.cppflags = [] # C++ compilation flags + self.cpp_info.sharedlinkflags = [] # linker flags + self.cpp_info.exelinkflags = [] # linker flags + def lib_type(self): + lib_type = None + if self.options.static and self.options.shared: + lib_type = 'BOTH' + elif self.options.shared: + lib_type = 'SHARED' + elif self.options.static: + lib_type = 'STATIC' + else: + self.output.error("Enable at least one of options 'shared' and 'static'") + return lib_type diff --git a/gmp/conanfile.py b/gmp/conanfile.py new file mode 100644 index 0000000..1763f8b --- /dev/null +++ b/gmp/conanfile.py @@ -0,0 +1,68 @@ +from conans import ConanFile +import shutil +import os +from conans.tools import download, unzip +from conans import AutoToolsBuildEnvironment + + +class GmpConan(ConanFile): + name = "gmp" + generators = "txt" + settings = "os", "compiler", "arch", "build_type" + options = {"shared": [True, False]} + default_options = "shared=False" + url = "http://github.com/Av3m/conan-repo" + + def configure(self): + if self.settings.os == "Windows": + if self.settings.compiler == "gcc": + self.requires("mingw_installer/1.0@conan/stable") + self.options.shared = True + + def source(self): + zip_name = "gmp-%s.tar.bz2" % self.version + folder_name = "gmp-%s" % self.version + download("https://gmplib.org/download/gmp/%s" % zip_name, zip_name) + unzip(zip_name) + shutil.move(folder_name,"gmp") + + def build(self): + env_build = AutoToolsBuildEnvironment(self) + env_build.fpic = True + + configure_args = list() + configure_args.append('--prefix=%s' %(os.path.join(self.build_folder,'__install')) ) + + + if ( self.options.shared): + configure_args.append('--enable-shared') + configure_args.append('--disable-static') + else: + configure_args.append('--enable-static') + configure_args.append('--disable-shared') + + env_build.configure(args=configure_args, configure_dir="gmp" ) + env_build.make() + env_build.make(args=["install"]) + + + + def package(self): + self.copy("*", dst="", src="__install", keep_path=True) + self.copy("*.lib", dst="lib", src=".", keep_path=False) + self.copy("*.pc", src="__install", dst=".", keep_path=False) + + def package_id(self): + if ( self.settings.os=="Windows"): + del self.info.settings.compiler + + def package_info(self): + if ( self.settings.compiler == "Visual Studio" ): + self.cpp_info.libs = ['libgmp-6'] + else: + self.cpp_info.libs = ['gmp'] + + self.env_info.PKG_CONFIG_gmp_PREFIX = self.package_folder + + + diff --git a/grpc/conanbuildinfo.cmake b/grpc/conanbuildinfo.cmake new file mode 100644 index 0000000..78ffda4 --- /dev/null +++ b/grpc/conanbuildinfo.cmake @@ -0,0 +1,469 @@ +include(CMakeParseArguments) + +### Definition of global aggregated variables ### + +set(CONAN_PACKAGE_NAME grpc) +set(CONAN_PACKAGE_VERSION 1.10.0) + +set(CONAN_SETTINGS_ARCH "x86_64") +set(CONAN_SETTINGS_BUILD_TYPE "Release") +set(CONAN_SETTINGS_COMPILER "Visual Studio") +set(CONAN_SETTINGS_COMPILER_RUNTIME "MD") +set(CONAN_SETTINGS_COMPILER_VERSION "10") +set(CONAN_SETTINGS_OS "Windows") + +set(CONAN_DEPENDENCIES ) +# Storing original command line args (CMake helper) flags +set(CONAN_CMD_CXX_FLAGS ${CONAN_CXX_FLAGS}) + +set(CONAN_CMD_SHARED_LINKER_FLAGS ${CONAN_SHARED_LINKER_FLAGS}) +set(CONAN_CMD_C_FLAGS ${CONAN_C_FLAGS}) +# Defining accumulated conan variables for all deps + +set(CONAN_INCLUDE_DIRS ${CONAN_INCLUDE_DIRS}) +set(CONAN_LIB_DIRS ${CONAN_LIB_DIRS}) +set(CONAN_BIN_DIRS ${CONAN_BIN_DIRS}) +set(CONAN_RES_DIRS ${CONAN_RES_DIRS}) +set(CONAN_LIBS ${CONAN_LIBS}) +set(CONAN_DEFINES ${CONAN_DEFINES}) +set(CONAN_CMAKE_MODULE_PATH ${CONAN_CMAKE_MODULE_PATH}) + +set(CONAN_CXX_FLAGS " ${CONAN_CXX_FLAGS}") +set(CONAN_SHARED_LINKER_FLAGS " ${CONAN_SHARED_LINKER_FLAGS}") +set(CONAN_EXE_LINKER_FLAGS " ${CONAN_EXE_LINKER_FLAGS}") +set(CONAN_C_FLAGS " ${CONAN_C_FLAGS}") + + +### Definition of macros and functions ### + +macro(conan_define_targets) + if(${CMAKE_VERSION} VERSION_LESS "3.1.2") + message(FATAL_ERROR "TARGETS not supported by your CMake version!") + endif() # CMAKE > 3.x + set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${CONAN_CMD_CXX_FLAGS}") + set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} ${CONAN_CMD_C_FLAGS}") + set(CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} ${CONAN_CMD_SHARED_LINKER_FLAGS}") + + set(CONAN_TARGETS ) + +endmacro() + + +macro(conan_basic_setup) + set(options TARGETS NO_OUTPUT_DIRS SKIP_RPATH KEEP_RPATHS SKIP_STD) + cmake_parse_arguments(ARGUMENTS "${options}" "${oneValueArgs}" "${multiValueArgs}" ${ARGN} ) + if(CONAN_EXPORTED) + message(STATUS "Conan: called by CMake conan helper") + endif() + conan_check_compiler() + if(NOT ARGUMENTS_NO_OUTPUT_DIRS) + conan_output_dirs_setup() + endif() + conan_set_find_library_paths() + if(NOT ARGUMENTS_TARGETS) + message(STATUS "Conan: Using cmake global configuration") + conan_global_flags() + else() + message(STATUS "Conan: Using cmake targets configuration") + conan_define_targets() + endif() + if(ARGUMENTS_SKIP_RPATH) + # Change by "DEPRECATION" or "SEND_ERROR" when we are ready + message(WARNING "Conan: SKIP_RPATH is deprecated, it has been renamed to KEEP_RPATHS") + endif() + if(NOT ARGUMENTS_SKIP_RPATH AND NOT ARGUMENTS_KEEP_RPATHS) + # Parameter has renamed, but we keep the compatibility with old SKIP_RPATH + message(STATUS "Conan: Adjusting default RPATHs Conan policies") + conan_set_rpath() + endif() + if(NOT ARGUMENTS_SKIP_STD) + message(STATUS "Conan: Adjusting language standard") + conan_set_std() + endif() + conan_set_vs_runtime() + conan_set_libcxx() + conan_set_find_paths() +endmacro() + +macro(conan_set_find_paths) + # CMAKE_MODULE_PATH does not have Debug/Release config, but there are variables + # CONAN_CMAKE_MODULE_PATH_DEBUG to be used by the consumer + # CMake can find findXXX.cmake files in the root of packages + set(CMAKE_MODULE_PATH ${CONAN_CMAKE_MODULE_PATH} ${CMAKE_MODULE_PATH}) + + # Make find_package() to work + set(CMAKE_PREFIX_PATH ${CONAN_CMAKE_MODULE_PATH} ${CMAKE_PREFIX_PATH}) + + # Set the find root path (cross build) + set(CMAKE_FIND_ROOT_PATH ${CONAN_CMAKE_FIND_ROOT_PATH} ${CMAKE_FIND_ROOT_PATH}) + if(CONAN_CMAKE_FIND_ROOT_PATH_MODE_PROGRAM) + set(CMAKE_FIND_ROOT_PATH_MODE_PROGRAM ${CONAN_CMAKE_FIND_ROOT_PATH_MODE_PROGRAM}) + endif() + if(CONAN_CMAKE_FIND_ROOT_PATH_MODE_LIBRARY) + set(CMAKE_FIND_ROOT_PATH_MODE_LIBRARY ${CONAN_CMAKE_FIND_ROOT_PATH_MODE_LIBRARY}) + endif() + if(CONAN_CMAKE_FIND_ROOT_PATH_MODE_INCLUDE) + set(CMAKE_FIND_ROOT_PATH_MODE_INCLUDE ${CONAN_CMAKE_FIND_ROOT_PATH_MODE_INCLUDE}) + endif() +endmacro() + +macro(conan_set_find_library_paths) + # CMAKE_INCLUDE_PATH, CMAKE_LIBRARY_PATH does not have Debug/Release config, but there are variables + # CONAN_INCLUDE_DIRS_DEBUG/RELEASE CONAN_LIB_DIRS_DEBUG/RELEASE to be used by the consumer + # For find_library + set(CMAKE_INCLUDE_PATH ${CONAN_INCLUDE_DIRS} ${CMAKE_INCLUDE_PATH}) + set(CMAKE_LIBRARY_PATH ${CONAN_LIB_DIRS} ${CMAKE_LIBRARY_PATH}) +endmacro() + +macro(conan_set_vs_runtime) + if(CONAN_LINK_RUNTIME) + foreach(flag CMAKE_C_FLAGS_RELEASE CMAKE_CXX_FLAGS_RELEASE + CMAKE_C_FLAGS_RELWITHDEBINFO CMAKE_CXX_FLAGS_RELWITHDEBINFO + CMAKE_C_FLAGS_MINSIZEREL CMAKE_CXX_FLAGS_MINSIZEREL) + if(DEFINED ${flag}) + string(REPLACE "/MD" ${CONAN_LINK_RUNTIME} ${flag} "${${flag}}") + endif() + endforeach() + foreach(flag CMAKE_C_FLAGS_DEBUG CMAKE_CXX_FLAGS_DEBUG) + if(DEFINED ${flag}) + string(REPLACE "/MDd" ${CONAN_LINK_RUNTIME} ${flag} "${${flag}}") + endif() + endforeach() + endif() +endmacro() + +macro(conan_flags_setup) + # Macro maintained for backwards compatibility + conan_set_find_library_paths() + conan_global_flags() + conan_set_rpath() + conan_set_vs_runtime() + conan_set_libcxx() +endmacro() + + + +function(conan_find_libraries_abs_path libraries package_libdir libraries_abs_path) + foreach(_LIBRARY_NAME ${libraries}) + unset(CONAN_FOUND_LIBRARY CACHE) + find_library(CONAN_FOUND_LIBRARY NAME ${_LIBRARY_NAME} PATHS ${package_libdir} + NO_DEFAULT_PATH NO_CMAKE_FIND_ROOT_PATH) + if(CONAN_FOUND_LIBRARY) + message(STATUS "Library ${_LIBRARY_NAME} found ${CONAN_FOUND_LIBRARY}") + set(CONAN_FULLPATH_LIBS ${CONAN_FULLPATH_LIBS} ${CONAN_FOUND_LIBRARY}) + else() + message(STATUS "Library ${_LIBRARY_NAME} not found in package, might be system one") + set(CONAN_FULLPATH_LIBS ${CONAN_FULLPATH_LIBS} ${_LIBRARY_NAME}) + endif() + endforeach() + unset(CONAN_FOUND_LIBRARY CACHE) + set(${libraries_abs_path} ${CONAN_FULLPATH_LIBS} PARENT_SCOPE) +endfunction() + +function(conan_package_library_targets libraries package_libdir libraries_abs_path deps build_type package_name) + foreach(_LIBRARY_NAME ${libraries}) + unset(CONAN_FOUND_LIBRARY CACHE) + find_library(CONAN_FOUND_LIBRARY NAME ${_LIBRARY_NAME} PATHS ${package_libdir} + NO_DEFAULT_PATH NO_CMAKE_FIND_ROOT_PATH) + if(CONAN_FOUND_LIBRARY) + message(STATUS "Library ${_LIBRARY_NAME} found ${CONAN_FOUND_LIBRARY}") + set(_LIB_NAME CONAN_LIB::${package_name}_${_LIBRARY_NAME}${build_type}) + add_library(${_LIB_NAME} UNKNOWN IMPORTED) + set_target_properties(${_LIB_NAME} PROPERTIES IMPORTED_LOCATION ${CONAN_FOUND_LIBRARY}) + string(REPLACE " " ";" deps_list "${deps}") + set_property(TARGET ${_LIB_NAME} PROPERTY INTERFACE_LINK_LIBRARIES ${deps_list}) + set(CONAN_FULLPATH_LIBS ${CONAN_FULLPATH_LIBS} ${_LIB_NAME}) + else() + message(STATUS "Library ${_LIBRARY_NAME} not found in package, might be system one") + set(CONAN_FULLPATH_LIBS ${CONAN_FULLPATH_LIBS} ${_LIBRARY_NAME}) + endif() + endforeach() + unset(CONAN_FOUND_LIBRARY CACHE) + set(${libraries_abs_path} ${CONAN_FULLPATH_LIBS} PARENT_SCOPE) +endfunction() + +macro(conan_set_libcxx) + if(DEFINED CONAN_LIBCXX) + message(STATUS "Conan: C++ stdlib: ${CONAN_LIBCXX}") + if(CONAN_COMPILER STREQUAL "clang" OR CONAN_COMPILER STREQUAL "apple-clang") + if(CONAN_LIBCXX STREQUAL "libstdc++" OR CONAN_LIBCXX STREQUAL "libstdc++11" ) + set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -stdlib=libstdc++") + elseif(CONAN_LIBCXX STREQUAL "libc++") + set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -stdlib=libc++") + endif() + endif() + if(CONAN_COMPILER STREQUAL "sun-cc") + if(CONAN_LIBCXX STREQUAL "libCstd") + set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -library=Cstd") + elseif(CONAN_LIBCXX STREQUAL "libstdcxx") + set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -library=stdcxx4") + elseif(CONAN_LIBCXX STREQUAL "libstlport") + set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -library=stlport4") + elseif(CONAN_LIBCXX STREQUAL "libstdc++") + set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -library=stdcpp") + endif() + endif() + if(CONAN_LIBCXX STREQUAL "libstdc++11") + add_definitions(-D_GLIBCXX_USE_CXX11_ABI=1) + elseif(CONAN_LIBCXX STREQUAL "libstdc++") + add_definitions(-D_GLIBCXX_USE_CXX11_ABI=0) + endif() + endif() +endmacro() + +macro(conan_set_std) + # Do not warn "Manually-specified variables were not used by the project" + set(ignorevar "${CONAN_STD_CXX_FLAG}${CONAN_CMAKE_CXX_STANDARD}${CONAN_CMAKE_CXX_EXTENSIONS}") + if (CMAKE_VERSION VERSION_LESS "3.1") + if(CONAN_STD_CXX_FLAG) + message(STATUS "Conan setting CXX_FLAGS flags: ${CONAN_STD_CXX_FLAG}") + set(CMAKE_CXX_FLAGS "-std=${CONAN_STD_CXX_FLAG} ${CMAKE_CXX_FLAGS}") + endif() + else() + if(CONAN_CMAKE_CXX_STANDARD) + message(STATUS "Conan setting CPP STANDARD: ${CONAN_CMAKE_CXX_STANDARD} WITH EXTENSIONS ${CONAN_CMAKE_CXX_EXTENSIONS}") + set(CMAKE_CXX_STANDARD ${CONAN_CMAKE_CXX_STANDARD}) + set(CMAKE_CXX_EXTENSIONS ${CONAN_CMAKE_CXX_EXTENSIONS}) + endif() + endif () +endmacro() + +macro(conan_set_rpath) + if(APPLE) + # https://cmake.org/Wiki/CMake_RPATH_handling + # CONAN GUIDE: All generated libraries should have the id and dependencies to other + # dylibs without path, just the name, EX: + # libMyLib1.dylib: + # libMyLib1.dylib (compatibility version 0.0.0, current version 0.0.0) + # libMyLib0.dylib (compatibility version 0.0.0, current version 0.0.0) + # /usr/lib/libc++.1.dylib (compatibility version 1.0.0, current version 120.0.0) + # /usr/lib/libSystem.B.dylib (compatibility version 1.0.0, current version 1197.1.1) + set(CMAKE_SKIP_RPATH 1) # AVOID RPATH FOR *.dylib, ALL LIBS BETWEEN THEM AND THE EXE + # SHOULD BE ON THE LINKER RESOLVER PATH (./ IS ONE OF THEM) + # Policy CMP0068 + # We want the old behavior, in CMake >= 3.9 CMAKE_SKIP_RPATH won't affect the install_name in OSX + set(CMAKE_INSTALL_NAME_DIR "") + endif() +endmacro() + +macro(conan_output_dirs_setup) + set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/bin) + set(CMAKE_RUNTIME_OUTPUT_DIRECTORY_RELEASE ${CMAKE_RUNTIME_OUTPUT_DIRECTORY}) + set(CMAKE_RUNTIME_OUTPUT_DIRECTORY_RELWITHDEBINFO ${CMAKE_RUNTIME_OUTPUT_DIRECTORY}) + set(CMAKE_RUNTIME_OUTPUT_DIRECTORY_MINSIZEREL ${CMAKE_RUNTIME_OUTPUT_DIRECTORY}) + set(CMAKE_RUNTIME_OUTPUT_DIRECTORY_DEBUG ${CMAKE_RUNTIME_OUTPUT_DIRECTORY}) + + set(CMAKE_ARCHIVE_OUTPUT_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/lib) + set(CMAKE_ARCHIVE_OUTPUT_DIRECTORY_RELEASE ${CMAKE_ARCHIVE_OUTPUT_DIRECTORY}) + set(CMAKE_ARCHIVE_OUTPUT_DIRECTORY_RELWITHDEBINFO ${CMAKE_ARCHIVE_OUTPUT_DIRECTORY}) + set(CMAKE_ARCHIVE_OUTPUT_DIRECTORY_MINSIZEREL ${CMAKE_ARCHIVE_OUTPUT_DIRECTORY}) + set(CMAKE_ARCHIVE_OUTPUT_DIRECTORY_DEBUG ${CMAKE_ARCHIVE_OUTPUT_DIRECTORY}) + + set(CMAKE_LIBRARY_OUTPUT_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/lib) + set(CMAKE_LIBRARY_OUTPUT_DIRECTORY_RELEASE ${CMAKE_LIBRARY_OUTPUT_DIRECTORY}) + set(CMAKE_LIBRARY_OUTPUT_DIRECTORY_RELWITHDEBINFO ${CMAKE_LIBRARY_OUTPUT_DIRECTORY}) + set(CMAKE_LIBRARY_OUTPUT_DIRECTORY_MINSIZEREL ${CMAKE_LIBRARY_OUTPUT_DIRECTORY}) + set(CMAKE_LIBRARY_OUTPUT_DIRECTORY_DEBUG ${CMAKE_LIBRARY_OUTPUT_DIRECTORY}) +endmacro() + +macro(conan_split_version VERSION_STRING MAJOR MINOR) + #make a list from the version string + string(REPLACE "." ";" VERSION_LIST "${VERSION_STRING}") + + #write output values + list(LENGTH VERSION_LIST _version_len) + list(GET VERSION_LIST 0 ${MAJOR}) + if(${_version_len} GREATER 1) + list(GET VERSION_LIST 1 ${MINOR}) + endif() +endmacro() + +macro(conan_error_compiler_version) + message(FATAL_ERROR "Incorrect '${CONAN_COMPILER}' version 'compiler.version=${CONAN_COMPILER_VERSION}'" + " is not the one detected by CMake: '${CMAKE_CXX_COMPILER_ID}=" ${VERSION_MAJOR}.${VERSION_MINOR}') +endmacro() + +set(_CONAN_CURRENT_DIR ${CMAKE_CURRENT_LIST_DIR}) +function(conan_get_compiler CONAN_INFO_COMPILER CONAN_INFO_COMPILER_VERSION) + MESSAGE(STATUS "Current conanbuildinfo.cmake directory: " ${_CONAN_CURRENT_DIR}) + if(NOT EXISTS ${_CONAN_CURRENT_DIR}/conaninfo.txt) + message(STATUS "WARN: conaninfo.txt not found") + return() + endif() + + file (READ "${_CONAN_CURRENT_DIR}/conaninfo.txt" CONANINFO) + + string(REGEX MATCH "compiler=([-A-Za-z0-9_ ]+)" _MATCHED ${CONANINFO}) + if(DEFINED CMAKE_MATCH_1) + string(STRIP "${CMAKE_MATCH_1}" _CONAN_INFO_COMPILER) + set(${CONAN_INFO_COMPILER} ${_CONAN_INFO_COMPILER} PARENT_SCOPE) + endif() + + string(REGEX MATCH "compiler.version=([-A-Za-z0-9_.]+)" _MATCHED ${CONANINFO}) + if(DEFINED CMAKE_MATCH_1) + string(STRIP "${CMAKE_MATCH_1}" _CONAN_INFO_COMPILER_VERSION) + set(${CONAN_INFO_COMPILER_VERSION} ${_CONAN_INFO_COMPILER_VERSION} PARENT_SCOPE) + endif() +endfunction() + +function(check_compiler_version) + conan_split_version(${CMAKE_CXX_COMPILER_VERSION} VERSION_MAJOR VERSION_MINOR) + if(CMAKE_CXX_COMPILER_ID MATCHES MSVC) + # https://cmake.org/cmake/help/v3.2/variable/MSVC_VERSION.html + if( (CONAN_COMPILER_VERSION STREQUAL "14" AND NOT VERSION_MAJOR STREQUAL "19") OR + (CONAN_COMPILER_VERSION STREQUAL "12" AND NOT VERSION_MAJOR STREQUAL "18") OR + (CONAN_COMPILER_VERSION STREQUAL "11" AND NOT VERSION_MAJOR STREQUAL "17") OR + (CONAN_COMPILER_VERSION STREQUAL "10" AND NOT VERSION_MAJOR STREQUAL "16") OR + (CONAN_COMPILER_VERSION STREQUAL "9" AND NOT VERSION_MAJOR STREQUAL "15") OR + (CONAN_COMPILER_VERSION STREQUAL "8" AND NOT VERSION_MAJOR STREQUAL "14") OR + (CONAN_COMPILER_VERSION STREQUAL "7" AND NOT VERSION_MAJOR STREQUAL "13") OR + (CONAN_COMPILER_VERSION STREQUAL "6" AND NOT VERSION_MAJOR STREQUAL "12") ) + conan_error_compiler_version() + endif() + elseif(CONAN_COMPILER STREQUAL "gcc") + set(_CHECK_VERSION ${VERSION_MAJOR}.${VERSION_MINOR}) + if(NOT ${CONAN_COMPILER_VERSION} VERSION_LESS 5.0) + message(STATUS "Conan: Compiler GCC>=5, checking major version ${CONAN_COMPILER_VERSION}") + conan_split_version(${CONAN_COMPILER_VERSION} CONAN_COMPILER_MAJOR CONAN_COMPILER_MINOR) + if("${CONAN_COMPILER_MINOR}" STREQUAL "") + set(_CHECK_VERSION ${VERSION_MAJOR}) + endif() + endif() + message(STATUS "Conan: Checking correct version: ${_CHECK_VERSION}") + if(NOT ${_CHECK_VERSION} VERSION_EQUAL CONAN_COMPILER_VERSION) + conan_error_compiler_version() + endif() + elseif(CONAN_COMPILER MATCHES "clang" OR CONAN_COMPILER STREQUAL "sun-cc") + if(NOT ${VERSION_MAJOR}.${VERSION_MINOR} VERSION_EQUAL CONAN_COMPILER_VERSION) + conan_error_compiler_version() + endif() + else() + message(STATUS "WARN: Unknown compiler '${CONAN_COMPILER}', skipping the version check...") + endif() +endfunction() + +function(conan_check_compiler) + if(NOT DEFINED CMAKE_CXX_COMPILER_ID) + if(DEFINED CMAKE_C_COMPILER_ID) + message(STATUS "This project seems to be plain C, using '${CMAKE_C_COMPILER_ID}' compiler") + set(CMAKE_CXX_COMPILER_ID ${CMAKE_C_COMPILER_ID}) + set(CMAKE_CXX_COMPILER_VERSION ${CMAKE_C_COMPILER_VERSION}) + else() + message(FATAL_ERROR "This project seems to be plain C, but no compiler defined") + endif() + endif() + if(CONAN_DISABLE_CHECK_COMPILER) + message(STATUS "WARN: Disabled conan compiler checks") + return() + endif() + if(NOT CMAKE_CXX_COMPILER_ID AND NOT CMAKE_C_COMPILER_ID) + # This use case happens when compiler is not identified by CMake, but the compilers are there and work + message(STATUS "*** WARN: CMake was not able to identify a C or C++ compiler ***") + message(STATUS "*** WARN: Disabling compiler checks. Please make sure your settings match your environment ***") + return() + endif() + if(NOT DEFINED CONAN_COMPILER) + conan_get_compiler(CONAN_COMPILER CONAN_COMPILER_VERSION) + if(NOT DEFINED CONAN_COMPILER) + message(STATUS "WARN: CONAN_COMPILER variable not set, please make sure yourself that " + "your compiler and version matches your declared settings") + return() + endif() + endif() + + if(NOT CMAKE_HOST_SYSTEM_NAME STREQUAL ${CMAKE_SYSTEM_NAME}) + set(CROSS_BUILDING 1) + endif() + + # If using VS, verify toolset + if (CONAN_COMPILER STREQUAL "Visual Studio") + if (CONAN_SETTINGS_COMPILER_TOOLSET MATCHES "LLVM" OR + CONAN_SETTINGS_COMPILER_TOOLSET MATCHES "clang") + set(EXPECTED_CMAKE_CXX_COMPILER_ID "Clang") + elseif (CONAN_SETTINGS_COMPILER_TOOLSET MATCHES "Intel") + set(EXPECTED_CMAKE_CXX_COMPILER_ID "Intel") + else() + set(EXPECTED_CMAKE_CXX_COMPILER_ID "MSVC") + endif() + + if (NOT CMAKE_CXX_COMPILER_ID MATCHES ${EXPECTED_CMAKE_CXX_COMPILER_ID}) + message(FATAL_ERROR "Incorrect '${CONAN_COMPILER}'. Toolset specifies compiler as '${EXPECTED_CMAKE_CXX_COMPILER_ID}' " + "but CMake detected '${CMAKE_CXX_COMPILER_ID}'") + endif() + + # Avoid checks when cross compiling, apple-clang crashes because its APPLE but not apple-clang + # Actually CMake is detecting "clang" when you are using apple-clang, only if CMP0025 is set to NEW will detect apple-clang + elseif((CONAN_COMPILER STREQUAL "gcc" AND NOT CMAKE_CXX_COMPILER_ID MATCHES "GNU") OR + (CONAN_COMPILER STREQUAL "apple-clang" AND NOT CROSS_BUILDING AND (NOT APPLE OR NOT CMAKE_CXX_COMPILER_ID MATCHES "Clang")) OR + (CONAN_COMPILER STREQUAL "clang" AND NOT CMAKE_CXX_COMPILER_ID MATCHES "Clang") OR + (CONAN_COMPILER STREQUAL "sun-cc" AND NOT CMAKE_CXX_COMPILER_ID MATCHES "SunPro") ) + message(FATAL_ERROR "Incorrect '${CONAN_COMPILER}', is not the one detected by CMake: '${CMAKE_CXX_COMPILER_ID}'") + endif() + + + if(NOT DEFINED CONAN_COMPILER_VERSION) + message(STATUS "WARN: CONAN_COMPILER_VERSION variable not set, please make sure yourself " + "that your compiler version matches your declared settings") + return() + endif() + check_compiler_version() +endfunction() + +macro(conan_set_flags build_type) + set(CMAKE_CXX_FLAGS${build_type} "${CMAKE_CXX_FLAGS${build_type}} ${CONAN_CXX_FLAGS${build_type}}") + set(CMAKE_C_FLAGS${build_type} "${CMAKE_C_FLAGS${build_type}} ${CONAN_C_FLAGS${build_type}}") + set(CMAKE_SHARED_LINKER_FLAGS${build_type} "${CMAKE_SHARED_LINKER_FLAGS${build_type}} ${CONAN_SHARED_LINKER_FLAGS${build_type}}") + set(CMAKE_EXE_LINKER_FLAGS${build_type} "${CMAKE_EXE_LINKER_FLAGS${build_type}} ${CONAN_EXE_LINKER_FLAGS${build_type}}") +endmacro() + +macro(conan_global_flags) + if(CONAN_SYSTEM_INCLUDES) + include_directories(SYSTEM ${CONAN_INCLUDE_DIRS} + "$<$:${CONAN_INCLUDE_DIRS_RELEASE}>" + "$<$:${CONAN_INCLUDE_DIRS_RELEASE}>" + "$<$:${CONAN_INCLUDE_DIRS_RELEASE}>" + "$<$:${CONAN_INCLUDE_DIRS_DEBUG}>") + else() + include_directories(${CONAN_INCLUDE_DIRS} + "$<$:${CONAN_INCLUDE_DIRS_RELEASE}>" + "$<$:${CONAN_INCLUDE_DIRS_RELEASE}>" + "$<$:${CONAN_INCLUDE_DIRS_RELEASE}>" + "$<$:${CONAN_INCLUDE_DIRS_DEBUG}>") + endif() + + link_directories(${CONAN_LIB_DIRS}) + + conan_find_libraries_abs_path("${CONAN_LIBS_DEBUG}" "${CONAN_LIB_DIRS_DEBUG}" + CONAN_LIBS_DEBUG) + conan_find_libraries_abs_path("${CONAN_LIBS_RELEASE}" "${CONAN_LIB_DIRS_RELEASE}" + CONAN_LIBS_RELEASE) + + add_compile_options(${CONAN_DEFINES} + "$<$:${CONAN_DEFINES_DEBUG}>" + "$<$:${CONAN_DEFINES_RELEASE}>" + "$<$:${CONAN_DEFINES_RELEASE}>" + "$<$:${CONAN_DEFINES_RELEASE}>") + + conan_set_flags("") + conan_set_flags("_RELEASE") + conan_set_flags("_DEBUG") + +endmacro() + +macro(conan_target_link_libraries target) + if(CONAN_TARGETS) + target_link_libraries(${target} ${CONAN_TARGETS}) + else() + target_link_libraries(${target} ${CONAN_LIBS}) + foreach(_LIB ${CONAN_LIBS_RELEASE}) + target_link_libraries(${target} optimized ${_LIB}) + endforeach() + foreach(_LIB ${CONAN_LIBS_DEBUG}) + target_link_libraries(${target} debug ${_LIB}) + endforeach() + endif() +endmacro() + + +### Definition of user declared vars (user_info) ### + diff --git a/grpc/conanbuildinfo.txt b/grpc/conanbuildinfo.txt new file mode 100644 index 0000000..f494c09 --- /dev/null +++ b/grpc/conanbuildinfo.txt @@ -0,0 +1,37 @@ +[includedirs] + + +[libdirs] + + +[bindirs] + + +[resdirs] + + +[builddirs] + + +[libs] + + +[defines] + + +[cppflags] + + +[cflags] + + +[sharedlinkflags] + + +[exelinkflags] + + +[sysroot] + + + diff --git a/grpc/conanfile.py b/grpc/conanfile.py new file mode 100644 index 0000000..5061a2e --- /dev/null +++ b/grpc/conanfile.py @@ -0,0 +1,55 @@ +from conans import ConanFile, CMake, tools +import os + + +class GrpcConan(ConanFile): + name = "grpc" + version = "1.10.0" + license = "Apache License 2.0" + description = "Remote Procedure Calls (RPCs) provide a useful abstraction for building distributed applications and services. \ + The libraries in this repository provide a concrete implementation of the gRPC protocol, layered over HTTP/2. \ + These libraries enable communication between clients and servers using any combination of the supported languages." + url = "" + settings = "os", "compiler", "build_type", "arch" + options = {"shared": [True, False]} + default_options = "shared=False" + generators = "cmake" + + def requirements(self): + self.requires('zlib/1.2.11@conan/stable') + self.requires('OpenSSL/1.1.0g@conan/stable') + self.requires('Protobuf/3.5.1.1@intence/testing') + self.requires('cares/1.14.0@intence/stable') + def source(self): + self.run("git clone --branch v%s --single-branch https://github.com/grpc/grpc.git" % ( self.version) ) + self.run('git submodule update --init',cwd='grpc') + + # This small hack might be useful to guarantee proper /MT /MD linkage in MSVC + # if the packaged project doesn't have variables to set it properly + tools.replace_in_file("grpc/CMakeLists.txt", 'project(${PACKAGE_NAME} C CXX)', + '''project(${PACKAGE_NAME} C CXX) + include(${CMAKE_BINARY_DIR}/conanbuildinfo.cmake) + conan_basic_setup()''') + + tools.replace_in_file("grpc/cmake/ssl.cmake", 'set(_gRPC_SSL_LIBRARIES OpenSSL::SSL OpenSSL::Crypto)', + 'set(_gRPC_SSL_LIBRARIES OpenSSL::SSL OpenSSL::Crypto ${CONAN_LIBS_OPENSSL})' ) + tools.replace_in_file("grpc/cmake/ssl.cmake", 'set(_gRPC_SSL_LIBRARIES ${OPENSSL_LIBRARIES})', + 'set(_gRPC_SSL_LIBRARIES ${OPENSSL_LIBRARIES} ${CONAN_LIBS_OPENSSL})' ) + def build(self): + cmake = CMake(self) + cmake.definitions["CMAKE_INSTALL_PREFIX"] = os.path.join(self.build_folder,"install") + cmake.definitions["gRPC_ZLIB_PROVIDER"] = "package" + cmake.definitions["gRPC_SSL_PROVIDER"] = "package" + cmake.definitions["gRPC_PROTOBUF_PROVIDER"] = "package" + cmake.definitions["gRPC_CARES_PROVIDER"] = "package" + cmake.definitions["gRPC_BUILD_TESTS"] = "OFF" + cmake.definitions["gRPC_INSTALL"] = "ON" + cmake.configure(source_folder="grpc",build_folder=".") + cmake.build() + cmake.install() + + def package(self): + self.copy("*", src=os.path.join(self.build_folder,"install"), dst=".") + + def package_info(self): + pass diff --git a/grpc/conaninfo.txt b/grpc/conaninfo.txt new file mode 100644 index 0000000..d816cd0 --- /dev/null +++ b/grpc/conaninfo.txt @@ -0,0 +1,33 @@ +[settings] + arch=x86_64 + build_type=Release + compiler=Visual Studio + compiler.runtime=MD + compiler.version=10 + os=Windows + +[requires] + + +[options] + shared=False + +[full_settings] + arch=x86_64 + build_type=Release + compiler=Visual Studio + compiler.runtime=MD + compiler.version=10 + os=Windows + +[full_requires] + + +[full_options] + shared=False + +[recipe_hash] + + +[env] + diff --git a/hidapi/conanfile.py b/hidapi/conanfile.py new file mode 100644 index 0000000..862f40a --- /dev/null +++ b/hidapi/conanfile.py @@ -0,0 +1,44 @@ +from conans import ConanFile, CMake, tools, MSBuild, VisualStudioBuildEnvironment +import shutil +import glob + +class HidapiConan(ConanFile): + name = "hidapi" + version = "0.8.0-rc1" + license = "BSD" + url = "https://github.com/Av3m/conan-hidapi.git" + settings = "os", "compiler", "build_type", "arch" + options = {"shared": [True, False]} + default_options = "shared=False" + generators = "cmake" + exports_sources="sln*" + + + def source(self): + self.run("git clone https://github.com/signal11/hidapi.git") + self.run("git checkout tags/hidapi-%s" % (self.version), cwd="hidapi" ) + for file in glob.glob("sln/*"): + shutil.copy(file,"hidapi/windows") + + + def build(self): + if self.settings.compiler == "Visual Studio": + msbuild = MSBuild(self) + msbuild.build("hidapi/windows/hidapi.sln") + else: + cmake = CMake(self) + self.run('cmake hello %s' % cmake.command_line) + self.run("cmake --build . %s" % cmake.build_config) + + + def package(self): + self.copy("*.h", dst="include", src="hidapi") + self.copy("*.lib", dst="lib", keep_path=False) + self.copy("*.dll", dst="bin", keep_path=False) + self.copy("*.pdb", dst="bin", keep_path=False) + self.copy("*.so", dst="lib", keep_path=False) + self.copy("*.dylib", dst="lib", keep_path=False) + self.copy("*.a", dst="lib", keep_path=False) + + def package_info(self): + self.cpp_info.libs = ["hidapi"] diff --git a/hidapi/sln/hidapi.sln b/hidapi/sln/hidapi.sln new file mode 100644 index 0000000..070f3c8 --- /dev/null +++ b/hidapi/sln/hidapi.sln @@ -0,0 +1,36 @@ + +Microsoft Visual Studio Solution File, Format Version 11.00 +# Visual Studio 2010 +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "hidapi", "hidapi.vcxproj", "{A107C21C-418A-4697-BB10-20C3AA60E2E4}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "hidtest", "hidtest.vcxproj", "{23E9FF6A-49D1-4993-B2B5-BBB992C6C712}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Win32 = Debug|Win32 + Debug|x64 = Debug|x64 + Release|Win32 = Release|Win32 + Release|x64 = Release|x64 + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {A107C21C-418A-4697-BB10-20C3AA60E2E4}.Debug|Win32.ActiveCfg = Debug|Win32 + {A107C21C-418A-4697-BB10-20C3AA60E2E4}.Debug|Win32.Build.0 = Debug|Win32 + {A107C21C-418A-4697-BB10-20C3AA60E2E4}.Debug|x64.ActiveCfg = Debug|x64 + {A107C21C-418A-4697-BB10-20C3AA60E2E4}.Debug|x64.Build.0 = Debug|x64 + {A107C21C-418A-4697-BB10-20C3AA60E2E4}.Release|Win32.ActiveCfg = Release|Win32 + {A107C21C-418A-4697-BB10-20C3AA60E2E4}.Release|Win32.Build.0 = Release|Win32 + {A107C21C-418A-4697-BB10-20C3AA60E2E4}.Release|x64.ActiveCfg = Release|x64 + {A107C21C-418A-4697-BB10-20C3AA60E2E4}.Release|x64.Build.0 = Release|x64 + {23E9FF6A-49D1-4993-B2B5-BBB992C6C712}.Debug|Win32.ActiveCfg = Debug|Win32 + {23E9FF6A-49D1-4993-B2B5-BBB992C6C712}.Debug|Win32.Build.0 = Debug|Win32 + {23E9FF6A-49D1-4993-B2B5-BBB992C6C712}.Debug|x64.ActiveCfg = Debug|x64 + {23E9FF6A-49D1-4993-B2B5-BBB992C6C712}.Debug|x64.Build.0 = Debug|x64 + {23E9FF6A-49D1-4993-B2B5-BBB992C6C712}.Release|Win32.ActiveCfg = Release|Win32 + {23E9FF6A-49D1-4993-B2B5-BBB992C6C712}.Release|Win32.Build.0 = Release|Win32 + {23E9FF6A-49D1-4993-B2B5-BBB992C6C712}.Release|x64.ActiveCfg = Release|x64 + {23E9FF6A-49D1-4993-B2B5-BBB992C6C712}.Release|x64.Build.0 = Release|x64 + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection +EndGlobal diff --git a/hidapi/sln/hidapi.vcxproj b/hidapi/sln/hidapi.vcxproj new file mode 100644 index 0000000..31a5931 --- /dev/null +++ b/hidapi/sln/hidapi.vcxproj @@ -0,0 +1,178 @@ + + + + + Debug + Win32 + + + Debug + x64 + + + Release + Win32 + + + Release + x64 + + + + {A107C21C-418A-4697-BB10-20C3AA60E2E4} + hidapi + Win32Proj + + + + DynamicLibrary + Unicode + true + + + DynamicLibrary + Unicode + true + + + DynamicLibrary + Unicode + + + DynamicLibrary + Unicode + + + + + + + + + + + + + + + + + + + <_ProjectFileVersion>10.0.40219.1 + $(SolutionDir)$(Configuration)\ + $(SolutionDir)$(Configuration)\ + $(Configuration)\ + $(Configuration)\ + true + true + $(SolutionDir)$(Configuration)\ + $(SolutionDir)$(Configuration)\ + $(Configuration)\ + $(Configuration)\ + false + false + AllRules.ruleset + AllRules.ruleset + + + + + AllRules.ruleset + AllRules.ruleset + + + + + + + + Disabled + ..\hidapi;%(AdditionalIncludeDirectories) + WIN32;_DEBUG;_WINDOWS;_USRDLL;HIDAPI_EXPORTS;%(PreprocessorDefinitions) + true + EnableFastChecks + MultiThreadedDebugDLL + + + Level3 + EditAndContinue + + + setupapi.lib;%(AdditionalDependencies) + true + Windows + MachineX86 + + + + + Disabled + ..\hidapi;%(AdditionalIncludeDirectories) + WIN32;_DEBUG;_WINDOWS;_USRDLL;HIDAPI_EXPORTS;%(PreprocessorDefinitions) + EnableFastChecks + MultiThreadedDebugDLL + + + Level3 + ProgramDatabase + + + setupapi.lib;%(AdditionalDependencies) + true + Windows + + + + + MaxSpeed + true + ..\hidapi;%(AdditionalIncludeDirectories) + WIN32;NDEBUG;_WINDOWS;_USRDLL;HIDAPI_EXPORTS;%(PreprocessorDefinitions) + MultiThreadedDLL + true + + + Level3 + ProgramDatabase + + + setupapi.lib;%(AdditionalDependencies) + true + Windows + true + true + MachineX86 + + + + + MaxSpeed + true + ..\hidapi;%(AdditionalIncludeDirectories) + WIN32;NDEBUG;_WINDOWS;_USRDLL;HIDAPI_EXPORTS;%(PreprocessorDefinitions) + MultiThreadedDLL + true + + + Level3 + ProgramDatabase + + + setupapi.lib;%(AdditionalDependencies) + true + Windows + true + true + + + + + + + + + + + + \ No newline at end of file diff --git a/hidapi/sln/hidtest.vcxproj b/hidapi/sln/hidtest.vcxproj new file mode 100644 index 0000000..aaa0c5c --- /dev/null +++ b/hidapi/sln/hidtest.vcxproj @@ -0,0 +1,188 @@ + + + + + Debug + Win32 + + + Debug + x64 + + + Release + Win32 + + + Release + x64 + + + + {23E9FF6A-49D1-4993-B2B5-BBB992C6C712} + hidtest + + + + Application + MultiByte + true + + + Application + MultiByte + true + + + Application + MultiByte + + + Application + MultiByte + + + + + + + + + + + + + + + + + + + <_ProjectFileVersion>10.0.40219.1 + $(SolutionDir)$(Configuration)\ + $(SolutionDir)$(Configuration)\ + $(Configuration)\ + $(Configuration)\ + $(SolutionDir)$(Configuration)\ + $(SolutionDir)$(Configuration)\ + $(Configuration)\ + $(Configuration)\ + AllRules.ruleset + AllRules.ruleset + + + + + AllRules.ruleset + AllRules.ruleset + + + + + + + + Disabled + ..\hidapi;%(AdditionalIncludeDirectories) + true + EnableFastChecks + MultiThreadedDebugDLL + Level3 + EditAndContinue + + + hidapi.lib;%(AdditionalDependencies) + ..\windows\Debug;%(AdditionalLibraryDirectories) + true + Console + MachineX86 + + + Copying hidapi.dll to the local direcotry. + + + + + + + Disabled + ..\hidapi;%(AdditionalIncludeDirectories) + EnableFastChecks + MultiThreadedDebugDLL + Level3 + ProgramDatabase + + + hidapi.lib;%(AdditionalDependencies) + ..\windows\Debug;%(AdditionalLibraryDirectories) + true + Console + + + Copying hidapi.dll to the local direcotry. + + + + + + + MaxSpeed + true + ..\hidapi;%(AdditionalIncludeDirectories) + MultiThreadedDLL + true + Level3 + ProgramDatabase + + + hidapi.lib;%(AdditionalDependencies) + ..\windows\Release;%(AdditionalLibraryDirectories) + true + Console + true + true + MachineX86 + + + Copying hidapi.dll to the local direcotry. + + + + + + + MaxSpeed + true + ..\hidapi;%(AdditionalIncludeDirectories) + MultiThreadedDLL + true + Level3 + ProgramDatabase + + + hidapi.lib;%(AdditionalDependencies) + ..\windows\Release;%(AdditionalLibraryDirectories) + true + Console + true + true + + + Copying hidapi.dll to the local direcotry. + + + + + + + + + + {a107c21c-418a-4697-bb10-20c3aa60e2e4} + false + + + + + + \ No newline at end of file diff --git a/libiconv/conanfile.py b/libiconv/conanfile.py new file mode 100644 index 0000000..3f1aa0a --- /dev/null +++ b/libiconv/conanfile.py @@ -0,0 +1,59 @@ +from conans import ConanFile +import os, shutil +from conans.tools import download, unzip, replace_in_file, check_md5 +from conans import CMake, AutoToolsBuildEnvironment + + +class LibiconvConan(ConanFile): + name = "libiconv" + generators = "cmake" + settings = "os", "compiler", "arch", "build_type" + options = {"shared": [True, False]} + default_options = "shared=False" + url = "http://github.com/Av3m/conan-packages" + + def configure(self): + if self.settings.compiler=="Visual Studio": + raise Exception("Package can not be compiled with MSVC! Please use package win-iconv!") + + def source(self): + zip_name = "libiconv-%s.tar.gz" % self.version + folder_name = "libiconv-%s" % self.version + download("http://ftp.gnu.org/pub/gnu/libiconv/%s" % zip_name, zip_name) + unzip(zip_name) + shutil.move(folder_name,"libiconv") + + def build(self): + env_build = AutoToolsBuildEnvironment(self) + env_build.fpic = True + + + configure_args = list() + configure_args.append('--disable-rpath') + + if ( self.options.shared): + configure_args.append('--enable-shared') + else: + configure_args.append('--enable-static') + + env_build.configure(args=configure_args, configure_dir="libiconv" ) + env_build.make() + + + + def package(self): + self.copy("*.h", dst="include", src="libiconv/include", keep_path=True) + if self.options.shared: + self.copy(pattern="*.so*", dst="lib", src=".", keep_path=False) + self.copy(pattern="*.dll*", dst="bin", src=".", keep_path=False) + else: + self.copy(pattern="*.a", dst="lib", src=".", keep_path=False) + + self.copy(pattern="*.lib", dst="lib", src=".", keep_path=False) + + def package_info(self): + self.cpp_info.libs = ['charset', 'iconv'] + if self.settings.os == "Linux" or (self.options.shared and self.settings.os == "Macos"): + self.cpp_info.defines.append("LIBICONV_PLUG=1") + + diff --git a/msinttypes/conanfile.py b/msinttypes/conanfile.py new file mode 100644 index 0000000..637af71 --- /dev/null +++ b/msinttypes/conanfile.py @@ -0,0 +1,23 @@ +from conans import ConanFile, tools +import os + + +class MsinttypesConan(ConanFile): + name = "msinttypes" + version = "r26" + license = "" + url = "" + description = "" + no_copy_source = True + # No settings/options are necessary, this is header only + + def source(self): + '''retrieval of the source code here. Remember you can also put the code in the folder and + use exports instead of retrieving it with this source() method + ''' + tools.download("https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/msinttypes/msinttypes-%s.zip" % (self.version), "file.zip") + tools.unzip("file.zip" ) + tools.replace_in_file("inttypes.h",'#include "stdint.h"','') + + def package(self): + self.copy("inttypes.h", "include") diff --git a/nettle/conanfile.py b/nettle/conanfile.py new file mode 100644 index 0000000..b10e584 --- /dev/null +++ b/nettle/conanfile.py @@ -0,0 +1,78 @@ +from conans import ConanFile +import shutil +import os +from conans.tools import download, unzip +from conans import AutoToolsBuildEnvironment + + +class NettleConan(ConanFile): + name = "nettle" + generators = "txt","pkg_config" + settings = "os", "compiler", "arch", "build_type" + options = {"shared": [True, False]} + default_options = "shared=True" + url = "http://github.com/Av3m/conan-repo" + + def requirements(self): + self.requires("gmp/6.1.2@%s/%s" % ( self.user, self.channel)) + + def configure(self): + if self.options.shared: + self.options['gmp'].shared = True + else: + self.options['gmp'].shared = False + + if self.settings.os == "Windows": + if self.settings.compiler == "gcc": + self.requires("mingw_installer/1.0@conan/stable") + + def source(self): + zip_name = "nettle-%s.tar.gz" % self.version + folder_name = "nettle-%s" % self.version + download("http://ftp.gnu.org/gnu/nettle/%s" % zip_name, zip_name) + unzip(zip_name) + shutil.move(folder_name,"nettle") + + def build(self): + env_build = AutoToolsBuildEnvironment(self) + env_build.fpic = True + + if ( self.settings.os == "Windows" and self.settings.compiler == "gcc"): + env_build.flags.append("-Wl,--out-implib=$@.lib") + + + configure_args = list() + configure_args.append('--prefix=%s' %(os.path.join(self.build_folder,'__install')) ) + + + if ( self.options.shared): + configure_args.append('--enable-shared') + configure_args.append('--disable-static') + else: + configure_args.append('--enable-static') + configure_args.append('--disable-shared') + + env_build.configure(args=configure_args, configure_dir="nettle" ) + env_build.make() + env_build.make(args=["install"]) + + + def package(self): + self.copy("*", dst="", src="__install", keep_path=True) + self.copy("*.lib", dst="lib", src=".", keep_path=True) + self.copy("*.pc", src="__install", dst=".", keep_path=False) + + def package_id(self): + if ( self.settings.os=="Windows"): + del self.info.settings.compiler + + def package_info(self): + if ( self.settings.compiler == "Visual Studio" ): + self.cpp_info.libs = ['libnettle', 'libhogweed'] + else: + self.cpp_info.libs = ['nettle', 'hogweed'] + + self.env_info.PKG_CONFIG_nettle_PREFIX = self.package_folder + + + diff --git a/nuget/conanfile.py b/nuget/conanfile.py new file mode 100644 index 0000000..13227c7 --- /dev/null +++ b/nuget/conanfile.py @@ -0,0 +1,26 @@ +from conans import ConanFile, CMake, tools +import os + +class NugetConan(ConanFile): + name = "nuget" + version = "4.4.1" + license = "Apache License 2.0" + url = "https://github.com/Av3m/conan-nuget.git" + settings = { + "os": ["Windows"], + "arch": ["x86_64", "x86"] + } + generators = "txt" + + def source(self): + tools.download('https://dist.nuget.org/win-x86-commandline/v%s/nuget.exe' % (self.version), "nuget.exe") + + def build(self): + pass + + def package(self): + self.copy("*.exe", dst="bin", src=".") + + def package_info(self): + self.cpp_info.bindirs = ["bin"] + self.env_info.PATH.append(os.path.join(self.package_folder, "bin")) diff --git a/pcl/CMakeLists.txt b/pcl/CMakeLists.txt new file mode 100644 index 0000000..beb0eea --- /dev/null +++ b/pcl/CMakeLists.txt @@ -0,0 +1,12 @@ +include(${CMAKE_BINARY_DIR}/conanbuildinfo.cmake) +conan_basic_setup() + +add_definitions(-D_GLIBCXX_USE_CXX11_ABI=0) + +set(VTK_DIR ${CONAN_VTK_ROOT} CACHE PATH "") +set(VTK_ROOT ${CONAN_VTK_ROOT} CACHE PATH "") +set(VTK_INCLUDE_DIRS ${CONAN_VTK_ROOT}/include CACHE PATH "") +set(VTK_FOUND TRUE) +add_subdirectory(pcl) + +set (CMAKE_CXX_FLAGS "-shared -fPIC") diff --git a/pcl/conanfile.py b/pcl/conanfile.py new file mode 100644 index 0000000..1cad5c5 --- /dev/null +++ b/pcl/conanfile.py @@ -0,0 +1,77 @@ +from conans import ConanFile, CMake, tools +import os + + +class PclConan(ConanFile): + name = "pcl" + version = "1.8.1" + license = "3-clause BSD license" + url = "http://pointclouds.org" + settings = "os", "compiler", "build_type", "arch" + options = {"shared": [True, False],"with_qt": [True,False]} + default_options = "shared=True","with_qt=False" + generators = "cmake","txt" + description=""" + The Point Cloud Library (or PCL) is a large scale, open project for 2D/3D image and point cloud processing. + The PCL framework contains numerous state-of-the art algorithms including filtering, feature estimation, + surface reconstruction, registration, model fitting and segmentation. These algorithms can be used, for example, + to filter outliers from noisy data, stitch 3D point clouds together, segment relevant parts of a scene, extract keypoints + and compute descriptors to recognize objects in the world based on their geometric appearance, and create surfaces from point clouds and visualize them -- to name a few. + """ + + def requirements(self): + self.requires("Eigen3/3.3.4@%s/%s"%(self.user, self.channel)) + self.requires("VTK/7.1.1@%s/%s"%(self.user, self.channel)) + self.requires("flann/1.8.4@%s/%s"%(self.user, self.channel)) + self.requires("QHull/2015.2@%s/%s"%(self.user, self.channel)) + self.requires("boost/1.66.0@conan/stable") + self.requires("flann/1.8.4@%s/%s"%(self.user, self.channel)) + + def source(self): + self.run("git clone --branch pcl-%s --single-branch https://github.com/PointCloudLibrary/pcl.git" %(self.version)) + tools.replace_in_file("pcl/CMakeLists.txt","""project(PCL)""", + """project(PCL) + include(${CMAKE_BINARY_DIR}/conanbuildinfo.cmake) + conan_basic_setup() + set(Boost_DIR ${CONAN_BOOST_ROOT}) + find_package(Boost REQUIRED COMPONENTS system filesystem thread date_time iostreams)""") + + def build(self): + cmake = CMake(self,parallel=True) + cmake.definitions["WITH_VTK"] = "ON" + cmake.definitions["WITH_CUDA"] = "OFF" + cmake.definitions["CMAKE_INSTALL_PREFIX"] = "__install" + + + if ( self.options.with_qt == True): + cmake.definitions["WITH_QT"] = "ON" + else: + cmake.definitions["WITH_QT"] = "OFF" + + if ( self.options.shared == True): + cmake.definitions["BUILD_SHARED_LIBS"] = "ON" + else: + cmake.definitions["BUILD_SHARED_LIBS"] = "OFF" + + cmake.configure(source_dir="pcl", build_dir=".") + cmake.build() + cmake.install() + + def package(self): + self.copy("*", dst=".", src="__install") + + def package_info(self): + pcl_libs = [ 'apps','common', 'features', 'filters', 'io_ply', 'io', 'kdtree', 'keypoints', + 'ml', 'octree', 'outofcore', 'people', 'recognition', 'registration', + 'sample_consensus', 'search', 'segmentation', 'stereo', 'surface', 'tracking' , 'visualization'] + + if self.settings.build_type == "Debug": + for lib in pcl_libs: + self.cpp_info.libs.append("pcl_" + lib + "_debug" ) + elif self.settings.build_type == "Release": + for lib in pcl_libs: + self.cpp_info.libs.append("pcl_" + lib + "_release" ) + + self.cpp_info.includedirs = ['include'] # Ordered list of include paths + self.cpp_info.libdirs = ['lib'] # Directories where libraries can be found + self.cpp_info.bindirs = ['bin'] # Directories where executables and shared libs can be found diff --git a/proj4/CMakeLists.txt b/proj4/CMakeLists.txt new file mode 100644 index 0000000..2b8e005 --- /dev/null +++ b/proj4/CMakeLists.txt @@ -0,0 +1,106 @@ +PROJECT(conanproj) +cmake_minimum_required(VERSION 2.8) +include(conanbuildinfo.cmake) +CONAN_BASIC_SETUP() + +# proj4 is an ANSI C project +project(PROJ4 C) +set(PROJECT_INTERN_NAME PROJ) + +# added for conan package +set(PROJ4_SOURCE_DIR ${CMAKE_CURRENT_SOURCE_DIR}/proj.4-4.9.2) + +################################################################################# +# PROJ4 CMake modules +################################################################################# +# Path to additional CMake modules +set(CMAKE_MODULE_PATH ${PROJ4_SOURCE_DIR}/cmake ${CMAKE_MODULE_PATH}) +set(CMAKE_MODULE_PATH ${PROJ4_SOURCE_DIR}/cmake/modules ${CMAKE_MODULE_PATH}) + +include(Proj4Utilities) + +message(STATUS "") +colormsg(_HIBLUE_ "Configuring PROJ:") + +################################################################################# +#PROJ version information +################################################################################# +include(Proj4Version) +proj_version(MAJOR 4 MINOR 9 PATCH 2) +set(PROJ_API_VERSION "9") +set(PROJ_BUILD_VERSION "10.0.1") + +################################################################################# +# Build features and variants +################################################################################# +include(Proj4SystemInfo) +include(Proj4Config) +include(Proj4Mac) +include(policies) + +################################################################################# +# threading configuration +################################################################################# +set(CMAKE_THREAD_PREFER_PTHREAD TRUE) +find_package (Threads) + +include(CheckIncludeFiles) +include(CheckSymbolExists) +CHECK_SYMBOL_EXISTS(PTHREAD_MUTEX_RECURSIVE pthread.h HAVE_PTHREAD_MUTEX_RECURSIVE_DEFN) +if (HAVE_PTHREAD_MUTEX_RECURSIVE_DEFN) + add_definitions(-DHAVE_PTHREAD_MUTEX_RECURSIVE=1) +endif() + +boost_report_value(PROJ_PLATFORM_NAME) +boost_report_value(PROJ_COMPILER_NAME) + +# Set a default build type for single-configuration cmake generators if +# no build type is set. +if (NOT CMAKE_CONFIGURATION_TYPES AND NOT CMAKE_BUILD_TYPE) + set (CMAKE_BUILD_TYPE Release) +endif () + +if (MSVC OR CMAKE_CONFIGURATION_TYPES) + # For multi-config systems and for Visual Studio, the debug version of + # the library has _d appended. + set (CMAKE_DEBUG_POSTFIX _d) +endif () + +option(PROJ4_TESTS "Enable build of collection of PROJ4 tests" ON) +boost_report_value(PROJ4_TESTS) +if(PROJ4_TESTS) + include(CTest) + enable_testing() +endif(PROJ4_TESTS) +include(Proj4Test) + +# Put the libaries and binaries that get built into directories at the +# top of the build tree rather than in hard-to-find leaf +# directories. This simplifies manual testing and the use of the build +# tree rather than installed Boost libraries. +set(CMAKE_LIBRARY_OUTPUT_DIRECTORY ${PROJECT_BINARY_DIR}/lib) +set(CMAKE_ARCHIVE_OUTPUT_DIRECTORY ${PROJECT_BINARY_DIR}/lib) +set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${PROJECT_BINARY_DIR}/bin) +link_directories(${CMAKE_LIBRARY_OUTPUT_DIRECTORY}) + +################################################################################# +# Installation +################################################################################# +include(Proj4InstallPath) +set(BINDIR "${DEFAULT_BINDIR}" CACHE PATH "The directory to install binaries into.") +set(LIBDIR "${DEFAULT_LIBDIR}" CACHE PATH "The directory to install libraries into.") +set(DATADIR "${DEFAULT_DATADIR}" CACHE PATH "The directory to install data files into.") +set(DOCDIR "${DEFAULT_DOCDIR}" CACHE PATH "The directory to install doc files into.") +set(INCLUDEDIR "${DEFAULT_INCLUDEDIR}" CACHE PATH "The directory to install includes into.") + +################################################################################# +# Build configured components +################################################################################# +include_directories(${PROJ4_SOURCE_DIR}/src) + +# removed nad, man, cmake subdirs for conan package +add_subdirectory(${PROJ4_SOURCE_DIR}/src) + +if(CMAKE_THREAD_LIBS_INIT) + target_link_libraries(proj "${CMAKE_THREAD_LIBS_INIT}") +endif() diff --git a/proj4/FindPROJ4.cmake b/proj4/FindPROJ4.cmake new file mode 100644 index 0000000..452a698 --- /dev/null +++ b/proj4/FindPROJ4.cmake @@ -0,0 +1,18 @@ +find_path(PROJ4_INCLUDE_DIR NAMES proj_api.h + PATHS ${CONAN_INCLUDE_DIRS_PROJ} + NO_DEFAULT_PATH) + +find_library(PROJ4_LIBRARY NAMES ${CONAN_LIBS_PROJ} + PATHS ${CONAN_LIB_DIRS_PROJ} + NO_DEFAULT_PATH) + +include(FindPackageHandleStandardArgs) +find_package_handle_standard_args(PROJ4 + REQUIRED_VARS PROJ4_LIBRARY PROJ4_INCLUDE_DIR + FOUND_VAR PROJ4_FOUND +) + +set(PROJ4_INCLUDE_DIRS ${PROJ4_INCLUDE_DIR}) +set(PROJ4_LIBRARIES ${PROJ4_LIBRARY}) + +mark_as_advanced(PROJ4_INCLUDE_DIR PROJ4_LIBRARY) diff --git a/proj4/conanfile.py b/proj4/conanfile.py new file mode 100644 index 0000000..7872863 --- /dev/null +++ b/proj4/conanfile.py @@ -0,0 +1,54 @@ +import os +from conans import ConanFile, CMake +from conans.tools import download, unzip, patch, vcvars_command + +class ProjConan(ConanFile): + name = "proj" + generators = "cmake" + settings = "os", "compiler", "build_type", "arch" + exports = ["CMakeLists.txt", "FindPROJ4.cmake"] + options = {"shared": [True, False]} + default_options = "shared=True" + url="http://github.com/av3m/conan-proj4" + license="https://github.com/OSGeo/proj.4" + + + + + def source(self): + self.run("git clone --branch %s --single-branch https://github.com/OSGeo/proj.4.git proj" %(self.version)) + + def build_msvc(self): + cmd = vcvars_command(self.settings) + self.run("%s && nmake /f makefile.vc INSTDIR=%s " % (cmd,os.path.join(self.build_folder,"install")),cwd="proj") + self.run("%s && nmake /f makefile.vc install-all INSTDIR=%s" % (cmd,os.path.join(self.build_folder,"install")),cwd="proj") + + def build_gcc(self): + self.run("./configure --prefix=%s" % (os.path.join(self.build_folder,"install")),cwd="proj") + self.run("make",cwd="proj") + self.run("make install",cwd="proj") + + def build(self): + if self.settings.compiler=="Visual Studio": + self.build_msvc() + else: + self.build_gcc() + + + def build_id(self): + self.info_build.options.shared = "Both" + + def package_id(self): + self.info.options.shared = "Both" + + def package(self): + self.copy("FindPROJ4.cmake", ".", ".") + self.copy("*", dst=".", src="install") + + def package_info(self): + if ( self.options.shared == True and self.settings.compiler=="Visual Studio"): + self.cpp_info.libs = ["proj_i"] + else: + self.cpp_info.libs = ["proj"] + + self.cpp_info.bindirs = ["bin"] diff --git a/protobuf/.conanfile.py.un~ b/protobuf/.conanfile.py.un~ new file mode 100644 index 0000000..cbe789a Binary files /dev/null and b/protobuf/.conanfile.py.un~ differ diff --git a/protobuf/conanfile.py b/protobuf/conanfile.py new file mode 100644 index 0000000..d786aa9 --- /dev/null +++ b/protobuf/conanfile.py @@ -0,0 +1,118 @@ +from conans import ConanFile, CMake, tools +from conans.util.files import load, save +import os +import re +import shutil + +class ProtobufConan(ConanFile): + name = "Protobuf" + url = "https://github.com/Av3m/conan-protobuf.git" + license = "https://github.com/google/protobuf/blob/v{}/LICENSE".format(version) + requires = "zlib/1.2.11@conan/stable" + settings = "os", "compiler", "build_type", "arch" + # exports = "CMakeLists.txt", "lib*.cmake", "extract_includes.bat.in", "protoc.cmake", "tests.cmake", "change_dylib_names.sh" + options = {"shared": [True, False]} + default_options = "shared=False" + generators = "cmake" + + def replace_in_file_regex(self, file_path, regex, replace): + content = load(file_path) + content = re.sub(regex, replace, content) + with open(file_path, "w") as handle: + handle.write(content) + + def config(self): + self.options["zlib"].shared = self.options.shared + + def source(self): + self.run("git clone --branch v%s --single-branch https://github.com/google/protobuf.git" % (self.version) ) + tools.replace_in_file("protobuf/cmake/CMakeLists.txt", "project(protobuf C CXX)", '''project(protobuf C CXX) +include(${CMAKE_BINARY_DIR}/conanbuildinfo.cmake) +conan_basic_setup()''') + tools.replace_in_file("protobuf/cmake/install.cmake", + 'set(CMAKE_INSTALL_CMAKEDIR "${CMAKE_INSTALL_LIBDIR}/cmake/protobuf" CACHE STRING "${_cmakedir_desc}")', + 'set(CMAKE_INSTALL_CMAKEDIR "cmake" CACHE STRING "${_cmakedir_desc}")') # Install to the same folder for all compilers. + + def build(self): + cmake = CMake(self) + cmake.definitions['CMAKE_INSTALL_PREFIX'] = os.path.join(self.build_folder,"install") + cmake.definitions['protobuf_BUILD_EXAMPLES'] = 'OFF' + cmake.definitions['protobuf_BUILD_TESTS'] = 'OFF' + cmake.definitions['Dprotobuf_WITH_ZLIB'] = 'ON' + + + if ( self.options.shared == True ): + cmake.definitions['BUILD_SHARED_LIBS'] = 'ON' + else: + cmake.definitions['BUILD_SHARED_LIBS'] = 'OFF' + + if self.settings.compiler == "Visual Studio": + if self.settings.compiler.runtime == "MT" or self.settings.compiler.runtime == "MTd": + args += ["-Dprotobuf_MSVC_STATIC_RUNTIME=ON"] + cmake.definitions['protobuf_MSVC_STATIC_RUNTIME'] = 'ON' + else: + cmake.definitions['protobuf_MSVC_STATIC_RUNTIME'] = 'OFF' + + cmake.configure(source_dir="protobuf/cmake",build_dir=".") + cmake.build() + cmake.install() + + def package(self): + # Install FindProtobuf files: + # Fix some hard paths first: + self.replace_in_file_regex("install/cmake/protobuf-targets.cmake", r"INTERFACE_LINK_LIBRARIES \".+zlib.+\"", 'INTERFACE_LINK_LIBRARIES "${ZLIB_LIBRARY}"') + tools.replace_in_file("install/cmake/protobuf-targets.cmake", '''set_target_properties(protobuf::libprotobuf PROPERTIES''', '''find_package(ZLIB) +set_target_properties(protobuf::libprotobuf PROPERTIES''') # hard path to zlib. + + tools.replace_in_file("install/cmake/protobuf-targets.cmake", 'get_filename_component(_IMPORT_PREFIX "${_IMPORT_PREFIX}" PATH)', '''get_filename_component(_IMPORT_PREFIX "${_IMPORT_PREFIX}" PATH) + set(_IMPORT_PREFIX "${CONAN_PROTOBUF_ROOT}")''') # search everything in the conan folder, not the install folder. + tools.replace_in_file("install/cmake/protobuf-options.cmake", 'option(protobuf_MODULE_COMPATIBLE "CMake build-in FindProtobuf.cmake module compatible" OFF)', + 'option(protobuf_MODULE_COMPATIBLE "CMake build-in FindProtobuf.cmake module compatible" ON)') # We want to override the FindProtobuf.cmake shipped within CMake + + # Copy FindProtobuf.cmakes to package + cmake_files = ["protobuf-config.cmake", "protobuf-config-version.cmake", "protobuf-options.cmake", "protobuf-module.cmake", "protobuf-targets.cmake"] + for file in cmake_files: + self.copy(file, dst=".", src="install/cmake/") + # Copy the build_type specific file only for the right one: + self.copy("protobuf-targets-{}.cmake".format("debug" if self.settings.build_type == "Debug" else "release"), dst=".", src="install/cmake/") + + # Copy Headers to package include folder + self.copy("*.h", dst="include", src="install/include") + + # Copy all proto files: + self.copy("*.proto", dst="bin", src="protobuf/src") + + # TODO: we should just use the stuff from the install folder directly. + if self.settings.os == "Windows": + self.copy("*.lib", dst="lib", src="lib", keep_path=False) + self.copy("protoc.exe", dst="bin", src="bin", keep_path=False) + + if self.options.shared: + self.copy("*.dll", dst="bin", src="", keep_path=False) + else: + # Copy the libs to lib + if not self.options.shared: + self.copy("*.a", "lib", "", keep_path=False) + else: + self.copy("*.so*", "lib", "", keep_path=False) + self.copy("*.9.dylib", "lib", "", keep_path=False) + + # Copy the exe to bin + # we need some sort of dynlib converter for macosx here, see memshardeds protobuf + self.copy("protoc", "bin", "bin", keep_path=False) + + def package_info(self): + basename = "libprotobuf" + if self.settings.build_type == "Debug": + basename = "libprotobufd" + + if self.settings.os == "Windows": + self.cpp_info.libs = [basename] + if self.options.shared: + self.cpp_info.defines = ["PROTOBUF_USE_DLLS"] + elif self.settings.os == "Macos": + self.cpp_info.libs = [basename + ".a"] if not self.options.shared else [basename + ".9.dylib"] + else: + self.cpp_info.libs = [basename + ".a"] if not self.options.shared else [basename + ".so.9"] + + self.env_info.path.append(os.path.join(self.package_folder,"bin")) diff --git a/protobuf/conanfile.py~ b/protobuf/conanfile.py~ new file mode 100644 index 0000000..3f430d5 --- /dev/null +++ b/protobuf/conanfile.py~ @@ -0,0 +1,119 @@ +from conans import ConanFile, CMake, tools +from conans.util.files import load, save +import os +import re +import shutil + +class ProtobufConan(ConanFile): + name = "Protobuf" + version = "3.5.1.1" + url = "https://github.com/Av3m/conan-protobuf.git" + license = "https://github.com/google/protobuf/blob/v{}/LICENSE".format(version) + requires = "zlib/1.2.11@conan/stable" + settings = "os", "compiler", "build_type", "arch" + # exports = "CMakeLists.txt", "lib*.cmake", "extract_includes.bat.in", "protoc.cmake", "tests.cmake", "change_dylib_names.sh" + options = {"shared": [True, False]} + default_options = "shared=False" + generators = "cmake" + + def replace_in_file_regex(self, file_path, regex, replace): + content = load(file_path) + content = re.sub(regex, replace, content) + with open(file_path, "w") as handle: + handle.write(content) + + def config(self): + self.options["zlib"].shared = self.options.shared + + def source(self): + self.run("git clone --branch v%s --single-branch https://github.com/google/protobuf.git" % (self.version) ) + tools.replace_in_file("protobuf/cmake/CMakeLists.txt", "project(protobuf C CXX)", '''project(protobuf C CXX) +include(${CMAKE_BINARY_DIR}/conanbuildinfo.cmake) +conan_basic_setup()''') + tools.replace_in_file("protobuf/cmake/install.cmake", + 'set(CMAKE_INSTALL_CMAKEDIR "${CMAKE_INSTALL_LIBDIR}/cmake/protobuf" CACHE STRING "${_cmakedir_desc}")', + 'set(CMAKE_INSTALL_CMAKEDIR "cmake" CACHE STRING "${_cmakedir_desc}")') # Install to the same folder for all compilers. + + def build(self): + cmake = CMake(self) + cmake.definitions['CMAKE_INSTALL_PREFIX'] = os.path.join(self.build_folder,"install") + cmake.definitions['protobuf_BUILD_EXAMPLES'] = 'OFF' + cmake.definitions['protobuf_BUILD_TESTS'] = 'OFF' + cmake.definitions['Dprotobuf_WITH_ZLIB'] = 'ON' + + + if ( self.options.shared == True ): + cmake.definitions['BUILD_SHARED_LIBS'] = 'ON' + else: + cmake.definitions['BUILD_SHARED_LIBS'] = 'OFF' + + if self.settings.compiler == "Visual Studio": + if self.settings.compiler.runtime == "MT" or self.settings.compiler.runtime == "MTd": + args += ["-Dprotobuf_MSVC_STATIC_RUNTIME=ON"] + cmake.definitions['protobuf_MSVC_STATIC_RUNTIME'] = 'ON' + else: + cmake.definitions['protobuf_MSVC_STATIC_RUNTIME'] = 'OFF' + + cmake.configure(source_dir="protobuf/cmake",build_dir=".") + cmake.build() + cmake.install() + + def package(self): + # Install FindProtobuf files: + # Fix some hard paths first: + self.replace_in_file_regex("install/cmake/protobuf-targets.cmake", r"INTERFACE_LINK_LIBRARIES \".+zlib.+\"", 'INTERFACE_LINK_LIBRARIES "${ZLIB_LIBRARY}"') + tools.replace_in_file("install/cmake/protobuf-targets.cmake", '''set_target_properties(protobuf::libprotobuf PROPERTIES''', '''find_package(ZLIB) +set_target_properties(protobuf::libprotobuf PROPERTIES''') # hard path to zlib. + + tools.replace_in_file("install/cmake/protobuf-targets.cmake", 'get_filename_component(_IMPORT_PREFIX "${_IMPORT_PREFIX}" PATH)', '''get_filename_component(_IMPORT_PREFIX "${_IMPORT_PREFIX}" PATH) + set(_IMPORT_PREFIX "${CONAN_PROTOBUF_ROOT}")''') # search everything in the conan folder, not the install folder. + tools.replace_in_file("install/cmake/protobuf-options.cmake", 'option(protobuf_MODULE_COMPATIBLE "CMake build-in FindProtobuf.cmake module compatible" OFF)', + 'option(protobuf_MODULE_COMPATIBLE "CMake build-in FindProtobuf.cmake module compatible" ON)') # We want to override the FindProtobuf.cmake shipped within CMake + + # Copy FindProtobuf.cmakes to package + cmake_files = ["protobuf-config.cmake", "protobuf-config-version.cmake", "protobuf-options.cmake", "protobuf-module.cmake", "protobuf-targets.cmake"] + for file in cmake_files: + self.copy(file, dst=".", src="install/cmake/") + # Copy the build_type specific file only for the right one: + self.copy("protobuf-targets-{}.cmake".format("debug" if self.settings.build_type == "Debug" else "release"), dst=".", src="install/cmake/") + + # Copy Headers to package include folder + self.copy("*.h", dst="include", src="install/include") + + # Copy all proto files: + self.copy("*.proto", dst="bin", src="{}/src".format(self.folder)) + + # TODO: we should just use the stuff from the install folder directly. + if self.settings.os == "Windows": + self.copy("*.lib", dst="lib", src="lib", keep_path=False) + self.copy("protoc.exe", dst="bin", src="bin", keep_path=False) + + if self.options.shared: + self.copy("*.dll", dst="bin", src="", keep_path=False) + else: + # Copy the libs to lib + if not self.options.shared: + self.copy("*.a", "lib", "", keep_path=False) + else: + self.copy("*.so*", "lib", "", keep_path=False) + self.copy("*.9.dylib", "lib", "", keep_path=False) + + # Copy the exe to bin + # we need some sort of dynlib converter for macosx here, see memshardeds protobuf + self.copy("protoc", "bin", "bin", keep_path=False) + + def package_info(self): + basename = "libprotobuf" + if self.settings.build_type == "Debug": + basename = "libprotobufd" + + if self.settings.os == "Windows": + self.cpp_info.libs = [basename] + if self.options.shared: + self.cpp_info.defines = ["PROTOBUF_USE_DLLS"] + elif self.settings.os == "Macos": + self.cpp_info.libs = [basename + ".a"] if not self.options.shared else [basename + ".9.dylib"] + else: + self.cpp_info.libs = [basename + ".a"] if not self.options.shared else [basename + ".so.9"] + + self.env_info.path.append(os.path.join(self.package_folder,"bin")) diff --git a/qhull/cmake/LibFindMacros.cmake b/qhull/cmake/LibFindMacros.cmake new file mode 100644 index 0000000..3ef5844 --- /dev/null +++ b/qhull/cmake/LibFindMacros.cmake @@ -0,0 +1,266 @@ +# Version 2.2 +# Public Domain, originally written by Lasse Kärkkäinen +# Maintained at https://github.com/Tronic/cmake-modules +# Please send your improvements as pull requests on Github. + +# Find another package and make it a dependency of the current package. +# This also automatically forwards the "REQUIRED" argument. +# Usage: libfind_package( [extra args to find_package]) +macro (libfind_package PREFIX PKG) + set(${PREFIX}_args ${PKG} ${ARGN}) + if (${PREFIX}_FIND_REQUIRED) + set(${PREFIX}_args ${${PREFIX}_args} REQUIRED) + endif() + find_package(${${PREFIX}_args}) + set(${PREFIX}_DEPENDENCIES ${${PREFIX}_DEPENDENCIES};${PKG}) + unset(${PREFIX}_args) +endmacro() + +# A simple wrapper to make pkg-config searches a bit easier. +# Works the same as CMake's internal pkg_check_modules but is always quiet. +macro (libfind_pkg_check_modules) + find_package(PkgConfig QUIET) + if (PKG_CONFIG_FOUND) + pkg_check_modules(${ARGN} QUIET) + endif() +endmacro() + +# Avoid useless copy&pasta by doing what most simple libraries do anyway: +# pkg-config, find headers, find library. +# Usage: libfind_pkg_detect( FIND_PATH [other args] FIND_LIBRARY [other args]) +# E.g. libfind_pkg_detect(SDL2 sdl2 FIND_PATH SDL.h PATH_SUFFIXES SDL2 FIND_LIBRARY SDL2) +function (libfind_pkg_detect PREFIX) + # Parse arguments + set(argname pkgargs) + foreach (i ${ARGN}) + if ("${i}" STREQUAL "FIND_PATH") + set(argname pathargs) + elseif ("${i}" STREQUAL "FIND_LIBRARY") + set(argname libraryargs) + else() + set(${argname} ${${argname}} ${i}) + endif() + endforeach() + if (NOT pkgargs) + message(FATAL_ERROR "libfind_pkg_detect requires at least a pkg_config package name to be passed.") + endif() + # Find library + libfind_pkg_check_modules(${PREFIX}_PKGCONF ${pkgargs}) + if (pathargs) + find_path(${PREFIX}_INCLUDE_DIR NAMES ${pathargs} HINTS ${${PREFIX}_PKGCONF_INCLUDE_DIRS}) + endif() + if (libraryargs) + find_library(${PREFIX}_LIBRARY NAMES ${libraryargs} HINTS ${${PREFIX}_PKGCONF_LIBRARY_DIRS}) + endif() +endfunction() + +# Extracts a version #define from a version.h file, output stored to _VERSION. +# Usage: libfind_version_header(Foobar foobar/version.h FOOBAR_VERSION_STR) +# Fourth argument "QUIET" may be used for silently testing different define names. +# This function does nothing if the version variable is already defined. +function (libfind_version_header PREFIX VERSION_H DEFINE_NAME) + # Skip processing if we already have a version or if the include dir was not found + if (${PREFIX}_VERSION OR NOT ${PREFIX}_INCLUDE_DIR) + return() + endif() + set(quiet ${${PREFIX}_FIND_QUIETLY}) + # Process optional arguments + foreach(arg ${ARGN}) + if (arg STREQUAL "QUIET") + set(quiet TRUE) + else() + message(AUTHOR_WARNING "Unknown argument ${arg} to libfind_version_header ignored.") + endif() + endforeach() + # Read the header and parse for version number + set(filename "${${PREFIX}_INCLUDE_DIR}/${VERSION_H}") + if (NOT EXISTS ${filename}) + if (NOT quiet) + message(AUTHOR_WARNING "Unable to find ${${PREFIX}_INCLUDE_DIR}/${VERSION_H}") + endif() + return() + endif() + file(READ "${filename}" header) + string(REGEX REPLACE ".*#[ \t]*define[ \t]*${DEFINE_NAME}[ \t]*\"([^\n]*)\".*" "\\1" match "${header}") + # No regex match? + if (match STREQUAL header) + if (NOT quiet) + message(AUTHOR_WARNING "Unable to find \#define ${DEFINE_NAME} \"\" from ${${PREFIX}_INCLUDE_DIR}/${VERSION_H}") + endif() + return() + endif() + # Export the version string + set(${PREFIX}_VERSION "${match}" PARENT_SCOPE) +endfunction() + +# Do the final processing once the paths have been detected. +# If include dirs are needed, ${PREFIX}_PROCESS_INCLUDES should be set to contain +# all the variables, each of which contain one include directory. +# Ditto for ${PREFIX}_PROCESS_LIBS and library files. +# Will set ${PREFIX}_FOUND, ${PREFIX}_INCLUDE_DIRS and ${PREFIX}_LIBRARIES. +# Also handles errors in case library detection was required, etc. +function (libfind_process PREFIX) + # Skip processing if already processed during this configuration run + if (${PREFIX}_FOUND) + return() + endif() + + set(found TRUE) # Start with the assumption that the package was found + + # Did we find any files? Did we miss includes? These are for formatting better error messages. + set(some_files FALSE) + set(missing_headers FALSE) + + # Shorthands for some variables that we need often + set(quiet ${${PREFIX}_FIND_QUIETLY}) + set(required ${${PREFIX}_FIND_REQUIRED}) + set(exactver ${${PREFIX}_FIND_VERSION_EXACT}) + set(findver "${${PREFIX}_FIND_VERSION}") + set(version "${${PREFIX}_VERSION}") + + # Lists of config option names (all, includes, libs) + unset(configopts) + set(includeopts ${${PREFIX}_PROCESS_INCLUDES}) + set(libraryopts ${${PREFIX}_PROCESS_LIBS}) + + # Process deps to add to + foreach (i ${PREFIX} ${${PREFIX}_DEPENDENCIES}) + if (DEFINED ${i}_INCLUDE_OPTS OR DEFINED ${i}_LIBRARY_OPTS) + # The package seems to export option lists that we can use, woohoo! + list(APPEND includeopts ${${i}_INCLUDE_OPTS}) + list(APPEND libraryopts ${${i}_LIBRARY_OPTS}) + else() + # If plural forms don't exist or they equal singular forms + if ((NOT DEFINED ${i}_INCLUDE_DIRS AND NOT DEFINED ${i}_LIBRARIES) OR + ({i}_INCLUDE_DIR STREQUAL ${i}_INCLUDE_DIRS AND ${i}_LIBRARY STREQUAL ${i}_LIBRARIES)) + # Singular forms can be used + if (DEFINED ${i}_INCLUDE_DIR) + list(APPEND includeopts ${i}_INCLUDE_DIR) + endif() + if (DEFINED ${i}_LIBRARY) + list(APPEND libraryopts ${i}_LIBRARY) + endif() + else() + # Oh no, we don't know the option names + message(FATAL_ERROR "We couldn't determine config variable names for ${i} includes and libs. Aieeh!") + endif() + endif() + endforeach() + + if (includeopts) + list(REMOVE_DUPLICATES includeopts) + endif() + + if (libraryopts) + list(REMOVE_DUPLICATES libraryopts) + endif() + + string(REGEX REPLACE ".*[ ;]([^ ;]*(_INCLUDE_DIRS|_LIBRARIES))" "\\1" tmp "${includeopts} ${libraryopts}") + if (NOT tmp STREQUAL "${includeopts} ${libraryopts}") + message(AUTHOR_WARNING "Plural form ${tmp} found in config options of ${PREFIX}. This works as before but is now deprecated. Please only use singular forms INCLUDE_DIR and LIBRARY, and update your find scripts for LibFindMacros > 2.0 automatic dependency system (most often you can simply remove the PROCESS variables entirely).") + endif() + + # Include/library names separated by spaces (notice: not CMake lists) + unset(includes) + unset(libs) + + # Process all includes and set found false if any are missing + foreach (i ${includeopts}) + list(APPEND configopts ${i}) + if (NOT "${${i}}" STREQUAL "${i}-NOTFOUND") + list(APPEND includes "${${i}}") + else() + set(found FALSE) + set(missing_headers TRUE) + endif() + endforeach() + + # Process all libraries and set found false if any are missing + foreach (i ${libraryopts}) + list(APPEND configopts ${i}) + if (NOT "${${i}}" STREQUAL "${i}-NOTFOUND") + list(APPEND libs "${${i}}") + else() + set (found FALSE) + endif() + endforeach() + + # Version checks + if (found AND findver) + if (NOT version) + message(WARNING "The find module for ${PREFIX} does not provide version information, so we'll just assume that it is OK. Please fix the module or remove package version requirements to get rid of this warning.") + elseif (version VERSION_LESS findver OR (exactver AND NOT version VERSION_EQUAL findver)) + set(found FALSE) + set(version_unsuitable TRUE) + endif() + endif() + + # If all-OK, hide all config options, export variables, print status and exit + if (found) + foreach (i ${configopts}) + mark_as_advanced(${i}) + endforeach() + if (NOT quiet) + message(STATUS "Found ${PREFIX} ${${PREFIX}_VERSION}") + if (LIBFIND_DEBUG) + message(STATUS " ${PREFIX}_DEPENDENCIES=${${PREFIX}_DEPENDENCIES}") + message(STATUS " ${PREFIX}_INCLUDE_OPTS=${includeopts}") + message(STATUS " ${PREFIX}_INCLUDE_DIRS=${includes}") + message(STATUS " ${PREFIX}_LIBRARY_OPTS=${libraryopts}") + message(STATUS " ${PREFIX}_LIBRARIES=${libs}") + endif() + set (${PREFIX}_INCLUDE_OPTS ${includeopts} PARENT_SCOPE) + set (${PREFIX}_LIBRARY_OPTS ${libraryopts} PARENT_SCOPE) + set (${PREFIX}_INCLUDE_DIRS ${includes} PARENT_SCOPE) + set (${PREFIX}_LIBRARIES ${libs} PARENT_SCOPE) + set (${PREFIX}_FOUND TRUE PARENT_SCOPE) + endif() + return() + endif() + + # Format messages for debug info and the type of error + set(vars "Relevant CMake configuration variables:\n") + foreach (i ${configopts}) + mark_as_advanced(CLEAR ${i}) + set(val ${${i}}) + if ("${val}" STREQUAL "${i}-NOTFOUND") + set (val "") + elseif (val AND NOT EXISTS ${val}) + set (val "${val} (does not exist)") + else() + set(some_files TRUE) + endif() + set(vars "${vars} ${i}=${val}\n") + endforeach() + set(vars "${vars}You may use CMake GUI, cmake -D or ccmake to modify the values. Delete CMakeCache.txt to discard all values and force full re-detection if necessary.\n") + if (version_unsuitable) + set(msg "${PREFIX} ${${PREFIX}_VERSION} was found but") + if (exactver) + set(msg "${msg} only version ${findver} is acceptable.") + else() + set(msg "${msg} version ${findver} is the minimum requirement.") + endif() + else() + if (missing_headers) + set(msg "We could not find development headers for ${PREFIX}. Do you have the necessary dev package installed?") + elseif (some_files) + set(msg "We only found some files of ${PREFIX}, not all of them. Perhaps your installation is incomplete or maybe we just didn't look in the right place?") + if(findver) + set(msg "${msg} This could also be caused by incompatible version (if it helps, at least ${PREFIX} ${findver} should work).") + endif() + else() + set(msg "We were unable to find package ${PREFIX}.") + endif() + endif() + + # Fatal error out if REQUIRED + if (required) + set(msg "REQUIRED PACKAGE NOT FOUND\n${msg} This package is REQUIRED and you need to install it or adjust CMake configuration in order to continue building ${CMAKE_PROJECT_NAME}.") + message(FATAL_ERROR "${msg}\n${vars}") + endif() + # Otherwise just print a nasty warning + if (NOT quiet) + message(WARNING "WARNING: MISSING PACKAGE\n${msg} This package is NOT REQUIRED and you may ignore this warning but by doing so you may miss some functionality of ${CMAKE_PROJECT_NAME}. \n${vars}") + endif() +endfunction() + diff --git a/qhull/cmake/QHullConfig.cmake b/qhull/cmake/QHullConfig.cmake new file mode 100644 index 0000000..58184dc --- /dev/null +++ b/qhull/cmake/QHullConfig.cmake @@ -0,0 +1,25 @@ +include(LibFindMacros) + +get_filename_component(this_dir ${CMAKE_CURRENT_LIST_FILE} PATH) +# Include dir + +find_path(QHull_INCLUDE_DIR + NAMES libqhull.h + PATHS ${this_dir}/include/libqhull +) + +get_filename_component(QHull_INCLUDE_DIR_PARENT ${QHull_INCLUDE_DIR} PATH) + + +# Finally the library itself +find_library(QHull_LIBRARY + NAMES qhullstatic libqhullstatic + PATHS ${this_dir}/lib +) + +# Set the include dir variables and the libraries and let libfind_process do the rest. +# NOTE: Singular variables for this library, plural for libraries this this lib depends on. +set(QHull_PROCESS_INCLUDES QHull_INCLUDE_DIR QHull_INCLUDE_DIR_PARENT QHull_INCLUDE_DIRS) +set(QHull_PROCESS_LIBS QHull_LIBRARY QHull_LIBRARIES) +libfind_process(QHull) + diff --git a/qhull/conanfile.py b/qhull/conanfile.py new file mode 100644 index 0000000..7dde986 --- /dev/null +++ b/qhull/conanfile.py @@ -0,0 +1,50 @@ +from conans import ConanFile, CMake, tools +import os + + +class QhullConan(ConanFile): + name = "QHull" + license = "https://github.com/Av3m/conan-qhull.git" + url = "http://www.qhull.org" + settings = "os", "compiler", "build_type", "arch" + generators = "cmake" + description="""Qhull computes the convex hull, Delaunay triangulation, Voronoi diagram, halfspace intersection about a point, furthest-site Delaunay triangulation, and furthest-site Voronoi diagram. The source code runs in 2-d, 3-d, 4-d, and higher dimensions. Qhull implements the Quickhull algorithm for computing the convex hull. It handles roundoff errors from floating point arithmetic. It computes volumes, surface areas, and approximations to the convex hull.""" + exports_sources="cmake/*" + + def source(self): + self.run("git clone https://github.com/qhull/qhull.git") + self.run("cd qhull && git checkout %s" %(self.version) ) + # This small hack might be useful to guarantee proper /MT /MD linkage in MSVC + # if the packaged project doesn't have variables to set it properly + + tools.replace_in_file("qhull/CMakeLists.txt","""project(qhull)""","""project(qhull) + include(${CMAKE_BINARY_DIR}/conanbuildinfo.cmake) + conan_basic_setup()""") + + def build(self): + cmake = CMake(self) + cmake.definitions["CMAKE_INSTALL_PREFIX"] = "__install" + cmake.configure(source_dir="qhull",build_dir=".") + cmake.build() + cmake.install() + + def package(self): + self.copy("*", dst=".", src="__install") + self.copy("*.exe", dst="bin", keep_path=False) + self.copy("*.so", dst="bin", keep_path=False) + self.copy("*.dll", dst="bin", keep_path=False) + self.copy("*.lib", dst="lib", keep_path=False) + self.copy("*.a", dst="lib", keep_path=False) + self.copy("*.cmake", src="cmake", dst=".", keep_path=False) + + + def package_info(self): + self.cpp_info.includedirs = ['include'] # Ordered list of include paths + if self.settings.compiler == "Visual Studio": + self.cpp_info.libs = ['qhullstatic'] # The libs to link against + else: + self.cpp_info.libs = ['libqhullstatic'] # The libs to link against + + self.cpp_info.libdirs = ['lib'] # Directories where libraries can be found + self.cpp_info.bindirs = ['bin'] # Directories where executables and shared libs can be found + diff --git a/qhull/test_package/CMakeLists.txt b/qhull/test_package/CMakeLists.txt new file mode 100644 index 0000000..afe7826 --- /dev/null +++ b/qhull/test_package/CMakeLists.txt @@ -0,0 +1,15 @@ +project(PackageTest CXX) +cmake_minimum_required(VERSION 2.8.12) + +include(${CMAKE_BINARY_DIR}/conanbuildinfo.cmake) +conan_basic_setup() +find_package(QHull REQUIRED NO_CMAKE_SYSTEM_PATH) + +add_executable(example example.cpp) +target_link_libraries(example ${QHull_LIBRARIES}) + +# CTest is a testing tool that can be used to test your project. +# enable_testing() +# add_test(NAME example +# WORKING_DIRECTORY ${CMAKE_BINARY_DIR}/bin +# COMMAND example) diff --git a/qhull/test_package/build/2419fc4ca82fd76a6c5d823d86b2c25bfc03afec/CMakeCache.txt b/qhull/test_package/build/2419fc4ca82fd76a6c5d823d86b2c25bfc03afec/CMakeCache.txt new file mode 100644 index 0000000..9d36b8f --- /dev/null +++ b/qhull/test_package/build/2419fc4ca82fd76a6c5d823d86b2c25bfc03afec/CMakeCache.txt @@ -0,0 +1,317 @@ +# This is the CMakeCache file. +# For build in directory: /mnt/c/Users/t.vogl/Documents/repos/conan-qhull/test_package/build/2419fc4ca82fd76a6c5d823d86b2c25bfc03afec +# It was generated by CMake: /usr/bin/cmake +# You can edit this file to change values found and used by cmake. +# If you do not want to change any of the values, simply exit the editor. +# If you do want to change a value, simply edit, save, and exit the editor. +# The syntax for the file is as follows: +# KEY:TYPE=VALUE +# KEY is the name of a variable in the cache. +# TYPE is a hint to GUIs for the type of VALUE, DO NOT EDIT TYPE!. +# VALUE is the current value for the KEY. + +######################## +# EXTERNAL cache entries +######################## + +//Path to a program. +CMAKE_AR:FILEPATH=/usr/bin/ar + +//Choose the type of build, options are: None(CMAKE_CXX_FLAGS or +// CMAKE_C_FLAGS used) 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++ + +//Flags used by the compiler during all build types. +CMAKE_CXX_FLAGS:STRING= + +//Flags used by the compiler during debug builds. +CMAKE_CXX_FLAGS_DEBUG:STRING=-g + +//Flags used by the compiler during release builds for minimum +// size. +CMAKE_CXX_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG + +//Flags used by the compiler during release builds. +CMAKE_CXX_FLAGS_RELEASE:STRING=-O3 -DNDEBUG + +//Flags used by the compiler during release builds with debug info. +CMAKE_CXX_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG + +//Flags used by the linker. +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 release minsize 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 Release with Debug Info builds. +CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//Enable/Disable output of compile commands during generation. +CMAKE_EXPORT_COMPILE_COMMANDS:BOOL=OFF + +//Install path prefix, prepended onto install directories. +CMAKE_INSTALL_PREFIX:PATH=/usr/local + +//Path to a program. +CMAKE_LINKER:FILEPATH=/usr/bin/ld + +//Path to a program. +CMAKE_MAKE_PROGRAM:FILEPATH=/usr/bin/make + +//Flags used by the linker during the creation of modules. +CMAKE_MODULE_LINKER_FLAGS:STRING= + +//Flags used by the linker during debug builds. +CMAKE_MODULE_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during release minsize builds. +CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during release builds. +CMAKE_MODULE_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during Release with Debug Info 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_NAME:STATIC=PackageTest + +//Path to a program. +CMAKE_RANLIB:FILEPATH=/usr/bin/ranlib + +//Flags used by the linker during the creation of dll's. +CMAKE_SHARED_LINKER_FLAGS:STRING= + +//Flags used by the linker during debug builds. +CMAKE_SHARED_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during release minsize builds. +CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during release builds. +CMAKE_SHARED_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during Release with Debug Info 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. +CMAKE_STATIC_LINKER_FLAGS:STRING= + +//Flags used by the linker during debug builds. +CMAKE_STATIC_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during release minsize builds. +CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during release builds. +CMAKE_STATIC_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during Release with Debug Info 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 + +//No help, variable specified on the command line. +CONAN_COMPILER:UNINITIALIZED=gcc + +//No help, variable specified on the command line. +CONAN_COMPILER_VERSION:UNINITIALIZED=5.4 + +//No help, variable specified on the command line. +CONAN_CXX_FLAGS:UNINITIALIZED=-m64 + +//No help, variable specified on the command line. +CONAN_C_FLAGS:UNINITIALIZED=-m64 + +//No help, variable specified on the command line. +CONAN_EXPORTED:UNINITIALIZED=1 + +//No help, variable specified on the command line. +CONAN_LIBCXX:UNINITIALIZED=libstdc++ + +//No help, variable specified on the command line. +CONAN_SHARED_LINKER_FLAGS:UNINITIALIZED=-m64 + +//Value Computed by CMake +PackageTest_BINARY_DIR:STATIC=/mnt/c/Users/t.vogl/Documents/repos/conan-qhull/test_package/build/2419fc4ca82fd76a6c5d823d86b2c25bfc03afec + +//Value Computed by CMake +PackageTest_SOURCE_DIR:STATIC=/mnt/c/Users/t.vogl/Documents/repos/conan-qhull/test_package + +//The directory containing a CMake configuration file for QHull. +QHull_DIR:PATH=/home/tom/.conan/data/QHull/f0bd8ce/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9 + +//Path to a file. +QHull_INCLUDE_DIR:PATH=/home/tom/.conan/data/QHull/f0bd8ce/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/include/libqhull + +//Path to a library. +QHull_LIBRARY:FILEPATH=/home/tom/.conan/data/QHull/f0bd8ce/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/lib/libqhullstatic.a + + +######################## +# INTERNAL cache entries +######################## + +//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=/mnt/c/Users/t.vogl/Documents/repos/conan-qhull/test_package/build/2419fc4ca82fd76a6c5d823d86b2c25bfc03afec +//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=5 +//Patch version of cmake used to create the current loaded cache +CMAKE_CACHE_PATCH_VERSION:INTERNAL=1 +//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_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 +//Whether to issue deprecation errors for macros and functions. +CMAKE_ERROR_DEPRECATED:INTERNAL=FALSE +//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 +//Name of generator platform. +CMAKE_GENERATOR_PLATFORM:INTERNAL= +//Name of generator toolset. +CMAKE_GENERATOR_TOOLSET:INTERNAL= +//Source directory with the top level CMakeLists.txt file for this +// project +CMAKE_HOME_DIRECTORY:INTERNAL=/mnt/c/Users/t.vogl/Documents/repos/conan-qhull/test_package +//Install .so files without execute permission. +CMAKE_INSTALL_SO_NO_EXE: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=1 +//ADVANCED property for variable: CMAKE_OBJCOPY +CMAKE_OBJCOPY-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_OBJDUMP +CMAKE_OBJDUMP-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_RANLIB +CMAKE_RANLIB-ADVANCED:INTERNAL=1 +//Path to CMake installation. +CMAKE_ROOT:INTERNAL=/usr/share/cmake-3.5 +//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 +//Suppress errors that are meant for the author of the CMakeLists.txt +// files. +CMAKE_SUPPRESS_DEVELOPER_ERRORS:INTERNAL=TRUE +//Suppress Warnings that are meant for the author of the CMakeLists.txt +// files. +CMAKE_SUPPRESS_DEVELOPER_WARNINGS:INTERNAL=TRUE +//uname command +CMAKE_UNAME:INTERNAL=/bin/uname +//ADVANCED property for variable: CMAKE_VERBOSE_MAKEFILE +CMAKE_VERBOSE_MAKEFILE-ADVANCED:INTERNAL=1 +//Whether to issue warnings for deprecated functionality. +CMAKE_WARN_DEPRECATED:INTERNAL=FALSE +//ADVANCED property for variable: QHull_INCLUDE_DIR +QHull_INCLUDE_DIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: QHull_LIBRARY +QHull_LIBRARY-ADVANCED:INTERNAL=1 + diff --git a/qhull/test_package/build/2419fc4ca82fd76a6c5d823d86b2c25bfc03afec/CMakeFiles/3.5.1/CMakeCXXCompiler.cmake b/qhull/test_package/build/2419fc4ca82fd76a6c5d823d86b2c25bfc03afec/CMakeFiles/3.5.1/CMakeCXXCompiler.cmake new file mode 100644 index 0000000..013ee92 --- /dev/null +++ b/qhull/test_package/build/2419fc4ca82fd76a6c5d823d86b2c25bfc03afec/CMakeFiles/3.5.1/CMakeCXXCompiler.cmake @@ -0,0 +1,68 @@ +set(CMAKE_CXX_COMPILER "/usr/bin/c++") +set(CMAKE_CXX_COMPILER_ARG1 "") +set(CMAKE_CXX_COMPILER_ID "GNU") +set(CMAKE_CXX_COMPILER_VERSION "5.4.0") +set(CMAKE_CXX_COMPILER_WRAPPER "") +set(CMAKE_CXX_STANDARD_COMPUTED_DEFAULT "98") +set(CMAKE_CXX_COMPILE_FEATURES "cxx_template_template_parameters;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_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_CXX98_COMPILE_FEATURES "cxx_template_template_parameters") +set(CMAKE_CXX11_COMPILE_FEATURES "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_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_CXX_PLATFORM_ID "Linux") +set(CMAKE_CXX_SIMULATE_ID "") +set(CMAKE_CXX_SIMULATE_VERSION "") + +set(CMAKE_AR "/usr/bin/ar") +set(CMAKE_RANLIB "/usr/bin/ranlib") +set(CMAKE_LINKER "/usr/bin/ld") +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_IGNORE_EXTENSIONS inl;h;hpp;HPP;H;o;O;obj;OBJ;def;DEF;rc;RC) +set(CMAKE_CXX_SOURCE_FILE_EXTENSIONS C;M;c++;cc;cpp;cxx;mm;CPP) +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 "x86_64-linux-gnu") + +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 "x86_64-linux-gnu") +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_LINK_LIBRARIES "stdc++;m;c") +set(CMAKE_CXX_IMPLICIT_LINK_DIRECTORIES "/usr/lib/gcc/x86_64-linux-gnu/5;/usr/lib/x86_64-linux-gnu;/usr/lib;/lib/x86_64-linux-gnu;/lib") +set(CMAKE_CXX_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "") diff --git a/qhull/test_package/build/2419fc4ca82fd76a6c5d823d86b2c25bfc03afec/CMakeFiles/3.5.1/CMakeDetermineCompilerABI_CXX.bin b/qhull/test_package/build/2419fc4ca82fd76a6c5d823d86b2c25bfc03afec/CMakeFiles/3.5.1/CMakeDetermineCompilerABI_CXX.bin new file mode 100644 index 0000000..871d1fb Binary files /dev/null and b/qhull/test_package/build/2419fc4ca82fd76a6c5d823d86b2c25bfc03afec/CMakeFiles/3.5.1/CMakeDetermineCompilerABI_CXX.bin differ diff --git a/qhull/test_package/build/2419fc4ca82fd76a6c5d823d86b2c25bfc03afec/CMakeFiles/3.5.1/CMakeSystem.cmake b/qhull/test_package/build/2419fc4ca82fd76a6c5d823d86b2c25bfc03afec/CMakeFiles/3.5.1/CMakeSystem.cmake new file mode 100644 index 0000000..8476695 --- /dev/null +++ b/qhull/test_package/build/2419fc4ca82fd76a6c5d823d86b2c25bfc03afec/CMakeFiles/3.5.1/CMakeSystem.cmake @@ -0,0 +1,15 @@ +set(CMAKE_HOST_SYSTEM "Linux-4.4.0-43-Microsoft") +set(CMAKE_HOST_SYSTEM_NAME "Linux") +set(CMAKE_HOST_SYSTEM_VERSION "4.4.0-43-Microsoft") +set(CMAKE_HOST_SYSTEM_PROCESSOR "x86_64") + + + +set(CMAKE_SYSTEM "Linux-4.4.0-43-Microsoft") +set(CMAKE_SYSTEM_NAME "Linux") +set(CMAKE_SYSTEM_VERSION "4.4.0-43-Microsoft") +set(CMAKE_SYSTEM_PROCESSOR "x86_64") + +set(CMAKE_CROSSCOMPILING "FALSE") + +set(CMAKE_SYSTEM_LOADED 1) diff --git a/qhull/test_package/build/2419fc4ca82fd76a6c5d823d86b2c25bfc03afec/CMakeFiles/3.5.1/CompilerIdCXX/CMakeCXXCompilerId.cpp b/qhull/test_package/build/2419fc4ca82fd76a6c5d823d86b2c25bfc03afec/CMakeFiles/3.5.1/CompilerIdCXX/CMakeCXXCompilerId.cpp new file mode 100644 index 0000000..e6d8536 --- /dev/null +++ b/qhull/test_package/build/2419fc4ca82fd76a6c5d823d86b2c25bfc03afec/CMakeFiles/3.5.1/CompilerIdCXX/CMakeCXXCompilerId.cpp @@ -0,0 +1,533 @@ +/* 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 + /* __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 + +#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(__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(__SCO_VERSION__) +# define COMPILER_ID "SCO" + +#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__) +# 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" + +#elif defined(__ARMCC_VERSION) +# 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(_SGI_COMPILER_VERSION) || defined(_COMPILER_VERSION) +# define COMPILER_ID "MIPSpro" +# if defined(_SGI_COMPILER_VERSION) + /* _SGI_COMPILER_VERSION = VRP */ +# define COMPILER_VERSION_MAJOR DEC(_SGI_COMPILER_VERSION/100) +# define COMPILER_VERSION_MINOR DEC(_SGI_COMPILER_VERSION/10 % 10) +# define COMPILER_VERSION_PATCH DEC(_SGI_COMPILER_VERSION % 10) +# else + /* _COMPILER_VERSION = VRP */ +# define COMPILER_VERSION_MAJOR DEC(_COMPILER_VERSION/100) +# define COMPILER_VERSION_MINOR DEC(_COMPILER_VERSION/10 % 10) +# define COMPILER_VERSION_PATCH DEC(_COMPILER_VERSION % 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(__sgi) +# define COMPILER_ID "MIPSpro" + +#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(__sgi) || defined(__sgi__) || defined(_SGI) +# define PLATFORM_ID "IRIX" + +#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 + +#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_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 + +#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 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 "]"; + + + + +const char* info_language_dialect_default = "INFO" ":" "dialect_default[" +#if __cplusplus >= 201402L + "14" +#elif __cplusplus >= 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 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; +} diff --git a/qhull/test_package/build/2419fc4ca82fd76a6c5d823d86b2c25bfc03afec/CMakeFiles/3.5.1/CompilerIdCXX/a.out b/qhull/test_package/build/2419fc4ca82fd76a6c5d823d86b2c25bfc03afec/CMakeFiles/3.5.1/CompilerIdCXX/a.out new file mode 100644 index 0000000..f493287 Binary files /dev/null and b/qhull/test_package/build/2419fc4ca82fd76a6c5d823d86b2c25bfc03afec/CMakeFiles/3.5.1/CompilerIdCXX/a.out differ diff --git a/qhull/test_package/build/2419fc4ca82fd76a6c5d823d86b2c25bfc03afec/CMakeFiles/CMakeDirectoryInformation.cmake b/qhull/test_package/build/2419fc4ca82fd76a6c5d823d86b2c25bfc03afec/CMakeFiles/CMakeDirectoryInformation.cmake new file mode 100644 index 0000000..48708f3 --- /dev/null +++ b/qhull/test_package/build/2419fc4ca82fd76a6c5d823d86b2c25bfc03afec/CMakeFiles/CMakeDirectoryInformation.cmake @@ -0,0 +1,16 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.5 + +# Relative path conversion top directories. +set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/mnt/c/Users/t.vogl/Documents/repos/conan-qhull/test_package") +set(CMAKE_RELATIVE_PATH_TOP_BINARY "/mnt/c/Users/t.vogl/Documents/repos/conan-qhull/test_package/build/2419fc4ca82fd76a6c5d823d86b2c25bfc03afec") + +# 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}) diff --git a/qhull/test_package/build/2419fc4ca82fd76a6c5d823d86b2c25bfc03afec/CMakeFiles/CMakeOutput.log b/qhull/test_package/build/2419fc4ca82fd76a6c5d823d86b2c25bfc03afec/CMakeFiles/CMakeOutput.log new file mode 100644 index 0000000..ec1e7ae --- /dev/null +++ b/qhull/test_package/build/2419fc4ca82fd76a6c5d823d86b2c25bfc03afec/CMakeFiles/CMakeOutput.log @@ -0,0 +1,356 @@ +The system is: Linux - 4.4.0-43-Microsoft - x86_64 +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 "/mnt/c/Users/t.vogl/Documents/repos/conan-qhull/test_package/build/2419fc4ca82fd76a6c5d823d86b2c25bfc03afec/CMakeFiles/3.5.1/CompilerIdCXX/a.out" + +Determining if the CXX compiler works passed with the following output: +Change Dir: /mnt/c/Users/t.vogl/Documents/repos/conan-qhull/test_package/build/2419fc4ca82fd76a6c5d823d86b2c25bfc03afec/CMakeFiles/CMakeTmp + +Run Build Command:"/usr/bin/make" "cmTC_7984b/fast" +/usr/bin/make -f CMakeFiles/cmTC_7984b.dir/build.make CMakeFiles/cmTC_7984b.dir/build +make[1]: Verzeichnis „/mnt/c/Users/t.vogl/Documents/repos/conan-qhull/test_package/build/2419fc4ca82fd76a6c5d823d86b2c25bfc03afec/CMakeFiles/CMakeTmp“ wird betreten +Building CXX object CMakeFiles/cmTC_7984b.dir/testCXXCompiler.cxx.o +/usr/bin/c++ -o CMakeFiles/cmTC_7984b.dir/testCXXCompiler.cxx.o -c /mnt/c/Users/t.vogl/Documents/repos/conan-qhull/test_package/build/2419fc4ca82fd76a6c5d823d86b2c25bfc03afec/CMakeFiles/CMakeTmp/testCXXCompiler.cxx +Linking CXX executable cmTC_7984b +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_7984b.dir/link.txt --verbose=1 +/usr/bin/c++ CMakeFiles/cmTC_7984b.dir/testCXXCompiler.cxx.o -o cmTC_7984b -rdynamic +make[1]: Verzeichnis „/mnt/c/Users/t.vogl/Documents/repos/conan-qhull/test_package/build/2419fc4ca82fd76a6c5d823d86b2c25bfc03afec/CMakeFiles/CMakeTmp“ wird verlassen + + +Detecting CXX compiler ABI info compiled with the following output: +Change Dir: /mnt/c/Users/t.vogl/Documents/repos/conan-qhull/test_package/build/2419fc4ca82fd76a6c5d823d86b2c25bfc03afec/CMakeFiles/CMakeTmp + +Run Build Command:"/usr/bin/make" "cmTC_319be/fast" +/usr/bin/make -f CMakeFiles/cmTC_319be.dir/build.make CMakeFiles/cmTC_319be.dir/build +make[1]: Verzeichnis „/mnt/c/Users/t.vogl/Documents/repos/conan-qhull/test_package/build/2419fc4ca82fd76a6c5d823d86b2c25bfc03afec/CMakeFiles/CMakeTmp“ wird betreten +Building CXX object CMakeFiles/cmTC_319be.dir/CMakeCXXCompilerABI.cpp.o +/usr/bin/c++ -o CMakeFiles/cmTC_319be.dir/CMakeCXXCompilerABI.cpp.o -c /usr/share/cmake-3.5/Modules/CMakeCXXCompilerABI.cpp +Linking CXX executable cmTC_319be +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_319be.dir/link.txt --verbose=1 +/usr/bin/c++ -v CMakeFiles/cmTC_319be.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_319be -rdynamic +Using built-in specs. +COLLECT_GCC=/usr/bin/c++ +COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/5/lto-wrapper +Target: x86_64-linux-gnu +Configured with: ../src/configure -v --with-pkgversion='Ubuntu 5.4.0-6ubuntu1~16.04.5' --with-bugurl=file:///usr/share/doc/gcc-5/README.Bugs --enable-languages=c,ada,c++,java,go,d,fortran,objc,obj-c++ --prefix=/usr --program-suffix=-5 --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --with-sysroot=/ --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-libmpx --enable-plugin --with-system-zlib --disable-browser-plugin --enable-java-awt=gtk --enable-gtk-cairo --with-java-home=/usr/lib/jvm/java-1.5.0-gcj-5-amd64/jre --enable-java-home --with-jvm-root-dir=/usr/lib/jvm/java-1.5.0-gcj-5-amd64 --with-jvm-jar-dir=/usr/lib/jvm-exports/java-1.5.0-gcj-5-amd64 --with-arch-directory=amd64 --with-ecj-jar=/usr/share/java/eclipse-ecj.jar --enable-objc-gc --enable-multiarch --disable-werror --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu +Thread model: posix +gcc version 5.4.0 20160609 (Ubuntu 5.4.0-6ubuntu1~16.04.5) +COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/5/:/usr/lib/gcc/x86_64-linux-gnu/5/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/5/:/usr/lib/gcc/x86_64-linux-gnu/ +LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/5/:/usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/5/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/5/../../../:/lib/:/usr/lib/ +COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_319be' '-rdynamic' '-shared-libgcc' '-mtune=generic' '-march=x86-64' + /usr/lib/gcc/x86_64-linux-gnu/5/collect2 -plugin /usr/lib/gcc/x86_64-linux-gnu/5/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/5/lto-wrapper -plugin-opt=-fresolution=/tmp/ccdUai5x.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 --sysroot=/ --build-id --eh-frame-hdr -m elf_x86_64 --hash-style=gnu --as-needed -export-dynamic -dynamic-linker /lib64/ld-linux-x86-64.so.2 -z relro -o cmTC_319be /usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/crt1.o /usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/5/crtbegin.o -L/usr/lib/gcc/x86_64-linux-gnu/5 -L/usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/5/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/5/../../.. CMakeFiles/cmTC_319be.dir/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm -lgcc_s -lgcc -lc -lgcc_s -lgcc /usr/lib/gcc/x86_64-linux-gnu/5/crtend.o /usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/crtn.o +make[1]: Verzeichnis „/mnt/c/Users/t.vogl/Documents/repos/conan-qhull/test_package/build/2419fc4ca82fd76a6c5d823d86b2c25bfc03afec/CMakeFiles/CMakeTmp“ wird verlassen + + +Parsed CXX implicit link information from above output: + link line regex: [^( *|.*[/\])(ld|([^/\]+-)?ld|collect2)[^/\]*( |$)] + ignore line: [Change Dir: /mnt/c/Users/t.vogl/Documents/repos/conan-qhull/test_package/build/2419fc4ca82fd76a6c5d823d86b2c25bfc03afec/CMakeFiles/CMakeTmp] + ignore line: [] + ignore line: [Run Build Command:"/usr/bin/make" "cmTC_319be/fast"] + ignore line: [/usr/bin/make -f CMakeFiles/cmTC_319be.dir/build.make CMakeFiles/cmTC_319be.dir/build] + ignore line: [make[1]: Verzeichnis „/mnt/c/Users/t.vogl/Documents/repos/conan-qhull/test_package/build/2419fc4ca82fd76a6c5d823d86b2c25bfc03afec/CMakeFiles/CMakeTmp“ wird betreten] + ignore line: [Building CXX object CMakeFiles/cmTC_319be.dir/CMakeCXXCompilerABI.cpp.o] + ignore line: [/usr/bin/c++ -o CMakeFiles/cmTC_319be.dir/CMakeCXXCompilerABI.cpp.o -c /usr/share/cmake-3.5/Modules/CMakeCXXCompilerABI.cpp] + ignore line: [Linking CXX executable cmTC_319be] + ignore line: [/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_319be.dir/link.txt --verbose=1] + ignore line: [/usr/bin/c++ -v CMakeFiles/cmTC_319be.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_319be -rdynamic ] + ignore line: [Using built-in specs.] + ignore line: [COLLECT_GCC=/usr/bin/c++] + ignore line: [COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/5/lto-wrapper] + ignore line: [Target: x86_64-linux-gnu] + ignore line: [Configured with: ../src/configure -v --with-pkgversion='Ubuntu 5.4.0-6ubuntu1~16.04.5' --with-bugurl=file:///usr/share/doc/gcc-5/README.Bugs --enable-languages=c,ada,c++,java,go,d,fortran,objc,obj-c++ --prefix=/usr --program-suffix=-5 --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --with-sysroot=/ --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-libmpx --enable-plugin --with-system-zlib --disable-browser-plugin --enable-java-awt=gtk --enable-gtk-cairo --with-java-home=/usr/lib/jvm/java-1.5.0-gcj-5-amd64/jre --enable-java-home --with-jvm-root-dir=/usr/lib/jvm/java-1.5.0-gcj-5-amd64 --with-jvm-jar-dir=/usr/lib/jvm-exports/java-1.5.0-gcj-5-amd64 --with-arch-directory=amd64 --with-ecj-jar=/usr/share/java/eclipse-ecj.jar --enable-objc-gc --enable-multiarch --disable-werror --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu] + ignore line: [Thread model: posix] + ignore line: [gcc version 5.4.0 20160609 (Ubuntu 5.4.0-6ubuntu1~16.04.5) ] + ignore line: [COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/5/:/usr/lib/gcc/x86_64-linux-gnu/5/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/5/:/usr/lib/gcc/x86_64-linux-gnu/] + ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/5/:/usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/5/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/5/../../../:/lib/:/usr/lib/] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_319be' '-rdynamic' '-shared-libgcc' '-mtune=generic' '-march=x86-64'] + link line: [ /usr/lib/gcc/x86_64-linux-gnu/5/collect2 -plugin /usr/lib/gcc/x86_64-linux-gnu/5/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/5/lto-wrapper -plugin-opt=-fresolution=/tmp/ccdUai5x.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 --sysroot=/ --build-id --eh-frame-hdr -m elf_x86_64 --hash-style=gnu --as-needed -export-dynamic -dynamic-linker /lib64/ld-linux-x86-64.so.2 -z relro -o cmTC_319be /usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/crt1.o /usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/5/crtbegin.o -L/usr/lib/gcc/x86_64-linux-gnu/5 -L/usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/5/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/5/../../.. CMakeFiles/cmTC_319be.dir/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm -lgcc_s -lgcc -lc -lgcc_s -lgcc /usr/lib/gcc/x86_64-linux-gnu/5/crtend.o /usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/crtn.o] + arg [/usr/lib/gcc/x86_64-linux-gnu/5/collect2] ==> ignore + arg [-plugin] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/5/liblto_plugin.so] ==> ignore + arg [-plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/5/lto-wrapper] ==> ignore + arg [-plugin-opt=-fresolution=/tmp/ccdUai5x.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 [--sysroot=/] ==> ignore + arg [--build-id] ==> ignore + arg [--eh-frame-hdr] ==> ignore + arg [-m] ==> ignore + arg [elf_x86_64] ==> ignore + arg [--hash-style=gnu] ==> ignore + arg [--as-needed] ==> ignore + arg [-export-dynamic] ==> ignore + arg [-dynamic-linker] ==> ignore + arg [/lib64/ld-linux-x86-64.so.2] ==> ignore + arg [-zrelro] ==> ignore + arg [-o] ==> ignore + arg [cmTC_319be] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/crt1.o] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/crti.o] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/5/crtbegin.o] ==> ignore + arg [-L/usr/lib/gcc/x86_64-linux-gnu/5] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/5] + arg [-L/usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu] + arg [-L/usr/lib/gcc/x86_64-linux-gnu/5/../../../../lib] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/5/../../../../lib] + arg [-L/lib/x86_64-linux-gnu] ==> dir [/lib/x86_64-linux-gnu] + arg [-L/lib/../lib] ==> dir [/lib/../lib] + arg [-L/usr/lib/x86_64-linux-gnu] ==> dir [/usr/lib/x86_64-linux-gnu] + arg [-L/usr/lib/../lib] ==> dir [/usr/lib/../lib] + arg [-L/usr/lib/gcc/x86_64-linux-gnu/5/../../..] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/5/../../..] + arg [CMakeFiles/cmTC_319be.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-linux-gnu/5/crtend.o] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/crtn.o] ==> ignore + remove lib [gcc_s] + remove lib [gcc] + remove lib [gcc_s] + remove lib [gcc] + collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/5] ==> [/usr/lib/gcc/x86_64-linux-gnu/5] + collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu] ==> [/usr/lib/x86_64-linux-gnu] + collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/5/../../../../lib] ==> [/usr/lib] + collapse library dir [/lib/x86_64-linux-gnu] ==> [/lib/x86_64-linux-gnu] + collapse library dir [/lib/../lib] ==> [/lib] + collapse library dir [/usr/lib/x86_64-linux-gnu] ==> [/usr/lib/x86_64-linux-gnu] + collapse library dir [/usr/lib/../lib] ==> [/usr/lib] + collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/5/../../..] ==> [/usr/lib] + implicit libs: [stdc++;m;c] + implicit dirs: [/usr/lib/gcc/x86_64-linux-gnu/5;/usr/lib/x86_64-linux-gnu;/usr/lib;/lib/x86_64-linux-gnu;/lib] + implicit fwks: [] + + + + +Detecting CXX [-std=c++14] compiler features compiled with the following output: +Change Dir: /mnt/c/Users/t.vogl/Documents/repos/conan-qhull/test_package/build/2419fc4ca82fd76a6c5d823d86b2c25bfc03afec/CMakeFiles/CMakeTmp + +Run Build Command:"/usr/bin/make" "cmTC_f6d9f/fast" +/usr/bin/make -f CMakeFiles/cmTC_f6d9f.dir/build.make CMakeFiles/cmTC_f6d9f.dir/build +make[1]: Verzeichnis „/mnt/c/Users/t.vogl/Documents/repos/conan-qhull/test_package/build/2419fc4ca82fd76a6c5d823d86b2c25bfc03afec/CMakeFiles/CMakeTmp“ wird betreten +Building CXX object CMakeFiles/cmTC_f6d9f.dir/feature_tests.cxx.o +/usr/bin/c++ -std=c++14 -o CMakeFiles/cmTC_f6d9f.dir/feature_tests.cxx.o -c /mnt/c/Users/t.vogl/Documents/repos/conan-qhull/test_package/build/2419fc4ca82fd76a6c5d823d86b2c25bfc03afec/CMakeFiles/feature_tests.cxx +Linking CXX executable cmTC_f6d9f +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_f6d9f.dir/link.txt --verbose=1 +/usr/bin/c++ CMakeFiles/cmTC_f6d9f.dir/feature_tests.cxx.o -o cmTC_f6d9f -rdynamic +make[1]: Verzeichnis „/mnt/c/Users/t.vogl/Documents/repos/conan-qhull/test_package/build/2419fc4ca82fd76a6c5d823d86b2c25bfc03afec/CMakeFiles/CMakeTmp“ wird verlassen + + + Feature record: CXX_FEATURE:1cxx_aggregate_default_initializers + Feature record: CXX_FEATURE:1cxx_alias_templates + Feature record: CXX_FEATURE:1cxx_alignas + Feature record: CXX_FEATURE:1cxx_alignof + Feature record: CXX_FEATURE:1cxx_attributes + Feature record: CXX_FEATURE:1cxx_attribute_deprecated + Feature record: CXX_FEATURE:1cxx_auto_type + Feature record: CXX_FEATURE:1cxx_binary_literals + Feature record: CXX_FEATURE:1cxx_constexpr + Feature record: CXX_FEATURE:1cxx_contextual_conversions + Feature record: CXX_FEATURE:1cxx_decltype + Feature record: CXX_FEATURE:1cxx_decltype_auto + Feature record: CXX_FEATURE:1cxx_decltype_incomplete_return_types + Feature record: CXX_FEATURE:1cxx_default_function_template_args + Feature record: CXX_FEATURE:1cxx_defaulted_functions + Feature record: CXX_FEATURE:1cxx_defaulted_move_initializers + Feature record: CXX_FEATURE:1cxx_delegating_constructors + Feature record: CXX_FEATURE:1cxx_deleted_functions + Feature record: CXX_FEATURE:1cxx_digit_separators + Feature record: CXX_FEATURE:1cxx_enum_forward_declarations + Feature record: CXX_FEATURE:1cxx_explicit_conversions + Feature record: CXX_FEATURE:1cxx_extended_friend_declarations + Feature record: CXX_FEATURE:1cxx_extern_templates + Feature record: CXX_FEATURE:1cxx_final + Feature record: CXX_FEATURE:1cxx_func_identifier + Feature record: CXX_FEATURE:1cxx_generalized_initializers + Feature record: CXX_FEATURE:1cxx_generic_lambdas + Feature record: CXX_FEATURE:1cxx_inheriting_constructors + Feature record: CXX_FEATURE:1cxx_inline_namespaces + Feature record: CXX_FEATURE:1cxx_lambdas + Feature record: CXX_FEATURE:1cxx_lambda_init_captures + Feature record: CXX_FEATURE:1cxx_local_type_template_args + Feature record: CXX_FEATURE:1cxx_long_long_type + Feature record: CXX_FEATURE:1cxx_noexcept + Feature record: CXX_FEATURE:1cxx_nonstatic_member_init + Feature record: CXX_FEATURE:1cxx_nullptr + Feature record: CXX_FEATURE:1cxx_override + Feature record: CXX_FEATURE:1cxx_range_for + Feature record: CXX_FEATURE:1cxx_raw_string_literals + Feature record: CXX_FEATURE:1cxx_reference_qualified_functions + Feature record: CXX_FEATURE:1cxx_relaxed_constexpr + Feature record: CXX_FEATURE:1cxx_return_type_deduction + Feature record: CXX_FEATURE:1cxx_right_angle_brackets + Feature record: CXX_FEATURE:1cxx_rvalue_references + Feature record: CXX_FEATURE:1cxx_sizeof_member + Feature record: CXX_FEATURE:1cxx_static_assert + Feature record: CXX_FEATURE:1cxx_strong_enums + Feature record: CXX_FEATURE:1cxx_template_template_parameters + Feature record: CXX_FEATURE:1cxx_thread_local + Feature record: CXX_FEATURE:1cxx_trailing_return_types + Feature record: CXX_FEATURE:1cxx_unicode_literals + Feature record: CXX_FEATURE:1cxx_uniform_initialization + Feature record: CXX_FEATURE:1cxx_unrestricted_unions + Feature record: CXX_FEATURE:1cxx_user_literals + Feature record: CXX_FEATURE:1cxx_variable_templates + Feature record: CXX_FEATURE:1cxx_variadic_macros + Feature record: CXX_FEATURE:1cxx_variadic_templates + + +Detecting CXX [-std=c++11] compiler features compiled with the following output: +Change Dir: /mnt/c/Users/t.vogl/Documents/repos/conan-qhull/test_package/build/2419fc4ca82fd76a6c5d823d86b2c25bfc03afec/CMakeFiles/CMakeTmp + +Run Build Command:"/usr/bin/make" "cmTC_e5069/fast" +/usr/bin/make -f CMakeFiles/cmTC_e5069.dir/build.make CMakeFiles/cmTC_e5069.dir/build +make[1]: Verzeichnis „/mnt/c/Users/t.vogl/Documents/repos/conan-qhull/test_package/build/2419fc4ca82fd76a6c5d823d86b2c25bfc03afec/CMakeFiles/CMakeTmp“ wird betreten +Building CXX object CMakeFiles/cmTC_e5069.dir/feature_tests.cxx.o +/usr/bin/c++ -std=c++11 -o CMakeFiles/cmTC_e5069.dir/feature_tests.cxx.o -c /mnt/c/Users/t.vogl/Documents/repos/conan-qhull/test_package/build/2419fc4ca82fd76a6c5d823d86b2c25bfc03afec/CMakeFiles/feature_tests.cxx +Linking CXX executable cmTC_e5069 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_e5069.dir/link.txt --verbose=1 +/usr/bin/c++ CMakeFiles/cmTC_e5069.dir/feature_tests.cxx.o -o cmTC_e5069 -rdynamic +make[1]: Verzeichnis „/mnt/c/Users/t.vogl/Documents/repos/conan-qhull/test_package/build/2419fc4ca82fd76a6c5d823d86b2c25bfc03afec/CMakeFiles/CMakeTmp“ wird verlassen + + + Feature record: CXX_FEATURE:0cxx_aggregate_default_initializers + Feature record: CXX_FEATURE:1cxx_alias_templates + Feature record: CXX_FEATURE:1cxx_alignas + Feature record: CXX_FEATURE:1cxx_alignof + Feature record: CXX_FEATURE:1cxx_attributes + Feature record: CXX_FEATURE:0cxx_attribute_deprecated + Feature record: CXX_FEATURE:1cxx_auto_type + Feature record: CXX_FEATURE:0cxx_binary_literals + Feature record: CXX_FEATURE:1cxx_constexpr + Feature record: CXX_FEATURE:0cxx_contextual_conversions + Feature record: CXX_FEATURE:1cxx_decltype + Feature record: CXX_FEATURE:0cxx_decltype_auto + Feature record: CXX_FEATURE:1cxx_decltype_incomplete_return_types + Feature record: CXX_FEATURE:1cxx_default_function_template_args + Feature record: CXX_FEATURE:1cxx_defaulted_functions + Feature record: CXX_FEATURE:1cxx_defaulted_move_initializers + Feature record: CXX_FEATURE:1cxx_delegating_constructors + Feature record: CXX_FEATURE:1cxx_deleted_functions + Feature record: CXX_FEATURE:0cxx_digit_separators + Feature record: CXX_FEATURE:1cxx_enum_forward_declarations + Feature record: CXX_FEATURE:1cxx_explicit_conversions + Feature record: CXX_FEATURE:1cxx_extended_friend_declarations + Feature record: CXX_FEATURE:1cxx_extern_templates + Feature record: CXX_FEATURE:1cxx_final + Feature record: CXX_FEATURE:1cxx_func_identifier + Feature record: CXX_FEATURE:1cxx_generalized_initializers + Feature record: CXX_FEATURE:0cxx_generic_lambdas + Feature record: CXX_FEATURE:1cxx_inheriting_constructors + Feature record: CXX_FEATURE:1cxx_inline_namespaces + Feature record: CXX_FEATURE:1cxx_lambdas + Feature record: CXX_FEATURE:0cxx_lambda_init_captures + Feature record: CXX_FEATURE:1cxx_local_type_template_args + Feature record: CXX_FEATURE:1cxx_long_long_type + Feature record: CXX_FEATURE:1cxx_noexcept + Feature record: CXX_FEATURE:1cxx_nonstatic_member_init + Feature record: CXX_FEATURE:1cxx_nullptr + Feature record: CXX_FEATURE:1cxx_override + Feature record: CXX_FEATURE:1cxx_range_for + Feature record: CXX_FEATURE:1cxx_raw_string_literals + Feature record: CXX_FEATURE:1cxx_reference_qualified_functions + Feature record: CXX_FEATURE:0cxx_relaxed_constexpr + Feature record: CXX_FEATURE:0cxx_return_type_deduction + Feature record: CXX_FEATURE:1cxx_right_angle_brackets + Feature record: CXX_FEATURE:1cxx_rvalue_references + Feature record: CXX_FEATURE:1cxx_sizeof_member + Feature record: CXX_FEATURE:1cxx_static_assert + Feature record: CXX_FEATURE:1cxx_strong_enums + Feature record: CXX_FEATURE:1cxx_template_template_parameters + Feature record: CXX_FEATURE:1cxx_thread_local + Feature record: CXX_FEATURE:1cxx_trailing_return_types + Feature record: CXX_FEATURE:1cxx_unicode_literals + Feature record: CXX_FEATURE:1cxx_uniform_initialization + Feature record: CXX_FEATURE:1cxx_unrestricted_unions + Feature record: CXX_FEATURE:1cxx_user_literals + Feature record: CXX_FEATURE:0cxx_variable_templates + Feature record: CXX_FEATURE:1cxx_variadic_macros + Feature record: CXX_FEATURE:1cxx_variadic_templates + + +Detecting CXX [-std=c++98] compiler features compiled with the following output: +Change Dir: /mnt/c/Users/t.vogl/Documents/repos/conan-qhull/test_package/build/2419fc4ca82fd76a6c5d823d86b2c25bfc03afec/CMakeFiles/CMakeTmp + +Run Build Command:"/usr/bin/make" "cmTC_424ea/fast" +/usr/bin/make -f CMakeFiles/cmTC_424ea.dir/build.make CMakeFiles/cmTC_424ea.dir/build +make[1]: Verzeichnis „/mnt/c/Users/t.vogl/Documents/repos/conan-qhull/test_package/build/2419fc4ca82fd76a6c5d823d86b2c25bfc03afec/CMakeFiles/CMakeTmp“ wird betreten +Building CXX object CMakeFiles/cmTC_424ea.dir/feature_tests.cxx.o +/usr/bin/c++ -std=c++98 -o CMakeFiles/cmTC_424ea.dir/feature_tests.cxx.o -c /mnt/c/Users/t.vogl/Documents/repos/conan-qhull/test_package/build/2419fc4ca82fd76a6c5d823d86b2c25bfc03afec/CMakeFiles/feature_tests.cxx +Linking CXX executable cmTC_424ea +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_424ea.dir/link.txt --verbose=1 +/usr/bin/c++ CMakeFiles/cmTC_424ea.dir/feature_tests.cxx.o -o cmTC_424ea -rdynamic +make[1]: Verzeichnis „/mnt/c/Users/t.vogl/Documents/repos/conan-qhull/test_package/build/2419fc4ca82fd76a6c5d823d86b2c25bfc03afec/CMakeFiles/CMakeTmp“ wird verlassen + + + Feature record: CXX_FEATURE:0cxx_aggregate_default_initializers + Feature record: CXX_FEATURE:0cxx_alias_templates + Feature record: CXX_FEATURE:0cxx_alignas + Feature record: CXX_FEATURE:0cxx_alignof + Feature record: CXX_FEATURE:0cxx_attributes + Feature record: CXX_FEATURE:0cxx_attribute_deprecated + Feature record: CXX_FEATURE:0cxx_auto_type + Feature record: CXX_FEATURE:0cxx_binary_literals + Feature record: CXX_FEATURE:0cxx_constexpr + Feature record: CXX_FEATURE:0cxx_contextual_conversions + Feature record: CXX_FEATURE:0cxx_decltype + Feature record: CXX_FEATURE:0cxx_decltype_auto + Feature record: CXX_FEATURE:0cxx_decltype_incomplete_return_types + Feature record: CXX_FEATURE:0cxx_default_function_template_args + Feature record: CXX_FEATURE:0cxx_defaulted_functions + Feature record: CXX_FEATURE:0cxx_defaulted_move_initializers + Feature record: CXX_FEATURE:0cxx_delegating_constructors + Feature record: CXX_FEATURE:0cxx_deleted_functions + Feature record: CXX_FEATURE:0cxx_digit_separators + Feature record: CXX_FEATURE:0cxx_enum_forward_declarations + Feature record: CXX_FEATURE:0cxx_explicit_conversions + Feature record: CXX_FEATURE:0cxx_extended_friend_declarations + Feature record: CXX_FEATURE:0cxx_extern_templates + Feature record: CXX_FEATURE:0cxx_final + Feature record: CXX_FEATURE:0cxx_func_identifier + Feature record: CXX_FEATURE:0cxx_generalized_initializers + Feature record: CXX_FEATURE:0cxx_generic_lambdas + Feature record: CXX_FEATURE:0cxx_inheriting_constructors + Feature record: CXX_FEATURE:0cxx_inline_namespaces + Feature record: CXX_FEATURE:0cxx_lambdas + Feature record: CXX_FEATURE:0cxx_lambda_init_captures + Feature record: CXX_FEATURE:0cxx_local_type_template_args + Feature record: CXX_FEATURE:0cxx_long_long_type + Feature record: CXX_FEATURE:0cxx_noexcept + Feature record: CXX_FEATURE:0cxx_nonstatic_member_init + Feature record: CXX_FEATURE:0cxx_nullptr + Feature record: CXX_FEATURE:0cxx_override + Feature record: CXX_FEATURE:0cxx_range_for + Feature record: CXX_FEATURE:0cxx_raw_string_literals + Feature record: CXX_FEATURE:0cxx_reference_qualified_functions + Feature record: CXX_FEATURE:0cxx_relaxed_constexpr + Feature record: CXX_FEATURE:0cxx_return_type_deduction + Feature record: CXX_FEATURE:0cxx_right_angle_brackets + Feature record: CXX_FEATURE:0cxx_rvalue_references + Feature record: CXX_FEATURE:0cxx_sizeof_member + Feature record: CXX_FEATURE:0cxx_static_assert + Feature record: CXX_FEATURE:0cxx_strong_enums + Feature record: CXX_FEATURE:1cxx_template_template_parameters + Feature record: CXX_FEATURE:0cxx_thread_local + Feature record: CXX_FEATURE:0cxx_trailing_return_types + Feature record: CXX_FEATURE:0cxx_unicode_literals + Feature record: CXX_FEATURE:0cxx_uniform_initialization + Feature record: CXX_FEATURE:0cxx_unrestricted_unions + Feature record: CXX_FEATURE:0cxx_user_literals + Feature record: CXX_FEATURE:0cxx_variable_templates + Feature record: CXX_FEATURE:0cxx_variadic_macros + Feature record: CXX_FEATURE:0cxx_variadic_templates diff --git a/qhull/test_package/build/2419fc4ca82fd76a6c5d823d86b2c25bfc03afec/CMakeFiles/Makefile.cmake b/qhull/test_package/build/2419fc4ca82fd76a6c5d823d86b2c25bfc03afec/CMakeFiles/Makefile.cmake new file mode 100644 index 0000000..544c1c3 --- /dev/null +++ b/qhull/test_package/build/2419fc4ca82fd76a6c5d823d86b2c25bfc03afec/CMakeFiles/Makefile.cmake @@ -0,0 +1,97 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.5 + +# 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" + "/home/tom/.conan/data/QHull/f0bd8ce/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/LibFindMacros.cmake" + "/home/tom/.conan/data/QHull/f0bd8ce/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/QHullConfig.cmake" + "../../CMakeLists.txt" + "CMakeFiles/3.5.1/CMakeCXXCompiler.cmake" + "CMakeFiles/3.5.1/CMakeSystem.cmake" + "CMakeFiles/feature_tests.cxx" + "conanbuildinfo.cmake" + "/usr/share/cmake-3.5/Modules/CMakeCXXCompiler.cmake.in" + "/usr/share/cmake-3.5/Modules/CMakeCXXCompilerABI.cpp" + "/usr/share/cmake-3.5/Modules/CMakeCXXInformation.cmake" + "/usr/share/cmake-3.5/Modules/CMakeCommonLanguageInclude.cmake" + "/usr/share/cmake-3.5/Modules/CMakeCompilerIdDetection.cmake" + "/usr/share/cmake-3.5/Modules/CMakeDetermineCXXCompiler.cmake" + "/usr/share/cmake-3.5/Modules/CMakeDetermineCompileFeatures.cmake" + "/usr/share/cmake-3.5/Modules/CMakeDetermineCompiler.cmake" + "/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerABI.cmake" + "/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake" + "/usr/share/cmake-3.5/Modules/CMakeDetermineSystem.cmake" + "/usr/share/cmake-3.5/Modules/CMakeFindBinUtils.cmake" + "/usr/share/cmake-3.5/Modules/CMakeGenericSystem.cmake" + "/usr/share/cmake-3.5/Modules/CMakeLanguageInformation.cmake" + "/usr/share/cmake-3.5/Modules/CMakeParseArguments.cmake" + "/usr/share/cmake-3.5/Modules/CMakeParseImplicitLinkInfo.cmake" + "/usr/share/cmake-3.5/Modules/CMakeSystem.cmake.in" + "/usr/share/cmake-3.5/Modules/CMakeSystemSpecificInformation.cmake" + "/usr/share/cmake-3.5/Modules/CMakeSystemSpecificInitialize.cmake" + "/usr/share/cmake-3.5/Modules/CMakeTestCXXCompiler.cmake" + "/usr/share/cmake-3.5/Modules/CMakeTestCompilerCommon.cmake" + "/usr/share/cmake-3.5/Modules/CMakeUnixFindMake.cmake" + "/usr/share/cmake-3.5/Modules/Compiler/ADSP-DetermineCompiler.cmake" + "/usr/share/cmake-3.5/Modules/Compiler/ARMCC-DetermineCompiler.cmake" + "/usr/share/cmake-3.5/Modules/Compiler/AppleClang-DetermineCompiler.cmake" + "/usr/share/cmake-3.5/Modules/Compiler/Borland-DetermineCompiler.cmake" + "/usr/share/cmake-3.5/Modules/Compiler/Clang-DetermineCompiler.cmake" + "/usr/share/cmake-3.5/Modules/Compiler/Clang-DetermineCompilerInternal.cmake" + "/usr/share/cmake-3.5/Modules/Compiler/Comeau-CXX-DetermineCompiler.cmake" + "/usr/share/cmake-3.5/Modules/Compiler/Compaq-CXX-DetermineCompiler.cmake" + "/usr/share/cmake-3.5/Modules/Compiler/Cray-DetermineCompiler.cmake" + "/usr/share/cmake-3.5/Modules/Compiler/Embarcadero-DetermineCompiler.cmake" + "/usr/share/cmake-3.5/Modules/Compiler/Fujitsu-DetermineCompiler.cmake" + "/usr/share/cmake-3.5/Modules/Compiler/GHS-DetermineCompiler.cmake" + "/usr/share/cmake-3.5/Modules/Compiler/GNU-CXX-FeatureTests.cmake" + "/usr/share/cmake-3.5/Modules/Compiler/GNU-CXX.cmake" + "/usr/share/cmake-3.5/Modules/Compiler/GNU-DetermineCompiler.cmake" + "/usr/share/cmake-3.5/Modules/Compiler/GNU.cmake" + "/usr/share/cmake-3.5/Modules/Compiler/HP-CXX-DetermineCompiler.cmake" + "/usr/share/cmake-3.5/Modules/Compiler/IAR-DetermineCompiler.cmake" + "/usr/share/cmake-3.5/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake" + "/usr/share/cmake-3.5/Modules/Compiler/Intel-DetermineCompiler.cmake" + "/usr/share/cmake-3.5/Modules/Compiler/MIPSpro-DetermineCompiler.cmake" + "/usr/share/cmake-3.5/Modules/Compiler/MSVC-DetermineCompiler.cmake" + "/usr/share/cmake-3.5/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake" + "/usr/share/cmake-3.5/Modules/Compiler/PGI-DetermineCompiler.cmake" + "/usr/share/cmake-3.5/Modules/Compiler/PathScale-DetermineCompiler.cmake" + "/usr/share/cmake-3.5/Modules/Compiler/SCO-DetermineCompiler.cmake" + "/usr/share/cmake-3.5/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake" + "/usr/share/cmake-3.5/Modules/Compiler/TI-DetermineCompiler.cmake" + "/usr/share/cmake-3.5/Modules/Compiler/VisualAge-CXX-DetermineCompiler.cmake" + "/usr/share/cmake-3.5/Modules/Compiler/Watcom-DetermineCompiler.cmake" + "/usr/share/cmake-3.5/Modules/Compiler/XL-CXX-DetermineCompiler.cmake" + "/usr/share/cmake-3.5/Modules/Compiler/zOS-CXX-DetermineCompiler.cmake" + "/usr/share/cmake-3.5/Modules/Internal/FeatureTesting.cmake" + "/usr/share/cmake-3.5/Modules/MultiArchCross.cmake" + "/usr/share/cmake-3.5/Modules/Platform/Linux-CXX.cmake" + "/usr/share/cmake-3.5/Modules/Platform/Linux-GNU-CXX.cmake" + "/usr/share/cmake-3.5/Modules/Platform/Linux-GNU.cmake" + "/usr/share/cmake-3.5/Modules/Platform/Linux.cmake" + "/usr/share/cmake-3.5/Modules/Platform/UnixPaths.cmake" + ) + +# The corresponding makefile is: +set(CMAKE_MAKEFILE_OUTPUTS + "Makefile" + "CMakeFiles/cmake.check_cache" + ) + +# Byproducts of CMake generate step: +set(CMAKE_MAKEFILE_PRODUCTS + "CMakeFiles/3.5.1/CMakeSystem.cmake" + "CMakeFiles/3.5.1/CMakeCXXCompiler.cmake" + "CMakeFiles/3.5.1/CMakeCXXCompiler.cmake" + "CMakeFiles/CMakeDirectoryInformation.cmake" + ) + +# Dependency information for all targets: +set(CMAKE_DEPEND_INFO_FILES + "CMakeFiles/example.dir/DependInfo.cmake" + ) diff --git a/qhull/test_package/build/2419fc4ca82fd76a6c5d823d86b2c25bfc03afec/CMakeFiles/Makefile2 b/qhull/test_package/build/2419fc4ca82fd76a6c5d823d86b2c25bfc03afec/CMakeFiles/Makefile2 new file mode 100644 index 0000000..52a8d56 --- /dev/null +++ b/qhull/test_package/build/2419fc4ca82fd76a6c5d823d86b2c25bfc03afec/CMakeFiles/Makefile2 @@ -0,0 +1,108 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.5 + +# Default target executed when no arguments are given to make. +default_target: all + +.PHONY : default_target + +# The main recursive all target +all: + +.PHONY : all + +# The main recursive preinstall target +preinstall: + +.PHONY : preinstall + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + + +# Remove some rules from gmake that .SUFFIXES does not remove. +SUFFIXES = + +.SUFFIXES: .hpux_make_needs_suffix_list + + +# 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 remove -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /mnt/c/Users/t.vogl/Documents/repos/conan-qhull/test_package + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /mnt/c/Users/t.vogl/Documents/repos/conan-qhull/test_package/build/2419fc4ca82fd76a6c5d823d86b2c25bfc03afec + +#============================================================================= +# Target rules for target CMakeFiles/example.dir + +# All Build rule for target. +CMakeFiles/example.dir/all: + $(MAKE) -f CMakeFiles/example.dir/build.make CMakeFiles/example.dir/depend + $(MAKE) -f CMakeFiles/example.dir/build.make CMakeFiles/example.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/mnt/c/Users/t.vogl/Documents/repos/conan-qhull/test_package/build/2419fc4ca82fd76a6c5d823d86b2c25bfc03afec/CMakeFiles --progress-num=1,2 "Built target example" +.PHONY : CMakeFiles/example.dir/all + +# Include target in all. +all: CMakeFiles/example.dir/all + +.PHONY : all + +# Build rule for subdir invocation for target. +CMakeFiles/example.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /mnt/c/Users/t.vogl/Documents/repos/conan-qhull/test_package/build/2419fc4ca82fd76a6c5d823d86b2c25bfc03afec/CMakeFiles 2 + $(MAKE) -f CMakeFiles/Makefile2 CMakeFiles/example.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /mnt/c/Users/t.vogl/Documents/repos/conan-qhull/test_package/build/2419fc4ca82fd76a6c5d823d86b2c25bfc03afec/CMakeFiles 0 +.PHONY : CMakeFiles/example.dir/rule + +# Convenience name for target. +example: CMakeFiles/example.dir/rule + +.PHONY : example + +# clean rule for target. +CMakeFiles/example.dir/clean: + $(MAKE) -f CMakeFiles/example.dir/build.make CMakeFiles/example.dir/clean +.PHONY : CMakeFiles/example.dir/clean + +# clean rule for target. +clean: CMakeFiles/example.dir/clean + +.PHONY : 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) -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 +.PHONY : cmake_check_build_system + diff --git a/qhull/test_package/build/2419fc4ca82fd76a6c5d823d86b2c25bfc03afec/CMakeFiles/TargetDirectories.txt b/qhull/test_package/build/2419fc4ca82fd76a6c5d823d86b2c25bfc03afec/CMakeFiles/TargetDirectories.txt new file mode 100644 index 0000000..4f64094 --- /dev/null +++ b/qhull/test_package/build/2419fc4ca82fd76a6c5d823d86b2c25bfc03afec/CMakeFiles/TargetDirectories.txt @@ -0,0 +1,3 @@ +/mnt/c/Users/t.vogl/Documents/repos/conan-qhull/test_package/build/2419fc4ca82fd76a6c5d823d86b2c25bfc03afec/CMakeFiles/rebuild_cache.dir +/mnt/c/Users/t.vogl/Documents/repos/conan-qhull/test_package/build/2419fc4ca82fd76a6c5d823d86b2c25bfc03afec/CMakeFiles/edit_cache.dir +/mnt/c/Users/t.vogl/Documents/repos/conan-qhull/test_package/build/2419fc4ca82fd76a6c5d823d86b2c25bfc03afec/CMakeFiles/example.dir diff --git a/qhull/test_package/build/2419fc4ca82fd76a6c5d823d86b2c25bfc03afec/CMakeFiles/cmake.check_cache b/qhull/test_package/build/2419fc4ca82fd76a6c5d823d86b2c25bfc03afec/CMakeFiles/cmake.check_cache new file mode 100644 index 0000000..3dccd73 --- /dev/null +++ b/qhull/test_package/build/2419fc4ca82fd76a6c5d823d86b2c25bfc03afec/CMakeFiles/cmake.check_cache @@ -0,0 +1 @@ +# This file is generated by cmake for dependency checking of the CMakeCache.txt file diff --git a/qhull/test_package/build/2419fc4ca82fd76a6c5d823d86b2c25bfc03afec/CMakeFiles/example.dir/CXX.includecache b/qhull/test_package/build/2419fc4ca82fd76a6c5d823d86b2c25bfc03afec/CMakeFiles/example.dir/CXX.includecache new file mode 100644 index 0000000..92bdb11 --- /dev/null +++ b/qhull/test_package/build/2419fc4ca82fd76a6c5d823d86b2c25bfc03afec/CMakeFiles/example.dir/CXX.includecache @@ -0,0 +1,58 @@ +#IncludeRegexLine: ^[ ]*#[ ]*(include|import)[ ]*[<"]([^">]+)([">]) + +#IncludeRegexScan: ^.*$ + +#IncludeRegexComplain: ^$ + +#IncludeRegexTransform: + +/home/tom/.conan/data/QHull/f0bd8ce/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/include/libqhull/libqhull.h +user.h +/home/tom/.conan/data/QHull/f0bd8ce/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/include/libqhull/user.h +mem.h +/home/tom/.conan/data/QHull/f0bd8ce/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/include/libqhull/mem.h +qset.h +/home/tom/.conan/data/QHull/f0bd8ce/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/include/libqhull/qset.h +setjmp.h +- +float.h +- +time.h +- +stdio.h +- +SIOUX.h +- +Files.h +- +Desk.h +- +stat.h +/home/tom/.conan/data/QHull/f0bd8ce/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/include/libqhull/stat.h + +/home/tom/.conan/data/QHull/f0bd8ce/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/include/libqhull/mem.h +stdio.h +- + +/home/tom/.conan/data/QHull/f0bd8ce/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/include/libqhull/qset.h +stdio.h +- + +/home/tom/.conan/data/QHull/f0bd8ce/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/include/libqhull/stat.h +libqhull.h +/home/tom/.conan/data/QHull/f0bd8ce/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/include/libqhull/libqhull.h + +/home/tom/.conan/data/QHull/f0bd8ce/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/include/libqhull/user.h +time.h +- +stdlib.h +- +crtdbg.h +- + +/mnt/c/Users/t.vogl/Documents/repos/conan-qhull/test_package/example.cpp +iostream +- +libqhull/libqhull.h +- + diff --git a/qhull/test_package/build/2419fc4ca82fd76a6c5d823d86b2c25bfc03afec/CMakeFiles/example.dir/DependInfo.cmake b/qhull/test_package/build/2419fc4ca82fd76a6c5d823d86b2c25bfc03afec/CMakeFiles/example.dir/DependInfo.cmake new file mode 100644 index 0000000..a4f5a1d --- /dev/null +++ b/qhull/test_package/build/2419fc4ca82fd76a6c5d823d86b2c25bfc03afec/CMakeFiles/example.dir/DependInfo.cmake @@ -0,0 +1,26 @@ +# 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 + "/mnt/c/Users/t.vogl/Documents/repos/conan-qhull/test_package/example.cpp" "/mnt/c/Users/t.vogl/Documents/repos/conan-qhull/test_package/build/2419fc4ca82fd76a6c5d823d86b2c25bfc03afec/CMakeFiles/example.dir/example.cpp.o" + ) +set(CMAKE_CXX_COMPILER_ID "GNU") + +# Preprocessor definitions for this target. +set(CMAKE_TARGET_DEFINITIONS_CXX + "_GLIBCXX_USE_CXX11_ABI=0" + ) + +# The include file search paths: +set(CMAKE_CXX_TARGET_INCLUDE_PATH + "/home/tom/.conan/data/QHull/f0bd8ce/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/include" + ) + +# Targets to which this target links. +set(CMAKE_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/qhull/test_package/build/2419fc4ca82fd76a6c5d823d86b2c25bfc03afec/CMakeFiles/example.dir/build.make b/qhull/test_package/build/2419fc4ca82fd76a6c5d823d86b2c25bfc03afec/CMakeFiles/example.dir/build.make new file mode 100644 index 0000000..caf113a --- /dev/null +++ b/qhull/test_package/build/2419fc4ca82fd76a6c5d823d86b2c25bfc03afec/CMakeFiles/example.dir/build.make @@ -0,0 +1,114 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.5 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + + +# Remove some rules from gmake that .SUFFIXES does not remove. +SUFFIXES = + +.SUFFIXES: .hpux_make_needs_suffix_list + + +# 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 remove -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /mnt/c/Users/t.vogl/Documents/repos/conan-qhull/test_package + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /mnt/c/Users/t.vogl/Documents/repos/conan-qhull/test_package/build/2419fc4ca82fd76a6c5d823d86b2c25bfc03afec + +# Include any dependencies generated for this target. +include CMakeFiles/example.dir/depend.make + +# Include the progress variables for this target. +include CMakeFiles/example.dir/progress.make + +# Include the compile flags for this target's objects. +include CMakeFiles/example.dir/flags.make + +CMakeFiles/example.dir/example.cpp.o: CMakeFiles/example.dir/flags.make +CMakeFiles/example.dir/example.cpp.o: ../../example.cpp + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/mnt/c/Users/t.vogl/Documents/repos/conan-qhull/test_package/build/2419fc4ca82fd76a6c5d823d86b2c25bfc03afec/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object CMakeFiles/example.dir/example.cpp.o" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -o CMakeFiles/example.dir/example.cpp.o -c /mnt/c/Users/t.vogl/Documents/repos/conan-qhull/test_package/example.cpp + +CMakeFiles/example.dir/example.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/example.dir/example.cpp.i" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /mnt/c/Users/t.vogl/Documents/repos/conan-qhull/test_package/example.cpp > CMakeFiles/example.dir/example.cpp.i + +CMakeFiles/example.dir/example.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/example.dir/example.cpp.s" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /mnt/c/Users/t.vogl/Documents/repos/conan-qhull/test_package/example.cpp -o CMakeFiles/example.dir/example.cpp.s + +CMakeFiles/example.dir/example.cpp.o.requires: + +.PHONY : CMakeFiles/example.dir/example.cpp.o.requires + +CMakeFiles/example.dir/example.cpp.o.provides: CMakeFiles/example.dir/example.cpp.o.requires + $(MAKE) -f CMakeFiles/example.dir/build.make CMakeFiles/example.dir/example.cpp.o.provides.build +.PHONY : CMakeFiles/example.dir/example.cpp.o.provides + +CMakeFiles/example.dir/example.cpp.o.provides.build: CMakeFiles/example.dir/example.cpp.o + + +# Object files for target example +example_OBJECTS = \ +"CMakeFiles/example.dir/example.cpp.o" + +# External object files for target example +example_EXTERNAL_OBJECTS = + +bin/example: CMakeFiles/example.dir/example.cpp.o +bin/example: CMakeFiles/example.dir/build.make +bin/example: /home/tom/.conan/data/QHull/f0bd8ce/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/lib/libqhullstatic.a +bin/example: CMakeFiles/example.dir/link.txt + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --bold --progress-dir=/mnt/c/Users/t.vogl/Documents/repos/conan-qhull/test_package/build/2419fc4ca82fd76a6c5d823d86b2c25bfc03afec/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Linking CXX executable bin/example" + $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/example.dir/link.txt --verbose=$(VERBOSE) + +# Rule to build all files generated by this target. +CMakeFiles/example.dir/build: bin/example + +.PHONY : CMakeFiles/example.dir/build + +CMakeFiles/example.dir/requires: CMakeFiles/example.dir/example.cpp.o.requires + +.PHONY : CMakeFiles/example.dir/requires + +CMakeFiles/example.dir/clean: + $(CMAKE_COMMAND) -P CMakeFiles/example.dir/cmake_clean.cmake +.PHONY : CMakeFiles/example.dir/clean + +CMakeFiles/example.dir/depend: + cd /mnt/c/Users/t.vogl/Documents/repos/conan-qhull/test_package/build/2419fc4ca82fd76a6c5d823d86b2c25bfc03afec && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /mnt/c/Users/t.vogl/Documents/repos/conan-qhull/test_package /mnt/c/Users/t.vogl/Documents/repos/conan-qhull/test_package /mnt/c/Users/t.vogl/Documents/repos/conan-qhull/test_package/build/2419fc4ca82fd76a6c5d823d86b2c25bfc03afec /mnt/c/Users/t.vogl/Documents/repos/conan-qhull/test_package/build/2419fc4ca82fd76a6c5d823d86b2c25bfc03afec /mnt/c/Users/t.vogl/Documents/repos/conan-qhull/test_package/build/2419fc4ca82fd76a6c5d823d86b2c25bfc03afec/CMakeFiles/example.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : CMakeFiles/example.dir/depend + diff --git a/qhull/test_package/build/2419fc4ca82fd76a6c5d823d86b2c25bfc03afec/CMakeFiles/example.dir/cmake_clean.cmake b/qhull/test_package/build/2419fc4ca82fd76a6c5d823d86b2c25bfc03afec/CMakeFiles/example.dir/cmake_clean.cmake new file mode 100644 index 0000000..c887f7f --- /dev/null +++ b/qhull/test_package/build/2419fc4ca82fd76a6c5d823d86b2c25bfc03afec/CMakeFiles/example.dir/cmake_clean.cmake @@ -0,0 +1,10 @@ +file(REMOVE_RECURSE + "CMakeFiles/example.dir/example.cpp.o" + "bin/example.pdb" + "bin/example" +) + +# Per-language clean rules from dependency scanning. +foreach(lang CXX) + include(CMakeFiles/example.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/qhull/test_package/build/2419fc4ca82fd76a6c5d823d86b2c25bfc03afec/CMakeFiles/example.dir/depend.internal b/qhull/test_package/build/2419fc4ca82fd76a6c5d823d86b2c25bfc03afec/CMakeFiles/example.dir/depend.internal new file mode 100644 index 0000000..1540d9d --- /dev/null +++ b/qhull/test_package/build/2419fc4ca82fd76a6c5d823d86b2c25bfc03afec/CMakeFiles/example.dir/depend.internal @@ -0,0 +1,10 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.5 + +CMakeFiles/example.dir/example.cpp.o + /home/tom/.conan/data/QHull/f0bd8ce/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/include/libqhull/libqhull.h + /home/tom/.conan/data/QHull/f0bd8ce/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/include/libqhull/mem.h + /home/tom/.conan/data/QHull/f0bd8ce/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/include/libqhull/qset.h + /home/tom/.conan/data/QHull/f0bd8ce/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/include/libqhull/stat.h + /home/tom/.conan/data/QHull/f0bd8ce/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/include/libqhull/user.h + /mnt/c/Users/t.vogl/Documents/repos/conan-qhull/test_package/example.cpp diff --git a/qhull/test_package/build/2419fc4ca82fd76a6c5d823d86b2c25bfc03afec/CMakeFiles/example.dir/depend.make b/qhull/test_package/build/2419fc4ca82fd76a6c5d823d86b2c25bfc03afec/CMakeFiles/example.dir/depend.make new file mode 100644 index 0000000..28815e5 --- /dev/null +++ b/qhull/test_package/build/2419fc4ca82fd76a6c5d823d86b2c25bfc03afec/CMakeFiles/example.dir/depend.make @@ -0,0 +1,10 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.5 + +CMakeFiles/example.dir/example.cpp.o: /home/tom/.conan/data/QHull/f0bd8ce/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/include/libqhull/libqhull.h +CMakeFiles/example.dir/example.cpp.o: /home/tom/.conan/data/QHull/f0bd8ce/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/include/libqhull/mem.h +CMakeFiles/example.dir/example.cpp.o: /home/tom/.conan/data/QHull/f0bd8ce/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/include/libqhull/qset.h +CMakeFiles/example.dir/example.cpp.o: /home/tom/.conan/data/QHull/f0bd8ce/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/include/libqhull/stat.h +CMakeFiles/example.dir/example.cpp.o: /home/tom/.conan/data/QHull/f0bd8ce/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/include/libqhull/user.h +CMakeFiles/example.dir/example.cpp.o: ../../example.cpp + diff --git a/qhull/test_package/build/2419fc4ca82fd76a6c5d823d86b2c25bfc03afec/CMakeFiles/example.dir/example.cpp.o b/qhull/test_package/build/2419fc4ca82fd76a6c5d823d86b2c25bfc03afec/CMakeFiles/example.dir/example.cpp.o new file mode 100644 index 0000000..de9ffaa Binary files /dev/null and b/qhull/test_package/build/2419fc4ca82fd76a6c5d823d86b2c25bfc03afec/CMakeFiles/example.dir/example.cpp.o differ diff --git a/qhull/test_package/build/2419fc4ca82fd76a6c5d823d86b2c25bfc03afec/CMakeFiles/example.dir/flags.make b/qhull/test_package/build/2419fc4ca82fd76a6c5d823d86b2c25bfc03afec/CMakeFiles/example.dir/flags.make new file mode 100644 index 0000000..3e20707 --- /dev/null +++ b/qhull/test_package/build/2419fc4ca82fd76a6c5d823d86b2c25bfc03afec/CMakeFiles/example.dir/flags.make @@ -0,0 +1,10 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.5 + +# compile CXX with /usr/bin/c++ +CXX_FLAGS = -m64 -O3 -DNDEBUG + +CXX_DEFINES = -D_GLIBCXX_USE_CXX11_ABI=0 + +CXX_INCLUDES = -I/home/tom/.conan/data/QHull/f0bd8ce/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/include + diff --git a/qhull/test_package/build/2419fc4ca82fd76a6c5d823d86b2c25bfc03afec/CMakeFiles/example.dir/link.txt b/qhull/test_package/build/2419fc4ca82fd76a6c5d823d86b2c25bfc03afec/CMakeFiles/example.dir/link.txt new file mode 100644 index 0000000..b07dbef --- /dev/null +++ b/qhull/test_package/build/2419fc4ca82fd76a6c5d823d86b2c25bfc03afec/CMakeFiles/example.dir/link.txt @@ -0,0 +1 @@ +/usr/bin/c++ -m64 -O3 -DNDEBUG CMakeFiles/example.dir/example.cpp.o -o bin/example -L/home/tom/.conan/data/QHull/f0bd8ce/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/lib -rdynamic /home/tom/.conan/data/QHull/f0bd8ce/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/lib/libqhullstatic.a -Wl,-rpath,/home/tom/.conan/data/QHull/f0bd8ce/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/lib diff --git a/qhull/test_package/build/2419fc4ca82fd76a6c5d823d86b2c25bfc03afec/CMakeFiles/example.dir/progress.make b/qhull/test_package/build/2419fc4ca82fd76a6c5d823d86b2c25bfc03afec/CMakeFiles/example.dir/progress.make new file mode 100644 index 0000000..abadeb0 --- /dev/null +++ b/qhull/test_package/build/2419fc4ca82fd76a6c5d823d86b2c25bfc03afec/CMakeFiles/example.dir/progress.make @@ -0,0 +1,3 @@ +CMAKE_PROGRESS_1 = 1 +CMAKE_PROGRESS_2 = 2 + diff --git a/qhull/test_package/build/2419fc4ca82fd76a6c5d823d86b2c25bfc03afec/CMakeFiles/feature_tests.bin b/qhull/test_package/build/2419fc4ca82fd76a6c5d823d86b2c25bfc03afec/CMakeFiles/feature_tests.bin new file mode 100644 index 0000000..42c19f3 Binary files /dev/null and b/qhull/test_package/build/2419fc4ca82fd76a6c5d823d86b2c25bfc03afec/CMakeFiles/feature_tests.bin differ diff --git a/qhull/test_package/build/2419fc4ca82fd76a6c5d823d86b2c25bfc03afec/CMakeFiles/feature_tests.cxx b/qhull/test_package/build/2419fc4ca82fd76a6c5d823d86b2c25bfc03afec/CMakeFiles/feature_tests.cxx new file mode 100644 index 0000000..b93418c --- /dev/null +++ b/qhull/test_package/build/2419fc4ca82fd76a6c5d823d86b2c25bfc03afec/CMakeFiles/feature_tests.cxx @@ -0,0 +1,405 @@ + + const char features[] = {"\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 500 && __cplusplus >= 201402L +"1" +#else +"0" +#endif +"cxx_aggregate_default_initializers\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 407 && __cplusplus >= 201103L +"1" +#else +"0" +#endif +"cxx_alias_templates\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 408 && __cplusplus >= 201103L +"1" +#else +"0" +#endif +"cxx_alignas\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 408 && __cplusplus >= 201103L +"1" +#else +"0" +#endif +"cxx_alignof\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 408 && __cplusplus >= 201103L +"1" +#else +"0" +#endif +"cxx_attributes\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 409 && __cplusplus > 201103L +"1" +#else +"0" +#endif +"cxx_attribute_deprecated\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_auto_type\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 409 && __cplusplus > 201103L +"1" +#else +"0" +#endif +"cxx_binary_literals\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 406 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_constexpr\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 409 && __cplusplus > 201103L +"1" +#else +"0" +#endif +"cxx_contextual_conversions\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_decltype\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 409 && __cplusplus > 201103L +"1" +#else +"0" +#endif +"cxx_decltype_auto\n" +"CXX_FEATURE:" +#if ((__GNUC__ * 10000 + __GNUC_MINOR__ * 100 + __GNUC_PATCHLEVEL__) >= 40801) && __cplusplus >= 201103L +"1" +#else +"0" +#endif +"cxx_decltype_incomplete_return_types\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_default_function_template_args\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_defaulted_functions\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 406 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_defaulted_move_initializers\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 407 && __cplusplus >= 201103L +"1" +#else +"0" +#endif +"cxx_delegating_constructors\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_deleted_functions\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 409 && __cplusplus > 201103L +"1" +#else +"0" +#endif +"cxx_digit_separators\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 406 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_enum_forward_declarations\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 405 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_explicit_conversions\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 407 && __cplusplus >= 201103L +"1" +#else +"0" +#endif +"cxx_extended_friend_declarations\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_extern_templates\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 407 && __cplusplus >= 201103L +"1" +#else +"0" +#endif +"cxx_final\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_func_identifier\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_generalized_initializers\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 409 && __cplusplus > 201103L +"1" +#else +"0" +#endif +"cxx_generic_lambdas\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 408 && __cplusplus >= 201103L +"1" +#else +"0" +#endif +"cxx_inheriting_constructors\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_inline_namespaces\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 405 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_lambdas\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 409 && __cplusplus > 201103L +"1" +#else +"0" +#endif +"cxx_lambda_init_captures\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 405 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_local_type_template_args\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_long_long_type\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 406 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_noexcept\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 407 && __cplusplus >= 201103L +"1" +#else +"0" +#endif +"cxx_nonstatic_member_init\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 406 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_nullptr\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 407 && __cplusplus >= 201103L +"1" +#else +"0" +#endif +"cxx_override\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 406 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_range_for\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 405 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_raw_string_literals\n" +"CXX_FEATURE:" +#if ((__GNUC__ * 10000 + __GNUC_MINOR__ * 100 + __GNUC_PATCHLEVEL__) >= 40801) && __cplusplus >= 201103L +"1" +#else +"0" +#endif +"cxx_reference_qualified_functions\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 500 && __cplusplus >= 201402L +"1" +#else +"0" +#endif +"cxx_relaxed_constexpr\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 409 && __cplusplus > 201103L +"1" +#else +"0" +#endif +"cxx_return_type_deduction\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_right_angle_brackets\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_rvalue_references\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_sizeof_member\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_static_assert\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_strong_enums\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && __cplusplus +"1" +#else +"0" +#endif +"cxx_template_template_parameters\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 408 && __cplusplus >= 201103L +"1" +#else +"0" +#endif +"cxx_thread_local\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_trailing_return_types\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_unicode_literals\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_uniform_initialization\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 406 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_unrestricted_unions\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 407 && __cplusplus >= 201103L +"1" +#else +"0" +#endif +"cxx_user_literals\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 500 && __cplusplus >= 201402L +"1" +#else +"0" +#endif +"cxx_variable_templates\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_variadic_macros\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_variadic_templates\n" + +}; + +int main(int argc, char** argv) { (void)argv; return features[argc]; } diff --git a/qhull/test_package/build/2419fc4ca82fd76a6c5d823d86b2c25bfc03afec/CMakeFiles/progress.marks b/qhull/test_package/build/2419fc4ca82fd76a6c5d823d86b2c25bfc03afec/CMakeFiles/progress.marks new file mode 100644 index 0000000..0cfbf08 --- /dev/null +++ b/qhull/test_package/build/2419fc4ca82fd76a6c5d823d86b2c25bfc03afec/CMakeFiles/progress.marks @@ -0,0 +1 @@ +2 diff --git a/qhull/test_package/build/2419fc4ca82fd76a6c5d823d86b2c25bfc03afec/Makefile b/qhull/test_package/build/2419fc4ca82fd76a6c5d823d86b2c25bfc03afec/Makefile new file mode 100644 index 0000000..85bee33 --- /dev/null +++ b/qhull/test_package/build/2419fc4ca82fd76a6c5d823d86b2c25bfc03afec/Makefile @@ -0,0 +1,178 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.5 + +# 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: + + +# Remove some rules from gmake that .SUFFIXES does not remove. +SUFFIXES = + +.SUFFIXES: .hpux_make_needs_suffix_list + + +# 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 remove -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /mnt/c/Users/t.vogl/Documents/repos/conan-qhull/test_package + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /mnt/c/Users/t.vogl/Documents/repos/conan-qhull/test_package/build/2419fc4ca82fd76a6c5d823d86b2c25bfc03afec + +#============================================================================= +# Targets provided globally by CMake. + +# 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 -H$(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 edit_cache +edit_cache: + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "No interactive CMake dialog available..." + /usr/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available. +.PHONY : edit_cache + +# Special rule for the target edit_cache +edit_cache/fast: edit_cache + +.PHONY : edit_cache/fast + +# The main all target +all: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /mnt/c/Users/t.vogl/Documents/repos/conan-qhull/test_package/build/2419fc4ca82fd76a6c5d823d86b2c25bfc03afec/CMakeFiles /mnt/c/Users/t.vogl/Documents/repos/conan-qhull/test_package/build/2419fc4ca82fd76a6c5d823d86b2c25bfc03afec/CMakeFiles/progress.marks + $(MAKE) -f CMakeFiles/Makefile2 all + $(CMAKE_COMMAND) -E cmake_progress_start /mnt/c/Users/t.vogl/Documents/repos/conan-qhull/test_package/build/2419fc4ca82fd76a6c5d823d86b2c25bfc03afec/CMakeFiles 0 +.PHONY : all + +# The main clean target +clean: + $(MAKE) -f CMakeFiles/Makefile2 clean +.PHONY : clean + +# The main clean target +clean/fast: clean + +.PHONY : clean/fast + +# Prepare targets for installation. +preinstall: all + $(MAKE) -f CMakeFiles/Makefile2 preinstall +.PHONY : preinstall + +# Prepare targets for installation. +preinstall/fast: + $(MAKE) -f CMakeFiles/Makefile2 preinstall +.PHONY : preinstall/fast + +# clear depends +depend: + $(CMAKE_COMMAND) -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1 +.PHONY : depend + +#============================================================================= +# Target rules for targets named example + +# Build rule for target. +example: cmake_check_build_system + $(MAKE) -f CMakeFiles/Makefile2 example +.PHONY : example + +# fast build rule for target. +example/fast: + $(MAKE) -f CMakeFiles/example.dir/build.make CMakeFiles/example.dir/build +.PHONY : example/fast + +example.o: example.cpp.o + +.PHONY : example.o + +# target to build an object file +example.cpp.o: + $(MAKE) -f CMakeFiles/example.dir/build.make CMakeFiles/example.dir/example.cpp.o +.PHONY : example.cpp.o + +example.i: example.cpp.i + +.PHONY : example.i + +# target to preprocess a source file +example.cpp.i: + $(MAKE) -f CMakeFiles/example.dir/build.make CMakeFiles/example.dir/example.cpp.i +.PHONY : example.cpp.i + +example.s: example.cpp.s + +.PHONY : example.s + +# target to generate assembly for a file +example.cpp.s: + $(MAKE) -f CMakeFiles/example.dir/build.make CMakeFiles/example.dir/example.cpp.s +.PHONY : example.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 "... rebuild_cache" + @echo "... edit_cache" + @echo "... example" + @echo "... example.o" + @echo "... example.i" + @echo "... example.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) -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 +.PHONY : cmake_check_build_system + diff --git a/qhull/test_package/build/2419fc4ca82fd76a6c5d823d86b2c25bfc03afec/bin/example b/qhull/test_package/build/2419fc4ca82fd76a6c5d823d86b2c25bfc03afec/bin/example new file mode 100644 index 0000000..65eee7f Binary files /dev/null and b/qhull/test_package/build/2419fc4ca82fd76a6c5d823d86b2c25bfc03afec/bin/example differ diff --git a/qhull/test_package/build/2419fc4ca82fd76a6c5d823d86b2c25bfc03afec/cmake_install.cmake b/qhull/test_package/build/2419fc4ca82fd76a6c5d823d86b2c25bfc03afec/cmake_install.cmake new file mode 100644 index 0000000..13ee4f1 --- /dev/null +++ b/qhull/test_package/build/2419fc4ca82fd76a6c5d823d86b2c25bfc03afec/cmake_install.cmake @@ -0,0 +1,44 @@ +# Install script for directory: /mnt/c/Users/t.vogl/Documents/repos/conan-qhull/test_package + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "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 "1") +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 "/mnt/c/Users/t.vogl/Documents/repos/conan-qhull/test_package/build/2419fc4ca82fd76a6c5d823d86b2c25bfc03afec/${CMAKE_INSTALL_MANIFEST}" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") diff --git a/qhull/test_package/build/2419fc4ca82fd76a6c5d823d86b2c25bfc03afec/conanbuildinfo.cmake b/qhull/test_package/build/2419fc4ca82fd76a6c5d823d86b2c25bfc03afec/conanbuildinfo.cmake new file mode 100644 index 0000000..b6bb84a --- /dev/null +++ b/qhull/test_package/build/2419fc4ca82fd76a6c5d823d86b2c25bfc03afec/conanbuildinfo.cmake @@ -0,0 +1,499 @@ +include(CMakeParseArguments) +set(CONAN_QHULL_ROOT "/home/tom/.conan/data/QHull/f0bd8ce/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9") +set(CONAN_INCLUDE_DIRS_QHULL "/home/tom/.conan/data/QHull/f0bd8ce/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/include") +set(CONAN_LIB_DIRS_QHULL "/home/tom/.conan/data/QHull/f0bd8ce/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/lib") +set(CONAN_BIN_DIRS_QHULL ) +set(CONAN_RES_DIRS_QHULL ) +set(CONAN_BUILD_DIRS_QHULL "/home/tom/.conan/data/QHull/f0bd8ce/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/") +set(CONAN_LIBS_QHULL libqhullstatic) +set(CONAN_DEFINES_QHULL ) +# COMPILE_DEFINITIONS are equal to CONAN_DEFINES without -D, for targets +set(CONAN_COMPILE_DEFINITIONS_QHULL ) + +set(CONAN_C_FLAGS_QHULL "") +set(CONAN_CXX_FLAGS_QHULL "") +set(CONAN_SHARED_LINKER_FLAGS_QHULL "") +set(CONAN_EXE_LINKER_FLAGS_QHULL "") + +# For modern cmake targets we use the list variables (separated with ;) +set(CONAN_C_FLAGS_QHULL_LIST "") +set(CONAN_CXX_FLAGS_QHULL_LIST "") +set(CONAN_SHARED_LINKER_FLAGS_QHULL_LIST "") +set(CONAN_EXE_LINKER_FLAGS_QHULL_LIST "") + + + +### Definition of global aggregated variables ### + +set(CONAN_PACKAGE_NAME None) +set(CONAN_PACKAGE_VERSION None) + +set(CONAN_SETTINGS_ARCH "x86_64") +set(CONAN_SETTINGS_BUILD_TYPE "Release") +set(CONAN_SETTINGS_COMPILER "gcc") +set(CONAN_SETTINGS_COMPILER_LIBCXX "libstdc++") +set(CONAN_SETTINGS_COMPILER_VERSION "5.4") +set(CONAN_SETTINGS_OS "Linux") + +set(CONAN_DEPENDENCIES QHull) +# Storing original command line args (CMake helper) flags +set(CONAN_CMD_CXX_FLAGS ${CONAN_CXX_FLAGS}) + +set(CONAN_CMD_SHARED_LINKER_FLAGS ${CONAN_SHARED_LINKER_FLAGS}) +set(CONAN_CMD_C_FLAGS ${CONAN_C_FLAGS}) +# Defining accumulated conan variables for all deps + +set(CONAN_INCLUDE_DIRS "/home/tom/.conan/data/QHull/f0bd8ce/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/include" ${CONAN_INCLUDE_DIRS}) +set(CONAN_LIB_DIRS "/home/tom/.conan/data/QHull/f0bd8ce/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/lib" ${CONAN_LIB_DIRS}) +set(CONAN_BIN_DIRS ${CONAN_BIN_DIRS}) +set(CONAN_RES_DIRS ${CONAN_RES_DIRS}) +set(CONAN_LIBS libqhullstatic ${CONAN_LIBS}) +set(CONAN_DEFINES ${CONAN_DEFINES}) +set(CONAN_CMAKE_MODULE_PATH "/home/tom/.conan/data/QHull/f0bd8ce/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/" ${CONAN_CMAKE_MODULE_PATH}) + +set(CONAN_CXX_FLAGS " ${CONAN_CXX_FLAGS}") +set(CONAN_SHARED_LINKER_FLAGS " ${CONAN_SHARED_LINKER_FLAGS}") +set(CONAN_EXE_LINKER_FLAGS " ${CONAN_EXE_LINKER_FLAGS}") +set(CONAN_C_FLAGS " ${CONAN_C_FLAGS}") + + +### Definition of macros and functions ### + +macro(conan_define_targets) + if(${CMAKE_VERSION} VERSION_LESS "3.1.2") + message(FATAL_ERROR "TARGETS not supported by your CMake version!") + endif() # CMAKE > 3.x + set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${CONAN_CMD_CXX_FLAGS}") + set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} ${CONAN_CMD_C_FLAGS}") + set(CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} ${CONAN_CMD_SHARED_LINKER_FLAGS}") + + + conan_package_library_targets("${CONAN_LIBS_QHULL}" "${CONAN_LIB_DIRS_QHULL}" + CONAN_PACKAGE_TARGETS_QHULL "" "" QHull) + conan_package_library_targets("${CONAN_LIBS_QHULL_DEBUG}" "${CONAN_LIB_DIRS_QHULL_DEBUG}" + CONAN_PACKAGE_TARGETS_QHULL_DEBUG "" "debug" QHull) + conan_package_library_targets("${CONAN_LIBS_QHULL_RELEASE}" "${CONAN_LIB_DIRS_QHULL_RELEASE}" + CONAN_PACKAGE_TARGETS_QHULL_RELEASE "" "release" QHull) + + add_library(CONAN_PKG::QHull INTERFACE IMPORTED) + + # Property INTERFACE_LINK_FLAGS do not work, necessary to add to INTERFACE_LINK_LIBRARIES + set_property(TARGET CONAN_PKG::QHull PROPERTY INTERFACE_LINK_LIBRARIES ${CONAN_PACKAGE_TARGETS_QHULL} ${CONAN_SHARED_LINKER_FLAGS_QHULL_LIST} ${CONAN_EXE_LINKER_FLAGS_QHULL_LIST} + $<$:${CONAN_PACKAGE_TARGETS_QHULL_RELEASE} ${CONAN_SHARED_LINKER_FLAGS_QHULL_RELEASE_LIST} ${CONAN_EXE_LINKER_FLAGS_QHULL_RELEASE_LIST}> + $<$:${CONAN_PACKAGE_TARGETS_QHULL_RELEASE} ${CONAN_SHARED_LINKER_FLAGS_QHULL_RELEASE_LIST} ${CONAN_EXE_LINKER_FLAGS_QHULL_RELEASE_LIST}> + $<$:${CONAN_PACKAGE_TARGETS_QHULL_RELEASE} ${CONAN_SHARED_LINKER_FLAGS_QHULL_RELEASE_LIST} ${CONAN_EXE_LINKER_FLAGS_QHULL_RELEASE_LIST}> + $<$:${CONAN_PACKAGE_TARGETS_QHULL_DEBUG} ${CONAN_SHARED_LINKER_FLAGS_QHULL_DEBUG_LIST} ${CONAN_EXE_LINKER_FLAGS_QHULL_DEBUG_LIST}> + ) + set_property(TARGET CONAN_PKG::QHull PROPERTY INTERFACE_INCLUDE_DIRECTORIES ${CONAN_INCLUDE_DIRS_QHULL} + $<$:${CONAN_INCLUDE_DIRS_QHULL_RELEASE}> + $<$:${CONAN_INCLUDE_DIRS_QHULL_RELEASE}> + $<$:${CONAN_INCLUDE_DIRS_QHULL_RELEASE}> + $<$:${CONAN_INCLUDE_DIRS_QHULL_DEBUG}>) + set_property(TARGET CONAN_PKG::QHull PROPERTY INTERFACE_COMPILE_DEFINITIONS ${CONAN_COMPILE_DEFINITIONS_QHULL} + $<$:${CONAN_COMPILE_DEFINITIONS_QHULL_RELEASE}> + $<$:${CONAN_COMPILE_DEFINITIONS_QHULL_RELEASE}> + $<$:${CONAN_COMPILE_DEFINITIONS_QHULL_RELEASE}> + $<$:${CONAN_COMPILE_DEFINITIONS_QHULL_DEBUG}>) + set_property(TARGET CONAN_PKG::QHull PROPERTY INTERFACE_COMPILE_OPTIONS ${CONAN_C_FLAGS_QHULL_LIST} ${CONAN_CXX_FLAGS_QHULL_LIST} + $<$:${CONAN_C_FLAGS_QHULL_RELEASE_LIST} ${CONAN_CXX_FLAGS_QHULL_RELEASE_LIST}> + $<$:${CONAN_C_FLAGS_QHULL_RELEASE_LIST} ${CONAN_CXX_FLAGS_QHULL_RELEASE_LIST}> + $<$:${CONAN_C_FLAGS_QHULL_RELEASE_LIST} ${CONAN_CXX_FLAGS_QHULL_RELEASE_LIST}> + $<$:${CONAN_C_FLAGS_QHULL_DEBUG_LIST} ${CONAN_CXX_FLAGS_QHULL_DEBUG_LIST}>) + + set(CONAN_TARGETS CONAN_PKG::QHull) + +endmacro() + + +macro(conan_basic_setup) + set(options TARGETS NO_OUTPUT_DIRS SKIP_RPATH KEEP_RPATHS) + cmake_parse_arguments(ARGUMENTS "${options}" "${oneValueArgs}" "${multiValueArgs}" ${ARGN} ) + if(CONAN_EXPORTED) + message(STATUS "Conan: called by CMake conan helper") + endif() + conan_check_compiler() + if(NOT ARGUMENTS_NO_OUTPUT_DIRS) + conan_output_dirs_setup() + endif() + conan_set_find_library_paths() + if(NOT ARGUMENTS_TARGETS) + message(STATUS "Conan: Using cmake global configuration") + conan_global_flags() + else() + message(STATUS "Conan: Using cmake targets configuration") + conan_define_targets() + endif() + if(ARGUMENTS_SKIP_RPATH) + # Change by "DEPRECATION" or "SEND_ERROR" when we are ready + message(WARNING "Conan: SKIP_RPATH is deprecated, it has been renamed to KEEP_RPATHS") + endif() + if(NOT ARGUMENTS_SKIP_RPATH AND NOT ARGUMENTS_KEEP_RPATHS) + # Parameter has renamed, but we keep the compatibility with old SKIP_RPATH + message(STATUS "Conan: Adjusting default RPATHs Conan policies") + conan_set_rpath() + endif() + conan_set_vs_runtime() + conan_set_libcxx() + conan_set_find_paths() +endmacro() + +macro(conan_set_find_paths) + # CMAKE_MODULE_PATH does not have Debug/Release config, but there are variables + # CONAN_CMAKE_MODULE_PATH_DEBUG to be used by the consumer + # CMake can find findXXX.cmake files in the root of packages + set(CMAKE_MODULE_PATH ${CONAN_CMAKE_MODULE_PATH} ${CMAKE_MODULE_PATH}) + + # Make find_package() to work + set(CMAKE_PREFIX_PATH ${CONAN_CMAKE_MODULE_PATH} ${CMAKE_PREFIX_PATH}) + + # Set the find root path (cross build) + set(CMAKE_FIND_ROOT_PATH ${CONAN_CMAKE_FIND_ROOT_PATH} ${CMAKE_FIND_ROOT_PATH}) + if(CONAN_CMAKE_FIND_ROOT_PATH_MODE_PROGRAM) + set(CMAKE_FIND_ROOT_PATH_MODE_PROGRAM ${CONAN_CMAKE_FIND_ROOT_PATH_MODE_PROGRAM}) + endif() + if(CONAN_CMAKE_FIND_ROOT_PATH_MODE_LIBRARY) + set(CMAKE_FIND_ROOT_PATH_MODE_LIBRARY ${CONAN_CMAKE_FIND_ROOT_PATH_MODE_LIBRARY}) + endif() + if(CONAN_CMAKE_FIND_ROOT_PATH_MODE_INCLUDE) + set(CMAKE_FIND_ROOT_PATH_MODE_INCLUDE ${CONAN_CMAKE_FIND_ROOT_PATH_MODE_INCLUDE}) + endif() +endmacro() + +macro(conan_set_find_library_paths) + # CMAKE_INCLUDE_PATH, CMAKE_LIBRARY_PATH does not have Debug/Release config, but there are variables + # CONAN_INCLUDE_DIRS_DEBUG/RELEASE CONAN_LIB_DIRS_DEBUG/RELEASE to be used by the consumer + # For find_library + set(CMAKE_INCLUDE_PATH ${CONAN_INCLUDE_DIRS} ${CMAKE_INCLUDE_PATH}) + set(CMAKE_LIBRARY_PATH ${CONAN_LIB_DIRS} ${CMAKE_LIBRARY_PATH}) +endmacro() + +macro(conan_set_vs_runtime) + if(CONAN_LINK_RUNTIME) + foreach(flag CMAKE_C_FLAGS_RELEASE CMAKE_CXX_FLAGS_RELEASE + CMAKE_C_FLAGS_RELWITHDEBINFO CMAKE_CXX_FLAGS_RELWITHDEBINFO + CMAKE_C_FLAGS_MINSIZEREL CMAKE_CXX_FLAGS_MINSIZEREL) + if(DEFINED ${flag}) + string(REPLACE "/MD" ${CONAN_LINK_RUNTIME} ${flag} "${${flag}}") + endif() + endforeach() + foreach(flag CMAKE_C_FLAGS_DEBUG CMAKE_CXX_FLAGS_DEBUG) + if(DEFINED ${flag}) + string(REPLACE "/MDd" ${CONAN_LINK_RUNTIME} ${flag} "${${flag}}") + endif() + endforeach() + endif() +endmacro() + +macro(conan_flags_setup) + # Macro maintained for backwards compatibility + conan_set_find_library_paths() + conan_global_flags() + conan_set_rpath() + conan_set_vs_runtime() + conan_set_libcxx() +endmacro() + + + +function(conan_find_libraries_abs_path libraries package_libdir libraries_abs_path) + foreach(_LIBRARY_NAME ${libraries}) + unset(CONAN_FOUND_LIBRARY CACHE) + find_library(CONAN_FOUND_LIBRARY NAME ${_LIBRARY_NAME} PATHS ${package_libdir} + NO_DEFAULT_PATH NO_CMAKE_FIND_ROOT_PATH) + if(CONAN_FOUND_LIBRARY) + message(STATUS "Library ${_LIBRARY_NAME} found ${CONAN_FOUND_LIBRARY}") + set(CONAN_FULLPATH_LIBS ${CONAN_FULLPATH_LIBS} ${CONAN_FOUND_LIBRARY}) + else() + message(STATUS "Library ${_LIBRARY_NAME} not found in package, might be system one") + set(CONAN_FULLPATH_LIBS ${CONAN_FULLPATH_LIBS} ${_LIBRARY_NAME}) + endif() + endforeach() + unset(CONAN_FOUND_LIBRARY CACHE) + set(${libraries_abs_path} ${CONAN_FULLPATH_LIBS} PARENT_SCOPE) +endfunction() + +function(conan_package_library_targets libraries package_libdir libraries_abs_path deps build_type package_name) + foreach(_LIBRARY_NAME ${libraries}) + unset(CONAN_FOUND_LIBRARY CACHE) + find_library(CONAN_FOUND_LIBRARY NAME ${_LIBRARY_NAME} PATHS ${package_libdir} + NO_DEFAULT_PATH NO_CMAKE_FIND_ROOT_PATH) + if(CONAN_FOUND_LIBRARY) + message(STATUS "Library ${_LIBRARY_NAME} found ${CONAN_FOUND_LIBRARY}") + set(_LIB_NAME CONAN_LIB::${package_name}_${_LIBRARY_NAME}${build_type}) + add_library(${_LIB_NAME} UNKNOWN IMPORTED) + set_target_properties(${_LIB_NAME} PROPERTIES IMPORTED_LOCATION ${CONAN_FOUND_LIBRARY}) + string(REPLACE " " ";" deps_list "${deps}") + set_property(TARGET ${_LIB_NAME} PROPERTY INTERFACE_LINK_LIBRARIES ${deps_list}) + set(CONAN_FULLPATH_LIBS ${CONAN_FULLPATH_LIBS} ${_LIB_NAME}) + else() + message(STATUS "Library ${_LIBRARY_NAME} not found in package, might be system one") + set(CONAN_FULLPATH_LIBS ${CONAN_FULLPATH_LIBS} ${_LIBRARY_NAME}) + endif() + endforeach() + unset(CONAN_FOUND_LIBRARY CACHE) + set(${libraries_abs_path} ${CONAN_FULLPATH_LIBS} PARENT_SCOPE) +endfunction() + +macro(conan_set_libcxx) + if(DEFINED CONAN_LIBCXX) + message(STATUS "Conan: C++ stdlib: ${CONAN_LIBCXX}") + if(CONAN_COMPILER STREQUAL "clang" OR CONAN_COMPILER STREQUAL "apple-clang") + if(CONAN_LIBCXX STREQUAL "libstdc++" OR CONAN_LIBCXX STREQUAL "libstdc++11" ) + set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -stdlib=libstdc++") + elseif(CONAN_LIBCXX STREQUAL "libc++") + set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -stdlib=libc++") + endif() + endif() + if(CONAN_COMPILER STREQUAL "sun-cc") + if(CONAN_LIBCXX STREQUAL "libCstd") + set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -library=Cstd") + elseif(CONAN_LIBCXX STREQUAL "libstdcxx") + set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -library=stdcxx4") + elseif(CONAN_LIBCXX STREQUAL "libstlport") + set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -library=stlport4") + elseif(CONAN_LIBCXX STREQUAL "libstdc++") + set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -library=stdcpp") + endif() + endif() + if(CONAN_LIBCXX STREQUAL "libstdc++11") + add_definitions(-D_GLIBCXX_USE_CXX11_ABI=1) + elseif(CONAN_LIBCXX STREQUAL "libstdc++") + add_definitions(-D_GLIBCXX_USE_CXX11_ABI=0) + endif() + endif() +endmacro() + +macro(conan_set_rpath) + if(APPLE) + # https://cmake.org/Wiki/CMake_RPATH_handling + # CONAN GUIDE: All generated libraries should have the id and dependencies to other + # dylibs without path, just the name, EX: + # libMyLib1.dylib: + # libMyLib1.dylib (compatibility version 0.0.0, current version 0.0.0) + # libMyLib0.dylib (compatibility version 0.0.0, current version 0.0.0) + # /usr/lib/libc++.1.dylib (compatibility version 1.0.0, current version 120.0.0) + # /usr/lib/libSystem.B.dylib (compatibility version 1.0.0, current version 1197.1.1) + set(CMAKE_SKIP_RPATH 1) # AVOID RPATH FOR *.dylib, ALL LIBS BETWEEN THEM AND THE EXE + # SHOULD BE ON THE LINKER RESOLVER PATH (./ IS ONE OF THEM) + # Policy CMP0068 + # We want the old behavior, in CMake >= 3.9 CMAKE_SKIP_RPATH won't affect the install_name in OSX + set(CMAKE_INSTALL_NAME_DIR "") + endif() +endmacro() + +macro(conan_output_dirs_setup) + set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/bin) + set(CMAKE_RUNTIME_OUTPUT_DIRECTORY_RELEASE ${CMAKE_RUNTIME_OUTPUT_DIRECTORY}) + set(CMAKE_RUNTIME_OUTPUT_DIRECTORY_RELWITHDEBINFO ${CMAKE_RUNTIME_OUTPUT_DIRECTORY}) + set(CMAKE_RUNTIME_OUTPUT_DIRECTORY_MINSIZEREL ${CMAKE_RUNTIME_OUTPUT_DIRECTORY}) + set(CMAKE_RUNTIME_OUTPUT_DIRECTORY_DEBUG ${CMAKE_RUNTIME_OUTPUT_DIRECTORY}) + + set(CMAKE_ARCHIVE_OUTPUT_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/lib) + set(CMAKE_ARCHIVE_OUTPUT_DIRECTORY_RELEASE ${CMAKE_ARCHIVE_OUTPUT_DIRECTORY}) + set(CMAKE_ARCHIVE_OUTPUT_DIRECTORY_RELWITHDEBINFO ${CMAKE_ARCHIVE_OUTPUT_DIRECTORY}) + set(CMAKE_ARCHIVE_OUTPUT_DIRECTORY_MINSIZEREL ${CMAKE_ARCHIVE_OUTPUT_DIRECTORY}) + set(CMAKE_ARCHIVE_OUTPUT_DIRECTORY_DEBUG ${CMAKE_ARCHIVE_OUTPUT_DIRECTORY}) + + set(CMAKE_LIBRARY_OUTPUT_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/lib) + set(CMAKE_LIBRARY_OUTPUT_DIRECTORY_RELEASE ${CMAKE_LIBRARY_OUTPUT_DIRECTORY}) + set(CMAKE_LIBRARY_OUTPUT_DIRECTORY_RELWITHDEBINFO ${CMAKE_LIBRARY_OUTPUT_DIRECTORY}) + set(CMAKE_LIBRARY_OUTPUT_DIRECTORY_MINSIZEREL ${CMAKE_LIBRARY_OUTPUT_DIRECTORY}) + set(CMAKE_LIBRARY_OUTPUT_DIRECTORY_DEBUG ${CMAKE_LIBRARY_OUTPUT_DIRECTORY}) +endmacro() + +macro(conan_split_version VERSION_STRING MAJOR MINOR) + #make a list from the version string + string(REPLACE "." ";" VERSION_LIST "${VERSION_STRING}") + + #write output values + list(LENGTH VERSION_LIST _version_len) + list(GET VERSION_LIST 0 ${MAJOR}) + if(${_version_len} GREATER 1) + list(GET VERSION_LIST 1 ${MINOR}) + endif() +endmacro() + +macro(conan_error_compiler_version) + message(FATAL_ERROR "Incorrect '${CONAN_COMPILER}' version 'compiler.version=${CONAN_COMPILER_VERSION}'" + " is not the one detected by CMake: '${CMAKE_CXX_COMPILER_ID}=" ${VERSION_MAJOR}.${VERSION_MINOR}') +endmacro() + +set(_CONAN_CURRENT_DIR ${CMAKE_CURRENT_LIST_DIR}) +function(conan_get_compiler CONAN_INFO_COMPILER CONAN_INFO_COMPILER_VERSION) + MESSAGE(STATUS "Current conanbuildinfo.cmake directory: " ${_CONAN_CURRENT_DIR}) + if(NOT EXISTS ${_CONAN_CURRENT_DIR}/conaninfo.txt) + message(STATUS "WARN: conaninfo.txt not found") + return() + endif() + + file (READ "${_CONAN_CURRENT_DIR}/conaninfo.txt" CONANINFO) + + string(REGEX MATCH "compiler=([-A-Za-z0-9_ ]+)" _MATCHED ${CONANINFO}) + if(DEFINED CMAKE_MATCH_1) + string(STRIP "${CMAKE_MATCH_1}" _CONAN_INFO_COMPILER) + set(${CONAN_INFO_COMPILER} ${_CONAN_INFO_COMPILER} PARENT_SCOPE) + endif() + + string(REGEX MATCH "compiler.version=([-A-Za-z0-9_.]+)" _MATCHED ${CONANINFO}) + if(DEFINED CMAKE_MATCH_1) + string(STRIP "${CMAKE_MATCH_1}" _CONAN_INFO_COMPILER_VERSION) + set(${CONAN_INFO_COMPILER_VERSION} ${_CONAN_INFO_COMPILER_VERSION} PARENT_SCOPE) + endif() +endfunction() + +function(check_compiler_version) + conan_split_version(${CMAKE_CXX_COMPILER_VERSION} VERSION_MAJOR VERSION_MINOR) + if(CMAKE_CXX_COMPILER_ID MATCHES MSVC) + # https://cmake.org/cmake/help/v3.2/variable/MSVC_VERSION.html + if( (CONAN_COMPILER_VERSION STREQUAL "14" AND NOT VERSION_MAJOR STREQUAL "19") OR + (CONAN_COMPILER_VERSION STREQUAL "12" AND NOT VERSION_MAJOR STREQUAL "18") OR + (CONAN_COMPILER_VERSION STREQUAL "11" AND NOT VERSION_MAJOR STREQUAL "17") OR + (CONAN_COMPILER_VERSION STREQUAL "10" AND NOT VERSION_MAJOR STREQUAL "16") OR + (CONAN_COMPILER_VERSION STREQUAL "9" AND NOT VERSION_MAJOR STREQUAL "15") OR + (CONAN_COMPILER_VERSION STREQUAL "8" AND NOT VERSION_MAJOR STREQUAL "14") OR + (CONAN_COMPILER_VERSION STREQUAL "7" AND NOT VERSION_MAJOR STREQUAL "13") OR + (CONAN_COMPILER_VERSION STREQUAL "6" AND NOT VERSION_MAJOR STREQUAL "12") ) + conan_error_compiler_version() + endif() + elseif(CONAN_COMPILER STREQUAL "gcc") + set(_CHECK_VERSION ${VERSION_MAJOR}.${VERSION_MINOR}) + if(NOT ${CONAN_COMPILER_VERSION} VERSION_LESS 5.0) + message(STATUS "Conan: Compiler GCC>=5, checking major version ${CONAN_COMPILER_VERSION}") + conan_split_version(${CONAN_COMPILER_VERSION} CONAN_COMPILER_MAJOR CONAN_COMPILER_MINOR) + if("${CONAN_COMPILER_MINOR}" STREQUAL "") + set(_CHECK_VERSION ${VERSION_MAJOR}) + endif() + endif() + message(STATUS "Conan: Checking correct version: ${_CHECK_VERSION}") + if(NOT ${_CHECK_VERSION} VERSION_EQUAL CONAN_COMPILER_VERSION) + conan_error_compiler_version() + endif() + elseif(CONAN_COMPILER MATCHES "clang" OR CONAN_COMPILER STREQUAL "sun-cc") + if(NOT ${VERSION_MAJOR}.${VERSION_MINOR} VERSION_EQUAL CONAN_COMPILER_VERSION) + conan_error_compiler_version() + endif() + else() + message(STATUS "WARN: Unknown compiler '${CONAN_COMPILER}', skipping the version check...") + endif() +endfunction() + +function(conan_check_compiler) + if(NOT DEFINED CMAKE_CXX_COMPILER_ID) + if(DEFINED CMAKE_C_COMPILER_ID) + message(STATUS "This project seems to be plain C, using '${CMAKE_C_COMPILER_ID}' compiler") + set(CMAKE_CXX_COMPILER_ID ${CMAKE_C_COMPILER_ID}) + set(CMAKE_CXX_COMPILER_VERSION ${CMAKE_C_COMPILER_VERSION}) + else() + message(FATAL_ERROR "This project seems to be plain C, but no compiler defined") + endif() + endif() + if(CONAN_DISABLE_CHECK_COMPILER) + message(STATUS "WARN: Disabled conan compiler checks") + return() + endif() + + if(NOT DEFINED CONAN_COMPILER) + conan_get_compiler(CONAN_COMPILER CONAN_COMPILER_VERSION) + if(NOT DEFINED CONAN_COMPILER) + message(STATUS "WARN: CONAN_COMPILER variable not set, please make sure yourself that " + "your compiler and version matches your declared settings") + return() + endif() + endif() + + if(NOT CMAKE_HOST_SYSTEM_NAME STREQUAL ${CMAKE_SYSTEM_NAME}) + set(CROSS_BUILDING 1) + endif() + + # If using VS, verify toolset + if (CONAN_COMPILER STREQUAL "Visual Studio") + if (CONAN_SETTINGS_COMPILER_TOOLSET MATCHES "LLVM" OR + CONAN_SETTINGS_COMPILER_TOOLSET MATCHES "clang") + set(EXPECTED_CMAKE_CXX_COMPILER_ID "Clang") + elseif (CONAN_SETTINGS_COMPILER_TOOLSET MATCHES "Intel") + set(EXPECTED_CMAKE_CXX_COMPILER_ID "Intel") + else() + set(EXPECTED_CMAKE_CXX_COMPILER_ID "MSVC") + endif() + + if (NOT CMAKE_CXX_COMPILER_ID MATCHES ${EXPECTED_CMAKE_CXX_COMPILER_ID}) + message(FATAL_ERROR "Incorrect '${CONAN_COMPILER}'. Toolset specifies compiler as '${EXPECTED_CMAKE_CXX_COMPILER_ID}' " + "but CMake detected '${CMAKE_CXX_COMPILER_ID}'") + endif() + + # Avoid checks when cross compiling, apple-clang crashes because its APPLE but not apple-clang + # Actually CMake is detecting "clang" when you are using apple-clang, only if CMP0025 is set to NEW will detect apple-clang + elseif((CONAN_COMPILER STREQUAL "gcc" AND NOT CMAKE_CXX_COMPILER_ID MATCHES "GNU") OR + (CONAN_COMPILER STREQUAL "apple-clang" AND NOT CROSS_BUILDING AND (NOT APPLE OR NOT CMAKE_CXX_COMPILER_ID MATCHES "Clang")) OR + (CONAN_COMPILER STREQUAL "clang" AND NOT CMAKE_CXX_COMPILER_ID MATCHES "Clang") OR + (CONAN_COMPILER STREQUAL "sun-cc" AND NOT CMAKE_CXX_COMPILER_ID MATCHES "SunPro") ) + message(FATAL_ERROR "Incorrect '${CONAN_COMPILER}', is not the one detected by CMake: '${CMAKE_CXX_COMPILER_ID}'") + endif() + + + if(NOT DEFINED CONAN_COMPILER_VERSION) + message(STATUS "WARN: CONAN_COMPILER_VERSION variable not set, please make sure yourself " + "that your compiler version matches your declared settings") + return() + endif() + check_compiler_version() +endfunction() + +macro(conan_set_flags build_type) + set(CMAKE_CXX_FLAGS${build_type} "${CMAKE_CXX_FLAGS${build_type}} ${CONAN_CXX_FLAGS${build_type}}") + set(CMAKE_C_FLAGS${build_type} "${CMAKE_C_FLAGS${build_type}} ${CONAN_C_FLAGS${build_type}}") + set(CMAKE_SHARED_LINKER_FLAGS${build_type} "${CMAKE_SHARED_LINKER_FLAGS${build_type}} ${CONAN_SHARED_LINKER_FLAGS${build_type}}") + set(CMAKE_EXE_LINKER_FLAGS${build_type} "${CMAKE_EXE_LINKER_FLAGS${build_type}} ${CONAN_EXE_LINKER_FLAGS${build_type}}") +endmacro() + +macro(conan_global_flags) + if(CONAN_SYSTEM_INCLUDES) + include_directories(SYSTEM ${CONAN_INCLUDE_DIRS} + "$<$:${CONAN_INCLUDE_DIRS_RELEASE}>" + "$<$:${CONAN_INCLUDE_DIRS_RELEASE}>" + "$<$:${CONAN_INCLUDE_DIRS_RELEASE}>" + "$<$:${CONAN_INCLUDE_DIRS_DEBUG}>") + else() + include_directories(${CONAN_INCLUDE_DIRS} + "$<$:${CONAN_INCLUDE_DIRS_RELEASE}>" + "$<$:${CONAN_INCLUDE_DIRS_RELEASE}>" + "$<$:${CONAN_INCLUDE_DIRS_RELEASE}>" + "$<$:${CONAN_INCLUDE_DIRS_DEBUG}>") + endif() + + link_directories(${CONAN_LIB_DIRS}) + + conan_find_libraries_abs_path("${CONAN_LIBS_DEBUG}" "${CONAN_LIB_DIRS_DEBUG}" + CONAN_LIBS_DEBUG) + conan_find_libraries_abs_path("${CONAN_LIBS_RELEASE}" "${CONAN_LIB_DIRS_RELEASE}" + CONAN_LIBS_RELEASE) + + add_compile_options(${CONAN_DEFINES} + "$<$:${CONAN_DEFINES_DEBUG}>" + "$<$:${CONAN_DEFINES_RELEASE}>" + "$<$:${CONAN_DEFINES_RELEASE}>" + "$<$:${CONAN_DEFINES_RELEASE}>") + + conan_set_flags("") + conan_set_flags("_RELEASE") + conan_set_flags("_DEBUG") + +endmacro() + +macro(conan_target_link_libraries target) + if(CONAN_TARGETS) + target_link_libraries(${target} ${CONAN_TARGETS}) + else() + target_link_libraries(${target} ${CONAN_LIBS}) + foreach(_LIB ${CONAN_LIBS_RELEASE}) + target_link_libraries(${target} optimized ${_LIB}) + endforeach() + foreach(_LIB ${CONAN_LIBS_DEBUG}) + target_link_libraries(${target} debug ${_LIB}) + endforeach() + endif() +endmacro() + + +### Definition of user declared vars (user_info) ### + diff --git a/qhull/test_package/build/2419fc4ca82fd76a6c5d823d86b2c25bfc03afec/conanbuildinfo.txt b/qhull/test_package/build/2419fc4ca82fd76a6c5d823d86b2c25bfc03afec/conanbuildinfo.txt new file mode 100644 index 0000000..1ad3e62 --- /dev/null +++ b/qhull/test_package/build/2419fc4ca82fd76a6c5d823d86b2c25bfc03afec/conanbuildinfo.txt @@ -0,0 +1,73 @@ +[includedirs] +/home/tom/.conan/data/QHull/f0bd8ce/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/include + +[libdirs] +/home/tom/.conan/data/QHull/f0bd8ce/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/lib + +[bindirs] + + +[resdirs] + + +[builddirs] +/home/tom/.conan/data/QHull/f0bd8ce/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/ + +[libs] +libqhullstatic + +[defines] + + +[cppflags] + + +[cflags] + + +[sharedlinkflags] + + +[exelinkflags] + + + +[includedirs_QHull] +/home/tom/.conan/data/QHull/f0bd8ce/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/include + +[libdirs_QHull] +/home/tom/.conan/data/QHull/f0bd8ce/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/lib + +[bindirs_QHull] + + +[resdirs_QHull] + + +[builddirs_QHull] +/home/tom/.conan/data/QHull/f0bd8ce/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/ + +[libs_QHull] +libqhullstatic + +[defines_QHull] + + +[cppflags_QHull] + + +[cflags_QHull] + + +[sharedlinkflags_QHull] + + +[exelinkflags_QHull] + + +[rootpath_QHull] +/home/tom/.conan/data/QHull/f0bd8ce/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9 + + +[USER_QHull] +[ENV_QHull] \ No newline at end of file diff --git a/qhull/test_package/build/2419fc4ca82fd76a6c5d823d86b2c25bfc03afec/conaninfo.txt b/qhull/test_package/build/2419fc4ca82fd76a6c5d823d86b2c25bfc03afec/conaninfo.txt new file mode 100644 index 0000000..d7ee188 --- /dev/null +++ b/qhull/test_package/build/2419fc4ca82fd76a6c5d823d86b2c25bfc03afec/conaninfo.txt @@ -0,0 +1,33 @@ +[settings] + arch=x86_64 + build_type=Release + compiler=gcc + compiler.libcxx=libstdc++ + compiler.version=5.4 + os=Linux + +[requires] + QHull/f0bd8ce + +[options] + + +[full_settings] + arch=x86_64 + build_type=Release + compiler=gcc + compiler.libcxx=libstdc++ + compiler.version=5.4 + os=Linux + +[full_requires] + QHull/f0bd8ce@intence/testing:81607951755e61cf17149d40bed6aba5b3a079a9 + +[full_options] + + +[recipe_hash] + + +[env] + diff --git a/qhull/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeCache.txt b/qhull/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeCache.txt new file mode 100644 index 0000000..d855480 --- /dev/null +++ b/qhull/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeCache.txt @@ -0,0 +1,317 @@ +# This is the CMakeCache file. +# For build in directory: /mnt/c/Users/t.vogl/Documents/repos/conan-qhull/test_package/build/aadcc2c40dab68a95374017995be48233063b305 +# It was generated by CMake: /usr/bin/cmake +# You can edit this file to change values found and used by cmake. +# If you do not want to change any of the values, simply exit the editor. +# If you do want to change a value, simply edit, save, and exit the editor. +# The syntax for the file is as follows: +# KEY:TYPE=VALUE +# KEY is the name of a variable in the cache. +# TYPE is a hint to GUIs for the type of VALUE, DO NOT EDIT TYPE!. +# VALUE is the current value for the KEY. + +######################## +# EXTERNAL cache entries +######################## + +//Path to a program. +CMAKE_AR:FILEPATH=/usr/bin/ar + +//Choose the type of build, options are: None(CMAKE_CXX_FLAGS or +// CMAKE_C_FLAGS used) 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++ + +//Flags used by the compiler during all build types. +CMAKE_CXX_FLAGS:STRING= + +//Flags used by the compiler during debug builds. +CMAKE_CXX_FLAGS_DEBUG:STRING=-g + +//Flags used by the compiler during release builds for minimum +// size. +CMAKE_CXX_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG + +//Flags used by the compiler during release builds. +CMAKE_CXX_FLAGS_RELEASE:STRING=-O3 -DNDEBUG + +//Flags used by the compiler during release builds with debug info. +CMAKE_CXX_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG + +//Flags used by the linker. +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 release minsize 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 Release with Debug Info builds. +CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//Enable/Disable output of compile commands during generation. +CMAKE_EXPORT_COMPILE_COMMANDS:BOOL=OFF + +//Install path prefix, prepended onto install directories. +CMAKE_INSTALL_PREFIX:PATH=/usr/local + +//Path to a program. +CMAKE_LINKER:FILEPATH=/usr/bin/ld + +//Path to a program. +CMAKE_MAKE_PROGRAM:FILEPATH=/usr/bin/make + +//Flags used by the linker during the creation of modules. +CMAKE_MODULE_LINKER_FLAGS:STRING= + +//Flags used by the linker during debug builds. +CMAKE_MODULE_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during release minsize builds. +CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during release builds. +CMAKE_MODULE_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during Release with Debug Info 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_NAME:STATIC=PackageTest + +//Path to a program. +CMAKE_RANLIB:FILEPATH=/usr/bin/ranlib + +//Flags used by the linker during the creation of dll's. +CMAKE_SHARED_LINKER_FLAGS:STRING= + +//Flags used by the linker during debug builds. +CMAKE_SHARED_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during release minsize builds. +CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during release builds. +CMAKE_SHARED_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during Release with Debug Info 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. +CMAKE_STATIC_LINKER_FLAGS:STRING= + +//Flags used by the linker during debug builds. +CMAKE_STATIC_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during release minsize builds. +CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during release builds. +CMAKE_STATIC_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during Release with Debug Info 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 + +//No help, variable specified on the command line. +CONAN_COMPILER:UNINITIALIZED=gcc + +//No help, variable specified on the command line. +CONAN_COMPILER_VERSION:UNINITIALIZED=5.4 + +//No help, variable specified on the command line. +CONAN_CXX_FLAGS:UNINITIALIZED=-m64 + +//No help, variable specified on the command line. +CONAN_C_FLAGS:UNINITIALIZED=-m64 + +//No help, variable specified on the command line. +CONAN_EXPORTED:UNINITIALIZED=1 + +//No help, variable specified on the command line. +CONAN_LIBCXX:UNINITIALIZED=libstdc++ + +//No help, variable specified on the command line. +CONAN_SHARED_LINKER_FLAGS:UNINITIALIZED=-m64 + +//Value Computed by CMake +PackageTest_BINARY_DIR:STATIC=/mnt/c/Users/t.vogl/Documents/repos/conan-qhull/test_package/build/aadcc2c40dab68a95374017995be48233063b305 + +//Value Computed by CMake +PackageTest_SOURCE_DIR:STATIC=/mnt/c/Users/t.vogl/Documents/repos/conan-qhull/test_package + +//The directory containing a CMake configuration file for QHull. +QHull_DIR:PATH=/home/tom/.conan/data/QHull/f0bd8ce/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9 + +//Path to a file. +QHull_INCLUDE_DIR:PATH=/home/tom/.conan/data/QHull/f0bd8ce/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/include/libqhull + +//Path to a library. +QHull_LIBRARY:FILEPATH=/home/tom/.conan/data/QHull/f0bd8ce/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/lib/libqhullstatic.a + + +######################## +# INTERNAL cache entries +######################## + +//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=/mnt/c/Users/t.vogl/Documents/repos/conan-qhull/test_package/build/aadcc2c40dab68a95374017995be48233063b305 +//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=5 +//Patch version of cmake used to create the current loaded cache +CMAKE_CACHE_PATCH_VERSION:INTERNAL=1 +//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_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 +//Whether to issue deprecation errors for macros and functions. +CMAKE_ERROR_DEPRECATED:INTERNAL=FALSE +//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 +//Name of generator platform. +CMAKE_GENERATOR_PLATFORM:INTERNAL= +//Name of generator toolset. +CMAKE_GENERATOR_TOOLSET:INTERNAL= +//Source directory with the top level CMakeLists.txt file for this +// project +CMAKE_HOME_DIRECTORY:INTERNAL=/mnt/c/Users/t.vogl/Documents/repos/conan-qhull/test_package +//Install .so files without execute permission. +CMAKE_INSTALL_SO_NO_EXE: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=1 +//ADVANCED property for variable: CMAKE_OBJCOPY +CMAKE_OBJCOPY-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_OBJDUMP +CMAKE_OBJDUMP-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_RANLIB +CMAKE_RANLIB-ADVANCED:INTERNAL=1 +//Path to CMake installation. +CMAKE_ROOT:INTERNAL=/usr/share/cmake-3.5 +//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 +//Suppress errors that are meant for the author of the CMakeLists.txt +// files. +CMAKE_SUPPRESS_DEVELOPER_ERRORS:INTERNAL=TRUE +//Suppress Warnings that are meant for the author of the CMakeLists.txt +// files. +CMAKE_SUPPRESS_DEVELOPER_WARNINGS:INTERNAL=TRUE +//uname command +CMAKE_UNAME:INTERNAL=/bin/uname +//ADVANCED property for variable: CMAKE_VERBOSE_MAKEFILE +CMAKE_VERBOSE_MAKEFILE-ADVANCED:INTERNAL=1 +//Whether to issue warnings for deprecated functionality. +CMAKE_WARN_DEPRECATED:INTERNAL=FALSE +//ADVANCED property for variable: QHull_INCLUDE_DIR +QHull_INCLUDE_DIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: QHull_LIBRARY +QHull_LIBRARY-ADVANCED:INTERNAL=1 + diff --git a/qhull/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/3.5.1/CMakeCXXCompiler.cmake b/qhull/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/3.5.1/CMakeCXXCompiler.cmake new file mode 100644 index 0000000..013ee92 --- /dev/null +++ b/qhull/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/3.5.1/CMakeCXXCompiler.cmake @@ -0,0 +1,68 @@ +set(CMAKE_CXX_COMPILER "/usr/bin/c++") +set(CMAKE_CXX_COMPILER_ARG1 "") +set(CMAKE_CXX_COMPILER_ID "GNU") +set(CMAKE_CXX_COMPILER_VERSION "5.4.0") +set(CMAKE_CXX_COMPILER_WRAPPER "") +set(CMAKE_CXX_STANDARD_COMPUTED_DEFAULT "98") +set(CMAKE_CXX_COMPILE_FEATURES "cxx_template_template_parameters;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_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_CXX98_COMPILE_FEATURES "cxx_template_template_parameters") +set(CMAKE_CXX11_COMPILE_FEATURES "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_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_CXX_PLATFORM_ID "Linux") +set(CMAKE_CXX_SIMULATE_ID "") +set(CMAKE_CXX_SIMULATE_VERSION "") + +set(CMAKE_AR "/usr/bin/ar") +set(CMAKE_RANLIB "/usr/bin/ranlib") +set(CMAKE_LINKER "/usr/bin/ld") +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_IGNORE_EXTENSIONS inl;h;hpp;HPP;H;o;O;obj;OBJ;def;DEF;rc;RC) +set(CMAKE_CXX_SOURCE_FILE_EXTENSIONS C;M;c++;cc;cpp;cxx;mm;CPP) +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 "x86_64-linux-gnu") + +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 "x86_64-linux-gnu") +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_LINK_LIBRARIES "stdc++;m;c") +set(CMAKE_CXX_IMPLICIT_LINK_DIRECTORIES "/usr/lib/gcc/x86_64-linux-gnu/5;/usr/lib/x86_64-linux-gnu;/usr/lib;/lib/x86_64-linux-gnu;/lib") +set(CMAKE_CXX_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "") diff --git a/qhull/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/3.5.1/CMakeDetermineCompilerABI_CXX.bin b/qhull/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/3.5.1/CMakeDetermineCompilerABI_CXX.bin new file mode 100644 index 0000000..871d1fb Binary files /dev/null and b/qhull/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/3.5.1/CMakeDetermineCompilerABI_CXX.bin differ diff --git a/qhull/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/3.5.1/CMakeSystem.cmake b/qhull/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/3.5.1/CMakeSystem.cmake new file mode 100644 index 0000000..8476695 --- /dev/null +++ b/qhull/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/3.5.1/CMakeSystem.cmake @@ -0,0 +1,15 @@ +set(CMAKE_HOST_SYSTEM "Linux-4.4.0-43-Microsoft") +set(CMAKE_HOST_SYSTEM_NAME "Linux") +set(CMAKE_HOST_SYSTEM_VERSION "4.4.0-43-Microsoft") +set(CMAKE_HOST_SYSTEM_PROCESSOR "x86_64") + + + +set(CMAKE_SYSTEM "Linux-4.4.0-43-Microsoft") +set(CMAKE_SYSTEM_NAME "Linux") +set(CMAKE_SYSTEM_VERSION "4.4.0-43-Microsoft") +set(CMAKE_SYSTEM_PROCESSOR "x86_64") + +set(CMAKE_CROSSCOMPILING "FALSE") + +set(CMAKE_SYSTEM_LOADED 1) diff --git a/qhull/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/3.5.1/CompilerIdCXX/CMakeCXXCompilerId.cpp b/qhull/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/3.5.1/CompilerIdCXX/CMakeCXXCompilerId.cpp new file mode 100644 index 0000000..e6d8536 --- /dev/null +++ b/qhull/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/3.5.1/CompilerIdCXX/CMakeCXXCompilerId.cpp @@ -0,0 +1,533 @@ +/* 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 + /* __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 + +#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(__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(__SCO_VERSION__) +# define COMPILER_ID "SCO" + +#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__) +# 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" + +#elif defined(__ARMCC_VERSION) +# 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(_SGI_COMPILER_VERSION) || defined(_COMPILER_VERSION) +# define COMPILER_ID "MIPSpro" +# if defined(_SGI_COMPILER_VERSION) + /* _SGI_COMPILER_VERSION = VRP */ +# define COMPILER_VERSION_MAJOR DEC(_SGI_COMPILER_VERSION/100) +# define COMPILER_VERSION_MINOR DEC(_SGI_COMPILER_VERSION/10 % 10) +# define COMPILER_VERSION_PATCH DEC(_SGI_COMPILER_VERSION % 10) +# else + /* _COMPILER_VERSION = VRP */ +# define COMPILER_VERSION_MAJOR DEC(_COMPILER_VERSION/100) +# define COMPILER_VERSION_MINOR DEC(_COMPILER_VERSION/10 % 10) +# define COMPILER_VERSION_PATCH DEC(_COMPILER_VERSION % 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(__sgi) +# define COMPILER_ID "MIPSpro" + +#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(__sgi) || defined(__sgi__) || defined(_SGI) +# define PLATFORM_ID "IRIX" + +#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 + +#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_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 + +#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 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 "]"; + + + + +const char* info_language_dialect_default = "INFO" ":" "dialect_default[" +#if __cplusplus >= 201402L + "14" +#elif __cplusplus >= 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 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; +} diff --git a/qhull/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/3.5.1/CompilerIdCXX/a.out b/qhull/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/3.5.1/CompilerIdCXX/a.out new file mode 100644 index 0000000..f493287 Binary files /dev/null and b/qhull/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/3.5.1/CompilerIdCXX/a.out differ diff --git a/qhull/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/CMakeDirectoryInformation.cmake b/qhull/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/CMakeDirectoryInformation.cmake new file mode 100644 index 0000000..f5bdd58 --- /dev/null +++ b/qhull/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/CMakeDirectoryInformation.cmake @@ -0,0 +1,16 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.5 + +# Relative path conversion top directories. +set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/mnt/c/Users/t.vogl/Documents/repos/conan-qhull/test_package") +set(CMAKE_RELATIVE_PATH_TOP_BINARY "/mnt/c/Users/t.vogl/Documents/repos/conan-qhull/test_package/build/aadcc2c40dab68a95374017995be48233063b305") + +# 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}) diff --git a/qhull/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/CMakeOutput.log b/qhull/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/CMakeOutput.log new file mode 100644 index 0000000..11c2ae5 --- /dev/null +++ b/qhull/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/CMakeOutput.log @@ -0,0 +1,356 @@ +The system is: Linux - 4.4.0-43-Microsoft - x86_64 +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 "/mnt/c/Users/t.vogl/Documents/repos/conan-qhull/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/3.5.1/CompilerIdCXX/a.out" + +Determining if the CXX compiler works passed with the following output: +Change Dir: /mnt/c/Users/t.vogl/Documents/repos/conan-qhull/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/CMakeTmp + +Run Build Command:"/usr/bin/make" "cmTC_faaca/fast" +/usr/bin/make -f CMakeFiles/cmTC_faaca.dir/build.make CMakeFiles/cmTC_faaca.dir/build +make[1]: Verzeichnis „/mnt/c/Users/t.vogl/Documents/repos/conan-qhull/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/CMakeTmp“ wird betreten +Building CXX object CMakeFiles/cmTC_faaca.dir/testCXXCompiler.cxx.o +/usr/bin/c++ -o CMakeFiles/cmTC_faaca.dir/testCXXCompiler.cxx.o -c /mnt/c/Users/t.vogl/Documents/repos/conan-qhull/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/CMakeTmp/testCXXCompiler.cxx +Linking CXX executable cmTC_faaca +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_faaca.dir/link.txt --verbose=1 +/usr/bin/c++ CMakeFiles/cmTC_faaca.dir/testCXXCompiler.cxx.o -o cmTC_faaca -rdynamic +make[1]: Verzeichnis „/mnt/c/Users/t.vogl/Documents/repos/conan-qhull/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/CMakeTmp“ wird verlassen + + +Detecting CXX compiler ABI info compiled with the following output: +Change Dir: /mnt/c/Users/t.vogl/Documents/repos/conan-qhull/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/CMakeTmp + +Run Build Command:"/usr/bin/make" "cmTC_513af/fast" +/usr/bin/make -f CMakeFiles/cmTC_513af.dir/build.make CMakeFiles/cmTC_513af.dir/build +make[1]: Verzeichnis „/mnt/c/Users/t.vogl/Documents/repos/conan-qhull/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/CMakeTmp“ wird betreten +Building CXX object CMakeFiles/cmTC_513af.dir/CMakeCXXCompilerABI.cpp.o +/usr/bin/c++ -o CMakeFiles/cmTC_513af.dir/CMakeCXXCompilerABI.cpp.o -c /usr/share/cmake-3.5/Modules/CMakeCXXCompilerABI.cpp +Linking CXX executable cmTC_513af +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_513af.dir/link.txt --verbose=1 +/usr/bin/c++ -v CMakeFiles/cmTC_513af.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_513af -rdynamic +Using built-in specs. +COLLECT_GCC=/usr/bin/c++ +COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/5/lto-wrapper +Target: x86_64-linux-gnu +Configured with: ../src/configure -v --with-pkgversion='Ubuntu 5.4.0-6ubuntu1~16.04.5' --with-bugurl=file:///usr/share/doc/gcc-5/README.Bugs --enable-languages=c,ada,c++,java,go,d,fortran,objc,obj-c++ --prefix=/usr --program-suffix=-5 --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --with-sysroot=/ --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-libmpx --enable-plugin --with-system-zlib --disable-browser-plugin --enable-java-awt=gtk --enable-gtk-cairo --with-java-home=/usr/lib/jvm/java-1.5.0-gcj-5-amd64/jre --enable-java-home --with-jvm-root-dir=/usr/lib/jvm/java-1.5.0-gcj-5-amd64 --with-jvm-jar-dir=/usr/lib/jvm-exports/java-1.5.0-gcj-5-amd64 --with-arch-directory=amd64 --with-ecj-jar=/usr/share/java/eclipse-ecj.jar --enable-objc-gc --enable-multiarch --disable-werror --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu +Thread model: posix +gcc version 5.4.0 20160609 (Ubuntu 5.4.0-6ubuntu1~16.04.5) +COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/5/:/usr/lib/gcc/x86_64-linux-gnu/5/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/5/:/usr/lib/gcc/x86_64-linux-gnu/ +LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/5/:/usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/5/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/5/../../../:/lib/:/usr/lib/ +COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_513af' '-rdynamic' '-shared-libgcc' '-mtune=generic' '-march=x86-64' + /usr/lib/gcc/x86_64-linux-gnu/5/collect2 -plugin /usr/lib/gcc/x86_64-linux-gnu/5/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/5/lto-wrapper -plugin-opt=-fresolution=/tmp/cc3jCAOY.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 --sysroot=/ --build-id --eh-frame-hdr -m elf_x86_64 --hash-style=gnu --as-needed -export-dynamic -dynamic-linker /lib64/ld-linux-x86-64.so.2 -z relro -o cmTC_513af /usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/crt1.o /usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/5/crtbegin.o -L/usr/lib/gcc/x86_64-linux-gnu/5 -L/usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/5/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/5/../../.. CMakeFiles/cmTC_513af.dir/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm -lgcc_s -lgcc -lc -lgcc_s -lgcc /usr/lib/gcc/x86_64-linux-gnu/5/crtend.o /usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/crtn.o +make[1]: Verzeichnis „/mnt/c/Users/t.vogl/Documents/repos/conan-qhull/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/CMakeTmp“ wird verlassen + + +Parsed CXX implicit link information from above output: + link line regex: [^( *|.*[/\])(ld|([^/\]+-)?ld|collect2)[^/\]*( |$)] + ignore line: [Change Dir: /mnt/c/Users/t.vogl/Documents/repos/conan-qhull/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/CMakeTmp] + ignore line: [] + ignore line: [Run Build Command:"/usr/bin/make" "cmTC_513af/fast"] + ignore line: [/usr/bin/make -f CMakeFiles/cmTC_513af.dir/build.make CMakeFiles/cmTC_513af.dir/build] + ignore line: [make[1]: Verzeichnis „/mnt/c/Users/t.vogl/Documents/repos/conan-qhull/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/CMakeTmp“ wird betreten] + ignore line: [Building CXX object CMakeFiles/cmTC_513af.dir/CMakeCXXCompilerABI.cpp.o] + ignore line: [/usr/bin/c++ -o CMakeFiles/cmTC_513af.dir/CMakeCXXCompilerABI.cpp.o -c /usr/share/cmake-3.5/Modules/CMakeCXXCompilerABI.cpp] + ignore line: [Linking CXX executable cmTC_513af] + ignore line: [/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_513af.dir/link.txt --verbose=1] + ignore line: [/usr/bin/c++ -v CMakeFiles/cmTC_513af.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_513af -rdynamic ] + ignore line: [Using built-in specs.] + ignore line: [COLLECT_GCC=/usr/bin/c++] + ignore line: [COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/5/lto-wrapper] + ignore line: [Target: x86_64-linux-gnu] + ignore line: [Configured with: ../src/configure -v --with-pkgversion='Ubuntu 5.4.0-6ubuntu1~16.04.5' --with-bugurl=file:///usr/share/doc/gcc-5/README.Bugs --enable-languages=c,ada,c++,java,go,d,fortran,objc,obj-c++ --prefix=/usr --program-suffix=-5 --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --with-sysroot=/ --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-libmpx --enable-plugin --with-system-zlib --disable-browser-plugin --enable-java-awt=gtk --enable-gtk-cairo --with-java-home=/usr/lib/jvm/java-1.5.0-gcj-5-amd64/jre --enable-java-home --with-jvm-root-dir=/usr/lib/jvm/java-1.5.0-gcj-5-amd64 --with-jvm-jar-dir=/usr/lib/jvm-exports/java-1.5.0-gcj-5-amd64 --with-arch-directory=amd64 --with-ecj-jar=/usr/share/java/eclipse-ecj.jar --enable-objc-gc --enable-multiarch --disable-werror --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu] + ignore line: [Thread model: posix] + ignore line: [gcc version 5.4.0 20160609 (Ubuntu 5.4.0-6ubuntu1~16.04.5) ] + ignore line: [COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/5/:/usr/lib/gcc/x86_64-linux-gnu/5/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/5/:/usr/lib/gcc/x86_64-linux-gnu/] + ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/5/:/usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/5/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/5/../../../:/lib/:/usr/lib/] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_513af' '-rdynamic' '-shared-libgcc' '-mtune=generic' '-march=x86-64'] + link line: [ /usr/lib/gcc/x86_64-linux-gnu/5/collect2 -plugin /usr/lib/gcc/x86_64-linux-gnu/5/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/5/lto-wrapper -plugin-opt=-fresolution=/tmp/cc3jCAOY.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 --sysroot=/ --build-id --eh-frame-hdr -m elf_x86_64 --hash-style=gnu --as-needed -export-dynamic -dynamic-linker /lib64/ld-linux-x86-64.so.2 -z relro -o cmTC_513af /usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/crt1.o /usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/5/crtbegin.o -L/usr/lib/gcc/x86_64-linux-gnu/5 -L/usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/5/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/5/../../.. CMakeFiles/cmTC_513af.dir/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm -lgcc_s -lgcc -lc -lgcc_s -lgcc /usr/lib/gcc/x86_64-linux-gnu/5/crtend.o /usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/crtn.o] + arg [/usr/lib/gcc/x86_64-linux-gnu/5/collect2] ==> ignore + arg [-plugin] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/5/liblto_plugin.so] ==> ignore + arg [-plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/5/lto-wrapper] ==> ignore + arg [-plugin-opt=-fresolution=/tmp/cc3jCAOY.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 [--sysroot=/] ==> ignore + arg [--build-id] ==> ignore + arg [--eh-frame-hdr] ==> ignore + arg [-m] ==> ignore + arg [elf_x86_64] ==> ignore + arg [--hash-style=gnu] ==> ignore + arg [--as-needed] ==> ignore + arg [-export-dynamic] ==> ignore + arg [-dynamic-linker] ==> ignore + arg [/lib64/ld-linux-x86-64.so.2] ==> ignore + arg [-zrelro] ==> ignore + arg [-o] ==> ignore + arg [cmTC_513af] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/crt1.o] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/crti.o] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/5/crtbegin.o] ==> ignore + arg [-L/usr/lib/gcc/x86_64-linux-gnu/5] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/5] + arg [-L/usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu] + arg [-L/usr/lib/gcc/x86_64-linux-gnu/5/../../../../lib] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/5/../../../../lib] + arg [-L/lib/x86_64-linux-gnu] ==> dir [/lib/x86_64-linux-gnu] + arg [-L/lib/../lib] ==> dir [/lib/../lib] + arg [-L/usr/lib/x86_64-linux-gnu] ==> dir [/usr/lib/x86_64-linux-gnu] + arg [-L/usr/lib/../lib] ==> dir [/usr/lib/../lib] + arg [-L/usr/lib/gcc/x86_64-linux-gnu/5/../../..] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/5/../../..] + arg [CMakeFiles/cmTC_513af.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-linux-gnu/5/crtend.o] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/crtn.o] ==> ignore + remove lib [gcc_s] + remove lib [gcc] + remove lib [gcc_s] + remove lib [gcc] + collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/5] ==> [/usr/lib/gcc/x86_64-linux-gnu/5] + collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu] ==> [/usr/lib/x86_64-linux-gnu] + collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/5/../../../../lib] ==> [/usr/lib] + collapse library dir [/lib/x86_64-linux-gnu] ==> [/lib/x86_64-linux-gnu] + collapse library dir [/lib/../lib] ==> [/lib] + collapse library dir [/usr/lib/x86_64-linux-gnu] ==> [/usr/lib/x86_64-linux-gnu] + collapse library dir [/usr/lib/../lib] ==> [/usr/lib] + collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/5/../../..] ==> [/usr/lib] + implicit libs: [stdc++;m;c] + implicit dirs: [/usr/lib/gcc/x86_64-linux-gnu/5;/usr/lib/x86_64-linux-gnu;/usr/lib;/lib/x86_64-linux-gnu;/lib] + implicit fwks: [] + + + + +Detecting CXX [-std=c++14] compiler features compiled with the following output: +Change Dir: /mnt/c/Users/t.vogl/Documents/repos/conan-qhull/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/CMakeTmp + +Run Build Command:"/usr/bin/make" "cmTC_6e62c/fast" +/usr/bin/make -f CMakeFiles/cmTC_6e62c.dir/build.make CMakeFiles/cmTC_6e62c.dir/build +make[1]: Verzeichnis „/mnt/c/Users/t.vogl/Documents/repos/conan-qhull/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/CMakeTmp“ wird betreten +Building CXX object CMakeFiles/cmTC_6e62c.dir/feature_tests.cxx.o +/usr/bin/c++ -std=c++14 -o CMakeFiles/cmTC_6e62c.dir/feature_tests.cxx.o -c /mnt/c/Users/t.vogl/Documents/repos/conan-qhull/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/feature_tests.cxx +Linking CXX executable cmTC_6e62c +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_6e62c.dir/link.txt --verbose=1 +/usr/bin/c++ CMakeFiles/cmTC_6e62c.dir/feature_tests.cxx.o -o cmTC_6e62c -rdynamic +make[1]: Verzeichnis „/mnt/c/Users/t.vogl/Documents/repos/conan-qhull/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/CMakeTmp“ wird verlassen + + + Feature record: CXX_FEATURE:1cxx_aggregate_default_initializers + Feature record: CXX_FEATURE:1cxx_alias_templates + Feature record: CXX_FEATURE:1cxx_alignas + Feature record: CXX_FEATURE:1cxx_alignof + Feature record: CXX_FEATURE:1cxx_attributes + Feature record: CXX_FEATURE:1cxx_attribute_deprecated + Feature record: CXX_FEATURE:1cxx_auto_type + Feature record: CXX_FEATURE:1cxx_binary_literals + Feature record: CXX_FEATURE:1cxx_constexpr + Feature record: CXX_FEATURE:1cxx_contextual_conversions + Feature record: CXX_FEATURE:1cxx_decltype + Feature record: CXX_FEATURE:1cxx_decltype_auto + Feature record: CXX_FEATURE:1cxx_decltype_incomplete_return_types + Feature record: CXX_FEATURE:1cxx_default_function_template_args + Feature record: CXX_FEATURE:1cxx_defaulted_functions + Feature record: CXX_FEATURE:1cxx_defaulted_move_initializers + Feature record: CXX_FEATURE:1cxx_delegating_constructors + Feature record: CXX_FEATURE:1cxx_deleted_functions + Feature record: CXX_FEATURE:1cxx_digit_separators + Feature record: CXX_FEATURE:1cxx_enum_forward_declarations + Feature record: CXX_FEATURE:1cxx_explicit_conversions + Feature record: CXX_FEATURE:1cxx_extended_friend_declarations + Feature record: CXX_FEATURE:1cxx_extern_templates + Feature record: CXX_FEATURE:1cxx_final + Feature record: CXX_FEATURE:1cxx_func_identifier + Feature record: CXX_FEATURE:1cxx_generalized_initializers + Feature record: CXX_FEATURE:1cxx_generic_lambdas + Feature record: CXX_FEATURE:1cxx_inheriting_constructors + Feature record: CXX_FEATURE:1cxx_inline_namespaces + Feature record: CXX_FEATURE:1cxx_lambdas + Feature record: CXX_FEATURE:1cxx_lambda_init_captures + Feature record: CXX_FEATURE:1cxx_local_type_template_args + Feature record: CXX_FEATURE:1cxx_long_long_type + Feature record: CXX_FEATURE:1cxx_noexcept + Feature record: CXX_FEATURE:1cxx_nonstatic_member_init + Feature record: CXX_FEATURE:1cxx_nullptr + Feature record: CXX_FEATURE:1cxx_override + Feature record: CXX_FEATURE:1cxx_range_for + Feature record: CXX_FEATURE:1cxx_raw_string_literals + Feature record: CXX_FEATURE:1cxx_reference_qualified_functions + Feature record: CXX_FEATURE:1cxx_relaxed_constexpr + Feature record: CXX_FEATURE:1cxx_return_type_deduction + Feature record: CXX_FEATURE:1cxx_right_angle_brackets + Feature record: CXX_FEATURE:1cxx_rvalue_references + Feature record: CXX_FEATURE:1cxx_sizeof_member + Feature record: CXX_FEATURE:1cxx_static_assert + Feature record: CXX_FEATURE:1cxx_strong_enums + Feature record: CXX_FEATURE:1cxx_template_template_parameters + Feature record: CXX_FEATURE:1cxx_thread_local + Feature record: CXX_FEATURE:1cxx_trailing_return_types + Feature record: CXX_FEATURE:1cxx_unicode_literals + Feature record: CXX_FEATURE:1cxx_uniform_initialization + Feature record: CXX_FEATURE:1cxx_unrestricted_unions + Feature record: CXX_FEATURE:1cxx_user_literals + Feature record: CXX_FEATURE:1cxx_variable_templates + Feature record: CXX_FEATURE:1cxx_variadic_macros + Feature record: CXX_FEATURE:1cxx_variadic_templates + + +Detecting CXX [-std=c++11] compiler features compiled with the following output: +Change Dir: /mnt/c/Users/t.vogl/Documents/repos/conan-qhull/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/CMakeTmp + +Run Build Command:"/usr/bin/make" "cmTC_cd1dc/fast" +/usr/bin/make -f CMakeFiles/cmTC_cd1dc.dir/build.make CMakeFiles/cmTC_cd1dc.dir/build +make[1]: Verzeichnis „/mnt/c/Users/t.vogl/Documents/repos/conan-qhull/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/CMakeTmp“ wird betreten +Building CXX object CMakeFiles/cmTC_cd1dc.dir/feature_tests.cxx.o +/usr/bin/c++ -std=c++11 -o CMakeFiles/cmTC_cd1dc.dir/feature_tests.cxx.o -c /mnt/c/Users/t.vogl/Documents/repos/conan-qhull/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/feature_tests.cxx +Linking CXX executable cmTC_cd1dc +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_cd1dc.dir/link.txt --verbose=1 +/usr/bin/c++ CMakeFiles/cmTC_cd1dc.dir/feature_tests.cxx.o -o cmTC_cd1dc -rdynamic +make[1]: Verzeichnis „/mnt/c/Users/t.vogl/Documents/repos/conan-qhull/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/CMakeTmp“ wird verlassen + + + Feature record: CXX_FEATURE:0cxx_aggregate_default_initializers + Feature record: CXX_FEATURE:1cxx_alias_templates + Feature record: CXX_FEATURE:1cxx_alignas + Feature record: CXX_FEATURE:1cxx_alignof + Feature record: CXX_FEATURE:1cxx_attributes + Feature record: CXX_FEATURE:0cxx_attribute_deprecated + Feature record: CXX_FEATURE:1cxx_auto_type + Feature record: CXX_FEATURE:0cxx_binary_literals + Feature record: CXX_FEATURE:1cxx_constexpr + Feature record: CXX_FEATURE:0cxx_contextual_conversions + Feature record: CXX_FEATURE:1cxx_decltype + Feature record: CXX_FEATURE:0cxx_decltype_auto + Feature record: CXX_FEATURE:1cxx_decltype_incomplete_return_types + Feature record: CXX_FEATURE:1cxx_default_function_template_args + Feature record: CXX_FEATURE:1cxx_defaulted_functions + Feature record: CXX_FEATURE:1cxx_defaulted_move_initializers + Feature record: CXX_FEATURE:1cxx_delegating_constructors + Feature record: CXX_FEATURE:1cxx_deleted_functions + Feature record: CXX_FEATURE:0cxx_digit_separators + Feature record: CXX_FEATURE:1cxx_enum_forward_declarations + Feature record: CXX_FEATURE:1cxx_explicit_conversions + Feature record: CXX_FEATURE:1cxx_extended_friend_declarations + Feature record: CXX_FEATURE:1cxx_extern_templates + Feature record: CXX_FEATURE:1cxx_final + Feature record: CXX_FEATURE:1cxx_func_identifier + Feature record: CXX_FEATURE:1cxx_generalized_initializers + Feature record: CXX_FEATURE:0cxx_generic_lambdas + Feature record: CXX_FEATURE:1cxx_inheriting_constructors + Feature record: CXX_FEATURE:1cxx_inline_namespaces + Feature record: CXX_FEATURE:1cxx_lambdas + Feature record: CXX_FEATURE:0cxx_lambda_init_captures + Feature record: CXX_FEATURE:1cxx_local_type_template_args + Feature record: CXX_FEATURE:1cxx_long_long_type + Feature record: CXX_FEATURE:1cxx_noexcept + Feature record: CXX_FEATURE:1cxx_nonstatic_member_init + Feature record: CXX_FEATURE:1cxx_nullptr + Feature record: CXX_FEATURE:1cxx_override + Feature record: CXX_FEATURE:1cxx_range_for + Feature record: CXX_FEATURE:1cxx_raw_string_literals + Feature record: CXX_FEATURE:1cxx_reference_qualified_functions + Feature record: CXX_FEATURE:0cxx_relaxed_constexpr + Feature record: CXX_FEATURE:0cxx_return_type_deduction + Feature record: CXX_FEATURE:1cxx_right_angle_brackets + Feature record: CXX_FEATURE:1cxx_rvalue_references + Feature record: CXX_FEATURE:1cxx_sizeof_member + Feature record: CXX_FEATURE:1cxx_static_assert + Feature record: CXX_FEATURE:1cxx_strong_enums + Feature record: CXX_FEATURE:1cxx_template_template_parameters + Feature record: CXX_FEATURE:1cxx_thread_local + Feature record: CXX_FEATURE:1cxx_trailing_return_types + Feature record: CXX_FEATURE:1cxx_unicode_literals + Feature record: CXX_FEATURE:1cxx_uniform_initialization + Feature record: CXX_FEATURE:1cxx_unrestricted_unions + Feature record: CXX_FEATURE:1cxx_user_literals + Feature record: CXX_FEATURE:0cxx_variable_templates + Feature record: CXX_FEATURE:1cxx_variadic_macros + Feature record: CXX_FEATURE:1cxx_variadic_templates + + +Detecting CXX [-std=c++98] compiler features compiled with the following output: +Change Dir: /mnt/c/Users/t.vogl/Documents/repos/conan-qhull/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/CMakeTmp + +Run Build Command:"/usr/bin/make" "cmTC_1e532/fast" +/usr/bin/make -f CMakeFiles/cmTC_1e532.dir/build.make CMakeFiles/cmTC_1e532.dir/build +make[1]: Verzeichnis „/mnt/c/Users/t.vogl/Documents/repos/conan-qhull/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/CMakeTmp“ wird betreten +Building CXX object CMakeFiles/cmTC_1e532.dir/feature_tests.cxx.o +/usr/bin/c++ -std=c++98 -o CMakeFiles/cmTC_1e532.dir/feature_tests.cxx.o -c /mnt/c/Users/t.vogl/Documents/repos/conan-qhull/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/feature_tests.cxx +Linking CXX executable cmTC_1e532 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_1e532.dir/link.txt --verbose=1 +/usr/bin/c++ CMakeFiles/cmTC_1e532.dir/feature_tests.cxx.o -o cmTC_1e532 -rdynamic +make[1]: Verzeichnis „/mnt/c/Users/t.vogl/Documents/repos/conan-qhull/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/CMakeTmp“ wird verlassen + + + Feature record: CXX_FEATURE:0cxx_aggregate_default_initializers + Feature record: CXX_FEATURE:0cxx_alias_templates + Feature record: CXX_FEATURE:0cxx_alignas + Feature record: CXX_FEATURE:0cxx_alignof + Feature record: CXX_FEATURE:0cxx_attributes + Feature record: CXX_FEATURE:0cxx_attribute_deprecated + Feature record: CXX_FEATURE:0cxx_auto_type + Feature record: CXX_FEATURE:0cxx_binary_literals + Feature record: CXX_FEATURE:0cxx_constexpr + Feature record: CXX_FEATURE:0cxx_contextual_conversions + Feature record: CXX_FEATURE:0cxx_decltype + Feature record: CXX_FEATURE:0cxx_decltype_auto + Feature record: CXX_FEATURE:0cxx_decltype_incomplete_return_types + Feature record: CXX_FEATURE:0cxx_default_function_template_args + Feature record: CXX_FEATURE:0cxx_defaulted_functions + Feature record: CXX_FEATURE:0cxx_defaulted_move_initializers + Feature record: CXX_FEATURE:0cxx_delegating_constructors + Feature record: CXX_FEATURE:0cxx_deleted_functions + Feature record: CXX_FEATURE:0cxx_digit_separators + Feature record: CXX_FEATURE:0cxx_enum_forward_declarations + Feature record: CXX_FEATURE:0cxx_explicit_conversions + Feature record: CXX_FEATURE:0cxx_extended_friend_declarations + Feature record: CXX_FEATURE:0cxx_extern_templates + Feature record: CXX_FEATURE:0cxx_final + Feature record: CXX_FEATURE:0cxx_func_identifier + Feature record: CXX_FEATURE:0cxx_generalized_initializers + Feature record: CXX_FEATURE:0cxx_generic_lambdas + Feature record: CXX_FEATURE:0cxx_inheriting_constructors + Feature record: CXX_FEATURE:0cxx_inline_namespaces + Feature record: CXX_FEATURE:0cxx_lambdas + Feature record: CXX_FEATURE:0cxx_lambda_init_captures + Feature record: CXX_FEATURE:0cxx_local_type_template_args + Feature record: CXX_FEATURE:0cxx_long_long_type + Feature record: CXX_FEATURE:0cxx_noexcept + Feature record: CXX_FEATURE:0cxx_nonstatic_member_init + Feature record: CXX_FEATURE:0cxx_nullptr + Feature record: CXX_FEATURE:0cxx_override + Feature record: CXX_FEATURE:0cxx_range_for + Feature record: CXX_FEATURE:0cxx_raw_string_literals + Feature record: CXX_FEATURE:0cxx_reference_qualified_functions + Feature record: CXX_FEATURE:0cxx_relaxed_constexpr + Feature record: CXX_FEATURE:0cxx_return_type_deduction + Feature record: CXX_FEATURE:0cxx_right_angle_brackets + Feature record: CXX_FEATURE:0cxx_rvalue_references + Feature record: CXX_FEATURE:0cxx_sizeof_member + Feature record: CXX_FEATURE:0cxx_static_assert + Feature record: CXX_FEATURE:0cxx_strong_enums + Feature record: CXX_FEATURE:1cxx_template_template_parameters + Feature record: CXX_FEATURE:0cxx_thread_local + Feature record: CXX_FEATURE:0cxx_trailing_return_types + Feature record: CXX_FEATURE:0cxx_unicode_literals + Feature record: CXX_FEATURE:0cxx_uniform_initialization + Feature record: CXX_FEATURE:0cxx_unrestricted_unions + Feature record: CXX_FEATURE:0cxx_user_literals + Feature record: CXX_FEATURE:0cxx_variable_templates + Feature record: CXX_FEATURE:0cxx_variadic_macros + Feature record: CXX_FEATURE:0cxx_variadic_templates diff --git a/qhull/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/Makefile.cmake b/qhull/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/Makefile.cmake new file mode 100644 index 0000000..544c1c3 --- /dev/null +++ b/qhull/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/Makefile.cmake @@ -0,0 +1,97 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.5 + +# 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" + "/home/tom/.conan/data/QHull/f0bd8ce/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/LibFindMacros.cmake" + "/home/tom/.conan/data/QHull/f0bd8ce/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/QHullConfig.cmake" + "../../CMakeLists.txt" + "CMakeFiles/3.5.1/CMakeCXXCompiler.cmake" + "CMakeFiles/3.5.1/CMakeSystem.cmake" + "CMakeFiles/feature_tests.cxx" + "conanbuildinfo.cmake" + "/usr/share/cmake-3.5/Modules/CMakeCXXCompiler.cmake.in" + "/usr/share/cmake-3.5/Modules/CMakeCXXCompilerABI.cpp" + "/usr/share/cmake-3.5/Modules/CMakeCXXInformation.cmake" + "/usr/share/cmake-3.5/Modules/CMakeCommonLanguageInclude.cmake" + "/usr/share/cmake-3.5/Modules/CMakeCompilerIdDetection.cmake" + "/usr/share/cmake-3.5/Modules/CMakeDetermineCXXCompiler.cmake" + "/usr/share/cmake-3.5/Modules/CMakeDetermineCompileFeatures.cmake" + "/usr/share/cmake-3.5/Modules/CMakeDetermineCompiler.cmake" + "/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerABI.cmake" + "/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake" + "/usr/share/cmake-3.5/Modules/CMakeDetermineSystem.cmake" + "/usr/share/cmake-3.5/Modules/CMakeFindBinUtils.cmake" + "/usr/share/cmake-3.5/Modules/CMakeGenericSystem.cmake" + "/usr/share/cmake-3.5/Modules/CMakeLanguageInformation.cmake" + "/usr/share/cmake-3.5/Modules/CMakeParseArguments.cmake" + "/usr/share/cmake-3.5/Modules/CMakeParseImplicitLinkInfo.cmake" + "/usr/share/cmake-3.5/Modules/CMakeSystem.cmake.in" + "/usr/share/cmake-3.5/Modules/CMakeSystemSpecificInformation.cmake" + "/usr/share/cmake-3.5/Modules/CMakeSystemSpecificInitialize.cmake" + "/usr/share/cmake-3.5/Modules/CMakeTestCXXCompiler.cmake" + "/usr/share/cmake-3.5/Modules/CMakeTestCompilerCommon.cmake" + "/usr/share/cmake-3.5/Modules/CMakeUnixFindMake.cmake" + "/usr/share/cmake-3.5/Modules/Compiler/ADSP-DetermineCompiler.cmake" + "/usr/share/cmake-3.5/Modules/Compiler/ARMCC-DetermineCompiler.cmake" + "/usr/share/cmake-3.5/Modules/Compiler/AppleClang-DetermineCompiler.cmake" + "/usr/share/cmake-3.5/Modules/Compiler/Borland-DetermineCompiler.cmake" + "/usr/share/cmake-3.5/Modules/Compiler/Clang-DetermineCompiler.cmake" + "/usr/share/cmake-3.5/Modules/Compiler/Clang-DetermineCompilerInternal.cmake" + "/usr/share/cmake-3.5/Modules/Compiler/Comeau-CXX-DetermineCompiler.cmake" + "/usr/share/cmake-3.5/Modules/Compiler/Compaq-CXX-DetermineCompiler.cmake" + "/usr/share/cmake-3.5/Modules/Compiler/Cray-DetermineCompiler.cmake" + "/usr/share/cmake-3.5/Modules/Compiler/Embarcadero-DetermineCompiler.cmake" + "/usr/share/cmake-3.5/Modules/Compiler/Fujitsu-DetermineCompiler.cmake" + "/usr/share/cmake-3.5/Modules/Compiler/GHS-DetermineCompiler.cmake" + "/usr/share/cmake-3.5/Modules/Compiler/GNU-CXX-FeatureTests.cmake" + "/usr/share/cmake-3.5/Modules/Compiler/GNU-CXX.cmake" + "/usr/share/cmake-3.5/Modules/Compiler/GNU-DetermineCompiler.cmake" + "/usr/share/cmake-3.5/Modules/Compiler/GNU.cmake" + "/usr/share/cmake-3.5/Modules/Compiler/HP-CXX-DetermineCompiler.cmake" + "/usr/share/cmake-3.5/Modules/Compiler/IAR-DetermineCompiler.cmake" + "/usr/share/cmake-3.5/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake" + "/usr/share/cmake-3.5/Modules/Compiler/Intel-DetermineCompiler.cmake" + "/usr/share/cmake-3.5/Modules/Compiler/MIPSpro-DetermineCompiler.cmake" + "/usr/share/cmake-3.5/Modules/Compiler/MSVC-DetermineCompiler.cmake" + "/usr/share/cmake-3.5/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake" + "/usr/share/cmake-3.5/Modules/Compiler/PGI-DetermineCompiler.cmake" + "/usr/share/cmake-3.5/Modules/Compiler/PathScale-DetermineCompiler.cmake" + "/usr/share/cmake-3.5/Modules/Compiler/SCO-DetermineCompiler.cmake" + "/usr/share/cmake-3.5/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake" + "/usr/share/cmake-3.5/Modules/Compiler/TI-DetermineCompiler.cmake" + "/usr/share/cmake-3.5/Modules/Compiler/VisualAge-CXX-DetermineCompiler.cmake" + "/usr/share/cmake-3.5/Modules/Compiler/Watcom-DetermineCompiler.cmake" + "/usr/share/cmake-3.5/Modules/Compiler/XL-CXX-DetermineCompiler.cmake" + "/usr/share/cmake-3.5/Modules/Compiler/zOS-CXX-DetermineCompiler.cmake" + "/usr/share/cmake-3.5/Modules/Internal/FeatureTesting.cmake" + "/usr/share/cmake-3.5/Modules/MultiArchCross.cmake" + "/usr/share/cmake-3.5/Modules/Platform/Linux-CXX.cmake" + "/usr/share/cmake-3.5/Modules/Platform/Linux-GNU-CXX.cmake" + "/usr/share/cmake-3.5/Modules/Platform/Linux-GNU.cmake" + "/usr/share/cmake-3.5/Modules/Platform/Linux.cmake" + "/usr/share/cmake-3.5/Modules/Platform/UnixPaths.cmake" + ) + +# The corresponding makefile is: +set(CMAKE_MAKEFILE_OUTPUTS + "Makefile" + "CMakeFiles/cmake.check_cache" + ) + +# Byproducts of CMake generate step: +set(CMAKE_MAKEFILE_PRODUCTS + "CMakeFiles/3.5.1/CMakeSystem.cmake" + "CMakeFiles/3.5.1/CMakeCXXCompiler.cmake" + "CMakeFiles/3.5.1/CMakeCXXCompiler.cmake" + "CMakeFiles/CMakeDirectoryInformation.cmake" + ) + +# Dependency information for all targets: +set(CMAKE_DEPEND_INFO_FILES + "CMakeFiles/example.dir/DependInfo.cmake" + ) diff --git a/qhull/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/Makefile2 b/qhull/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/Makefile2 new file mode 100644 index 0000000..b625e27 --- /dev/null +++ b/qhull/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/Makefile2 @@ -0,0 +1,108 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.5 + +# Default target executed when no arguments are given to make. +default_target: all + +.PHONY : default_target + +# The main recursive all target +all: + +.PHONY : all + +# The main recursive preinstall target +preinstall: + +.PHONY : preinstall + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + + +# Remove some rules from gmake that .SUFFIXES does not remove. +SUFFIXES = + +.SUFFIXES: .hpux_make_needs_suffix_list + + +# 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 remove -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /mnt/c/Users/t.vogl/Documents/repos/conan-qhull/test_package + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /mnt/c/Users/t.vogl/Documents/repos/conan-qhull/test_package/build/aadcc2c40dab68a95374017995be48233063b305 + +#============================================================================= +# Target rules for target CMakeFiles/example.dir + +# All Build rule for target. +CMakeFiles/example.dir/all: + $(MAKE) -f CMakeFiles/example.dir/build.make CMakeFiles/example.dir/depend + $(MAKE) -f CMakeFiles/example.dir/build.make CMakeFiles/example.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/mnt/c/Users/t.vogl/Documents/repos/conan-qhull/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles --progress-num=1,2 "Built target example" +.PHONY : CMakeFiles/example.dir/all + +# Include target in all. +all: CMakeFiles/example.dir/all + +.PHONY : all + +# Build rule for subdir invocation for target. +CMakeFiles/example.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /mnt/c/Users/t.vogl/Documents/repos/conan-qhull/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles 2 + $(MAKE) -f CMakeFiles/Makefile2 CMakeFiles/example.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /mnt/c/Users/t.vogl/Documents/repos/conan-qhull/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles 0 +.PHONY : CMakeFiles/example.dir/rule + +# Convenience name for target. +example: CMakeFiles/example.dir/rule + +.PHONY : example + +# clean rule for target. +CMakeFiles/example.dir/clean: + $(MAKE) -f CMakeFiles/example.dir/build.make CMakeFiles/example.dir/clean +.PHONY : CMakeFiles/example.dir/clean + +# clean rule for target. +clean: CMakeFiles/example.dir/clean + +.PHONY : 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) -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 +.PHONY : cmake_check_build_system + diff --git a/qhull/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/TargetDirectories.txt b/qhull/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/TargetDirectories.txt new file mode 100644 index 0000000..5a17a68 --- /dev/null +++ b/qhull/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/TargetDirectories.txt @@ -0,0 +1,3 @@ +/mnt/c/Users/t.vogl/Documents/repos/conan-qhull/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/rebuild_cache.dir +/mnt/c/Users/t.vogl/Documents/repos/conan-qhull/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/edit_cache.dir +/mnt/c/Users/t.vogl/Documents/repos/conan-qhull/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/example.dir diff --git a/qhull/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/cmake.check_cache b/qhull/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/cmake.check_cache new file mode 100644 index 0000000..3dccd73 --- /dev/null +++ b/qhull/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/cmake.check_cache @@ -0,0 +1 @@ +# This file is generated by cmake for dependency checking of the CMakeCache.txt file diff --git a/qhull/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/example.dir/CXX.includecache b/qhull/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/example.dir/CXX.includecache new file mode 100644 index 0000000..92bdb11 --- /dev/null +++ b/qhull/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/example.dir/CXX.includecache @@ -0,0 +1,58 @@ +#IncludeRegexLine: ^[ ]*#[ ]*(include|import)[ ]*[<"]([^">]+)([">]) + +#IncludeRegexScan: ^.*$ + +#IncludeRegexComplain: ^$ + +#IncludeRegexTransform: + +/home/tom/.conan/data/QHull/f0bd8ce/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/include/libqhull/libqhull.h +user.h +/home/tom/.conan/data/QHull/f0bd8ce/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/include/libqhull/user.h +mem.h +/home/tom/.conan/data/QHull/f0bd8ce/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/include/libqhull/mem.h +qset.h +/home/tom/.conan/data/QHull/f0bd8ce/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/include/libqhull/qset.h +setjmp.h +- +float.h +- +time.h +- +stdio.h +- +SIOUX.h +- +Files.h +- +Desk.h +- +stat.h +/home/tom/.conan/data/QHull/f0bd8ce/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/include/libqhull/stat.h + +/home/tom/.conan/data/QHull/f0bd8ce/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/include/libqhull/mem.h +stdio.h +- + +/home/tom/.conan/data/QHull/f0bd8ce/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/include/libqhull/qset.h +stdio.h +- + +/home/tom/.conan/data/QHull/f0bd8ce/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/include/libqhull/stat.h +libqhull.h +/home/tom/.conan/data/QHull/f0bd8ce/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/include/libqhull/libqhull.h + +/home/tom/.conan/data/QHull/f0bd8ce/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/include/libqhull/user.h +time.h +- +stdlib.h +- +crtdbg.h +- + +/mnt/c/Users/t.vogl/Documents/repos/conan-qhull/test_package/example.cpp +iostream +- +libqhull/libqhull.h +- + diff --git a/qhull/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/example.dir/DependInfo.cmake b/qhull/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/example.dir/DependInfo.cmake new file mode 100644 index 0000000..b7efa35 --- /dev/null +++ b/qhull/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/example.dir/DependInfo.cmake @@ -0,0 +1,26 @@ +# 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 + "/mnt/c/Users/t.vogl/Documents/repos/conan-qhull/test_package/example.cpp" "/mnt/c/Users/t.vogl/Documents/repos/conan-qhull/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/example.dir/example.cpp.o" + ) +set(CMAKE_CXX_COMPILER_ID "GNU") + +# Preprocessor definitions for this target. +set(CMAKE_TARGET_DEFINITIONS_CXX + "_GLIBCXX_USE_CXX11_ABI=0" + ) + +# The include file search paths: +set(CMAKE_CXX_TARGET_INCLUDE_PATH + "/home/tom/.conan/data/QHull/f0bd8ce/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/include" + ) + +# Targets to which this target links. +set(CMAKE_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/qhull/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/example.dir/build.make b/qhull/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/example.dir/build.make new file mode 100644 index 0000000..1205186 --- /dev/null +++ b/qhull/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/example.dir/build.make @@ -0,0 +1,114 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.5 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + + +# Remove some rules from gmake that .SUFFIXES does not remove. +SUFFIXES = + +.SUFFIXES: .hpux_make_needs_suffix_list + + +# 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 remove -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /mnt/c/Users/t.vogl/Documents/repos/conan-qhull/test_package + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /mnt/c/Users/t.vogl/Documents/repos/conan-qhull/test_package/build/aadcc2c40dab68a95374017995be48233063b305 + +# Include any dependencies generated for this target. +include CMakeFiles/example.dir/depend.make + +# Include the progress variables for this target. +include CMakeFiles/example.dir/progress.make + +# Include the compile flags for this target's objects. +include CMakeFiles/example.dir/flags.make + +CMakeFiles/example.dir/example.cpp.o: CMakeFiles/example.dir/flags.make +CMakeFiles/example.dir/example.cpp.o: ../../example.cpp + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/mnt/c/Users/t.vogl/Documents/repos/conan-qhull/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object CMakeFiles/example.dir/example.cpp.o" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -o CMakeFiles/example.dir/example.cpp.o -c /mnt/c/Users/t.vogl/Documents/repos/conan-qhull/test_package/example.cpp + +CMakeFiles/example.dir/example.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/example.dir/example.cpp.i" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /mnt/c/Users/t.vogl/Documents/repos/conan-qhull/test_package/example.cpp > CMakeFiles/example.dir/example.cpp.i + +CMakeFiles/example.dir/example.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/example.dir/example.cpp.s" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /mnt/c/Users/t.vogl/Documents/repos/conan-qhull/test_package/example.cpp -o CMakeFiles/example.dir/example.cpp.s + +CMakeFiles/example.dir/example.cpp.o.requires: + +.PHONY : CMakeFiles/example.dir/example.cpp.o.requires + +CMakeFiles/example.dir/example.cpp.o.provides: CMakeFiles/example.dir/example.cpp.o.requires + $(MAKE) -f CMakeFiles/example.dir/build.make CMakeFiles/example.dir/example.cpp.o.provides.build +.PHONY : CMakeFiles/example.dir/example.cpp.o.provides + +CMakeFiles/example.dir/example.cpp.o.provides.build: CMakeFiles/example.dir/example.cpp.o + + +# Object files for target example +example_OBJECTS = \ +"CMakeFiles/example.dir/example.cpp.o" + +# External object files for target example +example_EXTERNAL_OBJECTS = + +bin/example: CMakeFiles/example.dir/example.cpp.o +bin/example: CMakeFiles/example.dir/build.make +bin/example: /home/tom/.conan/data/QHull/f0bd8ce/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/lib/libqhullstatic.a +bin/example: CMakeFiles/example.dir/link.txt + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --bold --progress-dir=/mnt/c/Users/t.vogl/Documents/repos/conan-qhull/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Linking CXX executable bin/example" + $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/example.dir/link.txt --verbose=$(VERBOSE) + +# Rule to build all files generated by this target. +CMakeFiles/example.dir/build: bin/example + +.PHONY : CMakeFiles/example.dir/build + +CMakeFiles/example.dir/requires: CMakeFiles/example.dir/example.cpp.o.requires + +.PHONY : CMakeFiles/example.dir/requires + +CMakeFiles/example.dir/clean: + $(CMAKE_COMMAND) -P CMakeFiles/example.dir/cmake_clean.cmake +.PHONY : CMakeFiles/example.dir/clean + +CMakeFiles/example.dir/depend: + cd /mnt/c/Users/t.vogl/Documents/repos/conan-qhull/test_package/build/aadcc2c40dab68a95374017995be48233063b305 && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /mnt/c/Users/t.vogl/Documents/repos/conan-qhull/test_package /mnt/c/Users/t.vogl/Documents/repos/conan-qhull/test_package /mnt/c/Users/t.vogl/Documents/repos/conan-qhull/test_package/build/aadcc2c40dab68a95374017995be48233063b305 /mnt/c/Users/t.vogl/Documents/repos/conan-qhull/test_package/build/aadcc2c40dab68a95374017995be48233063b305 /mnt/c/Users/t.vogl/Documents/repos/conan-qhull/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/example.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : CMakeFiles/example.dir/depend + diff --git a/qhull/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/example.dir/cmake_clean.cmake b/qhull/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/example.dir/cmake_clean.cmake new file mode 100644 index 0000000..c887f7f --- /dev/null +++ b/qhull/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/example.dir/cmake_clean.cmake @@ -0,0 +1,10 @@ +file(REMOVE_RECURSE + "CMakeFiles/example.dir/example.cpp.o" + "bin/example.pdb" + "bin/example" +) + +# Per-language clean rules from dependency scanning. +foreach(lang CXX) + include(CMakeFiles/example.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/qhull/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/example.dir/depend.internal b/qhull/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/example.dir/depend.internal new file mode 100644 index 0000000..1540d9d --- /dev/null +++ b/qhull/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/example.dir/depend.internal @@ -0,0 +1,10 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.5 + +CMakeFiles/example.dir/example.cpp.o + /home/tom/.conan/data/QHull/f0bd8ce/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/include/libqhull/libqhull.h + /home/tom/.conan/data/QHull/f0bd8ce/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/include/libqhull/mem.h + /home/tom/.conan/data/QHull/f0bd8ce/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/include/libqhull/qset.h + /home/tom/.conan/data/QHull/f0bd8ce/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/include/libqhull/stat.h + /home/tom/.conan/data/QHull/f0bd8ce/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/include/libqhull/user.h + /mnt/c/Users/t.vogl/Documents/repos/conan-qhull/test_package/example.cpp diff --git a/qhull/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/example.dir/depend.make b/qhull/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/example.dir/depend.make new file mode 100644 index 0000000..28815e5 --- /dev/null +++ b/qhull/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/example.dir/depend.make @@ -0,0 +1,10 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.5 + +CMakeFiles/example.dir/example.cpp.o: /home/tom/.conan/data/QHull/f0bd8ce/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/include/libqhull/libqhull.h +CMakeFiles/example.dir/example.cpp.o: /home/tom/.conan/data/QHull/f0bd8ce/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/include/libqhull/mem.h +CMakeFiles/example.dir/example.cpp.o: /home/tom/.conan/data/QHull/f0bd8ce/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/include/libqhull/qset.h +CMakeFiles/example.dir/example.cpp.o: /home/tom/.conan/data/QHull/f0bd8ce/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/include/libqhull/stat.h +CMakeFiles/example.dir/example.cpp.o: /home/tom/.conan/data/QHull/f0bd8ce/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/include/libqhull/user.h +CMakeFiles/example.dir/example.cpp.o: ../../example.cpp + diff --git a/qhull/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/example.dir/example.cpp.o b/qhull/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/example.dir/example.cpp.o new file mode 100644 index 0000000..de9ffaa Binary files /dev/null and b/qhull/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/example.dir/example.cpp.o differ diff --git a/qhull/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/example.dir/flags.make b/qhull/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/example.dir/flags.make new file mode 100644 index 0000000..3e20707 --- /dev/null +++ b/qhull/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/example.dir/flags.make @@ -0,0 +1,10 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.5 + +# compile CXX with /usr/bin/c++ +CXX_FLAGS = -m64 -O3 -DNDEBUG + +CXX_DEFINES = -D_GLIBCXX_USE_CXX11_ABI=0 + +CXX_INCLUDES = -I/home/tom/.conan/data/QHull/f0bd8ce/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/include + diff --git a/qhull/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/example.dir/link.txt b/qhull/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/example.dir/link.txt new file mode 100644 index 0000000..b07dbef --- /dev/null +++ b/qhull/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/example.dir/link.txt @@ -0,0 +1 @@ +/usr/bin/c++ -m64 -O3 -DNDEBUG CMakeFiles/example.dir/example.cpp.o -o bin/example -L/home/tom/.conan/data/QHull/f0bd8ce/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/lib -rdynamic /home/tom/.conan/data/QHull/f0bd8ce/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/lib/libqhullstatic.a -Wl,-rpath,/home/tom/.conan/data/QHull/f0bd8ce/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/lib diff --git a/qhull/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/example.dir/progress.make b/qhull/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/example.dir/progress.make new file mode 100644 index 0000000..abadeb0 --- /dev/null +++ b/qhull/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/example.dir/progress.make @@ -0,0 +1,3 @@ +CMAKE_PROGRESS_1 = 1 +CMAKE_PROGRESS_2 = 2 + diff --git a/qhull/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/feature_tests.bin b/qhull/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/feature_tests.bin new file mode 100644 index 0000000..42c19f3 Binary files /dev/null and b/qhull/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/feature_tests.bin differ diff --git a/qhull/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/feature_tests.cxx b/qhull/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/feature_tests.cxx new file mode 100644 index 0000000..b93418c --- /dev/null +++ b/qhull/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/feature_tests.cxx @@ -0,0 +1,405 @@ + + const char features[] = {"\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 500 && __cplusplus >= 201402L +"1" +#else +"0" +#endif +"cxx_aggregate_default_initializers\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 407 && __cplusplus >= 201103L +"1" +#else +"0" +#endif +"cxx_alias_templates\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 408 && __cplusplus >= 201103L +"1" +#else +"0" +#endif +"cxx_alignas\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 408 && __cplusplus >= 201103L +"1" +#else +"0" +#endif +"cxx_alignof\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 408 && __cplusplus >= 201103L +"1" +#else +"0" +#endif +"cxx_attributes\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 409 && __cplusplus > 201103L +"1" +#else +"0" +#endif +"cxx_attribute_deprecated\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_auto_type\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 409 && __cplusplus > 201103L +"1" +#else +"0" +#endif +"cxx_binary_literals\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 406 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_constexpr\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 409 && __cplusplus > 201103L +"1" +#else +"0" +#endif +"cxx_contextual_conversions\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_decltype\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 409 && __cplusplus > 201103L +"1" +#else +"0" +#endif +"cxx_decltype_auto\n" +"CXX_FEATURE:" +#if ((__GNUC__ * 10000 + __GNUC_MINOR__ * 100 + __GNUC_PATCHLEVEL__) >= 40801) && __cplusplus >= 201103L +"1" +#else +"0" +#endif +"cxx_decltype_incomplete_return_types\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_default_function_template_args\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_defaulted_functions\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 406 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_defaulted_move_initializers\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 407 && __cplusplus >= 201103L +"1" +#else +"0" +#endif +"cxx_delegating_constructors\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_deleted_functions\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 409 && __cplusplus > 201103L +"1" +#else +"0" +#endif +"cxx_digit_separators\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 406 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_enum_forward_declarations\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 405 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_explicit_conversions\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 407 && __cplusplus >= 201103L +"1" +#else +"0" +#endif +"cxx_extended_friend_declarations\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_extern_templates\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 407 && __cplusplus >= 201103L +"1" +#else +"0" +#endif +"cxx_final\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_func_identifier\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_generalized_initializers\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 409 && __cplusplus > 201103L +"1" +#else +"0" +#endif +"cxx_generic_lambdas\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 408 && __cplusplus >= 201103L +"1" +#else +"0" +#endif +"cxx_inheriting_constructors\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_inline_namespaces\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 405 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_lambdas\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 409 && __cplusplus > 201103L +"1" +#else +"0" +#endif +"cxx_lambda_init_captures\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 405 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_local_type_template_args\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_long_long_type\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 406 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_noexcept\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 407 && __cplusplus >= 201103L +"1" +#else +"0" +#endif +"cxx_nonstatic_member_init\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 406 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_nullptr\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 407 && __cplusplus >= 201103L +"1" +#else +"0" +#endif +"cxx_override\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 406 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_range_for\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 405 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_raw_string_literals\n" +"CXX_FEATURE:" +#if ((__GNUC__ * 10000 + __GNUC_MINOR__ * 100 + __GNUC_PATCHLEVEL__) >= 40801) && __cplusplus >= 201103L +"1" +#else +"0" +#endif +"cxx_reference_qualified_functions\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 500 && __cplusplus >= 201402L +"1" +#else +"0" +#endif +"cxx_relaxed_constexpr\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 409 && __cplusplus > 201103L +"1" +#else +"0" +#endif +"cxx_return_type_deduction\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_right_angle_brackets\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_rvalue_references\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_sizeof_member\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_static_assert\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_strong_enums\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && __cplusplus +"1" +#else +"0" +#endif +"cxx_template_template_parameters\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 408 && __cplusplus >= 201103L +"1" +#else +"0" +#endif +"cxx_thread_local\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_trailing_return_types\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_unicode_literals\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_uniform_initialization\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 406 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_unrestricted_unions\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 407 && __cplusplus >= 201103L +"1" +#else +"0" +#endif +"cxx_user_literals\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 500 && __cplusplus >= 201402L +"1" +#else +"0" +#endif +"cxx_variable_templates\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_variadic_macros\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_variadic_templates\n" + +}; + +int main(int argc, char** argv) { (void)argv; return features[argc]; } diff --git a/qhull/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/progress.marks b/qhull/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/progress.marks new file mode 100644 index 0000000..0cfbf08 --- /dev/null +++ b/qhull/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/progress.marks @@ -0,0 +1 @@ +2 diff --git a/qhull/test_package/build/aadcc2c40dab68a95374017995be48233063b305/Makefile b/qhull/test_package/build/aadcc2c40dab68a95374017995be48233063b305/Makefile new file mode 100644 index 0000000..7dae46c --- /dev/null +++ b/qhull/test_package/build/aadcc2c40dab68a95374017995be48233063b305/Makefile @@ -0,0 +1,178 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.5 + +# 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: + + +# Remove some rules from gmake that .SUFFIXES does not remove. +SUFFIXES = + +.SUFFIXES: .hpux_make_needs_suffix_list + + +# 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 remove -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /mnt/c/Users/t.vogl/Documents/repos/conan-qhull/test_package + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /mnt/c/Users/t.vogl/Documents/repos/conan-qhull/test_package/build/aadcc2c40dab68a95374017995be48233063b305 + +#============================================================================= +# Targets provided globally by CMake. + +# 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 -H$(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 edit_cache +edit_cache: + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "No interactive CMake dialog available..." + /usr/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available. +.PHONY : edit_cache + +# Special rule for the target edit_cache +edit_cache/fast: edit_cache + +.PHONY : edit_cache/fast + +# The main all target +all: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /mnt/c/Users/t.vogl/Documents/repos/conan-qhull/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles /mnt/c/Users/t.vogl/Documents/repos/conan-qhull/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/progress.marks + $(MAKE) -f CMakeFiles/Makefile2 all + $(CMAKE_COMMAND) -E cmake_progress_start /mnt/c/Users/t.vogl/Documents/repos/conan-qhull/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles 0 +.PHONY : all + +# The main clean target +clean: + $(MAKE) -f CMakeFiles/Makefile2 clean +.PHONY : clean + +# The main clean target +clean/fast: clean + +.PHONY : clean/fast + +# Prepare targets for installation. +preinstall: all + $(MAKE) -f CMakeFiles/Makefile2 preinstall +.PHONY : preinstall + +# Prepare targets for installation. +preinstall/fast: + $(MAKE) -f CMakeFiles/Makefile2 preinstall +.PHONY : preinstall/fast + +# clear depends +depend: + $(CMAKE_COMMAND) -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1 +.PHONY : depend + +#============================================================================= +# Target rules for targets named example + +# Build rule for target. +example: cmake_check_build_system + $(MAKE) -f CMakeFiles/Makefile2 example +.PHONY : example + +# fast build rule for target. +example/fast: + $(MAKE) -f CMakeFiles/example.dir/build.make CMakeFiles/example.dir/build +.PHONY : example/fast + +example.o: example.cpp.o + +.PHONY : example.o + +# target to build an object file +example.cpp.o: + $(MAKE) -f CMakeFiles/example.dir/build.make CMakeFiles/example.dir/example.cpp.o +.PHONY : example.cpp.o + +example.i: example.cpp.i + +.PHONY : example.i + +# target to preprocess a source file +example.cpp.i: + $(MAKE) -f CMakeFiles/example.dir/build.make CMakeFiles/example.dir/example.cpp.i +.PHONY : example.cpp.i + +example.s: example.cpp.s + +.PHONY : example.s + +# target to generate assembly for a file +example.cpp.s: + $(MAKE) -f CMakeFiles/example.dir/build.make CMakeFiles/example.dir/example.cpp.s +.PHONY : example.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 "... rebuild_cache" + @echo "... edit_cache" + @echo "... example" + @echo "... example.o" + @echo "... example.i" + @echo "... example.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) -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 +.PHONY : cmake_check_build_system + diff --git a/qhull/test_package/build/aadcc2c40dab68a95374017995be48233063b305/bin/example b/qhull/test_package/build/aadcc2c40dab68a95374017995be48233063b305/bin/example new file mode 100644 index 0000000..65eee7f Binary files /dev/null and b/qhull/test_package/build/aadcc2c40dab68a95374017995be48233063b305/bin/example differ diff --git a/qhull/test_package/build/aadcc2c40dab68a95374017995be48233063b305/cmake_install.cmake b/qhull/test_package/build/aadcc2c40dab68a95374017995be48233063b305/cmake_install.cmake new file mode 100644 index 0000000..348ac87 --- /dev/null +++ b/qhull/test_package/build/aadcc2c40dab68a95374017995be48233063b305/cmake_install.cmake @@ -0,0 +1,44 @@ +# Install script for directory: /mnt/c/Users/t.vogl/Documents/repos/conan-qhull/test_package + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "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 "1") +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 "/mnt/c/Users/t.vogl/Documents/repos/conan-qhull/test_package/build/aadcc2c40dab68a95374017995be48233063b305/${CMAKE_INSTALL_MANIFEST}" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") diff --git a/qhull/test_package/build/aadcc2c40dab68a95374017995be48233063b305/conanbuildinfo.cmake b/qhull/test_package/build/aadcc2c40dab68a95374017995be48233063b305/conanbuildinfo.cmake new file mode 100644 index 0000000..69c47a4 --- /dev/null +++ b/qhull/test_package/build/aadcc2c40dab68a95374017995be48233063b305/conanbuildinfo.cmake @@ -0,0 +1,460 @@ +include(CMakeParseArguments) +set(CONAN_QHULL_ROOT "/home/tom/.conan/data/QHull/f0bd8ce/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9") +set(CONAN_INCLUDE_DIRS_QHULL "/home/tom/.conan/data/QHull/f0bd8ce/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/include") +set(CONAN_LIB_DIRS_QHULL "/home/tom/.conan/data/QHull/f0bd8ce/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/lib") +set(CONAN_BIN_DIRS_QHULL ) +set(CONAN_RES_DIRS_QHULL ) +set(CONAN_BUILD_DIRS_QHULL "/home/tom/.conan/data/QHull/f0bd8ce/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/") +set(CONAN_LIBS_QHULL libqhullstatic) +set(CONAN_DEFINES_QHULL ) +# COMPILE_DEFINITIONS are equal to CONAN_DEFINES without -D, for targets +set(CONAN_COMPILE_DEFINITIONS_QHULL ) + +set(CONAN_C_FLAGS_QHULL "") +set(CONAN_CXX_FLAGS_QHULL "") +set(CONAN_SHARED_LINKER_FLAGS_QHULL "") +set(CONAN_EXE_LINKER_FLAGS_QHULL "") + +# For modern cmake targets we use the list variables (separated with ;) +set(CONAN_C_FLAGS_QHULL_LIST "") +set(CONAN_CXX_FLAGS_QHULL_LIST "") +set(CONAN_SHARED_LINKER_FLAGS_QHULL_LIST "") +set(CONAN_EXE_LINKER_FLAGS_QHULL_LIST "") + + + +### Definition of global aggregated variables ### + +set(CONAN_PACKAGE_NAME None) +set(CONAN_PACKAGE_VERSION None) + +set(CONAN_SETTINGS_ARCH "x86_64") +set(CONAN_SETTINGS_BUILD_TYPE "Release") +set(CONAN_SETTINGS_COMPILER "gcc") +set(CONAN_SETTINGS_COMPILER_LIBCXX "libstdc++") +set(CONAN_SETTINGS_COMPILER_VERSION "5.4") +set(CONAN_SETTINGS_OS "Linux") + +set(CONAN_DEPENDENCIES QHull) +# Storing original command line args (CMake helper) flags +set(CONAN_CMD_CXX_FLAGS ${CONAN_CXX_FLAGS}) + +set(CONAN_CMD_SHARED_LINKER_FLAGS ${CONAN_SHARED_LINKER_FLAGS}) +set(CONAN_CMD_C_FLAGS ${CONAN_C_FLAGS}) +# Defining accumulated conan variables for all deps + +set(CONAN_INCLUDE_DIRS "/home/tom/.conan/data/QHull/f0bd8ce/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/include" ${CONAN_INCLUDE_DIRS}) +set(CONAN_LIB_DIRS "/home/tom/.conan/data/QHull/f0bd8ce/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/lib" ${CONAN_LIB_DIRS}) +set(CONAN_BIN_DIRS ${CONAN_BIN_DIRS}) +set(CONAN_RES_DIRS ${CONAN_RES_DIRS}) +set(CONAN_LIBS libqhullstatic ${CONAN_LIBS}) +set(CONAN_DEFINES ${CONAN_DEFINES}) +set(CONAN_CMAKE_MODULE_PATH "/home/tom/.conan/data/QHull/f0bd8ce/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/" ${CONAN_CMAKE_MODULE_PATH}) + +set(CONAN_CXX_FLAGS " ${CONAN_CXX_FLAGS}") +set(CONAN_SHARED_LINKER_FLAGS " ${CONAN_SHARED_LINKER_FLAGS}") +set(CONAN_EXE_LINKER_FLAGS " ${CONAN_EXE_LINKER_FLAGS}") +set(CONAN_C_FLAGS " ${CONAN_C_FLAGS}") + + +### Definition of macros and functions ### + +macro(conan_define_targets) + if(${CMAKE_VERSION} VERSION_LESS "3.1.2") + message(FATAL_ERROR "TARGETS not supported by your CMake version!") + endif() # CMAKE > 3.x + set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${CONAN_CMD_CXX_FLAGS}") + set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} ${CONAN_CMD_C_FLAGS}") + set(CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} ${CONAN_CMD_SHARED_LINKER_FLAGS}") + + + conan_package_library_targets("${CONAN_LIBS_QHULL}" "${CONAN_LIB_DIRS_QHULL}" + CONAN_PACKAGE_TARGETS_QHULL "" "" QHull) + conan_package_library_targets("${CONAN_LIBS_QHULL_DEBUG}" "${CONAN_LIB_DIRS_QHULL_DEBUG}" + CONAN_PACKAGE_TARGETS_QHULL_DEBUG "" "debug" QHull) + conan_package_library_targets("${CONAN_LIBS_QHULL_RELEASE}" "${CONAN_LIB_DIRS_QHULL_RELEASE}" + CONAN_PACKAGE_TARGETS_QHULL_RELEASE "" "release" QHull) + + add_library(CONAN_PKG::QHull INTERFACE IMPORTED) + + # Property INTERFACE_LINK_FLAGS do not work, necessary to add to INTERFACE_LINK_LIBRARIES + set_property(TARGET CONAN_PKG::QHull PROPERTY INTERFACE_LINK_LIBRARIES ${CONAN_PACKAGE_TARGETS_QHULL} ${CONAN_SHARED_LINKER_FLAGS_QHULL_LIST} ${CONAN_EXE_LINKER_FLAGS_QHULL_LIST} + $<$:${CONAN_PACKAGE_TARGETS_QHULL_RELEASE} ${CONAN_SHARED_LINKER_FLAGS_QHULL_RELEASE_LIST} ${CONAN_EXE_LINKER_FLAGS_QHULL_RELEASE_LIST}> + $<$:${CONAN_PACKAGE_TARGETS_QHULL_RELEASE} ${CONAN_SHARED_LINKER_FLAGS_QHULL_RELEASE_LIST} ${CONAN_EXE_LINKER_FLAGS_QHULL_RELEASE_LIST}> + $<$:${CONAN_PACKAGE_TARGETS_QHULL_RELEASE} ${CONAN_SHARED_LINKER_FLAGS_QHULL_RELEASE_LIST} ${CONAN_EXE_LINKER_FLAGS_QHULL_RELEASE_LIST}> + $<$:${CONAN_PACKAGE_TARGETS_QHULL_DEBUG} ${CONAN_SHARED_LINKER_FLAGS_QHULL_DEBUG_LIST} ${CONAN_EXE_LINKER_FLAGS_QHULL_DEBUG_LIST}> + ) + set_property(TARGET CONAN_PKG::QHull PROPERTY INTERFACE_INCLUDE_DIRECTORIES ${CONAN_INCLUDE_DIRS_QHULL} + $<$:${CONAN_INCLUDE_DIRS_QHULL_RELEASE}> + $<$:${CONAN_INCLUDE_DIRS_QHULL_RELEASE}> + $<$:${CONAN_INCLUDE_DIRS_QHULL_RELEASE}> + $<$:${CONAN_INCLUDE_DIRS_QHULL_DEBUG}>) + set_property(TARGET CONAN_PKG::QHull PROPERTY INTERFACE_COMPILE_DEFINITIONS ${CONAN_COMPILE_DEFINITIONS_QHULL} + $<$:${CONAN_COMPILE_DEFINITIONS_QHULL_RELEASE}> + $<$:${CONAN_COMPILE_DEFINITIONS_QHULL_RELEASE}> + $<$:${CONAN_COMPILE_DEFINITIONS_QHULL_RELEASE}> + $<$:${CONAN_COMPILE_DEFINITIONS_QHULL_DEBUG}>) + set_property(TARGET CONAN_PKG::QHull PROPERTY INTERFACE_COMPILE_OPTIONS ${CONAN_C_FLAGS_QHULL_LIST} ${CONAN_CXX_FLAGS_QHULL_LIST} + $<$:${CONAN_C_FLAGS_QHULL_RELEASE_LIST} ${CONAN_CXX_FLAGS_QHULL_RELEASE_LIST}> + $<$:${CONAN_C_FLAGS_QHULL_RELEASE_LIST} ${CONAN_CXX_FLAGS_QHULL_RELEASE_LIST}> + $<$:${CONAN_C_FLAGS_QHULL_RELEASE_LIST} ${CONAN_CXX_FLAGS_QHULL_RELEASE_LIST}> + $<$:${CONAN_C_FLAGS_QHULL_DEBUG_LIST} ${CONAN_CXX_FLAGS_QHULL_DEBUG_LIST}>) + + set(CONAN_TARGETS CONAN_PKG::QHull) + +endmacro() + + +macro(conan_basic_setup) + set(options TARGETS NO_OUTPUT_DIRS SKIP_RPATH) + cmake_parse_arguments(ARGUMENTS "${options}" "${oneValueArgs}" "${multiValueArgs}" ${ARGN} ) + if(CONAN_EXPORTED) + message(STATUS "Conan: called by CMake conan helper") + endif() + conan_check_compiler() + if(NOT ARGUMENTS_NO_OUTPUT_DIRS) + conan_output_dirs_setup() + endif() + conan_set_find_library_paths() + if(NOT ARGUMENTS_TARGETS) + message(STATUS "Conan: Using cmake global configuration") + conan_global_flags() + else() + message(STATUS "Conan: Using cmake targets configuration") + conan_define_targets() + endif() + if(NOT ARGUMENTS_SKIP_RPATH) + message(STATUS "Conan: Adjusting default RPATHs Conan policies") + conan_set_rpath() + endif() + conan_set_vs_runtime() + conan_set_libcxx() + conan_set_find_paths() +endmacro() + +macro(conan_set_find_paths) + # CMAKE_MODULE_PATH does not have Debug/Release config, but there are variables + # CONAN_CMAKE_MODULE_PATH_DEBUG to be used by the consumer + # CMake can find findXXX.cmake files in the root of packages + set(CMAKE_MODULE_PATH ${CONAN_CMAKE_MODULE_PATH} ${CMAKE_MODULE_PATH}) + + # Make find_package() to work + set(CMAKE_PREFIX_PATH ${CONAN_CMAKE_MODULE_PATH} ${CMAKE_PREFIX_PATH}) + + # Set the find root path (cross build) + set(CMAKE_FIND_ROOT_PATH ${CONAN_CMAKE_FIND_ROOT_PATH} ${CMAKE_FIND_ROOT_PATH}) + if(CONAN_CMAKE_FIND_ROOT_PATH_MODE_PROGRAM) + set(CMAKE_FIND_ROOT_PATH_MODE_PROGRAM ${CONAN_CMAKE_FIND_ROOT_PATH_MODE_PROGRAM}) + endif() + if(CONAN_CMAKE_FIND_ROOT_PATH_MODE_LIBRARY) + set(CMAKE_FIND_ROOT_PATH_MODE_LIBRARY ${CONAN_CMAKE_FIND_ROOT_PATH_MODE_LIBRARY}) + endif() + if(CONAN_CMAKE_FIND_ROOT_PATH_MODE_INCLUDE) + set(CMAKE_FIND_ROOT_PATH_MODE_INCLUDE ${CONAN_CMAKE_FIND_ROOT_PATH_MODE_INCLUDE}) + endif() +endmacro() + +macro(conan_set_find_library_paths) + # CMAKE_INCLUDE_PATH, CMAKE_LIBRARY_PATH does not have Debug/Release config, but there are variables + # CONAN_INCLUDE_DIRS_DEBUG/RELEASE CONAN_LIB_DIRS_DEBUG/RELEASE to be used by the consumer + # For find_library + set(CMAKE_INCLUDE_PATH ${CONAN_INCLUDE_DIRS} ${CMAKE_INCLUDE_PATH}) + set(CMAKE_LIBRARY_PATH ${CONAN_LIB_DIRS} ${CMAKE_LIBRARY_PATH}) +endmacro() + +macro(conan_set_vs_runtime) + if(CONAN_LINK_RUNTIME) + foreach(flag CMAKE_C_FLAGS_RELEASE CMAKE_CXX_FLAGS_RELEASE + CMAKE_C_FLAGS_RELWITHDEBINFO CMAKE_CXX_FLAGS_RELWITHDEBINFO + CMAKE_C_FLAGS_MINSIZEREL CMAKE_CXX_FLAGS_MINSIZEREL) + if(DEFINED ${flag}) + string(REPLACE "/MD" ${CONAN_LINK_RUNTIME} ${flag} "${${flag}}") + endif() + endforeach() + foreach(flag CMAKE_C_FLAGS_DEBUG CMAKE_CXX_FLAGS_DEBUG) + if(DEFINED ${flag}) + string(REPLACE "/MDd" ${CONAN_LINK_RUNTIME} ${flag} "${${flag}}") + endif() + endforeach() + endif() +endmacro() + +macro(conan_flags_setup) + # Macro maintained for backwards compatibility + conan_set_find_library_paths() + conan_global_flags() + conan_set_rpath() + conan_set_vs_runtime() + conan_set_libcxx() +endmacro() + + + +function(conan_find_libraries_abs_path libraries package_libdir libraries_abs_path) + foreach(_LIBRARY_NAME ${libraries}) + unset(CONAN_FOUND_LIBRARY CACHE) + find_library(CONAN_FOUND_LIBRARY NAME ${_LIBRARY_NAME} PATHS ${package_libdir} + NO_DEFAULT_PATH NO_CMAKE_FIND_ROOT_PATH) + if(CONAN_FOUND_LIBRARY) + message(STATUS "Library ${_LIBRARY_NAME} found ${CONAN_FOUND_LIBRARY}") + set(CONAN_FULLPATH_LIBS ${CONAN_FULLPATH_LIBS} ${CONAN_FOUND_LIBRARY}) + else() + message(STATUS "Library ${_LIBRARY_NAME} not found in package, might be system one") + set(CONAN_FULLPATH_LIBS ${CONAN_FULLPATH_LIBS} ${_LIBRARY_NAME}) + endif() + endforeach() + unset(CONAN_FOUND_LIBRARY CACHE) + set(${libraries_abs_path} ${CONAN_FULLPATH_LIBS} PARENT_SCOPE) +endfunction() + +function(conan_package_library_targets libraries package_libdir libraries_abs_path deps build_type package_name) + foreach(_LIBRARY_NAME ${libraries}) + unset(CONAN_FOUND_LIBRARY CACHE) + find_library(CONAN_FOUND_LIBRARY NAME ${_LIBRARY_NAME} PATHS ${package_libdir} + NO_DEFAULT_PATH NO_CMAKE_FIND_ROOT_PATH) + if(CONAN_FOUND_LIBRARY) + message(STATUS "Library ${_LIBRARY_NAME} found ${CONAN_FOUND_LIBRARY}") + set(_LIB_NAME CONAN_LIB::${package_name}_${_LIBRARY_NAME}${build_type}) + add_library(${_LIB_NAME} UNKNOWN IMPORTED) + set_target_properties(${_LIB_NAME} PROPERTIES IMPORTED_LOCATION ${CONAN_FOUND_LIBRARY}) + string(REPLACE " " ";" deps_list "${deps}") + set_property(TARGET ${_LIB_NAME} PROPERTY INTERFACE_LINK_LIBRARIES ${deps_list}) + set(CONAN_FULLPATH_LIBS ${CONAN_FULLPATH_LIBS} ${_LIB_NAME}) + else() + message(STATUS "Library ${_LIBRARY_NAME} not found in package, might be system one") + set(CONAN_FULLPATH_LIBS ${CONAN_FULLPATH_LIBS} ${_LIBRARY_NAME}) + endif() + endforeach() + unset(CONAN_FOUND_LIBRARY CACHE) + set(${libraries_abs_path} ${CONAN_FULLPATH_LIBS} PARENT_SCOPE) +endfunction() + +macro(conan_set_libcxx) + if(DEFINED CONAN_LIBCXX) + message(STATUS "Conan C++ stdlib: ${CONAN_LIBCXX}") + if(CONAN_COMPILER STREQUAL "clang" OR CONAN_COMPILER STREQUAL "apple-clang") + if(CONAN_LIBCXX STREQUAL "libstdc++" OR CONAN_LIBCXX STREQUAL "libstdc++11" ) + set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -stdlib=libstdc++") + elseif(CONAN_LIBCXX STREQUAL "libc++") + set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -stdlib=libc++") + endif() + endif() + if(CONAN_COMPILER STREQUAL "sun-cc") + if(CONAN_LIBCXX STREQUAL "libCstd") + set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -library=Cstd") + elseif(CONAN_LIBCXX STREQUAL "libstdcxx") + set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -library=stdcxx4") + elseif(CONAN_LIBCXX STREQUAL "libstlport") + set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -library=stlport4") + elseif(CONAN_LIBCXX STREQUAL "libstdc++") + set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -library=stdcpp") + endif() + endif() + if(CONAN_LIBCXX STREQUAL "libstdc++11") + add_definitions(-D_GLIBCXX_USE_CXX11_ABI=1) + elseif(CONAN_LIBCXX STREQUAL "libstdc++") + add_definitions(-D_GLIBCXX_USE_CXX11_ABI=0) + endif() + endif() +endmacro() + +macro(conan_set_rpath) + if(APPLE) + # https://cmake.org/Wiki/CMake_RPATH_handling + # CONAN GUIDE: All generated libraries should have the id and dependencies to other + # dylibs without path, just the name, EX: + # libMyLib1.dylib: + # libMyLib1.dylib (compatibility version 0.0.0, current version 0.0.0) + # libMyLib0.dylib (compatibility version 0.0.0, current version 0.0.0) + # /usr/lib/libc++.1.dylib (compatibility version 1.0.0, current version 120.0.0) + # /usr/lib/libSystem.B.dylib (compatibility version 1.0.0, current version 1197.1.1) + set(CMAKE_SKIP_RPATH 1) # AVOID RPATH FOR *.dylib, ALL LIBS BETWEEN THEM AND THE EXE + # SHOULD BE ON THE LINKER RESOLVER PATH (./ IS ONE OF THEM) + endif() +endmacro() + +macro(conan_output_dirs_setup) + set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/bin) + set(CMAKE_RUNTIME_OUTPUT_DIRECTORY_RELEASE ${CMAKE_RUNTIME_OUTPUT_DIRECTORY}) + set(CMAKE_RUNTIME_OUTPUT_DIRECTORY_RELWITHDEBINFO ${CMAKE_RUNTIME_OUTPUT_DIRECTORY}) + set(CMAKE_RUNTIME_OUTPUT_DIRECTORY_MINSIZEREL ${CMAKE_RUNTIME_OUTPUT_DIRECTORY}) + set(CMAKE_RUNTIME_OUTPUT_DIRECTORY_DEBUG ${CMAKE_RUNTIME_OUTPUT_DIRECTORY}) + + set(CMAKE_ARCHIVE_OUTPUT_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/lib) + set(CMAKE_ARCHIVE_OUTPUT_DIRECTORY_RELEASE ${CMAKE_ARCHIVE_OUTPUT_DIRECTORY}) + set(CMAKE_ARCHIVE_OUTPUT_DIRECTORY_RELWITHDEBINFO ${CMAKE_ARCHIVE_OUTPUT_DIRECTORY}) + set(CMAKE_ARCHIVE_OUTPUT_DIRECTORY_MINSIZEREL ${CMAKE_ARCHIVE_OUTPUT_DIRECTORY}) + set(CMAKE_ARCHIVE_OUTPUT_DIRECTORY_DEBUG ${CMAKE_ARCHIVE_OUTPUT_DIRECTORY}) + + set(CMAKE_LIBRARY_OUTPUT_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/lib) + set(CMAKE_LIBRARY_OUTPUT_DIRECTORY_RELEASE ${CMAKE_LIBRARY_OUTPUT_DIRECTORY}) + set(CMAKE_LIBRARY_OUTPUT_DIRECTORY_RELWITHDEBINFO ${CMAKE_LIBRARY_OUTPUT_DIRECTORY}) + set(CMAKE_LIBRARY_OUTPUT_DIRECTORY_MINSIZEREL ${CMAKE_LIBRARY_OUTPUT_DIRECTORY}) + set(CMAKE_LIBRARY_OUTPUT_DIRECTORY_DEBUG ${CMAKE_LIBRARY_OUTPUT_DIRECTORY}) +endmacro() + +macro(conan_split_version VERSION_STRING MAJOR MINOR) + #make a list from the version string + string(REPLACE "." ";" VERSION_LIST "${${VERSION_STRING}}") + + #write output values + list(GET VERSION_LIST 0 ${MAJOR}) + list(GET VERSION_LIST 1 ${MINOR}) +endmacro() + +macro(conan_error_compiler_version) + message(FATAL_ERROR "Incorrect '${CONAN_COMPILER}' version 'compiler.version=${CONAN_COMPILER_VERSION}'" + " is not the one detected by CMake: '${CMAKE_CXX_COMPILER_ID}=" ${VERSION_MAJOR}.${VERSION_MINOR}') +endmacro() + +set(_CONAN_CURRENT_DIR ${CMAKE_CURRENT_LIST_DIR}) +function(conan_get_compiler CONAN_INFO_COMPILER CONAN_INFO_COMPILER_VERSION) + MESSAGE(STATUS "Current conanbuildinfo.cmake directory: " ${_CONAN_CURRENT_DIR}) + if(NOT EXISTS ${_CONAN_CURRENT_DIR}/conaninfo.txt) + message(STATUS "WARN: conaninfo.txt not found") + return() + endif() + + file (READ "${_CONAN_CURRENT_DIR}/conaninfo.txt" CONANINFO) + + string(REGEX MATCH "compiler=([-A-Za-z0-9_ ]+)" _MATCHED ${CONANINFO}) + if(DEFINED CMAKE_MATCH_1) + string(STRIP "${CMAKE_MATCH_1}" _CONAN_INFO_COMPILER) + set(${CONAN_INFO_COMPILER} ${_CONAN_INFO_COMPILER} PARENT_SCOPE) + endif() + + string(REGEX MATCH "compiler.version=([-A-Za-z0-9_.]+)" _MATCHED ${CONANINFO}) + if(DEFINED CMAKE_MATCH_1) + string(STRIP "${CMAKE_MATCH_1}" _CONAN_INFO_COMPILER_VERSION) + set(${CONAN_INFO_COMPILER_VERSION} ${_CONAN_INFO_COMPILER_VERSION} PARENT_SCOPE) + endif() +endfunction() + +function(check_compiler_version) + CONAN_SPLIT_VERSION(CMAKE_CXX_COMPILER_VERSION VERSION_MAJOR VERSION_MINOR) + if(CMAKE_CXX_COMPILER_ID MATCHES MSVC) + # https://cmake.org/cmake/help/v3.2/variable/MSVC_VERSION.html + if( (CONAN_COMPILER_VERSION STREQUAL "14" AND NOT VERSION_MAJOR STREQUAL "19") OR + (CONAN_COMPILER_VERSION STREQUAL "12" AND NOT VERSION_MAJOR STREQUAL "18") OR + (CONAN_COMPILER_VERSION STREQUAL "11" AND NOT VERSION_MAJOR STREQUAL "17") OR + (CONAN_COMPILER_VERSION STREQUAL "10" AND NOT VERSION_MAJOR STREQUAL "16") OR + (CONAN_COMPILER_VERSION STREQUAL "9" AND NOT VERSION_MAJOR STREQUAL "15") OR + (CONAN_COMPILER_VERSION STREQUAL "8" AND NOT VERSION_MAJOR STREQUAL "14") OR + (CONAN_COMPILER_VERSION STREQUAL "7" AND NOT VERSION_MAJOR STREQUAL "13") OR + (CONAN_COMPILER_VERSION STREQUAL "6" AND NOT VERSION_MAJOR STREQUAL "12") ) + conan_error_compiler_version() + endif() + elseif(CONAN_COMPILER STREQUAL "gcc" OR CONAN_COMPILER MATCHES "clang" OR CONAN_COMPILER STREQUAL "sun-cc") + if(NOT ${VERSION_MAJOR}.${VERSION_MINOR} VERSION_EQUAL CONAN_COMPILER_VERSION) + conan_error_compiler_version() + endif() + else() + message(STATUS "WARN: Unknown compiler '${CONAN_COMPILER}', skipping the version check...") + endif() +endfunction() + +function(conan_check_compiler) + if(NOT DEFINED CMAKE_CXX_COMPILER_ID) + if(DEFINED CMAKE_C_COMPILER_ID) + message(STATUS "This project seems to be plain C, using '${CMAKE_C_COMPILER_ID}' compiler") + set(CMAKE_CXX_COMPILER_ID ${CMAKE_C_COMPILER_ID}) + set(CMAKE_CXX_COMPILER_VERSION ${CMAKE_C_COMPILER_VERSION}) + else() + message(FATAL_ERROR "This project seems to be plain C, but no compiler defined") + endif() + endif() + if(CONAN_DISABLE_CHECK_COMPILER) + message(STATUS "WARN: Disabled conan compiler checks") + return() + endif() + + if(NOT DEFINED CONAN_COMPILER) + conan_get_compiler(CONAN_COMPILER CONAN_COMPILER_VERSION) + if(NOT DEFINED CONAN_COMPILER) + message(STATUS "WARN: CONAN_COMPILER variable not set, please make sure yourself that " + "your compiler and version matches your declared settings") + return() + endif() + endif() + + if(NOT CMAKE_HOST_SYSTEM_NAME STREQUAL ${CMAKE_SYSTEM_NAME}) + set(CROSS_BUILDING 1) + endif() + + # Avoid checks when cross compiling, apple-clang crashes because its APPLE but not apple-clang + # Actually CMake is detecting "clang" when you are using apple-clang, only if CMP0025 is set to NEW will detect apple-clang + if( (CONAN_COMPILER STREQUAL "Visual Studio" AND NOT CMAKE_CXX_COMPILER_ID MATCHES MSVC) OR + (CONAN_COMPILER STREQUAL "gcc" AND NOT CMAKE_CXX_COMPILER_ID MATCHES "GNU") OR + (CONAN_COMPILER STREQUAL "apple-clang" AND NOT CROSS_BUILDING AND (NOT APPLE OR NOT CMAKE_CXX_COMPILER_ID MATCHES "Clang")) OR + (CONAN_COMPILER STREQUAL "clang" AND NOT CMAKE_CXX_COMPILER_ID MATCHES "Clang") OR + (CONAN_COMPILER STREQUAL "sun-cc" AND NOT CMAKE_CXX_COMPILER_ID MATCHES "SunPro") ) + message(FATAL_ERROR "Incorrect '${CONAN_COMPILER}', is not the one detected by CMake: '${CMAKE_CXX_COMPILER_ID}'") + endif() + + + if(NOT DEFINED CONAN_COMPILER_VERSION) + message(STATUS "WARN: CONAN_COMPILER_VERSION variable not set, please make sure yourself " + "that your compiler version matches your declared settings") + return() + endif() + check_compiler_version() +endfunction() + +macro(conan_set_flags build_type) + set(CMAKE_CXX_FLAGS${build_type} "${CMAKE_CXX_FLAGS${build_type}} ${CONAN_CXX_FLAGS${build_type}}") + set(CMAKE_C_FLAGS${build_type} "${CMAKE_C_FLAGS${build_type}} ${CONAN_C_FLAGS${build_type}}") + set(CMAKE_SHARED_LINKER_FLAGS${build_type} "${CMAKE_SHARED_LINKER_FLAGS${build_type}} ${CONAN_SHARED_LINKER_FLAGS${build_type}}") + set(CMAKE_EXE_LINKER_FLAGS${build_type} "${CMAKE_EXE_LINKER_FLAGS${build_type}} ${CONAN_EXE_LINKER_FLAGS${build_type}}") +endmacro() + +macro(conan_global_flags) + if(CONAN_SYSTEM_INCLUDES) + include_directories(SYSTEM ${CONAN_INCLUDE_DIRS} + "$<$:${CONAN_INCLUDE_DIRS_RELEASE}>" + "$<$:${CONAN_INCLUDE_DIRS_RELEASE}>" + "$<$:${CONAN_INCLUDE_DIRS_RELEASE}>" + "$<$:${CONAN_INCLUDE_DIRS_DEBUG}>") + else() + include_directories(${CONAN_INCLUDE_DIRS} + "$<$:${CONAN_INCLUDE_DIRS_RELEASE}>" + "$<$:${CONAN_INCLUDE_DIRS_RELEASE}>" + "$<$:${CONAN_INCLUDE_DIRS_RELEASE}>" + "$<$:${CONAN_INCLUDE_DIRS_DEBUG}>") + endif() + + link_directories(${CONAN_LIB_DIRS}) + + conan_find_libraries_abs_path("${CONAN_LIBS_DEBUG}" "${CONAN_LIB_DIRS_DEBUG}" + CONAN_LIBS_DEBUG) + conan_find_libraries_abs_path("${CONAN_LIBS_RELEASE}" "${CONAN_LIB_DIRS_RELEASE}" + CONAN_LIBS_RELEASE) + + add_compile_options(${CONAN_DEFINES} + "$<$:${CONAN_DEFINES_DEBUG}>" + "$<$:${CONAN_DEFINES_RELEASE}>" + "$<$:${CONAN_DEFINES_RELEASE}>" + "$<$:${CONAN_DEFINES_RELEASE}>") + + conan_set_flags("") + conan_set_flags("_RELEASE") + conan_set_flags("_DEBUG") + +endmacro() + +macro(conan_target_link_libraries target) + if(CONAN_TARGETS) + target_link_libraries(${target} ${CONAN_TARGETS}) + else() + target_link_libraries(${target} ${CONAN_LIBS}) + foreach(_LIB ${CONAN_LIBS_RELEASE}) + target_link_libraries(${target} optimized ${_LIB}) + endforeach() + foreach(_LIB ${CONAN_LIBS_DEBUG}) + target_link_libraries(${target} debug ${_LIB}) + endforeach() + endif() +endmacro() + + +### Definition of user declared vars (user_info) ### + diff --git a/qhull/test_package/build/aadcc2c40dab68a95374017995be48233063b305/conanbuildinfo.txt b/qhull/test_package/build/aadcc2c40dab68a95374017995be48233063b305/conanbuildinfo.txt new file mode 100644 index 0000000..1ad3e62 --- /dev/null +++ b/qhull/test_package/build/aadcc2c40dab68a95374017995be48233063b305/conanbuildinfo.txt @@ -0,0 +1,73 @@ +[includedirs] +/home/tom/.conan/data/QHull/f0bd8ce/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/include + +[libdirs] +/home/tom/.conan/data/QHull/f0bd8ce/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/lib + +[bindirs] + + +[resdirs] + + +[builddirs] +/home/tom/.conan/data/QHull/f0bd8ce/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/ + +[libs] +libqhullstatic + +[defines] + + +[cppflags] + + +[cflags] + + +[sharedlinkflags] + + +[exelinkflags] + + + +[includedirs_QHull] +/home/tom/.conan/data/QHull/f0bd8ce/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/include + +[libdirs_QHull] +/home/tom/.conan/data/QHull/f0bd8ce/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/lib + +[bindirs_QHull] + + +[resdirs_QHull] + + +[builddirs_QHull] +/home/tom/.conan/data/QHull/f0bd8ce/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/ + +[libs_QHull] +libqhullstatic + +[defines_QHull] + + +[cppflags_QHull] + + +[cflags_QHull] + + +[sharedlinkflags_QHull] + + +[exelinkflags_QHull] + + +[rootpath_QHull] +/home/tom/.conan/data/QHull/f0bd8ce/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9 + + +[USER_QHull] +[ENV_QHull] \ No newline at end of file diff --git a/qhull/test_package/build/aadcc2c40dab68a95374017995be48233063b305/conaninfo.txt b/qhull/test_package/build/aadcc2c40dab68a95374017995be48233063b305/conaninfo.txt new file mode 100644 index 0000000..e449089 --- /dev/null +++ b/qhull/test_package/build/aadcc2c40dab68a95374017995be48233063b305/conaninfo.txt @@ -0,0 +1,36 @@ +[settings] + arch=x86_64 + build_type=Release + compiler=gcc + compiler.libcxx=libstdc++ + compiler.version=5.4 + os=Linux + +[requires] + QHull/f0bd8ce + +[options] + + +[full_settings] + arch=x86_64 + build_type=Release + compiler=gcc + compiler.libcxx=libstdc++ + compiler.version=5.4 + os=Linux + +[full_requires] + QHull/f0bd8ce@intence/testing:81607951755e61cf17149d40bed6aba5b3a079a9 + +[full_options] + + +[scope] + + +[recipe_hash] + + +[env] + diff --git a/qhull/test_package/conanfile.py b/qhull/test_package/conanfile.py new file mode 100644 index 0000000..5f3a435 --- /dev/null +++ b/qhull/test_package/conanfile.py @@ -0,0 +1,22 @@ +from conans import ConanFile, CMake, tools +import os + +class QhullTestConan(ConanFile): + settings = "os", "compiler", "build_type", "arch" + generators = "cmake" + + def build(self): + cmake = CMake(self) + # Current dir is "test_package/build/" and CMakeLists.txt is in "test_package" + cmake.configure() + cmake.build() + + def imports(self): + self.copy("*.dll", dst="bin", src="bin") + self.copy("*.dylib*", dst="bin", src="lib") + self.copy('*.so*', dst='bin', src='lib') + + def test(self): + if not tools.cross_building(self.settings): + os.chdir("bin") + self.run(".%sexample" % os.sep) diff --git a/qhull/test_package/example.cpp b/qhull/test_package/example.cpp new file mode 100644 index 0000000..6269209 --- /dev/null +++ b/qhull/test_package/example.cpp @@ -0,0 +1,7 @@ +#include +#include + +int main() { + + return 0; +} diff --git a/qt/conanfile.py b/qt/conanfile.py new file mode 100644 index 0000000..29546b5 --- /dev/null +++ b/qt/conanfile.py @@ -0,0 +1,141 @@ +import os, sys +from distutils.spawn import find_executable +from conans import ConanFile, CMake +from conans.tools import download, unzip, vcvars_command, os_info, SystemPackageTool + +class QtConan(ConanFile): + name = "Qt" + version = "4.8.7" + ZIP_FOLDER_NAME = "qt-everywhere-opensource-src-%s" % (version) + settings = "os", "arch", "compiler", "build_type" + options = {"shared": [True, False], "opengl": ["desktop", "dynamic"]} + default_options = "shared=True", "opengl=desktop" + url="http://github.com/av3m/conan-qt" + license="LGPLv3" + exports_sources="qt.conf","test_package" + + def requirements(self): + if self.settings.os == "Windows": + self.requires("icu/[>57.0]@*/*") + + def source(self): + major = ".".join(self.version.split(".")[:2]) + url = "http://download.qt.io/official_releases/qt/{major}/{v}/qt-everywhere-opensource-src-{v}".format(major=major, v=self.version) + if self.settings.os == "Windows": + zip_name = "qt.zip" + url += ".zip" + else: + zip_name = "qt.tar.gz" + url += ".tar.gz" + + download(url, zip_name) + unzip(zip_name) + os.unlink(zip_name) + + if self.settings.os != "Windows": + self.run("chmod +x ./%s/configure" % self.ZIP_FOLDER_NAME) + + @property + def _thread_count(self): + concurrency = 1 + try: + import multiprocessing + concurrency = multiprocessing.cpu_count() + except (ImportError, NotImplementedError): + pass + return concurrency + + def build(self): + """ Define your project building. You decide the way of building it + to reuse it later in any other project. + """ + args = ["-opensource", "-confirm-license", "-nomake examples", "-nomake tests", "-prefix _dist"] + if not self.options.shared: + args.insert(0, "-static") + if self.settings.build_type == "Debug": + args.append("-debug") + else: + args.append("-release") + + if self.settings.os == "Windows": + if self.settings.compiler == "Visual Studio": + self._build_msvc(args) + else: + self._build_mingw(args) + else: + self._build_unix(args) + + def _build_msvc(self, args): + build_command = find_executable("jom.exe") + if build_command: + build_args = ["-j", str(self._thread_count)] + else: + build_command = "nmake.exe" + build_args = [] + self.output.info("Using '%s %s' to build" % (build_command, " ".join(build_args))) + + vcvars = vcvars_command(self.settings) + set_env = 'SET PATH={dir}/qtbase/bin;{dir}/gnuwin32/bin;%PATH%'.format(dir=self.conanfile_directory) + args += ["-opengl %s" % self.options.opengl] + # it seems not enough to set the vcvars for older versions, it works fine with MSVC2015 without -platform + if self.settings.compiler == "Visual Studio": + if self.settings.compiler.version == "12": + args += ["-platform win32-msvc2013"] + if self.settings.compiler.version == "11": + args += ["-platform win32-msvc2012"] + if self.settings.compiler.version == "10": + args += ["-platform win32-msvc2010"] + + self.run("cd %s && %s && %s && configure %s" % (self.ZIP_FOLDER_NAME, set_env, vcvars, " ".join(args))) + self.run("cd %s && %s && %s %s" % (self.ZIP_FOLDER_NAME, vcvars, build_command, " ".join(build_args))) + self.run("cd %s && %s && %s install" % (self.ZIP_FOLDER_NAME, vcvars, build_command)) + + def _build_mingw(self, args): + env = ConfigureEnvironment(self.deps_cpp_info, self.settings) + args += ["-developer-build", "-opengl %s" % self.options.opengl, "-platform win32-g++"] + + self.run("%s && cd %s && configure.bat %s" % (env.command_line_env, self.ZIP_FOLDER_NAME, " ".join(args))) + self.run("%s && cd %s && mingw32-make -j %s" % (env.command_line_env, self.ZIP_FOLDER_NAME, str(self._thread_count))) + self.run("%s && cd %s && mingw32-make install" % (env.command_line_env, self.ZIP_FOLDER_NAME)) + + def _build_unix(self, args): + if self.settings.os == "Linux": + args += ["-silent", "-xcb"] + else: + args += ["-silent"] + + self.run("cd %s && ./configure %s" % (self.ZIP_FOLDER_NAME, " ".join(args))) + self.run("cd %s && make -j %s" % (self.ZIP_FOLDER_NAME, str(self._thread_count))) + self.run("cd %s && make install" % (self.ZIP_FOLDER_NAME)) + + def package(self): + """ Define your conan structure: headers, libs, bins and data. After building your + project, this method is called to create a defined structure: + """ + src = "%s/bin/_dist" % (self.ZIP_FOLDER_NAME) + if self.settings.os == "Windows": + src = "%s/bin/_dist/_dist" % (self.ZIP_FOLDER_NAME) + self.copy(pattern="*", src=src) + self.copy("qt.conf",dst="bin",keep_paths=False) + + def package_info(self): + libs = ['3Support', + 'Core','Declarative','Designer', + 'Gui','Help','Multimedia','Network','OpenGL','Script','ScriptTools','Sql', + 'Svg','Test','UiTools','WebKit','Xml','XmlPatterns'] + if self.settings.os != "Windows": + libs += ['X11Extras', 'XcbQpa'] + + self.cpp_info.libs = [] + self.cpp_info.includedirs = ["include"] + for lib in libs: + if self.settings.os == "Windows" and self.settings.build_type == "Debug": + suffix = "4d" + else: + suffix = "4" + self.cpp_info.libs += ["Qt%s%s" % (lib, suffix)] + self.cpp_info.includedirs += ["include/Qt%s" % lib] + + if self.settings.os == "Windows": + # Some missing shared libs inside QML and others, but for the test it works + self.env_info.path.append(os.path.join(self.package_folder, "bin")) diff --git a/qt/qt.conf b/qt/qt.conf new file mode 100644 index 0000000..6600ae3 --- /dev/null +++ b/qt/qt.conf @@ -0,0 +1,3 @@ +[Paths] +Prefix=".." + diff --git a/suitesparse/FindBLAS.cmake b/suitesparse/FindBLAS.cmake new file mode 100644 index 0000000..f030424 --- /dev/null +++ b/suitesparse/FindBLAS.cmake @@ -0,0 +1,5 @@ +find_package(SuiteSparse) +set(BLAS_FOUND ${SuiteSparse_FOUND}) +set(BLAS_LIBRARIES ${SuiteSparse_LIBRARIES}) +set(BLAS_LIBRARY ${SuiteSparse_LIBRARIES}) +set(BLAS_INCLUDE_DIRS ${SuiteSparse_INCLUDE_DIRS}) \ No newline at end of file diff --git a/suitesparse/FindCSparse.cmake b/suitesparse/FindCSparse.cmake new file mode 100644 index 0000000..c079f7f --- /dev/null +++ b/suitesparse/FindCSparse.cmake @@ -0,0 +1,10 @@ +find_package(SuiteSparse COMPONENTS cxsparse ) +set(CSparse_FOUND ${SuiteSparse_FOUND}) +set(CSparse_LIBRARIES ${SuiteSparse_LIBRARIES}) +set(CSparse_LIBRARY ${SuiteSparse_LIBRARIES}) +set(CSparse_INCLUDE_DIRS ${SuiteSparse_INCLUDE_DIRS}) + +set(CSPARSE_FOUND ${SuiteSparse_FOUND}) +set(CSPARSE_LIBRARIES ${SuiteSparse_LIBRARIES}) +set(CSPARSE_LIBRARY ${SuiteSparse_LIBRARIES}) +set(CSPARSE_INCLUDE_DIRS ${SuiteSparse_INCLUDE_DIRS}) \ No newline at end of file diff --git a/suitesparse/FindCholmod.cmake b/suitesparse/FindCholmod.cmake new file mode 100644 index 0000000..2160bda --- /dev/null +++ b/suitesparse/FindCholmod.cmake @@ -0,0 +1,12 @@ + + +find_package(SuiteSparse) +set(Cholmod_FOUND ${SuiteSparse_FOUND}) +set(Cholmod_LIBRARIES ${SuiteSparse_LIBRARIES}) +set(Cholmod_LIBRARY ${SuiteSparse_LIBRARIES}) +set(Cholmod_INCLUDE_DIRS ${SuiteSparse_INCLUDE_DIRS}) + +set(CHOLMOD_FOUND ${SuiteSparse_FOUND}) +set(CHOLMOD_LIBRARIES ${SuiteSparse_LIBRARIES}) +set(CHOLMOD_LIBRARY ${SuiteSparse_LIBRARIES}) +set(CHOLMOD_INCLUDE_DIRS ${SuiteSparse_INCLUDE_DIRS}) \ No newline at end of file diff --git a/suitesparse/FindLAPACK.cmake b/suitesparse/FindLAPACK.cmake new file mode 100644 index 0000000..3161a48 --- /dev/null +++ b/suitesparse/FindLAPACK.cmake @@ -0,0 +1,5 @@ +find_package(SuiteSparse) +set(LAPACK_FOUND ${SuiteSparse_FOUND}) +set(LAPACK_LIBRARIES ${SuiteSparse_LIBRARIES}) +set(LAPACK_LIBRARY ${SuiteSparse_LIBRARIES}) +set(LAPACK_INCLUDE_DIRS ${SuiteSparse_INCLUDE_DIRS}) \ No newline at end of file diff --git a/suitesparse/conanfile.py b/suitesparse/conanfile.py new file mode 100644 index 0000000..4691a88 --- /dev/null +++ b/suitesparse/conanfile.py @@ -0,0 +1,106 @@ +from conans import ConanFile, CMake, tools +import os +import shutil + + +class SuiteSparseConan(ConanFile): + name = "suitesparse" + license = "" + url = "https://github.com/Av3m/conan-suitesparse.git" + settings = "os", "compiler", "build_type", "arch" + generators = "cmake" + exports_sources = "*.cmake" + + def system_requirements(self): + packages = [] + installer = tools.SystemPackageTool() + + if tools.os_info.linux_distro == "ubuntu": + packages.append("liblapack-dev") + packages.append("liblas-dev") + + if ( len(packages) > 0): + installer.install(packages) + + def source(self): + self.run("git clone --branch master http://github.com/jlblancoc/suitesparse-metis-for-windows.git suitesparse") + self.run("cd suitesparse && git checkout %s" % (self.version)) + # This small hack might be useful to guarantee proper /MT /MD linkage in MSVC + # if the packaged project doesn't have variables to set it properly + tools.replace_in_file("suitesparse/CMakeLists.txt", "PROJECT(SuiteSparseProject)", '''PROJECT(SuiteSparseProject) +include(${CMAKE_BINARY_DIR}/conanbuildinfo.cmake) +conan_basic_setup()''') + + #tools.replace_in_file("suitesparse/CMakeLists.txt", + # """set(ConfigPackageLocation ${CMAKE_INSTALL_LIBDIR}/cmake/suitesparse-${SuiteSparse_VERSION})""", + # """set(ConfigPackageLocation ${CMAKE_INSTALL_PREFIX}/cmake""") + + def build(self): + cmake = CMake(self) + cmake.definitions["BUILD_SHARED_LIBS"] = "ON" + + cmake.definitions["CMAKE_INSTALL_PREFIX"] = os.path.join(self.build_folder,"install") + cmake.configure(source_dir='suitesparse',build_dir='.') + cmake.build() + cmake.install() + + if self.settings.compiler == "Visual Studio": + shutil.copy("install/lib64/lapack_blas_windows/liblapack.lib","install/lib64/lapack_blas_windows/lapack.lib") + shutil.copy("install/lib64/lapack_blas_windows/libblas.lib","install/lib64/lapack_blas_windows/blas.lib") + + + + def package(self): + self.copy("*",src="install", dst=".", keep_path=True) + self.copy("FindCholmod.cmake",src=".", dst=".", keep_path=True) + self.copy("FindCSparse.cmake",src=".", dst=".", keep_path=True) + if ( self.settings.compiler == "Visual Studio" ): + self.copy("FindBLAS.cmake",src=".", dst=".", keep_path=True) + self.copy("FindLAPACK.cmake",src=".", dst=".", keep_path=True) + + + + def package_info(self): + self.cpp_info.libdirs = ['lib'] + self.cpp_info.includedirs = ['include', 'include/suitesparse'] # Ordered list of include paths + self.cpp_info.bindirs = ['bin'] # Directories where executables and shared libs can be found + + self.cpp_info.libs = ['libamd', + 'libbtf', + 'libcamd', + 'libccolamd', + 'libcholmod', + 'libcolamd', + 'libcxsparse', + 'libklu', + 'libldl', + 'libspqr', + 'libumfpack', + 'metis', + 'suitesparseconfig'] # The libs to link against + + if ( self.settings.os=="Windows"): + self.cpp_info.libs.append('libblas') + self.cpp_info.libs.append('liblapack') + self.cpp_info.bindirs.append('lib64/lapack_blas_windows') + self.env_info.path.append(os.path.join(self.package_folder, 'lib64/lapack_blas_windows')) + + if ( self.settings.arch == "x86_64"): + self.cpp_info.libdirs.append('lib64/lapack_blas_windows') + else: + self.cpp_info.libdirs.append('lib/lapack_blas_windows') + + if ( self.settings.arch == "x86_64"): + self.cpp_info.libdirs.append('lib64') + else: + self.cpp_info.libdirs.append('lib') + + + self.cpp_info.resdirs = [] # Directories where resources, data, etc can be found + + self.cpp_info.defines = [] # preprocessor definitions + self.cpp_info.cflags = [] # pure C flags + self.cpp_info.cppflags = [] # C++ compilation flags + self.cpp_info.sharedlinkflags = [] # linker flags + self.cpp_info.exelinkflags = [] # linker flags + diff --git a/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/ALL_BUILD.vcxproj b/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/ALL_BUILD.vcxproj new file mode 100644 index 0000000..c3695b1 --- /dev/null +++ b/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/ALL_BUILD.vcxproj @@ -0,0 +1,169 @@ + + + + + Debug + x64 + + + Release + x64 + + + MinSizeRel + x64 + + + RelWithDebInfo + x64 + + + + {912CA933-3C84-329F-B76E-4F0ED9CCF70D} + Win32Proj + x64 + ALL_BUILD + + + + Utility + MultiByte + v100 + + + Utility + MultiByte + v100 + + + Utility + MultiByte + v100 + + + Utility + MultiByte + v100 + + + + + + + + + + <_ProjectFileVersion>10.0.20506.1 + $(Platform)\$(Configuration)\$(ProjectName)\ + $(Platform)\$(Configuration)\$(ProjectName)\ + $(Platform)\$(Configuration)\$(ProjectName)\ + $(Platform)\$(Configuration)\$(ProjectName)\ + + + + C:\Users\t.vogl\.conan\data\suitesparse\5164583\spielwiese\testing\package\85f780d0530411a64b0be4407b381706014b445d\include;C:\Users\t.vogl\.conan\data\suitesparse\5164583\spielwiese\testing\package\85f780d0530411a64b0be4407b381706014b445d\include\suitesparse;%(AdditionalIncludeDirectories) + $(ProjectDir)/$(IntDir) + %(Filename).h + %(Filename).tlb + %(Filename)_i.c + %(Filename)_p.c + + + + + C:\Users\t.vogl\.conan\data\suitesparse\5164583\spielwiese\testing\package\85f780d0530411a64b0be4407b381706014b445d\include;C:\Users\t.vogl\.conan\data\suitesparse\5164583\spielwiese\testing\package\85f780d0530411a64b0be4407b381706014b445d\include\suitesparse;%(AdditionalIncludeDirectories) + $(ProjectDir)/$(IntDir) + %(Filename).h + %(Filename).tlb + %(Filename)_i.c + %(Filename)_p.c + + + + + C:\Users\t.vogl\.conan\data\suitesparse\5164583\spielwiese\testing\package\85f780d0530411a64b0be4407b381706014b445d\include;C:\Users\t.vogl\.conan\data\suitesparse\5164583\spielwiese\testing\package\85f780d0530411a64b0be4407b381706014b445d\include\suitesparse;%(AdditionalIncludeDirectories) + $(ProjectDir)/$(IntDir) + %(Filename).h + %(Filename).tlb + %(Filename)_i.c + %(Filename)_p.c + + + + + C:\Users\t.vogl\.conan\data\suitesparse\5164583\spielwiese\testing\package\85f780d0530411a64b0be4407b381706014b445d\include;C:\Users\t.vogl\.conan\data\suitesparse\5164583\spielwiese\testing\package\85f780d0530411a64b0be4407b381706014b445d\include\suitesparse;%(AdditionalIncludeDirectories) + $(ProjectDir)/$(IntDir) + %(Filename).h + %(Filename).tlb + %(Filename)_i.c + %(Filename)_p.c + + + + + Building Custom Rule C:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/src/CMakeLists.txt + setlocal +"C:\Program Files\CMake\bin\cmake.exe" -HC:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/src -BC:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6 --check-stamp-file C:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/CMakeFiles/generate.stamp +if %errorlevel% neq 0 goto :cmEnd +:cmEnd +endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone +:cmErrorLevel +exit /b %1 +:cmDone +if %errorlevel% neq 0 goto :VCEnd + C:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/src/CMakeLists.txt;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\src\CMakeLists.txt;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineSystem.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeSystem.cmake.in;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\8caf9177abcac060b9a1d922dc1cef659dbe50b6\CMakeFiles\3.10.0\CMakeSystem.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeSystemSpecificInitialize.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCompilerId.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCompilerIdDetection.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\ADSP-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\ARMCC-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\AppleClang-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Clang-DetermineCompilerInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Borland-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Bruce-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Clang-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Clang-DetermineCompilerInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Compaq-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Cray-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Embarcadero-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Fujitsu-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\GHS-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\GNU-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\HP-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\IAR-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Intel-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\MIPSpro-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\MSVC-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\NVIDIA-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\OpenWatcom-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\PGI-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\PathScale-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\SCO-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\SDCC-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\SunPro-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\TI-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\TinyCC-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\VisualAge-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\IBMCPP-C-DetermineVersionInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Watcom-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\XL-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\IBMCPP-C-DetermineVersionInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\zOS-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\IBMCPP-C-DetermineVersionInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CompilerId\VS-10.vcxproj.in;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeFindBinUtils.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCCompiler.cmake.in;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\8caf9177abcac060b9a1d922dc1cef659dbe50b6\CMakeFiles\3.10.0\CMakeCCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCXXCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\Windows-Determine-CXX.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCompilerId.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCompilerIdDetection.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\ADSP-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\ARMCC-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\AppleClang-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Clang-DetermineCompilerInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Borland-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Clang-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Clang-DetermineCompilerInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Comeau-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Compaq-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Cray-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Embarcadero-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Fujitsu-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\GHS-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\GNU-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\HP-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\IAR-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Intel-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\MIPSpro-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\MSVC-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\NVIDIA-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\OpenWatcom-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\PGI-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\PathScale-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\SCO-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\SunPro-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\TI-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\VisualAge-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\IBMCPP-CXX-DetermineVersionInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Watcom-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\XL-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\IBMCPP-CXX-DetermineVersionInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\zOS-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\IBMCPP-CXX-DetermineVersionInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CompilerId\VS-10.vcxproj.in;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeFindBinUtils.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCXXCompiler.cmake.in;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\8caf9177abcac060b9a1d922dc1cef659dbe50b6\CMakeFiles\3.10.0\CMakeCXXCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeSystemSpecificInformation.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeGenericSystem.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\Windows.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\WindowsPaths.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCInformation.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeLanguageInformation.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\Windows-MSVC-C.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\Windows-MSVC.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineRCCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeRCCompiler.cmake.in;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\8caf9177abcac060b9a1d922dc1cef659dbe50b6\CMakeFiles\3.10.0\CMakeRCCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeRCInformation.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeTestRCCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCommonLanguageInclude.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeTestCCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeTestCompilerCommon.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCompilerABI.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeParseImplicitLinkInfo.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCCompilerABI.c;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCompileFeatures.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCCompiler.cmake.in;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\8caf9177abcac060b9a1d922dc1cef659dbe50b6\CMakeFiles\3.10.0\CMakeCCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCXXInformation.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeLanguageInformation.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\MSVC-CXX.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\CMakeCommonCompilerMacros.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\Windows-MSVC-CXX.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\Windows-MSVC.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCommonLanguageInclude.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeTestCXXCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeTestCompilerCommon.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCompilerABI.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeParseImplicitLinkInfo.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCXXCompilerABI.cpp;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCompileFeatures.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Internal\FeatureTesting.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\MSVC-CXX-FeatureTests.cmake;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\8caf9177abcac060b9a1d922dc1cef659dbe50b6\CMakeFiles\feature_tests.cxx;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCXXCompiler.cmake.in;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\8caf9177abcac060b9a1d922dc1cef659dbe50b6\CMakeFiles\3.10.0\CMakeCXXCompiler.cmake;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\8caf9177abcac060b9a1d922dc1cef659dbe50b6\conanbuildinfo.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeParseArguments.cmake;C:\Users\t.vogl\.conan\data\suitesparse\5164583\spielwiese\testing\package\85f780d0530411a64b0be4407b381706014b445d\FindCholmod.cmake;C:\Users\t.vogl\.conan\data\suitesparse\5164583\spielwiese\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\cmake\suitesparse-4.5.0\suitesparse-config-version.cmake;C:\Users\t.vogl\.conan\data\suitesparse\5164583\spielwiese\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\cmake\suitesparse-4.5.0\suitesparse-config.cmake;C:\Users\t.vogl\.conan\data\suitesparse\5164583\spielwiese\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\cmake\suitesparse-4.5.0\SuiteSparse-targets.cmake;C:\Users\t.vogl\.conan\data\suitesparse\5164583\spielwiese\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\cmake\suitesparse-4.5.0\SuiteSparse-targets-release.cmake;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\src\CMakeLists.txt;%(AdditionalInputs) + C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\8caf9177abcac060b9a1d922dc1cef659dbe50b6\CMakeFiles\generate.stamp + Building Custom Rule C:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/src/CMakeLists.txt + setlocal +"C:\Program Files\CMake\bin\cmake.exe" -HC:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/src -BC:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6 --check-stamp-file C:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/CMakeFiles/generate.stamp +if %errorlevel% neq 0 goto :cmEnd +:cmEnd +endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone +:cmErrorLevel +exit /b %1 +:cmDone +if %errorlevel% neq 0 goto :VCEnd + C:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/src/CMakeLists.txt;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\src\CMakeLists.txt;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineSystem.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeSystem.cmake.in;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\8caf9177abcac060b9a1d922dc1cef659dbe50b6\CMakeFiles\3.10.0\CMakeSystem.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeSystemSpecificInitialize.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCompilerId.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCompilerIdDetection.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\ADSP-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\ARMCC-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\AppleClang-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Clang-DetermineCompilerInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Borland-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Bruce-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Clang-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Clang-DetermineCompilerInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Compaq-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Cray-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Embarcadero-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Fujitsu-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\GHS-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\GNU-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\HP-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\IAR-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Intel-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\MIPSpro-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\MSVC-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\NVIDIA-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\OpenWatcom-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\PGI-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\PathScale-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\SCO-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\SDCC-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\SunPro-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\TI-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\TinyCC-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\VisualAge-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\IBMCPP-C-DetermineVersionInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Watcom-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\XL-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\IBMCPP-C-DetermineVersionInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\zOS-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\IBMCPP-C-DetermineVersionInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CompilerId\VS-10.vcxproj.in;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeFindBinUtils.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCCompiler.cmake.in;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\8caf9177abcac060b9a1d922dc1cef659dbe50b6\CMakeFiles\3.10.0\CMakeCCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCXXCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\Windows-Determine-CXX.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCompilerId.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCompilerIdDetection.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\ADSP-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\ARMCC-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\AppleClang-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Clang-DetermineCompilerInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Borland-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Clang-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Clang-DetermineCompilerInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Comeau-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Compaq-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Cray-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Embarcadero-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Fujitsu-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\GHS-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\GNU-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\HP-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\IAR-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Intel-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\MIPSpro-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\MSVC-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\NVIDIA-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\OpenWatcom-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\PGI-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\PathScale-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\SCO-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\SunPro-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\TI-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\VisualAge-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\IBMCPP-CXX-DetermineVersionInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Watcom-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\XL-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\IBMCPP-CXX-DetermineVersionInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\zOS-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\IBMCPP-CXX-DetermineVersionInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CompilerId\VS-10.vcxproj.in;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeFindBinUtils.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCXXCompiler.cmake.in;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\8caf9177abcac060b9a1d922dc1cef659dbe50b6\CMakeFiles\3.10.0\CMakeCXXCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeSystemSpecificInformation.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeGenericSystem.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\Windows.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\WindowsPaths.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCInformation.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeLanguageInformation.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\Windows-MSVC-C.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\Windows-MSVC.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineRCCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeRCCompiler.cmake.in;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\8caf9177abcac060b9a1d922dc1cef659dbe50b6\CMakeFiles\3.10.0\CMakeRCCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeRCInformation.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeTestRCCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCommonLanguageInclude.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeTestCCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeTestCompilerCommon.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCompilerABI.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeParseImplicitLinkInfo.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCCompilerABI.c;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCompileFeatures.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCCompiler.cmake.in;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\8caf9177abcac060b9a1d922dc1cef659dbe50b6\CMakeFiles\3.10.0\CMakeCCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCXXInformation.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeLanguageInformation.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\MSVC-CXX.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\CMakeCommonCompilerMacros.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\Windows-MSVC-CXX.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\Windows-MSVC.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCommonLanguageInclude.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeTestCXXCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeTestCompilerCommon.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCompilerABI.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeParseImplicitLinkInfo.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCXXCompilerABI.cpp;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCompileFeatures.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Internal\FeatureTesting.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\MSVC-CXX-FeatureTests.cmake;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\8caf9177abcac060b9a1d922dc1cef659dbe50b6\CMakeFiles\feature_tests.cxx;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCXXCompiler.cmake.in;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\8caf9177abcac060b9a1d922dc1cef659dbe50b6\CMakeFiles\3.10.0\CMakeCXXCompiler.cmake;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\8caf9177abcac060b9a1d922dc1cef659dbe50b6\conanbuildinfo.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeParseArguments.cmake;C:\Users\t.vogl\.conan\data\suitesparse\5164583\spielwiese\testing\package\85f780d0530411a64b0be4407b381706014b445d\FindCholmod.cmake;C:\Users\t.vogl\.conan\data\suitesparse\5164583\spielwiese\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\cmake\suitesparse-4.5.0\suitesparse-config-version.cmake;C:\Users\t.vogl\.conan\data\suitesparse\5164583\spielwiese\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\cmake\suitesparse-4.5.0\suitesparse-config.cmake;C:\Users\t.vogl\.conan\data\suitesparse\5164583\spielwiese\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\cmake\suitesparse-4.5.0\SuiteSparse-targets.cmake;C:\Users\t.vogl\.conan\data\suitesparse\5164583\spielwiese\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\cmake\suitesparse-4.5.0\SuiteSparse-targets-release.cmake;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\src\CMakeLists.txt;%(AdditionalInputs) + C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\8caf9177abcac060b9a1d922dc1cef659dbe50b6\CMakeFiles\generate.stamp + Building Custom Rule C:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/src/CMakeLists.txt + setlocal +"C:\Program Files\CMake\bin\cmake.exe" -HC:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/src -BC:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6 --check-stamp-file C:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/CMakeFiles/generate.stamp +if %errorlevel% neq 0 goto :cmEnd +:cmEnd +endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone +:cmErrorLevel +exit /b %1 +:cmDone +if %errorlevel% neq 0 goto :VCEnd + C:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/src/CMakeLists.txt;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\src\CMakeLists.txt;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineSystem.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeSystem.cmake.in;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\8caf9177abcac060b9a1d922dc1cef659dbe50b6\CMakeFiles\3.10.0\CMakeSystem.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeSystemSpecificInitialize.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCompilerId.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCompilerIdDetection.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\ADSP-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\ARMCC-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\AppleClang-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Clang-DetermineCompilerInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Borland-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Bruce-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Clang-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Clang-DetermineCompilerInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Compaq-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Cray-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Embarcadero-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Fujitsu-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\GHS-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\GNU-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\HP-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\IAR-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Intel-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\MIPSpro-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\MSVC-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\NVIDIA-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\OpenWatcom-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\PGI-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\PathScale-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\SCO-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\SDCC-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\SunPro-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\TI-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\TinyCC-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\VisualAge-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\IBMCPP-C-DetermineVersionInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Watcom-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\XL-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\IBMCPP-C-DetermineVersionInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\zOS-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\IBMCPP-C-DetermineVersionInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CompilerId\VS-10.vcxproj.in;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeFindBinUtils.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCCompiler.cmake.in;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\8caf9177abcac060b9a1d922dc1cef659dbe50b6\CMakeFiles\3.10.0\CMakeCCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCXXCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\Windows-Determine-CXX.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCompilerId.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCompilerIdDetection.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\ADSP-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\ARMCC-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\AppleClang-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Clang-DetermineCompilerInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Borland-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Clang-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Clang-DetermineCompilerInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Comeau-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Compaq-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Cray-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Embarcadero-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Fujitsu-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\GHS-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\GNU-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\HP-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\IAR-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Intel-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\MIPSpro-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\MSVC-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\NVIDIA-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\OpenWatcom-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\PGI-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\PathScale-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\SCO-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\SunPro-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\TI-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\VisualAge-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\IBMCPP-CXX-DetermineVersionInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Watcom-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\XL-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\IBMCPP-CXX-DetermineVersionInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\zOS-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\IBMCPP-CXX-DetermineVersionInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CompilerId\VS-10.vcxproj.in;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeFindBinUtils.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCXXCompiler.cmake.in;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\8caf9177abcac060b9a1d922dc1cef659dbe50b6\CMakeFiles\3.10.0\CMakeCXXCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeSystemSpecificInformation.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeGenericSystem.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\Windows.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\WindowsPaths.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCInformation.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeLanguageInformation.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\Windows-MSVC-C.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\Windows-MSVC.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineRCCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeRCCompiler.cmake.in;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\8caf9177abcac060b9a1d922dc1cef659dbe50b6\CMakeFiles\3.10.0\CMakeRCCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeRCInformation.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeTestRCCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCommonLanguageInclude.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeTestCCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeTestCompilerCommon.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCompilerABI.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeParseImplicitLinkInfo.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCCompilerABI.c;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCompileFeatures.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCCompiler.cmake.in;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\8caf9177abcac060b9a1d922dc1cef659dbe50b6\CMakeFiles\3.10.0\CMakeCCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCXXInformation.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeLanguageInformation.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\MSVC-CXX.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\CMakeCommonCompilerMacros.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\Windows-MSVC-CXX.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\Windows-MSVC.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCommonLanguageInclude.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeTestCXXCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeTestCompilerCommon.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCompilerABI.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeParseImplicitLinkInfo.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCXXCompilerABI.cpp;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCompileFeatures.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Internal\FeatureTesting.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\MSVC-CXX-FeatureTests.cmake;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\8caf9177abcac060b9a1d922dc1cef659dbe50b6\CMakeFiles\feature_tests.cxx;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCXXCompiler.cmake.in;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\8caf9177abcac060b9a1d922dc1cef659dbe50b6\CMakeFiles\3.10.0\CMakeCXXCompiler.cmake;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\8caf9177abcac060b9a1d922dc1cef659dbe50b6\conanbuildinfo.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeParseArguments.cmake;C:\Users\t.vogl\.conan\data\suitesparse\5164583\spielwiese\testing\package\85f780d0530411a64b0be4407b381706014b445d\FindCholmod.cmake;C:\Users\t.vogl\.conan\data\suitesparse\5164583\spielwiese\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\cmake\suitesparse-4.5.0\suitesparse-config-version.cmake;C:\Users\t.vogl\.conan\data\suitesparse\5164583\spielwiese\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\cmake\suitesparse-4.5.0\suitesparse-config.cmake;C:\Users\t.vogl\.conan\data\suitesparse\5164583\spielwiese\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\cmake\suitesparse-4.5.0\SuiteSparse-targets.cmake;C:\Users\t.vogl\.conan\data\suitesparse\5164583\spielwiese\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\cmake\suitesparse-4.5.0\SuiteSparse-targets-release.cmake;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\src\CMakeLists.txt;%(AdditionalInputs) + C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\8caf9177abcac060b9a1d922dc1cef659dbe50b6\CMakeFiles\generate.stamp + Building Custom Rule C:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/src/CMakeLists.txt + setlocal +"C:\Program Files\CMake\bin\cmake.exe" -HC:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/src -BC:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6 --check-stamp-file C:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/CMakeFiles/generate.stamp +if %errorlevel% neq 0 goto :cmEnd +:cmEnd +endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone +:cmErrorLevel +exit /b %1 +:cmDone +if %errorlevel% neq 0 goto :VCEnd + C:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/src/CMakeLists.txt;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\src\CMakeLists.txt;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineSystem.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeSystem.cmake.in;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\8caf9177abcac060b9a1d922dc1cef659dbe50b6\CMakeFiles\3.10.0\CMakeSystem.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeSystemSpecificInitialize.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCompilerId.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCompilerIdDetection.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\ADSP-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\ARMCC-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\AppleClang-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Clang-DetermineCompilerInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Borland-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Bruce-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Clang-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Clang-DetermineCompilerInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Compaq-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Cray-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Embarcadero-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Fujitsu-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\GHS-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\GNU-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\HP-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\IAR-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Intel-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\MIPSpro-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\MSVC-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\NVIDIA-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\OpenWatcom-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\PGI-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\PathScale-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\SCO-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\SDCC-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\SunPro-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\TI-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\TinyCC-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\VisualAge-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\IBMCPP-C-DetermineVersionInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Watcom-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\XL-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\IBMCPP-C-DetermineVersionInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\zOS-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\IBMCPP-C-DetermineVersionInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CompilerId\VS-10.vcxproj.in;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeFindBinUtils.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCCompiler.cmake.in;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\8caf9177abcac060b9a1d922dc1cef659dbe50b6\CMakeFiles\3.10.0\CMakeCCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCXXCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\Windows-Determine-CXX.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCompilerId.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCompilerIdDetection.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\ADSP-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\ARMCC-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\AppleClang-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Clang-DetermineCompilerInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Borland-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Clang-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Clang-DetermineCompilerInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Comeau-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Compaq-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Cray-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Embarcadero-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Fujitsu-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\GHS-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\GNU-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\HP-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\IAR-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Intel-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\MIPSpro-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\MSVC-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\NVIDIA-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\OpenWatcom-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\PGI-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\PathScale-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\SCO-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\SunPro-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\TI-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\VisualAge-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\IBMCPP-CXX-DetermineVersionInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Watcom-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\XL-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\IBMCPP-CXX-DetermineVersionInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\zOS-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\IBMCPP-CXX-DetermineVersionInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CompilerId\VS-10.vcxproj.in;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeFindBinUtils.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCXXCompiler.cmake.in;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\8caf9177abcac060b9a1d922dc1cef659dbe50b6\CMakeFiles\3.10.0\CMakeCXXCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeSystemSpecificInformation.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeGenericSystem.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\Windows.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\WindowsPaths.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCInformation.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeLanguageInformation.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\Windows-MSVC-C.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\Windows-MSVC.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineRCCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeRCCompiler.cmake.in;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\8caf9177abcac060b9a1d922dc1cef659dbe50b6\CMakeFiles\3.10.0\CMakeRCCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeRCInformation.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeTestRCCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCommonLanguageInclude.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeTestCCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeTestCompilerCommon.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCompilerABI.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeParseImplicitLinkInfo.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCCompilerABI.c;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCompileFeatures.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCCompiler.cmake.in;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\8caf9177abcac060b9a1d922dc1cef659dbe50b6\CMakeFiles\3.10.0\CMakeCCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCXXInformation.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeLanguageInformation.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\MSVC-CXX.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\CMakeCommonCompilerMacros.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\Windows-MSVC-CXX.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\Windows-MSVC.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCommonLanguageInclude.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeTestCXXCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeTestCompilerCommon.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCompilerABI.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeParseImplicitLinkInfo.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCXXCompilerABI.cpp;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCompileFeatures.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Internal\FeatureTesting.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\MSVC-CXX-FeatureTests.cmake;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\8caf9177abcac060b9a1d922dc1cef659dbe50b6\CMakeFiles\feature_tests.cxx;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCXXCompiler.cmake.in;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\8caf9177abcac060b9a1d922dc1cef659dbe50b6\CMakeFiles\3.10.0\CMakeCXXCompiler.cmake;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\8caf9177abcac060b9a1d922dc1cef659dbe50b6\conanbuildinfo.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeParseArguments.cmake;C:\Users\t.vogl\.conan\data\suitesparse\5164583\spielwiese\testing\package\85f780d0530411a64b0be4407b381706014b445d\FindCholmod.cmake;C:\Users\t.vogl\.conan\data\suitesparse\5164583\spielwiese\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\cmake\suitesparse-4.5.0\suitesparse-config-version.cmake;C:\Users\t.vogl\.conan\data\suitesparse\5164583\spielwiese\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\cmake\suitesparse-4.5.0\suitesparse-config.cmake;C:\Users\t.vogl\.conan\data\suitesparse\5164583\spielwiese\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\cmake\suitesparse-4.5.0\SuiteSparse-targets.cmake;C:\Users\t.vogl\.conan\data\suitesparse\5164583\spielwiese\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\cmake\suitesparse-4.5.0\SuiteSparse-targets-release.cmake;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\src\CMakeLists.txt;%(AdditionalInputs) + C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\8caf9177abcac060b9a1d922dc1cef659dbe50b6\CMakeFiles\generate.stamp + + + + + + + {07D38AA1-E7DC-3A7E-8679-43696B099434} + ZERO_CHECK + + + {B0E39398-2895-35AA-B15E-50C98EC4727E} + cholmod-test + + + + + + \ No newline at end of file diff --git a/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/ALL_BUILD.vcxproj.filters b/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/ALL_BUILD.vcxproj.filters new file mode 100644 index 0000000..c7cf393 --- /dev/null +++ b/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/ALL_BUILD.vcxproj.filters @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/CMakeCache.txt b/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/CMakeCache.txt new file mode 100644 index 0000000..373e5b0 --- /dev/null +++ b/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/CMakeCache.txt @@ -0,0 +1,335 @@ +# This is the CMakeCache file. +# For build in directory: c:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6 +# It was generated by CMake: C:/Program Files/CMake/bin/cmake.exe +# 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 +######################## + +//For backwards compatibility, what version of CMake commands and +// syntax should this version of CMake try to support. +CMAKE_BACKWARDS_COMPATIBILITY:STRING=2.4 + +//Semicolon separated list of supported configuration types, only +// supports Debug, Release, MinSizeRel, and RelWithDebInfo, anything +// else will be ignored. +CMAKE_CONFIGURATION_TYPES:STRING=Debug;Release;MinSizeRel;RelWithDebInfo + +//Flags used by the compiler during all build types. +CMAKE_CXX_FLAGS:STRING=/DWIN32 /D_WINDOWS /W3 /GR /EHsc + +//Flags used by the compiler during debug builds. +CMAKE_CXX_FLAGS_DEBUG:STRING=/MDd /Zi /Ob0 /Od /RTC1 + +//Flags used by the compiler during release builds for minimum +// size. +CMAKE_CXX_FLAGS_MINSIZEREL:STRING=/MD /O1 /Ob1 /DNDEBUG + +//Flags used by the compiler during release builds. +CMAKE_CXX_FLAGS_RELEASE:STRING=/MD /O2 /Ob2 /DNDEBUG + +//Flags used by the compiler during release builds with debug info. +CMAKE_CXX_FLAGS_RELWITHDEBINFO:STRING=/MD /Zi /O2 /Ob1 /DNDEBUG + +//Libraries linked by default with all C++ applications. +CMAKE_CXX_STANDARD_LIBRARIES:STRING=kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib + +//Flags used by the compiler during all build types. +CMAKE_C_FLAGS:STRING=/DWIN32 /D_WINDOWS /W3 + +//Flags used by the compiler during debug builds. +CMAKE_C_FLAGS_DEBUG:STRING=/MDd /Zi /Ob0 /Od /RTC1 + +//Flags used by the compiler during release builds for minimum +// size. +CMAKE_C_FLAGS_MINSIZEREL:STRING=/MD /O1 /Ob1 /DNDEBUG + +//Flags used by the compiler during release builds. +CMAKE_C_FLAGS_RELEASE:STRING=/MD /O2 /Ob2 /DNDEBUG + +//Flags used by the compiler during release builds with debug info. +CMAKE_C_FLAGS_RELWITHDEBINFO:STRING=/MD /Zi /O2 /Ob1 /DNDEBUG + +//Libraries linked by default with all C applications. +CMAKE_C_STANDARD_LIBRARIES:STRING=kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib + +//Flags used by the linker. +CMAKE_EXE_LINKER_FLAGS:STRING=/machine:x64 + +//Flags used by the linker during debug builds. +CMAKE_EXE_LINKER_FLAGS_DEBUG:STRING=/debug /INCREMENTAL + +//Flags used by the linker during release minsize builds. +CMAKE_EXE_LINKER_FLAGS_MINSIZEREL:STRING=/INCREMENTAL:NO + +//Flags used by the linker during release builds. +CMAKE_EXE_LINKER_FLAGS_RELEASE:STRING=/INCREMENTAL:NO + +//Flags used by the linker during Release with Debug Info builds. +CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO:STRING=/debug /INCREMENTAL + +//Install path prefix, prepended onto install directories. +CMAKE_INSTALL_PREFIX:PATH=C:/Program Files/SuitesparseTest + +//Path to a program. +CMAKE_LINKER:FILEPATH=C:/Program Files (x86)/Microsoft Visual Studio 10.0/VC/bin/x86_amd64/link.exe + +//Flags used by the linker during the creation of modules. +CMAKE_MODULE_LINKER_FLAGS:STRING=/machine:x64 + +//Flags used by the linker during debug builds. +CMAKE_MODULE_LINKER_FLAGS_DEBUG:STRING=/debug /INCREMENTAL + +//Flags used by the linker during release minsize builds. +CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL:STRING=/INCREMENTAL:NO + +//Flags used by the linker during release builds. +CMAKE_MODULE_LINKER_FLAGS_RELEASE:STRING=/INCREMENTAL:NO + +//Flags used by the linker during Release with Debug Info builds. +CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO:STRING=/debug /INCREMENTAL + +//Value Computed by CMake +CMAKE_PROJECT_NAME:STATIC=SuitesparseTest + +//RC compiler +CMAKE_RC_COMPILER:FILEPATH=rc + +//Flags for Windows Resource Compiler. +CMAKE_RC_FLAGS:STRING=/DWIN32 + +//Flags for Windows Resource Compiler during debug builds. +CMAKE_RC_FLAGS_DEBUG:STRING=/D_DEBUG + +//Flags for Windows Resource Compiler during release builds for +// minimum size. +CMAKE_RC_FLAGS_MINSIZEREL:STRING= + +//Flags for Windows Resource Compiler during release builds. +CMAKE_RC_FLAGS_RELEASE:STRING= + +//Flags for Windows Resource Compiler during release builds with +// debug info. +CMAKE_RC_FLAGS_RELWITHDEBINFO:STRING= + +//Flags used by the linker during the creation of dll's. +CMAKE_SHARED_LINKER_FLAGS:STRING=/machine:x64 + +//Flags used by the linker during debug builds. +CMAKE_SHARED_LINKER_FLAGS_DEBUG:STRING=/debug /INCREMENTAL + +//Flags used by the linker during release minsize builds. +CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL:STRING=/INCREMENTAL:NO + +//Flags used by the linker during release builds. +CMAKE_SHARED_LINKER_FLAGS_RELEASE:STRING=/INCREMENTAL:NO + +//Flags used by the linker during Release with Debug Info builds. +CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO:STRING=/debug /INCREMENTAL + +//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. +CMAKE_STATIC_LINKER_FLAGS:STRING=/machine:x64 + +//Flags used by the linker during debug builds. +CMAKE_STATIC_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during release minsize builds. +CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during release builds. +CMAKE_STATIC_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during Release with Debug Info builds. +CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//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 + +//No help, variable specified on the command line. +CONAN_COMPILER:UNINITIALIZED=Visual Studio + +//No help, variable specified on the command line. +CONAN_COMPILER_VERSION:UNINITIALIZED=10 + +//No help, variable specified on the command line. +CONAN_CXX_FLAGS:UNINITIALIZED=/MP8 + +//No help, variable specified on the command line. +CONAN_C_FLAGS:UNINITIALIZED=/MP8 + +//No help, variable specified on the command line. +CONAN_EXPORTED:UNINITIALIZED=1 + +//No help, variable specified on the command line. +CONAN_LINK_RUNTIME:UNINITIALIZED=/MD + +//Single output directory for building all executables. +EXECUTABLE_OUTPUT_PATH:PATH= + +//The directory containing a CMake configuration file for LAPACK. +LAPACK_DIR:PATH=LAPACK_DIR-NOTFOUND + +//Single output directory for building all libraries. +LIBRARY_OUTPUT_PATH:PATH= + +//The directory containing a CMake configuration file for SuiteSparse. +SuiteSparse_DIR:PATH=C:/Users/t.vogl/.conan/data/suitesparse/5164583/spielwiese/testing/package/85f780d0530411a64b0be4407b381706014b445d/lib/cmake/suitesparse-4.5.0 + +//Value Computed by CMake +SuitesparseTest_BINARY_DIR:STATIC=C:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6 + +//Value Computed by CMake +SuitesparseTest_SOURCE_DIR:STATIC=C:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/src + + +######################## +# INTERNAL cache entries +######################## + +//This is the directory where this CMakeCache.txt was created +CMAKE_CACHEFILE_DIR:INTERNAL=c:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6 +//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=10 +//Patch version of cmake used to create the current loaded cache +CMAKE_CACHE_PATCH_VERSION:INTERNAL=0 +//Path to CMake executable. +CMAKE_COMMAND:INTERNAL=C:/Program Files/CMake/bin/cmake.exe +//Path to cpack program executable. +CMAKE_CPACK_COMMAND:INTERNAL=C:/Program Files/CMake/bin/cpack.exe +//Path to ctest program executable. +CMAKE_CTEST_COMMAND:INTERNAL=C:/Program Files/CMake/bin/ctest.exe +//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_CXX_STANDARD_LIBRARIES +CMAKE_CXX_STANDARD_LIBRARIES-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_C_STANDARD_LIBRARIES +CMAKE_C_STANDARD_LIBRARIES-ADVANCED:INTERNAL=1 +//Whether to issue deprecation errors for macros and functions. +CMAKE_ERROR_DEPRECATED:INTERNAL=FALSE +//Executable file format +CMAKE_EXECUTABLE_FORMAT:INTERNAL=Unknown +//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 +//Name of external makefile project generator. +CMAKE_EXTRA_GENERATOR:INTERNAL= +//Name of generator. +CMAKE_GENERATOR:INTERNAL=Visual Studio 10 2010 Win64 +//Name of generator platform. +CMAKE_GENERATOR_PLATFORM:INTERNAL= +//Name of generator toolset. +CMAKE_GENERATOR_TOOLSET:INTERNAL= +//Source directory with the top level CMakeLists.txt file for this +// project +CMAKE_HOME_DIRECTORY:INTERNAL=C:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/src +//ADVANCED property for variable: CMAKE_LINKER +CMAKE_LINKER-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 +//number of local generators +CMAKE_NUMBER_OF_MAKEFILES:INTERNAL=1 +//Platform information initialized +CMAKE_PLATFORM_INFO_INITIALIZED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_RC_COMPILER +CMAKE_RC_COMPILER-ADVANCED:INTERNAL=1 +CMAKE_RC_COMPILER_WORKS:INTERNAL=1 +//ADVANCED property for variable: CMAKE_RC_FLAGS +CMAKE_RC_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_RC_FLAGS_DEBUG +CMAKE_RC_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_RC_FLAGS_MINSIZEREL +CMAKE_RC_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_RC_FLAGS_RELEASE +CMAKE_RC_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_RC_FLAGS_RELWITHDEBINFO +CMAKE_RC_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//Path to CMake installation. +CMAKE_ROOT:INTERNAL=C:/Program Files/CMake/share/cmake-3.10 +//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 +//Suppress errors that are meant for the author of the CMakeLists.txt +// files. +CMAKE_SUPPRESS_DEVELOPER_ERRORS:INTERNAL=TRUE +//Suppress Warnings that are meant for the author of the CMakeLists.txt +// files. +CMAKE_SUPPRESS_DEVELOPER_WARNINGS:INTERNAL=TRUE +//ADVANCED property for variable: CMAKE_VERBOSE_MAKEFILE +CMAKE_VERBOSE_MAKEFILE-ADVANCED:INTERNAL=1 +//Whether to issue warnings for deprecated functionality. +CMAKE_WARN_DEPRECATED:INTERNAL=FALSE + diff --git a/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/CMakeFiles/3.10.0/CMakeCCompiler.cmake b/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/CMakeFiles/3.10.0/CMakeCCompiler.cmake new file mode 100644 index 0000000..ca19f71 --- /dev/null +++ b/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/CMakeFiles/3.10.0/CMakeCCompiler.cmake @@ -0,0 +1,73 @@ +set(CMAKE_C_COMPILER "C:/Program Files (x86)/Microsoft Visual Studio 10.0/VC/bin/x86_amd64/cl.exe") +set(CMAKE_C_COMPILER_ARG1 "") +set(CMAKE_C_COMPILER_ID "MSVC") +set(CMAKE_C_COMPILER_VERSION "16.0.40219.1") +set(CMAKE_C_COMPILER_VERSION_INTERNAL "") +set(CMAKE_C_COMPILER_WRAPPER "") +set(CMAKE_C_STANDARD_COMPUTED_DEFAULT "90") +set(CMAKE_C_COMPILE_FEATURES "") +set(CMAKE_C90_COMPILE_FEATURES "") +set(CMAKE_C99_COMPILE_FEATURES "") +set(CMAKE_C11_COMPILE_FEATURES "") + +set(CMAKE_C_PLATFORM_ID "Windows") +set(CMAKE_C_SIMULATE_ID "") +set(CMAKE_C_SIMULATE_VERSION "") +set(CMAKE_C_COMPILER_ARCHITECTURE_ID x64) +set(MSVC_C_ARCHITECTURE_ID x64) + +set(CMAKE_AR "") +set(CMAKE_C_COMPILER_AR "") +set(CMAKE_RANLIB "") +set(CMAKE_C_COMPILER_RANLIB "") +set(CMAKE_LINKER "C:/Program Files (x86)/Microsoft Visual Studio 10.0/VC/bin/x86_amd64/link.exe") +set(CMAKE_COMPILER_IS_GNUCC ) +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 "") +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_LINK_LIBRARIES "") +set(CMAKE_C_IMPLICIT_LINK_DIRECTORIES "") +set(CMAKE_C_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "") diff --git a/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/CMakeFiles/3.10.0/CMakeCXXCompiler.cmake b/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/CMakeFiles/3.10.0/CMakeCXXCompiler.cmake new file mode 100644 index 0000000..d1505a4 --- /dev/null +++ b/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/CMakeFiles/3.10.0/CMakeCXXCompiler.cmake @@ -0,0 +1,75 @@ +set(CMAKE_CXX_COMPILER "C:/Program Files (x86)/Microsoft Visual Studio 10.0/VC/bin/x86_amd64/cl.exe") +set(CMAKE_CXX_COMPILER_ARG1 "") +set(CMAKE_CXX_COMPILER_ID "MSVC") +set(CMAKE_CXX_COMPILER_VERSION "16.0.40219.1") +set(CMAKE_CXX_COMPILER_VERSION_INTERNAL "") +set(CMAKE_CXX_COMPILER_WRAPPER "") +set(CMAKE_CXX_STANDARD_COMPUTED_DEFAULT "98") +set(CMAKE_CXX_COMPILE_FEATURES "cxx_std_98;cxx_std_11;cxx_std_14;cxx_std_17;cxx_auto_type;cxx_decltype;cxx_extended_friend_declarations;cxx_extern_templates;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_nullptr;cxx_override;cxx_right_angle_brackets;cxx_rvalue_references;cxx_static_assert;cxx_template_template_parameters;cxx_trailing_return_types;cxx_variadic_macros") +set(CMAKE_CXX98_COMPILE_FEATURES "") +set(CMAKE_CXX11_COMPILE_FEATURES "") +set(CMAKE_CXX14_COMPILE_FEATURES "") +set(CMAKE_CXX17_COMPILE_FEATURES "") + +set(CMAKE_CXX_PLATFORM_ID "Windows") +set(CMAKE_CXX_SIMULATE_ID "") +set(CMAKE_CXX_SIMULATE_VERSION "") +set(CMAKE_CXX_COMPILER_ARCHITECTURE_ID x64) +set(MSVC_CXX_ARCHITECTURE_ID x64) + +set(CMAKE_AR "") +set(CMAKE_CXX_COMPILER_AR "") +set(CMAKE_RANLIB "") +set(CMAKE_CXX_COMPILER_RANLIB "") +set(CMAKE_LINKER "C:/Program Files (x86)/Microsoft Visual Studio 10.0/VC/bin/x86_amd64/link.exe") +set(CMAKE_COMPILER_IS_GNUCXX ) +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_IGNORE_EXTENSIONS inl;h;hpp;HPP;H;o;O;obj;OBJ;def;DEF;rc;RC) +set(CMAKE_CXX_SOURCE_FILE_EXTENSIONS C;M;c++;cc;cpp;cxx;mm;CPP) +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 "") +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_LINK_LIBRARIES "") +set(CMAKE_CXX_IMPLICIT_LINK_DIRECTORIES "") +set(CMAKE_CXX_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "") diff --git a/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/CMakeFiles/3.10.0/CMakeDetermineCompilerABI_C.bin b/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/CMakeFiles/3.10.0/CMakeDetermineCompilerABI_C.bin new file mode 100644 index 0000000..2e632dd Binary files /dev/null and b/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/CMakeFiles/3.10.0/CMakeDetermineCompilerABI_C.bin differ diff --git a/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/CMakeFiles/3.10.0/CMakeDetermineCompilerABI_CXX.bin b/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/CMakeFiles/3.10.0/CMakeDetermineCompilerABI_CXX.bin new file mode 100644 index 0000000..93df97a Binary files /dev/null and b/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/CMakeFiles/3.10.0/CMakeDetermineCompilerABI_CXX.bin differ diff --git a/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/CMakeFiles/3.10.0/CMakeRCCompiler.cmake b/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/CMakeFiles/3.10.0/CMakeRCCompiler.cmake new file mode 100644 index 0000000..0f61961 --- /dev/null +++ b/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/CMakeFiles/3.10.0/CMakeRCCompiler.cmake @@ -0,0 +1,6 @@ +set(CMAKE_RC_COMPILER "rc") +set(CMAKE_RC_COMPILER_ARG1 "") +set(CMAKE_RC_COMPILER_LOADED 1) +set(CMAKE_RC_SOURCE_FILE_EXTENSIONS rc;RC) +set(CMAKE_RC_OUTPUT_EXTENSION .res) +set(CMAKE_RC_COMPILER_ENV_VAR "RC") diff --git a/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/CMakeFiles/3.10.0/CMakeSystem.cmake b/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/CMakeFiles/3.10.0/CMakeSystem.cmake new file mode 100644 index 0000000..b4f5150 --- /dev/null +++ b/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/CMakeFiles/3.10.0/CMakeSystem.cmake @@ -0,0 +1,15 @@ +set(CMAKE_HOST_SYSTEM "Windows-10.0.15063") +set(CMAKE_HOST_SYSTEM_NAME "Windows") +set(CMAKE_HOST_SYSTEM_VERSION "10.0.15063") +set(CMAKE_HOST_SYSTEM_PROCESSOR "AMD64") + + + +set(CMAKE_SYSTEM "Windows-10.0.15063") +set(CMAKE_SYSTEM_NAME "Windows") +set(CMAKE_SYSTEM_VERSION "10.0.15063") +set(CMAKE_SYSTEM_PROCESSOR "AMD64") + +set(CMAKE_CROSSCOMPILING "FALSE") + +set(CMAKE_SYSTEM_LOADED 1) diff --git a/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/CMakeFiles/3.10.0/CompilerIdC/CMakeCCompilerId.c b/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/CMakeFiles/3.10.0/CompilerIdC/CMakeCCompilerId.c new file mode 100644 index 0000000..722faa8 --- /dev/null +++ b/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/CMakeFiles/3.10.0/CompilerIdC/CMakeCCompilerId.c @@ -0,0 +1,598 @@ +#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 + /* __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 + +#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(__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(__TINYC__) +# define COMPILER_ID "TinyCC" + +#elif defined(__BCC__) +# define COMPILER_ID "Bruce" + +#elif defined(__SCO_VERSION__) +# define COMPILER_ID "SCO" + +#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__) +# 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__) +# 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__) +# endif + +#elif defined(__ARMCC_VERSION) +# 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(__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 + +#elif defined(_SGI_COMPILER_VERSION) || defined(_COMPILER_VERSION) +# define COMPILER_ID "MIPSpro" +# if defined(_SGI_COMPILER_VERSION) + /* _SGI_COMPILER_VERSION = VRP */ +# define COMPILER_VERSION_MAJOR DEC(_SGI_COMPILER_VERSION/100) +# define COMPILER_VERSION_MINOR DEC(_SGI_COMPILER_VERSION/10 % 10) +# define COMPILER_VERSION_PATCH DEC(_SGI_COMPILER_VERSION % 10) +# else + /* _COMPILER_VERSION = VRP */ +# define COMPILER_VERSION_MAJOR DEC(_COMPILER_VERSION/100) +# define COMPILER_VERSION_MINOR DEC(_COMPILER_VERSION/10 % 10) +# define COMPILER_VERSION_PATCH DEC(_COMPILER_VERSION % 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(__sgi) +# define COMPILER_ID "MIPSpro" + +#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(__sgi) || defined(__sgi__) || defined(_SGI) +# define PLATFORM_ID "IRIX" + +#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 + +#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(__ICCAVR__) +# define ARCHITECTURE_ID "AVR" + +# 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__) +# 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 diff --git a/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/CMakeFiles/3.10.0/CompilerIdC/CompilerIdC.exe b/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/CMakeFiles/3.10.0/CompilerIdC/CompilerIdC.exe new file mode 100644 index 0000000..15887b9 Binary files /dev/null and b/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/CMakeFiles/3.10.0/CompilerIdC/CompilerIdC.exe differ diff --git a/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/CMakeFiles/3.10.0/CompilerIdC/CompilerIdC.vcxproj b/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/CMakeFiles/3.10.0/CompilerIdC/CompilerIdC.vcxproj new file mode 100644 index 0000000..3e88525 --- /dev/null +++ b/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/CMakeFiles/3.10.0/CompilerIdC/CompilerIdC.vcxproj @@ -0,0 +1,67 @@ + + + + + Debug + x64 + + + + {CAE07175-D007-4FC3-BFE8-47B392814159} + CompilerIdC + Win32Proj + + + + + + + + + + + Application + v100 + MultiByte + + + + + + + <_ProjectFileVersion>10.0.30319.1 + .\ + $(Configuration)\ + false + + + + Disabled + %(PreprocessorDefinitions) + false + EnableFastChecks + MultiThreadedDebugDLL + + + TurnOffAllWarnings + + + + + + false + Console + + + + for %%i in (cl.exe) do %40echo CMAKE_C_COMPILER=%%~$PATH:i + + + + + + + + + + diff --git a/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/CMakeFiles/3.10.0/CompilerIdC/Debug/CL.read.1.tlog b/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/CMakeFiles/3.10.0/CompilerIdC/Debug/CL.read.1.tlog new file mode 100644 index 0000000..62b2e21 Binary files /dev/null and b/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/CMakeFiles/3.10.0/CompilerIdC/Debug/CL.read.1.tlog differ diff --git a/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/CMakeFiles/3.10.0/CompilerIdC/Debug/CL.write.1.tlog b/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/CMakeFiles/3.10.0/CompilerIdC/Debug/CL.write.1.tlog new file mode 100644 index 0000000..78707f1 Binary files /dev/null and b/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/CMakeFiles/3.10.0/CompilerIdC/Debug/CL.write.1.tlog differ diff --git a/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/CMakeFiles/3.10.0/CompilerIdC/Debug/CMakeCCompilerId.obj b/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/CMakeFiles/3.10.0/CompilerIdC/Debug/CMakeCCompilerId.obj new file mode 100644 index 0000000..22d8b81 Binary files /dev/null and b/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/CMakeFiles/3.10.0/CompilerIdC/Debug/CMakeCCompilerId.obj differ diff --git a/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/CMakeFiles/3.10.0/CompilerIdC/Debug/CompilerIdC.exe.intermediate.manifest b/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/CMakeFiles/3.10.0/CompilerIdC/Debug/CompilerIdC.exe.intermediate.manifest new file mode 100644 index 0000000..ecea6f7 --- /dev/null +++ b/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/CMakeFiles/3.10.0/CompilerIdC/Debug/CompilerIdC.exe.intermediate.manifest @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/CMakeFiles/3.10.0/CompilerIdC/Debug/CompilerIdC.lastbuildstate b/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/CMakeFiles/3.10.0/CompilerIdC/Debug/CompilerIdC.lastbuildstate new file mode 100644 index 0000000..24bea93 --- /dev/null +++ b/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/CMakeFiles/3.10.0/CompilerIdC/Debug/CompilerIdC.lastbuildstate @@ -0,0 +1,2 @@ +#v4.0:v100:false +Debug|x64|C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\8caf9177abcac060b9a1d922dc1cef659dbe50b6\CMakeFiles\3.10.0\CompilerIdC\| diff --git a/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/CMakeFiles/3.10.0/CompilerIdC/Debug/CompilerIdC.vcxprojResolveAssemblyReference.cache b/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/CMakeFiles/3.10.0/CompilerIdC/Debug/CompilerIdC.vcxprojResolveAssemblyReference.cache new file mode 100644 index 0000000..368dff8 Binary files /dev/null and b/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/CMakeFiles/3.10.0/CompilerIdC/Debug/CompilerIdC.vcxprojResolveAssemblyReference.cache differ diff --git a/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/CMakeFiles/3.10.0/CompilerIdC/Debug/CompilerIdC.write.1.tlog b/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/CMakeFiles/3.10.0/CompilerIdC/Debug/CompilerIdC.write.1.tlog new file mode 100644 index 0000000..e69de29 diff --git a/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/CMakeFiles/3.10.0/CompilerIdC/Debug/cl.command.1.tlog b/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/CMakeFiles/3.10.0/CompilerIdC/Debug/cl.command.1.tlog new file mode 100644 index 0000000..64b6a38 Binary files /dev/null and b/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/CMakeFiles/3.10.0/CompilerIdC/Debug/cl.command.1.tlog differ diff --git a/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/CMakeFiles/3.10.0/CompilerIdC/Debug/link.command.1.tlog b/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/CMakeFiles/3.10.0/CompilerIdC/Debug/link.command.1.tlog new file mode 100644 index 0000000..6bad4a1 Binary files /dev/null and b/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/CMakeFiles/3.10.0/CompilerIdC/Debug/link.command.1.tlog differ diff --git a/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/CMakeFiles/3.10.0/CompilerIdC/Debug/link.read.1.tlog b/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/CMakeFiles/3.10.0/CompilerIdC/Debug/link.read.1.tlog new file mode 100644 index 0000000..951060f Binary files /dev/null and b/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/CMakeFiles/3.10.0/CompilerIdC/Debug/link.read.1.tlog differ diff --git a/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/CMakeFiles/3.10.0/CompilerIdC/Debug/link.write.1.tlog b/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/CMakeFiles/3.10.0/CompilerIdC/Debug/link.write.1.tlog new file mode 100644 index 0000000..bd0ec97 Binary files /dev/null and b/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/CMakeFiles/3.10.0/CompilerIdC/Debug/link.write.1.tlog differ diff --git a/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/CMakeFiles/3.10.0/CompilerIdC/Debug/mt.command.1.tlog b/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/CMakeFiles/3.10.0/CompilerIdC/Debug/mt.command.1.tlog new file mode 100644 index 0000000..0d5ff9e Binary files /dev/null and b/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/CMakeFiles/3.10.0/CompilerIdC/Debug/mt.command.1.tlog differ diff --git a/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/CMakeFiles/3.10.0/CompilerIdC/Debug/mt.read.1.tlog b/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/CMakeFiles/3.10.0/CompilerIdC/Debug/mt.read.1.tlog new file mode 100644 index 0000000..b24ff45 Binary files /dev/null and b/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/CMakeFiles/3.10.0/CompilerIdC/Debug/mt.read.1.tlog differ diff --git a/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/CMakeFiles/3.10.0/CompilerIdC/Debug/mt.write.1.tlog b/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/CMakeFiles/3.10.0/CompilerIdC/Debug/mt.write.1.tlog new file mode 100644 index 0000000..03a2ca2 Binary files /dev/null and b/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/CMakeFiles/3.10.0/CompilerIdC/Debug/mt.write.1.tlog differ diff --git a/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/CMakeFiles/3.10.0/CompilerIdCXX/CMakeCXXCompilerId.cpp b/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/CMakeFiles/3.10.0/CompilerIdCXX/CMakeCXXCompilerId.cpp new file mode 100644 index 0000000..2d66298 --- /dev/null +++ b/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/CMakeFiles/3.10.0/CompilerIdCXX/CMakeCXXCompilerId.cpp @@ -0,0 +1,576 @@ +/* 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 + /* __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 + +#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(__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(__SCO_VERSION__) +# define COMPILER_ID "SCO" + +#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__) +# 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__) +# 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__) +# endif + +#elif defined(__ARMCC_VERSION) +# 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(_SGI_COMPILER_VERSION) || defined(_COMPILER_VERSION) +# define COMPILER_ID "MIPSpro" +# if defined(_SGI_COMPILER_VERSION) + /* _SGI_COMPILER_VERSION = VRP */ +# define COMPILER_VERSION_MAJOR DEC(_SGI_COMPILER_VERSION/100) +# define COMPILER_VERSION_MINOR DEC(_SGI_COMPILER_VERSION/10 % 10) +# define COMPILER_VERSION_PATCH DEC(_SGI_COMPILER_VERSION % 10) +# else + /* _COMPILER_VERSION = VRP */ +# define COMPILER_VERSION_MAJOR DEC(_COMPILER_VERSION/100) +# define COMPILER_VERSION_MINOR DEC(_COMPILER_VERSION/10 % 10) +# define COMPILER_VERSION_PATCH DEC(_COMPILER_VERSION % 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(__sgi) +# define COMPILER_ID "MIPSpro" + +#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(__sgi) || defined(__sgi__) || defined(_SGI) +# define PLATFORM_ID "IRIX" + +#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 + +#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(__ICCAVR__) +# define ARCHITECTURE_ID "AVR" + +# 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(_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 > 201402L + "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; +} diff --git a/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/CMakeFiles/3.10.0/CompilerIdCXX/CompilerIdCXX.exe b/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/CMakeFiles/3.10.0/CompilerIdCXX/CompilerIdCXX.exe new file mode 100644 index 0000000..9acf4cf Binary files /dev/null and b/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/CMakeFiles/3.10.0/CompilerIdCXX/CompilerIdCXX.exe differ diff --git a/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/CMakeFiles/3.10.0/CompilerIdCXX/CompilerIdCXX.vcxproj b/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/CMakeFiles/3.10.0/CompilerIdCXX/CompilerIdCXX.vcxproj new file mode 100644 index 0000000..e3e030b --- /dev/null +++ b/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/CMakeFiles/3.10.0/CompilerIdCXX/CompilerIdCXX.vcxproj @@ -0,0 +1,67 @@ + + + + + Debug + x64 + + + + {CAE07175-D007-4FC3-BFE8-47B392814159} + CompilerIdCXX + Win32Proj + + + + + + + + + + + Application + v100 + MultiByte + + + + + + + <_ProjectFileVersion>10.0.30319.1 + .\ + $(Configuration)\ + false + + + + Disabled + %(PreprocessorDefinitions) + false + EnableFastChecks + MultiThreadedDebugDLL + + + TurnOffAllWarnings + + + + + + false + Console + + + + for %%i in (cl.exe) do %40echo CMAKE_CXX_COMPILER=%%~$PATH:i + + + + + + + + + + diff --git a/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/CMakeFiles/3.10.0/CompilerIdCXX/Debug/CL.read.1.tlog b/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/CMakeFiles/3.10.0/CompilerIdCXX/Debug/CL.read.1.tlog new file mode 100644 index 0000000..1d8e3a0 Binary files /dev/null and b/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/CMakeFiles/3.10.0/CompilerIdCXX/Debug/CL.read.1.tlog differ diff --git a/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/CMakeFiles/3.10.0/CompilerIdCXX/Debug/CL.write.1.tlog b/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/CMakeFiles/3.10.0/CompilerIdCXX/Debug/CL.write.1.tlog new file mode 100644 index 0000000..f215217 Binary files /dev/null and b/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/CMakeFiles/3.10.0/CompilerIdCXX/Debug/CL.write.1.tlog differ diff --git a/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/CMakeFiles/3.10.0/CompilerIdCXX/Debug/CMakeCXXCompilerId.obj b/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/CMakeFiles/3.10.0/CompilerIdCXX/Debug/CMakeCXXCompilerId.obj new file mode 100644 index 0000000..20931e4 Binary files /dev/null and b/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/CMakeFiles/3.10.0/CompilerIdCXX/Debug/CMakeCXXCompilerId.obj differ diff --git a/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/CMakeFiles/3.10.0/CompilerIdCXX/Debug/CompilerIdCXX.exe.intermediate.manifest b/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/CMakeFiles/3.10.0/CompilerIdCXX/Debug/CompilerIdCXX.exe.intermediate.manifest new file mode 100644 index 0000000..ecea6f7 --- /dev/null +++ b/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/CMakeFiles/3.10.0/CompilerIdCXX/Debug/CompilerIdCXX.exe.intermediate.manifest @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/CMakeFiles/3.10.0/CompilerIdCXX/Debug/CompilerIdCXX.lastbuildstate b/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/CMakeFiles/3.10.0/CompilerIdCXX/Debug/CompilerIdCXX.lastbuildstate new file mode 100644 index 0000000..9a969c8 --- /dev/null +++ b/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/CMakeFiles/3.10.0/CompilerIdCXX/Debug/CompilerIdCXX.lastbuildstate @@ -0,0 +1,2 @@ +#v4.0:v100:false +Debug|x64|C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\8caf9177abcac060b9a1d922dc1cef659dbe50b6\CMakeFiles\3.10.0\CompilerIdCXX\| diff --git a/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/CMakeFiles/3.10.0/CompilerIdCXX/Debug/CompilerIdCXX.vcxprojResolveAssemblyReference.cache b/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/CMakeFiles/3.10.0/CompilerIdCXX/Debug/CompilerIdCXX.vcxprojResolveAssemblyReference.cache new file mode 100644 index 0000000..368dff8 Binary files /dev/null and b/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/CMakeFiles/3.10.0/CompilerIdCXX/Debug/CompilerIdCXX.vcxprojResolveAssemblyReference.cache differ diff --git a/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/CMakeFiles/3.10.0/CompilerIdCXX/Debug/CompilerIdCXX.write.1.tlog b/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/CMakeFiles/3.10.0/CompilerIdCXX/Debug/CompilerIdCXX.write.1.tlog new file mode 100644 index 0000000..e69de29 diff --git a/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/CMakeFiles/3.10.0/CompilerIdCXX/Debug/cl.command.1.tlog b/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/CMakeFiles/3.10.0/CompilerIdCXX/Debug/cl.command.1.tlog new file mode 100644 index 0000000..a8e5c02 Binary files /dev/null and b/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/CMakeFiles/3.10.0/CompilerIdCXX/Debug/cl.command.1.tlog differ diff --git a/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/CMakeFiles/3.10.0/CompilerIdCXX/Debug/link.command.1.tlog b/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/CMakeFiles/3.10.0/CompilerIdCXX/Debug/link.command.1.tlog new file mode 100644 index 0000000..3111a4f Binary files /dev/null and b/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/CMakeFiles/3.10.0/CompilerIdCXX/Debug/link.command.1.tlog differ diff --git a/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/CMakeFiles/3.10.0/CompilerIdCXX/Debug/link.read.1.tlog b/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/CMakeFiles/3.10.0/CompilerIdCXX/Debug/link.read.1.tlog new file mode 100644 index 0000000..c8de29c Binary files /dev/null and b/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/CMakeFiles/3.10.0/CompilerIdCXX/Debug/link.read.1.tlog differ diff --git a/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/CMakeFiles/3.10.0/CompilerIdCXX/Debug/link.write.1.tlog b/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/CMakeFiles/3.10.0/CompilerIdCXX/Debug/link.write.1.tlog new file mode 100644 index 0000000..3957be8 Binary files /dev/null and b/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/CMakeFiles/3.10.0/CompilerIdCXX/Debug/link.write.1.tlog differ diff --git a/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/CMakeFiles/3.10.0/CompilerIdCXX/Debug/mt.command.1.tlog b/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/CMakeFiles/3.10.0/CompilerIdCXX/Debug/mt.command.1.tlog new file mode 100644 index 0000000..1d4994b Binary files /dev/null and b/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/CMakeFiles/3.10.0/CompilerIdCXX/Debug/mt.command.1.tlog differ diff --git a/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/CMakeFiles/3.10.0/CompilerIdCXX/Debug/mt.read.1.tlog b/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/CMakeFiles/3.10.0/CompilerIdCXX/Debug/mt.read.1.tlog new file mode 100644 index 0000000..a7cdf38 Binary files /dev/null and b/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/CMakeFiles/3.10.0/CompilerIdCXX/Debug/mt.read.1.tlog differ diff --git a/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/CMakeFiles/3.10.0/CompilerIdCXX/Debug/mt.write.1.tlog b/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/CMakeFiles/3.10.0/CompilerIdCXX/Debug/mt.write.1.tlog new file mode 100644 index 0000000..a2bac6c Binary files /dev/null and b/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/CMakeFiles/3.10.0/CompilerIdCXX/Debug/mt.write.1.tlog differ diff --git a/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/CMakeFiles/3.10.0/VCTargetsPath.txt b/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/CMakeFiles/3.10.0/VCTargetsPath.txt new file mode 100644 index 0000000..0c6ffe6 --- /dev/null +++ b/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/CMakeFiles/3.10.0/VCTargetsPath.txt @@ -0,0 +1 @@ +C:/Program Files (x86)/MSBuild/Microsoft.Cpp/v4.0 diff --git a/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/CMakeFiles/3.10.0/VCTargetsPath.vcxproj b/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/CMakeFiles/3.10.0/VCTargetsPath.vcxproj new file mode 100644 index 0000000..ef1a99a --- /dev/null +++ b/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/CMakeFiles/3.10.0/VCTargetsPath.vcxproj @@ -0,0 +1,27 @@ + + + + + Debug + x64 + + + + {F3FC6D86-508D-3FB1-96D2-995F08B142EC} + Win32Proj + x64 + + + + Utility + MultiByte + v100 + + + + + echo VCTargetsPath=$(VCTargetsPath) + + + + diff --git a/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/CMakeFiles/3.10.0/x64/Debug/VCTargetsPath.lastbuildstate b/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/CMakeFiles/3.10.0/x64/Debug/VCTargetsPath.lastbuildstate new file mode 100644 index 0000000..6b25306 --- /dev/null +++ b/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/CMakeFiles/3.10.0/x64/Debug/VCTargetsPath.lastbuildstate @@ -0,0 +1,2 @@ +#v4.0:v100:false +Debug|x64|C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\8caf9177abcac060b9a1d922dc1cef659dbe50b6\CMakeFiles\3.10.0\| diff --git a/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/CMakeFiles/3.10.0/x64/Debug/VCTargetsPath.vcxprojResolveAssemblyReference.cache b/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/CMakeFiles/3.10.0/x64/Debug/VCTargetsPath.vcxprojResolveAssemblyReference.cache new file mode 100644 index 0000000..368dff8 Binary files /dev/null and b/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/CMakeFiles/3.10.0/x64/Debug/VCTargetsPath.vcxprojResolveAssemblyReference.cache differ diff --git a/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/CMakeFiles/88db50b07a9bb1b025cfd97b4ed0663f/generate.stamp.rule b/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/CMakeFiles/88db50b07a9bb1b025cfd97b4ed0663f/generate.stamp.rule new file mode 100644 index 0000000..2d3998c --- /dev/null +++ b/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/CMakeFiles/88db50b07a9bb1b025cfd97b4ed0663f/generate.stamp.rule @@ -0,0 +1 @@ +# generated from CMake diff --git a/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/CMakeFiles/CMakeOutput.log b/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/CMakeFiles/CMakeOutput.log new file mode 100644 index 0000000..8fda579 --- /dev/null +++ b/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/CMakeFiles/CMakeOutput.log @@ -0,0 +1,392 @@ +The system is: Windows - 10.0.15063 - AMD64 +Compiling the C compiler identification source file "CMakeCCompilerId.c" succeeded. +Compiler: +Build flags: +Id flags: + +The output was: +0 +Microsoft (R)-Buildmodul, Version 4.7.2046.0 +[Microsoft .NET Framework, Version 4.0.30319.42000] +Copyright (C) Microsoft Corporation. Alle Rechte vorbehalten. + +Der Buildvorgang wurde am 05.03.2018 22:38:20 gestartet. +Projekt "C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\8caf9177abcac060b9a1d922dc1cef659dbe50b6\CMakeFiles\3.10.0\CompilerIdC\CompilerIdC.vcxproj" auf Knoten "1" (Standardziele). +PrepareForBuild: + Das Verzeichnis "Debug\" wird erstellt. +InitializeBuildStatus: + "Debug\CompilerIdC.unsuccessfulbuild" wird erstellt, da "AlwaysCreate" angegeben wurde. +ClCompile: + C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\bin\x86_amd64\CL.exe /c /nologo /W0 /WX- /Od /D _MBCS /Gm- /EHsc /RTC1 /MDd /GS /fp:precise /Zc:wchar_t /Zc:forScope /Fo"Debug\\" /Fd"Debug\vc100.pdb" /Gd /TC /errorReport:queue CMakeCCompilerId.c + CMakeCCompilerId.c +Link: + C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\bin\x86_amd64\link.exe /ERRORREPORT:QUEUE /OUT:".\CompilerIdC.exe" /INCREMENTAL:NO /NOLOGO kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /MANIFEST /ManifestFile:"Debug\CompilerIdC.exe.intermediate.manifest" /MANIFESTUAC:"level='asInvoker' uiAccess='false'" /PDB:"C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\8caf9177abcac060b9a1d922dc1cef659dbe50b6\CMakeFiles\3.10.0\CompilerIdC\CompilerIdC.pdb" /SUBSYSTEM:CONSOLE /TLBID:1 /DYNAMICBASE /NXCOMPAT /IMPLIB:".\CompilerIdC.lib" /MACHINE:X64 Debug\CMakeCCompilerId.obj + CompilerIdC.vcxproj -> C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\8caf9177abcac060b9a1d922dc1cef659dbe50b6\CMakeFiles\3.10.0\CompilerIdC\.\CompilerIdC.exe +Manifest: + C:\Program Files (x86)\Microsoft SDKs\Windows\v7.0A\bin\mt.exe /nologo /verbose /outputresource:".\CompilerIdC.exe;#1" /manifest Debug\CompilerIdC.exe.intermediate.manifest +PostBuildEvent: + for %%i in (cl.exe) do @echo CMAKE_C_COMPILER=%%~$PATH:i + :VCEnd + CMAKE_C_COMPILER=C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\bin\x86_amd64\cl.exe +FinalizeBuildStatus: + Die Datei "Debug\CompilerIdC.unsuccessfulbuild" wird gelscht. + Aktualisieren des Timestamps von "Debug\CompilerIdC.lastbuildstate". +Die Erstellung von Projekt "C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\8caf9177abcac060b9a1d922dc1cef659dbe50b6\CMakeFiles\3.10.0\CompilerIdC\CompilerIdC.vcxproj" ist abgeschlossen (Standardziele). + +Der Buildvorgang wurde erfolgreich ausgefhrt. + 0 Warnung(en) + 0 Fehler + +Verstrichene Zeit 00:00:01.27 + + +Compilation of the C compiler identification source "CMakeCCompilerId.c" produced "CompilerIdC.exe" + +Compilation of the C compiler identification source "CMakeCCompilerId.c" produced "CompilerIdC.vcxproj" + +The C compiler identification is MSVC, found in "C:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/CMakeFiles/3.10.0/CompilerIdC/CompilerIdC.exe" + +Compiling the CXX compiler identification source file "CMakeCXXCompilerId.cpp" succeeded. +Compiler: +Build flags: +Id flags: + +The output was: +0 +Microsoft (R)-Buildmodul, Version 4.7.2046.0 +[Microsoft .NET Framework, Version 4.0.30319.42000] +Copyright (C) Microsoft Corporation. Alle Rechte vorbehalten. + +Der Buildvorgang wurde am 05.03.2018 22:38:22 gestartet. +Projekt "C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\8caf9177abcac060b9a1d922dc1cef659dbe50b6\CMakeFiles\3.10.0\CompilerIdCXX\CompilerIdCXX.vcxproj" auf Knoten "1" (Standardziele). +PrepareForBuild: + Das Verzeichnis "Debug\" wird erstellt. +InitializeBuildStatus: + "Debug\CompilerIdCXX.unsuccessfulbuild" wird erstellt, da "AlwaysCreate" angegeben wurde. +ClCompile: + C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\bin\x86_amd64\CL.exe /c /nologo /W0 /WX- /Od /D _MBCS /Gm- /EHsc /RTC1 /MDd /GS /fp:precise /Zc:wchar_t /Zc:forScope /Fo"Debug\\" /Fd"Debug\vc100.pdb" /Gd /TP /errorReport:queue CMakeCXXCompilerId.cpp + CMakeCXXCompilerId.cpp +Link: + C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\bin\x86_amd64\link.exe /ERRORREPORT:QUEUE /OUT:".\CompilerIdCXX.exe" /INCREMENTAL:NO /NOLOGO kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /MANIFEST /ManifestFile:"Debug\CompilerIdCXX.exe.intermediate.manifest" /MANIFESTUAC:"level='asInvoker' uiAccess='false'" /PDB:"C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\8caf9177abcac060b9a1d922dc1cef659dbe50b6\CMakeFiles\3.10.0\CompilerIdCXX\CompilerIdCXX.pdb" /SUBSYSTEM:CONSOLE /TLBID:1 /DYNAMICBASE /NXCOMPAT /IMPLIB:".\CompilerIdCXX.lib" /MACHINE:X64 Debug\CMakeCXXCompilerId.obj + CompilerIdCXX.vcxproj -> C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\8caf9177abcac060b9a1d922dc1cef659dbe50b6\CMakeFiles\3.10.0\CompilerIdCXX\.\CompilerIdCXX.exe +Manifest: + C:\Program Files (x86)\Microsoft SDKs\Windows\v7.0A\bin\mt.exe /nologo /verbose /outputresource:".\CompilerIdCXX.exe;#1" /manifest Debug\CompilerIdCXX.exe.intermediate.manifest +PostBuildEvent: + for %%i in (cl.exe) do @echo CMAKE_CXX_COMPILER=%%~$PATH:i + :VCEnd + CMAKE_CXX_COMPILER=C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\bin\x86_amd64\cl.exe +FinalizeBuildStatus: + Die Datei "Debug\CompilerIdCXX.unsuccessfulbuild" wird gelscht. + Aktualisieren des Timestamps von "Debug\CompilerIdCXX.lastbuildstate". +Die Erstellung von Projekt "C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\8caf9177abcac060b9a1d922dc1cef659dbe50b6\CMakeFiles\3.10.0\CompilerIdCXX\CompilerIdCXX.vcxproj" ist abgeschlossen (Standardziele). + +Der Buildvorgang wurde erfolgreich ausgefhrt. + 0 Warnung(en) + 0 Fehler + +Verstrichene Zeit 00:00:01.33 + + +Compilation of the CXX compiler identification source "CMakeCXXCompilerId.cpp" produced "CompilerIdCXX.exe" + +Compilation of the CXX compiler identification source "CMakeCXXCompilerId.cpp" produced "CompilerIdCXX.vcxproj" + +The CXX compiler identification is MSVC, found in "C:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/CMakeFiles/3.10.0/CompilerIdCXX/CompilerIdCXX.exe" + +Determining if the C compiler works passed with the following output: +Change Dir: C:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/CMakeFiles/CMakeTmp + +Run Build Command:"C:/Windows/Microsoft.NET/Framework/v4.0.30319/MSBuild.exe" "cmTC_72fa3.vcxproj" "/p:Configuration=Debug" "/p:VisualStudioVersion=10.0" +Microsoft (R)-Buildmodul, Version 4.7.2046.0 +[Microsoft .NET Framework, Version 4.0.30319.42000] +Copyright (C) Microsoft Corporation. Alle Rechte vorbehalten. + +Der Buildvorgang wurde am 05.03.2018 22:38:24 gestartet. +Projekt "C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\8caf9177abcac060b9a1d922dc1cef659dbe50b6\CMakeFiles\CMakeTmp\cmTC_72fa3.vcxproj" auf Knoten "1" (Standardziele). +PrepareForBuild: + Das Verzeichnis "cmTC_72fa3.dir\Debug\" wird erstellt. + Das Verzeichnis "C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\8caf9177abcac060b9a1d922dc1cef659dbe50b6\CMakeFiles\CMakeTmp\Debug\" wird erstellt. +InitializeBuildStatus: + "cmTC_72fa3.dir\Debug\cmTC_72fa3.unsuccessfulbuild" wird erstellt, da "AlwaysCreate" angegeben wurde. +ClCompile: + C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\bin\x86_amd64\CL.exe /c /Zi /W3 /WX- /Od /Ob0 /D WIN32 /D _WINDOWS /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /RTC1 /MDd /GS /fp:precise /Zc:wchar_t /Zc:forScope /Fo"cmTC_72fa3.dir\Debug\\" /Fd"cmTC_72fa3.dir\Debug\vc100.pdb" /Gd /TC /errorReport:queue testCCompiler.c + Microsoft (R) C/C++ Optimizing Compiler Version 16.00.40219.01 for x64 + Copyright (C) Microsoft Corporation. All rights reserved. + + cl /c /Zi /W3 /WX- /Od /Ob0 /D WIN32 /D _WINDOWS /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /RTC1 /MDd /GS /fp:precise /Zc:wchar_t /Zc:forScope /Fo"cmTC_72fa3.dir\Debug\\" /Fd"cmTC_72fa3.dir\Debug\vc100.pdb" /Gd /TC /errorReport:queue testCCompiler.c + + testCCompiler.c +ManifestResourceCompile: + C:\Program Files (x86)\Microsoft SDKs\Windows\v7.0A\bin\rc.exe /nologo /fo"cmTC_72fa3.dir\Debug\cmTC_72fa3.exe.embed.manifest.res" cmTC_72fa3.dir\Debug\cmTC_72fa3_manifest.rc +Link: + C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\bin\x86_amd64\link.exe /ERRORREPORT:QUEUE /OUT:"C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\8caf9177abcac060b9a1d922dc1cef659dbe50b6\CMakeFiles\CMakeTmp\Debug\cmTC_72fa3.exe" /INCREMENTAL /NOLOGO kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib /MANIFEST /ManifestFile:"cmTC_72fa3.dir\Debug\cmTC_72fa3.exe.intermediate.manifest" /MANIFESTUAC:"level='asInvoker' uiAccess='false'" /DEBUG /PDB:"C:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/CMakeFiles/CMakeTmp/Debug/cmTC_72fa3.pdb" /SUBSYSTEM:CONSOLE /TLBID:1 /DYNAMICBASE /NXCOMPAT /IMPLIB:"C:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/CMakeFiles/CMakeTmp/Debug/cmTC_72fa3.lib" /MACHINE:X64 cmTC_72fa3.dir\Debug\cmTC_72fa3.exe.embed.manifest.res + cmTC_72fa3.dir\Debug\testCCompiler.obj /machine:x64 + cmTC_72fa3.vcxproj -> C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\8caf9177abcac060b9a1d922dc1cef659dbe50b6\CMakeFiles\CMakeTmp\Debug\cmTC_72fa3.exe +Manifest: + C:\Program Files (x86)\Microsoft SDKs\Windows\v7.0A\bin\mt.exe /nologo /verbose /out:"cmTC_72fa3.dir\Debug\cmTC_72fa3.exe.embed.manifest" /manifest cmTC_72fa3.dir\Debug\cmTC_72fa3.exe.intermediate.manifest + C:\Program Files (x86)\Microsoft SDKs\Windows\v7.0A\bin\rc.exe /nologo /fo"cmTC_72fa3.dir\Debug\cmTC_72fa3.exe.embed.manifest.res" cmTC_72fa3.dir\Debug\cmTC_72fa3_manifest.rc +LinkEmbedManifest: + C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\bin\x86_amd64\link.exe /ERRORREPORT:QUEUE /OUT:"C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\8caf9177abcac060b9a1d922dc1cef659dbe50b6\CMakeFiles\CMakeTmp\Debug\cmTC_72fa3.exe" /INCREMENTAL /NOLOGO kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib /MANIFEST /ManifestFile:"cmTC_72fa3.dir\Debug\cmTC_72fa3.exe.intermediate.manifest" /MANIFESTUAC:"level='asInvoker' uiAccess='false'" /DEBUG /PDB:"C:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/CMakeFiles/CMakeTmp/Debug/cmTC_72fa3.pdb" /SUBSYSTEM:CONSOLE /TLBID:1 /DYNAMICBASE /NXCOMPAT /IMPLIB:"C:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/CMakeFiles/CMakeTmp/Debug/cmTC_72fa3.lib" /MACHINE:X64 cmTC_72fa3.dir\Debug\cmTC_72fa3.exe.embed.manifest.res + cmTC_72fa3.dir\Debug\testCCompiler.obj /machine:x64 + cmTC_72fa3.vcxproj -> C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\8caf9177abcac060b9a1d922dc1cef659dbe50b6\CMakeFiles\CMakeTmp\Debug\cmTC_72fa3.exe +FinalizeBuildStatus: + Die Datei "cmTC_72fa3.dir\Debug\cmTC_72fa3.unsuccessfulbuild" wird gelöscht. + Aktualisieren des Timestamps von "cmTC_72fa3.dir\Debug\cmTC_72fa3.lastbuildstate". +Die Erstellung von Projekt "C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\8caf9177abcac060b9a1d922dc1cef659dbe50b6\CMakeFiles\CMakeTmp\cmTC_72fa3.vcxproj" ist abgeschlossen (Standardziele). + +Der Buildvorgang wurde erfolgreich ausgeführt. + 0 Warnung(en) + 0 Fehler + +Verstrichene Zeit 00:00:02.51 + + +Detecting C compiler ABI info compiled with the following output: +Change Dir: C:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/CMakeFiles/CMakeTmp + +Run Build Command:"C:/Windows/Microsoft.NET/Framework/v4.0.30319/MSBuild.exe" "cmTC_d9529.vcxproj" "/p:Configuration=Debug" "/p:VisualStudioVersion=10.0" +Microsoft (R)-Buildmodul, Version 4.7.2046.0 +[Microsoft .NET Framework, Version 4.0.30319.42000] +Copyright (C) Microsoft Corporation. Alle Rechte vorbehalten. + +Der Buildvorgang wurde am 05.03.2018 22:38:28 gestartet. +Projekt "C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\8caf9177abcac060b9a1d922dc1cef659dbe50b6\CMakeFiles\CMakeTmp\cmTC_d9529.vcxproj" auf Knoten "1" (Standardziele). +PrepareForBuild: + Das Verzeichnis "cmTC_d9529.dir\Debug\" wird erstellt. + Das Verzeichnis "C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\8caf9177abcac060b9a1d922dc1cef659dbe50b6\CMakeFiles\CMakeTmp\Debug\" wird erstellt. +InitializeBuildStatus: + "cmTC_d9529.dir\Debug\cmTC_d9529.unsuccessfulbuild" wird erstellt, da "AlwaysCreate" angegeben wurde. +ClCompile: + C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\bin\x86_amd64\CL.exe /c /Zi /W3 /WX- /Od /Ob0 /D WIN32 /D _WINDOWS /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /RTC1 /MDd /GS /fp:precise /Zc:wchar_t /Zc:forScope /Fo"cmTC_d9529.dir\Debug\\" /Fd"cmTC_d9529.dir\Debug\vc100.pdb" /Gd /TC /errorReport:queue "..\..\..\..\..\..\..\..\..\..\Program Files\CMake\share\cmake-3.10\Modules\CMakeCCompilerABI.c" + Microsoft (R) C/C++ Optimizing Compiler Version 16.00.40219.01 for x64 + Copyright (C) Microsoft Corporation. All rights reserved. + + cl /c /Zi /W3 /WX- /Od /Ob0 /D WIN32 /D _WINDOWS /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /RTC1 /MDd /GS /fp:precise /Zc:wchar_t /Zc:forScope /Fo"cmTC_d9529.dir\Debug\\" /Fd"cmTC_d9529.dir\Debug\vc100.pdb" /Gd /TC /errorReport:queue "..\..\..\..\..\..\..\..\..\..\Program Files\CMake\share\cmake-3.10\Modules\CMakeCCompilerABI.c" + + CMakeCCompilerABI.c +ManifestResourceCompile: + C:\Program Files (x86)\Microsoft SDKs\Windows\v7.0A\bin\rc.exe /nologo /fo"cmTC_d9529.dir\Debug\cmTC_d9529.exe.embed.manifest.res" cmTC_d9529.dir\Debug\cmTC_d9529_manifest.rc +Link: + C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\bin\x86_amd64\link.exe /ERRORREPORT:QUEUE /OUT:"C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\8caf9177abcac060b9a1d922dc1cef659dbe50b6\CMakeFiles\CMakeTmp\Debug\cmTC_d9529.exe" /INCREMENTAL /NOLOGO kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib /MANIFEST /ManifestFile:"cmTC_d9529.dir\Debug\cmTC_d9529.exe.intermediate.manifest" /MANIFESTUAC:"level='asInvoker' uiAccess='false'" /DEBUG /PDB:"C:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/CMakeFiles/CMakeTmp/Debug/cmTC_d9529.pdb" /SUBSYSTEM:CONSOLE /TLBID:1 /DYNAMICBASE /NXCOMPAT /IMPLIB:"C:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/CMakeFiles/CMakeTmp/Debug/cmTC_d9529.lib" /MACHINE:X64 cmTC_d9529.dir\Debug\cmTC_d9529.exe.embed.manifest.res + cmTC_d9529.dir\Debug\CMakeCCompilerABI.obj /machine:x64 + cmTC_d9529.vcxproj -> C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\8caf9177abcac060b9a1d922dc1cef659dbe50b6\CMakeFiles\CMakeTmp\Debug\cmTC_d9529.exe +Manifest: + C:\Program Files (x86)\Microsoft SDKs\Windows\v7.0A\bin\mt.exe /nologo /verbose /out:"cmTC_d9529.dir\Debug\cmTC_d9529.exe.embed.manifest" /manifest cmTC_d9529.dir\Debug\cmTC_d9529.exe.intermediate.manifest + C:\Program Files (x86)\Microsoft SDKs\Windows\v7.0A\bin\rc.exe /nologo /fo"cmTC_d9529.dir\Debug\cmTC_d9529.exe.embed.manifest.res" cmTC_d9529.dir\Debug\cmTC_d9529_manifest.rc +LinkEmbedManifest: + C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\bin\x86_amd64\link.exe /ERRORREPORT:QUEUE /OUT:"C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\8caf9177abcac060b9a1d922dc1cef659dbe50b6\CMakeFiles\CMakeTmp\Debug\cmTC_d9529.exe" /INCREMENTAL /NOLOGO kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib /MANIFEST /ManifestFile:"cmTC_d9529.dir\Debug\cmTC_d9529.exe.intermediate.manifest" /MANIFESTUAC:"level='asInvoker' uiAccess='false'" /DEBUG /PDB:"C:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/CMakeFiles/CMakeTmp/Debug/cmTC_d9529.pdb" /SUBSYSTEM:CONSOLE /TLBID:1 /DYNAMICBASE /NXCOMPAT /IMPLIB:"C:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/CMakeFiles/CMakeTmp/Debug/cmTC_d9529.lib" /MACHINE:X64 cmTC_d9529.dir\Debug\cmTC_d9529.exe.embed.manifest.res + cmTC_d9529.dir\Debug\CMakeCCompilerABI.obj /machine:x64 + cmTC_d9529.vcxproj -> C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\8caf9177abcac060b9a1d922dc1cef659dbe50b6\CMakeFiles\CMakeTmp\Debug\cmTC_d9529.exe +FinalizeBuildStatus: + Die Datei "cmTC_d9529.dir\Debug\cmTC_d9529.unsuccessfulbuild" wird gelöscht. + Aktualisieren des Timestamps von "cmTC_d9529.dir\Debug\cmTC_d9529.lastbuildstate". +Die Erstellung von Projekt "C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\8caf9177abcac060b9a1d922dc1cef659dbe50b6\CMakeFiles\CMakeTmp\cmTC_d9529.vcxproj" ist abgeschlossen (Standardziele). + +Der Buildvorgang wurde erfolgreich ausgeführt. + 0 Warnung(en) + 0 Fehler + +Verstrichene Zeit 00:00:02.51 + + +Determining if the CXX compiler works passed with the following output: +Change Dir: C:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/CMakeFiles/CMakeTmp + +Run Build Command:"C:/Windows/Microsoft.NET/Framework/v4.0.30319/MSBuild.exe" "cmTC_3e1e6.vcxproj" "/p:Configuration=Debug" "/p:VisualStudioVersion=10.0" +Microsoft (R)-Buildmodul, Version 4.7.2046.0 +[Microsoft .NET Framework, Version 4.0.30319.42000] +Copyright (C) Microsoft Corporation. Alle Rechte vorbehalten. + +Der Buildvorgang wurde am 05.03.2018 22:38:31 gestartet. +Projekt "C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\8caf9177abcac060b9a1d922dc1cef659dbe50b6\CMakeFiles\CMakeTmp\cmTC_3e1e6.vcxproj" auf Knoten "1" (Standardziele). +PrepareForBuild: + Das Verzeichnis "cmTC_3e1e6.dir\Debug\" wird erstellt. + Das Verzeichnis "C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\8caf9177abcac060b9a1d922dc1cef659dbe50b6\CMakeFiles\CMakeTmp\Debug\" wird erstellt. +InitializeBuildStatus: + "cmTC_3e1e6.dir\Debug\cmTC_3e1e6.unsuccessfulbuild" wird erstellt, da "AlwaysCreate" angegeben wurde. +ClCompile: + C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\bin\x86_amd64\CL.exe /c /Zi /W3 /WX- /Od /Ob0 /D WIN32 /D _WINDOWS /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /EHsc /RTC1 /MDd /GS /fp:precise /Zc:wchar_t /Zc:forScope /GR /Fo"cmTC_3e1e6.dir\Debug\\" /Fd"cmTC_3e1e6.dir\Debug\vc100.pdb" /Gd /TP /errorReport:queue testCXXCompiler.cxx + Microsoft (R) C/C++ Optimizing Compiler Version 16.00.40219.01 for x64 + Copyright (C) Microsoft Corporation. All rights reserved. + + cl /c /Zi /W3 /WX- /Od /Ob0 /D WIN32 /D _WINDOWS /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /EHsc /RTC1 /MDd /GS /fp:precise /Zc:wchar_t /Zc:forScope /GR /Fo"cmTC_3e1e6.dir\Debug\\" /Fd"cmTC_3e1e6.dir\Debug\vc100.pdb" /Gd /TP /errorReport:queue testCXXCompiler.cxx + + testCXXCompiler.cxx +ManifestResourceCompile: + C:\Program Files (x86)\Microsoft SDKs\Windows\v7.0A\bin\rc.exe /nologo /fo"cmTC_3e1e6.dir\Debug\cmTC_3e1e6.exe.embed.manifest.res" cmTC_3e1e6.dir\Debug\cmTC_3e1e6_manifest.rc +Link: + C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\bin\x86_amd64\link.exe /ERRORREPORT:QUEUE /OUT:"C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\8caf9177abcac060b9a1d922dc1cef659dbe50b6\CMakeFiles\CMakeTmp\Debug\cmTC_3e1e6.exe" /INCREMENTAL /NOLOGO kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib /MANIFEST /ManifestFile:"cmTC_3e1e6.dir\Debug\cmTC_3e1e6.exe.intermediate.manifest" /MANIFESTUAC:"level='asInvoker' uiAccess='false'" /DEBUG /PDB:"C:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/CMakeFiles/CMakeTmp/Debug/cmTC_3e1e6.pdb" /SUBSYSTEM:CONSOLE /TLBID:1 /DYNAMICBASE /NXCOMPAT /IMPLIB:"C:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/CMakeFiles/CMakeTmp/Debug/cmTC_3e1e6.lib" /MACHINE:X64 cmTC_3e1e6.dir\Debug\cmTC_3e1e6.exe.embed.manifest.res + cmTC_3e1e6.dir\Debug\testCXXCompiler.obj /machine:x64 + cmTC_3e1e6.vcxproj -> C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\8caf9177abcac060b9a1d922dc1cef659dbe50b6\CMakeFiles\CMakeTmp\Debug\cmTC_3e1e6.exe +Manifest: + C:\Program Files (x86)\Microsoft SDKs\Windows\v7.0A\bin\mt.exe /nologo /verbose /out:"cmTC_3e1e6.dir\Debug\cmTC_3e1e6.exe.embed.manifest" /manifest cmTC_3e1e6.dir\Debug\cmTC_3e1e6.exe.intermediate.manifest + C:\Program Files (x86)\Microsoft SDKs\Windows\v7.0A\bin\rc.exe /nologo /fo"cmTC_3e1e6.dir\Debug\cmTC_3e1e6.exe.embed.manifest.res" cmTC_3e1e6.dir\Debug\cmTC_3e1e6_manifest.rc +LinkEmbedManifest: + C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\bin\x86_amd64\link.exe /ERRORREPORT:QUEUE /OUT:"C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\8caf9177abcac060b9a1d922dc1cef659dbe50b6\CMakeFiles\CMakeTmp\Debug\cmTC_3e1e6.exe" /INCREMENTAL /NOLOGO kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib /MANIFEST /ManifestFile:"cmTC_3e1e6.dir\Debug\cmTC_3e1e6.exe.intermediate.manifest" /MANIFESTUAC:"level='asInvoker' uiAccess='false'" /DEBUG /PDB:"C:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/CMakeFiles/CMakeTmp/Debug/cmTC_3e1e6.pdb" /SUBSYSTEM:CONSOLE /TLBID:1 /DYNAMICBASE /NXCOMPAT /IMPLIB:"C:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/CMakeFiles/CMakeTmp/Debug/cmTC_3e1e6.lib" /MACHINE:X64 cmTC_3e1e6.dir\Debug\cmTC_3e1e6.exe.embed.manifest.res + cmTC_3e1e6.dir\Debug\testCXXCompiler.obj /machine:x64 + cmTC_3e1e6.vcxproj -> C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\8caf9177abcac060b9a1d922dc1cef659dbe50b6\CMakeFiles\CMakeTmp\Debug\cmTC_3e1e6.exe +FinalizeBuildStatus: + Die Datei "cmTC_3e1e6.dir\Debug\cmTC_3e1e6.unsuccessfulbuild" wird gelöscht. + Aktualisieren des Timestamps von "cmTC_3e1e6.dir\Debug\cmTC_3e1e6.lastbuildstate". +Die Erstellung von Projekt "C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\8caf9177abcac060b9a1d922dc1cef659dbe50b6\CMakeFiles\CMakeTmp\cmTC_3e1e6.vcxproj" ist abgeschlossen (Standardziele). + +Der Buildvorgang wurde erfolgreich ausgeführt. + 0 Warnung(en) + 0 Fehler + +Verstrichene Zeit 00:00:02.55 + + +Detecting CXX compiler ABI info compiled with the following output: +Change Dir: C:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/CMakeFiles/CMakeTmp + +Run Build Command:"C:/Windows/Microsoft.NET/Framework/v4.0.30319/MSBuild.exe" "cmTC_9e0b5.vcxproj" "/p:Configuration=Debug" "/p:VisualStudioVersion=10.0" +Microsoft (R)-Buildmodul, Version 4.7.2046.0 +[Microsoft .NET Framework, Version 4.0.30319.42000] +Copyright (C) Microsoft Corporation. Alle Rechte vorbehalten. + +Der Buildvorgang wurde am 05.03.2018 22:38:35 gestartet. +Projekt "C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\8caf9177abcac060b9a1d922dc1cef659dbe50b6\CMakeFiles\CMakeTmp\cmTC_9e0b5.vcxproj" auf Knoten "1" (Standardziele). +PrepareForBuild: + Das Verzeichnis "cmTC_9e0b5.dir\Debug\" wird erstellt. + Das Verzeichnis "C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\8caf9177abcac060b9a1d922dc1cef659dbe50b6\CMakeFiles\CMakeTmp\Debug\" wird erstellt. +InitializeBuildStatus: + "cmTC_9e0b5.dir\Debug\cmTC_9e0b5.unsuccessfulbuild" wird erstellt, da "AlwaysCreate" angegeben wurde. +ClCompile: + C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\bin\x86_amd64\CL.exe /c /Zi /W3 /WX- /Od /Ob0 /D WIN32 /D _WINDOWS /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /EHsc /RTC1 /MDd /GS /fp:precise /Zc:wchar_t /Zc:forScope /GR /Fo"cmTC_9e0b5.dir\Debug\\" /Fd"cmTC_9e0b5.dir\Debug\vc100.pdb" /Gd /TP /errorReport:queue "..\..\..\..\..\..\..\..\..\..\Program Files\CMake\share\cmake-3.10\Modules\CMakeCXXCompilerABI.cpp" + Microsoft (R) C/C++ Optimizing Compiler Version 16.00.40219.01 for x64 + Copyright (C) Microsoft Corporation. All rights reserved. + + cl /c /Zi /W3 /WX- /Od /Ob0 /D WIN32 /D _WINDOWS /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /EHsc /RTC1 /MDd /GS /fp:precise /Zc:wchar_t /Zc:forScope /GR /Fo"cmTC_9e0b5.dir\Debug\\" /Fd"cmTC_9e0b5.dir\Debug\vc100.pdb" /Gd /TP /errorReport:queue "..\..\..\..\..\..\..\..\..\..\Program Files\CMake\share\cmake-3.10\Modules\CMakeCXXCompilerABI.cpp" + + CMakeCXXCompilerABI.cpp +ManifestResourceCompile: + C:\Program Files (x86)\Microsoft SDKs\Windows\v7.0A\bin\rc.exe /nologo /fo"cmTC_9e0b5.dir\Debug\cmTC_9e0b5.exe.embed.manifest.res" cmTC_9e0b5.dir\Debug\cmTC_9e0b5_manifest.rc +Link: + C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\bin\x86_amd64\link.exe /ERRORREPORT:QUEUE /OUT:"C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\8caf9177abcac060b9a1d922dc1cef659dbe50b6\CMakeFiles\CMakeTmp\Debug\cmTC_9e0b5.exe" /INCREMENTAL /NOLOGO kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib /MANIFEST /ManifestFile:"cmTC_9e0b5.dir\Debug\cmTC_9e0b5.exe.intermediate.manifest" /MANIFESTUAC:"level='asInvoker' uiAccess='false'" /DEBUG /PDB:"C:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/CMakeFiles/CMakeTmp/Debug/cmTC_9e0b5.pdb" /SUBSYSTEM:CONSOLE /TLBID:1 /DYNAMICBASE /NXCOMPAT /IMPLIB:"C:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/CMakeFiles/CMakeTmp/Debug/cmTC_9e0b5.lib" /MACHINE:X64 cmTC_9e0b5.dir\Debug\cmTC_9e0b5.exe.embed.manifest.res + cmTC_9e0b5.dir\Debug\CMakeCXXCompilerABI.obj /machine:x64 + cmTC_9e0b5.vcxproj -> C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\8caf9177abcac060b9a1d922dc1cef659dbe50b6\CMakeFiles\CMakeTmp\Debug\cmTC_9e0b5.exe +Manifest: + C:\Program Files (x86)\Microsoft SDKs\Windows\v7.0A\bin\mt.exe /nologo /verbose /out:"cmTC_9e0b5.dir\Debug\cmTC_9e0b5.exe.embed.manifest" /manifest cmTC_9e0b5.dir\Debug\cmTC_9e0b5.exe.intermediate.manifest + C:\Program Files (x86)\Microsoft SDKs\Windows\v7.0A\bin\rc.exe /nologo /fo"cmTC_9e0b5.dir\Debug\cmTC_9e0b5.exe.embed.manifest.res" cmTC_9e0b5.dir\Debug\cmTC_9e0b5_manifest.rc +LinkEmbedManifest: + C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\bin\x86_amd64\link.exe /ERRORREPORT:QUEUE /OUT:"C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\8caf9177abcac060b9a1d922dc1cef659dbe50b6\CMakeFiles\CMakeTmp\Debug\cmTC_9e0b5.exe" /INCREMENTAL /NOLOGO kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib /MANIFEST /ManifestFile:"cmTC_9e0b5.dir\Debug\cmTC_9e0b5.exe.intermediate.manifest" /MANIFESTUAC:"level='asInvoker' uiAccess='false'" /DEBUG /PDB:"C:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/CMakeFiles/CMakeTmp/Debug/cmTC_9e0b5.pdb" /SUBSYSTEM:CONSOLE /TLBID:1 /DYNAMICBASE /NXCOMPAT /IMPLIB:"C:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/CMakeFiles/CMakeTmp/Debug/cmTC_9e0b5.lib" /MACHINE:X64 cmTC_9e0b5.dir\Debug\cmTC_9e0b5.exe.embed.manifest.res + cmTC_9e0b5.dir\Debug\CMakeCXXCompilerABI.obj /machine:x64 + cmTC_9e0b5.vcxproj -> C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\8caf9177abcac060b9a1d922dc1cef659dbe50b6\CMakeFiles\CMakeTmp\Debug\cmTC_9e0b5.exe +FinalizeBuildStatus: + Die Datei "cmTC_9e0b5.dir\Debug\cmTC_9e0b5.unsuccessfulbuild" wird gelöscht. + Aktualisieren des Timestamps von "cmTC_9e0b5.dir\Debug\cmTC_9e0b5.lastbuildstate". +Die Erstellung von Projekt "C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\8caf9177abcac060b9a1d922dc1cef659dbe50b6\CMakeFiles\CMakeTmp\cmTC_9e0b5.vcxproj" ist abgeschlossen (Standardziele). + +Der Buildvorgang wurde erfolgreich ausgeführt. + 0 Warnung(en) + 0 Fehler + +Verstrichene Zeit 00:00:02.56 + + + + +Detecting CXX [] compiler features compiled with the following output: +Change Dir: C:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/CMakeFiles/CMakeTmp + +Run Build Command:"C:/Windows/Microsoft.NET/Framework/v4.0.30319/MSBuild.exe" "cmTC_d7934.vcxproj" "/p:Configuration=Debug" "/p:VisualStudioVersion=10.0" +Microsoft (R)-Buildmodul, Version 4.7.2046.0 +[Microsoft .NET Framework, Version 4.0.30319.42000] +Copyright (C) Microsoft Corporation. Alle Rechte vorbehalten. + +Der Buildvorgang wurde am 05.03.2018 22:38:38 gestartet. +Projekt "C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\8caf9177abcac060b9a1d922dc1cef659dbe50b6\CMakeFiles\CMakeTmp\cmTC_d7934.vcxproj" auf Knoten "1" (Standardziele). +PrepareForBuild: + Das Verzeichnis "cmTC_d7934.dir\Debug\" wird erstellt. + Das Verzeichnis "C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\8caf9177abcac060b9a1d922dc1cef659dbe50b6\CMakeFiles\CMakeTmp\Debug\" wird erstellt. +InitializeBuildStatus: + "cmTC_d7934.dir\Debug\cmTC_d7934.unsuccessfulbuild" wird erstellt, da "AlwaysCreate" angegeben wurde. +ClCompile: + C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\bin\x86_amd64\CL.exe /c /Zi /W3 /WX- /Od /Ob0 /D WIN32 /D _WINDOWS /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /EHsc /RTC1 /MDd /GS /fp:precise /Zc:wchar_t /Zc:forScope /GR /Fo"cmTC_d7934.dir\Debug\\" /Fd"cmTC_d7934.dir\Debug\vc100.pdb" /Gd /TP /errorReport:queue ..\feature_tests.cxx + Microsoft (R) C/C++ Optimizing Compiler Version 16.00.40219.01 for x64 + Copyright (C) Microsoft Corporation. All rights reserved. + + cl /c /Zi /W3 /WX- /Od /Ob0 /D WIN32 /D _WINDOWS /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /EHsc /RTC1 /MDd /GS /fp:precise /Zc:wchar_t /Zc:forScope /GR /Fo"cmTC_d7934.dir\Debug\\" /Fd"cmTC_d7934.dir\Debug\vc100.pdb" /Gd /TP /errorReport:queue ..\feature_tests.cxx + + feature_tests.cxx +ManifestResourceCompile: + C:\Program Files (x86)\Microsoft SDKs\Windows\v7.0A\bin\rc.exe /nologo /fo"cmTC_d7934.dir\Debug\cmTC_d7934.exe.embed.manifest.res" cmTC_d7934.dir\Debug\cmTC_d7934_manifest.rc +Link: + C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\bin\x86_amd64\link.exe /ERRORREPORT:QUEUE /OUT:"C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\8caf9177abcac060b9a1d922dc1cef659dbe50b6\CMakeFiles\CMakeTmp\Debug\cmTC_d7934.exe" /INCREMENTAL /NOLOGO kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib /MANIFEST /ManifestFile:"cmTC_d7934.dir\Debug\cmTC_d7934.exe.intermediate.manifest" /MANIFESTUAC:"level='asInvoker' uiAccess='false'" /DEBUG /PDB:"C:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/CMakeFiles/CMakeTmp/Debug/cmTC_d7934.pdb" /SUBSYSTEM:CONSOLE /TLBID:1 /DYNAMICBASE /NXCOMPAT /IMPLIB:"C:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/CMakeFiles/CMakeTmp/Debug/cmTC_d7934.lib" /MACHINE:X64 cmTC_d7934.dir\Debug\cmTC_d7934.exe.embed.manifest.res + cmTC_d7934.dir\Debug\feature_tests.obj /machine:x64 + cmTC_d7934.vcxproj -> C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\8caf9177abcac060b9a1d922dc1cef659dbe50b6\CMakeFiles\CMakeTmp\Debug\cmTC_d7934.exe +Manifest: + C:\Program Files (x86)\Microsoft SDKs\Windows\v7.0A\bin\mt.exe /nologo /verbose /out:"cmTC_d7934.dir\Debug\cmTC_d7934.exe.embed.manifest" /manifest cmTC_d7934.dir\Debug\cmTC_d7934.exe.intermediate.manifest + C:\Program Files (x86)\Microsoft SDKs\Windows\v7.0A\bin\rc.exe /nologo /fo"cmTC_d7934.dir\Debug\cmTC_d7934.exe.embed.manifest.res" cmTC_d7934.dir\Debug\cmTC_d7934_manifest.rc +LinkEmbedManifest: + C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\bin\x86_amd64\link.exe /ERRORREPORT:QUEUE /OUT:"C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\8caf9177abcac060b9a1d922dc1cef659dbe50b6\CMakeFiles\CMakeTmp\Debug\cmTC_d7934.exe" /INCREMENTAL /NOLOGO kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib /MANIFEST /ManifestFile:"cmTC_d7934.dir\Debug\cmTC_d7934.exe.intermediate.manifest" /MANIFESTUAC:"level='asInvoker' uiAccess='false'" /DEBUG /PDB:"C:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/CMakeFiles/CMakeTmp/Debug/cmTC_d7934.pdb" /SUBSYSTEM:CONSOLE /TLBID:1 /DYNAMICBASE /NXCOMPAT /IMPLIB:"C:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/CMakeFiles/CMakeTmp/Debug/cmTC_d7934.lib" /MACHINE:X64 cmTC_d7934.dir\Debug\cmTC_d7934.exe.embed.manifest.res + cmTC_d7934.dir\Debug\feature_tests.obj /machine:x64 + cmTC_d7934.vcxproj -> C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\8caf9177abcac060b9a1d922dc1cef659dbe50b6\CMakeFiles\CMakeTmp\Debug\cmTC_d7934.exe +FinalizeBuildStatus: + Die Datei "cmTC_d7934.dir\Debug\cmTC_d7934.unsuccessfulbuild" wird gelöscht. + Aktualisieren des Timestamps von "cmTC_d7934.dir\Debug\cmTC_d7934.lastbuildstate". +Die Erstellung von Projekt "C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\8caf9177abcac060b9a1d922dc1cef659dbe50b6\CMakeFiles\CMakeTmp\cmTC_d7934.vcxproj" ist abgeschlossen (Standardziele). + +Der Buildvorgang wurde erfolgreich ausgeführt. + 0 Warnung(en) + 0 Fehler + +Verstrichene Zeit 00:00:02.56 + + + Feature record: CXX_FEATURE:0cxx_aggregate_default_initializers + Feature record: CXX_FEATURE:0cxx_alias_templates + Feature record: CXX_FEATURE:0cxx_alignas + Feature record: CXX_FEATURE:0cxx_alignof + Feature record: CXX_FEATURE:0cxx_attributes + Feature record: CXX_FEATURE:0cxx_attribute_deprecated + Feature record: CXX_FEATURE:1cxx_auto_type + Feature record: CXX_FEATURE:0cxx_binary_literals + Feature record: CXX_FEATURE:0cxx_constexpr + Feature record: CXX_FEATURE:0cxx_contextual_conversions + Feature record: CXX_FEATURE:1cxx_decltype + Feature record: CXX_FEATURE:0cxx_decltype_auto + Feature record: CXX_FEATURE:0cxx_default_function_template_args + Feature record: CXX_FEATURE:0cxx_defaulted_functions + Feature record: CXX_FEATURE:0cxx_defaulted_move_initializers + Feature record: CXX_FEATURE:0cxx_delegating_constructors + Feature record: CXX_FEATURE:0cxx_deleted_functions + Feature record: CXX_FEATURE:0cxx_digit_separators + Feature record: CXX_FEATURE:0cxx_enum_forward_declarations + Feature record: CXX_FEATURE:0cxx_explicit_conversions + Feature record: CXX_FEATURE:1cxx_extended_friend_declarations + Feature record: CXX_FEATURE:1cxx_extern_templates + Feature record: CXX_FEATURE:0cxx_final + Feature record: CXX_FEATURE:0cxx_func_identifier + Feature record: CXX_FEATURE:0cxx_generalized_initializers + Feature record: CXX_FEATURE:0cxx_generic_lambdas + Feature record: CXX_FEATURE:0cxx_inheriting_constructors + Feature record: CXX_FEATURE:0cxx_inline_namespaces + Feature record: CXX_FEATURE:1cxx_lambdas + Feature record: CXX_FEATURE:0cxx_lambda_init_captures + Feature record: CXX_FEATURE:1cxx_local_type_template_args + Feature record: CXX_FEATURE:1cxx_long_long_type + Feature record: CXX_FEATURE:0cxx_noexcept + Feature record: CXX_FEATURE:0cxx_nonstatic_member_init + Feature record: CXX_FEATURE:1cxx_nullptr + Feature record: CXX_FEATURE:1cxx_override + Feature record: CXX_FEATURE:0cxx_range_for + Feature record: CXX_FEATURE:0cxx_raw_string_literals + Feature record: CXX_FEATURE:0cxx_reference_qualified_functions + Feature record: CXX_FEATURE:0cxx_return_type_deduction + Feature record: CXX_FEATURE:1cxx_right_angle_brackets + Feature record: CXX_FEATURE:1cxx_rvalue_references + Feature record: CXX_FEATURE:0cxx_sizeof_member + Feature record: CXX_FEATURE:1cxx_static_assert + Feature record: CXX_FEATURE:0cxx_strong_enums + Feature record: CXX_FEATURE:1cxx_template_template_parameters + Feature record: CXX_FEATURE:0cxx_thread_local + Feature record: CXX_FEATURE:1cxx_trailing_return_types + Feature record: CXX_FEATURE:0cxx_unicode_literals + Feature record: CXX_FEATURE:0cxx_uniform_initialization + Feature record: CXX_FEATURE:0cxx_unrestricted_unions + Feature record: CXX_FEATURE:0cxx_user_literals + Feature record: CXX_FEATURE:0cxx_variable_templates + Feature record: CXX_FEATURE:1cxx_variadic_macros + Feature record: CXX_FEATURE:0cxx_variadic_templates diff --git a/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/CMakeFiles/TargetDirectories.txt b/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/CMakeFiles/TargetDirectories.txt new file mode 100644 index 0000000..07af7c7 --- /dev/null +++ b/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/CMakeFiles/TargetDirectories.txt @@ -0,0 +1,3 @@ +C:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/CMakeFiles/cholmod-test.dir +C:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/CMakeFiles/ALL_BUILD.dir +C:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/CMakeFiles/ZERO_CHECK.dir diff --git a/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/CMakeFiles/cmake.check_cache b/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/CMakeFiles/cmake.check_cache new file mode 100644 index 0000000..3dccd73 --- /dev/null +++ b/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/CMakeFiles/cmake.check_cache @@ -0,0 +1 @@ +# This file is generated by cmake for dependency checking of the CMakeCache.txt file diff --git a/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/CMakeFiles/feature_tests.bin b/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/CMakeFiles/feature_tests.bin new file mode 100644 index 0000000..cef19e1 Binary files /dev/null and b/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/CMakeFiles/feature_tests.bin differ diff --git a/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/CMakeFiles/feature_tests.cxx b/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/CMakeFiles/feature_tests.cxx new file mode 100644 index 0000000..79ac5fe --- /dev/null +++ b/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/CMakeFiles/feature_tests.cxx @@ -0,0 +1,391 @@ + + const char features[] = {"\n" +"CXX_FEATURE:" +#if _MSC_FULL_VER >= 190024406 +"1" +#else +"0" +#endif +"cxx_aggregate_default_initializers\n" +"CXX_FEATURE:" +#if _MSC_VER >= 1800 +"1" +#else +"0" +#endif +"cxx_alias_templates\n" +"CXX_FEATURE:" +#if _MSC_VER >= 1900 +"1" +#else +"0" +#endif +"cxx_alignas\n" +"CXX_FEATURE:" +#if _MSC_VER >= 1900 +"1" +#else +"0" +#endif +"cxx_alignof\n" +"CXX_FEATURE:" +#if _MSC_VER >= 1900 +"1" +#else +"0" +#endif +"cxx_attributes\n" +"CXX_FEATURE:" +#if _MSC_VER >= 1900 +"1" +#else +"0" +#endif +"cxx_attribute_deprecated\n" +"CXX_FEATURE:" +#if _MSC_VER >= 1600 +"1" +#else +"0" +#endif +"cxx_auto_type\n" +"CXX_FEATURE:" +#if _MSC_VER >= 1900 +"1" +#else +"0" +#endif +"cxx_binary_literals\n" +"CXX_FEATURE:" +#if _MSC_VER >= 1900 +"1" +#else +"0" +#endif +"cxx_constexpr\n" +"CXX_FEATURE:" +#if _MSC_VER >= 1800 +"1" +#else +"0" +#endif +"cxx_contextual_conversions\n" +"CXX_FEATURE:" +#if _MSC_VER >= 1600 +"1" +#else +"0" +#endif +"cxx_decltype\n" +"CXX_FEATURE:" +#if _MSC_VER >= 1900 +"1" +#else +"0" +#endif +"cxx_decltype_auto\n" +"CXX_FEATURE:" +#if _MSC_VER >= 1800 +"1" +#else +"0" +#endif +"cxx_default_function_template_args\n" +"CXX_FEATURE:" +#if _MSC_VER >= 1800 +"1" +#else +"0" +#endif +"cxx_defaulted_functions\n" +"CXX_FEATURE:" +#if _MSC_VER >= 1900 +"1" +#else +"0" +#endif +"cxx_defaulted_move_initializers\n" +"CXX_FEATURE:" +#if _MSC_VER >= 1800 +"1" +#else +"0" +#endif +"cxx_delegating_constructors\n" +"CXX_FEATURE:" +#if _MSC_VER >= 1900 +"1" +#else +"0" +#endif +"cxx_deleted_functions\n" +"CXX_FEATURE:" +#if _MSC_VER >= 1900 +"1" +#else +"0" +#endif +"cxx_digit_separators\n" +"CXX_FEATURE:" +#if _MSC_VER >= 1700 +"1" +#else +"0" +#endif +"cxx_enum_forward_declarations\n" +"CXX_FEATURE:" +#if _MSC_VER >= 1800 +"1" +#else +"0" +#endif +"cxx_explicit_conversions\n" +"CXX_FEATURE:" +#if _MSC_VER >= 1600 +"1" +#else +"0" +#endif +"cxx_extended_friend_declarations\n" +"CXX_FEATURE:" +#if _MSC_VER >= 1600 +"1" +#else +"0" +#endif +"cxx_extern_templates\n" +"CXX_FEATURE:" +#if _MSC_VER >= 1700 +"1" +#else +"0" +#endif +"cxx_final\n" +"CXX_FEATURE:" +#if _MSC_VER >= 1900 +"1" +#else +"0" +#endif +"cxx_func_identifier\n" +"CXX_FEATURE:" +#if _MSC_FULL_VER >= 180030723 +"1" +#else +"0" +#endif +"cxx_generalized_initializers\n" +"CXX_FEATURE:" +#if _MSC_VER >= 1900 +"1" +#else +"0" +#endif +"cxx_generic_lambdas\n" +"CXX_FEATURE:" +#if _MSC_VER >= 1900 +"1" +#else +"0" +#endif +"cxx_inheriting_constructors\n" +"CXX_FEATURE:" +#if _MSC_VER >= 1900 +"1" +#else +"0" +#endif +"cxx_inline_namespaces\n" +"CXX_FEATURE:" +#if _MSC_VER >= 1600 +"1" +#else +"0" +#endif +"cxx_lambdas\n" +"CXX_FEATURE:" +#if _MSC_VER >= 1900 +"1" +#else +"0" +#endif +"cxx_lambda_init_captures\n" +"CXX_FEATURE:" +#if _MSC_VER >= 1600 +"1" +#else +"0" +#endif +"cxx_local_type_template_args\n" +"CXX_FEATURE:" +#if _MSC_VER >= 1600 +"1" +#else +"0" +#endif +"cxx_long_long_type\n" +"CXX_FEATURE:" +#if _MSC_VER >= 1900 +"1" +#else +"0" +#endif +"cxx_noexcept\n" +"CXX_FEATURE:" +#if _MSC_VER >= 1900 +"1" +#else +"0" +#endif +"cxx_nonstatic_member_init\n" +"CXX_FEATURE:" +#if _MSC_VER >= 1600 +"1" +#else +"0" +#endif +"cxx_nullptr\n" +"CXX_FEATURE:" +#if _MSC_VER >= 1600 +"1" +#else +"0" +#endif +"cxx_override\n" +"CXX_FEATURE:" +#if _MSC_VER >= 1700 +"1" +#else +"0" +#endif +"cxx_range_for\n" +"CXX_FEATURE:" +#if _MSC_VER >= 1800 +"1" +#else +"0" +#endif +"cxx_raw_string_literals\n" +"CXX_FEATURE:" +#if _MSC_VER >= 1900 +"1" +#else +"0" +#endif +"cxx_reference_qualified_functions\n" +"CXX_FEATURE:" +#if _MSC_VER >= 1900 +"1" +#else +"0" +#endif +"cxx_return_type_deduction\n" +"CXX_FEATURE:" +#if _MSC_VER >= 1600 +"1" +#else +"0" +#endif +"cxx_right_angle_brackets\n" +"CXX_FEATURE:" +#if _MSC_VER >= 1600 +"1" +#else +"0" +#endif +"cxx_rvalue_references\n" +"CXX_FEATURE:" +#if _MSC_VER >= 1900 +"1" +#else +"0" +#endif +"cxx_sizeof_member\n" +"CXX_FEATURE:" +#if _MSC_VER >= 1600 +"1" +#else +"0" +#endif +"cxx_static_assert\n" +"CXX_FEATURE:" +#if _MSC_VER >= 1700 +"1" +#else +"0" +#endif +"cxx_strong_enums\n" +"CXX_FEATURE:" +#if _MSC_VER >= 1600 +"1" +#else +"0" +#endif +"cxx_template_template_parameters\n" +"CXX_FEATURE:" +#if _MSC_VER >= 1900 +"1" +#else +"0" +#endif +"cxx_thread_local\n" +"CXX_FEATURE:" +#if _MSC_VER >= 1600 +"1" +#else +"0" +#endif +"cxx_trailing_return_types\n" +"CXX_FEATURE:" +#if _MSC_VER >= 1900 +"1" +#else +"0" +#endif +"cxx_unicode_literals\n" +"CXX_FEATURE:" +#if _MSC_VER >= 1800 +"1" +#else +"0" +#endif +"cxx_uniform_initialization\n" +"CXX_FEATURE:" +#if _MSC_VER >= 1900 +"1" +#else +"0" +#endif +"cxx_unrestricted_unions\n" +"CXX_FEATURE:" +#if _MSC_VER >= 1900 +"1" +#else +"0" +#endif +"cxx_user_literals\n" +"CXX_FEATURE:" +#if _MSC_FULL_VER >= 190023918 +"1" +#else +"0" +#endif +"cxx_variable_templates\n" +"CXX_FEATURE:" +#if _MSC_VER >= 1600 +"1" +#else +"0" +#endif +"cxx_variadic_macros\n" +"CXX_FEATURE:" +#if _MSC_VER >= 1800 +"1" +#else +"0" +#endif +"cxx_variadic_templates\n" + +}; + +int main(int argc, char** argv) { (void)argv; return features[argc]; } diff --git a/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/CMakeFiles/generate.stamp b/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/CMakeFiles/generate.stamp new file mode 100644 index 0000000..9b5f49f --- /dev/null +++ b/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/CMakeFiles/generate.stamp @@ -0,0 +1 @@ +# CMake generation timestamp file for this directory. diff --git a/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/CMakeFiles/generate.stamp.depend b/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/CMakeFiles/generate.stamp.depend new file mode 100644 index 0000000..c53a200 --- /dev/null +++ b/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/CMakeFiles/generate.stamp.depend @@ -0,0 +1,138 @@ +# CMake generation dependency list for this directory. +C:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/src/CMakeLists.txt +C:/Program Files/CMake/share/cmake-3.10/Modules/CMakeDetermineSystem.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/CMakeSystem.cmake.in +C:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/CMakeFiles/3.10.0/CMakeSystem.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/CMakeSystemSpecificInitialize.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/CMakeDetermineCCompiler.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/CMakeDetermineCompiler.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/CMakeDetermineCompilerId.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/CMakeCompilerIdDetection.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/Compiler/ADSP-DetermineCompiler.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/Compiler/ARMCC-DetermineCompiler.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/Compiler/AppleClang-DetermineCompiler.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/Compiler/Clang-DetermineCompilerInternal.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/Compiler/Borland-DetermineCompiler.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/Compiler/Bruce-C-DetermineCompiler.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/Compiler/Clang-DetermineCompiler.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/Compiler/Clang-DetermineCompilerInternal.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/Compiler/Compaq-C-DetermineCompiler.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/Compiler/Cray-DetermineCompiler.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/Compiler/Embarcadero-DetermineCompiler.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/Compiler/Fujitsu-DetermineCompiler.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/Compiler/GHS-DetermineCompiler.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/Compiler/GNU-C-DetermineCompiler.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/Compiler/HP-C-DetermineCompiler.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/Compiler/IAR-DetermineCompiler.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/Compiler/Intel-DetermineCompiler.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/Compiler/MIPSpro-DetermineCompiler.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/Compiler/MSVC-DetermineCompiler.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/Compiler/NVIDIA-DetermineCompiler.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/Compiler/PGI-DetermineCompiler.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/Compiler/PathScale-DetermineCompiler.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/Compiler/SCO-DetermineCompiler.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/Compiler/SDCC-C-DetermineCompiler.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/Compiler/SunPro-C-DetermineCompiler.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/Compiler/TI-DetermineCompiler.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/Compiler/TinyCC-C-DetermineCompiler.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/Compiler/VisualAge-C-DetermineCompiler.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/Compiler/Watcom-DetermineCompiler.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/Compiler/XL-C-DetermineCompiler.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/Compiler/zOS-C-DetermineCompiler.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/CompilerId/VS-10.vcxproj.in +C:/Program Files/CMake/share/cmake-3.10/Modules/CMakeFindBinUtils.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/CMakeCCompiler.cmake.in +C:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/CMakeFiles/3.10.0/CMakeCCompiler.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/CMakeDetermineCXXCompiler.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/CMakeDetermineCompiler.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/Platform/Windows-Determine-CXX.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/CMakeDetermineCompilerId.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/CMakeCompilerIdDetection.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/Compiler/ADSP-DetermineCompiler.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/Compiler/ARMCC-DetermineCompiler.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/Compiler/AppleClang-DetermineCompiler.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/Compiler/Clang-DetermineCompilerInternal.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/Compiler/Borland-DetermineCompiler.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/Compiler/Clang-DetermineCompiler.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/Compiler/Clang-DetermineCompilerInternal.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/Compiler/Comeau-CXX-DetermineCompiler.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/Compiler/Compaq-CXX-DetermineCompiler.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/Compiler/Cray-DetermineCompiler.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/Compiler/Embarcadero-DetermineCompiler.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/Compiler/Fujitsu-DetermineCompiler.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/Compiler/GHS-DetermineCompiler.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/Compiler/GNU-CXX-DetermineCompiler.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/Compiler/HP-CXX-DetermineCompiler.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/Compiler/IAR-DetermineCompiler.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/Compiler/Intel-DetermineCompiler.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/Compiler/MIPSpro-DetermineCompiler.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/Compiler/MSVC-DetermineCompiler.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/Compiler/NVIDIA-DetermineCompiler.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/Compiler/PGI-DetermineCompiler.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/Compiler/PathScale-DetermineCompiler.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/Compiler/SCO-DetermineCompiler.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/Compiler/TI-DetermineCompiler.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/Compiler/VisualAge-CXX-DetermineCompiler.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/Compiler/Watcom-DetermineCompiler.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/Compiler/XL-CXX-DetermineCompiler.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/Compiler/zOS-CXX-DetermineCompiler.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/CompilerId/VS-10.vcxproj.in +C:/Program Files/CMake/share/cmake-3.10/Modules/CMakeFindBinUtils.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/CMakeCXXCompiler.cmake.in +C:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/CMakeFiles/3.10.0/CMakeCXXCompiler.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/CMakeSystemSpecificInformation.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/CMakeGenericSystem.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/Platform/Windows.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/Platform/WindowsPaths.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/CMakeCInformation.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/CMakeLanguageInformation.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/Platform/Windows-MSVC-C.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/Platform/Windows-MSVC.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/CMakeDetermineRCCompiler.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/CMakeRCCompiler.cmake.in +C:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/CMakeFiles/3.10.0/CMakeRCCompiler.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/CMakeRCInformation.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/CMakeTestRCCompiler.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/CMakeCommonLanguageInclude.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/CMakeTestCCompiler.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/CMakeTestCompilerCommon.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/CMakeDetermineCompilerABI.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/CMakeParseImplicitLinkInfo.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/CMakeCCompilerABI.c +C:/Program Files/CMake/share/cmake-3.10/Modules/CMakeDetermineCompileFeatures.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/CMakeCCompiler.cmake.in +C:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/CMakeFiles/3.10.0/CMakeCCompiler.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/CMakeCXXInformation.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/CMakeLanguageInformation.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/Compiler/MSVC-CXX.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/Compiler/CMakeCommonCompilerMacros.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/Platform/Windows-MSVC-CXX.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/Platform/Windows-MSVC.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/CMakeCommonLanguageInclude.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/CMakeTestCXXCompiler.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/CMakeTestCompilerCommon.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/CMakeDetermineCompilerABI.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/CMakeParseImplicitLinkInfo.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/CMakeCXXCompilerABI.cpp +C:/Program Files/CMake/share/cmake-3.10/Modules/CMakeDetermineCompileFeatures.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/Internal/FeatureTesting.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/Compiler/MSVC-CXX-FeatureTests.cmake +C:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/CMakeFiles/feature_tests.cxx +C:/Program Files/CMake/share/cmake-3.10/Modules/CMakeCXXCompiler.cmake.in +C:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/CMakeFiles/3.10.0/CMakeCXXCompiler.cmake +C:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/conanbuildinfo.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/CMakeParseArguments.cmake +C:/Users/t.vogl/.conan/data/suitesparse/5164583/spielwiese/testing/package/85f780d0530411a64b0be4407b381706014b445d/FindCholmod.cmake +C:/Users/t.vogl/.conan/data/suitesparse/5164583/spielwiese/testing/package/85f780d0530411a64b0be4407b381706014b445d/lib/cmake/suitesparse-4.5.0/suitesparse-config-version.cmake +C:/Users/t.vogl/.conan/data/suitesparse/5164583/spielwiese/testing/package/85f780d0530411a64b0be4407b381706014b445d/lib/cmake/suitesparse-4.5.0/suitesparse-config.cmake +C:/Users/t.vogl/.conan/data/suitesparse/5164583/spielwiese/testing/package/85f780d0530411a64b0be4407b381706014b445d/lib/cmake/suitesparse-4.5.0/SuiteSparse-targets.cmake +C:/Users/t.vogl/.conan/data/suitesparse/5164583/spielwiese/testing/package/85f780d0530411a64b0be4407b381706014b445d/lib/cmake/suitesparse-4.5.0/SuiteSparse-targets-release.cmake diff --git a/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/CMakeFiles/generate.stamp.list b/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/CMakeFiles/generate.stamp.list new file mode 100644 index 0000000..f493d65 --- /dev/null +++ b/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/CMakeFiles/generate.stamp.list @@ -0,0 +1 @@ +C:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/CMakeFiles/generate.stamp diff --git a/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/SuitesparseTest.sln b/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/SuitesparseTest.sln new file mode 100644 index 0000000..77d789e --- /dev/null +++ b/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/SuitesparseTest.sln @@ -0,0 +1,52 @@ +Microsoft Visual Studio Solution File, Format Version 11.00 +# Visual Studio 2010 +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ALL_BUILD", "ALL_BUILD.vcxproj", "{912CA933-3C84-329F-B76E-4F0ED9CCF70D}" + ProjectSection(ProjectDependencies) = postProject + {07D38AA1-E7DC-3A7E-8679-43696B099434} = {07D38AA1-E7DC-3A7E-8679-43696B099434} + {B0E39398-2895-35AA-B15E-50C98EC4727E} = {B0E39398-2895-35AA-B15E-50C98EC4727E} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ZERO_CHECK", "ZERO_CHECK.vcxproj", "{07D38AA1-E7DC-3A7E-8679-43696B099434}" + ProjectSection(ProjectDependencies) = postProject + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "cholmod-test", "cholmod-test.vcxproj", "{B0E39398-2895-35AA-B15E-50C98EC4727E}" + ProjectSection(ProjectDependencies) = postProject + {07D38AA1-E7DC-3A7E-8679-43696B099434} = {07D38AA1-E7DC-3A7E-8679-43696B099434} + EndProjectSection +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|x64 = Debug|x64 + Release|x64 = Release|x64 + MinSizeRel|x64 = MinSizeRel|x64 + RelWithDebInfo|x64 = RelWithDebInfo|x64 + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {912CA933-3C84-329F-B76E-4F0ED9CCF70D}.Debug|x64.ActiveCfg = Debug|x64 + {912CA933-3C84-329F-B76E-4F0ED9CCF70D}.Release|x64.ActiveCfg = Release|x64 + {912CA933-3C84-329F-B76E-4F0ED9CCF70D}.MinSizeRel|x64.ActiveCfg = MinSizeRel|x64 + {912CA933-3C84-329F-B76E-4F0ED9CCF70D}.RelWithDebInfo|x64.ActiveCfg = RelWithDebInfo|x64 + {07D38AA1-E7DC-3A7E-8679-43696B099434}.Debug|x64.ActiveCfg = Debug|x64 + {07D38AA1-E7DC-3A7E-8679-43696B099434}.Debug|x64.Build.0 = Debug|x64 + {07D38AA1-E7DC-3A7E-8679-43696B099434}.Release|x64.ActiveCfg = Release|x64 + {07D38AA1-E7DC-3A7E-8679-43696B099434}.Release|x64.Build.0 = Release|x64 + {07D38AA1-E7DC-3A7E-8679-43696B099434}.MinSizeRel|x64.ActiveCfg = MinSizeRel|x64 + {07D38AA1-E7DC-3A7E-8679-43696B099434}.MinSizeRel|x64.Build.0 = MinSizeRel|x64 + {07D38AA1-E7DC-3A7E-8679-43696B099434}.RelWithDebInfo|x64.ActiveCfg = RelWithDebInfo|x64 + {07D38AA1-E7DC-3A7E-8679-43696B099434}.RelWithDebInfo|x64.Build.0 = RelWithDebInfo|x64 + {B0E39398-2895-35AA-B15E-50C98EC4727E}.Debug|x64.ActiveCfg = Debug|x64 + {B0E39398-2895-35AA-B15E-50C98EC4727E}.Debug|x64.Build.0 = Debug|x64 + {B0E39398-2895-35AA-B15E-50C98EC4727E}.Release|x64.ActiveCfg = Release|x64 + {B0E39398-2895-35AA-B15E-50C98EC4727E}.Release|x64.Build.0 = Release|x64 + {B0E39398-2895-35AA-B15E-50C98EC4727E}.MinSizeRel|x64.ActiveCfg = MinSizeRel|x64 + {B0E39398-2895-35AA-B15E-50C98EC4727E}.MinSizeRel|x64.Build.0 = MinSizeRel|x64 + {B0E39398-2895-35AA-B15E-50C98EC4727E}.RelWithDebInfo|x64.ActiveCfg = RelWithDebInfo|x64 + {B0E39398-2895-35AA-B15E-50C98EC4727E}.RelWithDebInfo|x64.Build.0 = RelWithDebInfo|x64 + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {AD78FD8D-5EDA-342E-A989-27A4B4D958CF} + EndGlobalSection + GlobalSection(ExtensibilityAddIns) = postSolution + EndGlobalSection +EndGlobal diff --git a/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/ZERO_CHECK.vcxproj b/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/ZERO_CHECK.vcxproj new file mode 100644 index 0000000..9424209 --- /dev/null +++ b/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/ZERO_CHECK.vcxproj @@ -0,0 +1,161 @@ + + + + + Debug + x64 + + + Release + x64 + + + MinSizeRel + x64 + + + RelWithDebInfo + x64 + + + + {07D38AA1-E7DC-3A7E-8679-43696B099434} + Win32Proj + x64 + ZERO_CHECK + + + + Utility + MultiByte + v100 + + + Utility + MultiByte + v100 + + + Utility + MultiByte + v100 + + + Utility + MultiByte + v100 + + + + + + + + + + <_ProjectFileVersion>10.0.20506.1 + $(Platform)\$(Configuration)\$(ProjectName)\ + $(Platform)\$(Configuration)\$(ProjectName)\ + $(Platform)\$(Configuration)\$(ProjectName)\ + $(Platform)\$(Configuration)\$(ProjectName)\ + + + + C:\Users\t.vogl\.conan\data\suitesparse\5164583\spielwiese\testing\package\85f780d0530411a64b0be4407b381706014b445d\include;C:\Users\t.vogl\.conan\data\suitesparse\5164583\spielwiese\testing\package\85f780d0530411a64b0be4407b381706014b445d\include\suitesparse;%(AdditionalIncludeDirectories) + $(ProjectDir)/$(IntDir) + %(Filename).h + %(Filename).tlb + %(Filename)_i.c + %(Filename)_p.c + + + + + C:\Users\t.vogl\.conan\data\suitesparse\5164583\spielwiese\testing\package\85f780d0530411a64b0be4407b381706014b445d\include;C:\Users\t.vogl\.conan\data\suitesparse\5164583\spielwiese\testing\package\85f780d0530411a64b0be4407b381706014b445d\include\suitesparse;%(AdditionalIncludeDirectories) + $(ProjectDir)/$(IntDir) + %(Filename).h + %(Filename).tlb + %(Filename)_i.c + %(Filename)_p.c + + + + + C:\Users\t.vogl\.conan\data\suitesparse\5164583\spielwiese\testing\package\85f780d0530411a64b0be4407b381706014b445d\include;C:\Users\t.vogl\.conan\data\suitesparse\5164583\spielwiese\testing\package\85f780d0530411a64b0be4407b381706014b445d\include\suitesparse;%(AdditionalIncludeDirectories) + $(ProjectDir)/$(IntDir) + %(Filename).h + %(Filename).tlb + %(Filename)_i.c + %(Filename)_p.c + + + + + C:\Users\t.vogl\.conan\data\suitesparse\5164583\spielwiese\testing\package\85f780d0530411a64b0be4407b381706014b445d\include;C:\Users\t.vogl\.conan\data\suitesparse\5164583\spielwiese\testing\package\85f780d0530411a64b0be4407b381706014b445d\include\suitesparse;%(AdditionalIncludeDirectories) + $(ProjectDir)/$(IntDir) + %(Filename).h + %(Filename).tlb + %(Filename)_i.c + %(Filename)_p.c + + + + + Checking Build System + setlocal +"C:\Program Files\CMake\bin\cmake.exe" -HC:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/src -BC:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6 --check-stamp-list CMakeFiles/generate.stamp.list --vs-solution-file C:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/SuitesparseTest.sln +if %errorlevel% neq 0 goto :cmEnd +:cmEnd +endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone +:cmErrorLevel +exit /b %1 +:cmDone +if %errorlevel% neq 0 goto :VCEnd + C:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/CMakeFiles/88db50b07a9bb1b025cfd97b4ed0663f/generate.stamp.rule;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCCompiler.cmake.in;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCCompilerABI.c;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCInformation.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCXXCompiler.cmake.in;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCXXCompilerABI.cpp;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCXXInformation.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCommonLanguageInclude.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCompilerIdDetection.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCXXCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCompileFeatures.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCompilerABI.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCompilerId.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineRCCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineSystem.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeFindBinUtils.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeGenericSystem.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeLanguageInformation.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeParseArguments.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeParseImplicitLinkInfo.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeRCCompiler.cmake.in;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeRCInformation.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeSystem.cmake.in;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeSystemSpecificInformation.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeSystemSpecificInitialize.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeTestCCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeTestCXXCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeTestCompilerCommon.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeTestRCCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\ADSP-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\ARMCC-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\AppleClang-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Borland-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Bruce-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\CMakeCommonCompilerMacros.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Clang-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Clang-DetermineCompilerInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Comeau-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Compaq-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Compaq-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Cray-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Embarcadero-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Fujitsu-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\GHS-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\GNU-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\GNU-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\HP-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\HP-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\IAR-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\IBMCPP-C-DetermineVersionInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\IBMCPP-CXX-DetermineVersionInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Intel-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\MIPSpro-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\MSVC-CXX-FeatureTests.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\MSVC-CXX.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\MSVC-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\NVIDIA-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\OpenWatcom-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\PGI-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\PathScale-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\SCO-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\SDCC-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\SunPro-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\SunPro-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\TI-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\TinyCC-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\VisualAge-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\VisualAge-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Watcom-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\XL-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\XL-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\zOS-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\zOS-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CompilerId\VS-10.vcxproj.in;C:\Program Files\CMake\share\cmake-3.10\Modules\Internal\FeatureTesting.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\Windows-Determine-CXX.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\Windows-MSVC-C.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\Windows-MSVC-CXX.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\Windows-MSVC.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\Windows.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\WindowsPaths.cmake;C:\Users\t.vogl\.conan\data\suitesparse\5164583\spielwiese\testing\package\85f780d0530411a64b0be4407b381706014b445d\FindCholmod.cmake;C:\Users\t.vogl\.conan\data\suitesparse\5164583\spielwiese\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\cmake\suitesparse-4.5.0\SuiteSparse-targets-release.cmake;C:\Users\t.vogl\.conan\data\suitesparse\5164583\spielwiese\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\cmake\suitesparse-4.5.0\SuiteSparse-targets.cmake;C:\Users\t.vogl\.conan\data\suitesparse\5164583\spielwiese\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\cmake\suitesparse-4.5.0\suitesparse-config-version.cmake;C:\Users\t.vogl\.conan\data\suitesparse\5164583\spielwiese\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\cmake\suitesparse-4.5.0\suitesparse-config.cmake;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\8caf9177abcac060b9a1d922dc1cef659dbe50b6\CMakeFiles\3.10.0\CMakeCCompiler.cmake;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\8caf9177abcac060b9a1d922dc1cef659dbe50b6\CMakeFiles\3.10.0\CMakeCXXCompiler.cmake;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\8caf9177abcac060b9a1d922dc1cef659dbe50b6\CMakeFiles\3.10.0\CMakeRCCompiler.cmake;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\8caf9177abcac060b9a1d922dc1cef659dbe50b6\CMakeFiles\3.10.0\CMakeSystem.cmake;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\8caf9177abcac060b9a1d922dc1cef659dbe50b6\CMakeFiles\feature_tests.cxx;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\8caf9177abcac060b9a1d922dc1cef659dbe50b6\conanbuildinfo.cmake;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\src\CMakeLists.txt;%(AdditionalInputs) + C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\8caf9177abcac060b9a1d922dc1cef659dbe50b6\CMakeFiles\generate.stamp + Checking Build System + setlocal +"C:\Program Files\CMake\bin\cmake.exe" -HC:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/src -BC:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6 --check-stamp-list CMakeFiles/generate.stamp.list --vs-solution-file C:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/SuitesparseTest.sln +if %errorlevel% neq 0 goto :cmEnd +:cmEnd +endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone +:cmErrorLevel +exit /b %1 +:cmDone +if %errorlevel% neq 0 goto :VCEnd + C:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/CMakeFiles/88db50b07a9bb1b025cfd97b4ed0663f/generate.stamp.rule;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCCompiler.cmake.in;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCCompilerABI.c;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCInformation.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCXXCompiler.cmake.in;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCXXCompilerABI.cpp;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCXXInformation.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCommonLanguageInclude.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCompilerIdDetection.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCXXCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCompileFeatures.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCompilerABI.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCompilerId.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineRCCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineSystem.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeFindBinUtils.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeGenericSystem.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeLanguageInformation.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeParseArguments.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeParseImplicitLinkInfo.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeRCCompiler.cmake.in;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeRCInformation.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeSystem.cmake.in;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeSystemSpecificInformation.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeSystemSpecificInitialize.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeTestCCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeTestCXXCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeTestCompilerCommon.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeTestRCCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\ADSP-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\ARMCC-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\AppleClang-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Borland-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Bruce-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\CMakeCommonCompilerMacros.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Clang-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Clang-DetermineCompilerInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Comeau-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Compaq-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Compaq-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Cray-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Embarcadero-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Fujitsu-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\GHS-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\GNU-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\GNU-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\HP-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\HP-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\IAR-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\IBMCPP-C-DetermineVersionInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\IBMCPP-CXX-DetermineVersionInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Intel-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\MIPSpro-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\MSVC-CXX-FeatureTests.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\MSVC-CXX.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\MSVC-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\NVIDIA-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\OpenWatcom-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\PGI-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\PathScale-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\SCO-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\SDCC-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\SunPro-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\SunPro-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\TI-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\TinyCC-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\VisualAge-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\VisualAge-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Watcom-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\XL-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\XL-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\zOS-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\zOS-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CompilerId\VS-10.vcxproj.in;C:\Program Files\CMake\share\cmake-3.10\Modules\Internal\FeatureTesting.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\Windows-Determine-CXX.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\Windows-MSVC-C.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\Windows-MSVC-CXX.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\Windows-MSVC.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\Windows.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\WindowsPaths.cmake;C:\Users\t.vogl\.conan\data\suitesparse\5164583\spielwiese\testing\package\85f780d0530411a64b0be4407b381706014b445d\FindCholmod.cmake;C:\Users\t.vogl\.conan\data\suitesparse\5164583\spielwiese\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\cmake\suitesparse-4.5.0\SuiteSparse-targets-release.cmake;C:\Users\t.vogl\.conan\data\suitesparse\5164583\spielwiese\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\cmake\suitesparse-4.5.0\SuiteSparse-targets.cmake;C:\Users\t.vogl\.conan\data\suitesparse\5164583\spielwiese\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\cmake\suitesparse-4.5.0\suitesparse-config-version.cmake;C:\Users\t.vogl\.conan\data\suitesparse\5164583\spielwiese\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\cmake\suitesparse-4.5.0\suitesparse-config.cmake;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\8caf9177abcac060b9a1d922dc1cef659dbe50b6\CMakeFiles\3.10.0\CMakeCCompiler.cmake;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\8caf9177abcac060b9a1d922dc1cef659dbe50b6\CMakeFiles\3.10.0\CMakeCXXCompiler.cmake;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\8caf9177abcac060b9a1d922dc1cef659dbe50b6\CMakeFiles\3.10.0\CMakeRCCompiler.cmake;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\8caf9177abcac060b9a1d922dc1cef659dbe50b6\CMakeFiles\3.10.0\CMakeSystem.cmake;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\8caf9177abcac060b9a1d922dc1cef659dbe50b6\CMakeFiles\feature_tests.cxx;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\8caf9177abcac060b9a1d922dc1cef659dbe50b6\conanbuildinfo.cmake;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\src\CMakeLists.txt;%(AdditionalInputs) + C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\8caf9177abcac060b9a1d922dc1cef659dbe50b6\CMakeFiles\generate.stamp + Checking Build System + setlocal +"C:\Program Files\CMake\bin\cmake.exe" -HC:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/src -BC:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6 --check-stamp-list CMakeFiles/generate.stamp.list --vs-solution-file C:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/SuitesparseTest.sln +if %errorlevel% neq 0 goto :cmEnd +:cmEnd +endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone +:cmErrorLevel +exit /b %1 +:cmDone +if %errorlevel% neq 0 goto :VCEnd + C:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/CMakeFiles/88db50b07a9bb1b025cfd97b4ed0663f/generate.stamp.rule;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCCompiler.cmake.in;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCCompilerABI.c;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCInformation.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCXXCompiler.cmake.in;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCXXCompilerABI.cpp;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCXXInformation.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCommonLanguageInclude.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCompilerIdDetection.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCXXCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCompileFeatures.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCompilerABI.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCompilerId.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineRCCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineSystem.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeFindBinUtils.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeGenericSystem.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeLanguageInformation.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeParseArguments.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeParseImplicitLinkInfo.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeRCCompiler.cmake.in;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeRCInformation.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeSystem.cmake.in;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeSystemSpecificInformation.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeSystemSpecificInitialize.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeTestCCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeTestCXXCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeTestCompilerCommon.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeTestRCCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\ADSP-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\ARMCC-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\AppleClang-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Borland-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Bruce-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\CMakeCommonCompilerMacros.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Clang-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Clang-DetermineCompilerInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Comeau-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Compaq-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Compaq-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Cray-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Embarcadero-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Fujitsu-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\GHS-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\GNU-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\GNU-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\HP-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\HP-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\IAR-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\IBMCPP-C-DetermineVersionInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\IBMCPP-CXX-DetermineVersionInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Intel-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\MIPSpro-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\MSVC-CXX-FeatureTests.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\MSVC-CXX.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\MSVC-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\NVIDIA-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\OpenWatcom-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\PGI-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\PathScale-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\SCO-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\SDCC-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\SunPro-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\SunPro-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\TI-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\TinyCC-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\VisualAge-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\VisualAge-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Watcom-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\XL-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\XL-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\zOS-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\zOS-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CompilerId\VS-10.vcxproj.in;C:\Program Files\CMake\share\cmake-3.10\Modules\Internal\FeatureTesting.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\Windows-Determine-CXX.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\Windows-MSVC-C.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\Windows-MSVC-CXX.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\Windows-MSVC.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\Windows.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\WindowsPaths.cmake;C:\Users\t.vogl\.conan\data\suitesparse\5164583\spielwiese\testing\package\85f780d0530411a64b0be4407b381706014b445d\FindCholmod.cmake;C:\Users\t.vogl\.conan\data\suitesparse\5164583\spielwiese\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\cmake\suitesparse-4.5.0\SuiteSparse-targets-release.cmake;C:\Users\t.vogl\.conan\data\suitesparse\5164583\spielwiese\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\cmake\suitesparse-4.5.0\SuiteSparse-targets.cmake;C:\Users\t.vogl\.conan\data\suitesparse\5164583\spielwiese\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\cmake\suitesparse-4.5.0\suitesparse-config-version.cmake;C:\Users\t.vogl\.conan\data\suitesparse\5164583\spielwiese\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\cmake\suitesparse-4.5.0\suitesparse-config.cmake;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\8caf9177abcac060b9a1d922dc1cef659dbe50b6\CMakeFiles\3.10.0\CMakeCCompiler.cmake;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\8caf9177abcac060b9a1d922dc1cef659dbe50b6\CMakeFiles\3.10.0\CMakeCXXCompiler.cmake;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\8caf9177abcac060b9a1d922dc1cef659dbe50b6\CMakeFiles\3.10.0\CMakeRCCompiler.cmake;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\8caf9177abcac060b9a1d922dc1cef659dbe50b6\CMakeFiles\3.10.0\CMakeSystem.cmake;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\8caf9177abcac060b9a1d922dc1cef659dbe50b6\CMakeFiles\feature_tests.cxx;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\8caf9177abcac060b9a1d922dc1cef659dbe50b6\conanbuildinfo.cmake;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\src\CMakeLists.txt;%(AdditionalInputs) + C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\8caf9177abcac060b9a1d922dc1cef659dbe50b6\CMakeFiles\generate.stamp + Checking Build System + setlocal +"C:\Program Files\CMake\bin\cmake.exe" -HC:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/src -BC:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6 --check-stamp-list CMakeFiles/generate.stamp.list --vs-solution-file C:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/SuitesparseTest.sln +if %errorlevel% neq 0 goto :cmEnd +:cmEnd +endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone +:cmErrorLevel +exit /b %1 +:cmDone +if %errorlevel% neq 0 goto :VCEnd + C:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/CMakeFiles/88db50b07a9bb1b025cfd97b4ed0663f/generate.stamp.rule;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCCompiler.cmake.in;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCCompilerABI.c;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCInformation.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCXXCompiler.cmake.in;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCXXCompilerABI.cpp;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCXXInformation.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCommonLanguageInclude.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCompilerIdDetection.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCXXCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCompileFeatures.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCompilerABI.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCompilerId.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineRCCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineSystem.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeFindBinUtils.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeGenericSystem.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeLanguageInformation.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeParseArguments.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeParseImplicitLinkInfo.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeRCCompiler.cmake.in;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeRCInformation.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeSystem.cmake.in;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeSystemSpecificInformation.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeSystemSpecificInitialize.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeTestCCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeTestCXXCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeTestCompilerCommon.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeTestRCCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\ADSP-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\ARMCC-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\AppleClang-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Borland-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Bruce-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\CMakeCommonCompilerMacros.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Clang-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Clang-DetermineCompilerInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Comeau-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Compaq-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Compaq-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Cray-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Embarcadero-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Fujitsu-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\GHS-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\GNU-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\GNU-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\HP-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\HP-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\IAR-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\IBMCPP-C-DetermineVersionInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\IBMCPP-CXX-DetermineVersionInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Intel-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\MIPSpro-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\MSVC-CXX-FeatureTests.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\MSVC-CXX.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\MSVC-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\NVIDIA-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\OpenWatcom-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\PGI-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\PathScale-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\SCO-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\SDCC-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\SunPro-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\SunPro-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\TI-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\TinyCC-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\VisualAge-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\VisualAge-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Watcom-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\XL-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\XL-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\zOS-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\zOS-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CompilerId\VS-10.vcxproj.in;C:\Program Files\CMake\share\cmake-3.10\Modules\Internal\FeatureTesting.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\Windows-Determine-CXX.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\Windows-MSVC-C.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\Windows-MSVC-CXX.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\Windows-MSVC.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\Windows.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\WindowsPaths.cmake;C:\Users\t.vogl\.conan\data\suitesparse\5164583\spielwiese\testing\package\85f780d0530411a64b0be4407b381706014b445d\FindCholmod.cmake;C:\Users\t.vogl\.conan\data\suitesparse\5164583\spielwiese\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\cmake\suitesparse-4.5.0\SuiteSparse-targets-release.cmake;C:\Users\t.vogl\.conan\data\suitesparse\5164583\spielwiese\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\cmake\suitesparse-4.5.0\SuiteSparse-targets.cmake;C:\Users\t.vogl\.conan\data\suitesparse\5164583\spielwiese\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\cmake\suitesparse-4.5.0\suitesparse-config-version.cmake;C:\Users\t.vogl\.conan\data\suitesparse\5164583\spielwiese\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\cmake\suitesparse-4.5.0\suitesparse-config.cmake;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\8caf9177abcac060b9a1d922dc1cef659dbe50b6\CMakeFiles\3.10.0\CMakeCCompiler.cmake;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\8caf9177abcac060b9a1d922dc1cef659dbe50b6\CMakeFiles\3.10.0\CMakeCXXCompiler.cmake;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\8caf9177abcac060b9a1d922dc1cef659dbe50b6\CMakeFiles\3.10.0\CMakeRCCompiler.cmake;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\8caf9177abcac060b9a1d922dc1cef659dbe50b6\CMakeFiles\3.10.0\CMakeSystem.cmake;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\8caf9177abcac060b9a1d922dc1cef659dbe50b6\CMakeFiles\feature_tests.cxx;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\8caf9177abcac060b9a1d922dc1cef659dbe50b6\conanbuildinfo.cmake;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\src\CMakeLists.txt;%(AdditionalInputs) + C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\8caf9177abcac060b9a1d922dc1cef659dbe50b6\CMakeFiles\generate.stamp + + + + + + + + + + \ No newline at end of file diff --git a/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/ZERO_CHECK.vcxproj.filters b/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/ZERO_CHECK.vcxproj.filters new file mode 100644 index 0000000..ac83ee0 --- /dev/null +++ b/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/ZERO_CHECK.vcxproj.filters @@ -0,0 +1,13 @@ + + + + + CMake Rules + + + + + {CF8D3392-057B-3E78-8586-E1896E91FB62} + + + diff --git a/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/bin/cholmod-test.exe b/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/bin/cholmod-test.exe new file mode 100644 index 0000000..95c8b8d Binary files /dev/null and b/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/bin/cholmod-test.exe differ diff --git a/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/cholmod-test.dir/Release/CL.read.1.tlog b/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/cholmod-test.dir/Release/CL.read.1.tlog new file mode 100644 index 0000000..e8337b1 Binary files /dev/null and b/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/cholmod-test.dir/Release/CL.read.1.tlog differ diff --git a/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/cholmod-test.dir/Release/CL.write.1.tlog b/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/cholmod-test.dir/Release/CL.write.1.tlog new file mode 100644 index 0000000..57087db Binary files /dev/null and b/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/cholmod-test.dir/Release/CL.write.1.tlog differ diff --git a/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/cholmod-test.dir/Release/cholmod-test.exe.intermediate.manifest b/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/cholmod-test.dir/Release/cholmod-test.exe.intermediate.manifest new file mode 100644 index 0000000..ecea6f7 --- /dev/null +++ b/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/cholmod-test.dir/Release/cholmod-test.exe.intermediate.manifest @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/cholmod-test.dir/Release/cholmod-test.lastbuildstate b/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/cholmod-test.dir/Release/cholmod-test.lastbuildstate new file mode 100644 index 0000000..21e33b4 --- /dev/null +++ b/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/cholmod-test.dir/Release/cholmod-test.lastbuildstate @@ -0,0 +1,2 @@ +#v4.0:v100:false +Release|x64|C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\8caf9177abcac060b9a1d922dc1cef659dbe50b6\| diff --git a/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/cholmod-test.dir/Release/cholmod-test.obj b/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/cholmod-test.dir/Release/cholmod-test.obj new file mode 100644 index 0000000..f698f3e Binary files /dev/null and b/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/cholmod-test.dir/Release/cholmod-test.obj differ diff --git a/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/cholmod-test.dir/Release/cholmod-test.write.1.tlog b/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/cholmod-test.dir/Release/cholmod-test.write.1.tlog new file mode 100644 index 0000000..e69de29 diff --git a/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/cholmod-test.dir/Release/cl.command.1.tlog b/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/cholmod-test.dir/Release/cl.command.1.tlog new file mode 100644 index 0000000..632bbc2 Binary files /dev/null and b/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/cholmod-test.dir/Release/cl.command.1.tlog differ diff --git a/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/cholmod-test.dir/Release/custombuild.command.1.tlog b/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/cholmod-test.dir/Release/custombuild.command.1.tlog new file mode 100644 index 0000000..22523da Binary files /dev/null and b/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/cholmod-test.dir/Release/custombuild.command.1.tlog differ diff --git a/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/cholmod-test.dir/Release/custombuild.read.1.tlog b/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/cholmod-test.dir/Release/custombuild.read.1.tlog new file mode 100644 index 0000000..c4957d2 Binary files /dev/null and b/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/cholmod-test.dir/Release/custombuild.read.1.tlog differ diff --git a/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/cholmod-test.dir/Release/custombuild.write.1.tlog b/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/cholmod-test.dir/Release/custombuild.write.1.tlog new file mode 100644 index 0000000..6c254bf Binary files /dev/null and b/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/cholmod-test.dir/Release/custombuild.write.1.tlog differ diff --git a/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/cholmod-test.dir/Release/link.command.1.tlog b/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/cholmod-test.dir/Release/link.command.1.tlog new file mode 100644 index 0000000..af6187c Binary files /dev/null and b/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/cholmod-test.dir/Release/link.command.1.tlog differ diff --git a/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/cholmod-test.dir/Release/link.read.1.tlog b/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/cholmod-test.dir/Release/link.read.1.tlog new file mode 100644 index 0000000..334c5cb Binary files /dev/null and b/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/cholmod-test.dir/Release/link.read.1.tlog differ diff --git a/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/cholmod-test.dir/Release/link.write.1.tlog b/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/cholmod-test.dir/Release/link.write.1.tlog new file mode 100644 index 0000000..19192fd Binary files /dev/null and b/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/cholmod-test.dir/Release/link.write.1.tlog differ diff --git a/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/cholmod-test.dir/Release/mt.command.1.tlog b/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/cholmod-test.dir/Release/mt.command.1.tlog new file mode 100644 index 0000000..3c015ba Binary files /dev/null and b/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/cholmod-test.dir/Release/mt.command.1.tlog differ diff --git a/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/cholmod-test.dir/Release/mt.read.1.tlog b/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/cholmod-test.dir/Release/mt.read.1.tlog new file mode 100644 index 0000000..f0623b6 Binary files /dev/null and b/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/cholmod-test.dir/Release/mt.read.1.tlog differ diff --git a/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/cholmod-test.dir/Release/mt.write.1.tlog b/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/cholmod-test.dir/Release/mt.write.1.tlog new file mode 100644 index 0000000..5ecb273 Binary files /dev/null and b/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/cholmod-test.dir/Release/mt.write.1.tlog differ diff --git a/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/cholmod-test.vcxproj b/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/cholmod-test.vcxproj new file mode 100644 index 0000000..a0b1709 --- /dev/null +++ b/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/cholmod-test.vcxproj @@ -0,0 +1,323 @@ + + + + + Debug + x64 + + + Release + x64 + + + MinSizeRel + x64 + + + RelWithDebInfo + x64 + + + + {B0E39398-2895-35AA-B15E-50C98EC4727E} + Win32Proj + x64 + cholmod-test + + + + Application + MultiByte + v100 + + + Application + MultiByte + v100 + + + Application + MultiByte + v100 + + + Application + MultiByte + v100 + + + + + + + + + + <_ProjectFileVersion>10.0.20506.1 + C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\8caf9177abcac060b9a1d922dc1cef659dbe50b6\bin\ + cholmod-test.dir\Debug\ + cholmod-test + .exe + true + true + C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\8caf9177abcac060b9a1d922dc1cef659dbe50b6\bin\ + cholmod-test.dir\Release\ + cholmod-test + .exe + false + true + C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\8caf9177abcac060b9a1d922dc1cef659dbe50b6\bin\ + cholmod-test.dir\MinSizeRel\ + cholmod-test + .exe + false + true + C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\8caf9177abcac060b9a1d922dc1cef659dbe50b6\bin\ + cholmod-test.dir\RelWithDebInfo\ + cholmod-test + .exe + true + true + + + + C:\Users\t.vogl\.conan\data\suitesparse\5164583\spielwiese\testing\package\85f780d0530411a64b0be4407b381706014b445d\include;C:\Users\t.vogl\.conan\data\suitesparse\5164583\spielwiese\testing\package\85f780d0530411a64b0be4407b381706014b445d\include\suitesparse;%(AdditionalIncludeDirectories) + Debug/ + EnableFastChecks + CompileAsCpp + ProgramDatabase + Sync + Disabled + true + Disabled + NotUsing + 8 + MultiThreadedDLL + true + Level3 + WIN32;_WINDOWS;CMAKE_INTDIR="Debug";%(PreprocessorDefinitions) + $(IntDir) + + + WIN32;_DEBUG;_WINDOWS;CMAKE_INTDIR=\"Debug\";%(PreprocessorDefinitions) + C:\Users\t.vogl\.conan\data\suitesparse\5164583\spielwiese\testing\package\85f780d0530411a64b0be4407b381706014b445d\include;C:\Users\t.vogl\.conan\data\suitesparse\5164583\spielwiese\testing\package\85f780d0530411a64b0be4407b381706014b445d\include\suitesparse;%(AdditionalIncludeDirectories) + + + C:\Users\t.vogl\.conan\data\suitesparse\5164583\spielwiese\testing\package\85f780d0530411a64b0be4407b381706014b445d\include;C:\Users\t.vogl\.conan\data\suitesparse\5164583\spielwiese\testing\package\85f780d0530411a64b0be4407b381706014b445d\include\suitesparse;%(AdditionalIncludeDirectories) + $(ProjectDir)/$(IntDir) + %(Filename).h + %(Filename).tlb + %(Filename)_i.c + %(Filename)_p.c + + + C:\Users\t.vogl\.conan\data\suitesparse\5164583\spielwiese\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\suitesparseconfig.lib;C:\Users\t.vogl\.conan\data\suitesparse\5164583\spielwiese\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\libamd.lib;C:\Users\t.vogl\.conan\data\suitesparse\5164583\spielwiese\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\libbtf.lib;C:\Users\t.vogl\.conan\data\suitesparse\5164583\spielwiese\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\libcamd.lib;C:\Users\t.vogl\.conan\data\suitesparse\5164583\spielwiese\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\libccolamd.lib;C:\Users\t.vogl\.conan\data\suitesparse\5164583\spielwiese\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\libcolamd.lib;C:\Users\t.vogl\.conan\data\suitesparse\5164583\spielwiese\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\libcholmod.lib;C:\Users\t.vogl\.conan\data\suitesparse\5164583\spielwiese\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\libcxsparse.lib;C:\Users\t.vogl\.conan\data\suitesparse\5164583\spielwiese\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\libklu.lib;C:\Users\t.vogl\.conan\data\suitesparse\5164583\spielwiese\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\libldl.lib;C:\Users\t.vogl\.conan\data\suitesparse\5164583\spielwiese\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\libumfpack.lib;C:\Users\t.vogl\.conan\data\suitesparse\5164583\spielwiese\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\libspqr.lib;C:\Users\t.vogl\.conan\data\suitesparse\5164583\spielwiese\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\metis.lib;C:\Users\t.vogl\.conan\data\suitesparse\5164583\spielwiese\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\libbtf.lib;C:\Users\t.vogl\.conan\data\suitesparse\5164583\spielwiese\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\libcholmod.lib;C:\Users\t.vogl\.conan\data\suitesparse\5164583\spielwiese\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\libamd.lib;C:\Users\t.vogl\.conan\data\suitesparse\5164583\spielwiese\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\libcamd.lib;C:\Users\t.vogl\.conan\data\suitesparse\5164583\spielwiese\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\libccolamd.lib;C:\Users\t.vogl\.conan\data\suitesparse\5164583\spielwiese\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\libcolamd.lib;C:\Users\t.vogl\.conan\data\suitesparse\5164583\spielwiese\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\suitesparseconfig.lib;C:\Users\t.vogl\.conan\data\suitesparse\5164583\spielwiese\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\metis.lib;blas.lib;lapack.lib;kernel32.lib;user32.lib;gdi32.lib;winspool.lib;shell32.lib;ole32.lib;oleaut32.lib;uuid.lib;comdlg32.lib;advapi32.lib + C:/Users/t.vogl/.conan/data/suitesparse/5164583/spielwiese/testing/package/85f780d0530411a64b0be4407b381706014b445d/lib;C:/Users/t.vogl/.conan/data/suitesparse/5164583/spielwiese/testing/package/85f780d0530411a64b0be4407b381706014b445d/lib/$(Configuration);C:/Users/t.vogl/.conan/data/suitesparse/5164583/spielwiese/testing/package/85f780d0530411a64b0be4407b381706014b445d/lib64/lapack_blas_windows;C:/Users/t.vogl/.conan/data/suitesparse/5164583/spielwiese/testing/package/85f780d0530411a64b0be4407b381706014b445d/lib64/lapack_blas_windows/$(Configuration);C:/Users/t.vogl/.conan/data/suitesparse/5164583/spielwiese/testing/package/85f780d0530411a64b0be4407b381706014b445d/lib64;C:/Users/t.vogl/.conan/data/suitesparse/5164583/spielwiese/testing/package/85f780d0530411a64b0be4407b381706014b445d/lib64/$(Configuration);%(AdditionalLibraryDirectories) + %(AdditionalOptions) /machine:x64 + true + %(IgnoreSpecificDefaultLibraries) + C:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/lib/cholmod-test.lib + C:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/bin/cholmod-test.pdb + Console + + + false + + + + + C:\Users\t.vogl\.conan\data\suitesparse\5164583\spielwiese\testing\package\85f780d0530411a64b0be4407b381706014b445d\include;C:\Users\t.vogl\.conan\data\suitesparse\5164583\spielwiese\testing\package\85f780d0530411a64b0be4407b381706014b445d\include\suitesparse;%(AdditionalIncludeDirectories) + Release/ + CompileAsCpp + Sync + AnySuitable + true + MaxSpeed + NotUsing + 8 + MultiThreadedDLL + true + Level3 + WIN32;_WINDOWS;NDEBUG;CMAKE_INTDIR="Release";%(PreprocessorDefinitions) + $(IntDir) + + + + WIN32;_WINDOWS;NDEBUG;CMAKE_INTDIR=\"Release\";%(PreprocessorDefinitions) + C:\Users\t.vogl\.conan\data\suitesparse\5164583\spielwiese\testing\package\85f780d0530411a64b0be4407b381706014b445d\include;C:\Users\t.vogl\.conan\data\suitesparse\5164583\spielwiese\testing\package\85f780d0530411a64b0be4407b381706014b445d\include\suitesparse;%(AdditionalIncludeDirectories) + + + C:\Users\t.vogl\.conan\data\suitesparse\5164583\spielwiese\testing\package\85f780d0530411a64b0be4407b381706014b445d\include;C:\Users\t.vogl\.conan\data\suitesparse\5164583\spielwiese\testing\package\85f780d0530411a64b0be4407b381706014b445d\include\suitesparse;%(AdditionalIncludeDirectories) + $(ProjectDir)/$(IntDir) + %(Filename).h + %(Filename).tlb + %(Filename)_i.c + %(Filename)_p.c + + + C:\Users\t.vogl\.conan\data\suitesparse\5164583\spielwiese\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\suitesparseconfig.lib;C:\Users\t.vogl\.conan\data\suitesparse\5164583\spielwiese\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\libamd.lib;C:\Users\t.vogl\.conan\data\suitesparse\5164583\spielwiese\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\libbtf.lib;C:\Users\t.vogl\.conan\data\suitesparse\5164583\spielwiese\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\libcamd.lib;C:\Users\t.vogl\.conan\data\suitesparse\5164583\spielwiese\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\libccolamd.lib;C:\Users\t.vogl\.conan\data\suitesparse\5164583\spielwiese\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\libcolamd.lib;C:\Users\t.vogl\.conan\data\suitesparse\5164583\spielwiese\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\libcholmod.lib;C:\Users\t.vogl\.conan\data\suitesparse\5164583\spielwiese\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\libcxsparse.lib;C:\Users\t.vogl\.conan\data\suitesparse\5164583\spielwiese\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\libklu.lib;C:\Users\t.vogl\.conan\data\suitesparse\5164583\spielwiese\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\libldl.lib;C:\Users\t.vogl\.conan\data\suitesparse\5164583\spielwiese\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\libumfpack.lib;C:\Users\t.vogl\.conan\data\suitesparse\5164583\spielwiese\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\libspqr.lib;C:\Users\t.vogl\.conan\data\suitesparse\5164583\spielwiese\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\metis.lib;C:\Users\t.vogl\.conan\data\suitesparse\5164583\spielwiese\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\libbtf.lib;C:\Users\t.vogl\.conan\data\suitesparse\5164583\spielwiese\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\libcholmod.lib;C:\Users\t.vogl\.conan\data\suitesparse\5164583\spielwiese\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\libamd.lib;C:\Users\t.vogl\.conan\data\suitesparse\5164583\spielwiese\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\libcamd.lib;C:\Users\t.vogl\.conan\data\suitesparse\5164583\spielwiese\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\libccolamd.lib;C:\Users\t.vogl\.conan\data\suitesparse\5164583\spielwiese\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\libcolamd.lib;C:\Users\t.vogl\.conan\data\suitesparse\5164583\spielwiese\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\suitesparseconfig.lib;C:\Users\t.vogl\.conan\data\suitesparse\5164583\spielwiese\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\metis.lib;blas.lib;lapack.lib;kernel32.lib;user32.lib;gdi32.lib;winspool.lib;shell32.lib;ole32.lib;oleaut32.lib;uuid.lib;comdlg32.lib;advapi32.lib + C:/Users/t.vogl/.conan/data/suitesparse/5164583/spielwiese/testing/package/85f780d0530411a64b0be4407b381706014b445d/lib;C:/Users/t.vogl/.conan/data/suitesparse/5164583/spielwiese/testing/package/85f780d0530411a64b0be4407b381706014b445d/lib/$(Configuration);C:/Users/t.vogl/.conan/data/suitesparse/5164583/spielwiese/testing/package/85f780d0530411a64b0be4407b381706014b445d/lib64/lapack_blas_windows;C:/Users/t.vogl/.conan/data/suitesparse/5164583/spielwiese/testing/package/85f780d0530411a64b0be4407b381706014b445d/lib64/lapack_blas_windows/$(Configuration);C:/Users/t.vogl/.conan/data/suitesparse/5164583/spielwiese/testing/package/85f780d0530411a64b0be4407b381706014b445d/lib64;C:/Users/t.vogl/.conan/data/suitesparse/5164583/spielwiese/testing/package/85f780d0530411a64b0be4407b381706014b445d/lib64/$(Configuration);%(AdditionalLibraryDirectories) + %(AdditionalOptions) /machine:x64 + false + %(IgnoreSpecificDefaultLibraries) + C:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/lib/cholmod-test.lib + C:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/bin/cholmod-test.pdb + Console + + + false + + + + + C:\Users\t.vogl\.conan\data\suitesparse\5164583\spielwiese\testing\package\85f780d0530411a64b0be4407b381706014b445d\include;C:\Users\t.vogl\.conan\data\suitesparse\5164583\spielwiese\testing\package\85f780d0530411a64b0be4407b381706014b445d\include\suitesparse;%(AdditionalIncludeDirectories) + MinSizeRel/ + CompileAsCpp + Sync + OnlyExplicitInline + true + MinSpace + NotUsing + 8 + MultiThreadedDLL + true + Level3 + WIN32;_WINDOWS;NDEBUG;CMAKE_INTDIR="MinSizeRel";%(PreprocessorDefinitions) + $(IntDir) + + + + WIN32;_WINDOWS;NDEBUG;CMAKE_INTDIR=\"MinSizeRel\";%(PreprocessorDefinitions) + C:\Users\t.vogl\.conan\data\suitesparse\5164583\spielwiese\testing\package\85f780d0530411a64b0be4407b381706014b445d\include;C:\Users\t.vogl\.conan\data\suitesparse\5164583\spielwiese\testing\package\85f780d0530411a64b0be4407b381706014b445d\include\suitesparse;%(AdditionalIncludeDirectories) + + + C:\Users\t.vogl\.conan\data\suitesparse\5164583\spielwiese\testing\package\85f780d0530411a64b0be4407b381706014b445d\include;C:\Users\t.vogl\.conan\data\suitesparse\5164583\spielwiese\testing\package\85f780d0530411a64b0be4407b381706014b445d\include\suitesparse;%(AdditionalIncludeDirectories) + $(ProjectDir)/$(IntDir) + %(Filename).h + %(Filename).tlb + %(Filename)_i.c + %(Filename)_p.c + + + C:\Users\t.vogl\.conan\data\suitesparse\5164583\spielwiese\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\suitesparseconfig.lib;C:\Users\t.vogl\.conan\data\suitesparse\5164583\spielwiese\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\libamd.lib;C:\Users\t.vogl\.conan\data\suitesparse\5164583\spielwiese\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\libbtf.lib;C:\Users\t.vogl\.conan\data\suitesparse\5164583\spielwiese\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\libcamd.lib;C:\Users\t.vogl\.conan\data\suitesparse\5164583\spielwiese\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\libccolamd.lib;C:\Users\t.vogl\.conan\data\suitesparse\5164583\spielwiese\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\libcolamd.lib;C:\Users\t.vogl\.conan\data\suitesparse\5164583\spielwiese\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\libcholmod.lib;C:\Users\t.vogl\.conan\data\suitesparse\5164583\spielwiese\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\libcxsparse.lib;C:\Users\t.vogl\.conan\data\suitesparse\5164583\spielwiese\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\libklu.lib;C:\Users\t.vogl\.conan\data\suitesparse\5164583\spielwiese\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\libldl.lib;C:\Users\t.vogl\.conan\data\suitesparse\5164583\spielwiese\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\libumfpack.lib;C:\Users\t.vogl\.conan\data\suitesparse\5164583\spielwiese\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\libspqr.lib;C:\Users\t.vogl\.conan\data\suitesparse\5164583\spielwiese\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\metis.lib;C:\Users\t.vogl\.conan\data\suitesparse\5164583\spielwiese\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\libbtf.lib;C:\Users\t.vogl\.conan\data\suitesparse\5164583\spielwiese\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\libcholmod.lib;C:\Users\t.vogl\.conan\data\suitesparse\5164583\spielwiese\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\libamd.lib;C:\Users\t.vogl\.conan\data\suitesparse\5164583\spielwiese\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\libcamd.lib;C:\Users\t.vogl\.conan\data\suitesparse\5164583\spielwiese\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\libccolamd.lib;C:\Users\t.vogl\.conan\data\suitesparse\5164583\spielwiese\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\libcolamd.lib;C:\Users\t.vogl\.conan\data\suitesparse\5164583\spielwiese\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\suitesparseconfig.lib;C:\Users\t.vogl\.conan\data\suitesparse\5164583\spielwiese\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\metis.lib;blas.lib;lapack.lib;kernel32.lib;user32.lib;gdi32.lib;winspool.lib;shell32.lib;ole32.lib;oleaut32.lib;uuid.lib;comdlg32.lib;advapi32.lib + C:/Users/t.vogl/.conan/data/suitesparse/5164583/spielwiese/testing/package/85f780d0530411a64b0be4407b381706014b445d/lib;C:/Users/t.vogl/.conan/data/suitesparse/5164583/spielwiese/testing/package/85f780d0530411a64b0be4407b381706014b445d/lib/$(Configuration);C:/Users/t.vogl/.conan/data/suitesparse/5164583/spielwiese/testing/package/85f780d0530411a64b0be4407b381706014b445d/lib64/lapack_blas_windows;C:/Users/t.vogl/.conan/data/suitesparse/5164583/spielwiese/testing/package/85f780d0530411a64b0be4407b381706014b445d/lib64/lapack_blas_windows/$(Configuration);C:/Users/t.vogl/.conan/data/suitesparse/5164583/spielwiese/testing/package/85f780d0530411a64b0be4407b381706014b445d/lib64;C:/Users/t.vogl/.conan/data/suitesparse/5164583/spielwiese/testing/package/85f780d0530411a64b0be4407b381706014b445d/lib64/$(Configuration);%(AdditionalLibraryDirectories) + %(AdditionalOptions) /machine:x64 + false + %(IgnoreSpecificDefaultLibraries) + C:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/lib/cholmod-test.lib + C:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/bin/cholmod-test.pdb + Console + + + false + + + + + C:\Users\t.vogl\.conan\data\suitesparse\5164583\spielwiese\testing\package\85f780d0530411a64b0be4407b381706014b445d\include;C:\Users\t.vogl\.conan\data\suitesparse\5164583\spielwiese\testing\package\85f780d0530411a64b0be4407b381706014b445d\include\suitesparse;%(AdditionalIncludeDirectories) + RelWithDebInfo/ + CompileAsCpp + ProgramDatabase + Sync + OnlyExplicitInline + true + MaxSpeed + NotUsing + 8 + MultiThreadedDLL + true + Level3 + WIN32;_WINDOWS;NDEBUG;CMAKE_INTDIR="RelWithDebInfo";%(PreprocessorDefinitions) + $(IntDir) + + + WIN32;_WINDOWS;NDEBUG;CMAKE_INTDIR=\"RelWithDebInfo\";%(PreprocessorDefinitions) + C:\Users\t.vogl\.conan\data\suitesparse\5164583\spielwiese\testing\package\85f780d0530411a64b0be4407b381706014b445d\include;C:\Users\t.vogl\.conan\data\suitesparse\5164583\spielwiese\testing\package\85f780d0530411a64b0be4407b381706014b445d\include\suitesparse;%(AdditionalIncludeDirectories) + + + C:\Users\t.vogl\.conan\data\suitesparse\5164583\spielwiese\testing\package\85f780d0530411a64b0be4407b381706014b445d\include;C:\Users\t.vogl\.conan\data\suitesparse\5164583\spielwiese\testing\package\85f780d0530411a64b0be4407b381706014b445d\include\suitesparse;%(AdditionalIncludeDirectories) + $(ProjectDir)/$(IntDir) + %(Filename).h + %(Filename).tlb + %(Filename)_i.c + %(Filename)_p.c + + + C:\Users\t.vogl\.conan\data\suitesparse\5164583\spielwiese\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\suitesparseconfig.lib;C:\Users\t.vogl\.conan\data\suitesparse\5164583\spielwiese\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\libamd.lib;C:\Users\t.vogl\.conan\data\suitesparse\5164583\spielwiese\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\libbtf.lib;C:\Users\t.vogl\.conan\data\suitesparse\5164583\spielwiese\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\libcamd.lib;C:\Users\t.vogl\.conan\data\suitesparse\5164583\spielwiese\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\libccolamd.lib;C:\Users\t.vogl\.conan\data\suitesparse\5164583\spielwiese\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\libcolamd.lib;C:\Users\t.vogl\.conan\data\suitesparse\5164583\spielwiese\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\libcholmod.lib;C:\Users\t.vogl\.conan\data\suitesparse\5164583\spielwiese\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\libcxsparse.lib;C:\Users\t.vogl\.conan\data\suitesparse\5164583\spielwiese\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\libklu.lib;C:\Users\t.vogl\.conan\data\suitesparse\5164583\spielwiese\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\libldl.lib;C:\Users\t.vogl\.conan\data\suitesparse\5164583\spielwiese\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\libumfpack.lib;C:\Users\t.vogl\.conan\data\suitesparse\5164583\spielwiese\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\libspqr.lib;C:\Users\t.vogl\.conan\data\suitesparse\5164583\spielwiese\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\metis.lib;C:\Users\t.vogl\.conan\data\suitesparse\5164583\spielwiese\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\libbtf.lib;C:\Users\t.vogl\.conan\data\suitesparse\5164583\spielwiese\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\libcholmod.lib;C:\Users\t.vogl\.conan\data\suitesparse\5164583\spielwiese\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\libamd.lib;C:\Users\t.vogl\.conan\data\suitesparse\5164583\spielwiese\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\libcamd.lib;C:\Users\t.vogl\.conan\data\suitesparse\5164583\spielwiese\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\libccolamd.lib;C:\Users\t.vogl\.conan\data\suitesparse\5164583\spielwiese\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\libcolamd.lib;C:\Users\t.vogl\.conan\data\suitesparse\5164583\spielwiese\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\suitesparseconfig.lib;C:\Users\t.vogl\.conan\data\suitesparse\5164583\spielwiese\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\metis.lib;blas.lib;lapack.lib;kernel32.lib;user32.lib;gdi32.lib;winspool.lib;shell32.lib;ole32.lib;oleaut32.lib;uuid.lib;comdlg32.lib;advapi32.lib + C:/Users/t.vogl/.conan/data/suitesparse/5164583/spielwiese/testing/package/85f780d0530411a64b0be4407b381706014b445d/lib;C:/Users/t.vogl/.conan/data/suitesparse/5164583/spielwiese/testing/package/85f780d0530411a64b0be4407b381706014b445d/lib/$(Configuration);C:/Users/t.vogl/.conan/data/suitesparse/5164583/spielwiese/testing/package/85f780d0530411a64b0be4407b381706014b445d/lib64/lapack_blas_windows;C:/Users/t.vogl/.conan/data/suitesparse/5164583/spielwiese/testing/package/85f780d0530411a64b0be4407b381706014b445d/lib64/lapack_blas_windows/$(Configuration);C:/Users/t.vogl/.conan/data/suitesparse/5164583/spielwiese/testing/package/85f780d0530411a64b0be4407b381706014b445d/lib64;C:/Users/t.vogl/.conan/data/suitesparse/5164583/spielwiese/testing/package/85f780d0530411a64b0be4407b381706014b445d/lib64/$(Configuration);%(AdditionalLibraryDirectories) + %(AdditionalOptions) /machine:x64 + true + %(IgnoreSpecificDefaultLibraries) + C:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/lib/cholmod-test.lib + C:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/bin/cholmod-test.pdb + Console + + + false + + + + + Building Custom Rule C:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/src/CMakeLists.txt + setlocal +"C:\Program Files\CMake\bin\cmake.exe" -HC:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/src -BC:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6 --check-stamp-file C:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/CMakeFiles/generate.stamp +if %errorlevel% neq 0 goto :cmEnd +:cmEnd +endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone +:cmErrorLevel +exit /b %1 +:cmDone +if %errorlevel% neq 0 goto :VCEnd + C:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/src/CMakeLists.txt;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\src\CMakeLists.txt;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineSystem.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeSystem.cmake.in;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\8caf9177abcac060b9a1d922dc1cef659dbe50b6\CMakeFiles\3.10.0\CMakeSystem.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeSystemSpecificInitialize.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCompilerId.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCompilerIdDetection.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\ADSP-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\ARMCC-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\AppleClang-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Clang-DetermineCompilerInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Borland-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Bruce-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Clang-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Clang-DetermineCompilerInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Compaq-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Cray-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Embarcadero-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Fujitsu-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\GHS-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\GNU-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\HP-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\IAR-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Intel-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\MIPSpro-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\MSVC-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\NVIDIA-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\OpenWatcom-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\PGI-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\PathScale-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\SCO-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\SDCC-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\SunPro-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\TI-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\TinyCC-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\VisualAge-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\IBMCPP-C-DetermineVersionInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Watcom-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\XL-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\IBMCPP-C-DetermineVersionInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\zOS-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\IBMCPP-C-DetermineVersionInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CompilerId\VS-10.vcxproj.in;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeFindBinUtils.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCCompiler.cmake.in;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\8caf9177abcac060b9a1d922dc1cef659dbe50b6\CMakeFiles\3.10.0\CMakeCCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCXXCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\Windows-Determine-CXX.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCompilerId.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCompilerIdDetection.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\ADSP-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\ARMCC-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\AppleClang-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Clang-DetermineCompilerInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Borland-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Clang-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Clang-DetermineCompilerInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Comeau-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Compaq-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Cray-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Embarcadero-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Fujitsu-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\GHS-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\GNU-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\HP-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\IAR-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Intel-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\MIPSpro-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\MSVC-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\NVIDIA-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\OpenWatcom-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\PGI-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\PathScale-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\SCO-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\SunPro-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\TI-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\VisualAge-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\IBMCPP-CXX-DetermineVersionInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Watcom-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\XL-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\IBMCPP-CXX-DetermineVersionInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\zOS-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\IBMCPP-CXX-DetermineVersionInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CompilerId\VS-10.vcxproj.in;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeFindBinUtils.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCXXCompiler.cmake.in;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\8caf9177abcac060b9a1d922dc1cef659dbe50b6\CMakeFiles\3.10.0\CMakeCXXCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeSystemSpecificInformation.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeGenericSystem.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\Windows.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\WindowsPaths.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCInformation.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeLanguageInformation.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\Windows-MSVC-C.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\Windows-MSVC.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineRCCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeRCCompiler.cmake.in;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\8caf9177abcac060b9a1d922dc1cef659dbe50b6\CMakeFiles\3.10.0\CMakeRCCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeRCInformation.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeTestRCCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCommonLanguageInclude.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeTestCCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeTestCompilerCommon.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCompilerABI.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeParseImplicitLinkInfo.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCCompilerABI.c;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCompileFeatures.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCCompiler.cmake.in;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\8caf9177abcac060b9a1d922dc1cef659dbe50b6\CMakeFiles\3.10.0\CMakeCCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCXXInformation.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeLanguageInformation.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\MSVC-CXX.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\CMakeCommonCompilerMacros.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\Windows-MSVC-CXX.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\Windows-MSVC.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCommonLanguageInclude.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeTestCXXCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeTestCompilerCommon.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCompilerABI.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeParseImplicitLinkInfo.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCXXCompilerABI.cpp;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCompileFeatures.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Internal\FeatureTesting.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\MSVC-CXX-FeatureTests.cmake;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\8caf9177abcac060b9a1d922dc1cef659dbe50b6\CMakeFiles\feature_tests.cxx;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCXXCompiler.cmake.in;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\8caf9177abcac060b9a1d922dc1cef659dbe50b6\CMakeFiles\3.10.0\CMakeCXXCompiler.cmake;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\8caf9177abcac060b9a1d922dc1cef659dbe50b6\conanbuildinfo.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeParseArguments.cmake;C:\Users\t.vogl\.conan\data\suitesparse\5164583\spielwiese\testing\package\85f780d0530411a64b0be4407b381706014b445d\FindCholmod.cmake;C:\Users\t.vogl\.conan\data\suitesparse\5164583\spielwiese\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\cmake\suitesparse-4.5.0\suitesparse-config-version.cmake;C:\Users\t.vogl\.conan\data\suitesparse\5164583\spielwiese\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\cmake\suitesparse-4.5.0\suitesparse-config.cmake;C:\Users\t.vogl\.conan\data\suitesparse\5164583\spielwiese\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\cmake\suitesparse-4.5.0\SuiteSparse-targets.cmake;C:\Users\t.vogl\.conan\data\suitesparse\5164583\spielwiese\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\cmake\suitesparse-4.5.0\SuiteSparse-targets-release.cmake;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\src\CMakeLists.txt;%(AdditionalInputs) + C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\8caf9177abcac060b9a1d922dc1cef659dbe50b6\CMakeFiles\generate.stamp + Building Custom Rule C:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/src/CMakeLists.txt + setlocal +"C:\Program Files\CMake\bin\cmake.exe" -HC:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/src -BC:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6 --check-stamp-file C:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/CMakeFiles/generate.stamp +if %errorlevel% neq 0 goto :cmEnd +:cmEnd +endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone +:cmErrorLevel +exit /b %1 +:cmDone +if %errorlevel% neq 0 goto :VCEnd + C:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/src/CMakeLists.txt;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\src\CMakeLists.txt;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineSystem.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeSystem.cmake.in;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\8caf9177abcac060b9a1d922dc1cef659dbe50b6\CMakeFiles\3.10.0\CMakeSystem.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeSystemSpecificInitialize.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCompilerId.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCompilerIdDetection.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\ADSP-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\ARMCC-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\AppleClang-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Clang-DetermineCompilerInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Borland-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Bruce-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Clang-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Clang-DetermineCompilerInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Compaq-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Cray-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Embarcadero-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Fujitsu-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\GHS-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\GNU-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\HP-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\IAR-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Intel-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\MIPSpro-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\MSVC-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\NVIDIA-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\OpenWatcom-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\PGI-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\PathScale-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\SCO-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\SDCC-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\SunPro-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\TI-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\TinyCC-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\VisualAge-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\IBMCPP-C-DetermineVersionInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Watcom-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\XL-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\IBMCPP-C-DetermineVersionInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\zOS-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\IBMCPP-C-DetermineVersionInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CompilerId\VS-10.vcxproj.in;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeFindBinUtils.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCCompiler.cmake.in;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\8caf9177abcac060b9a1d922dc1cef659dbe50b6\CMakeFiles\3.10.0\CMakeCCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCXXCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\Windows-Determine-CXX.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCompilerId.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCompilerIdDetection.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\ADSP-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\ARMCC-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\AppleClang-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Clang-DetermineCompilerInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Borland-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Clang-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Clang-DetermineCompilerInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Comeau-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Compaq-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Cray-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Embarcadero-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Fujitsu-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\GHS-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\GNU-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\HP-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\IAR-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Intel-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\MIPSpro-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\MSVC-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\NVIDIA-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\OpenWatcom-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\PGI-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\PathScale-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\SCO-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\SunPro-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\TI-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\VisualAge-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\IBMCPP-CXX-DetermineVersionInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Watcom-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\XL-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\IBMCPP-CXX-DetermineVersionInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\zOS-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\IBMCPP-CXX-DetermineVersionInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CompilerId\VS-10.vcxproj.in;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeFindBinUtils.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCXXCompiler.cmake.in;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\8caf9177abcac060b9a1d922dc1cef659dbe50b6\CMakeFiles\3.10.0\CMakeCXXCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeSystemSpecificInformation.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeGenericSystem.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\Windows.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\WindowsPaths.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCInformation.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeLanguageInformation.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\Windows-MSVC-C.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\Windows-MSVC.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineRCCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeRCCompiler.cmake.in;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\8caf9177abcac060b9a1d922dc1cef659dbe50b6\CMakeFiles\3.10.0\CMakeRCCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeRCInformation.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeTestRCCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCommonLanguageInclude.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeTestCCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeTestCompilerCommon.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCompilerABI.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeParseImplicitLinkInfo.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCCompilerABI.c;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCompileFeatures.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCCompiler.cmake.in;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\8caf9177abcac060b9a1d922dc1cef659dbe50b6\CMakeFiles\3.10.0\CMakeCCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCXXInformation.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeLanguageInformation.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\MSVC-CXX.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\CMakeCommonCompilerMacros.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\Windows-MSVC-CXX.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\Windows-MSVC.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCommonLanguageInclude.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeTestCXXCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeTestCompilerCommon.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCompilerABI.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeParseImplicitLinkInfo.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCXXCompilerABI.cpp;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCompileFeatures.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Internal\FeatureTesting.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\MSVC-CXX-FeatureTests.cmake;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\8caf9177abcac060b9a1d922dc1cef659dbe50b6\CMakeFiles\feature_tests.cxx;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCXXCompiler.cmake.in;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\8caf9177abcac060b9a1d922dc1cef659dbe50b6\CMakeFiles\3.10.0\CMakeCXXCompiler.cmake;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\8caf9177abcac060b9a1d922dc1cef659dbe50b6\conanbuildinfo.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeParseArguments.cmake;C:\Users\t.vogl\.conan\data\suitesparse\5164583\spielwiese\testing\package\85f780d0530411a64b0be4407b381706014b445d\FindCholmod.cmake;C:\Users\t.vogl\.conan\data\suitesparse\5164583\spielwiese\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\cmake\suitesparse-4.5.0\suitesparse-config-version.cmake;C:\Users\t.vogl\.conan\data\suitesparse\5164583\spielwiese\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\cmake\suitesparse-4.5.0\suitesparse-config.cmake;C:\Users\t.vogl\.conan\data\suitesparse\5164583\spielwiese\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\cmake\suitesparse-4.5.0\SuiteSparse-targets.cmake;C:\Users\t.vogl\.conan\data\suitesparse\5164583\spielwiese\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\cmake\suitesparse-4.5.0\SuiteSparse-targets-release.cmake;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\src\CMakeLists.txt;%(AdditionalInputs) + C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\8caf9177abcac060b9a1d922dc1cef659dbe50b6\CMakeFiles\generate.stamp + Building Custom Rule C:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/src/CMakeLists.txt + setlocal +"C:\Program Files\CMake\bin\cmake.exe" -HC:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/src -BC:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6 --check-stamp-file C:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/CMakeFiles/generate.stamp +if %errorlevel% neq 0 goto :cmEnd +:cmEnd +endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone +:cmErrorLevel +exit /b %1 +:cmDone +if %errorlevel% neq 0 goto :VCEnd + C:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/src/CMakeLists.txt;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\src\CMakeLists.txt;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineSystem.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeSystem.cmake.in;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\8caf9177abcac060b9a1d922dc1cef659dbe50b6\CMakeFiles\3.10.0\CMakeSystem.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeSystemSpecificInitialize.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCompilerId.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCompilerIdDetection.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\ADSP-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\ARMCC-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\AppleClang-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Clang-DetermineCompilerInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Borland-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Bruce-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Clang-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Clang-DetermineCompilerInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Compaq-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Cray-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Embarcadero-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Fujitsu-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\GHS-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\GNU-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\HP-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\IAR-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Intel-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\MIPSpro-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\MSVC-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\NVIDIA-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\OpenWatcom-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\PGI-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\PathScale-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\SCO-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\SDCC-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\SunPro-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\TI-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\TinyCC-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\VisualAge-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\IBMCPP-C-DetermineVersionInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Watcom-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\XL-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\IBMCPP-C-DetermineVersionInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\zOS-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\IBMCPP-C-DetermineVersionInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CompilerId\VS-10.vcxproj.in;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeFindBinUtils.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCCompiler.cmake.in;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\8caf9177abcac060b9a1d922dc1cef659dbe50b6\CMakeFiles\3.10.0\CMakeCCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCXXCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\Windows-Determine-CXX.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCompilerId.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCompilerIdDetection.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\ADSP-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\ARMCC-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\AppleClang-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Clang-DetermineCompilerInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Borland-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Clang-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Clang-DetermineCompilerInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Comeau-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Compaq-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Cray-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Embarcadero-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Fujitsu-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\GHS-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\GNU-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\HP-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\IAR-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Intel-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\MIPSpro-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\MSVC-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\NVIDIA-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\OpenWatcom-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\PGI-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\PathScale-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\SCO-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\SunPro-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\TI-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\VisualAge-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\IBMCPP-CXX-DetermineVersionInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Watcom-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\XL-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\IBMCPP-CXX-DetermineVersionInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\zOS-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\IBMCPP-CXX-DetermineVersionInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CompilerId\VS-10.vcxproj.in;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeFindBinUtils.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCXXCompiler.cmake.in;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\8caf9177abcac060b9a1d922dc1cef659dbe50b6\CMakeFiles\3.10.0\CMakeCXXCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeSystemSpecificInformation.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeGenericSystem.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\Windows.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\WindowsPaths.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCInformation.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeLanguageInformation.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\Windows-MSVC-C.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\Windows-MSVC.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineRCCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeRCCompiler.cmake.in;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\8caf9177abcac060b9a1d922dc1cef659dbe50b6\CMakeFiles\3.10.0\CMakeRCCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeRCInformation.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeTestRCCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCommonLanguageInclude.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeTestCCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeTestCompilerCommon.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCompilerABI.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeParseImplicitLinkInfo.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCCompilerABI.c;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCompileFeatures.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCCompiler.cmake.in;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\8caf9177abcac060b9a1d922dc1cef659dbe50b6\CMakeFiles\3.10.0\CMakeCCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCXXInformation.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeLanguageInformation.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\MSVC-CXX.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\CMakeCommonCompilerMacros.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\Windows-MSVC-CXX.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\Windows-MSVC.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCommonLanguageInclude.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeTestCXXCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeTestCompilerCommon.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCompilerABI.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeParseImplicitLinkInfo.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCXXCompilerABI.cpp;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCompileFeatures.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Internal\FeatureTesting.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\MSVC-CXX-FeatureTests.cmake;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\8caf9177abcac060b9a1d922dc1cef659dbe50b6\CMakeFiles\feature_tests.cxx;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCXXCompiler.cmake.in;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\8caf9177abcac060b9a1d922dc1cef659dbe50b6\CMakeFiles\3.10.0\CMakeCXXCompiler.cmake;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\8caf9177abcac060b9a1d922dc1cef659dbe50b6\conanbuildinfo.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeParseArguments.cmake;C:\Users\t.vogl\.conan\data\suitesparse\5164583\spielwiese\testing\package\85f780d0530411a64b0be4407b381706014b445d\FindCholmod.cmake;C:\Users\t.vogl\.conan\data\suitesparse\5164583\spielwiese\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\cmake\suitesparse-4.5.0\suitesparse-config-version.cmake;C:\Users\t.vogl\.conan\data\suitesparse\5164583\spielwiese\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\cmake\suitesparse-4.5.0\suitesparse-config.cmake;C:\Users\t.vogl\.conan\data\suitesparse\5164583\spielwiese\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\cmake\suitesparse-4.5.0\SuiteSparse-targets.cmake;C:\Users\t.vogl\.conan\data\suitesparse\5164583\spielwiese\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\cmake\suitesparse-4.5.0\SuiteSparse-targets-release.cmake;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\src\CMakeLists.txt;%(AdditionalInputs) + C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\8caf9177abcac060b9a1d922dc1cef659dbe50b6\CMakeFiles\generate.stamp + Building Custom Rule C:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/src/CMakeLists.txt + setlocal +"C:\Program Files\CMake\bin\cmake.exe" -HC:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/src -BC:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6 --check-stamp-file C:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/CMakeFiles/generate.stamp +if %errorlevel% neq 0 goto :cmEnd +:cmEnd +endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone +:cmErrorLevel +exit /b %1 +:cmDone +if %errorlevel% neq 0 goto :VCEnd + C:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/src/CMakeLists.txt;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\src\CMakeLists.txt;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineSystem.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeSystem.cmake.in;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\8caf9177abcac060b9a1d922dc1cef659dbe50b6\CMakeFiles\3.10.0\CMakeSystem.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeSystemSpecificInitialize.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCompilerId.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCompilerIdDetection.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\ADSP-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\ARMCC-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\AppleClang-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Clang-DetermineCompilerInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Borland-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Bruce-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Clang-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Clang-DetermineCompilerInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Compaq-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Cray-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Embarcadero-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Fujitsu-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\GHS-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\GNU-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\HP-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\IAR-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Intel-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\MIPSpro-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\MSVC-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\NVIDIA-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\OpenWatcom-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\PGI-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\PathScale-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\SCO-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\SDCC-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\SunPro-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\TI-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\TinyCC-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\VisualAge-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\IBMCPP-C-DetermineVersionInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Watcom-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\XL-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\IBMCPP-C-DetermineVersionInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\zOS-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\IBMCPP-C-DetermineVersionInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CompilerId\VS-10.vcxproj.in;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeFindBinUtils.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCCompiler.cmake.in;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\8caf9177abcac060b9a1d922dc1cef659dbe50b6\CMakeFiles\3.10.0\CMakeCCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCXXCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\Windows-Determine-CXX.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCompilerId.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCompilerIdDetection.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\ADSP-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\ARMCC-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\AppleClang-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Clang-DetermineCompilerInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Borland-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Clang-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Clang-DetermineCompilerInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Comeau-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Compaq-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Cray-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Embarcadero-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Fujitsu-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\GHS-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\GNU-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\HP-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\IAR-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Intel-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\MIPSpro-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\MSVC-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\NVIDIA-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\OpenWatcom-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\PGI-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\PathScale-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\SCO-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\SunPro-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\TI-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\VisualAge-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\IBMCPP-CXX-DetermineVersionInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Watcom-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\XL-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\IBMCPP-CXX-DetermineVersionInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\zOS-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\IBMCPP-CXX-DetermineVersionInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CompilerId\VS-10.vcxproj.in;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeFindBinUtils.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCXXCompiler.cmake.in;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\8caf9177abcac060b9a1d922dc1cef659dbe50b6\CMakeFiles\3.10.0\CMakeCXXCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeSystemSpecificInformation.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeGenericSystem.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\Windows.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\WindowsPaths.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCInformation.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeLanguageInformation.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\Windows-MSVC-C.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\Windows-MSVC.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineRCCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeRCCompiler.cmake.in;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\8caf9177abcac060b9a1d922dc1cef659dbe50b6\CMakeFiles\3.10.0\CMakeRCCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeRCInformation.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeTestRCCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCommonLanguageInclude.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeTestCCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeTestCompilerCommon.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCompilerABI.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeParseImplicitLinkInfo.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCCompilerABI.c;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCompileFeatures.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCCompiler.cmake.in;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\8caf9177abcac060b9a1d922dc1cef659dbe50b6\CMakeFiles\3.10.0\CMakeCCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCXXInformation.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeLanguageInformation.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\MSVC-CXX.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\CMakeCommonCompilerMacros.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\Windows-MSVC-CXX.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\Windows-MSVC.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCommonLanguageInclude.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeTestCXXCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeTestCompilerCommon.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCompilerABI.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeParseImplicitLinkInfo.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCXXCompilerABI.cpp;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCompileFeatures.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Internal\FeatureTesting.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\MSVC-CXX-FeatureTests.cmake;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\8caf9177abcac060b9a1d922dc1cef659dbe50b6\CMakeFiles\feature_tests.cxx;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCXXCompiler.cmake.in;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\8caf9177abcac060b9a1d922dc1cef659dbe50b6\CMakeFiles\3.10.0\CMakeCXXCompiler.cmake;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\8caf9177abcac060b9a1d922dc1cef659dbe50b6\conanbuildinfo.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeParseArguments.cmake;C:\Users\t.vogl\.conan\data\suitesparse\5164583\spielwiese\testing\package\85f780d0530411a64b0be4407b381706014b445d\FindCholmod.cmake;C:\Users\t.vogl\.conan\data\suitesparse\5164583\spielwiese\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\cmake\suitesparse-4.5.0\suitesparse-config-version.cmake;C:\Users\t.vogl\.conan\data\suitesparse\5164583\spielwiese\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\cmake\suitesparse-4.5.0\suitesparse-config.cmake;C:\Users\t.vogl\.conan\data\suitesparse\5164583\spielwiese\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\cmake\suitesparse-4.5.0\SuiteSparse-targets.cmake;C:\Users\t.vogl\.conan\data\suitesparse\5164583\spielwiese\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\cmake\suitesparse-4.5.0\SuiteSparse-targets-release.cmake;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\src\CMakeLists.txt;%(AdditionalInputs) + C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\8caf9177abcac060b9a1d922dc1cef659dbe50b6\CMakeFiles\generate.stamp + + + + + + + + {07D38AA1-E7DC-3A7E-8679-43696B099434} + ZERO_CHECK + + + + + + \ No newline at end of file diff --git a/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/cholmod-test.vcxproj.filters b/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/cholmod-test.vcxproj.filters new file mode 100644 index 0000000..5118cdf --- /dev/null +++ b/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/cholmod-test.vcxproj.filters @@ -0,0 +1,16 @@ + + + + + Source Files + + + + + + + + {270B1586-CA0D-3F52-8323-A28D92E21B8C} + + + diff --git a/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/cmake_install.cmake b/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/cmake_install.cmake new file mode 100644 index 0000000..e4288c3 --- /dev/null +++ b/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/cmake_install.cmake @@ -0,0 +1,44 @@ +# Install script for directory: C:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/src + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files/SuitesparseTest") +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() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "FALSE") +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 "C:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/${CMAKE_INSTALL_MANIFEST}" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") diff --git a/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/conanbuildinfo.cmake b/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/conanbuildinfo.cmake new file mode 100644 index 0000000..a6b9574 --- /dev/null +++ b/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/conanbuildinfo.cmake @@ -0,0 +1,531 @@ +include(CMakeParseArguments) +set(CONAN_SUITESPARSE_ROOT "C:/Users/t.vogl/.conan/data/suitesparse/5164583/spielwiese/testing/package/85f780d0530411a64b0be4407b381706014b445d") +set(CONAN_INCLUDE_DIRS_SUITESPARSE "C:/Users/t.vogl/.conan/data/suitesparse/5164583/spielwiese/testing/package/85f780d0530411a64b0be4407b381706014b445d/include" + "C:/Users/t.vogl/.conan/data/suitesparse/5164583/spielwiese/testing/package/85f780d0530411a64b0be4407b381706014b445d/include/suitesparse") +set(CONAN_LIB_DIRS_SUITESPARSE "C:/Users/t.vogl/.conan/data/suitesparse/5164583/spielwiese/testing/package/85f780d0530411a64b0be4407b381706014b445d/lib" + "C:/Users/t.vogl/.conan/data/suitesparse/5164583/spielwiese/testing/package/85f780d0530411a64b0be4407b381706014b445d/lib64/lapack_blas_windows" + "C:/Users/t.vogl/.conan/data/suitesparse/5164583/spielwiese/testing/package/85f780d0530411a64b0be4407b381706014b445d/lib64") +set(CONAN_BIN_DIRS_SUITESPARSE "C:/Users/t.vogl/.conan/data/suitesparse/5164583/spielwiese/testing/package/85f780d0530411a64b0be4407b381706014b445d/lib64/lapack_blas_windows") +set(CONAN_RES_DIRS_SUITESPARSE ) +set(CONAN_BUILD_DIRS_SUITESPARSE "C:/Users/t.vogl/.conan/data/suitesparse/5164583/spielwiese/testing/package/85f780d0530411a64b0be4407b381706014b445d/") +set(CONAN_LIBS_SUITESPARSE libamd libbtf libcamd libccolamd libcholmod libcolamd libcxsparse libklu libldl libspqr libumfpack metis suitesparseconfig libblas liblapack) +set(CONAN_DEFINES_SUITESPARSE ) +# COMPILE_DEFINITIONS are equal to CONAN_DEFINES without -D, for targets +set(CONAN_COMPILE_DEFINITIONS_SUITESPARSE ) + +set(CONAN_C_FLAGS_SUITESPARSE "") +set(CONAN_CXX_FLAGS_SUITESPARSE "") +set(CONAN_SHARED_LINKER_FLAGS_SUITESPARSE "") +set(CONAN_EXE_LINKER_FLAGS_SUITESPARSE "") + +# For modern cmake targets we use the list variables (separated with ;) +set(CONAN_C_FLAGS_SUITESPARSE_LIST "") +set(CONAN_CXX_FLAGS_SUITESPARSE_LIST "") +set(CONAN_SHARED_LINKER_FLAGS_SUITESPARSE_LIST "") +set(CONAN_EXE_LINKER_FLAGS_SUITESPARSE_LIST "") + + + +### Definition of global aggregated variables ### + +set(CONAN_PACKAGE_NAME suitesparse-test) +set(CONAN_PACKAGE_VERSION 0.1) + +set(CONAN_SETTINGS_ARCH "x86_64") +set(CONAN_SETTINGS_BUILD_TYPE "Release") +set(CONAN_SETTINGS_COMPILER "Visual Studio") +set(CONAN_SETTINGS_COMPILER_RUNTIME "MD") +set(CONAN_SETTINGS_COMPILER_VERSION "10") +set(CONAN_SETTINGS_OS "Windows") + +set(CONAN_DEPENDENCIES suitesparse) +# Storing original command line args (CMake helper) flags +set(CONAN_CMD_CXX_FLAGS ${CONAN_CXX_FLAGS}) + +set(CONAN_CMD_SHARED_LINKER_FLAGS ${CONAN_SHARED_LINKER_FLAGS}) +set(CONAN_CMD_C_FLAGS ${CONAN_C_FLAGS}) +# Defining accumulated conan variables for all deps + +set(CONAN_INCLUDE_DIRS "C:/Users/t.vogl/.conan/data/suitesparse/5164583/spielwiese/testing/package/85f780d0530411a64b0be4407b381706014b445d/include" + "C:/Users/t.vogl/.conan/data/suitesparse/5164583/spielwiese/testing/package/85f780d0530411a64b0be4407b381706014b445d/include/suitesparse" ${CONAN_INCLUDE_DIRS}) +set(CONAN_LIB_DIRS "C:/Users/t.vogl/.conan/data/suitesparse/5164583/spielwiese/testing/package/85f780d0530411a64b0be4407b381706014b445d/lib" + "C:/Users/t.vogl/.conan/data/suitesparse/5164583/spielwiese/testing/package/85f780d0530411a64b0be4407b381706014b445d/lib64/lapack_blas_windows" + "C:/Users/t.vogl/.conan/data/suitesparse/5164583/spielwiese/testing/package/85f780d0530411a64b0be4407b381706014b445d/lib64" ${CONAN_LIB_DIRS}) +set(CONAN_BIN_DIRS "C:/Users/t.vogl/.conan/data/suitesparse/5164583/spielwiese/testing/package/85f780d0530411a64b0be4407b381706014b445d/lib64/lapack_blas_windows" ${CONAN_BIN_DIRS}) +set(CONAN_RES_DIRS ${CONAN_RES_DIRS}) +set(CONAN_LIBS libamd libbtf libcamd libccolamd libcholmod libcolamd libcxsparse libklu libldl libspqr libumfpack metis suitesparseconfig libblas liblapack ${CONAN_LIBS}) +set(CONAN_DEFINES ${CONAN_DEFINES}) +set(CONAN_CMAKE_MODULE_PATH "C:/Users/t.vogl/.conan/data/suitesparse/5164583/spielwiese/testing/package/85f780d0530411a64b0be4407b381706014b445d/" ${CONAN_CMAKE_MODULE_PATH}) + +set(CONAN_CXX_FLAGS " ${CONAN_CXX_FLAGS}") +set(CONAN_SHARED_LINKER_FLAGS " ${CONAN_SHARED_LINKER_FLAGS}") +set(CONAN_EXE_LINKER_FLAGS " ${CONAN_EXE_LINKER_FLAGS}") +set(CONAN_C_FLAGS " ${CONAN_C_FLAGS}") + + +### Definition of macros and functions ### + +macro(conan_define_targets) + if(${CMAKE_VERSION} VERSION_LESS "3.1.2") + message(FATAL_ERROR "TARGETS not supported by your CMake version!") + endif() # CMAKE > 3.x + set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${CONAN_CMD_CXX_FLAGS}") + set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} ${CONAN_CMD_C_FLAGS}") + set(CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} ${CONAN_CMD_SHARED_LINKER_FLAGS}") + + + conan_package_library_targets("${CONAN_LIBS_SUITESPARSE}" "${CONAN_LIB_DIRS_SUITESPARSE}" + CONAN_PACKAGE_TARGETS_SUITESPARSE "" "" suitesparse) + conan_package_library_targets("${CONAN_LIBS_SUITESPARSE_DEBUG}" "${CONAN_LIB_DIRS_SUITESPARSE_DEBUG}" + CONAN_PACKAGE_TARGETS_SUITESPARSE_DEBUG "" "debug" suitesparse) + conan_package_library_targets("${CONAN_LIBS_SUITESPARSE_RELEASE}" "${CONAN_LIB_DIRS_SUITESPARSE_RELEASE}" + CONAN_PACKAGE_TARGETS_SUITESPARSE_RELEASE "" "release" suitesparse) + + add_library(CONAN_PKG::suitesparse INTERFACE IMPORTED) + + # Property INTERFACE_LINK_FLAGS do not work, necessary to add to INTERFACE_LINK_LIBRARIES + set_property(TARGET CONAN_PKG::suitesparse PROPERTY INTERFACE_LINK_LIBRARIES ${CONAN_PACKAGE_TARGETS_SUITESPARSE} ${CONAN_SHARED_LINKER_FLAGS_SUITESPARSE_LIST} ${CONAN_EXE_LINKER_FLAGS_SUITESPARSE_LIST} + $<$:${CONAN_PACKAGE_TARGETS_SUITESPARSE_RELEASE} ${CONAN_SHARED_LINKER_FLAGS_SUITESPARSE_RELEASE_LIST} ${CONAN_EXE_LINKER_FLAGS_SUITESPARSE_RELEASE_LIST}> + $<$:${CONAN_PACKAGE_TARGETS_SUITESPARSE_RELEASE} ${CONAN_SHARED_LINKER_FLAGS_SUITESPARSE_RELEASE_LIST} ${CONAN_EXE_LINKER_FLAGS_SUITESPARSE_RELEASE_LIST}> + $<$:${CONAN_PACKAGE_TARGETS_SUITESPARSE_RELEASE} ${CONAN_SHARED_LINKER_FLAGS_SUITESPARSE_RELEASE_LIST} ${CONAN_EXE_LINKER_FLAGS_SUITESPARSE_RELEASE_LIST}> + $<$:${CONAN_PACKAGE_TARGETS_SUITESPARSE_DEBUG} ${CONAN_SHARED_LINKER_FLAGS_SUITESPARSE_DEBUG_LIST} ${CONAN_EXE_LINKER_FLAGS_SUITESPARSE_DEBUG_LIST}> + ) + set_property(TARGET CONAN_PKG::suitesparse PROPERTY INTERFACE_INCLUDE_DIRECTORIES ${CONAN_INCLUDE_DIRS_SUITESPARSE} + $<$:${CONAN_INCLUDE_DIRS_SUITESPARSE_RELEASE}> + $<$:${CONAN_INCLUDE_DIRS_SUITESPARSE_RELEASE}> + $<$:${CONAN_INCLUDE_DIRS_SUITESPARSE_RELEASE}> + $<$:${CONAN_INCLUDE_DIRS_SUITESPARSE_DEBUG}>) + set_property(TARGET CONAN_PKG::suitesparse PROPERTY INTERFACE_COMPILE_DEFINITIONS ${CONAN_COMPILE_DEFINITIONS_SUITESPARSE} + $<$:${CONAN_COMPILE_DEFINITIONS_SUITESPARSE_RELEASE}> + $<$:${CONAN_COMPILE_DEFINITIONS_SUITESPARSE_RELEASE}> + $<$:${CONAN_COMPILE_DEFINITIONS_SUITESPARSE_RELEASE}> + $<$:${CONAN_COMPILE_DEFINITIONS_SUITESPARSE_DEBUG}>) + set_property(TARGET CONAN_PKG::suitesparse PROPERTY INTERFACE_COMPILE_OPTIONS ${CONAN_C_FLAGS_SUITESPARSE_LIST} ${CONAN_CXX_FLAGS_SUITESPARSE_LIST} + $<$:${CONAN_C_FLAGS_SUITESPARSE_RELEASE_LIST} ${CONAN_CXX_FLAGS_SUITESPARSE_RELEASE_LIST}> + $<$:${CONAN_C_FLAGS_SUITESPARSE_RELEASE_LIST} ${CONAN_CXX_FLAGS_SUITESPARSE_RELEASE_LIST}> + $<$:${CONAN_C_FLAGS_SUITESPARSE_RELEASE_LIST} ${CONAN_CXX_FLAGS_SUITESPARSE_RELEASE_LIST}> + $<$:${CONAN_C_FLAGS_SUITESPARSE_DEBUG_LIST} ${CONAN_CXX_FLAGS_SUITESPARSE_DEBUG_LIST}>) + + set(CONAN_TARGETS CONAN_PKG::suitesparse) + +endmacro() + + +macro(conan_basic_setup) + set(options TARGETS NO_OUTPUT_DIRS SKIP_RPATH KEEP_RPATHS SKIP_STD) + cmake_parse_arguments(ARGUMENTS "${options}" "${oneValueArgs}" "${multiValueArgs}" ${ARGN} ) + if(CONAN_EXPORTED) + message(STATUS "Conan: called by CMake conan helper") + endif() + conan_check_compiler() + if(NOT ARGUMENTS_NO_OUTPUT_DIRS) + conan_output_dirs_setup() + endif() + conan_set_find_library_paths() + if(NOT ARGUMENTS_TARGETS) + message(STATUS "Conan: Using cmake global configuration") + conan_global_flags() + else() + message(STATUS "Conan: Using cmake targets configuration") + conan_define_targets() + endif() + if(ARGUMENTS_SKIP_RPATH) + # Change by "DEPRECATION" or "SEND_ERROR" when we are ready + message(WARNING "Conan: SKIP_RPATH is deprecated, it has been renamed to KEEP_RPATHS") + endif() + if(NOT ARGUMENTS_SKIP_RPATH AND NOT ARGUMENTS_KEEP_RPATHS) + # Parameter has renamed, but we keep the compatibility with old SKIP_RPATH + message(STATUS "Conan: Adjusting default RPATHs Conan policies") + conan_set_rpath() + endif() + if(NOT ARGUMENTS_SKIP_STD) + message(STATUS "Conan: Adjusting language standard") + conan_set_std() + endif() + conan_set_vs_runtime() + conan_set_libcxx() + conan_set_find_paths() +endmacro() + +macro(conan_set_find_paths) + # CMAKE_MODULE_PATH does not have Debug/Release config, but there are variables + # CONAN_CMAKE_MODULE_PATH_DEBUG to be used by the consumer + # CMake can find findXXX.cmake files in the root of packages + set(CMAKE_MODULE_PATH ${CONAN_CMAKE_MODULE_PATH} ${CMAKE_MODULE_PATH}) + + # Make find_package() to work + set(CMAKE_PREFIX_PATH ${CONAN_CMAKE_MODULE_PATH} ${CMAKE_PREFIX_PATH}) + + # Set the find root path (cross build) + set(CMAKE_FIND_ROOT_PATH ${CONAN_CMAKE_FIND_ROOT_PATH} ${CMAKE_FIND_ROOT_PATH}) + if(CONAN_CMAKE_FIND_ROOT_PATH_MODE_PROGRAM) + set(CMAKE_FIND_ROOT_PATH_MODE_PROGRAM ${CONAN_CMAKE_FIND_ROOT_PATH_MODE_PROGRAM}) + endif() + if(CONAN_CMAKE_FIND_ROOT_PATH_MODE_LIBRARY) + set(CMAKE_FIND_ROOT_PATH_MODE_LIBRARY ${CONAN_CMAKE_FIND_ROOT_PATH_MODE_LIBRARY}) + endif() + if(CONAN_CMAKE_FIND_ROOT_PATH_MODE_INCLUDE) + set(CMAKE_FIND_ROOT_PATH_MODE_INCLUDE ${CONAN_CMAKE_FIND_ROOT_PATH_MODE_INCLUDE}) + endif() +endmacro() + +macro(conan_set_find_library_paths) + # CMAKE_INCLUDE_PATH, CMAKE_LIBRARY_PATH does not have Debug/Release config, but there are variables + # CONAN_INCLUDE_DIRS_DEBUG/RELEASE CONAN_LIB_DIRS_DEBUG/RELEASE to be used by the consumer + # For find_library + set(CMAKE_INCLUDE_PATH ${CONAN_INCLUDE_DIRS} ${CMAKE_INCLUDE_PATH}) + set(CMAKE_LIBRARY_PATH ${CONAN_LIB_DIRS} ${CMAKE_LIBRARY_PATH}) +endmacro() + +macro(conan_set_vs_runtime) + if(CONAN_LINK_RUNTIME) + foreach(flag CMAKE_C_FLAGS_RELEASE CMAKE_CXX_FLAGS_RELEASE + CMAKE_C_FLAGS_RELWITHDEBINFO CMAKE_CXX_FLAGS_RELWITHDEBINFO + CMAKE_C_FLAGS_MINSIZEREL CMAKE_CXX_FLAGS_MINSIZEREL) + if(DEFINED ${flag}) + string(REPLACE "/MD" ${CONAN_LINK_RUNTIME} ${flag} "${${flag}}") + endif() + endforeach() + foreach(flag CMAKE_C_FLAGS_DEBUG CMAKE_CXX_FLAGS_DEBUG) + if(DEFINED ${flag}) + string(REPLACE "/MDd" ${CONAN_LINK_RUNTIME} ${flag} "${${flag}}") + endif() + endforeach() + endif() +endmacro() + +macro(conan_flags_setup) + # Macro maintained for backwards compatibility + conan_set_find_library_paths() + conan_global_flags() + conan_set_rpath() + conan_set_vs_runtime() + conan_set_libcxx() +endmacro() + + + +function(conan_find_libraries_abs_path libraries package_libdir libraries_abs_path) + foreach(_LIBRARY_NAME ${libraries}) + unset(CONAN_FOUND_LIBRARY CACHE) + find_library(CONAN_FOUND_LIBRARY NAME ${_LIBRARY_NAME} PATHS ${package_libdir} + NO_DEFAULT_PATH NO_CMAKE_FIND_ROOT_PATH) + if(CONAN_FOUND_LIBRARY) + message(STATUS "Library ${_LIBRARY_NAME} found ${CONAN_FOUND_LIBRARY}") + set(CONAN_FULLPATH_LIBS ${CONAN_FULLPATH_LIBS} ${CONAN_FOUND_LIBRARY}) + else() + message(STATUS "Library ${_LIBRARY_NAME} not found in package, might be system one") + set(CONAN_FULLPATH_LIBS ${CONAN_FULLPATH_LIBS} ${_LIBRARY_NAME}) + endif() + endforeach() + unset(CONAN_FOUND_LIBRARY CACHE) + set(${libraries_abs_path} ${CONAN_FULLPATH_LIBS} PARENT_SCOPE) +endfunction() + +function(conan_package_library_targets libraries package_libdir libraries_abs_path deps build_type package_name) + foreach(_LIBRARY_NAME ${libraries}) + unset(CONAN_FOUND_LIBRARY CACHE) + find_library(CONAN_FOUND_LIBRARY NAME ${_LIBRARY_NAME} PATHS ${package_libdir} + NO_DEFAULT_PATH NO_CMAKE_FIND_ROOT_PATH) + if(CONAN_FOUND_LIBRARY) + message(STATUS "Library ${_LIBRARY_NAME} found ${CONAN_FOUND_LIBRARY}") + set(_LIB_NAME CONAN_LIB::${package_name}_${_LIBRARY_NAME}${build_type}) + add_library(${_LIB_NAME} UNKNOWN IMPORTED) + set_target_properties(${_LIB_NAME} PROPERTIES IMPORTED_LOCATION ${CONAN_FOUND_LIBRARY}) + string(REPLACE " " ";" deps_list "${deps}") + set_property(TARGET ${_LIB_NAME} PROPERTY INTERFACE_LINK_LIBRARIES ${deps_list}) + set(CONAN_FULLPATH_LIBS ${CONAN_FULLPATH_LIBS} ${_LIB_NAME}) + else() + message(STATUS "Library ${_LIBRARY_NAME} not found in package, might be system one") + set(CONAN_FULLPATH_LIBS ${CONAN_FULLPATH_LIBS} ${_LIBRARY_NAME}) + endif() + endforeach() + unset(CONAN_FOUND_LIBRARY CACHE) + set(${libraries_abs_path} ${CONAN_FULLPATH_LIBS} PARENT_SCOPE) +endfunction() + +macro(conan_set_libcxx) + if(DEFINED CONAN_LIBCXX) + message(STATUS "Conan: C++ stdlib: ${CONAN_LIBCXX}") + if(CONAN_COMPILER STREQUAL "clang" OR CONAN_COMPILER STREQUAL "apple-clang") + if(CONAN_LIBCXX STREQUAL "libstdc++" OR CONAN_LIBCXX STREQUAL "libstdc++11" ) + set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -stdlib=libstdc++") + elseif(CONAN_LIBCXX STREQUAL "libc++") + set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -stdlib=libc++") + endif() + endif() + if(CONAN_COMPILER STREQUAL "sun-cc") + if(CONAN_LIBCXX STREQUAL "libCstd") + set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -library=Cstd") + elseif(CONAN_LIBCXX STREQUAL "libstdcxx") + set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -library=stdcxx4") + elseif(CONAN_LIBCXX STREQUAL "libstlport") + set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -library=stlport4") + elseif(CONAN_LIBCXX STREQUAL "libstdc++") + set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -library=stdcpp") + endif() + endif() + if(CONAN_LIBCXX STREQUAL "libstdc++11") + add_definitions(-D_GLIBCXX_USE_CXX11_ABI=1) + elseif(CONAN_LIBCXX STREQUAL "libstdc++") + add_definitions(-D_GLIBCXX_USE_CXX11_ABI=0) + endif() + endif() +endmacro() + +macro(conan_set_std) + # Do not warn "Manually-specified variables were not used by the project" + set(ignorevar "${CONAN_STD_CXX_FLAG}${CONAN_CMAKE_CXX_STANDARD}${CONAN_CMAKE_CXX_EXTENSIONS}") + if (CMAKE_VERSION VERSION_LESS "3.1") + if(CONAN_STD_CXX_FLAG) + message(STATUS "Conan setting CXX_FLAGS flags: ${CONAN_STD_CXX_FLAG}") + set(CMAKE_CXX_FLAGS "-std=${CONAN_STD_CXX_FLAG} ${CMAKE_CXX_FLAGS}") + endif() + else() + if(CONAN_CMAKE_CXX_STANDARD) + message(STATUS "Conan setting CPP STANDARD: ${CONAN_CMAKE_CXX_STANDARD} WITH EXTENSIONS ${CONAN_CMAKE_CXX_EXTENSIONS}") + set(CMAKE_CXX_STANDARD ${CONAN_CMAKE_CXX_STANDARD}) + set(CMAKE_CXX_EXTENSIONS ${CONAN_CMAKE_CXX_EXTENSIONS}) + endif() + endif () +endmacro() + +macro(conan_set_rpath) + if(APPLE) + # https://cmake.org/Wiki/CMake_RPATH_handling + # CONAN GUIDE: All generated libraries should have the id and dependencies to other + # dylibs without path, just the name, EX: + # libMyLib1.dylib: + # libMyLib1.dylib (compatibility version 0.0.0, current version 0.0.0) + # libMyLib0.dylib (compatibility version 0.0.0, current version 0.0.0) + # /usr/lib/libc++.1.dylib (compatibility version 1.0.0, current version 120.0.0) + # /usr/lib/libSystem.B.dylib (compatibility version 1.0.0, current version 1197.1.1) + set(CMAKE_SKIP_RPATH 1) # AVOID RPATH FOR *.dylib, ALL LIBS BETWEEN THEM AND THE EXE + # SHOULD BE ON THE LINKER RESOLVER PATH (./ IS ONE OF THEM) + # Policy CMP0068 + # We want the old behavior, in CMake >= 3.9 CMAKE_SKIP_RPATH won't affect the install_name in OSX + set(CMAKE_INSTALL_NAME_DIR "") + endif() +endmacro() + +macro(conan_output_dirs_setup) + set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/bin) + set(CMAKE_RUNTIME_OUTPUT_DIRECTORY_RELEASE ${CMAKE_RUNTIME_OUTPUT_DIRECTORY}) + set(CMAKE_RUNTIME_OUTPUT_DIRECTORY_RELWITHDEBINFO ${CMAKE_RUNTIME_OUTPUT_DIRECTORY}) + set(CMAKE_RUNTIME_OUTPUT_DIRECTORY_MINSIZEREL ${CMAKE_RUNTIME_OUTPUT_DIRECTORY}) + set(CMAKE_RUNTIME_OUTPUT_DIRECTORY_DEBUG ${CMAKE_RUNTIME_OUTPUT_DIRECTORY}) + + set(CMAKE_ARCHIVE_OUTPUT_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/lib) + set(CMAKE_ARCHIVE_OUTPUT_DIRECTORY_RELEASE ${CMAKE_ARCHIVE_OUTPUT_DIRECTORY}) + set(CMAKE_ARCHIVE_OUTPUT_DIRECTORY_RELWITHDEBINFO ${CMAKE_ARCHIVE_OUTPUT_DIRECTORY}) + set(CMAKE_ARCHIVE_OUTPUT_DIRECTORY_MINSIZEREL ${CMAKE_ARCHIVE_OUTPUT_DIRECTORY}) + set(CMAKE_ARCHIVE_OUTPUT_DIRECTORY_DEBUG ${CMAKE_ARCHIVE_OUTPUT_DIRECTORY}) + + set(CMAKE_LIBRARY_OUTPUT_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/lib) + set(CMAKE_LIBRARY_OUTPUT_DIRECTORY_RELEASE ${CMAKE_LIBRARY_OUTPUT_DIRECTORY}) + set(CMAKE_LIBRARY_OUTPUT_DIRECTORY_RELWITHDEBINFO ${CMAKE_LIBRARY_OUTPUT_DIRECTORY}) + set(CMAKE_LIBRARY_OUTPUT_DIRECTORY_MINSIZEREL ${CMAKE_LIBRARY_OUTPUT_DIRECTORY}) + set(CMAKE_LIBRARY_OUTPUT_DIRECTORY_DEBUG ${CMAKE_LIBRARY_OUTPUT_DIRECTORY}) +endmacro() + +macro(conan_split_version VERSION_STRING MAJOR MINOR) + #make a list from the version string + string(REPLACE "." ";" VERSION_LIST "${VERSION_STRING}") + + #write output values + list(LENGTH VERSION_LIST _version_len) + list(GET VERSION_LIST 0 ${MAJOR}) + if(${_version_len} GREATER 1) + list(GET VERSION_LIST 1 ${MINOR}) + endif() +endmacro() + +macro(conan_error_compiler_version) + message(FATAL_ERROR "Incorrect '${CONAN_COMPILER}' version 'compiler.version=${CONAN_COMPILER_VERSION}'" + " is not the one detected by CMake: '${CMAKE_CXX_COMPILER_ID}=" ${VERSION_MAJOR}.${VERSION_MINOR}') +endmacro() + +set(_CONAN_CURRENT_DIR ${CMAKE_CURRENT_LIST_DIR}) +function(conan_get_compiler CONAN_INFO_COMPILER CONAN_INFO_COMPILER_VERSION) + MESSAGE(STATUS "Current conanbuildinfo.cmake directory: " ${_CONAN_CURRENT_DIR}) + if(NOT EXISTS ${_CONAN_CURRENT_DIR}/conaninfo.txt) + message(STATUS "WARN: conaninfo.txt not found") + return() + endif() + + file (READ "${_CONAN_CURRENT_DIR}/conaninfo.txt" CONANINFO) + + string(REGEX MATCH "compiler=([-A-Za-z0-9_ ]+)" _MATCHED ${CONANINFO}) + if(DEFINED CMAKE_MATCH_1) + string(STRIP "${CMAKE_MATCH_1}" _CONAN_INFO_COMPILER) + set(${CONAN_INFO_COMPILER} ${_CONAN_INFO_COMPILER} PARENT_SCOPE) + endif() + + string(REGEX MATCH "compiler.version=([-A-Za-z0-9_.]+)" _MATCHED ${CONANINFO}) + if(DEFINED CMAKE_MATCH_1) + string(STRIP "${CMAKE_MATCH_1}" _CONAN_INFO_COMPILER_VERSION) + set(${CONAN_INFO_COMPILER_VERSION} ${_CONAN_INFO_COMPILER_VERSION} PARENT_SCOPE) + endif() +endfunction() + +function(check_compiler_version) + conan_split_version(${CMAKE_CXX_COMPILER_VERSION} VERSION_MAJOR VERSION_MINOR) + if(CMAKE_CXX_COMPILER_ID MATCHES MSVC) + # https://cmake.org/cmake/help/v3.2/variable/MSVC_VERSION.html + if( (CONAN_COMPILER_VERSION STREQUAL "14" AND NOT VERSION_MAJOR STREQUAL "19") OR + (CONAN_COMPILER_VERSION STREQUAL "12" AND NOT VERSION_MAJOR STREQUAL "18") OR + (CONAN_COMPILER_VERSION STREQUAL "11" AND NOT VERSION_MAJOR STREQUAL "17") OR + (CONAN_COMPILER_VERSION STREQUAL "10" AND NOT VERSION_MAJOR STREQUAL "16") OR + (CONAN_COMPILER_VERSION STREQUAL "9" AND NOT VERSION_MAJOR STREQUAL "15") OR + (CONAN_COMPILER_VERSION STREQUAL "8" AND NOT VERSION_MAJOR STREQUAL "14") OR + (CONAN_COMPILER_VERSION STREQUAL "7" AND NOT VERSION_MAJOR STREQUAL "13") OR + (CONAN_COMPILER_VERSION STREQUAL "6" AND NOT VERSION_MAJOR STREQUAL "12") ) + conan_error_compiler_version() + endif() + elseif(CONAN_COMPILER STREQUAL "gcc") + set(_CHECK_VERSION ${VERSION_MAJOR}.${VERSION_MINOR}) + if(NOT ${CONAN_COMPILER_VERSION} VERSION_LESS 5.0) + message(STATUS "Conan: Compiler GCC>=5, checking major version ${CONAN_COMPILER_VERSION}") + conan_split_version(${CONAN_COMPILER_VERSION} CONAN_COMPILER_MAJOR CONAN_COMPILER_MINOR) + if("${CONAN_COMPILER_MINOR}" STREQUAL "") + set(_CHECK_VERSION ${VERSION_MAJOR}) + endif() + endif() + message(STATUS "Conan: Checking correct version: ${_CHECK_VERSION}") + if(NOT ${_CHECK_VERSION} VERSION_EQUAL CONAN_COMPILER_VERSION) + conan_error_compiler_version() + endif() + elseif(CONAN_COMPILER MATCHES "clang" OR CONAN_COMPILER STREQUAL "sun-cc") + if(NOT ${VERSION_MAJOR}.${VERSION_MINOR} VERSION_EQUAL CONAN_COMPILER_VERSION) + conan_error_compiler_version() + endif() + else() + message(STATUS "WARN: Unknown compiler '${CONAN_COMPILER}', skipping the version check...") + endif() +endfunction() + +function(conan_check_compiler) + if(NOT DEFINED CMAKE_CXX_COMPILER_ID) + if(DEFINED CMAKE_C_COMPILER_ID) + message(STATUS "This project seems to be plain C, using '${CMAKE_C_COMPILER_ID}' compiler") + set(CMAKE_CXX_COMPILER_ID ${CMAKE_C_COMPILER_ID}) + set(CMAKE_CXX_COMPILER_VERSION ${CMAKE_C_COMPILER_VERSION}) + else() + message(FATAL_ERROR "This project seems to be plain C, but no compiler defined") + endif() + endif() + if(CONAN_DISABLE_CHECK_COMPILER) + message(STATUS "WARN: Disabled conan compiler checks") + return() + endif() + if(NOT CMAKE_CXX_COMPILER_ID AND NOT CMAKE_C_COMPILER_ID) + # This use case happens when compiler is not identified by CMake, but the compilers are there and work + message(STATUS "*** WARN: CMake was not able to identify a C or C++ compiler ***") + message(STATUS "*** WARN: Disabling compiler checks. Please make sure your settings match your environment ***") + return() + endif() + if(NOT DEFINED CONAN_COMPILER) + conan_get_compiler(CONAN_COMPILER CONAN_COMPILER_VERSION) + if(NOT DEFINED CONAN_COMPILER) + message(STATUS "WARN: CONAN_COMPILER variable not set, please make sure yourself that " + "your compiler and version matches your declared settings") + return() + endif() + endif() + + if(NOT CMAKE_HOST_SYSTEM_NAME STREQUAL ${CMAKE_SYSTEM_NAME}) + set(CROSS_BUILDING 1) + endif() + + # If using VS, verify toolset + if (CONAN_COMPILER STREQUAL "Visual Studio") + if (CONAN_SETTINGS_COMPILER_TOOLSET MATCHES "LLVM" OR + CONAN_SETTINGS_COMPILER_TOOLSET MATCHES "clang") + set(EXPECTED_CMAKE_CXX_COMPILER_ID "Clang") + elseif (CONAN_SETTINGS_COMPILER_TOOLSET MATCHES "Intel") + set(EXPECTED_CMAKE_CXX_COMPILER_ID "Intel") + else() + set(EXPECTED_CMAKE_CXX_COMPILER_ID "MSVC") + endif() + + if (NOT CMAKE_CXX_COMPILER_ID MATCHES ${EXPECTED_CMAKE_CXX_COMPILER_ID}) + message(FATAL_ERROR "Incorrect '${CONAN_COMPILER}'. Toolset specifies compiler as '${EXPECTED_CMAKE_CXX_COMPILER_ID}' " + "but CMake detected '${CMAKE_CXX_COMPILER_ID}'") + endif() + + # Avoid checks when cross compiling, apple-clang crashes because its APPLE but not apple-clang + # Actually CMake is detecting "clang" when you are using apple-clang, only if CMP0025 is set to NEW will detect apple-clang + elseif((CONAN_COMPILER STREQUAL "gcc" AND NOT CMAKE_CXX_COMPILER_ID MATCHES "GNU") OR + (CONAN_COMPILER STREQUAL "apple-clang" AND NOT CROSS_BUILDING AND (NOT APPLE OR NOT CMAKE_CXX_COMPILER_ID MATCHES "Clang")) OR + (CONAN_COMPILER STREQUAL "clang" AND NOT CMAKE_CXX_COMPILER_ID MATCHES "Clang") OR + (CONAN_COMPILER STREQUAL "sun-cc" AND NOT CMAKE_CXX_COMPILER_ID MATCHES "SunPro") ) + message(FATAL_ERROR "Incorrect '${CONAN_COMPILER}', is not the one detected by CMake: '${CMAKE_CXX_COMPILER_ID}'") + endif() + + + if(NOT DEFINED CONAN_COMPILER_VERSION) + message(STATUS "WARN: CONAN_COMPILER_VERSION variable not set, please make sure yourself " + "that your compiler version matches your declared settings") + return() + endif() + check_compiler_version() +endfunction() + +macro(conan_set_flags build_type) + set(CMAKE_CXX_FLAGS${build_type} "${CMAKE_CXX_FLAGS${build_type}} ${CONAN_CXX_FLAGS${build_type}}") + set(CMAKE_C_FLAGS${build_type} "${CMAKE_C_FLAGS${build_type}} ${CONAN_C_FLAGS${build_type}}") + set(CMAKE_SHARED_LINKER_FLAGS${build_type} "${CMAKE_SHARED_LINKER_FLAGS${build_type}} ${CONAN_SHARED_LINKER_FLAGS${build_type}}") + set(CMAKE_EXE_LINKER_FLAGS${build_type} "${CMAKE_EXE_LINKER_FLAGS${build_type}} ${CONAN_EXE_LINKER_FLAGS${build_type}}") +endmacro() + +macro(conan_global_flags) + if(CONAN_SYSTEM_INCLUDES) + include_directories(SYSTEM ${CONAN_INCLUDE_DIRS} + "$<$:${CONAN_INCLUDE_DIRS_RELEASE}>" + "$<$:${CONAN_INCLUDE_DIRS_RELEASE}>" + "$<$:${CONAN_INCLUDE_DIRS_RELEASE}>" + "$<$:${CONAN_INCLUDE_DIRS_DEBUG}>") + else() + include_directories(${CONAN_INCLUDE_DIRS} + "$<$:${CONAN_INCLUDE_DIRS_RELEASE}>" + "$<$:${CONAN_INCLUDE_DIRS_RELEASE}>" + "$<$:${CONAN_INCLUDE_DIRS_RELEASE}>" + "$<$:${CONAN_INCLUDE_DIRS_DEBUG}>") + endif() + + link_directories(${CONAN_LIB_DIRS}) + + conan_find_libraries_abs_path("${CONAN_LIBS_DEBUG}" "${CONAN_LIB_DIRS_DEBUG}" + CONAN_LIBS_DEBUG) + conan_find_libraries_abs_path("${CONAN_LIBS_RELEASE}" "${CONAN_LIB_DIRS_RELEASE}" + CONAN_LIBS_RELEASE) + + add_compile_options(${CONAN_DEFINES} + "$<$:${CONAN_DEFINES_DEBUG}>" + "$<$:${CONAN_DEFINES_RELEASE}>" + "$<$:${CONAN_DEFINES_RELEASE}>" + "$<$:${CONAN_DEFINES_RELEASE}>") + + conan_set_flags("") + conan_set_flags("_RELEASE") + conan_set_flags("_DEBUG") + +endmacro() + +macro(conan_target_link_libraries target) + if(CONAN_TARGETS) + target_link_libraries(${target} ${CONAN_TARGETS}) + else() + target_link_libraries(${target} ${CONAN_LIBS}) + foreach(_LIB ${CONAN_LIBS_RELEASE}) + target_link_libraries(${target} optimized ${_LIB}) + endforeach() + foreach(_LIB ${CONAN_LIBS_DEBUG}) + target_link_libraries(${target} debug ${_LIB}) + endforeach() + endif() +endmacro() + + +### Definition of user declared vars (user_info) ### + diff --git a/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/conanbuildinfo.txt b/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/conanbuildinfo.txt new file mode 100644 index 0000000..5ad91ac --- /dev/null +++ b/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/conanbuildinfo.txt @@ -0,0 +1,114 @@ +[includedirs] +C:/Users/t.vogl/.conan/data/suitesparse/5164583/spielwiese/testing/package/85f780d0530411a64b0be4407b381706014b445d/include +C:/Users/t.vogl/.conan/data/suitesparse/5164583/spielwiese/testing/package/85f780d0530411a64b0be4407b381706014b445d/include/suitesparse + +[libdirs] +C:/Users/t.vogl/.conan/data/suitesparse/5164583/spielwiese/testing/package/85f780d0530411a64b0be4407b381706014b445d/lib +C:/Users/t.vogl/.conan/data/suitesparse/5164583/spielwiese/testing/package/85f780d0530411a64b0be4407b381706014b445d/lib64/lapack_blas_windows +C:/Users/t.vogl/.conan/data/suitesparse/5164583/spielwiese/testing/package/85f780d0530411a64b0be4407b381706014b445d/lib64 + +[bindirs] +C:/Users/t.vogl/.conan/data/suitesparse/5164583/spielwiese/testing/package/85f780d0530411a64b0be4407b381706014b445d/lib64/lapack_blas_windows + +[resdirs] + + +[builddirs] +C:/Users/t.vogl/.conan/data/suitesparse/5164583/spielwiese/testing/package/85f780d0530411a64b0be4407b381706014b445d/ + +[libs] +libamd +libbtf +libcamd +libccolamd +libcholmod +libcolamd +libcxsparse +libklu +libldl +libspqr +libumfpack +metis +suitesparseconfig +libblas +liblapack + +[defines] + + +[cppflags] + + +[cflags] + + +[sharedlinkflags] + + +[exelinkflags] + + +[sysroot] + + + +[includedirs_suitesparse] +C:/Users/t.vogl/.conan/data/suitesparse/5164583/spielwiese/testing/package/85f780d0530411a64b0be4407b381706014b445d/include +C:/Users/t.vogl/.conan/data/suitesparse/5164583/spielwiese/testing/package/85f780d0530411a64b0be4407b381706014b445d/include/suitesparse + +[libdirs_suitesparse] +C:/Users/t.vogl/.conan/data/suitesparse/5164583/spielwiese/testing/package/85f780d0530411a64b0be4407b381706014b445d/lib +C:/Users/t.vogl/.conan/data/suitesparse/5164583/spielwiese/testing/package/85f780d0530411a64b0be4407b381706014b445d/lib64/lapack_blas_windows +C:/Users/t.vogl/.conan/data/suitesparse/5164583/spielwiese/testing/package/85f780d0530411a64b0be4407b381706014b445d/lib64 + +[bindirs_suitesparse] +C:/Users/t.vogl/.conan/data/suitesparse/5164583/spielwiese/testing/package/85f780d0530411a64b0be4407b381706014b445d/lib64/lapack_blas_windows + +[resdirs_suitesparse] + + +[builddirs_suitesparse] +C:/Users/t.vogl/.conan/data/suitesparse/5164583/spielwiese/testing/package/85f780d0530411a64b0be4407b381706014b445d/ + +[libs_suitesparse] +libamd +libbtf +libcamd +libccolamd +libcholmod +libcolamd +libcxsparse +libklu +libldl +libspqr +libumfpack +metis +suitesparseconfig +libblas +liblapack + +[defines_suitesparse] + + +[cppflags_suitesparse] + + +[cflags_suitesparse] + + +[sharedlinkflags_suitesparse] + + +[exelinkflags_suitesparse] + + +[sysroot_suitesparse] + + +[rootpath_suitesparse] +C:/Users/t.vogl/.conan/data/suitesparse/5164583/spielwiese/testing/package/85f780d0530411a64b0be4407b381706014b445d + + +[USER_suitesparse] +[ENV_suitesparse] +path=["C:\Users\t.vogl\.conan\data\suitesparse\5164583\spielwiese\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib64/lapack_blas_windows"] \ No newline at end of file diff --git a/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/conaninfo.txt b/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/conaninfo.txt new file mode 100644 index 0000000..b3f529b --- /dev/null +++ b/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/conaninfo.txt @@ -0,0 +1,33 @@ +[settings] + arch=x86_64 + build_type=Release + compiler=Visual Studio + compiler.runtime=MD + compiler.version=10 + os=Windows + +[requires] + suitesparse/5164583.Y.Z + +[options] + + +[full_settings] + arch=x86_64 + build_type=Release + compiler=Visual Studio + compiler.runtime=MD + compiler.version=10 + os=Windows + +[full_requires] + suitesparse/5164583@spielwiese/testing:85f780d0530411a64b0be4407b381706014b445d + +[full_options] + + +[recipe_hash] + + +[env] + diff --git a/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/x64/Release/ALL_BUILD/ALL_BUILD.lastbuildstate b/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/x64/Release/ALL_BUILD/ALL_BUILD.lastbuildstate new file mode 100644 index 0000000..21e33b4 --- /dev/null +++ b/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/x64/Release/ALL_BUILD/ALL_BUILD.lastbuildstate @@ -0,0 +1,2 @@ +#v4.0:v100:false +Release|x64|C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\8caf9177abcac060b9a1d922dc1cef659dbe50b6\| diff --git a/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/x64/Release/ALL_BUILD/custombuild.command.1.tlog b/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/x64/Release/ALL_BUILD/custombuild.command.1.tlog new file mode 100644 index 0000000..22523da Binary files /dev/null and b/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/x64/Release/ALL_BUILD/custombuild.command.1.tlog differ diff --git a/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/x64/Release/ALL_BUILD/custombuild.read.1.tlog b/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/x64/Release/ALL_BUILD/custombuild.read.1.tlog new file mode 100644 index 0000000..c4957d2 Binary files /dev/null and b/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/x64/Release/ALL_BUILD/custombuild.read.1.tlog differ diff --git a/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/x64/Release/ALL_BUILD/custombuild.write.1.tlog b/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/x64/Release/ALL_BUILD/custombuild.write.1.tlog new file mode 100644 index 0000000..6c254bf Binary files /dev/null and b/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/x64/Release/ALL_BUILD/custombuild.write.1.tlog differ diff --git a/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/x64/Release/ZERO_CHECK/ZERO_CHECK.lastbuildstate b/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/x64/Release/ZERO_CHECK/ZERO_CHECK.lastbuildstate new file mode 100644 index 0000000..21e33b4 --- /dev/null +++ b/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/x64/Release/ZERO_CHECK/ZERO_CHECK.lastbuildstate @@ -0,0 +1,2 @@ +#v4.0:v100:false +Release|x64|C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\8caf9177abcac060b9a1d922dc1cef659dbe50b6\| diff --git a/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/x64/Release/ZERO_CHECK/ZERO_CHECK.vcxprojResolveAssemblyReference.cache b/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/x64/Release/ZERO_CHECK/ZERO_CHECK.vcxprojResolveAssemblyReference.cache new file mode 100644 index 0000000..368dff8 Binary files /dev/null and b/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/x64/Release/ZERO_CHECK/ZERO_CHECK.vcxprojResolveAssemblyReference.cache differ diff --git a/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/x64/Release/ZERO_CHECK/custombuild.command.1.tlog b/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/x64/Release/ZERO_CHECK/custombuild.command.1.tlog new file mode 100644 index 0000000..3d98eb0 Binary files /dev/null and b/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/x64/Release/ZERO_CHECK/custombuild.command.1.tlog differ diff --git a/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/x64/Release/ZERO_CHECK/custombuild.read.1.tlog b/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/x64/Release/ZERO_CHECK/custombuild.read.1.tlog new file mode 100644 index 0000000..8ef3c09 Binary files /dev/null and b/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/x64/Release/ZERO_CHECK/custombuild.read.1.tlog differ diff --git a/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/x64/Release/ZERO_CHECK/custombuild.write.1.tlog b/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/x64/Release/ZERO_CHECK/custombuild.write.1.tlog new file mode 100644 index 0000000..5e4c98c Binary files /dev/null and b/suitesparse/test_package/build/8caf9177abcac060b9a1d922dc1cef659dbe50b6/x64/Release/ZERO_CHECK/custombuild.write.1.tlog differ diff --git a/suitesparse/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeCache.txt b/suitesparse/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeCache.txt new file mode 100644 index 0000000..d6501e6 --- /dev/null +++ b/suitesparse/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeCache.txt @@ -0,0 +1,351 @@ +# This is the CMakeCache file. +# For build in directory: /mnt/c/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/aadcc2c40dab68a95374017995be48233063b305 +# It was generated by CMake: /usr/bin/cmake +# You can edit this file to change values found and used by cmake. +# If you do not want to change any of the values, simply exit the editor. +# If you do want to change a value, simply edit, save, and exit the editor. +# The syntax for the file is as follows: +# KEY:TYPE=VALUE +# KEY is the name of a variable in the cache. +# TYPE is a hint to GUIs for the type of VALUE, DO NOT EDIT TYPE!. +# VALUE is the current value for the KEY. + +######################## +# EXTERNAL cache entries +######################## + +//Path to a program. +CMAKE_AR:FILEPATH=/usr/bin/ar + +//For backwards compatibility, what version of CMake commands and +// syntax should this version of CMake try to support. +CMAKE_BACKWARDS_COMPATIBILITY:STRING=2.4 + +//Choose the type of build, options are: None(CMAKE_CXX_FLAGS or +// CMAKE_C_FLAGS used) 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++ + +//Flags used by the compiler during all build types. +CMAKE_CXX_FLAGS:STRING= + +//Flags used by the compiler during debug builds. +CMAKE_CXX_FLAGS_DEBUG:STRING=-g + +//Flags used by the compiler during release builds for minimum +// size. +CMAKE_CXX_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG + +//Flags used by the compiler during release builds. +CMAKE_CXX_FLAGS_RELEASE:STRING=-O3 -DNDEBUG + +//Flags used by the compiler during release builds with debug info. +CMAKE_CXX_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG + +//C compiler +CMAKE_C_COMPILER:FILEPATH=/usr/bin/cc + +//Flags used by the compiler during all build types. +CMAKE_C_FLAGS:STRING= + +//Flags used by the compiler during debug builds. +CMAKE_C_FLAGS_DEBUG:STRING=-g + +//Flags used by the compiler during release builds for minimum +// size. +CMAKE_C_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG + +//Flags used by the compiler during release builds. +CMAKE_C_FLAGS_RELEASE:STRING=-O3 -DNDEBUG + +//Flags used by the compiler during release builds with debug info. +CMAKE_C_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG + +//Flags used by the linker. +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 release minsize 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 Release with Debug Info builds. +CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//Enable/Disable output of compile commands during generation. +CMAKE_EXPORT_COMPILE_COMMANDS:BOOL=OFF + +//Install path prefix, prepended onto install directories. +CMAKE_INSTALL_PREFIX:PATH=/usr/local + +//Path to a program. +CMAKE_LINKER:FILEPATH=/usr/bin/ld + +//Path to a program. +CMAKE_MAKE_PROGRAM:FILEPATH=/usr/bin/make + +//Flags used by the linker during the creation of modules. +CMAKE_MODULE_LINKER_FLAGS:STRING= + +//Flags used by the linker during debug builds. +CMAKE_MODULE_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during release minsize builds. +CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during release builds. +CMAKE_MODULE_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during Release with Debug Info 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_NAME:STATIC=SuitesparseTest + +//Path to a program. +CMAKE_RANLIB:FILEPATH=/usr/bin/ranlib + +//Flags used by the linker during the creation of dll's. +CMAKE_SHARED_LINKER_FLAGS:STRING= + +//Flags used by the linker during debug builds. +CMAKE_SHARED_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during release minsize builds. +CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during release builds. +CMAKE_SHARED_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during Release with Debug Info 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. +CMAKE_STATIC_LINKER_FLAGS:STRING= + +//Flags used by the linker during debug builds. +CMAKE_STATIC_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during release minsize builds. +CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during release builds. +CMAKE_STATIC_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during Release with Debug Info 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 + +//No help, variable specified on the command line. +CONAN_COMPILER:UNINITIALIZED=gcc + +//No help, variable specified on the command line. +CONAN_COMPILER_VERSION:UNINITIALIZED=5.4 + +//No help, variable specified on the command line. +CONAN_CXX_FLAGS:UNINITIALIZED=-m64 + +//No help, variable specified on the command line. +CONAN_C_FLAGS:UNINITIALIZED=-m64 + +//No help, variable specified on the command line. +CONAN_EXPORTED:UNINITIALIZED=1 + +//No help, variable specified on the command line. +CONAN_LIBCXX:UNINITIALIZED=libstdc++ + +//No help, variable specified on the command line. +CONAN_SHARED_LINKER_FLAGS:UNINITIALIZED=-m64 + +//Single output directory for building all executables. +EXECUTABLE_OUTPUT_PATH:PATH= + +//The directory containing a CMake configuration file for LAPACK. +LAPACK_DIR:PATH=LAPACK_DIR-NOTFOUND + +//Single output directory for building all libraries. +LIBRARY_OUTPUT_PATH:PATH= + +//The directory containing a CMake configuration file for SuiteSparse. +SuiteSparse_DIR:PATH=/home/tom/.conan/data/suitesparse/5164583/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/lib/cmake/suitesparse-4.5.0 + +//Value Computed by CMake +SuitesparseTest_BINARY_DIR:STATIC=/mnt/c/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/aadcc2c40dab68a95374017995be48233063b305 + +//Value Computed by CMake +SuitesparseTest_SOURCE_DIR:STATIC=/mnt/c/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/src + + +######################## +# INTERNAL cache entries +######################## + +//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=/mnt/c/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/aadcc2c40dab68a95374017995be48233063b305 +//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=5 +//Patch version of cmake used to create the current loaded cache +CMAKE_CACHE_PATCH_VERSION:INTERNAL=1 +//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_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_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 +//Whether to issue deprecation errors for macros and functions. +CMAKE_ERROR_DEPRECATED:INTERNAL=FALSE +//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 +//Name of generator platform. +CMAKE_GENERATOR_PLATFORM:INTERNAL= +//Name of generator toolset. +CMAKE_GENERATOR_TOOLSET:INTERNAL= +//Source directory with the top level CMakeLists.txt file for this +// project +CMAKE_HOME_DIRECTORY:INTERNAL=/mnt/c/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/src +//Install .so files without execute permission. +CMAKE_INSTALL_SO_NO_EXE: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=1 +//ADVANCED property for variable: CMAKE_OBJCOPY +CMAKE_OBJCOPY-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_OBJDUMP +CMAKE_OBJDUMP-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_RANLIB +CMAKE_RANLIB-ADVANCED:INTERNAL=1 +//Path to CMake installation. +CMAKE_ROOT:INTERNAL=/usr/share/cmake-3.5 +//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 +//Suppress errors that are meant for the author of the CMakeLists.txt +// files. +CMAKE_SUPPRESS_DEVELOPER_ERRORS:INTERNAL=TRUE +//Suppress Warnings that are meant for the author of the CMakeLists.txt +// files. +CMAKE_SUPPRESS_DEVELOPER_WARNINGS:INTERNAL=TRUE +//uname command +CMAKE_UNAME:INTERNAL=/bin/uname +//ADVANCED property for variable: CMAKE_VERBOSE_MAKEFILE +CMAKE_VERBOSE_MAKEFILE-ADVANCED:INTERNAL=1 +//Whether to issue warnings for deprecated functionality. +CMAKE_WARN_DEPRECATED:INTERNAL=FALSE + diff --git a/suitesparse/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/3.5.1/CMakeCCompiler.cmake b/suitesparse/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/3.5.1/CMakeCCompiler.cmake new file mode 100644 index 0000000..f40522e --- /dev/null +++ b/suitesparse/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/3.5.1/CMakeCCompiler.cmake @@ -0,0 +1,67 @@ +set(CMAKE_C_COMPILER "/usr/bin/cc") +set(CMAKE_C_COMPILER_ARG1 "") +set(CMAKE_C_COMPILER_ID "GNU") +set(CMAKE_C_COMPILER_VERSION "5.4.0") +set(CMAKE_C_COMPILER_WRAPPER "") +set(CMAKE_C_STANDARD_COMPUTED_DEFAULT "11") +set(CMAKE_C_COMPILE_FEATURES "c_function_prototypes;c_restrict;c_variadic_macros;c_static_assert") +set(CMAKE_C90_COMPILE_FEATURES "c_function_prototypes") +set(CMAKE_C99_COMPILE_FEATURES "c_restrict;c_variadic_macros") +set(CMAKE_C11_COMPILE_FEATURES "c_static_assert") + +set(CMAKE_C_PLATFORM_ID "Linux") +set(CMAKE_C_SIMULATE_ID "") +set(CMAKE_C_SIMULATE_VERSION "") + +set(CMAKE_AR "/usr/bin/ar") +set(CMAKE_RANLIB "/usr/bin/ranlib") +set(CMAKE_LINKER "/usr/bin/ld") +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 "x86_64-linux-gnu") + +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 "x86_64-linux-gnu") +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_LINK_LIBRARIES "c") +set(CMAKE_C_IMPLICIT_LINK_DIRECTORIES "/usr/lib/gcc/x86_64-linux-gnu/5;/usr/lib/x86_64-linux-gnu;/usr/lib;/lib/x86_64-linux-gnu;/lib") +set(CMAKE_C_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "") diff --git a/suitesparse/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/3.5.1/CMakeCXXCompiler.cmake b/suitesparse/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/3.5.1/CMakeCXXCompiler.cmake new file mode 100644 index 0000000..013ee92 --- /dev/null +++ b/suitesparse/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/3.5.1/CMakeCXXCompiler.cmake @@ -0,0 +1,68 @@ +set(CMAKE_CXX_COMPILER "/usr/bin/c++") +set(CMAKE_CXX_COMPILER_ARG1 "") +set(CMAKE_CXX_COMPILER_ID "GNU") +set(CMAKE_CXX_COMPILER_VERSION "5.4.0") +set(CMAKE_CXX_COMPILER_WRAPPER "") +set(CMAKE_CXX_STANDARD_COMPUTED_DEFAULT "98") +set(CMAKE_CXX_COMPILE_FEATURES "cxx_template_template_parameters;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_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_CXX98_COMPILE_FEATURES "cxx_template_template_parameters") +set(CMAKE_CXX11_COMPILE_FEATURES "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_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_CXX_PLATFORM_ID "Linux") +set(CMAKE_CXX_SIMULATE_ID "") +set(CMAKE_CXX_SIMULATE_VERSION "") + +set(CMAKE_AR "/usr/bin/ar") +set(CMAKE_RANLIB "/usr/bin/ranlib") +set(CMAKE_LINKER "/usr/bin/ld") +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_IGNORE_EXTENSIONS inl;h;hpp;HPP;H;o;O;obj;OBJ;def;DEF;rc;RC) +set(CMAKE_CXX_SOURCE_FILE_EXTENSIONS C;M;c++;cc;cpp;cxx;mm;CPP) +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 "x86_64-linux-gnu") + +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 "x86_64-linux-gnu") +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_LINK_LIBRARIES "stdc++;m;c") +set(CMAKE_CXX_IMPLICIT_LINK_DIRECTORIES "/usr/lib/gcc/x86_64-linux-gnu/5;/usr/lib/x86_64-linux-gnu;/usr/lib;/lib/x86_64-linux-gnu;/lib") +set(CMAKE_CXX_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "") diff --git a/suitesparse/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/3.5.1/CMakeDetermineCompilerABI_C.bin b/suitesparse/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/3.5.1/CMakeDetermineCompilerABI_C.bin new file mode 100644 index 0000000..5bf96b2 Binary files /dev/null and b/suitesparse/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/3.5.1/CMakeDetermineCompilerABI_C.bin differ diff --git a/suitesparse/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/3.5.1/CMakeDetermineCompilerABI_CXX.bin b/suitesparse/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/3.5.1/CMakeDetermineCompilerABI_CXX.bin new file mode 100644 index 0000000..871d1fb Binary files /dev/null and b/suitesparse/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/3.5.1/CMakeDetermineCompilerABI_CXX.bin differ diff --git a/suitesparse/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/3.5.1/CMakeSystem.cmake b/suitesparse/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/3.5.1/CMakeSystem.cmake new file mode 100644 index 0000000..8476695 --- /dev/null +++ b/suitesparse/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/3.5.1/CMakeSystem.cmake @@ -0,0 +1,15 @@ +set(CMAKE_HOST_SYSTEM "Linux-4.4.0-43-Microsoft") +set(CMAKE_HOST_SYSTEM_NAME "Linux") +set(CMAKE_HOST_SYSTEM_VERSION "4.4.0-43-Microsoft") +set(CMAKE_HOST_SYSTEM_PROCESSOR "x86_64") + + + +set(CMAKE_SYSTEM "Linux-4.4.0-43-Microsoft") +set(CMAKE_SYSTEM_NAME "Linux") +set(CMAKE_SYSTEM_VERSION "4.4.0-43-Microsoft") +set(CMAKE_SYSTEM_PROCESSOR "x86_64") + +set(CMAKE_CROSSCOMPILING "FALSE") + +set(CMAKE_SYSTEM_LOADED 1) diff --git a/suitesparse/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/3.5.1/CompilerIdC/CMakeCCompilerId.c b/suitesparse/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/3.5.1/CompilerIdC/CMakeCCompilerId.c new file mode 100644 index 0000000..570a15e --- /dev/null +++ b/suitesparse/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/3.5.1/CompilerIdC/CMakeCCompilerId.c @@ -0,0 +1,544 @@ +#ifdef __cplusplus +# error "A C++ compiler has been selected for C." +#endif + +#if defined(__18CXX) +# define ID_VOID_MAIN +#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 + /* __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 + +#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(__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(__TINYC__) +# define COMPILER_ID "TinyCC" + +#elif defined(__SCO_VERSION__) +# define COMPILER_ID "SCO" + +#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__) +# 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" + +#elif defined(__ARMCC_VERSION) +# 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(SDCC) +# define COMPILER_ID "SDCC" + /* SDCC = VRP */ +# define COMPILER_VERSION_MAJOR DEC(SDCC/100) +# define COMPILER_VERSION_MINOR DEC(SDCC/10 % 10) +# define COMPILER_VERSION_PATCH DEC(SDCC % 10) + +#elif defined(_SGI_COMPILER_VERSION) || defined(_COMPILER_VERSION) +# define COMPILER_ID "MIPSpro" +# if defined(_SGI_COMPILER_VERSION) + /* _SGI_COMPILER_VERSION = VRP */ +# define COMPILER_VERSION_MAJOR DEC(_SGI_COMPILER_VERSION/100) +# define COMPILER_VERSION_MINOR DEC(_SGI_COMPILER_VERSION/10 % 10) +# define COMPILER_VERSION_PATCH DEC(_SGI_COMPILER_VERSION % 10) +# else + /* _COMPILER_VERSION = VRP */ +# define COMPILER_VERSION_MAJOR DEC(_COMPILER_VERSION/100) +# define COMPILER_VERSION_MINOR DEC(_COMPILER_VERSION/10 % 10) +# define COMPILER_VERSION_PATCH DEC(_COMPILER_VERSION % 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(__sgi) +# define COMPILER_ID "MIPSpro" + +#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(__sgi) || defined(__sgi__) || defined(_SGI) +# define PLATFORM_ID "IRIX" + +#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 + +#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_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 + +#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 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 "]"; + + + + +const char* info_language_dialect_default = "INFO" ":" "dialect_default[" +#if !defined(__STDC_VERSION__) + "90" +#elif __STDC_VERSION__ >= 201000L + "11" +#elif __STDC_VERSION__ >= 199901L + "99" +#else +#endif +"]"; + +/*--------------------------------------------------------------------------*/ + +#ifdef ID_VOID_MAIN +void main() {} +#else +int main(int argc, char* argv[]) +{ + 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 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 diff --git a/suitesparse/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/3.5.1/CompilerIdC/a.out b/suitesparse/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/3.5.1/CompilerIdC/a.out new file mode 100644 index 0000000..ec0b632 Binary files /dev/null and b/suitesparse/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/3.5.1/CompilerIdC/a.out differ diff --git a/suitesparse/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/3.5.1/CompilerIdCXX/CMakeCXXCompilerId.cpp b/suitesparse/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/3.5.1/CompilerIdCXX/CMakeCXXCompilerId.cpp new file mode 100644 index 0000000..e6d8536 --- /dev/null +++ b/suitesparse/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/3.5.1/CompilerIdCXX/CMakeCXXCompilerId.cpp @@ -0,0 +1,533 @@ +/* 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 + /* __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 + +#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(__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(__SCO_VERSION__) +# define COMPILER_ID "SCO" + +#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__) +# 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" + +#elif defined(__ARMCC_VERSION) +# 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(_SGI_COMPILER_VERSION) || defined(_COMPILER_VERSION) +# define COMPILER_ID "MIPSpro" +# if defined(_SGI_COMPILER_VERSION) + /* _SGI_COMPILER_VERSION = VRP */ +# define COMPILER_VERSION_MAJOR DEC(_SGI_COMPILER_VERSION/100) +# define COMPILER_VERSION_MINOR DEC(_SGI_COMPILER_VERSION/10 % 10) +# define COMPILER_VERSION_PATCH DEC(_SGI_COMPILER_VERSION % 10) +# else + /* _COMPILER_VERSION = VRP */ +# define COMPILER_VERSION_MAJOR DEC(_COMPILER_VERSION/100) +# define COMPILER_VERSION_MINOR DEC(_COMPILER_VERSION/10 % 10) +# define COMPILER_VERSION_PATCH DEC(_COMPILER_VERSION % 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(__sgi) +# define COMPILER_ID "MIPSpro" + +#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(__sgi) || defined(__sgi__) || defined(_SGI) +# define PLATFORM_ID "IRIX" + +#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 + +#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_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 + +#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 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 "]"; + + + + +const char* info_language_dialect_default = "INFO" ":" "dialect_default[" +#if __cplusplus >= 201402L + "14" +#elif __cplusplus >= 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 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; +} diff --git a/suitesparse/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/3.5.1/CompilerIdCXX/a.out b/suitesparse/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/3.5.1/CompilerIdCXX/a.out new file mode 100644 index 0000000..f493287 Binary files /dev/null and b/suitesparse/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/3.5.1/CompilerIdCXX/a.out differ diff --git a/suitesparse/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/CMakeDirectoryInformation.cmake b/suitesparse/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/CMakeDirectoryInformation.cmake new file mode 100644 index 0000000..97f57e4 --- /dev/null +++ b/suitesparse/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/CMakeDirectoryInformation.cmake @@ -0,0 +1,16 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.5 + +# Relative path conversion top directories. +set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/mnt/c/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/src") +set(CMAKE_RELATIVE_PATH_TOP_BINARY "/mnt/c/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/aadcc2c40dab68a95374017995be48233063b305") + +# 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}) diff --git a/suitesparse/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/CMakeOutput.log b/suitesparse/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/CMakeOutput.log new file mode 100644 index 0000000..a04fe17 --- /dev/null +++ b/suitesparse/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/CMakeOutput.log @@ -0,0 +1,554 @@ +The system is: Linux - 4.4.0-43-Microsoft - 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 "/mnt/c/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/3.5.1/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 "/mnt/c/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/3.5.1/CompilerIdCXX/a.out" + +Determining if the C compiler works passed with the following output: +Change Dir: /mnt/c/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/CMakeTmp + +Run Build Command:"/usr/bin/make" "cmTC_cfd5a/fast" +/usr/bin/make -f CMakeFiles/cmTC_cfd5a.dir/build.make CMakeFiles/cmTC_cfd5a.dir/build +make[1]: Verzeichnis „/mnt/c/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/CMakeTmp“ wird betreten +Building C object CMakeFiles/cmTC_cfd5a.dir/testCCompiler.c.o +/usr/bin/cc -o CMakeFiles/cmTC_cfd5a.dir/testCCompiler.c.o -c /mnt/c/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/CMakeTmp/testCCompiler.c +Linking C executable cmTC_cfd5a +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_cfd5a.dir/link.txt --verbose=1 +/usr/bin/cc CMakeFiles/cmTC_cfd5a.dir/testCCompiler.c.o -o cmTC_cfd5a -rdynamic +make[1]: Verzeichnis „/mnt/c/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/CMakeTmp“ wird verlassen + + +Detecting C compiler ABI info compiled with the following output: +Change Dir: /mnt/c/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/CMakeTmp + +Run Build Command:"/usr/bin/make" "cmTC_e3449/fast" +/usr/bin/make -f CMakeFiles/cmTC_e3449.dir/build.make CMakeFiles/cmTC_e3449.dir/build +make[1]: Verzeichnis „/mnt/c/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/CMakeTmp“ wird betreten +Building C object CMakeFiles/cmTC_e3449.dir/CMakeCCompilerABI.c.o +/usr/bin/cc -o CMakeFiles/cmTC_e3449.dir/CMakeCCompilerABI.c.o -c /usr/share/cmake-3.5/Modules/CMakeCCompilerABI.c +Linking C executable cmTC_e3449 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_e3449.dir/link.txt --verbose=1 +/usr/bin/cc -v CMakeFiles/cmTC_e3449.dir/CMakeCCompilerABI.c.o -o cmTC_e3449 -rdynamic +Using built-in specs. +COLLECT_GCC=/usr/bin/cc +COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/5/lto-wrapper +Target: x86_64-linux-gnu +Configured with: ../src/configure -v --with-pkgversion='Ubuntu 5.4.0-6ubuntu1~16.04.5' --with-bugurl=file:///usr/share/doc/gcc-5/README.Bugs --enable-languages=c,ada,c++,java,go,d,fortran,objc,obj-c++ --prefix=/usr --program-suffix=-5 --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --with-sysroot=/ --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-libmpx --enable-plugin --with-system-zlib --disable-browser-plugin --enable-java-awt=gtk --enable-gtk-cairo --with-java-home=/usr/lib/jvm/java-1.5.0-gcj-5-amd64/jre --enable-java-home --with-jvm-root-dir=/usr/lib/jvm/java-1.5.0-gcj-5-amd64 --with-jvm-jar-dir=/usr/lib/jvm-exports/java-1.5.0-gcj-5-amd64 --with-arch-directory=amd64 --with-ecj-jar=/usr/share/java/eclipse-ecj.jar --enable-objc-gc --enable-multiarch --disable-werror --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu +Thread model: posix +gcc version 5.4.0 20160609 (Ubuntu 5.4.0-6ubuntu1~16.04.5) +COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/5/:/usr/lib/gcc/x86_64-linux-gnu/5/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/5/:/usr/lib/gcc/x86_64-linux-gnu/ +LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/5/:/usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/5/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/5/../../../:/lib/:/usr/lib/ +COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_e3449' '-rdynamic' '-mtune=generic' '-march=x86-64' + /usr/lib/gcc/x86_64-linux-gnu/5/collect2 -plugin /usr/lib/gcc/x86_64-linux-gnu/5/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/5/lto-wrapper -plugin-opt=-fresolution=/tmp/ccwimIux.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 --sysroot=/ --build-id --eh-frame-hdr -m elf_x86_64 --hash-style=gnu --as-needed -export-dynamic -dynamic-linker /lib64/ld-linux-x86-64.so.2 -z relro -o cmTC_e3449 /usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/crt1.o /usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/5/crtbegin.o -L/usr/lib/gcc/x86_64-linux-gnu/5 -L/usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/5/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/5/../../.. CMakeFiles/cmTC_e3449.dir/CMakeCCompilerABI.c.o -lgcc --as-needed -lgcc_s --no-as-needed -lc -lgcc --as-needed -lgcc_s --no-as-needed /usr/lib/gcc/x86_64-linux-gnu/5/crtend.o /usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/crtn.o +make[1]: Verzeichnis „/mnt/c/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/CMakeTmp“ wird verlassen + + +Parsed C implicit link information from above output: + link line regex: [^( *|.*[/\])(ld|([^/\]+-)?ld|collect2)[^/\]*( |$)] + ignore line: [Change Dir: /mnt/c/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/CMakeTmp] + ignore line: [] + ignore line: [Run Build Command:"/usr/bin/make" "cmTC_e3449/fast"] + ignore line: [/usr/bin/make -f CMakeFiles/cmTC_e3449.dir/build.make CMakeFiles/cmTC_e3449.dir/build] + ignore line: [make[1]: Verzeichnis „/mnt/c/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/CMakeTmp“ wird betreten] + ignore line: [Building C object CMakeFiles/cmTC_e3449.dir/CMakeCCompilerABI.c.o] + ignore line: [/usr/bin/cc -o CMakeFiles/cmTC_e3449.dir/CMakeCCompilerABI.c.o -c /usr/share/cmake-3.5/Modules/CMakeCCompilerABI.c] + ignore line: [Linking C executable cmTC_e3449] + ignore line: [/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_e3449.dir/link.txt --verbose=1] + ignore line: [/usr/bin/cc -v CMakeFiles/cmTC_e3449.dir/CMakeCCompilerABI.c.o -o cmTC_e3449 -rdynamic ] + ignore line: [Using built-in specs.] + ignore line: [COLLECT_GCC=/usr/bin/cc] + ignore line: [COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/5/lto-wrapper] + ignore line: [Target: x86_64-linux-gnu] + ignore line: [Configured with: ../src/configure -v --with-pkgversion='Ubuntu 5.4.0-6ubuntu1~16.04.5' --with-bugurl=file:///usr/share/doc/gcc-5/README.Bugs --enable-languages=c,ada,c++,java,go,d,fortran,objc,obj-c++ --prefix=/usr --program-suffix=-5 --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --with-sysroot=/ --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-libmpx --enable-plugin --with-system-zlib --disable-browser-plugin --enable-java-awt=gtk --enable-gtk-cairo --with-java-home=/usr/lib/jvm/java-1.5.0-gcj-5-amd64/jre --enable-java-home --with-jvm-root-dir=/usr/lib/jvm/java-1.5.0-gcj-5-amd64 --with-jvm-jar-dir=/usr/lib/jvm-exports/java-1.5.0-gcj-5-amd64 --with-arch-directory=amd64 --with-ecj-jar=/usr/share/java/eclipse-ecj.jar --enable-objc-gc --enable-multiarch --disable-werror --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu] + ignore line: [Thread model: posix] + ignore line: [gcc version 5.4.0 20160609 (Ubuntu 5.4.0-6ubuntu1~16.04.5) ] + ignore line: [COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/5/:/usr/lib/gcc/x86_64-linux-gnu/5/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/5/:/usr/lib/gcc/x86_64-linux-gnu/] + ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/5/:/usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/5/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/5/../../../:/lib/:/usr/lib/] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_e3449' '-rdynamic' '-mtune=generic' '-march=x86-64'] + link line: [ /usr/lib/gcc/x86_64-linux-gnu/5/collect2 -plugin /usr/lib/gcc/x86_64-linux-gnu/5/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/5/lto-wrapper -plugin-opt=-fresolution=/tmp/ccwimIux.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 --sysroot=/ --build-id --eh-frame-hdr -m elf_x86_64 --hash-style=gnu --as-needed -export-dynamic -dynamic-linker /lib64/ld-linux-x86-64.so.2 -z relro -o cmTC_e3449 /usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/crt1.o /usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/5/crtbegin.o -L/usr/lib/gcc/x86_64-linux-gnu/5 -L/usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/5/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/5/../../.. CMakeFiles/cmTC_e3449.dir/CMakeCCompilerABI.c.o -lgcc --as-needed -lgcc_s --no-as-needed -lc -lgcc --as-needed -lgcc_s --no-as-needed /usr/lib/gcc/x86_64-linux-gnu/5/crtend.o /usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/crtn.o] + arg [/usr/lib/gcc/x86_64-linux-gnu/5/collect2] ==> ignore + arg [-plugin] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/5/liblto_plugin.so] ==> ignore + arg [-plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/5/lto-wrapper] ==> ignore + arg [-plugin-opt=-fresolution=/tmp/ccwimIux.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 [--sysroot=/] ==> ignore + arg [--build-id] ==> ignore + arg [--eh-frame-hdr] ==> ignore + arg [-m] ==> ignore + arg [elf_x86_64] ==> ignore + arg [--hash-style=gnu] ==> ignore + arg [--as-needed] ==> ignore + arg [-export-dynamic] ==> ignore + arg [-dynamic-linker] ==> ignore + arg [/lib64/ld-linux-x86-64.so.2] ==> ignore + arg [-zrelro] ==> ignore + arg [-o] ==> ignore + arg [cmTC_e3449] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/crt1.o] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/crti.o] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/5/crtbegin.o] ==> ignore + arg [-L/usr/lib/gcc/x86_64-linux-gnu/5] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/5] + arg [-L/usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu] + arg [-L/usr/lib/gcc/x86_64-linux-gnu/5/../../../../lib] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/5/../../../../lib] + arg [-L/lib/x86_64-linux-gnu] ==> dir [/lib/x86_64-linux-gnu] + arg [-L/lib/../lib] ==> dir [/lib/../lib] + arg [-L/usr/lib/x86_64-linux-gnu] ==> dir [/usr/lib/x86_64-linux-gnu] + arg [-L/usr/lib/../lib] ==> dir [/usr/lib/../lib] + arg [-L/usr/lib/gcc/x86_64-linux-gnu/5/../../..] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/5/../../..] + arg [CMakeFiles/cmTC_e3449.dir/CMakeCCompilerABI.c.o] ==> ignore + arg [-lgcc] ==> lib [gcc] + arg [--as-needed] ==> ignore + arg [-lgcc_s] ==> lib [gcc_s] + arg [--no-as-needed] ==> ignore + arg [-lc] ==> lib [c] + arg [-lgcc] ==> lib [gcc] + arg [--as-needed] ==> ignore + arg [-lgcc_s] ==> lib [gcc_s] + arg [--no-as-needed] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/5/crtend.o] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/crtn.o] ==> ignore + remove lib [gcc] + remove lib [gcc_s] + remove lib [gcc] + remove lib [gcc_s] + collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/5] ==> [/usr/lib/gcc/x86_64-linux-gnu/5] + collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu] ==> [/usr/lib/x86_64-linux-gnu] + collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/5/../../../../lib] ==> [/usr/lib] + collapse library dir [/lib/x86_64-linux-gnu] ==> [/lib/x86_64-linux-gnu] + collapse library dir [/lib/../lib] ==> [/lib] + collapse library dir [/usr/lib/x86_64-linux-gnu] ==> [/usr/lib/x86_64-linux-gnu] + collapse library dir [/usr/lib/../lib] ==> [/usr/lib] + collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/5/../../..] ==> [/usr/lib] + implicit libs: [c] + implicit dirs: [/usr/lib/gcc/x86_64-linux-gnu/5;/usr/lib/x86_64-linux-gnu;/usr/lib;/lib/x86_64-linux-gnu;/lib] + implicit fwks: [] + + + + +Detecting C [-std=c11] compiler features compiled with the following output: +Change Dir: /mnt/c/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/CMakeTmp + +Run Build Command:"/usr/bin/make" "cmTC_e007c/fast" +/usr/bin/make -f CMakeFiles/cmTC_e007c.dir/build.make CMakeFiles/cmTC_e007c.dir/build +make[1]: Verzeichnis „/mnt/c/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/CMakeTmp“ wird betreten +Building C object CMakeFiles/cmTC_e007c.dir/feature_tests.c.o +/usr/bin/cc -std=c11 -o CMakeFiles/cmTC_e007c.dir/feature_tests.c.o -c /mnt/c/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/feature_tests.c +Linking C executable cmTC_e007c +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_e007c.dir/link.txt --verbose=1 +/usr/bin/cc CMakeFiles/cmTC_e007c.dir/feature_tests.c.o -o cmTC_e007c -rdynamic +make[1]: Verzeichnis „/mnt/c/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/CMakeTmp“ wird verlassen + + + Feature record: C_FEATURE:1c_function_prototypes + Feature record: C_FEATURE:1c_restrict + Feature record: C_FEATURE:1c_static_assert + Feature record: C_FEATURE:1c_variadic_macros + + +Detecting C [-std=c99] compiler features compiled with the following output: +Change Dir: /mnt/c/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/CMakeTmp + +Run Build Command:"/usr/bin/make" "cmTC_690f4/fast" +/usr/bin/make -f CMakeFiles/cmTC_690f4.dir/build.make CMakeFiles/cmTC_690f4.dir/build +make[1]: Verzeichnis „/mnt/c/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/CMakeTmp“ wird betreten +Building C object CMakeFiles/cmTC_690f4.dir/feature_tests.c.o +/usr/bin/cc -std=c99 -o CMakeFiles/cmTC_690f4.dir/feature_tests.c.o -c /mnt/c/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/feature_tests.c +Linking C executable cmTC_690f4 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_690f4.dir/link.txt --verbose=1 +/usr/bin/cc CMakeFiles/cmTC_690f4.dir/feature_tests.c.o -o cmTC_690f4 -rdynamic +make[1]: Verzeichnis „/mnt/c/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/CMakeTmp“ wird verlassen + + + Feature record: C_FEATURE:1c_function_prototypes + Feature record: C_FEATURE:1c_restrict + Feature record: C_FEATURE:0c_static_assert + Feature record: C_FEATURE:1c_variadic_macros + + +Detecting C [-std=c90] compiler features compiled with the following output: +Change Dir: /mnt/c/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/CMakeTmp + +Run Build Command:"/usr/bin/make" "cmTC_b74dd/fast" +/usr/bin/make -f CMakeFiles/cmTC_b74dd.dir/build.make CMakeFiles/cmTC_b74dd.dir/build +make[1]: Verzeichnis „/mnt/c/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/CMakeTmp“ wird betreten +Building C object CMakeFiles/cmTC_b74dd.dir/feature_tests.c.o +/usr/bin/cc -std=c90 -o CMakeFiles/cmTC_b74dd.dir/feature_tests.c.o -c /mnt/c/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/feature_tests.c +Linking C executable cmTC_b74dd +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_b74dd.dir/link.txt --verbose=1 +/usr/bin/cc CMakeFiles/cmTC_b74dd.dir/feature_tests.c.o -o cmTC_b74dd -rdynamic +make[1]: Verzeichnis „/mnt/c/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/CMakeTmp“ wird verlassen + + + Feature record: C_FEATURE:1c_function_prototypes + Feature record: C_FEATURE:0c_restrict + Feature record: C_FEATURE:0c_static_assert + Feature record: C_FEATURE:0c_variadic_macros +Determining if the CXX compiler works passed with the following output: +Change Dir: /mnt/c/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/CMakeTmp + +Run Build Command:"/usr/bin/make" "cmTC_77ae3/fast" +/usr/bin/make -f CMakeFiles/cmTC_77ae3.dir/build.make CMakeFiles/cmTC_77ae3.dir/build +make[1]: Verzeichnis „/mnt/c/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/CMakeTmp“ wird betreten +Building CXX object CMakeFiles/cmTC_77ae3.dir/testCXXCompiler.cxx.o +/usr/bin/c++ -o CMakeFiles/cmTC_77ae3.dir/testCXXCompiler.cxx.o -c /mnt/c/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/CMakeTmp/testCXXCompiler.cxx +Linking CXX executable cmTC_77ae3 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_77ae3.dir/link.txt --verbose=1 +/usr/bin/c++ CMakeFiles/cmTC_77ae3.dir/testCXXCompiler.cxx.o -o cmTC_77ae3 -rdynamic +make[1]: Verzeichnis „/mnt/c/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/CMakeTmp“ wird verlassen + + +Detecting CXX compiler ABI info compiled with the following output: +Change Dir: /mnt/c/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/CMakeTmp + +Run Build Command:"/usr/bin/make" "cmTC_0ca19/fast" +/usr/bin/make -f CMakeFiles/cmTC_0ca19.dir/build.make CMakeFiles/cmTC_0ca19.dir/build +make[1]: Verzeichnis „/mnt/c/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/CMakeTmp“ wird betreten +Building CXX object CMakeFiles/cmTC_0ca19.dir/CMakeCXXCompilerABI.cpp.o +/usr/bin/c++ -o CMakeFiles/cmTC_0ca19.dir/CMakeCXXCompilerABI.cpp.o -c /usr/share/cmake-3.5/Modules/CMakeCXXCompilerABI.cpp +Linking CXX executable cmTC_0ca19 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_0ca19.dir/link.txt --verbose=1 +/usr/bin/c++ -v CMakeFiles/cmTC_0ca19.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_0ca19 -rdynamic +Using built-in specs. +COLLECT_GCC=/usr/bin/c++ +COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/5/lto-wrapper +Target: x86_64-linux-gnu +Configured with: ../src/configure -v --with-pkgversion='Ubuntu 5.4.0-6ubuntu1~16.04.5' --with-bugurl=file:///usr/share/doc/gcc-5/README.Bugs --enable-languages=c,ada,c++,java,go,d,fortran,objc,obj-c++ --prefix=/usr --program-suffix=-5 --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --with-sysroot=/ --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-libmpx --enable-plugin --with-system-zlib --disable-browser-plugin --enable-java-awt=gtk --enable-gtk-cairo --with-java-home=/usr/lib/jvm/java-1.5.0-gcj-5-amd64/jre --enable-java-home --with-jvm-root-dir=/usr/lib/jvm/java-1.5.0-gcj-5-amd64 --with-jvm-jar-dir=/usr/lib/jvm-exports/java-1.5.0-gcj-5-amd64 --with-arch-directory=amd64 --with-ecj-jar=/usr/share/java/eclipse-ecj.jar --enable-objc-gc --enable-multiarch --disable-werror --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu +Thread model: posix +gcc version 5.4.0 20160609 (Ubuntu 5.4.0-6ubuntu1~16.04.5) +COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/5/:/usr/lib/gcc/x86_64-linux-gnu/5/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/5/:/usr/lib/gcc/x86_64-linux-gnu/ +LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/5/:/usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/5/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/5/../../../:/lib/:/usr/lib/ +COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_0ca19' '-rdynamic' '-shared-libgcc' '-mtune=generic' '-march=x86-64' + /usr/lib/gcc/x86_64-linux-gnu/5/collect2 -plugin /usr/lib/gcc/x86_64-linux-gnu/5/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/5/lto-wrapper -plugin-opt=-fresolution=/tmp/ccSpnp3L.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 --sysroot=/ --build-id --eh-frame-hdr -m elf_x86_64 --hash-style=gnu --as-needed -export-dynamic -dynamic-linker /lib64/ld-linux-x86-64.so.2 -z relro -o cmTC_0ca19 /usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/crt1.o /usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/5/crtbegin.o -L/usr/lib/gcc/x86_64-linux-gnu/5 -L/usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/5/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/5/../../.. CMakeFiles/cmTC_0ca19.dir/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm -lgcc_s -lgcc -lc -lgcc_s -lgcc /usr/lib/gcc/x86_64-linux-gnu/5/crtend.o /usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/crtn.o +make[1]: Verzeichnis „/mnt/c/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/CMakeTmp“ wird verlassen + + +Parsed CXX implicit link information from above output: + link line regex: [^( *|.*[/\])(ld|([^/\]+-)?ld|collect2)[^/\]*( |$)] + ignore line: [Change Dir: /mnt/c/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/CMakeTmp] + ignore line: [] + ignore line: [Run Build Command:"/usr/bin/make" "cmTC_0ca19/fast"] + ignore line: [/usr/bin/make -f CMakeFiles/cmTC_0ca19.dir/build.make CMakeFiles/cmTC_0ca19.dir/build] + ignore line: [make[1]: Verzeichnis „/mnt/c/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/CMakeTmp“ wird betreten] + ignore line: [Building CXX object CMakeFiles/cmTC_0ca19.dir/CMakeCXXCompilerABI.cpp.o] + ignore line: [/usr/bin/c++ -o CMakeFiles/cmTC_0ca19.dir/CMakeCXXCompilerABI.cpp.o -c /usr/share/cmake-3.5/Modules/CMakeCXXCompilerABI.cpp] + ignore line: [Linking CXX executable cmTC_0ca19] + ignore line: [/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_0ca19.dir/link.txt --verbose=1] + ignore line: [/usr/bin/c++ -v CMakeFiles/cmTC_0ca19.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_0ca19 -rdynamic ] + ignore line: [Using built-in specs.] + ignore line: [COLLECT_GCC=/usr/bin/c++] + ignore line: [COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/5/lto-wrapper] + ignore line: [Target: x86_64-linux-gnu] + ignore line: [Configured with: ../src/configure -v --with-pkgversion='Ubuntu 5.4.0-6ubuntu1~16.04.5' --with-bugurl=file:///usr/share/doc/gcc-5/README.Bugs --enable-languages=c,ada,c++,java,go,d,fortran,objc,obj-c++ --prefix=/usr --program-suffix=-5 --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --with-sysroot=/ --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-libmpx --enable-plugin --with-system-zlib --disable-browser-plugin --enable-java-awt=gtk --enable-gtk-cairo --with-java-home=/usr/lib/jvm/java-1.5.0-gcj-5-amd64/jre --enable-java-home --with-jvm-root-dir=/usr/lib/jvm/java-1.5.0-gcj-5-amd64 --with-jvm-jar-dir=/usr/lib/jvm-exports/java-1.5.0-gcj-5-amd64 --with-arch-directory=amd64 --with-ecj-jar=/usr/share/java/eclipse-ecj.jar --enable-objc-gc --enable-multiarch --disable-werror --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu] + ignore line: [Thread model: posix] + ignore line: [gcc version 5.4.0 20160609 (Ubuntu 5.4.0-6ubuntu1~16.04.5) ] + ignore line: [COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/5/:/usr/lib/gcc/x86_64-linux-gnu/5/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/5/:/usr/lib/gcc/x86_64-linux-gnu/] + ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/5/:/usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/5/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/5/../../../:/lib/:/usr/lib/] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_0ca19' '-rdynamic' '-shared-libgcc' '-mtune=generic' '-march=x86-64'] + link line: [ /usr/lib/gcc/x86_64-linux-gnu/5/collect2 -plugin /usr/lib/gcc/x86_64-linux-gnu/5/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/5/lto-wrapper -plugin-opt=-fresolution=/tmp/ccSpnp3L.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 --sysroot=/ --build-id --eh-frame-hdr -m elf_x86_64 --hash-style=gnu --as-needed -export-dynamic -dynamic-linker /lib64/ld-linux-x86-64.so.2 -z relro -o cmTC_0ca19 /usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/crt1.o /usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/5/crtbegin.o -L/usr/lib/gcc/x86_64-linux-gnu/5 -L/usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/5/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/5/../../.. CMakeFiles/cmTC_0ca19.dir/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm -lgcc_s -lgcc -lc -lgcc_s -lgcc /usr/lib/gcc/x86_64-linux-gnu/5/crtend.o /usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/crtn.o] + arg [/usr/lib/gcc/x86_64-linux-gnu/5/collect2] ==> ignore + arg [-plugin] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/5/liblto_plugin.so] ==> ignore + arg [-plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/5/lto-wrapper] ==> ignore + arg [-plugin-opt=-fresolution=/tmp/ccSpnp3L.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 [--sysroot=/] ==> ignore + arg [--build-id] ==> ignore + arg [--eh-frame-hdr] ==> ignore + arg [-m] ==> ignore + arg [elf_x86_64] ==> ignore + arg [--hash-style=gnu] ==> ignore + arg [--as-needed] ==> ignore + arg [-export-dynamic] ==> ignore + arg [-dynamic-linker] ==> ignore + arg [/lib64/ld-linux-x86-64.so.2] ==> ignore + arg [-zrelro] ==> ignore + arg [-o] ==> ignore + arg [cmTC_0ca19] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/crt1.o] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/crti.o] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/5/crtbegin.o] ==> ignore + arg [-L/usr/lib/gcc/x86_64-linux-gnu/5] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/5] + arg [-L/usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu] + arg [-L/usr/lib/gcc/x86_64-linux-gnu/5/../../../../lib] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/5/../../../../lib] + arg [-L/lib/x86_64-linux-gnu] ==> dir [/lib/x86_64-linux-gnu] + arg [-L/lib/../lib] ==> dir [/lib/../lib] + arg [-L/usr/lib/x86_64-linux-gnu] ==> dir [/usr/lib/x86_64-linux-gnu] + arg [-L/usr/lib/../lib] ==> dir [/usr/lib/../lib] + arg [-L/usr/lib/gcc/x86_64-linux-gnu/5/../../..] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/5/../../..] + arg [CMakeFiles/cmTC_0ca19.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-linux-gnu/5/crtend.o] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/crtn.o] ==> ignore + remove lib [gcc_s] + remove lib [gcc] + remove lib [gcc_s] + remove lib [gcc] + collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/5] ==> [/usr/lib/gcc/x86_64-linux-gnu/5] + collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu] ==> [/usr/lib/x86_64-linux-gnu] + collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/5/../../../../lib] ==> [/usr/lib] + collapse library dir [/lib/x86_64-linux-gnu] ==> [/lib/x86_64-linux-gnu] + collapse library dir [/lib/../lib] ==> [/lib] + collapse library dir [/usr/lib/x86_64-linux-gnu] ==> [/usr/lib/x86_64-linux-gnu] + collapse library dir [/usr/lib/../lib] ==> [/usr/lib] + collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/5/../../..] ==> [/usr/lib] + implicit libs: [stdc++;m;c] + implicit dirs: [/usr/lib/gcc/x86_64-linux-gnu/5;/usr/lib/x86_64-linux-gnu;/usr/lib;/lib/x86_64-linux-gnu;/lib] + implicit fwks: [] + + + + +Detecting CXX [-std=c++14] compiler features compiled with the following output: +Change Dir: /mnt/c/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/CMakeTmp + +Run Build Command:"/usr/bin/make" "cmTC_eeff4/fast" +/usr/bin/make -f CMakeFiles/cmTC_eeff4.dir/build.make CMakeFiles/cmTC_eeff4.dir/build +make[1]: Verzeichnis „/mnt/c/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/CMakeTmp“ wird betreten +Building CXX object CMakeFiles/cmTC_eeff4.dir/feature_tests.cxx.o +/usr/bin/c++ -std=c++14 -o CMakeFiles/cmTC_eeff4.dir/feature_tests.cxx.o -c /mnt/c/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/feature_tests.cxx +Linking CXX executable cmTC_eeff4 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_eeff4.dir/link.txt --verbose=1 +/usr/bin/c++ CMakeFiles/cmTC_eeff4.dir/feature_tests.cxx.o -o cmTC_eeff4 -rdynamic +make[1]: Verzeichnis „/mnt/c/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/CMakeTmp“ wird verlassen + + + Feature record: CXX_FEATURE:1cxx_aggregate_default_initializers + Feature record: CXX_FEATURE:1cxx_alias_templates + Feature record: CXX_FEATURE:1cxx_alignas + Feature record: CXX_FEATURE:1cxx_alignof + Feature record: CXX_FEATURE:1cxx_attributes + Feature record: CXX_FEATURE:1cxx_attribute_deprecated + Feature record: CXX_FEATURE:1cxx_auto_type + Feature record: CXX_FEATURE:1cxx_binary_literals + Feature record: CXX_FEATURE:1cxx_constexpr + Feature record: CXX_FEATURE:1cxx_contextual_conversions + Feature record: CXX_FEATURE:1cxx_decltype + Feature record: CXX_FEATURE:1cxx_decltype_auto + Feature record: CXX_FEATURE:1cxx_decltype_incomplete_return_types + Feature record: CXX_FEATURE:1cxx_default_function_template_args + Feature record: CXX_FEATURE:1cxx_defaulted_functions + Feature record: CXX_FEATURE:1cxx_defaulted_move_initializers + Feature record: CXX_FEATURE:1cxx_delegating_constructors + Feature record: CXX_FEATURE:1cxx_deleted_functions + Feature record: CXX_FEATURE:1cxx_digit_separators + Feature record: CXX_FEATURE:1cxx_enum_forward_declarations + Feature record: CXX_FEATURE:1cxx_explicit_conversions + Feature record: CXX_FEATURE:1cxx_extended_friend_declarations + Feature record: CXX_FEATURE:1cxx_extern_templates + Feature record: CXX_FEATURE:1cxx_final + Feature record: CXX_FEATURE:1cxx_func_identifier + Feature record: CXX_FEATURE:1cxx_generalized_initializers + Feature record: CXX_FEATURE:1cxx_generic_lambdas + Feature record: CXX_FEATURE:1cxx_inheriting_constructors + Feature record: CXX_FEATURE:1cxx_inline_namespaces + Feature record: CXX_FEATURE:1cxx_lambdas + Feature record: CXX_FEATURE:1cxx_lambda_init_captures + Feature record: CXX_FEATURE:1cxx_local_type_template_args + Feature record: CXX_FEATURE:1cxx_long_long_type + Feature record: CXX_FEATURE:1cxx_noexcept + Feature record: CXX_FEATURE:1cxx_nonstatic_member_init + Feature record: CXX_FEATURE:1cxx_nullptr + Feature record: CXX_FEATURE:1cxx_override + Feature record: CXX_FEATURE:1cxx_range_for + Feature record: CXX_FEATURE:1cxx_raw_string_literals + Feature record: CXX_FEATURE:1cxx_reference_qualified_functions + Feature record: CXX_FEATURE:1cxx_relaxed_constexpr + Feature record: CXX_FEATURE:1cxx_return_type_deduction + Feature record: CXX_FEATURE:1cxx_right_angle_brackets + Feature record: CXX_FEATURE:1cxx_rvalue_references + Feature record: CXX_FEATURE:1cxx_sizeof_member + Feature record: CXX_FEATURE:1cxx_static_assert + Feature record: CXX_FEATURE:1cxx_strong_enums + Feature record: CXX_FEATURE:1cxx_template_template_parameters + Feature record: CXX_FEATURE:1cxx_thread_local + Feature record: CXX_FEATURE:1cxx_trailing_return_types + Feature record: CXX_FEATURE:1cxx_unicode_literals + Feature record: CXX_FEATURE:1cxx_uniform_initialization + Feature record: CXX_FEATURE:1cxx_unrestricted_unions + Feature record: CXX_FEATURE:1cxx_user_literals + Feature record: CXX_FEATURE:1cxx_variable_templates + Feature record: CXX_FEATURE:1cxx_variadic_macros + Feature record: CXX_FEATURE:1cxx_variadic_templates + + +Detecting CXX [-std=c++11] compiler features compiled with the following output: +Change Dir: /mnt/c/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/CMakeTmp + +Run Build Command:"/usr/bin/make" "cmTC_8b2f5/fast" +/usr/bin/make -f CMakeFiles/cmTC_8b2f5.dir/build.make CMakeFiles/cmTC_8b2f5.dir/build +make[1]: Verzeichnis „/mnt/c/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/CMakeTmp“ wird betreten +Building CXX object CMakeFiles/cmTC_8b2f5.dir/feature_tests.cxx.o +/usr/bin/c++ -std=c++11 -o CMakeFiles/cmTC_8b2f5.dir/feature_tests.cxx.o -c /mnt/c/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/feature_tests.cxx +Linking CXX executable cmTC_8b2f5 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_8b2f5.dir/link.txt --verbose=1 +/usr/bin/c++ CMakeFiles/cmTC_8b2f5.dir/feature_tests.cxx.o -o cmTC_8b2f5 -rdynamic +make[1]: Verzeichnis „/mnt/c/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/CMakeTmp“ wird verlassen + + + Feature record: CXX_FEATURE:0cxx_aggregate_default_initializers + Feature record: CXX_FEATURE:1cxx_alias_templates + Feature record: CXX_FEATURE:1cxx_alignas + Feature record: CXX_FEATURE:1cxx_alignof + Feature record: CXX_FEATURE:1cxx_attributes + Feature record: CXX_FEATURE:0cxx_attribute_deprecated + Feature record: CXX_FEATURE:1cxx_auto_type + Feature record: CXX_FEATURE:0cxx_binary_literals + Feature record: CXX_FEATURE:1cxx_constexpr + Feature record: CXX_FEATURE:0cxx_contextual_conversions + Feature record: CXX_FEATURE:1cxx_decltype + Feature record: CXX_FEATURE:0cxx_decltype_auto + Feature record: CXX_FEATURE:1cxx_decltype_incomplete_return_types + Feature record: CXX_FEATURE:1cxx_default_function_template_args + Feature record: CXX_FEATURE:1cxx_defaulted_functions + Feature record: CXX_FEATURE:1cxx_defaulted_move_initializers + Feature record: CXX_FEATURE:1cxx_delegating_constructors + Feature record: CXX_FEATURE:1cxx_deleted_functions + Feature record: CXX_FEATURE:0cxx_digit_separators + Feature record: CXX_FEATURE:1cxx_enum_forward_declarations + Feature record: CXX_FEATURE:1cxx_explicit_conversions + Feature record: CXX_FEATURE:1cxx_extended_friend_declarations + Feature record: CXX_FEATURE:1cxx_extern_templates + Feature record: CXX_FEATURE:1cxx_final + Feature record: CXX_FEATURE:1cxx_func_identifier + Feature record: CXX_FEATURE:1cxx_generalized_initializers + Feature record: CXX_FEATURE:0cxx_generic_lambdas + Feature record: CXX_FEATURE:1cxx_inheriting_constructors + Feature record: CXX_FEATURE:1cxx_inline_namespaces + Feature record: CXX_FEATURE:1cxx_lambdas + Feature record: CXX_FEATURE:0cxx_lambda_init_captures + Feature record: CXX_FEATURE:1cxx_local_type_template_args + Feature record: CXX_FEATURE:1cxx_long_long_type + Feature record: CXX_FEATURE:1cxx_noexcept + Feature record: CXX_FEATURE:1cxx_nonstatic_member_init + Feature record: CXX_FEATURE:1cxx_nullptr + Feature record: CXX_FEATURE:1cxx_override + Feature record: CXX_FEATURE:1cxx_range_for + Feature record: CXX_FEATURE:1cxx_raw_string_literals + Feature record: CXX_FEATURE:1cxx_reference_qualified_functions + Feature record: CXX_FEATURE:0cxx_relaxed_constexpr + Feature record: CXX_FEATURE:0cxx_return_type_deduction + Feature record: CXX_FEATURE:1cxx_right_angle_brackets + Feature record: CXX_FEATURE:1cxx_rvalue_references + Feature record: CXX_FEATURE:1cxx_sizeof_member + Feature record: CXX_FEATURE:1cxx_static_assert + Feature record: CXX_FEATURE:1cxx_strong_enums + Feature record: CXX_FEATURE:1cxx_template_template_parameters + Feature record: CXX_FEATURE:1cxx_thread_local + Feature record: CXX_FEATURE:1cxx_trailing_return_types + Feature record: CXX_FEATURE:1cxx_unicode_literals + Feature record: CXX_FEATURE:1cxx_uniform_initialization + Feature record: CXX_FEATURE:1cxx_unrestricted_unions + Feature record: CXX_FEATURE:1cxx_user_literals + Feature record: CXX_FEATURE:0cxx_variable_templates + Feature record: CXX_FEATURE:1cxx_variadic_macros + Feature record: CXX_FEATURE:1cxx_variadic_templates + + +Detecting CXX [-std=c++98] compiler features compiled with the following output: +Change Dir: /mnt/c/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/CMakeTmp + +Run Build Command:"/usr/bin/make" "cmTC_70fc4/fast" +/usr/bin/make -f CMakeFiles/cmTC_70fc4.dir/build.make CMakeFiles/cmTC_70fc4.dir/build +make[1]: Verzeichnis „/mnt/c/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/CMakeTmp“ wird betreten +Building CXX object CMakeFiles/cmTC_70fc4.dir/feature_tests.cxx.o +/usr/bin/c++ -std=c++98 -o CMakeFiles/cmTC_70fc4.dir/feature_tests.cxx.o -c /mnt/c/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/feature_tests.cxx +Linking CXX executable cmTC_70fc4 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_70fc4.dir/link.txt --verbose=1 +/usr/bin/c++ CMakeFiles/cmTC_70fc4.dir/feature_tests.cxx.o -o cmTC_70fc4 -rdynamic +make[1]: Verzeichnis „/mnt/c/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/CMakeTmp“ wird verlassen + + + Feature record: CXX_FEATURE:0cxx_aggregate_default_initializers + Feature record: CXX_FEATURE:0cxx_alias_templates + Feature record: CXX_FEATURE:0cxx_alignas + Feature record: CXX_FEATURE:0cxx_alignof + Feature record: CXX_FEATURE:0cxx_attributes + Feature record: CXX_FEATURE:0cxx_attribute_deprecated + Feature record: CXX_FEATURE:0cxx_auto_type + Feature record: CXX_FEATURE:0cxx_binary_literals + Feature record: CXX_FEATURE:0cxx_constexpr + Feature record: CXX_FEATURE:0cxx_contextual_conversions + Feature record: CXX_FEATURE:0cxx_decltype + Feature record: CXX_FEATURE:0cxx_decltype_auto + Feature record: CXX_FEATURE:0cxx_decltype_incomplete_return_types + Feature record: CXX_FEATURE:0cxx_default_function_template_args + Feature record: CXX_FEATURE:0cxx_defaulted_functions + Feature record: CXX_FEATURE:0cxx_defaulted_move_initializers + Feature record: CXX_FEATURE:0cxx_delegating_constructors + Feature record: CXX_FEATURE:0cxx_deleted_functions + Feature record: CXX_FEATURE:0cxx_digit_separators + Feature record: CXX_FEATURE:0cxx_enum_forward_declarations + Feature record: CXX_FEATURE:0cxx_explicit_conversions + Feature record: CXX_FEATURE:0cxx_extended_friend_declarations + Feature record: CXX_FEATURE:0cxx_extern_templates + Feature record: CXX_FEATURE:0cxx_final + Feature record: CXX_FEATURE:0cxx_func_identifier + Feature record: CXX_FEATURE:0cxx_generalized_initializers + Feature record: CXX_FEATURE:0cxx_generic_lambdas + Feature record: CXX_FEATURE:0cxx_inheriting_constructors + Feature record: CXX_FEATURE:0cxx_inline_namespaces + Feature record: CXX_FEATURE:0cxx_lambdas + Feature record: CXX_FEATURE:0cxx_lambda_init_captures + Feature record: CXX_FEATURE:0cxx_local_type_template_args + Feature record: CXX_FEATURE:0cxx_long_long_type + Feature record: CXX_FEATURE:0cxx_noexcept + Feature record: CXX_FEATURE:0cxx_nonstatic_member_init + Feature record: CXX_FEATURE:0cxx_nullptr + Feature record: CXX_FEATURE:0cxx_override + Feature record: CXX_FEATURE:0cxx_range_for + Feature record: CXX_FEATURE:0cxx_raw_string_literals + Feature record: CXX_FEATURE:0cxx_reference_qualified_functions + Feature record: CXX_FEATURE:0cxx_relaxed_constexpr + Feature record: CXX_FEATURE:0cxx_return_type_deduction + Feature record: CXX_FEATURE:0cxx_right_angle_brackets + Feature record: CXX_FEATURE:0cxx_rvalue_references + Feature record: CXX_FEATURE:0cxx_sizeof_member + Feature record: CXX_FEATURE:0cxx_static_assert + Feature record: CXX_FEATURE:0cxx_strong_enums + Feature record: CXX_FEATURE:1cxx_template_template_parameters + Feature record: CXX_FEATURE:0cxx_thread_local + Feature record: CXX_FEATURE:0cxx_trailing_return_types + Feature record: CXX_FEATURE:0cxx_unicode_literals + Feature record: CXX_FEATURE:0cxx_uniform_initialization + Feature record: CXX_FEATURE:0cxx_unrestricted_unions + Feature record: CXX_FEATURE:0cxx_user_literals + Feature record: CXX_FEATURE:0cxx_variable_templates + Feature record: CXX_FEATURE:0cxx_variadic_macros + Feature record: CXX_FEATURE:0cxx_variadic_templates diff --git a/suitesparse/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/Makefile.cmake b/suitesparse/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/Makefile.cmake new file mode 100644 index 0000000..5aff99c --- /dev/null +++ b/suitesparse/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/Makefile.cmake @@ -0,0 +1,121 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.5 + +# 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" + "/home/tom/.conan/data/suitesparse/5164583/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/FindCholmod.cmake" + "/home/tom/.conan/data/suitesparse/5164583/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/lib/cmake/suitesparse-4.5.0/SuiteSparse-targets-release.cmake" + "/home/tom/.conan/data/suitesparse/5164583/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/lib/cmake/suitesparse-4.5.0/SuiteSparse-targets.cmake" + "/home/tom/.conan/data/suitesparse/5164583/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/lib/cmake/suitesparse-4.5.0/suitesparse-config-version.cmake" + "/home/tom/.conan/data/suitesparse/5164583/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/lib/cmake/suitesparse-4.5.0/suitesparse-config.cmake" + "CMakeFiles/3.5.1/CMakeCCompiler.cmake" + "CMakeFiles/3.5.1/CMakeCXXCompiler.cmake" + "CMakeFiles/3.5.1/CMakeSystem.cmake" + "CMakeFiles/feature_tests.c" + "CMakeFiles/feature_tests.cxx" + "conanbuildinfo.cmake" + "/mnt/c/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/src/CMakeLists.txt" + "/usr/share/cmake-3.5/Modules/CMakeCCompiler.cmake.in" + "/usr/share/cmake-3.5/Modules/CMakeCCompilerABI.c" + "/usr/share/cmake-3.5/Modules/CMakeCInformation.cmake" + "/usr/share/cmake-3.5/Modules/CMakeCXXCompiler.cmake.in" + "/usr/share/cmake-3.5/Modules/CMakeCXXCompilerABI.cpp" + "/usr/share/cmake-3.5/Modules/CMakeCXXInformation.cmake" + "/usr/share/cmake-3.5/Modules/CMakeCommonLanguageInclude.cmake" + "/usr/share/cmake-3.5/Modules/CMakeCompilerIdDetection.cmake" + "/usr/share/cmake-3.5/Modules/CMakeDetermineCCompiler.cmake" + "/usr/share/cmake-3.5/Modules/CMakeDetermineCXXCompiler.cmake" + "/usr/share/cmake-3.5/Modules/CMakeDetermineCompileFeatures.cmake" + "/usr/share/cmake-3.5/Modules/CMakeDetermineCompiler.cmake" + "/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerABI.cmake" + "/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake" + "/usr/share/cmake-3.5/Modules/CMakeDetermineSystem.cmake" + "/usr/share/cmake-3.5/Modules/CMakeFindBinUtils.cmake" + "/usr/share/cmake-3.5/Modules/CMakeGenericSystem.cmake" + "/usr/share/cmake-3.5/Modules/CMakeLanguageInformation.cmake" + "/usr/share/cmake-3.5/Modules/CMakeParseArguments.cmake" + "/usr/share/cmake-3.5/Modules/CMakeParseImplicitLinkInfo.cmake" + "/usr/share/cmake-3.5/Modules/CMakeSystem.cmake.in" + "/usr/share/cmake-3.5/Modules/CMakeSystemSpecificInformation.cmake" + "/usr/share/cmake-3.5/Modules/CMakeSystemSpecificInitialize.cmake" + "/usr/share/cmake-3.5/Modules/CMakeTestCCompiler.cmake" + "/usr/share/cmake-3.5/Modules/CMakeTestCXXCompiler.cmake" + "/usr/share/cmake-3.5/Modules/CMakeTestCompilerCommon.cmake" + "/usr/share/cmake-3.5/Modules/CMakeUnixFindMake.cmake" + "/usr/share/cmake-3.5/Modules/Compiler/ADSP-DetermineCompiler.cmake" + "/usr/share/cmake-3.5/Modules/Compiler/ARMCC-DetermineCompiler.cmake" + "/usr/share/cmake-3.5/Modules/Compiler/AppleClang-DetermineCompiler.cmake" + "/usr/share/cmake-3.5/Modules/Compiler/Borland-DetermineCompiler.cmake" + "/usr/share/cmake-3.5/Modules/Compiler/Clang-DetermineCompiler.cmake" + "/usr/share/cmake-3.5/Modules/Compiler/Clang-DetermineCompilerInternal.cmake" + "/usr/share/cmake-3.5/Modules/Compiler/Comeau-CXX-DetermineCompiler.cmake" + "/usr/share/cmake-3.5/Modules/Compiler/Compaq-C-DetermineCompiler.cmake" + "/usr/share/cmake-3.5/Modules/Compiler/Compaq-CXX-DetermineCompiler.cmake" + "/usr/share/cmake-3.5/Modules/Compiler/Cray-DetermineCompiler.cmake" + "/usr/share/cmake-3.5/Modules/Compiler/Embarcadero-DetermineCompiler.cmake" + "/usr/share/cmake-3.5/Modules/Compiler/Fujitsu-DetermineCompiler.cmake" + "/usr/share/cmake-3.5/Modules/Compiler/GHS-DetermineCompiler.cmake" + "/usr/share/cmake-3.5/Modules/Compiler/GNU-C-FeatureTests.cmake" + "/usr/share/cmake-3.5/Modules/Compiler/GNU-C.cmake" + "/usr/share/cmake-3.5/Modules/Compiler/GNU-CXX-FeatureTests.cmake" + "/usr/share/cmake-3.5/Modules/Compiler/GNU-CXX.cmake" + "/usr/share/cmake-3.5/Modules/Compiler/GNU-DetermineCompiler.cmake" + "/usr/share/cmake-3.5/Modules/Compiler/GNU.cmake" + "/usr/share/cmake-3.5/Modules/Compiler/HP-C-DetermineCompiler.cmake" + "/usr/share/cmake-3.5/Modules/Compiler/HP-CXX-DetermineCompiler.cmake" + "/usr/share/cmake-3.5/Modules/Compiler/IAR-DetermineCompiler.cmake" + "/usr/share/cmake-3.5/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake" + "/usr/share/cmake-3.5/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake" + "/usr/share/cmake-3.5/Modules/Compiler/Intel-DetermineCompiler.cmake" + "/usr/share/cmake-3.5/Modules/Compiler/MIPSpro-DetermineCompiler.cmake" + "/usr/share/cmake-3.5/Modules/Compiler/MSVC-DetermineCompiler.cmake" + "/usr/share/cmake-3.5/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake" + "/usr/share/cmake-3.5/Modules/Compiler/PGI-DetermineCompiler.cmake" + "/usr/share/cmake-3.5/Modules/Compiler/PathScale-DetermineCompiler.cmake" + "/usr/share/cmake-3.5/Modules/Compiler/SCO-DetermineCompiler.cmake" + "/usr/share/cmake-3.5/Modules/Compiler/SDCC-C-DetermineCompiler.cmake" + "/usr/share/cmake-3.5/Modules/Compiler/SunPro-C-DetermineCompiler.cmake" + "/usr/share/cmake-3.5/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake" + "/usr/share/cmake-3.5/Modules/Compiler/TI-DetermineCompiler.cmake" + "/usr/share/cmake-3.5/Modules/Compiler/TinyCC-C-DetermineCompiler.cmake" + "/usr/share/cmake-3.5/Modules/Compiler/VisualAge-C-DetermineCompiler.cmake" + "/usr/share/cmake-3.5/Modules/Compiler/VisualAge-CXX-DetermineCompiler.cmake" + "/usr/share/cmake-3.5/Modules/Compiler/Watcom-DetermineCompiler.cmake" + "/usr/share/cmake-3.5/Modules/Compiler/XL-C-DetermineCompiler.cmake" + "/usr/share/cmake-3.5/Modules/Compiler/XL-CXX-DetermineCompiler.cmake" + "/usr/share/cmake-3.5/Modules/Compiler/zOS-C-DetermineCompiler.cmake" + "/usr/share/cmake-3.5/Modules/Compiler/zOS-CXX-DetermineCompiler.cmake" + "/usr/share/cmake-3.5/Modules/Internal/FeatureTesting.cmake" + "/usr/share/cmake-3.5/Modules/MultiArchCross.cmake" + "/usr/share/cmake-3.5/Modules/Platform/Linux-CXX.cmake" + "/usr/share/cmake-3.5/Modules/Platform/Linux-GNU-C.cmake" + "/usr/share/cmake-3.5/Modules/Platform/Linux-GNU-CXX.cmake" + "/usr/share/cmake-3.5/Modules/Platform/Linux-GNU.cmake" + "/usr/share/cmake-3.5/Modules/Platform/Linux.cmake" + "/usr/share/cmake-3.5/Modules/Platform/UnixPaths.cmake" + ) + +# The corresponding makefile is: +set(CMAKE_MAKEFILE_OUTPUTS + "Makefile" + "CMakeFiles/cmake.check_cache" + ) + +# Byproducts of CMake generate step: +set(CMAKE_MAKEFILE_PRODUCTS + "CMakeFiles/3.5.1/CMakeSystem.cmake" + "CMakeFiles/3.5.1/CMakeCCompiler.cmake" + "CMakeFiles/3.5.1/CMakeCXXCompiler.cmake" + "CMakeFiles/3.5.1/CMakeCCompiler.cmake" + "CMakeFiles/3.5.1/CMakeCXXCompiler.cmake" + "CMakeFiles/CMakeDirectoryInformation.cmake" + ) + +# Dependency information for all targets: +set(CMAKE_DEPEND_INFO_FILES + "CMakeFiles/cholmod-test.dir/DependInfo.cmake" + ) diff --git a/suitesparse/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/Makefile2 b/suitesparse/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/Makefile2 new file mode 100644 index 0000000..11fc320 --- /dev/null +++ b/suitesparse/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/Makefile2 @@ -0,0 +1,108 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.5 + +# Default target executed when no arguments are given to make. +default_target: all + +.PHONY : default_target + +# The main recursive all target +all: + +.PHONY : all + +# The main recursive preinstall target +preinstall: + +.PHONY : preinstall + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + + +# Remove some rules from gmake that .SUFFIXES does not remove. +SUFFIXES = + +.SUFFIXES: .hpux_make_needs_suffix_list + + +# 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 remove -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /mnt/c/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/src + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /mnt/c/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/aadcc2c40dab68a95374017995be48233063b305 + +#============================================================================= +# Target rules for target CMakeFiles/cholmod-test.dir + +# All Build rule for target. +CMakeFiles/cholmod-test.dir/all: + $(MAKE) -f CMakeFiles/cholmod-test.dir/build.make CMakeFiles/cholmod-test.dir/depend + $(MAKE) -f CMakeFiles/cholmod-test.dir/build.make CMakeFiles/cholmod-test.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/mnt/c/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles --progress-num=1,2 "Built target cholmod-test" +.PHONY : CMakeFiles/cholmod-test.dir/all + +# Include target in all. +all: CMakeFiles/cholmod-test.dir/all + +.PHONY : all + +# Build rule for subdir invocation for target. +CMakeFiles/cholmod-test.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /mnt/c/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles 2 + $(MAKE) -f CMakeFiles/Makefile2 CMakeFiles/cholmod-test.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /mnt/c/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles 0 +.PHONY : CMakeFiles/cholmod-test.dir/rule + +# Convenience name for target. +cholmod-test: CMakeFiles/cholmod-test.dir/rule + +.PHONY : cholmod-test + +# clean rule for target. +CMakeFiles/cholmod-test.dir/clean: + $(MAKE) -f CMakeFiles/cholmod-test.dir/build.make CMakeFiles/cholmod-test.dir/clean +.PHONY : CMakeFiles/cholmod-test.dir/clean + +# clean rule for target. +clean: CMakeFiles/cholmod-test.dir/clean + +.PHONY : 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) -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 +.PHONY : cmake_check_build_system + diff --git a/suitesparse/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/TargetDirectories.txt b/suitesparse/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/TargetDirectories.txt new file mode 100644 index 0000000..5414703 --- /dev/null +++ b/suitesparse/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/TargetDirectories.txt @@ -0,0 +1,3 @@ +/mnt/c/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/edit_cache.dir +/mnt/c/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/rebuild_cache.dir +/mnt/c/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/cholmod-test.dir diff --git a/suitesparse/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/cholmod-test.dir/CXX.includecache b/suitesparse/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/cholmod-test.dir/CXX.includecache new file mode 100644 index 0000000..354b771 --- /dev/null +++ b/suitesparse/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/cholmod-test.dir/CXX.includecache @@ -0,0 +1,102 @@ +#IncludeRegexLine: ^[ ]*#[ ]*(include|import)[ ]*[<"]([^">]+)([">]) + +#IncludeRegexScan: ^.*$ + +#IncludeRegexComplain: ^$ + +#IncludeRegexTransform: + +/home/tom/.conan/data/suitesparse/5164583/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/include/suitesparse/SuiteSparse_config.h +limits.h +- +stdlib.h +- + +/home/tom/.conan/data/suitesparse/5164583/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/include/suitesparse/cholmod.h +cholmod_io64.h +/home/tom/.conan/data/suitesparse/5164583/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/include/suitesparse/cholmod_io64.h +SuiteSparse_config.h +/home/tom/.conan/data/suitesparse/5164583/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/include/suitesparse/SuiteSparse_config.h +cholmod_config.h +/home/tom/.conan/data/suitesparse/5164583/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/include/suitesparse/cholmod_config.h +cholmod_core.h +/home/tom/.conan/data/suitesparse/5164583/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/include/suitesparse/cholmod_core.h +cholmod_check.h +/home/tom/.conan/data/suitesparse/5164583/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/include/suitesparse/cholmod_check.h +cholmod_cholesky.h +/home/tom/.conan/data/suitesparse/5164583/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/include/suitesparse/cholmod_cholesky.h +cholmod_matrixops.h +/home/tom/.conan/data/suitesparse/5164583/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/include/suitesparse/cholmod_matrixops.h +cholmod_modify.h +/home/tom/.conan/data/suitesparse/5164583/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/include/suitesparse/cholmod_modify.h +cholmod_camd.h +/home/tom/.conan/data/suitesparse/5164583/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/include/suitesparse/cholmod_camd.h +cholmod_partition.h +/home/tom/.conan/data/suitesparse/5164583/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/include/suitesparse/cholmod_partition.h +cholmod_supernodal.h +/home/tom/.conan/data/suitesparse/5164583/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/include/suitesparse/cholmod_supernodal.h +cholmod_gpu.h +/home/tom/.conan/data/suitesparse/5164583/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/include/suitesparse/cholmod_gpu.h + +/home/tom/.conan/data/suitesparse/5164583/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/include/suitesparse/cholmod_camd.h +cholmod_core.h +/home/tom/.conan/data/suitesparse/5164583/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/include/suitesparse/cholmod_core.h + +/home/tom/.conan/data/suitesparse/5164583/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/include/suitesparse/cholmod_check.h +cholmod_core.h +/home/tom/.conan/data/suitesparse/5164583/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/include/suitesparse/cholmod_core.h +stdio.h +- + +/home/tom/.conan/data/suitesparse/5164583/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/include/suitesparse/cholmod_cholesky.h +cholmod_config.h +/home/tom/.conan/data/suitesparse/5164583/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/include/suitesparse/cholmod_config.h +cholmod_core.h +/home/tom/.conan/data/suitesparse/5164583/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/include/suitesparse/cholmod_core.h +cholmod_partition.h +/home/tom/.conan/data/suitesparse/5164583/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/include/suitesparse/cholmod_partition.h +cholmod_supernodal.h +/home/tom/.conan/data/suitesparse/5164583/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/include/suitesparse/cholmod_supernodal.h + +/home/tom/.conan/data/suitesparse/5164583/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/include/suitesparse/cholmod_config.h + +/home/tom/.conan/data/suitesparse/5164583/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/include/suitesparse/cholmod_core.h +stddef.h +- +stdlib.h +- +cublas_v2.h +- + +/home/tom/.conan/data/suitesparse/5164583/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/include/suitesparse/cholmod_gpu.h +omp.h +/home/tom/.conan/data/suitesparse/5164583/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/include/suitesparse/omp.h +fenv.h +- + +/home/tom/.conan/data/suitesparse/5164583/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/include/suitesparse/cholmod_io64.h +io64.h +/home/tom/.conan/data/suitesparse/5164583/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/include/suitesparse/io64.h + +/home/tom/.conan/data/suitesparse/5164583/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/include/suitesparse/cholmod_matrixops.h +cholmod_core.h +/home/tom/.conan/data/suitesparse/5164583/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/include/suitesparse/cholmod_core.h + +/home/tom/.conan/data/suitesparse/5164583/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/include/suitesparse/cholmod_modify.h +cholmod_core.h +/home/tom/.conan/data/suitesparse/5164583/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/include/suitesparse/cholmod_core.h + +/home/tom/.conan/data/suitesparse/5164583/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/include/suitesparse/cholmod_partition.h +cholmod_core.h +/home/tom/.conan/data/suitesparse/5164583/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/include/suitesparse/cholmod_core.h +cholmod_camd.h +/home/tom/.conan/data/suitesparse/5164583/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/include/suitesparse/cholmod_camd.h + +/home/tom/.conan/data/suitesparse/5164583/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/include/suitesparse/cholmod_supernodal.h +cholmod_core.h +/home/tom/.conan/data/suitesparse/5164583/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/include/suitesparse/cholmod_core.h + +/mnt/c/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/src/cholmod-test.cpp +cholmod.h +/mnt/c/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/src/cholmod.h + diff --git a/suitesparse/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/cholmod-test.dir/DependInfo.cmake b/suitesparse/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/cholmod-test.dir/DependInfo.cmake new file mode 100644 index 0000000..f1a743d --- /dev/null +++ b/suitesparse/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/cholmod-test.dir/DependInfo.cmake @@ -0,0 +1,27 @@ +# 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 + "/mnt/c/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/src/cholmod-test.cpp" "/mnt/c/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/cholmod-test.dir/cholmod-test.o" + ) +set(CMAKE_CXX_COMPILER_ID "GNU") + +# Preprocessor definitions for this target. +set(CMAKE_TARGET_DEFINITIONS_CXX + "_GLIBCXX_USE_CXX11_ABI=0" + ) + +# The include file search paths: +set(CMAKE_CXX_TARGET_INCLUDE_PATH + "/home/tom/.conan/data/suitesparse/5164583/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/include" + "/home/tom/.conan/data/suitesparse/5164583/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/include/suitesparse" + ) + +# Targets to which this target links. +set(CMAKE_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/suitesparse/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/cholmod-test.dir/build.make b/suitesparse/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/cholmod-test.dir/build.make new file mode 100644 index 0000000..c3fb2e7 --- /dev/null +++ b/suitesparse/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/cholmod-test.dir/build.make @@ -0,0 +1,134 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.5 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + + +# Remove some rules from gmake that .SUFFIXES does not remove. +SUFFIXES = + +.SUFFIXES: .hpux_make_needs_suffix_list + + +# 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 remove -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /mnt/c/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/src + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /mnt/c/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/aadcc2c40dab68a95374017995be48233063b305 + +# Include any dependencies generated for this target. +include CMakeFiles/cholmod-test.dir/depend.make + +# Include the progress variables for this target. +include CMakeFiles/cholmod-test.dir/progress.make + +# Include the compile flags for this target's objects. +include CMakeFiles/cholmod-test.dir/flags.make + +CMakeFiles/cholmod-test.dir/cholmod-test.o: CMakeFiles/cholmod-test.dir/flags.make +CMakeFiles/cholmod-test.dir/cholmod-test.o: /mnt/c/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/src/cholmod-test.cpp + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/mnt/c/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object CMakeFiles/cholmod-test.dir/cholmod-test.o" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -o CMakeFiles/cholmod-test.dir/cholmod-test.o -c /mnt/c/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/src/cholmod-test.cpp + +CMakeFiles/cholmod-test.dir/cholmod-test.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/cholmod-test.dir/cholmod-test.i" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /mnt/c/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/src/cholmod-test.cpp > CMakeFiles/cholmod-test.dir/cholmod-test.i + +CMakeFiles/cholmod-test.dir/cholmod-test.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/cholmod-test.dir/cholmod-test.s" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /mnt/c/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/src/cholmod-test.cpp -o CMakeFiles/cholmod-test.dir/cholmod-test.s + +CMakeFiles/cholmod-test.dir/cholmod-test.o.requires: + +.PHONY : CMakeFiles/cholmod-test.dir/cholmod-test.o.requires + +CMakeFiles/cholmod-test.dir/cholmod-test.o.provides: CMakeFiles/cholmod-test.dir/cholmod-test.o.requires + $(MAKE) -f CMakeFiles/cholmod-test.dir/build.make CMakeFiles/cholmod-test.dir/cholmod-test.o.provides.build +.PHONY : CMakeFiles/cholmod-test.dir/cholmod-test.o.provides + +CMakeFiles/cholmod-test.dir/cholmod-test.o.provides.build: CMakeFiles/cholmod-test.dir/cholmod-test.o + + +# Object files for target cholmod-test +cholmod__test_OBJECTS = \ +"CMakeFiles/cholmod-test.dir/cholmod-test.o" + +# External object files for target cholmod-test +cholmod__test_EXTERNAL_OBJECTS = + +bin/cholmod-test: CMakeFiles/cholmod-test.dir/cholmod-test.o +bin/cholmod-test: CMakeFiles/cholmod-test.dir/build.make +bin/cholmod-test: /home/tom/.conan/data/suitesparse/5164583/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/lib/libsuitesparseconfig.a +bin/cholmod-test: /home/tom/.conan/data/suitesparse/5164583/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/lib/libamd.a +bin/cholmod-test: /home/tom/.conan/data/suitesparse/5164583/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/lib/libbtf.a +bin/cholmod-test: /home/tom/.conan/data/suitesparse/5164583/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/lib/libcamd.a +bin/cholmod-test: /home/tom/.conan/data/suitesparse/5164583/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/lib/libccolamd.a +bin/cholmod-test: /home/tom/.conan/data/suitesparse/5164583/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/lib/libcolamd.a +bin/cholmod-test: /home/tom/.conan/data/suitesparse/5164583/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/lib/libcholmod.a +bin/cholmod-test: /home/tom/.conan/data/suitesparse/5164583/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/lib/libcxsparse.a +bin/cholmod-test: /home/tom/.conan/data/suitesparse/5164583/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/lib/libklu.a +bin/cholmod-test: /home/tom/.conan/data/suitesparse/5164583/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/lib/libldl.a +bin/cholmod-test: /home/tom/.conan/data/suitesparse/5164583/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/lib/libumfpack.a +bin/cholmod-test: /home/tom/.conan/data/suitesparse/5164583/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/lib/libspqr.a +bin/cholmod-test: /home/tom/.conan/data/suitesparse/5164583/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/lib/libmetis.a +bin/cholmod-test: /home/tom/.conan/data/suitesparse/5164583/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/lib/libbtf.a +bin/cholmod-test: /home/tom/.conan/data/suitesparse/5164583/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/lib/libcholmod.a +bin/cholmod-test: /home/tom/.conan/data/suitesparse/5164583/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/lib/libamd.a +bin/cholmod-test: /home/tom/.conan/data/suitesparse/5164583/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/lib/libcamd.a +bin/cholmod-test: /home/tom/.conan/data/suitesparse/5164583/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/lib/libccolamd.a +bin/cholmod-test: /home/tom/.conan/data/suitesparse/5164583/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/lib/libcolamd.a +bin/cholmod-test: /home/tom/.conan/data/suitesparse/5164583/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/lib/libsuitesparseconfig.a +bin/cholmod-test: /home/tom/.conan/data/suitesparse/5164583/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/lib/libmetis.a +bin/cholmod-test: CMakeFiles/cholmod-test.dir/link.txt + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --bold --progress-dir=/mnt/c/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Linking CXX executable bin/cholmod-test" + $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/cholmod-test.dir/link.txt --verbose=$(VERBOSE) + +# Rule to build all files generated by this target. +CMakeFiles/cholmod-test.dir/build: bin/cholmod-test + +.PHONY : CMakeFiles/cholmod-test.dir/build + +CMakeFiles/cholmod-test.dir/requires: CMakeFiles/cholmod-test.dir/cholmod-test.o.requires + +.PHONY : CMakeFiles/cholmod-test.dir/requires + +CMakeFiles/cholmod-test.dir/clean: + $(CMAKE_COMMAND) -P CMakeFiles/cholmod-test.dir/cmake_clean.cmake +.PHONY : CMakeFiles/cholmod-test.dir/clean + +CMakeFiles/cholmod-test.dir/depend: + cd /mnt/c/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/aadcc2c40dab68a95374017995be48233063b305 && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /mnt/c/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/src /mnt/c/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/src /mnt/c/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/aadcc2c40dab68a95374017995be48233063b305 /mnt/c/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/aadcc2c40dab68a95374017995be48233063b305 /mnt/c/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/cholmod-test.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : CMakeFiles/cholmod-test.dir/depend + diff --git a/suitesparse/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/cholmod-test.dir/cholmod-test.o b/suitesparse/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/cholmod-test.dir/cholmod-test.o new file mode 100644 index 0000000..64b434a Binary files /dev/null and b/suitesparse/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/cholmod-test.dir/cholmod-test.o differ diff --git a/suitesparse/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/cholmod-test.dir/cmake_clean.cmake b/suitesparse/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/cholmod-test.dir/cmake_clean.cmake new file mode 100644 index 0000000..01b07f5 --- /dev/null +++ b/suitesparse/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/cholmod-test.dir/cmake_clean.cmake @@ -0,0 +1,10 @@ +file(REMOVE_RECURSE + "CMakeFiles/cholmod-test.dir/cholmod-test.o" + "bin/cholmod-test.pdb" + "bin/cholmod-test" +) + +# Per-language clean rules from dependency scanning. +foreach(lang CXX) + include(CMakeFiles/cholmod-test.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/suitesparse/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/cholmod-test.dir/depend.internal b/suitesparse/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/cholmod-test.dir/depend.internal new file mode 100644 index 0000000..fc4b26f --- /dev/null +++ b/suitesparse/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/cholmod-test.dir/depend.internal @@ -0,0 +1,18 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.5 + +CMakeFiles/cholmod-test.dir/cholmod-test.o + /home/tom/.conan/data/suitesparse/5164583/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/include/suitesparse/SuiteSparse_config.h + /home/tom/.conan/data/suitesparse/5164583/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/include/suitesparse/cholmod.h + /home/tom/.conan/data/suitesparse/5164583/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/include/suitesparse/cholmod_camd.h + /home/tom/.conan/data/suitesparse/5164583/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/include/suitesparse/cholmod_check.h + /home/tom/.conan/data/suitesparse/5164583/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/include/suitesparse/cholmod_cholesky.h + /home/tom/.conan/data/suitesparse/5164583/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/include/suitesparse/cholmod_config.h + /home/tom/.conan/data/suitesparse/5164583/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/include/suitesparse/cholmod_core.h + /home/tom/.conan/data/suitesparse/5164583/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/include/suitesparse/cholmod_gpu.h + /home/tom/.conan/data/suitesparse/5164583/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/include/suitesparse/cholmod_io64.h + /home/tom/.conan/data/suitesparse/5164583/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/include/suitesparse/cholmod_matrixops.h + /home/tom/.conan/data/suitesparse/5164583/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/include/suitesparse/cholmod_modify.h + /home/tom/.conan/data/suitesparse/5164583/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/include/suitesparse/cholmod_partition.h + /home/tom/.conan/data/suitesparse/5164583/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/include/suitesparse/cholmod_supernodal.h + /mnt/c/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/src/cholmod-test.cpp diff --git a/suitesparse/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/cholmod-test.dir/depend.make b/suitesparse/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/cholmod-test.dir/depend.make new file mode 100644 index 0000000..59989b9 --- /dev/null +++ b/suitesparse/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/cholmod-test.dir/depend.make @@ -0,0 +1,18 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.5 + +CMakeFiles/cholmod-test.dir/cholmod-test.o: /home/tom/.conan/data/suitesparse/5164583/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/include/suitesparse/SuiteSparse_config.h +CMakeFiles/cholmod-test.dir/cholmod-test.o: /home/tom/.conan/data/suitesparse/5164583/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/include/suitesparse/cholmod.h +CMakeFiles/cholmod-test.dir/cholmod-test.o: /home/tom/.conan/data/suitesparse/5164583/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/include/suitesparse/cholmod_camd.h +CMakeFiles/cholmod-test.dir/cholmod-test.o: /home/tom/.conan/data/suitesparse/5164583/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/include/suitesparse/cholmod_check.h +CMakeFiles/cholmod-test.dir/cholmod-test.o: /home/tom/.conan/data/suitesparse/5164583/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/include/suitesparse/cholmod_cholesky.h +CMakeFiles/cholmod-test.dir/cholmod-test.o: /home/tom/.conan/data/suitesparse/5164583/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/include/suitesparse/cholmod_config.h +CMakeFiles/cholmod-test.dir/cholmod-test.o: /home/tom/.conan/data/suitesparse/5164583/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/include/suitesparse/cholmod_core.h +CMakeFiles/cholmod-test.dir/cholmod-test.o: /home/tom/.conan/data/suitesparse/5164583/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/include/suitesparse/cholmod_gpu.h +CMakeFiles/cholmod-test.dir/cholmod-test.o: /home/tom/.conan/data/suitesparse/5164583/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/include/suitesparse/cholmod_io64.h +CMakeFiles/cholmod-test.dir/cholmod-test.o: /home/tom/.conan/data/suitesparse/5164583/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/include/suitesparse/cholmod_matrixops.h +CMakeFiles/cholmod-test.dir/cholmod-test.o: /home/tom/.conan/data/suitesparse/5164583/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/include/suitesparse/cholmod_modify.h +CMakeFiles/cholmod-test.dir/cholmod-test.o: /home/tom/.conan/data/suitesparse/5164583/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/include/suitesparse/cholmod_partition.h +CMakeFiles/cholmod-test.dir/cholmod-test.o: /home/tom/.conan/data/suitesparse/5164583/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/include/suitesparse/cholmod_supernodal.h +CMakeFiles/cholmod-test.dir/cholmod-test.o: /mnt/c/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/src/cholmod-test.cpp + diff --git a/suitesparse/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/cholmod-test.dir/flags.make b/suitesparse/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/cholmod-test.dir/flags.make new file mode 100644 index 0000000..f7aa86e --- /dev/null +++ b/suitesparse/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/cholmod-test.dir/flags.make @@ -0,0 +1,10 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.5 + +# compile CXX with /usr/bin/c++ +CXX_FLAGS = -m64 -O3 -DNDEBUG + +CXX_DEFINES = -D_GLIBCXX_USE_CXX11_ABI=0 + +CXX_INCLUDES = -isystem /home/tom/.conan/data/suitesparse/5164583/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/include -isystem /home/tom/.conan/data/suitesparse/5164583/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/include/suitesparse + diff --git a/suitesparse/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/cholmod-test.dir/link.txt b/suitesparse/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/cholmod-test.dir/link.txt new file mode 100644 index 0000000..a175fa5 --- /dev/null +++ b/suitesparse/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/cholmod-test.dir/link.txt @@ -0,0 +1 @@ +/usr/bin/c++ -m64 -O3 -DNDEBUG CMakeFiles/cholmod-test.dir/cholmod-test.o -o bin/cholmod-test -L/home/tom/.conan/data/suitesparse/5164583/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/lib -rdynamic /home/tom/.conan/data/suitesparse/5164583/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/lib/libsuitesparseconfig.a /home/tom/.conan/data/suitesparse/5164583/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/lib/libamd.a /home/tom/.conan/data/suitesparse/5164583/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/lib/libbtf.a /home/tom/.conan/data/suitesparse/5164583/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/lib/libcamd.a /home/tom/.conan/data/suitesparse/5164583/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/lib/libccolamd.a /home/tom/.conan/data/suitesparse/5164583/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/lib/libcolamd.a /home/tom/.conan/data/suitesparse/5164583/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/lib/libcholmod.a /home/tom/.conan/data/suitesparse/5164583/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/lib/libcxsparse.a /home/tom/.conan/data/suitesparse/5164583/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/lib/libklu.a /home/tom/.conan/data/suitesparse/5164583/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/lib/libldl.a /home/tom/.conan/data/suitesparse/5164583/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/lib/libumfpack.a /home/tom/.conan/data/suitesparse/5164583/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/lib/libspqr.a /home/tom/.conan/data/suitesparse/5164583/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/lib/libmetis.a /home/tom/.conan/data/suitesparse/5164583/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/lib/libbtf.a /home/tom/.conan/data/suitesparse/5164583/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/lib/libcholmod.a /home/tom/.conan/data/suitesparse/5164583/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/lib/libamd.a /home/tom/.conan/data/suitesparse/5164583/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/lib/libcamd.a /home/tom/.conan/data/suitesparse/5164583/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/lib/libccolamd.a /home/tom/.conan/data/suitesparse/5164583/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/lib/libcolamd.a /home/tom/.conan/data/suitesparse/5164583/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/lib/libsuitesparseconfig.a /home/tom/.conan/data/suitesparse/5164583/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/lib/libmetis.a -lm -llapack -lblas -Wl,-rpath,/home/tom/.conan/data/suitesparse/5164583/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/lib diff --git a/suitesparse/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/cholmod-test.dir/progress.make b/suitesparse/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/cholmod-test.dir/progress.make new file mode 100644 index 0000000..abadeb0 --- /dev/null +++ b/suitesparse/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/cholmod-test.dir/progress.make @@ -0,0 +1,3 @@ +CMAKE_PROGRESS_1 = 1 +CMAKE_PROGRESS_2 = 2 + diff --git a/suitesparse/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/cmake.check_cache b/suitesparse/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/cmake.check_cache new file mode 100644 index 0000000..3dccd73 --- /dev/null +++ b/suitesparse/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/cmake.check_cache @@ -0,0 +1 @@ +# This file is generated by cmake for dependency checking of the CMakeCache.txt file diff --git a/suitesparse/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/feature_tests.bin b/suitesparse/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/feature_tests.bin new file mode 100644 index 0000000..42c19f3 Binary files /dev/null and b/suitesparse/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/feature_tests.bin differ diff --git a/suitesparse/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/feature_tests.c b/suitesparse/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/feature_tests.c new file mode 100644 index 0000000..6590dde --- /dev/null +++ b/suitesparse/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/feature_tests.c @@ -0,0 +1,34 @@ + + const char features[] = {"\n" +"C_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 +"1" +#else +"0" +#endif +"c_function_prototypes\n" +"C_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901L +"1" +#else +"0" +#endif +"c_restrict\n" +"C_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 406 && defined(__STDC_VERSION__) && __STDC_VERSION__ >= 201000L +"1" +#else +"0" +#endif +"c_static_assert\n" +"C_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901L +"1" +#else +"0" +#endif +"c_variadic_macros\n" + +}; + +int main(int argc, char** argv) { (void)argv; return features[argc]; } diff --git a/suitesparse/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/feature_tests.cxx b/suitesparse/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/feature_tests.cxx new file mode 100644 index 0000000..b93418c --- /dev/null +++ b/suitesparse/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/feature_tests.cxx @@ -0,0 +1,405 @@ + + const char features[] = {"\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 500 && __cplusplus >= 201402L +"1" +#else +"0" +#endif +"cxx_aggregate_default_initializers\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 407 && __cplusplus >= 201103L +"1" +#else +"0" +#endif +"cxx_alias_templates\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 408 && __cplusplus >= 201103L +"1" +#else +"0" +#endif +"cxx_alignas\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 408 && __cplusplus >= 201103L +"1" +#else +"0" +#endif +"cxx_alignof\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 408 && __cplusplus >= 201103L +"1" +#else +"0" +#endif +"cxx_attributes\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 409 && __cplusplus > 201103L +"1" +#else +"0" +#endif +"cxx_attribute_deprecated\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_auto_type\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 409 && __cplusplus > 201103L +"1" +#else +"0" +#endif +"cxx_binary_literals\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 406 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_constexpr\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 409 && __cplusplus > 201103L +"1" +#else +"0" +#endif +"cxx_contextual_conversions\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_decltype\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 409 && __cplusplus > 201103L +"1" +#else +"0" +#endif +"cxx_decltype_auto\n" +"CXX_FEATURE:" +#if ((__GNUC__ * 10000 + __GNUC_MINOR__ * 100 + __GNUC_PATCHLEVEL__) >= 40801) && __cplusplus >= 201103L +"1" +#else +"0" +#endif +"cxx_decltype_incomplete_return_types\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_default_function_template_args\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_defaulted_functions\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 406 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_defaulted_move_initializers\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 407 && __cplusplus >= 201103L +"1" +#else +"0" +#endif +"cxx_delegating_constructors\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_deleted_functions\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 409 && __cplusplus > 201103L +"1" +#else +"0" +#endif +"cxx_digit_separators\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 406 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_enum_forward_declarations\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 405 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_explicit_conversions\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 407 && __cplusplus >= 201103L +"1" +#else +"0" +#endif +"cxx_extended_friend_declarations\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_extern_templates\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 407 && __cplusplus >= 201103L +"1" +#else +"0" +#endif +"cxx_final\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_func_identifier\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_generalized_initializers\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 409 && __cplusplus > 201103L +"1" +#else +"0" +#endif +"cxx_generic_lambdas\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 408 && __cplusplus >= 201103L +"1" +#else +"0" +#endif +"cxx_inheriting_constructors\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_inline_namespaces\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 405 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_lambdas\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 409 && __cplusplus > 201103L +"1" +#else +"0" +#endif +"cxx_lambda_init_captures\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 405 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_local_type_template_args\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_long_long_type\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 406 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_noexcept\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 407 && __cplusplus >= 201103L +"1" +#else +"0" +#endif +"cxx_nonstatic_member_init\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 406 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_nullptr\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 407 && __cplusplus >= 201103L +"1" +#else +"0" +#endif +"cxx_override\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 406 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_range_for\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 405 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_raw_string_literals\n" +"CXX_FEATURE:" +#if ((__GNUC__ * 10000 + __GNUC_MINOR__ * 100 + __GNUC_PATCHLEVEL__) >= 40801) && __cplusplus >= 201103L +"1" +#else +"0" +#endif +"cxx_reference_qualified_functions\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 500 && __cplusplus >= 201402L +"1" +#else +"0" +#endif +"cxx_relaxed_constexpr\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 409 && __cplusplus > 201103L +"1" +#else +"0" +#endif +"cxx_return_type_deduction\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_right_angle_brackets\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_rvalue_references\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_sizeof_member\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_static_assert\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_strong_enums\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && __cplusplus +"1" +#else +"0" +#endif +"cxx_template_template_parameters\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 408 && __cplusplus >= 201103L +"1" +#else +"0" +#endif +"cxx_thread_local\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_trailing_return_types\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_unicode_literals\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_uniform_initialization\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 406 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_unrestricted_unions\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 407 && __cplusplus >= 201103L +"1" +#else +"0" +#endif +"cxx_user_literals\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 500 && __cplusplus >= 201402L +"1" +#else +"0" +#endif +"cxx_variable_templates\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_variadic_macros\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_variadic_templates\n" + +}; + +int main(int argc, char** argv) { (void)argv; return features[argc]; } diff --git a/suitesparse/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/progress.marks b/suitesparse/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/progress.marks new file mode 100644 index 0000000..0cfbf08 --- /dev/null +++ b/suitesparse/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/progress.marks @@ -0,0 +1 @@ +2 diff --git a/suitesparse/test_package/build/aadcc2c40dab68a95374017995be48233063b305/Makefile b/suitesparse/test_package/build/aadcc2c40dab68a95374017995be48233063b305/Makefile new file mode 100644 index 0000000..97f5f50 --- /dev/null +++ b/suitesparse/test_package/build/aadcc2c40dab68a95374017995be48233063b305/Makefile @@ -0,0 +1,166 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.5 + +# 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: + + +# Remove some rules from gmake that .SUFFIXES does not remove. +SUFFIXES = + +.SUFFIXES: .hpux_make_needs_suffix_list + + +# 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 remove -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /mnt/c/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/src + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /mnt/c/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/aadcc2c40dab68a95374017995be48233063b305 + +#============================================================================= +# Targets provided globally by CMake. + +# Special rule for the target edit_cache +edit_cache: + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "No interactive CMake dialog available..." + /usr/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available. +.PHONY : edit_cache + +# Special rule for the target edit_cache +edit_cache/fast: edit_cache + +.PHONY : edit_cache/fast + +# Special rule for the target rebuild_cache +rebuild_cache: + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running CMake to regenerate build system..." + /usr/bin/cmake -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) +.PHONY : rebuild_cache + +# Special rule for the target rebuild_cache +rebuild_cache/fast: rebuild_cache + +.PHONY : rebuild_cache/fast + +# The main all target +all: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /mnt/c/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles /mnt/c/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles/progress.marks + $(MAKE) -f CMakeFiles/Makefile2 all + $(CMAKE_COMMAND) -E cmake_progress_start /mnt/c/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/aadcc2c40dab68a95374017995be48233063b305/CMakeFiles 0 +.PHONY : all + +# The main clean target +clean: + $(MAKE) -f CMakeFiles/Makefile2 clean +.PHONY : clean + +# The main clean target +clean/fast: clean + +.PHONY : clean/fast + +# Prepare targets for installation. +preinstall: all + $(MAKE) -f CMakeFiles/Makefile2 preinstall +.PHONY : preinstall + +# Prepare targets for installation. +preinstall/fast: + $(MAKE) -f CMakeFiles/Makefile2 preinstall +.PHONY : preinstall/fast + +# clear depends +depend: + $(CMAKE_COMMAND) -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1 +.PHONY : depend + +#============================================================================= +# Target rules for targets named cholmod-test + +# Build rule for target. +cholmod-test: cmake_check_build_system + $(MAKE) -f CMakeFiles/Makefile2 cholmod-test +.PHONY : cholmod-test + +# fast build rule for target. +cholmod-test/fast: + $(MAKE) -f CMakeFiles/cholmod-test.dir/build.make CMakeFiles/cholmod-test.dir/build +.PHONY : cholmod-test/fast + +# target to build an object file +cholmod-test.o: + $(MAKE) -f CMakeFiles/cholmod-test.dir/build.make CMakeFiles/cholmod-test.dir/cholmod-test.o +.PHONY : cholmod-test.o + +# target to preprocess a source file +cholmod-test.i: + $(MAKE) -f CMakeFiles/cholmod-test.dir/build.make CMakeFiles/cholmod-test.dir/cholmod-test.i +.PHONY : cholmod-test.i + +# target to generate assembly for a file +cholmod-test.s: + $(MAKE) -f CMakeFiles/cholmod-test.dir/build.make CMakeFiles/cholmod-test.dir/cholmod-test.s +.PHONY : cholmod-test.s + +# Help Target +help: + @echo "The following are some of the valid targets for this Makefile:" + @echo "... all (the default if no target is provided)" + @echo "... clean" + @echo "... depend" + @echo "... edit_cache" + @echo "... rebuild_cache" + @echo "... cholmod-test" + @echo "... cholmod-test.o" + @echo "... cholmod-test.i" + @echo "... cholmod-test.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) -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 +.PHONY : cmake_check_build_system + diff --git a/suitesparse/test_package/build/aadcc2c40dab68a95374017995be48233063b305/bin/cholmod-test b/suitesparse/test_package/build/aadcc2c40dab68a95374017995be48233063b305/bin/cholmod-test new file mode 100644 index 0000000..3189659 Binary files /dev/null and b/suitesparse/test_package/build/aadcc2c40dab68a95374017995be48233063b305/bin/cholmod-test differ diff --git a/suitesparse/test_package/build/aadcc2c40dab68a95374017995be48233063b305/cmake_install.cmake b/suitesparse/test_package/build/aadcc2c40dab68a95374017995be48233063b305/cmake_install.cmake new file mode 100644 index 0000000..efc2766 --- /dev/null +++ b/suitesparse/test_package/build/aadcc2c40dab68a95374017995be48233063b305/cmake_install.cmake @@ -0,0 +1,44 @@ +# Install script for directory: /mnt/c/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/src + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "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 "1") +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 "/mnt/c/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/aadcc2c40dab68a95374017995be48233063b305/${CMAKE_INSTALL_MANIFEST}" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") diff --git a/suitesparse/test_package/build/aadcc2c40dab68a95374017995be48233063b305/conanbuildinfo.cmake b/suitesparse/test_package/build/aadcc2c40dab68a95374017995be48233063b305/conanbuildinfo.cmake new file mode 100644 index 0000000..e34e9fd --- /dev/null +++ b/suitesparse/test_package/build/aadcc2c40dab68a95374017995be48233063b305/conanbuildinfo.cmake @@ -0,0 +1,462 @@ +include(CMakeParseArguments) +set(CONAN_SUITESPARSE_ROOT "/home/tom/.conan/data/suitesparse/5164583/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9") +set(CONAN_INCLUDE_DIRS_SUITESPARSE "/home/tom/.conan/data/suitesparse/5164583/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/include" + "/home/tom/.conan/data/suitesparse/5164583/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/include/suitesparse") +set(CONAN_LIB_DIRS_SUITESPARSE "/home/tom/.conan/data/suitesparse/5164583/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/lib") +set(CONAN_BIN_DIRS_SUITESPARSE "/home/tom/.conan/data/suitesparse/5164583/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/bin") +set(CONAN_RES_DIRS_SUITESPARSE ) +set(CONAN_BUILD_DIRS_SUITESPARSE "/home/tom/.conan/data/suitesparse/5164583/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/") +set(CONAN_LIBS_SUITESPARSE libamd libbtf libcamd libccolamd libcholmod libcolamd libcxsparse libklu libldl libspqr libumfpack metis suitesparseconfig) +set(CONAN_DEFINES_SUITESPARSE ) +# COMPILE_DEFINITIONS are equal to CONAN_DEFINES without -D, for targets +set(CONAN_COMPILE_DEFINITIONS_SUITESPARSE ) + +set(CONAN_C_FLAGS_SUITESPARSE "") +set(CONAN_CXX_FLAGS_SUITESPARSE "") +set(CONAN_SHARED_LINKER_FLAGS_SUITESPARSE "") +set(CONAN_EXE_LINKER_FLAGS_SUITESPARSE "") + +# For modern cmake targets we use the list variables (separated with ;) +set(CONAN_C_FLAGS_SUITESPARSE_LIST "") +set(CONAN_CXX_FLAGS_SUITESPARSE_LIST "") +set(CONAN_SHARED_LINKER_FLAGS_SUITESPARSE_LIST "") +set(CONAN_EXE_LINKER_FLAGS_SUITESPARSE_LIST "") + + + +### Definition of global aggregated variables ### + +set(CONAN_PACKAGE_NAME suitesparse-test) +set(CONAN_PACKAGE_VERSION 0.1) + +set(CONAN_SETTINGS_ARCH "x86_64") +set(CONAN_SETTINGS_BUILD_TYPE "Release") +set(CONAN_SETTINGS_COMPILER "gcc") +set(CONAN_SETTINGS_COMPILER_LIBCXX "libstdc++") +set(CONAN_SETTINGS_COMPILER_VERSION "5.4") +set(CONAN_SETTINGS_OS "Linux") + +set(CONAN_DEPENDENCIES suitesparse) +# Storing original command line args (CMake helper) flags +set(CONAN_CMD_CXX_FLAGS ${CONAN_CXX_FLAGS}) + +set(CONAN_CMD_SHARED_LINKER_FLAGS ${CONAN_SHARED_LINKER_FLAGS}) +set(CONAN_CMD_C_FLAGS ${CONAN_C_FLAGS}) +# Defining accumulated conan variables for all deps + +set(CONAN_INCLUDE_DIRS "/home/tom/.conan/data/suitesparse/5164583/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/include" + "/home/tom/.conan/data/suitesparse/5164583/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/include/suitesparse" ${CONAN_INCLUDE_DIRS}) +set(CONAN_LIB_DIRS "/home/tom/.conan/data/suitesparse/5164583/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/lib" ${CONAN_LIB_DIRS}) +set(CONAN_BIN_DIRS "/home/tom/.conan/data/suitesparse/5164583/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/bin" ${CONAN_BIN_DIRS}) +set(CONAN_RES_DIRS ${CONAN_RES_DIRS}) +set(CONAN_LIBS libamd libbtf libcamd libccolamd libcholmod libcolamd libcxsparse libklu libldl libspqr libumfpack metis suitesparseconfig ${CONAN_LIBS}) +set(CONAN_DEFINES ${CONAN_DEFINES}) +set(CONAN_CMAKE_MODULE_PATH "/home/tom/.conan/data/suitesparse/5164583/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/" ${CONAN_CMAKE_MODULE_PATH}) + +set(CONAN_CXX_FLAGS " ${CONAN_CXX_FLAGS}") +set(CONAN_SHARED_LINKER_FLAGS " ${CONAN_SHARED_LINKER_FLAGS}") +set(CONAN_EXE_LINKER_FLAGS " ${CONAN_EXE_LINKER_FLAGS}") +set(CONAN_C_FLAGS " ${CONAN_C_FLAGS}") + + +### Definition of macros and functions ### + +macro(conan_define_targets) + if(${CMAKE_VERSION} VERSION_LESS "3.1.2") + message(FATAL_ERROR "TARGETS not supported by your CMake version!") + endif() # CMAKE > 3.x + set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${CONAN_CMD_CXX_FLAGS}") + set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} ${CONAN_CMD_C_FLAGS}") + set(CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} ${CONAN_CMD_SHARED_LINKER_FLAGS}") + + + conan_package_library_targets("${CONAN_LIBS_SUITESPARSE}" "${CONAN_LIB_DIRS_SUITESPARSE}" + CONAN_PACKAGE_TARGETS_SUITESPARSE "" "" suitesparse) + conan_package_library_targets("${CONAN_LIBS_SUITESPARSE_DEBUG}" "${CONAN_LIB_DIRS_SUITESPARSE_DEBUG}" + CONAN_PACKAGE_TARGETS_SUITESPARSE_DEBUG "" "debug" suitesparse) + conan_package_library_targets("${CONAN_LIBS_SUITESPARSE_RELEASE}" "${CONAN_LIB_DIRS_SUITESPARSE_RELEASE}" + CONAN_PACKAGE_TARGETS_SUITESPARSE_RELEASE "" "release" suitesparse) + + add_library(CONAN_PKG::suitesparse INTERFACE IMPORTED) + + # Property INTERFACE_LINK_FLAGS do not work, necessary to add to INTERFACE_LINK_LIBRARIES + set_property(TARGET CONAN_PKG::suitesparse PROPERTY INTERFACE_LINK_LIBRARIES ${CONAN_PACKAGE_TARGETS_SUITESPARSE} ${CONAN_SHARED_LINKER_FLAGS_SUITESPARSE_LIST} ${CONAN_EXE_LINKER_FLAGS_SUITESPARSE_LIST} + $<$:${CONAN_PACKAGE_TARGETS_SUITESPARSE_RELEASE} ${CONAN_SHARED_LINKER_FLAGS_SUITESPARSE_RELEASE_LIST} ${CONAN_EXE_LINKER_FLAGS_SUITESPARSE_RELEASE_LIST}> + $<$:${CONAN_PACKAGE_TARGETS_SUITESPARSE_RELEASE} ${CONAN_SHARED_LINKER_FLAGS_SUITESPARSE_RELEASE_LIST} ${CONAN_EXE_LINKER_FLAGS_SUITESPARSE_RELEASE_LIST}> + $<$:${CONAN_PACKAGE_TARGETS_SUITESPARSE_RELEASE} ${CONAN_SHARED_LINKER_FLAGS_SUITESPARSE_RELEASE_LIST} ${CONAN_EXE_LINKER_FLAGS_SUITESPARSE_RELEASE_LIST}> + $<$:${CONAN_PACKAGE_TARGETS_SUITESPARSE_DEBUG} ${CONAN_SHARED_LINKER_FLAGS_SUITESPARSE_DEBUG_LIST} ${CONAN_EXE_LINKER_FLAGS_SUITESPARSE_DEBUG_LIST}> + ) + set_property(TARGET CONAN_PKG::suitesparse PROPERTY INTERFACE_INCLUDE_DIRECTORIES ${CONAN_INCLUDE_DIRS_SUITESPARSE} + $<$:${CONAN_INCLUDE_DIRS_SUITESPARSE_RELEASE}> + $<$:${CONAN_INCLUDE_DIRS_SUITESPARSE_RELEASE}> + $<$:${CONAN_INCLUDE_DIRS_SUITESPARSE_RELEASE}> + $<$:${CONAN_INCLUDE_DIRS_SUITESPARSE_DEBUG}>) + set_property(TARGET CONAN_PKG::suitesparse PROPERTY INTERFACE_COMPILE_DEFINITIONS ${CONAN_COMPILE_DEFINITIONS_SUITESPARSE} + $<$:${CONAN_COMPILE_DEFINITIONS_SUITESPARSE_RELEASE}> + $<$:${CONAN_COMPILE_DEFINITIONS_SUITESPARSE_RELEASE}> + $<$:${CONAN_COMPILE_DEFINITIONS_SUITESPARSE_RELEASE}> + $<$:${CONAN_COMPILE_DEFINITIONS_SUITESPARSE_DEBUG}>) + set_property(TARGET CONAN_PKG::suitesparse PROPERTY INTERFACE_COMPILE_OPTIONS ${CONAN_C_FLAGS_SUITESPARSE_LIST} ${CONAN_CXX_FLAGS_SUITESPARSE_LIST} + $<$:${CONAN_C_FLAGS_SUITESPARSE_RELEASE_LIST} ${CONAN_CXX_FLAGS_SUITESPARSE_RELEASE_LIST}> + $<$:${CONAN_C_FLAGS_SUITESPARSE_RELEASE_LIST} ${CONAN_CXX_FLAGS_SUITESPARSE_RELEASE_LIST}> + $<$:${CONAN_C_FLAGS_SUITESPARSE_RELEASE_LIST} ${CONAN_CXX_FLAGS_SUITESPARSE_RELEASE_LIST}> + $<$:${CONAN_C_FLAGS_SUITESPARSE_DEBUG_LIST} ${CONAN_CXX_FLAGS_SUITESPARSE_DEBUG_LIST}>) + + set(CONAN_TARGETS CONAN_PKG::suitesparse) + +endmacro() + + +macro(conan_basic_setup) + set(options TARGETS NO_OUTPUT_DIRS SKIP_RPATH) + cmake_parse_arguments(ARGUMENTS "${options}" "${oneValueArgs}" "${multiValueArgs}" ${ARGN} ) + if(CONAN_EXPORTED) + message(STATUS "Conan: called by CMake conan helper") + endif() + conan_check_compiler() + if(NOT ARGUMENTS_NO_OUTPUT_DIRS) + conan_output_dirs_setup() + endif() + conan_set_find_library_paths() + if(NOT ARGUMENTS_TARGETS) + message(STATUS "Conan: Using cmake global configuration") + conan_global_flags() + else() + message(STATUS "Conan: Using cmake targets configuration") + conan_define_targets() + endif() + if(NOT ARGUMENTS_SKIP_RPATH) + message(STATUS "Conan: Adjusting default RPATHs Conan policies") + conan_set_rpath() + endif() + conan_set_vs_runtime() + conan_set_libcxx() + conan_set_find_paths() +endmacro() + +macro(conan_set_find_paths) + # CMAKE_MODULE_PATH does not have Debug/Release config, but there are variables + # CONAN_CMAKE_MODULE_PATH_DEBUG to be used by the consumer + # CMake can find findXXX.cmake files in the root of packages + set(CMAKE_MODULE_PATH ${CONAN_CMAKE_MODULE_PATH} ${CMAKE_MODULE_PATH}) + + # Make find_package() to work + set(CMAKE_PREFIX_PATH ${CONAN_CMAKE_MODULE_PATH} ${CMAKE_PREFIX_PATH}) + + # Set the find root path (cross build) + set(CMAKE_FIND_ROOT_PATH ${CONAN_CMAKE_FIND_ROOT_PATH} ${CMAKE_FIND_ROOT_PATH}) + if(CONAN_CMAKE_FIND_ROOT_PATH_MODE_PROGRAM) + set(CMAKE_FIND_ROOT_PATH_MODE_PROGRAM ${CONAN_CMAKE_FIND_ROOT_PATH_MODE_PROGRAM}) + endif() + if(CONAN_CMAKE_FIND_ROOT_PATH_MODE_LIBRARY) + set(CMAKE_FIND_ROOT_PATH_MODE_LIBRARY ${CONAN_CMAKE_FIND_ROOT_PATH_MODE_LIBRARY}) + endif() + if(CONAN_CMAKE_FIND_ROOT_PATH_MODE_INCLUDE) + set(CMAKE_FIND_ROOT_PATH_MODE_INCLUDE ${CONAN_CMAKE_FIND_ROOT_PATH_MODE_INCLUDE}) + endif() +endmacro() + +macro(conan_set_find_library_paths) + # CMAKE_INCLUDE_PATH, CMAKE_LIBRARY_PATH does not have Debug/Release config, but there are variables + # CONAN_INCLUDE_DIRS_DEBUG/RELEASE CONAN_LIB_DIRS_DEBUG/RELEASE to be used by the consumer + # For find_library + set(CMAKE_INCLUDE_PATH ${CONAN_INCLUDE_DIRS} ${CMAKE_INCLUDE_PATH}) + set(CMAKE_LIBRARY_PATH ${CONAN_LIB_DIRS} ${CMAKE_LIBRARY_PATH}) +endmacro() + +macro(conan_set_vs_runtime) + if(CONAN_LINK_RUNTIME) + foreach(flag CMAKE_C_FLAGS_RELEASE CMAKE_CXX_FLAGS_RELEASE + CMAKE_C_FLAGS_RELWITHDEBINFO CMAKE_CXX_FLAGS_RELWITHDEBINFO + CMAKE_C_FLAGS_MINSIZEREL CMAKE_CXX_FLAGS_MINSIZEREL) + if(DEFINED ${flag}) + string(REPLACE "/MD" ${CONAN_LINK_RUNTIME} ${flag} "${${flag}}") + endif() + endforeach() + foreach(flag CMAKE_C_FLAGS_DEBUG CMAKE_CXX_FLAGS_DEBUG) + if(DEFINED ${flag}) + string(REPLACE "/MDd" ${CONAN_LINK_RUNTIME} ${flag} "${${flag}}") + endif() + endforeach() + endif() +endmacro() + +macro(conan_flags_setup) + # Macro maintained for backwards compatibility + conan_set_find_library_paths() + conan_global_flags() + conan_set_rpath() + conan_set_vs_runtime() + conan_set_libcxx() +endmacro() + + + +function(conan_find_libraries_abs_path libraries package_libdir libraries_abs_path) + foreach(_LIBRARY_NAME ${libraries}) + unset(CONAN_FOUND_LIBRARY CACHE) + find_library(CONAN_FOUND_LIBRARY NAME ${_LIBRARY_NAME} PATHS ${package_libdir} + NO_DEFAULT_PATH NO_CMAKE_FIND_ROOT_PATH) + if(CONAN_FOUND_LIBRARY) + message(STATUS "Library ${_LIBRARY_NAME} found ${CONAN_FOUND_LIBRARY}") + set(CONAN_FULLPATH_LIBS ${CONAN_FULLPATH_LIBS} ${CONAN_FOUND_LIBRARY}) + else() + message(STATUS "Library ${_LIBRARY_NAME} not found in package, might be system one") + set(CONAN_FULLPATH_LIBS ${CONAN_FULLPATH_LIBS} ${_LIBRARY_NAME}) + endif() + endforeach() + unset(CONAN_FOUND_LIBRARY CACHE) + set(${libraries_abs_path} ${CONAN_FULLPATH_LIBS} PARENT_SCOPE) +endfunction() + +function(conan_package_library_targets libraries package_libdir libraries_abs_path deps build_type package_name) + foreach(_LIBRARY_NAME ${libraries}) + unset(CONAN_FOUND_LIBRARY CACHE) + find_library(CONAN_FOUND_LIBRARY NAME ${_LIBRARY_NAME} PATHS ${package_libdir} + NO_DEFAULT_PATH NO_CMAKE_FIND_ROOT_PATH) + if(CONAN_FOUND_LIBRARY) + message(STATUS "Library ${_LIBRARY_NAME} found ${CONAN_FOUND_LIBRARY}") + set(_LIB_NAME CONAN_LIB::${package_name}_${_LIBRARY_NAME}${build_type}) + add_library(${_LIB_NAME} UNKNOWN IMPORTED) + set_target_properties(${_LIB_NAME} PROPERTIES IMPORTED_LOCATION ${CONAN_FOUND_LIBRARY}) + string(REPLACE " " ";" deps_list "${deps}") + set_property(TARGET ${_LIB_NAME} PROPERTY INTERFACE_LINK_LIBRARIES ${deps_list}) + set(CONAN_FULLPATH_LIBS ${CONAN_FULLPATH_LIBS} ${_LIB_NAME}) + else() + message(STATUS "Library ${_LIBRARY_NAME} not found in package, might be system one") + set(CONAN_FULLPATH_LIBS ${CONAN_FULLPATH_LIBS} ${_LIBRARY_NAME}) + endif() + endforeach() + unset(CONAN_FOUND_LIBRARY CACHE) + set(${libraries_abs_path} ${CONAN_FULLPATH_LIBS} PARENT_SCOPE) +endfunction() + +macro(conan_set_libcxx) + if(DEFINED CONAN_LIBCXX) + message(STATUS "Conan C++ stdlib: ${CONAN_LIBCXX}") + if(CONAN_COMPILER STREQUAL "clang" OR CONAN_COMPILER STREQUAL "apple-clang") + if(CONAN_LIBCXX STREQUAL "libstdc++" OR CONAN_LIBCXX STREQUAL "libstdc++11" ) + set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -stdlib=libstdc++") + elseif(CONAN_LIBCXX STREQUAL "libc++") + set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -stdlib=libc++") + endif() + endif() + if(CONAN_COMPILER STREQUAL "sun-cc") + if(CONAN_LIBCXX STREQUAL "libCstd") + set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -library=Cstd") + elseif(CONAN_LIBCXX STREQUAL "libstdcxx") + set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -library=stdcxx4") + elseif(CONAN_LIBCXX STREQUAL "libstlport") + set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -library=stlport4") + elseif(CONAN_LIBCXX STREQUAL "libstdc++") + set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -library=stdcpp") + endif() + endif() + if(CONAN_LIBCXX STREQUAL "libstdc++11") + add_definitions(-D_GLIBCXX_USE_CXX11_ABI=1) + elseif(CONAN_LIBCXX STREQUAL "libstdc++") + add_definitions(-D_GLIBCXX_USE_CXX11_ABI=0) + endif() + endif() +endmacro() + +macro(conan_set_rpath) + if(APPLE) + # https://cmake.org/Wiki/CMake_RPATH_handling + # CONAN GUIDE: All generated libraries should have the id and dependencies to other + # dylibs without path, just the name, EX: + # libMyLib1.dylib: + # libMyLib1.dylib (compatibility version 0.0.0, current version 0.0.0) + # libMyLib0.dylib (compatibility version 0.0.0, current version 0.0.0) + # /usr/lib/libc++.1.dylib (compatibility version 1.0.0, current version 120.0.0) + # /usr/lib/libSystem.B.dylib (compatibility version 1.0.0, current version 1197.1.1) + set(CMAKE_SKIP_RPATH 1) # AVOID RPATH FOR *.dylib, ALL LIBS BETWEEN THEM AND THE EXE + # SHOULD BE ON THE LINKER RESOLVER PATH (./ IS ONE OF THEM) + endif() +endmacro() + +macro(conan_output_dirs_setup) + set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/bin) + set(CMAKE_RUNTIME_OUTPUT_DIRECTORY_RELEASE ${CMAKE_RUNTIME_OUTPUT_DIRECTORY}) + set(CMAKE_RUNTIME_OUTPUT_DIRECTORY_RELWITHDEBINFO ${CMAKE_RUNTIME_OUTPUT_DIRECTORY}) + set(CMAKE_RUNTIME_OUTPUT_DIRECTORY_MINSIZEREL ${CMAKE_RUNTIME_OUTPUT_DIRECTORY}) + set(CMAKE_RUNTIME_OUTPUT_DIRECTORY_DEBUG ${CMAKE_RUNTIME_OUTPUT_DIRECTORY}) + + set(CMAKE_ARCHIVE_OUTPUT_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/lib) + set(CMAKE_ARCHIVE_OUTPUT_DIRECTORY_RELEASE ${CMAKE_ARCHIVE_OUTPUT_DIRECTORY}) + set(CMAKE_ARCHIVE_OUTPUT_DIRECTORY_RELWITHDEBINFO ${CMAKE_ARCHIVE_OUTPUT_DIRECTORY}) + set(CMAKE_ARCHIVE_OUTPUT_DIRECTORY_MINSIZEREL ${CMAKE_ARCHIVE_OUTPUT_DIRECTORY}) + set(CMAKE_ARCHIVE_OUTPUT_DIRECTORY_DEBUG ${CMAKE_ARCHIVE_OUTPUT_DIRECTORY}) + + set(CMAKE_LIBRARY_OUTPUT_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/lib) + set(CMAKE_LIBRARY_OUTPUT_DIRECTORY_RELEASE ${CMAKE_LIBRARY_OUTPUT_DIRECTORY}) + set(CMAKE_LIBRARY_OUTPUT_DIRECTORY_RELWITHDEBINFO ${CMAKE_LIBRARY_OUTPUT_DIRECTORY}) + set(CMAKE_LIBRARY_OUTPUT_DIRECTORY_MINSIZEREL ${CMAKE_LIBRARY_OUTPUT_DIRECTORY}) + set(CMAKE_LIBRARY_OUTPUT_DIRECTORY_DEBUG ${CMAKE_LIBRARY_OUTPUT_DIRECTORY}) +endmacro() + +macro(conan_split_version VERSION_STRING MAJOR MINOR) + #make a list from the version string + string(REPLACE "." ";" VERSION_LIST "${${VERSION_STRING}}") + + #write output values + list(GET VERSION_LIST 0 ${MAJOR}) + list(GET VERSION_LIST 1 ${MINOR}) +endmacro() + +macro(conan_error_compiler_version) + message(FATAL_ERROR "Incorrect '${CONAN_COMPILER}' version 'compiler.version=${CONAN_COMPILER_VERSION}'" + " is not the one detected by CMake: '${CMAKE_CXX_COMPILER_ID}=" ${VERSION_MAJOR}.${VERSION_MINOR}') +endmacro() + +set(_CONAN_CURRENT_DIR ${CMAKE_CURRENT_LIST_DIR}) +function(conan_get_compiler CONAN_INFO_COMPILER CONAN_INFO_COMPILER_VERSION) + MESSAGE(STATUS "Current conanbuildinfo.cmake directory: " ${_CONAN_CURRENT_DIR}) + if(NOT EXISTS ${_CONAN_CURRENT_DIR}/conaninfo.txt) + message(STATUS "WARN: conaninfo.txt not found") + return() + endif() + + file (READ "${_CONAN_CURRENT_DIR}/conaninfo.txt" CONANINFO) + + string(REGEX MATCH "compiler=([-A-Za-z0-9_ ]+)" _MATCHED ${CONANINFO}) + if(DEFINED CMAKE_MATCH_1) + string(STRIP "${CMAKE_MATCH_1}" _CONAN_INFO_COMPILER) + set(${CONAN_INFO_COMPILER} ${_CONAN_INFO_COMPILER} PARENT_SCOPE) + endif() + + string(REGEX MATCH "compiler.version=([-A-Za-z0-9_.]+)" _MATCHED ${CONANINFO}) + if(DEFINED CMAKE_MATCH_1) + string(STRIP "${CMAKE_MATCH_1}" _CONAN_INFO_COMPILER_VERSION) + set(${CONAN_INFO_COMPILER_VERSION} ${_CONAN_INFO_COMPILER_VERSION} PARENT_SCOPE) + endif() +endfunction() + +function(check_compiler_version) + CONAN_SPLIT_VERSION(CMAKE_CXX_COMPILER_VERSION VERSION_MAJOR VERSION_MINOR) + if(CMAKE_CXX_COMPILER_ID MATCHES MSVC) + # https://cmake.org/cmake/help/v3.2/variable/MSVC_VERSION.html + if( (CONAN_COMPILER_VERSION STREQUAL "14" AND NOT VERSION_MAJOR STREQUAL "19") OR + (CONAN_COMPILER_VERSION STREQUAL "12" AND NOT VERSION_MAJOR STREQUAL "18") OR + (CONAN_COMPILER_VERSION STREQUAL "11" AND NOT VERSION_MAJOR STREQUAL "17") OR + (CONAN_COMPILER_VERSION STREQUAL "10" AND NOT VERSION_MAJOR STREQUAL "16") OR + (CONAN_COMPILER_VERSION STREQUAL "9" AND NOT VERSION_MAJOR STREQUAL "15") OR + (CONAN_COMPILER_VERSION STREQUAL "8" AND NOT VERSION_MAJOR STREQUAL "14") OR + (CONAN_COMPILER_VERSION STREQUAL "7" AND NOT VERSION_MAJOR STREQUAL "13") OR + (CONAN_COMPILER_VERSION STREQUAL "6" AND NOT VERSION_MAJOR STREQUAL "12") ) + conan_error_compiler_version() + endif() + elseif(CONAN_COMPILER STREQUAL "gcc" OR CONAN_COMPILER MATCHES "clang" OR CONAN_COMPILER STREQUAL "sun-cc") + if(NOT ${VERSION_MAJOR}.${VERSION_MINOR} VERSION_EQUAL CONAN_COMPILER_VERSION) + conan_error_compiler_version() + endif() + else() + message(STATUS "WARN: Unknown compiler '${CONAN_COMPILER}', skipping the version check...") + endif() +endfunction() + +function(conan_check_compiler) + if(NOT DEFINED CMAKE_CXX_COMPILER_ID) + if(DEFINED CMAKE_C_COMPILER_ID) + message(STATUS "This project seems to be plain C, using '${CMAKE_C_COMPILER_ID}' compiler") + set(CMAKE_CXX_COMPILER_ID ${CMAKE_C_COMPILER_ID}) + set(CMAKE_CXX_COMPILER_VERSION ${CMAKE_C_COMPILER_VERSION}) + else() + message(FATAL_ERROR "This project seems to be plain C, but no compiler defined") + endif() + endif() + if(CONAN_DISABLE_CHECK_COMPILER) + message(STATUS "WARN: Disabled conan compiler checks") + return() + endif() + + if(NOT DEFINED CONAN_COMPILER) + conan_get_compiler(CONAN_COMPILER CONAN_COMPILER_VERSION) + if(NOT DEFINED CONAN_COMPILER) + message(STATUS "WARN: CONAN_COMPILER variable not set, please make sure yourself that " + "your compiler and version matches your declared settings") + return() + endif() + endif() + + if(NOT CMAKE_HOST_SYSTEM_NAME STREQUAL ${CMAKE_SYSTEM_NAME}) + set(CROSS_BUILDING 1) + endif() + + # Avoid checks when cross compiling, apple-clang crashes because its APPLE but not apple-clang + # Actually CMake is detecting "clang" when you are using apple-clang, only if CMP0025 is set to NEW will detect apple-clang + if( (CONAN_COMPILER STREQUAL "Visual Studio" AND NOT CMAKE_CXX_COMPILER_ID MATCHES MSVC) OR + (CONAN_COMPILER STREQUAL "gcc" AND NOT CMAKE_CXX_COMPILER_ID MATCHES "GNU") OR + (CONAN_COMPILER STREQUAL "apple-clang" AND NOT CROSS_BUILDING AND (NOT APPLE OR NOT CMAKE_CXX_COMPILER_ID MATCHES "Clang")) OR + (CONAN_COMPILER STREQUAL "clang" AND NOT CMAKE_CXX_COMPILER_ID MATCHES "Clang") OR + (CONAN_COMPILER STREQUAL "sun-cc" AND NOT CMAKE_CXX_COMPILER_ID MATCHES "SunPro") ) + message(FATAL_ERROR "Incorrect '${CONAN_COMPILER}', is not the one detected by CMake: '${CMAKE_CXX_COMPILER_ID}'") + endif() + + + if(NOT DEFINED CONAN_COMPILER_VERSION) + message(STATUS "WARN: CONAN_COMPILER_VERSION variable not set, please make sure yourself " + "that your compiler version matches your declared settings") + return() + endif() + check_compiler_version() +endfunction() + +macro(conan_set_flags build_type) + set(CMAKE_CXX_FLAGS${build_type} "${CMAKE_CXX_FLAGS${build_type}} ${CONAN_CXX_FLAGS${build_type}}") + set(CMAKE_C_FLAGS${build_type} "${CMAKE_C_FLAGS${build_type}} ${CONAN_C_FLAGS${build_type}}") + set(CMAKE_SHARED_LINKER_FLAGS${build_type} "${CMAKE_SHARED_LINKER_FLAGS${build_type}} ${CONAN_SHARED_LINKER_FLAGS${build_type}}") + set(CMAKE_EXE_LINKER_FLAGS${build_type} "${CMAKE_EXE_LINKER_FLAGS${build_type}} ${CONAN_EXE_LINKER_FLAGS${build_type}}") +endmacro() + +macro(conan_global_flags) + if(CONAN_SYSTEM_INCLUDES) + include_directories(SYSTEM ${CONAN_INCLUDE_DIRS} + "$<$:${CONAN_INCLUDE_DIRS_RELEASE}>" + "$<$:${CONAN_INCLUDE_DIRS_RELEASE}>" + "$<$:${CONAN_INCLUDE_DIRS_RELEASE}>" + "$<$:${CONAN_INCLUDE_DIRS_DEBUG}>") + else() + include_directories(${CONAN_INCLUDE_DIRS} + "$<$:${CONAN_INCLUDE_DIRS_RELEASE}>" + "$<$:${CONAN_INCLUDE_DIRS_RELEASE}>" + "$<$:${CONAN_INCLUDE_DIRS_RELEASE}>" + "$<$:${CONAN_INCLUDE_DIRS_DEBUG}>") + endif() + + link_directories(${CONAN_LIB_DIRS}) + + conan_find_libraries_abs_path("${CONAN_LIBS_DEBUG}" "${CONAN_LIB_DIRS_DEBUG}" + CONAN_LIBS_DEBUG) + conan_find_libraries_abs_path("${CONAN_LIBS_RELEASE}" "${CONAN_LIB_DIRS_RELEASE}" + CONAN_LIBS_RELEASE) + + add_compile_options(${CONAN_DEFINES} + "$<$:${CONAN_DEFINES_DEBUG}>" + "$<$:${CONAN_DEFINES_RELEASE}>" + "$<$:${CONAN_DEFINES_RELEASE}>" + "$<$:${CONAN_DEFINES_RELEASE}>") + + conan_set_flags("") + conan_set_flags("_RELEASE") + conan_set_flags("_DEBUG") + +endmacro() + +macro(conan_target_link_libraries target) + if(CONAN_TARGETS) + target_link_libraries(${target} ${CONAN_TARGETS}) + else() + target_link_libraries(${target} ${CONAN_LIBS}) + foreach(_LIB ${CONAN_LIBS_RELEASE}) + target_link_libraries(${target} optimized ${_LIB}) + endforeach() + foreach(_LIB ${CONAN_LIBS_DEBUG}) + target_link_libraries(${target} debug ${_LIB}) + endforeach() + endif() +endmacro() + + +### Definition of user declared vars (user_info) ### + diff --git a/suitesparse/test_package/build/aadcc2c40dab68a95374017995be48233063b305/conanbuildinfo.txt b/suitesparse/test_package/build/aadcc2c40dab68a95374017995be48233063b305/conanbuildinfo.txt new file mode 100644 index 0000000..94d9ebe --- /dev/null +++ b/suitesparse/test_package/build/aadcc2c40dab68a95374017995be48233063b305/conanbuildinfo.txt @@ -0,0 +1,99 @@ +[includedirs] +/home/tom/.conan/data/suitesparse/5164583/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/include +/home/tom/.conan/data/suitesparse/5164583/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/include/suitesparse + +[libdirs] +/home/tom/.conan/data/suitesparse/5164583/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/lib + +[bindirs] +/home/tom/.conan/data/suitesparse/5164583/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/bin + +[resdirs] + + +[builddirs] +/home/tom/.conan/data/suitesparse/5164583/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/ + +[libs] +libamd +libbtf +libcamd +libccolamd +libcholmod +libcolamd +libcxsparse +libklu +libldl +libspqr +libumfpack +metis +suitesparseconfig + +[defines] + + +[cppflags] + + +[cflags] + + +[sharedlinkflags] + + +[exelinkflags] + + + +[includedirs_suitesparse] +/home/tom/.conan/data/suitesparse/5164583/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/include +/home/tom/.conan/data/suitesparse/5164583/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/include/suitesparse + +[libdirs_suitesparse] +/home/tom/.conan/data/suitesparse/5164583/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/lib + +[bindirs_suitesparse] +/home/tom/.conan/data/suitesparse/5164583/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/bin + +[resdirs_suitesparse] + + +[builddirs_suitesparse] +/home/tom/.conan/data/suitesparse/5164583/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9/ + +[libs_suitesparse] +libamd +libbtf +libcamd +libccolamd +libcholmod +libcolamd +libcxsparse +libklu +libldl +libspqr +libumfpack +metis +suitesparseconfig + +[defines_suitesparse] + + +[cppflags_suitesparse] + + +[cflags_suitesparse] + + +[sharedlinkflags_suitesparse] + + +[exelinkflags_suitesparse] + + +[rootpath_suitesparse] +/home/tom/.conan/data/suitesparse/5164583/intence/testing/package/81607951755e61cf17149d40bed6aba5b3a079a9 + + +[USER_suitesparse] +[ENV_suitesparse] \ No newline at end of file diff --git a/suitesparse/test_package/build/aadcc2c40dab68a95374017995be48233063b305/conaninfo.txt b/suitesparse/test_package/build/aadcc2c40dab68a95374017995be48233063b305/conaninfo.txt new file mode 100644 index 0000000..2ba1769 --- /dev/null +++ b/suitesparse/test_package/build/aadcc2c40dab68a95374017995be48233063b305/conaninfo.txt @@ -0,0 +1,36 @@ +[settings] + arch=x86_64 + build_type=Release + compiler=gcc + compiler.libcxx=libstdc++ + compiler.version=5.4 + os=Linux + +[requires] + suitesparse/5164583.Y.Z + +[options] + + +[full_settings] + arch=x86_64 + build_type=Release + compiler=gcc + compiler.libcxx=libstdc++ + compiler.version=5.4 + os=Linux + +[full_requires] + suitesparse/5164583@intence/testing:81607951755e61cf17149d40bed6aba5b3a079a9 + +[full_options] + + +[scope] + + +[recipe_hash] + + +[env] + diff --git a/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/ALL_BUILD.vcxproj b/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/ALL_BUILD.vcxproj new file mode 100644 index 0000000..2a4f614 --- /dev/null +++ b/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/ALL_BUILD.vcxproj @@ -0,0 +1,169 @@ + + + + + Debug + x64 + + + Release + x64 + + + MinSizeRel + x64 + + + RelWithDebInfo + x64 + + + + {73CECBEC-C161-36B1-A885-68DD679270C8} + Win32Proj + x64 + ALL_BUILD + + + + Utility + MultiByte + v100 + + + Utility + MultiByte + v100 + + + Utility + MultiByte + v100 + + + Utility + MultiByte + v100 + + + + + + + + + + <_ProjectFileVersion>10.0.20506.1 + $(Platform)\$(Configuration)\$(ProjectName)\ + $(Platform)\$(Configuration)\$(ProjectName)\ + $(Platform)\$(Configuration)\$(ProjectName)\ + $(Platform)\$(Configuration)\$(ProjectName)\ + + + + C:\Users\t.vogl\.conan\data\suitesparse\5164583\intence\testing\package\85f780d0530411a64b0be4407b381706014b445d\include;C:\Users\t.vogl\.conan\data\suitesparse\5164583\intence\testing\package\85f780d0530411a64b0be4407b381706014b445d\include\suitesparse;%(AdditionalIncludeDirectories) + $(ProjectDir)/$(IntDir) + %(Filename).h + %(Filename).tlb + %(Filename)_i.c + %(Filename)_p.c + + + + + C:\Users\t.vogl\.conan\data\suitesparse\5164583\intence\testing\package\85f780d0530411a64b0be4407b381706014b445d\include;C:\Users\t.vogl\.conan\data\suitesparse\5164583\intence\testing\package\85f780d0530411a64b0be4407b381706014b445d\include\suitesparse;%(AdditionalIncludeDirectories) + $(ProjectDir)/$(IntDir) + %(Filename).h + %(Filename).tlb + %(Filename)_i.c + %(Filename)_p.c + + + + + C:\Users\t.vogl\.conan\data\suitesparse\5164583\intence\testing\package\85f780d0530411a64b0be4407b381706014b445d\include;C:\Users\t.vogl\.conan\data\suitesparse\5164583\intence\testing\package\85f780d0530411a64b0be4407b381706014b445d\include\suitesparse;%(AdditionalIncludeDirectories) + $(ProjectDir)/$(IntDir) + %(Filename).h + %(Filename).tlb + %(Filename)_i.c + %(Filename)_p.c + + + + + C:\Users\t.vogl\.conan\data\suitesparse\5164583\intence\testing\package\85f780d0530411a64b0be4407b381706014b445d\include;C:\Users\t.vogl\.conan\data\suitesparse\5164583\intence\testing\package\85f780d0530411a64b0be4407b381706014b445d\include\suitesparse;%(AdditionalIncludeDirectories) + $(ProjectDir)/$(IntDir) + %(Filename).h + %(Filename).tlb + %(Filename)_i.c + %(Filename)_p.c + + + + + Building Custom Rule C:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/src/CMakeLists.txt + setlocal +"C:\Program Files\CMake\bin\cmake.exe" -HC:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/src -BC:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd --check-stamp-file C:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/generate.stamp +if %errorlevel% neq 0 goto :cmEnd +:cmEnd +endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone +:cmErrorLevel +exit /b %1 +:cmDone +if %errorlevel% neq 0 goto :VCEnd + C:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/src/CMakeLists.txt;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\src\CMakeLists.txt;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineSystem.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeSystem.cmake.in;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\3.10.0\CMakeSystem.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeSystemSpecificInitialize.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCompilerId.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCompilerIdDetection.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\ADSP-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\ARMCC-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\AppleClang-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Clang-DetermineCompilerInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Borland-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Bruce-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Clang-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Clang-DetermineCompilerInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Compaq-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Cray-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Embarcadero-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Fujitsu-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\GHS-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\GNU-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\HP-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\IAR-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Intel-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\MIPSpro-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\MSVC-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\NVIDIA-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\OpenWatcom-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\PGI-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\PathScale-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\SCO-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\SDCC-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\SunPro-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\TI-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\TinyCC-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\VisualAge-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\IBMCPP-C-DetermineVersionInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Watcom-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\XL-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\IBMCPP-C-DetermineVersionInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\zOS-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\IBMCPP-C-DetermineVersionInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CompilerId\VS-10.vcxproj.in;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeFindBinUtils.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCCompiler.cmake.in;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\3.10.0\CMakeCCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCXXCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\Windows-Determine-CXX.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCompilerId.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCompilerIdDetection.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\ADSP-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\ARMCC-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\AppleClang-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Clang-DetermineCompilerInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Borland-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Clang-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Clang-DetermineCompilerInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Comeau-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Compaq-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Cray-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Embarcadero-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Fujitsu-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\GHS-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\GNU-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\HP-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\IAR-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Intel-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\MIPSpro-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\MSVC-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\NVIDIA-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\OpenWatcom-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\PGI-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\PathScale-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\SCO-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\SunPro-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\TI-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\VisualAge-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\IBMCPP-CXX-DetermineVersionInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Watcom-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\XL-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\IBMCPP-CXX-DetermineVersionInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\zOS-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\IBMCPP-CXX-DetermineVersionInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CompilerId\VS-10.vcxproj.in;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeFindBinUtils.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCXXCompiler.cmake.in;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\3.10.0\CMakeCXXCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeSystemSpecificInformation.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeGenericSystem.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\Windows.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\WindowsPaths.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCInformation.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeLanguageInformation.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\Windows-MSVC-C.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\Windows-MSVC.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineRCCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeRCCompiler.cmake.in;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\3.10.0\CMakeRCCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeRCInformation.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeTestRCCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCommonLanguageInclude.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeTestCCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeTestCompilerCommon.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCompilerABI.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeParseImplicitLinkInfo.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCCompilerABI.c;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCompileFeatures.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCCompiler.cmake.in;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\3.10.0\CMakeCCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCXXInformation.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeLanguageInformation.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\MSVC-CXX.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\CMakeCommonCompilerMacros.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\Windows-MSVC-CXX.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\Windows-MSVC.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCommonLanguageInclude.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeTestCXXCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeTestCompilerCommon.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCompilerABI.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeParseImplicitLinkInfo.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCXXCompilerABI.cpp;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCompileFeatures.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Internal\FeatureTesting.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\MSVC-CXX-FeatureTests.cmake;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\feature_tests.cxx;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCXXCompiler.cmake.in;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\3.10.0\CMakeCXXCompiler.cmake;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\conanbuildinfo.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeParseArguments.cmake;C:\Users\t.vogl\.conan\data\suitesparse\5164583\intence\testing\package\85f780d0530411a64b0be4407b381706014b445d\FindCholmod.cmake;C:\Users\t.vogl\.conan\data\suitesparse\5164583\intence\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\cmake\suitesparse-4.5.0\suitesparse-config-version.cmake;C:\Users\t.vogl\.conan\data\suitesparse\5164583\intence\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\cmake\suitesparse-4.5.0\suitesparse-config.cmake;C:\Users\t.vogl\.conan\data\suitesparse\5164583\intence\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\cmake\suitesparse-4.5.0\SuiteSparse-targets.cmake;C:\Users\t.vogl\.conan\data\suitesparse\5164583\intence\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\cmake\suitesparse-4.5.0\SuiteSparse-targets-release.cmake;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\src\CMakeLists.txt;%(AdditionalInputs) + C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\generate.stamp + Building Custom Rule C:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/src/CMakeLists.txt + setlocal +"C:\Program Files\CMake\bin\cmake.exe" -HC:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/src -BC:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd --check-stamp-file C:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/generate.stamp +if %errorlevel% neq 0 goto :cmEnd +:cmEnd +endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone +:cmErrorLevel +exit /b %1 +:cmDone +if %errorlevel% neq 0 goto :VCEnd + C:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/src/CMakeLists.txt;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\src\CMakeLists.txt;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineSystem.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeSystem.cmake.in;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\3.10.0\CMakeSystem.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeSystemSpecificInitialize.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCompilerId.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCompilerIdDetection.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\ADSP-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\ARMCC-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\AppleClang-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Clang-DetermineCompilerInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Borland-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Bruce-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Clang-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Clang-DetermineCompilerInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Compaq-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Cray-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Embarcadero-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Fujitsu-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\GHS-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\GNU-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\HP-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\IAR-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Intel-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\MIPSpro-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\MSVC-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\NVIDIA-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\OpenWatcom-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\PGI-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\PathScale-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\SCO-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\SDCC-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\SunPro-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\TI-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\TinyCC-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\VisualAge-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\IBMCPP-C-DetermineVersionInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Watcom-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\XL-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\IBMCPP-C-DetermineVersionInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\zOS-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\IBMCPP-C-DetermineVersionInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CompilerId\VS-10.vcxproj.in;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeFindBinUtils.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCCompiler.cmake.in;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\3.10.0\CMakeCCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCXXCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\Windows-Determine-CXX.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCompilerId.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCompilerIdDetection.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\ADSP-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\ARMCC-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\AppleClang-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Clang-DetermineCompilerInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Borland-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Clang-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Clang-DetermineCompilerInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Comeau-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Compaq-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Cray-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Embarcadero-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Fujitsu-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\GHS-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\GNU-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\HP-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\IAR-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Intel-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\MIPSpro-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\MSVC-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\NVIDIA-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\OpenWatcom-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\PGI-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\PathScale-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\SCO-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\SunPro-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\TI-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\VisualAge-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\IBMCPP-CXX-DetermineVersionInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Watcom-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\XL-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\IBMCPP-CXX-DetermineVersionInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\zOS-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\IBMCPP-CXX-DetermineVersionInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CompilerId\VS-10.vcxproj.in;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeFindBinUtils.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCXXCompiler.cmake.in;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\3.10.0\CMakeCXXCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeSystemSpecificInformation.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeGenericSystem.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\Windows.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\WindowsPaths.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCInformation.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeLanguageInformation.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\Windows-MSVC-C.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\Windows-MSVC.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineRCCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeRCCompiler.cmake.in;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\3.10.0\CMakeRCCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeRCInformation.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeTestRCCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCommonLanguageInclude.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeTestCCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeTestCompilerCommon.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCompilerABI.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeParseImplicitLinkInfo.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCCompilerABI.c;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCompileFeatures.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCCompiler.cmake.in;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\3.10.0\CMakeCCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCXXInformation.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeLanguageInformation.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\MSVC-CXX.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\CMakeCommonCompilerMacros.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\Windows-MSVC-CXX.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\Windows-MSVC.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCommonLanguageInclude.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeTestCXXCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeTestCompilerCommon.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCompilerABI.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeParseImplicitLinkInfo.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCXXCompilerABI.cpp;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCompileFeatures.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Internal\FeatureTesting.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\MSVC-CXX-FeatureTests.cmake;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\feature_tests.cxx;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCXXCompiler.cmake.in;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\3.10.0\CMakeCXXCompiler.cmake;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\conanbuildinfo.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeParseArguments.cmake;C:\Users\t.vogl\.conan\data\suitesparse\5164583\intence\testing\package\85f780d0530411a64b0be4407b381706014b445d\FindCholmod.cmake;C:\Users\t.vogl\.conan\data\suitesparse\5164583\intence\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\cmake\suitesparse-4.5.0\suitesparse-config-version.cmake;C:\Users\t.vogl\.conan\data\suitesparse\5164583\intence\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\cmake\suitesparse-4.5.0\suitesparse-config.cmake;C:\Users\t.vogl\.conan\data\suitesparse\5164583\intence\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\cmake\suitesparse-4.5.0\SuiteSparse-targets.cmake;C:\Users\t.vogl\.conan\data\suitesparse\5164583\intence\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\cmake\suitesparse-4.5.0\SuiteSparse-targets-release.cmake;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\src\CMakeLists.txt;%(AdditionalInputs) + C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\generate.stamp + Building Custom Rule C:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/src/CMakeLists.txt + setlocal +"C:\Program Files\CMake\bin\cmake.exe" -HC:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/src -BC:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd --check-stamp-file C:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/generate.stamp +if %errorlevel% neq 0 goto :cmEnd +:cmEnd +endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone +:cmErrorLevel +exit /b %1 +:cmDone +if %errorlevel% neq 0 goto :VCEnd + C:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/src/CMakeLists.txt;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\src\CMakeLists.txt;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineSystem.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeSystem.cmake.in;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\3.10.0\CMakeSystem.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeSystemSpecificInitialize.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCompilerId.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCompilerIdDetection.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\ADSP-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\ARMCC-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\AppleClang-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Clang-DetermineCompilerInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Borland-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Bruce-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Clang-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Clang-DetermineCompilerInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Compaq-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Cray-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Embarcadero-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Fujitsu-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\GHS-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\GNU-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\HP-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\IAR-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Intel-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\MIPSpro-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\MSVC-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\NVIDIA-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\OpenWatcom-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\PGI-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\PathScale-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\SCO-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\SDCC-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\SunPro-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\TI-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\TinyCC-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\VisualAge-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\IBMCPP-C-DetermineVersionInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Watcom-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\XL-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\IBMCPP-C-DetermineVersionInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\zOS-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\IBMCPP-C-DetermineVersionInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CompilerId\VS-10.vcxproj.in;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeFindBinUtils.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCCompiler.cmake.in;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\3.10.0\CMakeCCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCXXCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\Windows-Determine-CXX.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCompilerId.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCompilerIdDetection.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\ADSP-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\ARMCC-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\AppleClang-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Clang-DetermineCompilerInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Borland-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Clang-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Clang-DetermineCompilerInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Comeau-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Compaq-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Cray-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Embarcadero-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Fujitsu-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\GHS-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\GNU-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\HP-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\IAR-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Intel-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\MIPSpro-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\MSVC-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\NVIDIA-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\OpenWatcom-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\PGI-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\PathScale-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\SCO-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\SunPro-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\TI-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\VisualAge-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\IBMCPP-CXX-DetermineVersionInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Watcom-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\XL-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\IBMCPP-CXX-DetermineVersionInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\zOS-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\IBMCPP-CXX-DetermineVersionInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CompilerId\VS-10.vcxproj.in;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeFindBinUtils.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCXXCompiler.cmake.in;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\3.10.0\CMakeCXXCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeSystemSpecificInformation.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeGenericSystem.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\Windows.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\WindowsPaths.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCInformation.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeLanguageInformation.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\Windows-MSVC-C.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\Windows-MSVC.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineRCCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeRCCompiler.cmake.in;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\3.10.0\CMakeRCCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeRCInformation.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeTestRCCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCommonLanguageInclude.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeTestCCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeTestCompilerCommon.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCompilerABI.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeParseImplicitLinkInfo.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCCompilerABI.c;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCompileFeatures.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCCompiler.cmake.in;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\3.10.0\CMakeCCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCXXInformation.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeLanguageInformation.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\MSVC-CXX.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\CMakeCommonCompilerMacros.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\Windows-MSVC-CXX.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\Windows-MSVC.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCommonLanguageInclude.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeTestCXXCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeTestCompilerCommon.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCompilerABI.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeParseImplicitLinkInfo.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCXXCompilerABI.cpp;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCompileFeatures.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Internal\FeatureTesting.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\MSVC-CXX-FeatureTests.cmake;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\feature_tests.cxx;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCXXCompiler.cmake.in;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\3.10.0\CMakeCXXCompiler.cmake;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\conanbuildinfo.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeParseArguments.cmake;C:\Users\t.vogl\.conan\data\suitesparse\5164583\intence\testing\package\85f780d0530411a64b0be4407b381706014b445d\FindCholmod.cmake;C:\Users\t.vogl\.conan\data\suitesparse\5164583\intence\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\cmake\suitesparse-4.5.0\suitesparse-config-version.cmake;C:\Users\t.vogl\.conan\data\suitesparse\5164583\intence\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\cmake\suitesparse-4.5.0\suitesparse-config.cmake;C:\Users\t.vogl\.conan\data\suitesparse\5164583\intence\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\cmake\suitesparse-4.5.0\SuiteSparse-targets.cmake;C:\Users\t.vogl\.conan\data\suitesparse\5164583\intence\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\cmake\suitesparse-4.5.0\SuiteSparse-targets-release.cmake;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\src\CMakeLists.txt;%(AdditionalInputs) + C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\generate.stamp + Building Custom Rule C:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/src/CMakeLists.txt + setlocal +"C:\Program Files\CMake\bin\cmake.exe" -HC:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/src -BC:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd --check-stamp-file C:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/generate.stamp +if %errorlevel% neq 0 goto :cmEnd +:cmEnd +endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone +:cmErrorLevel +exit /b %1 +:cmDone +if %errorlevel% neq 0 goto :VCEnd + C:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/src/CMakeLists.txt;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\src\CMakeLists.txt;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineSystem.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeSystem.cmake.in;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\3.10.0\CMakeSystem.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeSystemSpecificInitialize.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCompilerId.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCompilerIdDetection.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\ADSP-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\ARMCC-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\AppleClang-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Clang-DetermineCompilerInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Borland-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Bruce-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Clang-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Clang-DetermineCompilerInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Compaq-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Cray-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Embarcadero-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Fujitsu-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\GHS-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\GNU-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\HP-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\IAR-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Intel-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\MIPSpro-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\MSVC-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\NVIDIA-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\OpenWatcom-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\PGI-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\PathScale-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\SCO-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\SDCC-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\SunPro-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\TI-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\TinyCC-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\VisualAge-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\IBMCPP-C-DetermineVersionInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Watcom-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\XL-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\IBMCPP-C-DetermineVersionInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\zOS-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\IBMCPP-C-DetermineVersionInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CompilerId\VS-10.vcxproj.in;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeFindBinUtils.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCCompiler.cmake.in;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\3.10.0\CMakeCCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCXXCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\Windows-Determine-CXX.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCompilerId.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCompilerIdDetection.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\ADSP-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\ARMCC-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\AppleClang-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Clang-DetermineCompilerInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Borland-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Clang-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Clang-DetermineCompilerInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Comeau-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Compaq-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Cray-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Embarcadero-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Fujitsu-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\GHS-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\GNU-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\HP-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\IAR-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Intel-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\MIPSpro-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\MSVC-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\NVIDIA-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\OpenWatcom-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\PGI-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\PathScale-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\SCO-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\SunPro-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\TI-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\VisualAge-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\IBMCPP-CXX-DetermineVersionInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Watcom-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\XL-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\IBMCPP-CXX-DetermineVersionInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\zOS-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\IBMCPP-CXX-DetermineVersionInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CompilerId\VS-10.vcxproj.in;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeFindBinUtils.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCXXCompiler.cmake.in;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\3.10.0\CMakeCXXCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeSystemSpecificInformation.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeGenericSystem.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\Windows.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\WindowsPaths.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCInformation.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeLanguageInformation.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\Windows-MSVC-C.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\Windows-MSVC.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineRCCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeRCCompiler.cmake.in;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\3.10.0\CMakeRCCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeRCInformation.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeTestRCCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCommonLanguageInclude.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeTestCCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeTestCompilerCommon.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCompilerABI.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeParseImplicitLinkInfo.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCCompilerABI.c;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCompileFeatures.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCCompiler.cmake.in;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\3.10.0\CMakeCCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCXXInformation.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeLanguageInformation.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\MSVC-CXX.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\CMakeCommonCompilerMacros.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\Windows-MSVC-CXX.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\Windows-MSVC.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCommonLanguageInclude.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeTestCXXCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeTestCompilerCommon.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCompilerABI.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeParseImplicitLinkInfo.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCXXCompilerABI.cpp;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCompileFeatures.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Internal\FeatureTesting.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\MSVC-CXX-FeatureTests.cmake;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\feature_tests.cxx;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCXXCompiler.cmake.in;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\3.10.0\CMakeCXXCompiler.cmake;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\conanbuildinfo.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeParseArguments.cmake;C:\Users\t.vogl\.conan\data\suitesparse\5164583\intence\testing\package\85f780d0530411a64b0be4407b381706014b445d\FindCholmod.cmake;C:\Users\t.vogl\.conan\data\suitesparse\5164583\intence\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\cmake\suitesparse-4.5.0\suitesparse-config-version.cmake;C:\Users\t.vogl\.conan\data\suitesparse\5164583\intence\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\cmake\suitesparse-4.5.0\suitesparse-config.cmake;C:\Users\t.vogl\.conan\data\suitesparse\5164583\intence\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\cmake\suitesparse-4.5.0\SuiteSparse-targets.cmake;C:\Users\t.vogl\.conan\data\suitesparse\5164583\intence\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\cmake\suitesparse-4.5.0\SuiteSparse-targets-release.cmake;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\src\CMakeLists.txt;%(AdditionalInputs) + C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\generate.stamp + + + + + + + {1AB0F46E-D70A-39A6-9F4B-01E2564B21BE} + ZERO_CHECK + + + {50A1EB3F-2C13-32E9-BF39-957D393FD2F0} + cholmod-test + + + + + + \ No newline at end of file diff --git a/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/ALL_BUILD.vcxproj.filters b/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/ALL_BUILD.vcxproj.filters new file mode 100644 index 0000000..c7cf393 --- /dev/null +++ b/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/ALL_BUILD.vcxproj.filters @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeCache.txt b/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeCache.txt new file mode 100644 index 0000000..77fc009 --- /dev/null +++ b/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeCache.txt @@ -0,0 +1,335 @@ +# This is the CMakeCache file. +# For build in directory: c:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd +# It was generated by CMake: C:/Program Files/CMake/bin/cmake.exe +# 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 +######################## + +//For backwards compatibility, what version of CMake commands and +// syntax should this version of CMake try to support. +CMAKE_BACKWARDS_COMPATIBILITY:STRING=2.4 + +//Semicolon separated list of supported configuration types, only +// supports Debug, Release, MinSizeRel, and RelWithDebInfo, anything +// else will be ignored. +CMAKE_CONFIGURATION_TYPES:STRING=Debug;Release;MinSizeRel;RelWithDebInfo + +//Flags used by the compiler during all build types. +CMAKE_CXX_FLAGS:STRING=/DWIN32 /D_WINDOWS /W3 /GR /EHsc + +//Flags used by the compiler during debug builds. +CMAKE_CXX_FLAGS_DEBUG:STRING=/MDd /Zi /Ob0 /Od /RTC1 + +//Flags used by the compiler during release builds for minimum +// size. +CMAKE_CXX_FLAGS_MINSIZEREL:STRING=/MD /O1 /Ob1 /DNDEBUG + +//Flags used by the compiler during release builds. +CMAKE_CXX_FLAGS_RELEASE:STRING=/MD /O2 /Ob2 /DNDEBUG + +//Flags used by the compiler during release builds with debug info. +CMAKE_CXX_FLAGS_RELWITHDEBINFO:STRING=/MD /Zi /O2 /Ob1 /DNDEBUG + +//Libraries linked by default with all C++ applications. +CMAKE_CXX_STANDARD_LIBRARIES:STRING=kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib + +//Flags used by the compiler during all build types. +CMAKE_C_FLAGS:STRING=/DWIN32 /D_WINDOWS /W3 + +//Flags used by the compiler during debug builds. +CMAKE_C_FLAGS_DEBUG:STRING=/MDd /Zi /Ob0 /Od /RTC1 + +//Flags used by the compiler during release builds for minimum +// size. +CMAKE_C_FLAGS_MINSIZEREL:STRING=/MD /O1 /Ob1 /DNDEBUG + +//Flags used by the compiler during release builds. +CMAKE_C_FLAGS_RELEASE:STRING=/MD /O2 /Ob2 /DNDEBUG + +//Flags used by the compiler during release builds with debug info. +CMAKE_C_FLAGS_RELWITHDEBINFO:STRING=/MD /Zi /O2 /Ob1 /DNDEBUG + +//Libraries linked by default with all C applications. +CMAKE_C_STANDARD_LIBRARIES:STRING=kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib + +//Flags used by the linker. +CMAKE_EXE_LINKER_FLAGS:STRING=/machine:x64 + +//Flags used by the linker during debug builds. +CMAKE_EXE_LINKER_FLAGS_DEBUG:STRING=/debug /INCREMENTAL + +//Flags used by the linker during release minsize builds. +CMAKE_EXE_LINKER_FLAGS_MINSIZEREL:STRING=/INCREMENTAL:NO + +//Flags used by the linker during release builds. +CMAKE_EXE_LINKER_FLAGS_RELEASE:STRING=/INCREMENTAL:NO + +//Flags used by the linker during Release with Debug Info builds. +CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO:STRING=/debug /INCREMENTAL + +//Install path prefix, prepended onto install directories. +CMAKE_INSTALL_PREFIX:PATH=C:/Program Files/SuitesparseTest + +//Path to a program. +CMAKE_LINKER:FILEPATH=C:/Program Files (x86)/Microsoft Visual Studio 10.0/VC/bin/x86_amd64/link.exe + +//Flags used by the linker during the creation of modules. +CMAKE_MODULE_LINKER_FLAGS:STRING=/machine:x64 + +//Flags used by the linker during debug builds. +CMAKE_MODULE_LINKER_FLAGS_DEBUG:STRING=/debug /INCREMENTAL + +//Flags used by the linker during release minsize builds. +CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL:STRING=/INCREMENTAL:NO + +//Flags used by the linker during release builds. +CMAKE_MODULE_LINKER_FLAGS_RELEASE:STRING=/INCREMENTAL:NO + +//Flags used by the linker during Release with Debug Info builds. +CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO:STRING=/debug /INCREMENTAL + +//Value Computed by CMake +CMAKE_PROJECT_NAME:STATIC=SuitesparseTest + +//RC compiler +CMAKE_RC_COMPILER:FILEPATH=rc + +//Flags for Windows Resource Compiler. +CMAKE_RC_FLAGS:STRING=/DWIN32 + +//Flags for Windows Resource Compiler during debug builds. +CMAKE_RC_FLAGS_DEBUG:STRING=/D_DEBUG + +//Flags for Windows Resource Compiler during release builds for +// minimum size. +CMAKE_RC_FLAGS_MINSIZEREL:STRING= + +//Flags for Windows Resource Compiler during release builds. +CMAKE_RC_FLAGS_RELEASE:STRING= + +//Flags for Windows Resource Compiler during release builds with +// debug info. +CMAKE_RC_FLAGS_RELWITHDEBINFO:STRING= + +//Flags used by the linker during the creation of dll's. +CMAKE_SHARED_LINKER_FLAGS:STRING=/machine:x64 + +//Flags used by the linker during debug builds. +CMAKE_SHARED_LINKER_FLAGS_DEBUG:STRING=/debug /INCREMENTAL + +//Flags used by the linker during release minsize builds. +CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL:STRING=/INCREMENTAL:NO + +//Flags used by the linker during release builds. +CMAKE_SHARED_LINKER_FLAGS_RELEASE:STRING=/INCREMENTAL:NO + +//Flags used by the linker during Release with Debug Info builds. +CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO:STRING=/debug /INCREMENTAL + +//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. +CMAKE_STATIC_LINKER_FLAGS:STRING=/machine:x64 + +//Flags used by the linker during debug builds. +CMAKE_STATIC_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during release minsize builds. +CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during release builds. +CMAKE_STATIC_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during Release with Debug Info builds. +CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//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 + +//No help, variable specified on the command line. +CONAN_COMPILER:UNINITIALIZED=Visual Studio + +//No help, variable specified on the command line. +CONAN_COMPILER_VERSION:UNINITIALIZED=10 + +//No help, variable specified on the command line. +CONAN_CXX_FLAGS:UNINITIALIZED=/MP8 + +//No help, variable specified on the command line. +CONAN_C_FLAGS:UNINITIALIZED=/MP8 + +//No help, variable specified on the command line. +CONAN_EXPORTED:UNINITIALIZED=1 + +//No help, variable specified on the command line. +CONAN_LINK_RUNTIME:UNINITIALIZED=/MD + +//Single output directory for building all executables. +EXECUTABLE_OUTPUT_PATH:PATH= + +//The directory containing a CMake configuration file for LAPACK. +LAPACK_DIR:PATH=LAPACK_DIR-NOTFOUND + +//Single output directory for building all libraries. +LIBRARY_OUTPUT_PATH:PATH= + +//The directory containing a CMake configuration file for SuiteSparse. +SuiteSparse_DIR:PATH=C:/Users/t.vogl/.conan/data/suitesparse/5164583/intence/testing/package/85f780d0530411a64b0be4407b381706014b445d/lib/cmake/suitesparse-4.5.0 + +//Value Computed by CMake +SuitesparseTest_BINARY_DIR:STATIC=C:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd + +//Value Computed by CMake +SuitesparseTest_SOURCE_DIR:STATIC=C:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/src + + +######################## +# INTERNAL cache entries +######################## + +//This is the directory where this CMakeCache.txt was created +CMAKE_CACHEFILE_DIR:INTERNAL=c:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd +//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=10 +//Patch version of cmake used to create the current loaded cache +CMAKE_CACHE_PATCH_VERSION:INTERNAL=0 +//Path to CMake executable. +CMAKE_COMMAND:INTERNAL=C:/Program Files/CMake/bin/cmake.exe +//Path to cpack program executable. +CMAKE_CPACK_COMMAND:INTERNAL=C:/Program Files/CMake/bin/cpack.exe +//Path to ctest program executable. +CMAKE_CTEST_COMMAND:INTERNAL=C:/Program Files/CMake/bin/ctest.exe +//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_CXX_STANDARD_LIBRARIES +CMAKE_CXX_STANDARD_LIBRARIES-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_C_STANDARD_LIBRARIES +CMAKE_C_STANDARD_LIBRARIES-ADVANCED:INTERNAL=1 +//Whether to issue deprecation errors for macros and functions. +CMAKE_ERROR_DEPRECATED:INTERNAL=FALSE +//Executable file format +CMAKE_EXECUTABLE_FORMAT:INTERNAL=Unknown +//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 +//Name of external makefile project generator. +CMAKE_EXTRA_GENERATOR:INTERNAL= +//Name of generator. +CMAKE_GENERATOR:INTERNAL=Visual Studio 10 2010 Win64 +//Name of generator platform. +CMAKE_GENERATOR_PLATFORM:INTERNAL= +//Name of generator toolset. +CMAKE_GENERATOR_TOOLSET:INTERNAL= +//Source directory with the top level CMakeLists.txt file for this +// project +CMAKE_HOME_DIRECTORY:INTERNAL=C:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/src +//ADVANCED property for variable: CMAKE_LINKER +CMAKE_LINKER-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 +//number of local generators +CMAKE_NUMBER_OF_MAKEFILES:INTERNAL=1 +//Platform information initialized +CMAKE_PLATFORM_INFO_INITIALIZED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_RC_COMPILER +CMAKE_RC_COMPILER-ADVANCED:INTERNAL=1 +CMAKE_RC_COMPILER_WORKS:INTERNAL=1 +//ADVANCED property for variable: CMAKE_RC_FLAGS +CMAKE_RC_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_RC_FLAGS_DEBUG +CMAKE_RC_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_RC_FLAGS_MINSIZEREL +CMAKE_RC_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_RC_FLAGS_RELEASE +CMAKE_RC_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_RC_FLAGS_RELWITHDEBINFO +CMAKE_RC_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//Path to CMake installation. +CMAKE_ROOT:INTERNAL=C:/Program Files/CMake/share/cmake-3.10 +//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 +//Suppress errors that are meant for the author of the CMakeLists.txt +// files. +CMAKE_SUPPRESS_DEVELOPER_ERRORS:INTERNAL=TRUE +//Suppress Warnings that are meant for the author of the CMakeLists.txt +// files. +CMAKE_SUPPRESS_DEVELOPER_WARNINGS:INTERNAL=TRUE +//ADVANCED property for variable: CMAKE_VERBOSE_MAKEFILE +CMAKE_VERBOSE_MAKEFILE-ADVANCED:INTERNAL=1 +//Whether to issue warnings for deprecated functionality. +CMAKE_WARN_DEPRECATED:INTERNAL=FALSE + diff --git a/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.0/CMakeCCompiler.cmake b/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.0/CMakeCCompiler.cmake new file mode 100644 index 0000000..ca19f71 --- /dev/null +++ b/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.0/CMakeCCompiler.cmake @@ -0,0 +1,73 @@ +set(CMAKE_C_COMPILER "C:/Program Files (x86)/Microsoft Visual Studio 10.0/VC/bin/x86_amd64/cl.exe") +set(CMAKE_C_COMPILER_ARG1 "") +set(CMAKE_C_COMPILER_ID "MSVC") +set(CMAKE_C_COMPILER_VERSION "16.0.40219.1") +set(CMAKE_C_COMPILER_VERSION_INTERNAL "") +set(CMAKE_C_COMPILER_WRAPPER "") +set(CMAKE_C_STANDARD_COMPUTED_DEFAULT "90") +set(CMAKE_C_COMPILE_FEATURES "") +set(CMAKE_C90_COMPILE_FEATURES "") +set(CMAKE_C99_COMPILE_FEATURES "") +set(CMAKE_C11_COMPILE_FEATURES "") + +set(CMAKE_C_PLATFORM_ID "Windows") +set(CMAKE_C_SIMULATE_ID "") +set(CMAKE_C_SIMULATE_VERSION "") +set(CMAKE_C_COMPILER_ARCHITECTURE_ID x64) +set(MSVC_C_ARCHITECTURE_ID x64) + +set(CMAKE_AR "") +set(CMAKE_C_COMPILER_AR "") +set(CMAKE_RANLIB "") +set(CMAKE_C_COMPILER_RANLIB "") +set(CMAKE_LINKER "C:/Program Files (x86)/Microsoft Visual Studio 10.0/VC/bin/x86_amd64/link.exe") +set(CMAKE_COMPILER_IS_GNUCC ) +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 "") +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_LINK_LIBRARIES "") +set(CMAKE_C_IMPLICIT_LINK_DIRECTORIES "") +set(CMAKE_C_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "") diff --git a/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.0/CMakeCXXCompiler.cmake b/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.0/CMakeCXXCompiler.cmake new file mode 100644 index 0000000..d1505a4 --- /dev/null +++ b/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.0/CMakeCXXCompiler.cmake @@ -0,0 +1,75 @@ +set(CMAKE_CXX_COMPILER "C:/Program Files (x86)/Microsoft Visual Studio 10.0/VC/bin/x86_amd64/cl.exe") +set(CMAKE_CXX_COMPILER_ARG1 "") +set(CMAKE_CXX_COMPILER_ID "MSVC") +set(CMAKE_CXX_COMPILER_VERSION "16.0.40219.1") +set(CMAKE_CXX_COMPILER_VERSION_INTERNAL "") +set(CMAKE_CXX_COMPILER_WRAPPER "") +set(CMAKE_CXX_STANDARD_COMPUTED_DEFAULT "98") +set(CMAKE_CXX_COMPILE_FEATURES "cxx_std_98;cxx_std_11;cxx_std_14;cxx_std_17;cxx_auto_type;cxx_decltype;cxx_extended_friend_declarations;cxx_extern_templates;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_nullptr;cxx_override;cxx_right_angle_brackets;cxx_rvalue_references;cxx_static_assert;cxx_template_template_parameters;cxx_trailing_return_types;cxx_variadic_macros") +set(CMAKE_CXX98_COMPILE_FEATURES "") +set(CMAKE_CXX11_COMPILE_FEATURES "") +set(CMAKE_CXX14_COMPILE_FEATURES "") +set(CMAKE_CXX17_COMPILE_FEATURES "") + +set(CMAKE_CXX_PLATFORM_ID "Windows") +set(CMAKE_CXX_SIMULATE_ID "") +set(CMAKE_CXX_SIMULATE_VERSION "") +set(CMAKE_CXX_COMPILER_ARCHITECTURE_ID x64) +set(MSVC_CXX_ARCHITECTURE_ID x64) + +set(CMAKE_AR "") +set(CMAKE_CXX_COMPILER_AR "") +set(CMAKE_RANLIB "") +set(CMAKE_CXX_COMPILER_RANLIB "") +set(CMAKE_LINKER "C:/Program Files (x86)/Microsoft Visual Studio 10.0/VC/bin/x86_amd64/link.exe") +set(CMAKE_COMPILER_IS_GNUCXX ) +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_IGNORE_EXTENSIONS inl;h;hpp;HPP;H;o;O;obj;OBJ;def;DEF;rc;RC) +set(CMAKE_CXX_SOURCE_FILE_EXTENSIONS C;M;c++;cc;cpp;cxx;mm;CPP) +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 "") +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_LINK_LIBRARIES "") +set(CMAKE_CXX_IMPLICIT_LINK_DIRECTORIES "") +set(CMAKE_CXX_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "") diff --git a/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.0/CMakeDetermineCompilerABI_C.bin b/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.0/CMakeDetermineCompilerABI_C.bin new file mode 100644 index 0000000..bad9089 Binary files /dev/null and b/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.0/CMakeDetermineCompilerABI_C.bin differ diff --git a/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.0/CMakeDetermineCompilerABI_CXX.bin b/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.0/CMakeDetermineCompilerABI_CXX.bin new file mode 100644 index 0000000..e1b4fec Binary files /dev/null and b/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.0/CMakeDetermineCompilerABI_CXX.bin differ diff --git a/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.0/CMakeRCCompiler.cmake b/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.0/CMakeRCCompiler.cmake new file mode 100644 index 0000000..0f61961 --- /dev/null +++ b/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.0/CMakeRCCompiler.cmake @@ -0,0 +1,6 @@ +set(CMAKE_RC_COMPILER "rc") +set(CMAKE_RC_COMPILER_ARG1 "") +set(CMAKE_RC_COMPILER_LOADED 1) +set(CMAKE_RC_SOURCE_FILE_EXTENSIONS rc;RC) +set(CMAKE_RC_OUTPUT_EXTENSION .res) +set(CMAKE_RC_COMPILER_ENV_VAR "RC") diff --git a/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.0/CMakeSystem.cmake b/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.0/CMakeSystem.cmake new file mode 100644 index 0000000..b4f5150 --- /dev/null +++ b/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.0/CMakeSystem.cmake @@ -0,0 +1,15 @@ +set(CMAKE_HOST_SYSTEM "Windows-10.0.15063") +set(CMAKE_HOST_SYSTEM_NAME "Windows") +set(CMAKE_HOST_SYSTEM_VERSION "10.0.15063") +set(CMAKE_HOST_SYSTEM_PROCESSOR "AMD64") + + + +set(CMAKE_SYSTEM "Windows-10.0.15063") +set(CMAKE_SYSTEM_NAME "Windows") +set(CMAKE_SYSTEM_VERSION "10.0.15063") +set(CMAKE_SYSTEM_PROCESSOR "AMD64") + +set(CMAKE_CROSSCOMPILING "FALSE") + +set(CMAKE_SYSTEM_LOADED 1) diff --git a/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.0/CompilerIdC/CMakeCCompilerId.c b/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.0/CompilerIdC/CMakeCCompilerId.c new file mode 100644 index 0000000..722faa8 --- /dev/null +++ b/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.0/CompilerIdC/CMakeCCompilerId.c @@ -0,0 +1,598 @@ +#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 + /* __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 + +#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(__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(__TINYC__) +# define COMPILER_ID "TinyCC" + +#elif defined(__BCC__) +# define COMPILER_ID "Bruce" + +#elif defined(__SCO_VERSION__) +# define COMPILER_ID "SCO" + +#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__) +# 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__) +# 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__) +# endif + +#elif defined(__ARMCC_VERSION) +# 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(__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 + +#elif defined(_SGI_COMPILER_VERSION) || defined(_COMPILER_VERSION) +# define COMPILER_ID "MIPSpro" +# if defined(_SGI_COMPILER_VERSION) + /* _SGI_COMPILER_VERSION = VRP */ +# define COMPILER_VERSION_MAJOR DEC(_SGI_COMPILER_VERSION/100) +# define COMPILER_VERSION_MINOR DEC(_SGI_COMPILER_VERSION/10 % 10) +# define COMPILER_VERSION_PATCH DEC(_SGI_COMPILER_VERSION % 10) +# else + /* _COMPILER_VERSION = VRP */ +# define COMPILER_VERSION_MAJOR DEC(_COMPILER_VERSION/100) +# define COMPILER_VERSION_MINOR DEC(_COMPILER_VERSION/10 % 10) +# define COMPILER_VERSION_PATCH DEC(_COMPILER_VERSION % 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(__sgi) +# define COMPILER_ID "MIPSpro" + +#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(__sgi) || defined(__sgi__) || defined(_SGI) +# define PLATFORM_ID "IRIX" + +#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 + +#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(__ICCAVR__) +# define ARCHITECTURE_ID "AVR" + +# 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__) +# 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 diff --git a/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.0/CompilerIdC/CompilerIdC.exe b/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.0/CompilerIdC/CompilerIdC.exe new file mode 100644 index 0000000..2781b17 Binary files /dev/null and b/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.0/CompilerIdC/CompilerIdC.exe differ diff --git a/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.0/CompilerIdC/CompilerIdC.vcxproj b/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.0/CompilerIdC/CompilerIdC.vcxproj new file mode 100644 index 0000000..3e88525 --- /dev/null +++ b/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.0/CompilerIdC/CompilerIdC.vcxproj @@ -0,0 +1,67 @@ + + + + + Debug + x64 + + + + {CAE07175-D007-4FC3-BFE8-47B392814159} + CompilerIdC + Win32Proj + + + + + + + + + + + Application + v100 + MultiByte + + + + + + + <_ProjectFileVersion>10.0.30319.1 + .\ + $(Configuration)\ + false + + + + Disabled + %(PreprocessorDefinitions) + false + EnableFastChecks + MultiThreadedDebugDLL + + + TurnOffAllWarnings + + + + + + false + Console + + + + for %%i in (cl.exe) do %40echo CMAKE_C_COMPILER=%%~$PATH:i + + + + + + + + + + diff --git a/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.0/CompilerIdC/Debug/CL.read.1.tlog b/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.0/CompilerIdC/Debug/CL.read.1.tlog new file mode 100644 index 0000000..32cc18b Binary files /dev/null and b/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.0/CompilerIdC/Debug/CL.read.1.tlog differ diff --git a/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.0/CompilerIdC/Debug/CL.write.1.tlog b/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.0/CompilerIdC/Debug/CL.write.1.tlog new file mode 100644 index 0000000..1bedf19 Binary files /dev/null and b/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.0/CompilerIdC/Debug/CL.write.1.tlog differ diff --git a/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.0/CompilerIdC/Debug/CMakeCCompilerId.obj b/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.0/CompilerIdC/Debug/CMakeCCompilerId.obj new file mode 100644 index 0000000..d2a920f Binary files /dev/null and b/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.0/CompilerIdC/Debug/CMakeCCompilerId.obj differ diff --git a/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.0/CompilerIdC/Debug/CompilerIdC.exe.intermediate.manifest b/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.0/CompilerIdC/Debug/CompilerIdC.exe.intermediate.manifest new file mode 100644 index 0000000..ecea6f7 --- /dev/null +++ b/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.0/CompilerIdC/Debug/CompilerIdC.exe.intermediate.manifest @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.0/CompilerIdC/Debug/CompilerIdC.lastbuildstate b/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.0/CompilerIdC/Debug/CompilerIdC.lastbuildstate new file mode 100644 index 0000000..4da73cf --- /dev/null +++ b/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.0/CompilerIdC/Debug/CompilerIdC.lastbuildstate @@ -0,0 +1,2 @@ +#v4.0:v100:false +Debug|x64|C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\3.10.0\CompilerIdC\| diff --git a/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.0/CompilerIdC/Debug/CompilerIdC.vcxprojResolveAssemblyReference.cache b/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.0/CompilerIdC/Debug/CompilerIdC.vcxprojResolveAssemblyReference.cache new file mode 100644 index 0000000..368dff8 Binary files /dev/null and b/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.0/CompilerIdC/Debug/CompilerIdC.vcxprojResolveAssemblyReference.cache differ diff --git a/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.0/CompilerIdC/Debug/CompilerIdC.write.1.tlog b/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.0/CompilerIdC/Debug/CompilerIdC.write.1.tlog new file mode 100644 index 0000000..e69de29 diff --git a/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.0/CompilerIdC/Debug/cl.command.1.tlog b/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.0/CompilerIdC/Debug/cl.command.1.tlog new file mode 100644 index 0000000..92ddc97 Binary files /dev/null and b/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.0/CompilerIdC/Debug/cl.command.1.tlog differ diff --git a/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.0/CompilerIdC/Debug/link.command.1.tlog b/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.0/CompilerIdC/Debug/link.command.1.tlog new file mode 100644 index 0000000..6a5bbe2 Binary files /dev/null and b/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.0/CompilerIdC/Debug/link.command.1.tlog differ diff --git a/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.0/CompilerIdC/Debug/link.read.1.tlog b/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.0/CompilerIdC/Debug/link.read.1.tlog new file mode 100644 index 0000000..c6dbe14 Binary files /dev/null and b/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.0/CompilerIdC/Debug/link.read.1.tlog differ diff --git a/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.0/CompilerIdC/Debug/link.write.1.tlog b/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.0/CompilerIdC/Debug/link.write.1.tlog new file mode 100644 index 0000000..fc62d71 Binary files /dev/null and b/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.0/CompilerIdC/Debug/link.write.1.tlog differ diff --git a/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.0/CompilerIdC/Debug/mt.command.1.tlog b/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.0/CompilerIdC/Debug/mt.command.1.tlog new file mode 100644 index 0000000..f338a8d Binary files /dev/null and b/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.0/CompilerIdC/Debug/mt.command.1.tlog differ diff --git a/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.0/CompilerIdC/Debug/mt.read.1.tlog b/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.0/CompilerIdC/Debug/mt.read.1.tlog new file mode 100644 index 0000000..cf6ed82 Binary files /dev/null and b/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.0/CompilerIdC/Debug/mt.read.1.tlog differ diff --git a/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.0/CompilerIdC/Debug/mt.write.1.tlog b/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.0/CompilerIdC/Debug/mt.write.1.tlog new file mode 100644 index 0000000..00e4a2a Binary files /dev/null and b/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.0/CompilerIdC/Debug/mt.write.1.tlog differ diff --git a/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.0/CompilerIdCXX/CMakeCXXCompilerId.cpp b/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.0/CompilerIdCXX/CMakeCXXCompilerId.cpp new file mode 100644 index 0000000..2d66298 --- /dev/null +++ b/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.0/CompilerIdCXX/CMakeCXXCompilerId.cpp @@ -0,0 +1,576 @@ +/* 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 + /* __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 + +#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(__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(__SCO_VERSION__) +# define COMPILER_ID "SCO" + +#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__) +# 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__) +# 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__) +# endif + +#elif defined(__ARMCC_VERSION) +# 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(_SGI_COMPILER_VERSION) || defined(_COMPILER_VERSION) +# define COMPILER_ID "MIPSpro" +# if defined(_SGI_COMPILER_VERSION) + /* _SGI_COMPILER_VERSION = VRP */ +# define COMPILER_VERSION_MAJOR DEC(_SGI_COMPILER_VERSION/100) +# define COMPILER_VERSION_MINOR DEC(_SGI_COMPILER_VERSION/10 % 10) +# define COMPILER_VERSION_PATCH DEC(_SGI_COMPILER_VERSION % 10) +# else + /* _COMPILER_VERSION = VRP */ +# define COMPILER_VERSION_MAJOR DEC(_COMPILER_VERSION/100) +# define COMPILER_VERSION_MINOR DEC(_COMPILER_VERSION/10 % 10) +# define COMPILER_VERSION_PATCH DEC(_COMPILER_VERSION % 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(__sgi) +# define COMPILER_ID "MIPSpro" + +#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(__sgi) || defined(__sgi__) || defined(_SGI) +# define PLATFORM_ID "IRIX" + +#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 + +#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(__ICCAVR__) +# define ARCHITECTURE_ID "AVR" + +# 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(_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 > 201402L + "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; +} diff --git a/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.0/CompilerIdCXX/CompilerIdCXX.exe b/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.0/CompilerIdCXX/CompilerIdCXX.exe new file mode 100644 index 0000000..467ba4f Binary files /dev/null and b/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.0/CompilerIdCXX/CompilerIdCXX.exe differ diff --git a/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.0/CompilerIdCXX/CompilerIdCXX.vcxproj b/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.0/CompilerIdCXX/CompilerIdCXX.vcxproj new file mode 100644 index 0000000..e3e030b --- /dev/null +++ b/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.0/CompilerIdCXX/CompilerIdCXX.vcxproj @@ -0,0 +1,67 @@ + + + + + Debug + x64 + + + + {CAE07175-D007-4FC3-BFE8-47B392814159} + CompilerIdCXX + Win32Proj + + + + + + + + + + + Application + v100 + MultiByte + + + + + + + <_ProjectFileVersion>10.0.30319.1 + .\ + $(Configuration)\ + false + + + + Disabled + %(PreprocessorDefinitions) + false + EnableFastChecks + MultiThreadedDebugDLL + + + TurnOffAllWarnings + + + + + + false + Console + + + + for %%i in (cl.exe) do %40echo CMAKE_CXX_COMPILER=%%~$PATH:i + + + + + + + + + + diff --git a/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.0/CompilerIdCXX/Debug/CL.read.1.tlog b/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.0/CompilerIdCXX/Debug/CL.read.1.tlog new file mode 100644 index 0000000..8e08895 Binary files /dev/null and b/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.0/CompilerIdCXX/Debug/CL.read.1.tlog differ diff --git a/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.0/CompilerIdCXX/Debug/CL.write.1.tlog b/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.0/CompilerIdCXX/Debug/CL.write.1.tlog new file mode 100644 index 0000000..040d2a7 Binary files /dev/null and b/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.0/CompilerIdCXX/Debug/CL.write.1.tlog differ diff --git a/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.0/CompilerIdCXX/Debug/CMakeCXXCompilerId.obj b/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.0/CompilerIdCXX/Debug/CMakeCXXCompilerId.obj new file mode 100644 index 0000000..81b808c Binary files /dev/null and b/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.0/CompilerIdCXX/Debug/CMakeCXXCompilerId.obj differ diff --git a/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.0/CompilerIdCXX/Debug/CompilerIdCXX.exe.intermediate.manifest b/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.0/CompilerIdCXX/Debug/CompilerIdCXX.exe.intermediate.manifest new file mode 100644 index 0000000..ecea6f7 --- /dev/null +++ b/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.0/CompilerIdCXX/Debug/CompilerIdCXX.exe.intermediate.manifest @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.0/CompilerIdCXX/Debug/CompilerIdCXX.lastbuildstate b/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.0/CompilerIdCXX/Debug/CompilerIdCXX.lastbuildstate new file mode 100644 index 0000000..1694bf3 --- /dev/null +++ b/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.0/CompilerIdCXX/Debug/CompilerIdCXX.lastbuildstate @@ -0,0 +1,2 @@ +#v4.0:v100:false +Debug|x64|C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\3.10.0\CompilerIdCXX\| diff --git a/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.0/CompilerIdCXX/Debug/CompilerIdCXX.vcxprojResolveAssemblyReference.cache b/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.0/CompilerIdCXX/Debug/CompilerIdCXX.vcxprojResolveAssemblyReference.cache new file mode 100644 index 0000000..368dff8 Binary files /dev/null and b/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.0/CompilerIdCXX/Debug/CompilerIdCXX.vcxprojResolveAssemblyReference.cache differ diff --git a/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.0/CompilerIdCXX/Debug/CompilerIdCXX.write.1.tlog b/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.0/CompilerIdCXX/Debug/CompilerIdCXX.write.1.tlog new file mode 100644 index 0000000..e69de29 diff --git a/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.0/CompilerIdCXX/Debug/cl.command.1.tlog b/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.0/CompilerIdCXX/Debug/cl.command.1.tlog new file mode 100644 index 0000000..ecdd0e6 Binary files /dev/null and b/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.0/CompilerIdCXX/Debug/cl.command.1.tlog differ diff --git a/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.0/CompilerIdCXX/Debug/link.command.1.tlog b/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.0/CompilerIdCXX/Debug/link.command.1.tlog new file mode 100644 index 0000000..b63b61a Binary files /dev/null and b/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.0/CompilerIdCXX/Debug/link.command.1.tlog differ diff --git a/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.0/CompilerIdCXX/Debug/link.read.1.tlog b/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.0/CompilerIdCXX/Debug/link.read.1.tlog new file mode 100644 index 0000000..f78688a Binary files /dev/null and b/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.0/CompilerIdCXX/Debug/link.read.1.tlog differ diff --git a/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.0/CompilerIdCXX/Debug/link.write.1.tlog b/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.0/CompilerIdCXX/Debug/link.write.1.tlog new file mode 100644 index 0000000..2c423b5 Binary files /dev/null and b/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.0/CompilerIdCXX/Debug/link.write.1.tlog differ diff --git a/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.0/CompilerIdCXX/Debug/mt.command.1.tlog b/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.0/CompilerIdCXX/Debug/mt.command.1.tlog new file mode 100644 index 0000000..3fa8e9a Binary files /dev/null and b/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.0/CompilerIdCXX/Debug/mt.command.1.tlog differ diff --git a/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.0/CompilerIdCXX/Debug/mt.read.1.tlog b/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.0/CompilerIdCXX/Debug/mt.read.1.tlog new file mode 100644 index 0000000..d9138a6 Binary files /dev/null and b/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.0/CompilerIdCXX/Debug/mt.read.1.tlog differ diff --git a/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.0/CompilerIdCXX/Debug/mt.write.1.tlog b/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.0/CompilerIdCXX/Debug/mt.write.1.tlog new file mode 100644 index 0000000..c6dd2db Binary files /dev/null and b/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.0/CompilerIdCXX/Debug/mt.write.1.tlog differ diff --git a/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.0/VCTargetsPath.txt b/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.0/VCTargetsPath.txt new file mode 100644 index 0000000..0c6ffe6 --- /dev/null +++ b/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.0/VCTargetsPath.txt @@ -0,0 +1 @@ +C:/Program Files (x86)/MSBuild/Microsoft.Cpp/v4.0 diff --git a/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.0/VCTargetsPath.vcxproj b/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.0/VCTargetsPath.vcxproj new file mode 100644 index 0000000..ef1a99a --- /dev/null +++ b/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.0/VCTargetsPath.vcxproj @@ -0,0 +1,27 @@ + + + + + Debug + x64 + + + + {F3FC6D86-508D-3FB1-96D2-995F08B142EC} + Win32Proj + x64 + + + + Utility + MultiByte + v100 + + + + + echo VCTargetsPath=$(VCTargetsPath) + + + + diff --git a/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.0/x64/Debug/VCTargetsPath.lastbuildstate b/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.0/x64/Debug/VCTargetsPath.lastbuildstate new file mode 100644 index 0000000..4f6565b --- /dev/null +++ b/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.0/x64/Debug/VCTargetsPath.lastbuildstate @@ -0,0 +1,2 @@ +#v4.0:v100:false +Debug|x64|C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\3.10.0\| diff --git a/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.0/x64/Debug/VCTargetsPath.vcxprojResolveAssemblyReference.cache b/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.0/x64/Debug/VCTargetsPath.vcxprojResolveAssemblyReference.cache new file mode 100644 index 0000000..368dff8 Binary files /dev/null and b/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.0/x64/Debug/VCTargetsPath.vcxprojResolveAssemblyReference.cache differ diff --git a/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/61d73ab79f31d2ef8d1bff3fece4b915/generate.stamp.rule b/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/61d73ab79f31d2ef8d1bff3fece4b915/generate.stamp.rule new file mode 100644 index 0000000..2d3998c --- /dev/null +++ b/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/61d73ab79f31d2ef8d1bff3fece4b915/generate.stamp.rule @@ -0,0 +1 @@ +# generated from CMake diff --git a/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/CMakeOutput.log b/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/CMakeOutput.log new file mode 100644 index 0000000..034f0a0 --- /dev/null +++ b/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/CMakeOutput.log @@ -0,0 +1,392 @@ +The system is: Windows - 10.0.15063 - AMD64 +Compiling the C compiler identification source file "CMakeCCompilerId.c" succeeded. +Compiler: +Build flags: +Id flags: + +The output was: +0 +Microsoft (R)-Buildmodul, Version 4.7.2046.0 +[Microsoft .NET Framework, Version 4.0.30319.42000] +Copyright (C) Microsoft Corporation. Alle Rechte vorbehalten. + +Der Buildvorgang wurde am 26.01.2018 13:12:16 gestartet. +Projekt "C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\3.10.0\CompilerIdC\CompilerIdC.vcxproj" auf Knoten "1" (Standardziele). +PrepareForBuild: + Das Verzeichnis "Debug\" wird erstellt. +InitializeBuildStatus: + "Debug\CompilerIdC.unsuccessfulbuild" wird erstellt, da "AlwaysCreate" angegeben wurde. +ClCompile: + C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\bin\x86_amd64\CL.exe /c /nologo /W0 /WX- /Od /D _MBCS /Gm- /EHsc /RTC1 /MDd /GS /fp:precise /Zc:wchar_t /Zc:forScope /Fo"Debug\\" /Fd"Debug\vc100.pdb" /Gd /TC /errorReport:queue CMakeCCompilerId.c + CMakeCCompilerId.c +Link: + C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\bin\x86_amd64\link.exe /ERRORREPORT:QUEUE /OUT:".\CompilerIdC.exe" /INCREMENTAL:NO /NOLOGO kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /MANIFEST /ManifestFile:"Debug\CompilerIdC.exe.intermediate.manifest" /MANIFESTUAC:"level='asInvoker' uiAccess='false'" /PDB:"C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\3.10.0\CompilerIdC\CompilerIdC.pdb" /SUBSYSTEM:CONSOLE /TLBID:1 /DYNAMICBASE /NXCOMPAT /IMPLIB:".\CompilerIdC.lib" /MACHINE:X64 Debug\CMakeCCompilerId.obj + CompilerIdC.vcxproj -> C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\3.10.0\CompilerIdC\.\CompilerIdC.exe +Manifest: + C:\Program Files (x86)\Microsoft SDKs\Windows\v7.0A\bin\mt.exe /nologo /verbose /outputresource:".\CompilerIdC.exe;#1" /manifest Debug\CompilerIdC.exe.intermediate.manifest +PostBuildEvent: + for %%i in (cl.exe) do @echo CMAKE_C_COMPILER=%%~$PATH:i + :VCEnd + CMAKE_C_COMPILER=C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\bin\x86_amd64\cl.exe +FinalizeBuildStatus: + Die Datei "Debug\CompilerIdC.unsuccessfulbuild" wird gelscht. + Aktualisieren des Timestamps von "Debug\CompilerIdC.lastbuildstate". +Die Erstellung von Projekt "C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\3.10.0\CompilerIdC\CompilerIdC.vcxproj" ist abgeschlossen (Standardziele). + +Der Buildvorgang wurde erfolgreich ausgefhrt. + 0 Warnung(en) + 0 Fehler + +Verstrichene Zeit 00:00:00.69 + + +Compilation of the C compiler identification source "CMakeCCompilerId.c" produced "CompilerIdC.exe" + +Compilation of the C compiler identification source "CMakeCCompilerId.c" produced "CompilerIdC.vcxproj" + +The C compiler identification is MSVC, found in "C:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.0/CompilerIdC/CompilerIdC.exe" + +Compiling the CXX compiler identification source file "CMakeCXXCompilerId.cpp" succeeded. +Compiler: +Build flags: +Id flags: + +The output was: +0 +Microsoft (R)-Buildmodul, Version 4.7.2046.0 +[Microsoft .NET Framework, Version 4.0.30319.42000] +Copyright (C) Microsoft Corporation. Alle Rechte vorbehalten. + +Der Buildvorgang wurde am 26.01.2018 13:12:17 gestartet. +Projekt "C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\3.10.0\CompilerIdCXX\CompilerIdCXX.vcxproj" auf Knoten "1" (Standardziele). +PrepareForBuild: + Das Verzeichnis "Debug\" wird erstellt. +InitializeBuildStatus: + "Debug\CompilerIdCXX.unsuccessfulbuild" wird erstellt, da "AlwaysCreate" angegeben wurde. +ClCompile: + C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\bin\x86_amd64\CL.exe /c /nologo /W0 /WX- /Od /D _MBCS /Gm- /EHsc /RTC1 /MDd /GS /fp:precise /Zc:wchar_t /Zc:forScope /Fo"Debug\\" /Fd"Debug\vc100.pdb" /Gd /TP /errorReport:queue CMakeCXXCompilerId.cpp + CMakeCXXCompilerId.cpp +Link: + C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\bin\x86_amd64\link.exe /ERRORREPORT:QUEUE /OUT:".\CompilerIdCXX.exe" /INCREMENTAL:NO /NOLOGO kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /MANIFEST /ManifestFile:"Debug\CompilerIdCXX.exe.intermediate.manifest" /MANIFESTUAC:"level='asInvoker' uiAccess='false'" /PDB:"C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\3.10.0\CompilerIdCXX\CompilerIdCXX.pdb" /SUBSYSTEM:CONSOLE /TLBID:1 /DYNAMICBASE /NXCOMPAT /IMPLIB:".\CompilerIdCXX.lib" /MACHINE:X64 Debug\CMakeCXXCompilerId.obj + CompilerIdCXX.vcxproj -> C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\3.10.0\CompilerIdCXX\.\CompilerIdCXX.exe +Manifest: + C:\Program Files (x86)\Microsoft SDKs\Windows\v7.0A\bin\mt.exe /nologo /verbose /outputresource:".\CompilerIdCXX.exe;#1" /manifest Debug\CompilerIdCXX.exe.intermediate.manifest +PostBuildEvent: + for %%i in (cl.exe) do @echo CMAKE_CXX_COMPILER=%%~$PATH:i + :VCEnd + CMAKE_CXX_COMPILER=C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\bin\x86_amd64\cl.exe +FinalizeBuildStatus: + Die Datei "Debug\CompilerIdCXX.unsuccessfulbuild" wird gelscht. + Aktualisieren des Timestamps von "Debug\CompilerIdCXX.lastbuildstate". +Die Erstellung von Projekt "C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\3.10.0\CompilerIdCXX\CompilerIdCXX.vcxproj" ist abgeschlossen (Standardziele). + +Der Buildvorgang wurde erfolgreich ausgefhrt. + 0 Warnung(en) + 0 Fehler + +Verstrichene Zeit 00:00:00.68 + + +Compilation of the CXX compiler identification source "CMakeCXXCompilerId.cpp" produced "CompilerIdCXX.exe" + +Compilation of the CXX compiler identification source "CMakeCXXCompilerId.cpp" produced "CompilerIdCXX.vcxproj" + +The CXX compiler identification is MSVC, found in "C:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.0/CompilerIdCXX/CompilerIdCXX.exe" + +Determining if the C compiler works passed with the following output: +Change Dir: C:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/CMakeTmp + +Run Build Command:"C:/Windows/Microsoft.NET/Framework/v4.0.30319/MSBuild.exe" "cmTC_3999f.vcxproj" "/p:Configuration=Debug" "/p:VisualStudioVersion=10.0" +Microsoft (R)-Buildmodul, Version 4.7.2046.0 +[Microsoft .NET Framework, Version 4.0.30319.42000] +Copyright (C) Microsoft Corporation. Alle Rechte vorbehalten. + +Der Buildvorgang wurde am 26.01.2018 13:12:18 gestartet. +Projekt "C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\CMakeTmp\cmTC_3999f.vcxproj" auf Knoten "1" (Standardziele). +PrepareForBuild: + Das Verzeichnis "cmTC_3999f.dir\Debug\" wird erstellt. + Das Verzeichnis "C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\CMakeTmp\Debug\" wird erstellt. +InitializeBuildStatus: + "cmTC_3999f.dir\Debug\cmTC_3999f.unsuccessfulbuild" wird erstellt, da "AlwaysCreate" angegeben wurde. +ClCompile: + C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\bin\x86_amd64\CL.exe /c /Zi /W3 /WX- /Od /Ob0 /D WIN32 /D _WINDOWS /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /RTC1 /MDd /GS /fp:precise /Zc:wchar_t /Zc:forScope /Fo"cmTC_3999f.dir\Debug\\" /Fd"cmTC_3999f.dir\Debug\vc100.pdb" /Gd /TC /errorReport:queue testCCompiler.c + Microsoft (R) C/C++ Optimizing Compiler Version 16.00.40219.01 for x64 + Copyright (C) Microsoft Corporation. All rights reserved. + + cl /c /Zi /W3 /WX- /Od /Ob0 /D WIN32 /D _WINDOWS /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /RTC1 /MDd /GS /fp:precise /Zc:wchar_t /Zc:forScope /Fo"cmTC_3999f.dir\Debug\\" /Fd"cmTC_3999f.dir\Debug\vc100.pdb" /Gd /TC /errorReport:queue testCCompiler.c + + testCCompiler.c +ManifestResourceCompile: + C:\Program Files (x86)\Microsoft SDKs\Windows\v7.0A\bin\rc.exe /nologo /fo"cmTC_3999f.dir\Debug\cmTC_3999f.exe.embed.manifest.res" cmTC_3999f.dir\Debug\cmTC_3999f_manifest.rc +Link: + C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\bin\x86_amd64\link.exe /ERRORREPORT:QUEUE /OUT:"C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\CMakeTmp\Debug\cmTC_3999f.exe" /INCREMENTAL /NOLOGO kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib /MANIFEST /ManifestFile:"cmTC_3999f.dir\Debug\cmTC_3999f.exe.intermediate.manifest" /MANIFESTUAC:"level='asInvoker' uiAccess='false'" /DEBUG /PDB:"C:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/CMakeTmp/Debug/cmTC_3999f.pdb" /SUBSYSTEM:CONSOLE /TLBID:1 /DYNAMICBASE /NXCOMPAT /IMPLIB:"C:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/CMakeTmp/Debug/cmTC_3999f.lib" /MACHINE:X64 cmTC_3999f.dir\Debug\cmTC_3999f.exe.embed.manifest.res + cmTC_3999f.dir\Debug\testCCompiler.obj /machine:x64 + cmTC_3999f.vcxproj -> C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\CMakeTmp\Debug\cmTC_3999f.exe +Manifest: + C:\Program Files (x86)\Microsoft SDKs\Windows\v7.0A\bin\mt.exe /nologo /verbose /out:"cmTC_3999f.dir\Debug\cmTC_3999f.exe.embed.manifest" /manifest cmTC_3999f.dir\Debug\cmTC_3999f.exe.intermediate.manifest + C:\Program Files (x86)\Microsoft SDKs\Windows\v7.0A\bin\rc.exe /nologo /fo"cmTC_3999f.dir\Debug\cmTC_3999f.exe.embed.manifest.res" cmTC_3999f.dir\Debug\cmTC_3999f_manifest.rc +LinkEmbedManifest: + C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\bin\x86_amd64\link.exe /ERRORREPORT:QUEUE /OUT:"C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\CMakeTmp\Debug\cmTC_3999f.exe" /INCREMENTAL /NOLOGO kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib /MANIFEST /ManifestFile:"cmTC_3999f.dir\Debug\cmTC_3999f.exe.intermediate.manifest" /MANIFESTUAC:"level='asInvoker' uiAccess='false'" /DEBUG /PDB:"C:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/CMakeTmp/Debug/cmTC_3999f.pdb" /SUBSYSTEM:CONSOLE /TLBID:1 /DYNAMICBASE /NXCOMPAT /IMPLIB:"C:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/CMakeTmp/Debug/cmTC_3999f.lib" /MACHINE:X64 cmTC_3999f.dir\Debug\cmTC_3999f.exe.embed.manifest.res + cmTC_3999f.dir\Debug\testCCompiler.obj /machine:x64 + cmTC_3999f.vcxproj -> C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\CMakeTmp\Debug\cmTC_3999f.exe +FinalizeBuildStatus: + Die Datei "cmTC_3999f.dir\Debug\cmTC_3999f.unsuccessfulbuild" wird gelöscht. + Aktualisieren des Timestamps von "cmTC_3999f.dir\Debug\cmTC_3999f.lastbuildstate". +Die Erstellung von Projekt "C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\CMakeTmp\cmTC_3999f.vcxproj" ist abgeschlossen (Standardziele). + +Der Buildvorgang wurde erfolgreich ausgeführt. + 0 Warnung(en) + 0 Fehler + +Verstrichene Zeit 00:00:01.37 + + +Detecting C compiler ABI info compiled with the following output: +Change Dir: C:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/CMakeTmp + +Run Build Command:"C:/Windows/Microsoft.NET/Framework/v4.0.30319/MSBuild.exe" "cmTC_355fc.vcxproj" "/p:Configuration=Debug" "/p:VisualStudioVersion=10.0" +Microsoft (R)-Buildmodul, Version 4.7.2046.0 +[Microsoft .NET Framework, Version 4.0.30319.42000] +Copyright (C) Microsoft Corporation. Alle Rechte vorbehalten. + +Der Buildvorgang wurde am 26.01.2018 13:12:20 gestartet. +Projekt "C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\CMakeTmp\cmTC_355fc.vcxproj" auf Knoten "1" (Standardziele). +PrepareForBuild: + Das Verzeichnis "cmTC_355fc.dir\Debug\" wird erstellt. + Das Verzeichnis "C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\CMakeTmp\Debug\" wird erstellt. +InitializeBuildStatus: + "cmTC_355fc.dir\Debug\cmTC_355fc.unsuccessfulbuild" wird erstellt, da "AlwaysCreate" angegeben wurde. +ClCompile: + C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\bin\x86_amd64\CL.exe /c /Zi /W3 /WX- /Od /Ob0 /D WIN32 /D _WINDOWS /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /RTC1 /MDd /GS /fp:precise /Zc:wchar_t /Zc:forScope /Fo"cmTC_355fc.dir\Debug\\" /Fd"cmTC_355fc.dir\Debug\vc100.pdb" /Gd /TC /errorReport:queue "..\..\..\..\..\..\..\..\..\..\Program Files\CMake\share\cmake-3.10\Modules\CMakeCCompilerABI.c" + Microsoft (R) C/C++ Optimizing Compiler Version 16.00.40219.01 for x64 + Copyright (C) Microsoft Corporation. All rights reserved. + + cl /c /Zi /W3 /WX- /Od /Ob0 /D WIN32 /D _WINDOWS /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /RTC1 /MDd /GS /fp:precise /Zc:wchar_t /Zc:forScope /Fo"cmTC_355fc.dir\Debug\\" /Fd"cmTC_355fc.dir\Debug\vc100.pdb" /Gd /TC /errorReport:queue "..\..\..\..\..\..\..\..\..\..\Program Files\CMake\share\cmake-3.10\Modules\CMakeCCompilerABI.c" + + CMakeCCompilerABI.c +ManifestResourceCompile: + C:\Program Files (x86)\Microsoft SDKs\Windows\v7.0A\bin\rc.exe /nologo /fo"cmTC_355fc.dir\Debug\cmTC_355fc.exe.embed.manifest.res" cmTC_355fc.dir\Debug\cmTC_355fc_manifest.rc +Link: + C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\bin\x86_amd64\link.exe /ERRORREPORT:QUEUE /OUT:"C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\CMakeTmp\Debug\cmTC_355fc.exe" /INCREMENTAL /NOLOGO kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib /MANIFEST /ManifestFile:"cmTC_355fc.dir\Debug\cmTC_355fc.exe.intermediate.manifest" /MANIFESTUAC:"level='asInvoker' uiAccess='false'" /DEBUG /PDB:"C:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/CMakeTmp/Debug/cmTC_355fc.pdb" /SUBSYSTEM:CONSOLE /TLBID:1 /DYNAMICBASE /NXCOMPAT /IMPLIB:"C:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/CMakeTmp/Debug/cmTC_355fc.lib" /MACHINE:X64 cmTC_355fc.dir\Debug\cmTC_355fc.exe.embed.manifest.res + cmTC_355fc.dir\Debug\CMakeCCompilerABI.obj /machine:x64 + cmTC_355fc.vcxproj -> C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\CMakeTmp\Debug\cmTC_355fc.exe +Manifest: + C:\Program Files (x86)\Microsoft SDKs\Windows\v7.0A\bin\mt.exe /nologo /verbose /out:"cmTC_355fc.dir\Debug\cmTC_355fc.exe.embed.manifest" /manifest cmTC_355fc.dir\Debug\cmTC_355fc.exe.intermediate.manifest + C:\Program Files (x86)\Microsoft SDKs\Windows\v7.0A\bin\rc.exe /nologo /fo"cmTC_355fc.dir\Debug\cmTC_355fc.exe.embed.manifest.res" cmTC_355fc.dir\Debug\cmTC_355fc_manifest.rc +LinkEmbedManifest: + C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\bin\x86_amd64\link.exe /ERRORREPORT:QUEUE /OUT:"C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\CMakeTmp\Debug\cmTC_355fc.exe" /INCREMENTAL /NOLOGO kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib /MANIFEST /ManifestFile:"cmTC_355fc.dir\Debug\cmTC_355fc.exe.intermediate.manifest" /MANIFESTUAC:"level='asInvoker' uiAccess='false'" /DEBUG /PDB:"C:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/CMakeTmp/Debug/cmTC_355fc.pdb" /SUBSYSTEM:CONSOLE /TLBID:1 /DYNAMICBASE /NXCOMPAT /IMPLIB:"C:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/CMakeTmp/Debug/cmTC_355fc.lib" /MACHINE:X64 cmTC_355fc.dir\Debug\cmTC_355fc.exe.embed.manifest.res + cmTC_355fc.dir\Debug\CMakeCCompilerABI.obj /machine:x64 + cmTC_355fc.vcxproj -> C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\CMakeTmp\Debug\cmTC_355fc.exe +FinalizeBuildStatus: + Die Datei "cmTC_355fc.dir\Debug\cmTC_355fc.unsuccessfulbuild" wird gelöscht. + Aktualisieren des Timestamps von "cmTC_355fc.dir\Debug\cmTC_355fc.lastbuildstate". +Die Erstellung von Projekt "C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\CMakeTmp\cmTC_355fc.vcxproj" ist abgeschlossen (Standardziele). + +Der Buildvorgang wurde erfolgreich ausgeführt. + 0 Warnung(en) + 0 Fehler + +Verstrichene Zeit 00:00:01.32 + + +Determining if the CXX compiler works passed with the following output: +Change Dir: C:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/CMakeTmp + +Run Build Command:"C:/Windows/Microsoft.NET/Framework/v4.0.30319/MSBuild.exe" "cmTC_503c1.vcxproj" "/p:Configuration=Debug" "/p:VisualStudioVersion=10.0" +Microsoft (R)-Buildmodul, Version 4.7.2046.0 +[Microsoft .NET Framework, Version 4.0.30319.42000] +Copyright (C) Microsoft Corporation. Alle Rechte vorbehalten. + +Der Buildvorgang wurde am 26.01.2018 13:12:22 gestartet. +Projekt "C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\CMakeTmp\cmTC_503c1.vcxproj" auf Knoten "1" (Standardziele). +PrepareForBuild: + Das Verzeichnis "cmTC_503c1.dir\Debug\" wird erstellt. + Das Verzeichnis "C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\CMakeTmp\Debug\" wird erstellt. +InitializeBuildStatus: + "cmTC_503c1.dir\Debug\cmTC_503c1.unsuccessfulbuild" wird erstellt, da "AlwaysCreate" angegeben wurde. +ClCompile: + C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\bin\x86_amd64\CL.exe /c /Zi /W3 /WX- /Od /Ob0 /D WIN32 /D _WINDOWS /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /EHsc /RTC1 /MDd /GS /fp:precise /Zc:wchar_t /Zc:forScope /GR /Fo"cmTC_503c1.dir\Debug\\" /Fd"cmTC_503c1.dir\Debug\vc100.pdb" /Gd /TP /errorReport:queue testCXXCompiler.cxx + Microsoft (R) C/C++ Optimizing Compiler Version 16.00.40219.01 for x64 + Copyright (C) Microsoft Corporation. All rights reserved. + + cl /c /Zi /W3 /WX- /Od /Ob0 /D WIN32 /D _WINDOWS /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /EHsc /RTC1 /MDd /GS /fp:precise /Zc:wchar_t /Zc:forScope /GR /Fo"cmTC_503c1.dir\Debug\\" /Fd"cmTC_503c1.dir\Debug\vc100.pdb" /Gd /TP /errorReport:queue testCXXCompiler.cxx + + testCXXCompiler.cxx +ManifestResourceCompile: + C:\Program Files (x86)\Microsoft SDKs\Windows\v7.0A\bin\rc.exe /nologo /fo"cmTC_503c1.dir\Debug\cmTC_503c1.exe.embed.manifest.res" cmTC_503c1.dir\Debug\cmTC_503c1_manifest.rc +Link: + C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\bin\x86_amd64\link.exe /ERRORREPORT:QUEUE /OUT:"C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\CMakeTmp\Debug\cmTC_503c1.exe" /INCREMENTAL /NOLOGO kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib /MANIFEST /ManifestFile:"cmTC_503c1.dir\Debug\cmTC_503c1.exe.intermediate.manifest" /MANIFESTUAC:"level='asInvoker' uiAccess='false'" /DEBUG /PDB:"C:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/CMakeTmp/Debug/cmTC_503c1.pdb" /SUBSYSTEM:CONSOLE /TLBID:1 /DYNAMICBASE /NXCOMPAT /IMPLIB:"C:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/CMakeTmp/Debug/cmTC_503c1.lib" /MACHINE:X64 cmTC_503c1.dir\Debug\cmTC_503c1.exe.embed.manifest.res + cmTC_503c1.dir\Debug\testCXXCompiler.obj /machine:x64 + cmTC_503c1.vcxproj -> C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\CMakeTmp\Debug\cmTC_503c1.exe +Manifest: + C:\Program Files (x86)\Microsoft SDKs\Windows\v7.0A\bin\mt.exe /nologo /verbose /out:"cmTC_503c1.dir\Debug\cmTC_503c1.exe.embed.manifest" /manifest cmTC_503c1.dir\Debug\cmTC_503c1.exe.intermediate.manifest + C:\Program Files (x86)\Microsoft SDKs\Windows\v7.0A\bin\rc.exe /nologo /fo"cmTC_503c1.dir\Debug\cmTC_503c1.exe.embed.manifest.res" cmTC_503c1.dir\Debug\cmTC_503c1_manifest.rc +LinkEmbedManifest: + C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\bin\x86_amd64\link.exe /ERRORREPORT:QUEUE /OUT:"C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\CMakeTmp\Debug\cmTC_503c1.exe" /INCREMENTAL /NOLOGO kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib /MANIFEST /ManifestFile:"cmTC_503c1.dir\Debug\cmTC_503c1.exe.intermediate.manifest" /MANIFESTUAC:"level='asInvoker' uiAccess='false'" /DEBUG /PDB:"C:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/CMakeTmp/Debug/cmTC_503c1.pdb" /SUBSYSTEM:CONSOLE /TLBID:1 /DYNAMICBASE /NXCOMPAT /IMPLIB:"C:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/CMakeTmp/Debug/cmTC_503c1.lib" /MACHINE:X64 cmTC_503c1.dir\Debug\cmTC_503c1.exe.embed.manifest.res + cmTC_503c1.dir\Debug\testCXXCompiler.obj /machine:x64 + cmTC_503c1.vcxproj -> C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\CMakeTmp\Debug\cmTC_503c1.exe +FinalizeBuildStatus: + Die Datei "cmTC_503c1.dir\Debug\cmTC_503c1.unsuccessfulbuild" wird gelöscht. + Aktualisieren des Timestamps von "cmTC_503c1.dir\Debug\cmTC_503c1.lastbuildstate". +Die Erstellung von Projekt "C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\CMakeTmp\cmTC_503c1.vcxproj" ist abgeschlossen (Standardziele). + +Der Buildvorgang wurde erfolgreich ausgeführt. + 0 Warnung(en) + 0 Fehler + +Verstrichene Zeit 00:00:01.37 + + +Detecting CXX compiler ABI info compiled with the following output: +Change Dir: C:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/CMakeTmp + +Run Build Command:"C:/Windows/Microsoft.NET/Framework/v4.0.30319/MSBuild.exe" "cmTC_263fb.vcxproj" "/p:Configuration=Debug" "/p:VisualStudioVersion=10.0" +Microsoft (R)-Buildmodul, Version 4.7.2046.0 +[Microsoft .NET Framework, Version 4.0.30319.42000] +Copyright (C) Microsoft Corporation. Alle Rechte vorbehalten. + +Der Buildvorgang wurde am 26.01.2018 13:12:23 gestartet. +Projekt "C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\CMakeTmp\cmTC_263fb.vcxproj" auf Knoten "1" (Standardziele). +PrepareForBuild: + Das Verzeichnis "cmTC_263fb.dir\Debug\" wird erstellt. + Das Verzeichnis "C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\CMakeTmp\Debug\" wird erstellt. +InitializeBuildStatus: + "cmTC_263fb.dir\Debug\cmTC_263fb.unsuccessfulbuild" wird erstellt, da "AlwaysCreate" angegeben wurde. +ClCompile: + C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\bin\x86_amd64\CL.exe /c /Zi /W3 /WX- /Od /Ob0 /D WIN32 /D _WINDOWS /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /EHsc /RTC1 /MDd /GS /fp:precise /Zc:wchar_t /Zc:forScope /GR /Fo"cmTC_263fb.dir\Debug\\" /Fd"cmTC_263fb.dir\Debug\vc100.pdb" /Gd /TP /errorReport:queue "..\..\..\..\..\..\..\..\..\..\Program Files\CMake\share\cmake-3.10\Modules\CMakeCXXCompilerABI.cpp" + Microsoft (R) C/C++ Optimizing Compiler Version 16.00.40219.01 for x64 + Copyright (C) Microsoft Corporation. All rights reserved. + + cl /c /Zi /W3 /WX- /Od /Ob0 /D WIN32 /D _WINDOWS /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /EHsc /RTC1 /MDd /GS /fp:precise /Zc:wchar_t /Zc:forScope /GR /Fo"cmTC_263fb.dir\Debug\\" /Fd"cmTC_263fb.dir\Debug\vc100.pdb" /Gd /TP /errorReport:queue "..\..\..\..\..\..\..\..\..\..\Program Files\CMake\share\cmake-3.10\Modules\CMakeCXXCompilerABI.cpp" + + CMakeCXXCompilerABI.cpp +ManifestResourceCompile: + C:\Program Files (x86)\Microsoft SDKs\Windows\v7.0A\bin\rc.exe /nologo /fo"cmTC_263fb.dir\Debug\cmTC_263fb.exe.embed.manifest.res" cmTC_263fb.dir\Debug\cmTC_263fb_manifest.rc +Link: + C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\bin\x86_amd64\link.exe /ERRORREPORT:QUEUE /OUT:"C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\CMakeTmp\Debug\cmTC_263fb.exe" /INCREMENTAL /NOLOGO kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib /MANIFEST /ManifestFile:"cmTC_263fb.dir\Debug\cmTC_263fb.exe.intermediate.manifest" /MANIFESTUAC:"level='asInvoker' uiAccess='false'" /DEBUG /PDB:"C:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/CMakeTmp/Debug/cmTC_263fb.pdb" /SUBSYSTEM:CONSOLE /TLBID:1 /DYNAMICBASE /NXCOMPAT /IMPLIB:"C:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/CMakeTmp/Debug/cmTC_263fb.lib" /MACHINE:X64 cmTC_263fb.dir\Debug\cmTC_263fb.exe.embed.manifest.res + cmTC_263fb.dir\Debug\CMakeCXXCompilerABI.obj /machine:x64 + cmTC_263fb.vcxproj -> C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\CMakeTmp\Debug\cmTC_263fb.exe +Manifest: + C:\Program Files (x86)\Microsoft SDKs\Windows\v7.0A\bin\mt.exe /nologo /verbose /out:"cmTC_263fb.dir\Debug\cmTC_263fb.exe.embed.manifest" /manifest cmTC_263fb.dir\Debug\cmTC_263fb.exe.intermediate.manifest + C:\Program Files (x86)\Microsoft SDKs\Windows\v7.0A\bin\rc.exe /nologo /fo"cmTC_263fb.dir\Debug\cmTC_263fb.exe.embed.manifest.res" cmTC_263fb.dir\Debug\cmTC_263fb_manifest.rc +LinkEmbedManifest: + C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\bin\x86_amd64\link.exe /ERRORREPORT:QUEUE /OUT:"C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\CMakeTmp\Debug\cmTC_263fb.exe" /INCREMENTAL /NOLOGO kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib /MANIFEST /ManifestFile:"cmTC_263fb.dir\Debug\cmTC_263fb.exe.intermediate.manifest" /MANIFESTUAC:"level='asInvoker' uiAccess='false'" /DEBUG /PDB:"C:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/CMakeTmp/Debug/cmTC_263fb.pdb" /SUBSYSTEM:CONSOLE /TLBID:1 /DYNAMICBASE /NXCOMPAT /IMPLIB:"C:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/CMakeTmp/Debug/cmTC_263fb.lib" /MACHINE:X64 cmTC_263fb.dir\Debug\cmTC_263fb.exe.embed.manifest.res + cmTC_263fb.dir\Debug\CMakeCXXCompilerABI.obj /machine:x64 + cmTC_263fb.vcxproj -> C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\CMakeTmp\Debug\cmTC_263fb.exe +FinalizeBuildStatus: + Die Datei "cmTC_263fb.dir\Debug\cmTC_263fb.unsuccessfulbuild" wird gelöscht. + Aktualisieren des Timestamps von "cmTC_263fb.dir\Debug\cmTC_263fb.lastbuildstate". +Die Erstellung von Projekt "C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\CMakeTmp\cmTC_263fb.vcxproj" ist abgeschlossen (Standardziele). + +Der Buildvorgang wurde erfolgreich ausgeführt. + 0 Warnung(en) + 0 Fehler + +Verstrichene Zeit 00:00:01.62 + + + + +Detecting CXX [] compiler features compiled with the following output: +Change Dir: C:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/CMakeTmp + +Run Build Command:"C:/Windows/Microsoft.NET/Framework/v4.0.30319/MSBuild.exe" "cmTC_74c81.vcxproj" "/p:Configuration=Debug" "/p:VisualStudioVersion=10.0" +Microsoft (R)-Buildmodul, Version 4.7.2046.0 +[Microsoft .NET Framework, Version 4.0.30319.42000] +Copyright (C) Microsoft Corporation. Alle Rechte vorbehalten. + +Der Buildvorgang wurde am 26.01.2018 13:12:26 gestartet. +Projekt "C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\CMakeTmp\cmTC_74c81.vcxproj" auf Knoten "1" (Standardziele). +PrepareForBuild: + Das Verzeichnis "cmTC_74c81.dir\Debug\" wird erstellt. + Das Verzeichnis "C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\CMakeTmp\Debug\" wird erstellt. +InitializeBuildStatus: + "cmTC_74c81.dir\Debug\cmTC_74c81.unsuccessfulbuild" wird erstellt, da "AlwaysCreate" angegeben wurde. +ClCompile: + C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\bin\x86_amd64\CL.exe /c /Zi /W3 /WX- /Od /Ob0 /D WIN32 /D _WINDOWS /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /EHsc /RTC1 /MDd /GS /fp:precise /Zc:wchar_t /Zc:forScope /GR /Fo"cmTC_74c81.dir\Debug\\" /Fd"cmTC_74c81.dir\Debug\vc100.pdb" /Gd /TP /errorReport:queue ..\feature_tests.cxx + Microsoft (R) C/C++ Optimizing Compiler Version 16.00.40219.01 for x64 + Copyright (C) Microsoft Corporation. All rights reserved. + + cl /c /Zi /W3 /WX- /Od /Ob0 /D WIN32 /D _WINDOWS /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /EHsc /RTC1 /MDd /GS /fp:precise /Zc:wchar_t /Zc:forScope /GR /Fo"cmTC_74c81.dir\Debug\\" /Fd"cmTC_74c81.dir\Debug\vc100.pdb" /Gd /TP /errorReport:queue ..\feature_tests.cxx + + feature_tests.cxx +ManifestResourceCompile: + C:\Program Files (x86)\Microsoft SDKs\Windows\v7.0A\bin\rc.exe /nologo /fo"cmTC_74c81.dir\Debug\cmTC_74c81.exe.embed.manifest.res" cmTC_74c81.dir\Debug\cmTC_74c81_manifest.rc +Link: + C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\bin\x86_amd64\link.exe /ERRORREPORT:QUEUE /OUT:"C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\CMakeTmp\Debug\cmTC_74c81.exe" /INCREMENTAL /NOLOGO kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib /MANIFEST /ManifestFile:"cmTC_74c81.dir\Debug\cmTC_74c81.exe.intermediate.manifest" /MANIFESTUAC:"level='asInvoker' uiAccess='false'" /DEBUG /PDB:"C:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/CMakeTmp/Debug/cmTC_74c81.pdb" /SUBSYSTEM:CONSOLE /TLBID:1 /DYNAMICBASE /NXCOMPAT /IMPLIB:"C:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/CMakeTmp/Debug/cmTC_74c81.lib" /MACHINE:X64 cmTC_74c81.dir\Debug\cmTC_74c81.exe.embed.manifest.res + cmTC_74c81.dir\Debug\feature_tests.obj /machine:x64 + cmTC_74c81.vcxproj -> C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\CMakeTmp\Debug\cmTC_74c81.exe +Manifest: + C:\Program Files (x86)\Microsoft SDKs\Windows\v7.0A\bin\mt.exe /nologo /verbose /out:"cmTC_74c81.dir\Debug\cmTC_74c81.exe.embed.manifest" /manifest cmTC_74c81.dir\Debug\cmTC_74c81.exe.intermediate.manifest + C:\Program Files (x86)\Microsoft SDKs\Windows\v7.0A\bin\rc.exe /nologo /fo"cmTC_74c81.dir\Debug\cmTC_74c81.exe.embed.manifest.res" cmTC_74c81.dir\Debug\cmTC_74c81_manifest.rc +LinkEmbedManifest: + C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\bin\x86_amd64\link.exe /ERRORREPORT:QUEUE /OUT:"C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\CMakeTmp\Debug\cmTC_74c81.exe" /INCREMENTAL /NOLOGO kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib /MANIFEST /ManifestFile:"cmTC_74c81.dir\Debug\cmTC_74c81.exe.intermediate.manifest" /MANIFESTUAC:"level='asInvoker' uiAccess='false'" /DEBUG /PDB:"C:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/CMakeTmp/Debug/cmTC_74c81.pdb" /SUBSYSTEM:CONSOLE /TLBID:1 /DYNAMICBASE /NXCOMPAT /IMPLIB:"C:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/CMakeTmp/Debug/cmTC_74c81.lib" /MACHINE:X64 cmTC_74c81.dir\Debug\cmTC_74c81.exe.embed.manifest.res + cmTC_74c81.dir\Debug\feature_tests.obj /machine:x64 + cmTC_74c81.vcxproj -> C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\CMakeTmp\Debug\cmTC_74c81.exe +FinalizeBuildStatus: + Die Datei "cmTC_74c81.dir\Debug\cmTC_74c81.unsuccessfulbuild" wird gelöscht. + Aktualisieren des Timestamps von "cmTC_74c81.dir\Debug\cmTC_74c81.lastbuildstate". +Die Erstellung von Projekt "C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\CMakeTmp\cmTC_74c81.vcxproj" ist abgeschlossen (Standardziele). + +Der Buildvorgang wurde erfolgreich ausgeführt. + 0 Warnung(en) + 0 Fehler + +Verstrichene Zeit 00:00:01.37 + + + Feature record: CXX_FEATURE:0cxx_aggregate_default_initializers + Feature record: CXX_FEATURE:0cxx_alias_templates + Feature record: CXX_FEATURE:0cxx_alignas + Feature record: CXX_FEATURE:0cxx_alignof + Feature record: CXX_FEATURE:0cxx_attributes + Feature record: CXX_FEATURE:0cxx_attribute_deprecated + Feature record: CXX_FEATURE:1cxx_auto_type + Feature record: CXX_FEATURE:0cxx_binary_literals + Feature record: CXX_FEATURE:0cxx_constexpr + Feature record: CXX_FEATURE:0cxx_contextual_conversions + Feature record: CXX_FEATURE:1cxx_decltype + Feature record: CXX_FEATURE:0cxx_decltype_auto + Feature record: CXX_FEATURE:0cxx_default_function_template_args + Feature record: CXX_FEATURE:0cxx_defaulted_functions + Feature record: CXX_FEATURE:0cxx_defaulted_move_initializers + Feature record: CXX_FEATURE:0cxx_delegating_constructors + Feature record: CXX_FEATURE:0cxx_deleted_functions + Feature record: CXX_FEATURE:0cxx_digit_separators + Feature record: CXX_FEATURE:0cxx_enum_forward_declarations + Feature record: CXX_FEATURE:0cxx_explicit_conversions + Feature record: CXX_FEATURE:1cxx_extended_friend_declarations + Feature record: CXX_FEATURE:1cxx_extern_templates + Feature record: CXX_FEATURE:0cxx_final + Feature record: CXX_FEATURE:0cxx_func_identifier + Feature record: CXX_FEATURE:0cxx_generalized_initializers + Feature record: CXX_FEATURE:0cxx_generic_lambdas + Feature record: CXX_FEATURE:0cxx_inheriting_constructors + Feature record: CXX_FEATURE:0cxx_inline_namespaces + Feature record: CXX_FEATURE:1cxx_lambdas + Feature record: CXX_FEATURE:0cxx_lambda_init_captures + Feature record: CXX_FEATURE:1cxx_local_type_template_args + Feature record: CXX_FEATURE:1cxx_long_long_type + Feature record: CXX_FEATURE:0cxx_noexcept + Feature record: CXX_FEATURE:0cxx_nonstatic_member_init + Feature record: CXX_FEATURE:1cxx_nullptr + Feature record: CXX_FEATURE:1cxx_override + Feature record: CXX_FEATURE:0cxx_range_for + Feature record: CXX_FEATURE:0cxx_raw_string_literals + Feature record: CXX_FEATURE:0cxx_reference_qualified_functions + Feature record: CXX_FEATURE:0cxx_return_type_deduction + Feature record: CXX_FEATURE:1cxx_right_angle_brackets + Feature record: CXX_FEATURE:1cxx_rvalue_references + Feature record: CXX_FEATURE:0cxx_sizeof_member + Feature record: CXX_FEATURE:1cxx_static_assert + Feature record: CXX_FEATURE:0cxx_strong_enums + Feature record: CXX_FEATURE:1cxx_template_template_parameters + Feature record: CXX_FEATURE:0cxx_thread_local + Feature record: CXX_FEATURE:1cxx_trailing_return_types + Feature record: CXX_FEATURE:0cxx_unicode_literals + Feature record: CXX_FEATURE:0cxx_uniform_initialization + Feature record: CXX_FEATURE:0cxx_unrestricted_unions + Feature record: CXX_FEATURE:0cxx_user_literals + Feature record: CXX_FEATURE:0cxx_variable_templates + Feature record: CXX_FEATURE:1cxx_variadic_macros + Feature record: CXX_FEATURE:0cxx_variadic_templates diff --git a/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/TargetDirectories.txt b/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/TargetDirectories.txt new file mode 100644 index 0000000..2f8676a --- /dev/null +++ b/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/TargetDirectories.txt @@ -0,0 +1,3 @@ +C:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/cholmod-test.dir +C:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/ALL_BUILD.dir +C:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/ZERO_CHECK.dir diff --git a/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/cmake.check_cache b/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/cmake.check_cache new file mode 100644 index 0000000..3dccd73 --- /dev/null +++ b/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/cmake.check_cache @@ -0,0 +1 @@ +# This file is generated by cmake for dependency checking of the CMakeCache.txt file diff --git a/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/feature_tests.bin b/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/feature_tests.bin new file mode 100644 index 0000000..ddf1661 Binary files /dev/null and b/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/feature_tests.bin differ diff --git a/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/feature_tests.cxx b/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/feature_tests.cxx new file mode 100644 index 0000000..79ac5fe --- /dev/null +++ b/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/feature_tests.cxx @@ -0,0 +1,391 @@ + + const char features[] = {"\n" +"CXX_FEATURE:" +#if _MSC_FULL_VER >= 190024406 +"1" +#else +"0" +#endif +"cxx_aggregate_default_initializers\n" +"CXX_FEATURE:" +#if _MSC_VER >= 1800 +"1" +#else +"0" +#endif +"cxx_alias_templates\n" +"CXX_FEATURE:" +#if _MSC_VER >= 1900 +"1" +#else +"0" +#endif +"cxx_alignas\n" +"CXX_FEATURE:" +#if _MSC_VER >= 1900 +"1" +#else +"0" +#endif +"cxx_alignof\n" +"CXX_FEATURE:" +#if _MSC_VER >= 1900 +"1" +#else +"0" +#endif +"cxx_attributes\n" +"CXX_FEATURE:" +#if _MSC_VER >= 1900 +"1" +#else +"0" +#endif +"cxx_attribute_deprecated\n" +"CXX_FEATURE:" +#if _MSC_VER >= 1600 +"1" +#else +"0" +#endif +"cxx_auto_type\n" +"CXX_FEATURE:" +#if _MSC_VER >= 1900 +"1" +#else +"0" +#endif +"cxx_binary_literals\n" +"CXX_FEATURE:" +#if _MSC_VER >= 1900 +"1" +#else +"0" +#endif +"cxx_constexpr\n" +"CXX_FEATURE:" +#if _MSC_VER >= 1800 +"1" +#else +"0" +#endif +"cxx_contextual_conversions\n" +"CXX_FEATURE:" +#if _MSC_VER >= 1600 +"1" +#else +"0" +#endif +"cxx_decltype\n" +"CXX_FEATURE:" +#if _MSC_VER >= 1900 +"1" +#else +"0" +#endif +"cxx_decltype_auto\n" +"CXX_FEATURE:" +#if _MSC_VER >= 1800 +"1" +#else +"0" +#endif +"cxx_default_function_template_args\n" +"CXX_FEATURE:" +#if _MSC_VER >= 1800 +"1" +#else +"0" +#endif +"cxx_defaulted_functions\n" +"CXX_FEATURE:" +#if _MSC_VER >= 1900 +"1" +#else +"0" +#endif +"cxx_defaulted_move_initializers\n" +"CXX_FEATURE:" +#if _MSC_VER >= 1800 +"1" +#else +"0" +#endif +"cxx_delegating_constructors\n" +"CXX_FEATURE:" +#if _MSC_VER >= 1900 +"1" +#else +"0" +#endif +"cxx_deleted_functions\n" +"CXX_FEATURE:" +#if _MSC_VER >= 1900 +"1" +#else +"0" +#endif +"cxx_digit_separators\n" +"CXX_FEATURE:" +#if _MSC_VER >= 1700 +"1" +#else +"0" +#endif +"cxx_enum_forward_declarations\n" +"CXX_FEATURE:" +#if _MSC_VER >= 1800 +"1" +#else +"0" +#endif +"cxx_explicit_conversions\n" +"CXX_FEATURE:" +#if _MSC_VER >= 1600 +"1" +#else +"0" +#endif +"cxx_extended_friend_declarations\n" +"CXX_FEATURE:" +#if _MSC_VER >= 1600 +"1" +#else +"0" +#endif +"cxx_extern_templates\n" +"CXX_FEATURE:" +#if _MSC_VER >= 1700 +"1" +#else +"0" +#endif +"cxx_final\n" +"CXX_FEATURE:" +#if _MSC_VER >= 1900 +"1" +#else +"0" +#endif +"cxx_func_identifier\n" +"CXX_FEATURE:" +#if _MSC_FULL_VER >= 180030723 +"1" +#else +"0" +#endif +"cxx_generalized_initializers\n" +"CXX_FEATURE:" +#if _MSC_VER >= 1900 +"1" +#else +"0" +#endif +"cxx_generic_lambdas\n" +"CXX_FEATURE:" +#if _MSC_VER >= 1900 +"1" +#else +"0" +#endif +"cxx_inheriting_constructors\n" +"CXX_FEATURE:" +#if _MSC_VER >= 1900 +"1" +#else +"0" +#endif +"cxx_inline_namespaces\n" +"CXX_FEATURE:" +#if _MSC_VER >= 1600 +"1" +#else +"0" +#endif +"cxx_lambdas\n" +"CXX_FEATURE:" +#if _MSC_VER >= 1900 +"1" +#else +"0" +#endif +"cxx_lambda_init_captures\n" +"CXX_FEATURE:" +#if _MSC_VER >= 1600 +"1" +#else +"0" +#endif +"cxx_local_type_template_args\n" +"CXX_FEATURE:" +#if _MSC_VER >= 1600 +"1" +#else +"0" +#endif +"cxx_long_long_type\n" +"CXX_FEATURE:" +#if _MSC_VER >= 1900 +"1" +#else +"0" +#endif +"cxx_noexcept\n" +"CXX_FEATURE:" +#if _MSC_VER >= 1900 +"1" +#else +"0" +#endif +"cxx_nonstatic_member_init\n" +"CXX_FEATURE:" +#if _MSC_VER >= 1600 +"1" +#else +"0" +#endif +"cxx_nullptr\n" +"CXX_FEATURE:" +#if _MSC_VER >= 1600 +"1" +#else +"0" +#endif +"cxx_override\n" +"CXX_FEATURE:" +#if _MSC_VER >= 1700 +"1" +#else +"0" +#endif +"cxx_range_for\n" +"CXX_FEATURE:" +#if _MSC_VER >= 1800 +"1" +#else +"0" +#endif +"cxx_raw_string_literals\n" +"CXX_FEATURE:" +#if _MSC_VER >= 1900 +"1" +#else +"0" +#endif +"cxx_reference_qualified_functions\n" +"CXX_FEATURE:" +#if _MSC_VER >= 1900 +"1" +#else +"0" +#endif +"cxx_return_type_deduction\n" +"CXX_FEATURE:" +#if _MSC_VER >= 1600 +"1" +#else +"0" +#endif +"cxx_right_angle_brackets\n" +"CXX_FEATURE:" +#if _MSC_VER >= 1600 +"1" +#else +"0" +#endif +"cxx_rvalue_references\n" +"CXX_FEATURE:" +#if _MSC_VER >= 1900 +"1" +#else +"0" +#endif +"cxx_sizeof_member\n" +"CXX_FEATURE:" +#if _MSC_VER >= 1600 +"1" +#else +"0" +#endif +"cxx_static_assert\n" +"CXX_FEATURE:" +#if _MSC_VER >= 1700 +"1" +#else +"0" +#endif +"cxx_strong_enums\n" +"CXX_FEATURE:" +#if _MSC_VER >= 1600 +"1" +#else +"0" +#endif +"cxx_template_template_parameters\n" +"CXX_FEATURE:" +#if _MSC_VER >= 1900 +"1" +#else +"0" +#endif +"cxx_thread_local\n" +"CXX_FEATURE:" +#if _MSC_VER >= 1600 +"1" +#else +"0" +#endif +"cxx_trailing_return_types\n" +"CXX_FEATURE:" +#if _MSC_VER >= 1900 +"1" +#else +"0" +#endif +"cxx_unicode_literals\n" +"CXX_FEATURE:" +#if _MSC_VER >= 1800 +"1" +#else +"0" +#endif +"cxx_uniform_initialization\n" +"CXX_FEATURE:" +#if _MSC_VER >= 1900 +"1" +#else +"0" +#endif +"cxx_unrestricted_unions\n" +"CXX_FEATURE:" +#if _MSC_VER >= 1900 +"1" +#else +"0" +#endif +"cxx_user_literals\n" +"CXX_FEATURE:" +#if _MSC_FULL_VER >= 190023918 +"1" +#else +"0" +#endif +"cxx_variable_templates\n" +"CXX_FEATURE:" +#if _MSC_VER >= 1600 +"1" +#else +"0" +#endif +"cxx_variadic_macros\n" +"CXX_FEATURE:" +#if _MSC_VER >= 1800 +"1" +#else +"0" +#endif +"cxx_variadic_templates\n" + +}; + +int main(int argc, char** argv) { (void)argv; return features[argc]; } diff --git a/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/generate.stamp b/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/generate.stamp new file mode 100644 index 0000000..9b5f49f --- /dev/null +++ b/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/generate.stamp @@ -0,0 +1 @@ +# CMake generation timestamp file for this directory. diff --git a/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/generate.stamp.depend b/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/generate.stamp.depend new file mode 100644 index 0000000..7ba461e --- /dev/null +++ b/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/generate.stamp.depend @@ -0,0 +1,138 @@ +# CMake generation dependency list for this directory. +C:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/src/CMakeLists.txt +C:/Program Files/CMake/share/cmake-3.10/Modules/CMakeDetermineSystem.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/CMakeSystem.cmake.in +C:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.0/CMakeSystem.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/CMakeSystemSpecificInitialize.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/CMakeDetermineCCompiler.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/CMakeDetermineCompiler.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/CMakeDetermineCompilerId.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/CMakeCompilerIdDetection.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/Compiler/ADSP-DetermineCompiler.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/Compiler/ARMCC-DetermineCompiler.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/Compiler/AppleClang-DetermineCompiler.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/Compiler/Clang-DetermineCompilerInternal.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/Compiler/Borland-DetermineCompiler.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/Compiler/Bruce-C-DetermineCompiler.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/Compiler/Clang-DetermineCompiler.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/Compiler/Clang-DetermineCompilerInternal.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/Compiler/Compaq-C-DetermineCompiler.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/Compiler/Cray-DetermineCompiler.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/Compiler/Embarcadero-DetermineCompiler.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/Compiler/Fujitsu-DetermineCompiler.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/Compiler/GHS-DetermineCompiler.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/Compiler/GNU-C-DetermineCompiler.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/Compiler/HP-C-DetermineCompiler.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/Compiler/IAR-DetermineCompiler.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/Compiler/Intel-DetermineCompiler.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/Compiler/MIPSpro-DetermineCompiler.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/Compiler/MSVC-DetermineCompiler.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/Compiler/NVIDIA-DetermineCompiler.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/Compiler/PGI-DetermineCompiler.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/Compiler/PathScale-DetermineCompiler.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/Compiler/SCO-DetermineCompiler.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/Compiler/SDCC-C-DetermineCompiler.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/Compiler/SunPro-C-DetermineCompiler.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/Compiler/TI-DetermineCompiler.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/Compiler/TinyCC-C-DetermineCompiler.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/Compiler/VisualAge-C-DetermineCompiler.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/Compiler/Watcom-DetermineCompiler.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/Compiler/XL-C-DetermineCompiler.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/Compiler/zOS-C-DetermineCompiler.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/CompilerId/VS-10.vcxproj.in +C:/Program Files/CMake/share/cmake-3.10/Modules/CMakeFindBinUtils.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/CMakeCCompiler.cmake.in +C:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.0/CMakeCCompiler.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/CMakeDetermineCXXCompiler.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/CMakeDetermineCompiler.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/Platform/Windows-Determine-CXX.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/CMakeDetermineCompilerId.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/CMakeCompilerIdDetection.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/Compiler/ADSP-DetermineCompiler.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/Compiler/ARMCC-DetermineCompiler.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/Compiler/AppleClang-DetermineCompiler.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/Compiler/Clang-DetermineCompilerInternal.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/Compiler/Borland-DetermineCompiler.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/Compiler/Clang-DetermineCompiler.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/Compiler/Clang-DetermineCompilerInternal.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/Compiler/Comeau-CXX-DetermineCompiler.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/Compiler/Compaq-CXX-DetermineCompiler.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/Compiler/Cray-DetermineCompiler.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/Compiler/Embarcadero-DetermineCompiler.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/Compiler/Fujitsu-DetermineCompiler.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/Compiler/GHS-DetermineCompiler.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/Compiler/GNU-CXX-DetermineCompiler.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/Compiler/HP-CXX-DetermineCompiler.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/Compiler/IAR-DetermineCompiler.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/Compiler/Intel-DetermineCompiler.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/Compiler/MIPSpro-DetermineCompiler.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/Compiler/MSVC-DetermineCompiler.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/Compiler/NVIDIA-DetermineCompiler.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/Compiler/PGI-DetermineCompiler.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/Compiler/PathScale-DetermineCompiler.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/Compiler/SCO-DetermineCompiler.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/Compiler/TI-DetermineCompiler.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/Compiler/VisualAge-CXX-DetermineCompiler.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/Compiler/Watcom-DetermineCompiler.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/Compiler/XL-CXX-DetermineCompiler.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/Compiler/zOS-CXX-DetermineCompiler.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/CompilerId/VS-10.vcxproj.in +C:/Program Files/CMake/share/cmake-3.10/Modules/CMakeFindBinUtils.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/CMakeCXXCompiler.cmake.in +C:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.0/CMakeCXXCompiler.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/CMakeSystemSpecificInformation.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/CMakeGenericSystem.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/Platform/Windows.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/Platform/WindowsPaths.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/CMakeCInformation.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/CMakeLanguageInformation.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/Platform/Windows-MSVC-C.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/Platform/Windows-MSVC.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/CMakeDetermineRCCompiler.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/CMakeRCCompiler.cmake.in +C:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.0/CMakeRCCompiler.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/CMakeRCInformation.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/CMakeTestRCCompiler.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/CMakeCommonLanguageInclude.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/CMakeTestCCompiler.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/CMakeTestCompilerCommon.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/CMakeDetermineCompilerABI.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/CMakeParseImplicitLinkInfo.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/CMakeCCompilerABI.c +C:/Program Files/CMake/share/cmake-3.10/Modules/CMakeDetermineCompileFeatures.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/CMakeCCompiler.cmake.in +C:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.0/CMakeCCompiler.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/CMakeCXXInformation.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/CMakeLanguageInformation.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/Compiler/MSVC-CXX.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/Compiler/CMakeCommonCompilerMacros.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/Platform/Windows-MSVC-CXX.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/Platform/Windows-MSVC.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/CMakeCommonLanguageInclude.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/CMakeTestCXXCompiler.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/CMakeTestCompilerCommon.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/CMakeDetermineCompilerABI.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/CMakeParseImplicitLinkInfo.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/CMakeCXXCompilerABI.cpp +C:/Program Files/CMake/share/cmake-3.10/Modules/CMakeDetermineCompileFeatures.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/Internal/FeatureTesting.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/Compiler/MSVC-CXX-FeatureTests.cmake +C:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/feature_tests.cxx +C:/Program Files/CMake/share/cmake-3.10/Modules/CMakeCXXCompiler.cmake.in +C:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/3.10.0/CMakeCXXCompiler.cmake +C:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/conanbuildinfo.cmake +C:/Program Files/CMake/share/cmake-3.10/Modules/CMakeParseArguments.cmake +C:/Users/t.vogl/.conan/data/suitesparse/5164583/intence/testing/package/85f780d0530411a64b0be4407b381706014b445d/FindCholmod.cmake +C:/Users/t.vogl/.conan/data/suitesparse/5164583/intence/testing/package/85f780d0530411a64b0be4407b381706014b445d/lib/cmake/suitesparse-4.5.0/suitesparse-config-version.cmake +C:/Users/t.vogl/.conan/data/suitesparse/5164583/intence/testing/package/85f780d0530411a64b0be4407b381706014b445d/lib/cmake/suitesparse-4.5.0/suitesparse-config.cmake +C:/Users/t.vogl/.conan/data/suitesparse/5164583/intence/testing/package/85f780d0530411a64b0be4407b381706014b445d/lib/cmake/suitesparse-4.5.0/SuiteSparse-targets.cmake +C:/Users/t.vogl/.conan/data/suitesparse/5164583/intence/testing/package/85f780d0530411a64b0be4407b381706014b445d/lib/cmake/suitesparse-4.5.0/SuiteSparse-targets-release.cmake diff --git a/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/generate.stamp.list b/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/generate.stamp.list new file mode 100644 index 0000000..0c60556 --- /dev/null +++ b/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/generate.stamp.list @@ -0,0 +1 @@ +C:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/generate.stamp diff --git a/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/SuitesparseTest.sln b/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/SuitesparseTest.sln new file mode 100644 index 0000000..db39a75 --- /dev/null +++ b/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/SuitesparseTest.sln @@ -0,0 +1,52 @@ +Microsoft Visual Studio Solution File, Format Version 11.00 +# Visual Studio 2010 +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ALL_BUILD", "ALL_BUILD.vcxproj", "{73CECBEC-C161-36B1-A885-68DD679270C8}" + ProjectSection(ProjectDependencies) = postProject + {1AB0F46E-D70A-39A6-9F4B-01E2564B21BE} = {1AB0F46E-D70A-39A6-9F4B-01E2564B21BE} + {50A1EB3F-2C13-32E9-BF39-957D393FD2F0} = {50A1EB3F-2C13-32E9-BF39-957D393FD2F0} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ZERO_CHECK", "ZERO_CHECK.vcxproj", "{1AB0F46E-D70A-39A6-9F4B-01E2564B21BE}" + ProjectSection(ProjectDependencies) = postProject + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "cholmod-test", "cholmod-test.vcxproj", "{50A1EB3F-2C13-32E9-BF39-957D393FD2F0}" + ProjectSection(ProjectDependencies) = postProject + {1AB0F46E-D70A-39A6-9F4B-01E2564B21BE} = {1AB0F46E-D70A-39A6-9F4B-01E2564B21BE} + EndProjectSection +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|x64 = Debug|x64 + Release|x64 = Release|x64 + MinSizeRel|x64 = MinSizeRel|x64 + RelWithDebInfo|x64 = RelWithDebInfo|x64 + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {73CECBEC-C161-36B1-A885-68DD679270C8}.Debug|x64.ActiveCfg = Debug|x64 + {73CECBEC-C161-36B1-A885-68DD679270C8}.Release|x64.ActiveCfg = Release|x64 + {73CECBEC-C161-36B1-A885-68DD679270C8}.MinSizeRel|x64.ActiveCfg = MinSizeRel|x64 + {73CECBEC-C161-36B1-A885-68DD679270C8}.RelWithDebInfo|x64.ActiveCfg = RelWithDebInfo|x64 + {1AB0F46E-D70A-39A6-9F4B-01E2564B21BE}.Debug|x64.ActiveCfg = Debug|x64 + {1AB0F46E-D70A-39A6-9F4B-01E2564B21BE}.Debug|x64.Build.0 = Debug|x64 + {1AB0F46E-D70A-39A6-9F4B-01E2564B21BE}.Release|x64.ActiveCfg = Release|x64 + {1AB0F46E-D70A-39A6-9F4B-01E2564B21BE}.Release|x64.Build.0 = Release|x64 + {1AB0F46E-D70A-39A6-9F4B-01E2564B21BE}.MinSizeRel|x64.ActiveCfg = MinSizeRel|x64 + {1AB0F46E-D70A-39A6-9F4B-01E2564B21BE}.MinSizeRel|x64.Build.0 = MinSizeRel|x64 + {1AB0F46E-D70A-39A6-9F4B-01E2564B21BE}.RelWithDebInfo|x64.ActiveCfg = RelWithDebInfo|x64 + {1AB0F46E-D70A-39A6-9F4B-01E2564B21BE}.RelWithDebInfo|x64.Build.0 = RelWithDebInfo|x64 + {50A1EB3F-2C13-32E9-BF39-957D393FD2F0}.Debug|x64.ActiveCfg = Debug|x64 + {50A1EB3F-2C13-32E9-BF39-957D393FD2F0}.Debug|x64.Build.0 = Debug|x64 + {50A1EB3F-2C13-32E9-BF39-957D393FD2F0}.Release|x64.ActiveCfg = Release|x64 + {50A1EB3F-2C13-32E9-BF39-957D393FD2F0}.Release|x64.Build.0 = Release|x64 + {50A1EB3F-2C13-32E9-BF39-957D393FD2F0}.MinSizeRel|x64.ActiveCfg = MinSizeRel|x64 + {50A1EB3F-2C13-32E9-BF39-957D393FD2F0}.MinSizeRel|x64.Build.0 = MinSizeRel|x64 + {50A1EB3F-2C13-32E9-BF39-957D393FD2F0}.RelWithDebInfo|x64.ActiveCfg = RelWithDebInfo|x64 + {50A1EB3F-2C13-32E9-BF39-957D393FD2F0}.RelWithDebInfo|x64.Build.0 = RelWithDebInfo|x64 + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {21781FCB-F7D5-37E1-80FB-04106CA401E8} + EndGlobalSection + GlobalSection(ExtensibilityAddIns) = postSolution + EndGlobalSection +EndGlobal diff --git a/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/ZERO_CHECK.vcxproj b/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/ZERO_CHECK.vcxproj new file mode 100644 index 0000000..74b7881 --- /dev/null +++ b/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/ZERO_CHECK.vcxproj @@ -0,0 +1,161 @@ + + + + + Debug + x64 + + + Release + x64 + + + MinSizeRel + x64 + + + RelWithDebInfo + x64 + + + + {1AB0F46E-D70A-39A6-9F4B-01E2564B21BE} + Win32Proj + x64 + ZERO_CHECK + + + + Utility + MultiByte + v100 + + + Utility + MultiByte + v100 + + + Utility + MultiByte + v100 + + + Utility + MultiByte + v100 + + + + + + + + + + <_ProjectFileVersion>10.0.20506.1 + $(Platform)\$(Configuration)\$(ProjectName)\ + $(Platform)\$(Configuration)\$(ProjectName)\ + $(Platform)\$(Configuration)\$(ProjectName)\ + $(Platform)\$(Configuration)\$(ProjectName)\ + + + + C:\Users\t.vogl\.conan\data\suitesparse\5164583\intence\testing\package\85f780d0530411a64b0be4407b381706014b445d\include;C:\Users\t.vogl\.conan\data\suitesparse\5164583\intence\testing\package\85f780d0530411a64b0be4407b381706014b445d\include\suitesparse;%(AdditionalIncludeDirectories) + $(ProjectDir)/$(IntDir) + %(Filename).h + %(Filename).tlb + %(Filename)_i.c + %(Filename)_p.c + + + + + C:\Users\t.vogl\.conan\data\suitesparse\5164583\intence\testing\package\85f780d0530411a64b0be4407b381706014b445d\include;C:\Users\t.vogl\.conan\data\suitesparse\5164583\intence\testing\package\85f780d0530411a64b0be4407b381706014b445d\include\suitesparse;%(AdditionalIncludeDirectories) + $(ProjectDir)/$(IntDir) + %(Filename).h + %(Filename).tlb + %(Filename)_i.c + %(Filename)_p.c + + + + + C:\Users\t.vogl\.conan\data\suitesparse\5164583\intence\testing\package\85f780d0530411a64b0be4407b381706014b445d\include;C:\Users\t.vogl\.conan\data\suitesparse\5164583\intence\testing\package\85f780d0530411a64b0be4407b381706014b445d\include\suitesparse;%(AdditionalIncludeDirectories) + $(ProjectDir)/$(IntDir) + %(Filename).h + %(Filename).tlb + %(Filename)_i.c + %(Filename)_p.c + + + + + C:\Users\t.vogl\.conan\data\suitesparse\5164583\intence\testing\package\85f780d0530411a64b0be4407b381706014b445d\include;C:\Users\t.vogl\.conan\data\suitesparse\5164583\intence\testing\package\85f780d0530411a64b0be4407b381706014b445d\include\suitesparse;%(AdditionalIncludeDirectories) + $(ProjectDir)/$(IntDir) + %(Filename).h + %(Filename).tlb + %(Filename)_i.c + %(Filename)_p.c + + + + + Checking Build System + setlocal +"C:\Program Files\CMake\bin\cmake.exe" -HC:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/src -BC:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd --check-stamp-list CMakeFiles/generate.stamp.list --vs-solution-file C:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/SuitesparseTest.sln +if %errorlevel% neq 0 goto :cmEnd +:cmEnd +endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone +:cmErrorLevel +exit /b %1 +:cmDone +if %errorlevel% neq 0 goto :VCEnd + C:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/61d73ab79f31d2ef8d1bff3fece4b915/generate.stamp.rule;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCCompiler.cmake.in;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCCompilerABI.c;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCInformation.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCXXCompiler.cmake.in;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCXXCompilerABI.cpp;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCXXInformation.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCommonLanguageInclude.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCompilerIdDetection.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCXXCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCompileFeatures.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCompilerABI.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCompilerId.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineRCCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineSystem.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeFindBinUtils.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeGenericSystem.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeLanguageInformation.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeParseArguments.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeParseImplicitLinkInfo.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeRCCompiler.cmake.in;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeRCInformation.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeSystem.cmake.in;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeSystemSpecificInformation.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeSystemSpecificInitialize.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeTestCCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeTestCXXCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeTestCompilerCommon.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeTestRCCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\ADSP-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\ARMCC-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\AppleClang-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Borland-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Bruce-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\CMakeCommonCompilerMacros.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Clang-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Clang-DetermineCompilerInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Comeau-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Compaq-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Compaq-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Cray-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Embarcadero-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Fujitsu-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\GHS-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\GNU-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\GNU-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\HP-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\HP-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\IAR-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\IBMCPP-C-DetermineVersionInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\IBMCPP-CXX-DetermineVersionInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Intel-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\MIPSpro-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\MSVC-CXX-FeatureTests.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\MSVC-CXX.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\MSVC-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\NVIDIA-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\OpenWatcom-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\PGI-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\PathScale-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\SCO-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\SDCC-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\SunPro-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\SunPro-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\TI-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\TinyCC-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\VisualAge-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\VisualAge-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Watcom-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\XL-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\XL-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\zOS-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\zOS-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CompilerId\VS-10.vcxproj.in;C:\Program Files\CMake\share\cmake-3.10\Modules\Internal\FeatureTesting.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\Windows-Determine-CXX.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\Windows-MSVC-C.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\Windows-MSVC-CXX.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\Windows-MSVC.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\Windows.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\WindowsPaths.cmake;C:\Users\t.vogl\.conan\data\suitesparse\5164583\intence\testing\package\85f780d0530411a64b0be4407b381706014b445d\FindCholmod.cmake;C:\Users\t.vogl\.conan\data\suitesparse\5164583\intence\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\cmake\suitesparse-4.5.0\SuiteSparse-targets-release.cmake;C:\Users\t.vogl\.conan\data\suitesparse\5164583\intence\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\cmake\suitesparse-4.5.0\SuiteSparse-targets.cmake;C:\Users\t.vogl\.conan\data\suitesparse\5164583\intence\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\cmake\suitesparse-4.5.0\suitesparse-config-version.cmake;C:\Users\t.vogl\.conan\data\suitesparse\5164583\intence\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\cmake\suitesparse-4.5.0\suitesparse-config.cmake;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\3.10.0\CMakeCCompiler.cmake;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\3.10.0\CMakeCXXCompiler.cmake;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\3.10.0\CMakeRCCompiler.cmake;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\3.10.0\CMakeSystem.cmake;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\feature_tests.cxx;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\conanbuildinfo.cmake;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\src\CMakeLists.txt;%(AdditionalInputs) + C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\generate.stamp + Checking Build System + setlocal +"C:\Program Files\CMake\bin\cmake.exe" -HC:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/src -BC:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd --check-stamp-list CMakeFiles/generate.stamp.list --vs-solution-file C:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/SuitesparseTest.sln +if %errorlevel% neq 0 goto :cmEnd +:cmEnd +endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone +:cmErrorLevel +exit /b %1 +:cmDone +if %errorlevel% neq 0 goto :VCEnd + C:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/61d73ab79f31d2ef8d1bff3fece4b915/generate.stamp.rule;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCCompiler.cmake.in;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCCompilerABI.c;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCInformation.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCXXCompiler.cmake.in;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCXXCompilerABI.cpp;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCXXInformation.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCommonLanguageInclude.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCompilerIdDetection.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCXXCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCompileFeatures.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCompilerABI.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCompilerId.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineRCCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineSystem.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeFindBinUtils.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeGenericSystem.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeLanguageInformation.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeParseArguments.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeParseImplicitLinkInfo.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeRCCompiler.cmake.in;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeRCInformation.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeSystem.cmake.in;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeSystemSpecificInformation.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeSystemSpecificInitialize.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeTestCCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeTestCXXCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeTestCompilerCommon.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeTestRCCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\ADSP-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\ARMCC-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\AppleClang-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Borland-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Bruce-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\CMakeCommonCompilerMacros.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Clang-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Clang-DetermineCompilerInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Comeau-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Compaq-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Compaq-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Cray-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Embarcadero-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Fujitsu-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\GHS-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\GNU-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\GNU-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\HP-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\HP-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\IAR-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\IBMCPP-C-DetermineVersionInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\IBMCPP-CXX-DetermineVersionInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Intel-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\MIPSpro-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\MSVC-CXX-FeatureTests.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\MSVC-CXX.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\MSVC-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\NVIDIA-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\OpenWatcom-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\PGI-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\PathScale-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\SCO-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\SDCC-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\SunPro-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\SunPro-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\TI-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\TinyCC-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\VisualAge-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\VisualAge-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Watcom-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\XL-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\XL-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\zOS-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\zOS-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CompilerId\VS-10.vcxproj.in;C:\Program Files\CMake\share\cmake-3.10\Modules\Internal\FeatureTesting.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\Windows-Determine-CXX.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\Windows-MSVC-C.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\Windows-MSVC-CXX.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\Windows-MSVC.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\Windows.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\WindowsPaths.cmake;C:\Users\t.vogl\.conan\data\suitesparse\5164583\intence\testing\package\85f780d0530411a64b0be4407b381706014b445d\FindCholmod.cmake;C:\Users\t.vogl\.conan\data\suitesparse\5164583\intence\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\cmake\suitesparse-4.5.0\SuiteSparse-targets-release.cmake;C:\Users\t.vogl\.conan\data\suitesparse\5164583\intence\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\cmake\suitesparse-4.5.0\SuiteSparse-targets.cmake;C:\Users\t.vogl\.conan\data\suitesparse\5164583\intence\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\cmake\suitesparse-4.5.0\suitesparse-config-version.cmake;C:\Users\t.vogl\.conan\data\suitesparse\5164583\intence\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\cmake\suitesparse-4.5.0\suitesparse-config.cmake;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\3.10.0\CMakeCCompiler.cmake;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\3.10.0\CMakeCXXCompiler.cmake;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\3.10.0\CMakeRCCompiler.cmake;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\3.10.0\CMakeSystem.cmake;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\feature_tests.cxx;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\conanbuildinfo.cmake;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\src\CMakeLists.txt;%(AdditionalInputs) + C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\generate.stamp + Checking Build System + setlocal +"C:\Program Files\CMake\bin\cmake.exe" -HC:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/src -BC:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd --check-stamp-list CMakeFiles/generate.stamp.list --vs-solution-file C:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/SuitesparseTest.sln +if %errorlevel% neq 0 goto :cmEnd +:cmEnd +endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone +:cmErrorLevel +exit /b %1 +:cmDone +if %errorlevel% neq 0 goto :VCEnd + C:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/61d73ab79f31d2ef8d1bff3fece4b915/generate.stamp.rule;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCCompiler.cmake.in;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCCompilerABI.c;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCInformation.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCXXCompiler.cmake.in;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCXXCompilerABI.cpp;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCXXInformation.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCommonLanguageInclude.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCompilerIdDetection.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCXXCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCompileFeatures.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCompilerABI.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCompilerId.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineRCCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineSystem.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeFindBinUtils.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeGenericSystem.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeLanguageInformation.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeParseArguments.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeParseImplicitLinkInfo.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeRCCompiler.cmake.in;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeRCInformation.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeSystem.cmake.in;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeSystemSpecificInformation.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeSystemSpecificInitialize.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeTestCCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeTestCXXCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeTestCompilerCommon.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeTestRCCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\ADSP-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\ARMCC-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\AppleClang-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Borland-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Bruce-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\CMakeCommonCompilerMacros.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Clang-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Clang-DetermineCompilerInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Comeau-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Compaq-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Compaq-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Cray-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Embarcadero-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Fujitsu-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\GHS-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\GNU-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\GNU-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\HP-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\HP-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\IAR-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\IBMCPP-C-DetermineVersionInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\IBMCPP-CXX-DetermineVersionInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Intel-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\MIPSpro-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\MSVC-CXX-FeatureTests.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\MSVC-CXX.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\MSVC-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\NVIDIA-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\OpenWatcom-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\PGI-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\PathScale-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\SCO-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\SDCC-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\SunPro-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\SunPro-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\TI-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\TinyCC-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\VisualAge-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\VisualAge-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Watcom-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\XL-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\XL-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\zOS-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\zOS-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CompilerId\VS-10.vcxproj.in;C:\Program Files\CMake\share\cmake-3.10\Modules\Internal\FeatureTesting.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\Windows-Determine-CXX.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\Windows-MSVC-C.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\Windows-MSVC-CXX.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\Windows-MSVC.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\Windows.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\WindowsPaths.cmake;C:\Users\t.vogl\.conan\data\suitesparse\5164583\intence\testing\package\85f780d0530411a64b0be4407b381706014b445d\FindCholmod.cmake;C:\Users\t.vogl\.conan\data\suitesparse\5164583\intence\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\cmake\suitesparse-4.5.0\SuiteSparse-targets-release.cmake;C:\Users\t.vogl\.conan\data\suitesparse\5164583\intence\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\cmake\suitesparse-4.5.0\SuiteSparse-targets.cmake;C:\Users\t.vogl\.conan\data\suitesparse\5164583\intence\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\cmake\suitesparse-4.5.0\suitesparse-config-version.cmake;C:\Users\t.vogl\.conan\data\suitesparse\5164583\intence\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\cmake\suitesparse-4.5.0\suitesparse-config.cmake;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\3.10.0\CMakeCCompiler.cmake;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\3.10.0\CMakeCXXCompiler.cmake;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\3.10.0\CMakeRCCompiler.cmake;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\3.10.0\CMakeSystem.cmake;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\feature_tests.cxx;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\conanbuildinfo.cmake;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\src\CMakeLists.txt;%(AdditionalInputs) + C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\generate.stamp + Checking Build System + setlocal +"C:\Program Files\CMake\bin\cmake.exe" -HC:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/src -BC:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd --check-stamp-list CMakeFiles/generate.stamp.list --vs-solution-file C:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/SuitesparseTest.sln +if %errorlevel% neq 0 goto :cmEnd +:cmEnd +endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone +:cmErrorLevel +exit /b %1 +:cmDone +if %errorlevel% neq 0 goto :VCEnd + C:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/61d73ab79f31d2ef8d1bff3fece4b915/generate.stamp.rule;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCCompiler.cmake.in;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCCompilerABI.c;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCInformation.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCXXCompiler.cmake.in;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCXXCompilerABI.cpp;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCXXInformation.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCommonLanguageInclude.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCompilerIdDetection.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCXXCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCompileFeatures.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCompilerABI.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCompilerId.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineRCCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineSystem.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeFindBinUtils.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeGenericSystem.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeLanguageInformation.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeParseArguments.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeParseImplicitLinkInfo.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeRCCompiler.cmake.in;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeRCInformation.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeSystem.cmake.in;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeSystemSpecificInformation.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeSystemSpecificInitialize.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeTestCCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeTestCXXCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeTestCompilerCommon.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeTestRCCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\ADSP-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\ARMCC-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\AppleClang-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Borland-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Bruce-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\CMakeCommonCompilerMacros.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Clang-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Clang-DetermineCompilerInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Comeau-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Compaq-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Compaq-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Cray-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Embarcadero-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Fujitsu-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\GHS-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\GNU-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\GNU-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\HP-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\HP-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\IAR-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\IBMCPP-C-DetermineVersionInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\IBMCPP-CXX-DetermineVersionInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Intel-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\MIPSpro-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\MSVC-CXX-FeatureTests.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\MSVC-CXX.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\MSVC-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\NVIDIA-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\OpenWatcom-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\PGI-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\PathScale-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\SCO-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\SDCC-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\SunPro-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\SunPro-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\TI-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\TinyCC-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\VisualAge-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\VisualAge-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Watcom-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\XL-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\XL-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\zOS-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\zOS-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CompilerId\VS-10.vcxproj.in;C:\Program Files\CMake\share\cmake-3.10\Modules\Internal\FeatureTesting.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\Windows-Determine-CXX.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\Windows-MSVC-C.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\Windows-MSVC-CXX.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\Windows-MSVC.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\Windows.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\WindowsPaths.cmake;C:\Users\t.vogl\.conan\data\suitesparse\5164583\intence\testing\package\85f780d0530411a64b0be4407b381706014b445d\FindCholmod.cmake;C:\Users\t.vogl\.conan\data\suitesparse\5164583\intence\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\cmake\suitesparse-4.5.0\SuiteSparse-targets-release.cmake;C:\Users\t.vogl\.conan\data\suitesparse\5164583\intence\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\cmake\suitesparse-4.5.0\SuiteSparse-targets.cmake;C:\Users\t.vogl\.conan\data\suitesparse\5164583\intence\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\cmake\suitesparse-4.5.0\suitesparse-config-version.cmake;C:\Users\t.vogl\.conan\data\suitesparse\5164583\intence\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\cmake\suitesparse-4.5.0\suitesparse-config.cmake;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\3.10.0\CMakeCCompiler.cmake;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\3.10.0\CMakeCXXCompiler.cmake;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\3.10.0\CMakeRCCompiler.cmake;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\3.10.0\CMakeSystem.cmake;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\feature_tests.cxx;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\conanbuildinfo.cmake;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\src\CMakeLists.txt;%(AdditionalInputs) + C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\generate.stamp + + + + + + + + + + \ No newline at end of file diff --git a/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/ZERO_CHECK.vcxproj.filters b/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/ZERO_CHECK.vcxproj.filters new file mode 100644 index 0000000..480c241 --- /dev/null +++ b/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/ZERO_CHECK.vcxproj.filters @@ -0,0 +1,13 @@ + + + + + CMake Rules + + + + + {105DE82E-D97D-381D-8B57-3A3F595847CA} + + + diff --git a/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/bin/cholmod-test.exe b/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/bin/cholmod-test.exe new file mode 100644 index 0000000..c3afa82 Binary files /dev/null and b/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/bin/cholmod-test.exe differ diff --git a/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/cholmod-test.dir/Release/CL.read.1.tlog b/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/cholmod-test.dir/Release/CL.read.1.tlog new file mode 100644 index 0000000..8957ce1 Binary files /dev/null and b/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/cholmod-test.dir/Release/CL.read.1.tlog differ diff --git a/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/cholmod-test.dir/Release/CL.write.1.tlog b/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/cholmod-test.dir/Release/CL.write.1.tlog new file mode 100644 index 0000000..e681963 Binary files /dev/null and b/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/cholmod-test.dir/Release/CL.write.1.tlog differ diff --git a/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/cholmod-test.dir/Release/cholmod-test.exe.intermediate.manifest b/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/cholmod-test.dir/Release/cholmod-test.exe.intermediate.manifest new file mode 100644 index 0000000..ecea6f7 --- /dev/null +++ b/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/cholmod-test.dir/Release/cholmod-test.exe.intermediate.manifest @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/cholmod-test.dir/Release/cholmod-test.lastbuildstate b/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/cholmod-test.dir/Release/cholmod-test.lastbuildstate new file mode 100644 index 0000000..0bcd497 --- /dev/null +++ b/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/cholmod-test.dir/Release/cholmod-test.lastbuildstate @@ -0,0 +1,2 @@ +#v4.0:v100:false +Release|x64|C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\| diff --git a/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/cholmod-test.dir/Release/cholmod-test.obj b/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/cholmod-test.dir/Release/cholmod-test.obj new file mode 100644 index 0000000..79ec1d7 Binary files /dev/null and b/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/cholmod-test.dir/Release/cholmod-test.obj differ diff --git a/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/cholmod-test.dir/Release/cholmod-test.write.1.tlog b/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/cholmod-test.dir/Release/cholmod-test.write.1.tlog new file mode 100644 index 0000000..e69de29 diff --git a/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/cholmod-test.dir/Release/cl.command.1.tlog b/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/cholmod-test.dir/Release/cl.command.1.tlog new file mode 100644 index 0000000..e752522 Binary files /dev/null and b/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/cholmod-test.dir/Release/cl.command.1.tlog differ diff --git a/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/cholmod-test.dir/Release/custombuild.command.1.tlog b/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/cholmod-test.dir/Release/custombuild.command.1.tlog new file mode 100644 index 0000000..cc986e3 Binary files /dev/null and b/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/cholmod-test.dir/Release/custombuild.command.1.tlog differ diff --git a/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/cholmod-test.dir/Release/custombuild.read.1.tlog b/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/cholmod-test.dir/Release/custombuild.read.1.tlog new file mode 100644 index 0000000..f582c63 Binary files /dev/null and b/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/cholmod-test.dir/Release/custombuild.read.1.tlog differ diff --git a/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/cholmod-test.dir/Release/custombuild.write.1.tlog b/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/cholmod-test.dir/Release/custombuild.write.1.tlog new file mode 100644 index 0000000..fd2c928 Binary files /dev/null and b/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/cholmod-test.dir/Release/custombuild.write.1.tlog differ diff --git a/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/cholmod-test.dir/Release/link.command.1.tlog b/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/cholmod-test.dir/Release/link.command.1.tlog new file mode 100644 index 0000000..7f29c9b Binary files /dev/null and b/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/cholmod-test.dir/Release/link.command.1.tlog differ diff --git a/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/cholmod-test.dir/Release/link.read.1.tlog b/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/cholmod-test.dir/Release/link.read.1.tlog new file mode 100644 index 0000000..bdb9ec6 Binary files /dev/null and b/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/cholmod-test.dir/Release/link.read.1.tlog differ diff --git a/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/cholmod-test.dir/Release/link.write.1.tlog b/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/cholmod-test.dir/Release/link.write.1.tlog new file mode 100644 index 0000000..4ecc45a Binary files /dev/null and b/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/cholmod-test.dir/Release/link.write.1.tlog differ diff --git a/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/cholmod-test.dir/Release/mt.command.1.tlog b/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/cholmod-test.dir/Release/mt.command.1.tlog new file mode 100644 index 0000000..54cfbd5 Binary files /dev/null and b/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/cholmod-test.dir/Release/mt.command.1.tlog differ diff --git a/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/cholmod-test.dir/Release/mt.read.1.tlog b/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/cholmod-test.dir/Release/mt.read.1.tlog new file mode 100644 index 0000000..8686373 Binary files /dev/null and b/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/cholmod-test.dir/Release/mt.read.1.tlog differ diff --git a/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/cholmod-test.dir/Release/mt.write.1.tlog b/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/cholmod-test.dir/Release/mt.write.1.tlog new file mode 100644 index 0000000..fba14a9 Binary files /dev/null and b/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/cholmod-test.dir/Release/mt.write.1.tlog differ diff --git a/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/cholmod-test.vcxproj b/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/cholmod-test.vcxproj new file mode 100644 index 0000000..57a2952 --- /dev/null +++ b/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/cholmod-test.vcxproj @@ -0,0 +1,323 @@ + + + + + Debug + x64 + + + Release + x64 + + + MinSizeRel + x64 + + + RelWithDebInfo + x64 + + + + {50A1EB3F-2C13-32E9-BF39-957D393FD2F0} + Win32Proj + x64 + cholmod-test + + + + Application + MultiByte + v100 + + + Application + MultiByte + v100 + + + Application + MultiByte + v100 + + + Application + MultiByte + v100 + + + + + + + + + + <_ProjectFileVersion>10.0.20506.1 + C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\bin\ + cholmod-test.dir\Debug\ + cholmod-test + .exe + true + true + C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\bin\ + cholmod-test.dir\Release\ + cholmod-test + .exe + false + true + C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\bin\ + cholmod-test.dir\MinSizeRel\ + cholmod-test + .exe + false + true + C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\bin\ + cholmod-test.dir\RelWithDebInfo\ + cholmod-test + .exe + true + true + + + + C:\Users\t.vogl\.conan\data\suitesparse\5164583\intence\testing\package\85f780d0530411a64b0be4407b381706014b445d\include;C:\Users\t.vogl\.conan\data\suitesparse\5164583\intence\testing\package\85f780d0530411a64b0be4407b381706014b445d\include\suitesparse;%(AdditionalIncludeDirectories) + Debug/ + EnableFastChecks + CompileAsCpp + ProgramDatabase + Sync + Disabled + true + Disabled + NotUsing + 8 + MultiThreadedDLL + true + Level3 + WIN32;_WINDOWS;CMAKE_INTDIR="Debug";%(PreprocessorDefinitions) + $(IntDir) + + + WIN32;_DEBUG;_WINDOWS;CMAKE_INTDIR=\"Debug\";%(PreprocessorDefinitions) + C:\Users\t.vogl\.conan\data\suitesparse\5164583\intence\testing\package\85f780d0530411a64b0be4407b381706014b445d\include;C:\Users\t.vogl\.conan\data\suitesparse\5164583\intence\testing\package\85f780d0530411a64b0be4407b381706014b445d\include\suitesparse;%(AdditionalIncludeDirectories) + + + C:\Users\t.vogl\.conan\data\suitesparse\5164583\intence\testing\package\85f780d0530411a64b0be4407b381706014b445d\include;C:\Users\t.vogl\.conan\data\suitesparse\5164583\intence\testing\package\85f780d0530411a64b0be4407b381706014b445d\include\suitesparse;%(AdditionalIncludeDirectories) + $(ProjectDir)/$(IntDir) + %(Filename).h + %(Filename).tlb + %(Filename)_i.c + %(Filename)_p.c + + + C:\Users\t.vogl\.conan\data\suitesparse\5164583\intence\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\suitesparseconfig.lib;C:\Users\t.vogl\.conan\data\suitesparse\5164583\intence\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\libamd.lib;C:\Users\t.vogl\.conan\data\suitesparse\5164583\intence\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\libbtf.lib;C:\Users\t.vogl\.conan\data\suitesparse\5164583\intence\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\libcamd.lib;C:\Users\t.vogl\.conan\data\suitesparse\5164583\intence\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\libccolamd.lib;C:\Users\t.vogl\.conan\data\suitesparse\5164583\intence\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\libcolamd.lib;C:\Users\t.vogl\.conan\data\suitesparse\5164583\intence\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\libcholmod.lib;C:\Users\t.vogl\.conan\data\suitesparse\5164583\intence\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\libcxsparse.lib;C:\Users\t.vogl\.conan\data\suitesparse\5164583\intence\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\libklu.lib;C:\Users\t.vogl\.conan\data\suitesparse\5164583\intence\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\libldl.lib;C:\Users\t.vogl\.conan\data\suitesparse\5164583\intence\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\libumfpack.lib;C:\Users\t.vogl\.conan\data\suitesparse\5164583\intence\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\libspqr.lib;C:\Users\t.vogl\.conan\data\suitesparse\5164583\intence\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\metis.lib;C:\Users\t.vogl\.conan\data\suitesparse\5164583\intence\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\libbtf.lib;C:\Users\t.vogl\.conan\data\suitesparse\5164583\intence\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\libcholmod.lib;C:\Users\t.vogl\.conan\data\suitesparse\5164583\intence\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\libamd.lib;C:\Users\t.vogl\.conan\data\suitesparse\5164583\intence\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\libcamd.lib;C:\Users\t.vogl\.conan\data\suitesparse\5164583\intence\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\libccolamd.lib;C:\Users\t.vogl\.conan\data\suitesparse\5164583\intence\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\libcolamd.lib;C:\Users\t.vogl\.conan\data\suitesparse\5164583\intence\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\suitesparseconfig.lib;C:\Users\t.vogl\.conan\data\suitesparse\5164583\intence\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\metis.lib;blas.lib;lapack.lib;kernel32.lib;user32.lib;gdi32.lib;winspool.lib;shell32.lib;ole32.lib;oleaut32.lib;uuid.lib;comdlg32.lib;advapi32.lib + C:/Users/t.vogl/.conan/data/suitesparse/5164583/intence/testing/package/85f780d0530411a64b0be4407b381706014b445d/lib;C:/Users/t.vogl/.conan/data/suitesparse/5164583/intence/testing/package/85f780d0530411a64b0be4407b381706014b445d/lib/$(Configuration);C:/Users/t.vogl/.conan/data/suitesparse/5164583/intence/testing/package/85f780d0530411a64b0be4407b381706014b445d/lib64/lapack_blas_windows;C:/Users/t.vogl/.conan/data/suitesparse/5164583/intence/testing/package/85f780d0530411a64b0be4407b381706014b445d/lib64/lapack_blas_windows/$(Configuration);C:/Users/t.vogl/.conan/data/suitesparse/5164583/intence/testing/package/85f780d0530411a64b0be4407b381706014b445d/lib64;C:/Users/t.vogl/.conan/data/suitesparse/5164583/intence/testing/package/85f780d0530411a64b0be4407b381706014b445d/lib64/$(Configuration);%(AdditionalLibraryDirectories) + %(AdditionalOptions) /machine:x64 + true + %(IgnoreSpecificDefaultLibraries) + C:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/lib/cholmod-test.lib + C:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/bin/cholmod-test.pdb + Console + + + false + + + + + C:\Users\t.vogl\.conan\data\suitesparse\5164583\intence\testing\package\85f780d0530411a64b0be4407b381706014b445d\include;C:\Users\t.vogl\.conan\data\suitesparse\5164583\intence\testing\package\85f780d0530411a64b0be4407b381706014b445d\include\suitesparse;%(AdditionalIncludeDirectories) + Release/ + CompileAsCpp + Sync + AnySuitable + true + MaxSpeed + NotUsing + 8 + MultiThreadedDLL + true + Level3 + WIN32;_WINDOWS;NDEBUG;CMAKE_INTDIR="Release";%(PreprocessorDefinitions) + $(IntDir) + + + + WIN32;_WINDOWS;NDEBUG;CMAKE_INTDIR=\"Release\";%(PreprocessorDefinitions) + C:\Users\t.vogl\.conan\data\suitesparse\5164583\intence\testing\package\85f780d0530411a64b0be4407b381706014b445d\include;C:\Users\t.vogl\.conan\data\suitesparse\5164583\intence\testing\package\85f780d0530411a64b0be4407b381706014b445d\include\suitesparse;%(AdditionalIncludeDirectories) + + + C:\Users\t.vogl\.conan\data\suitesparse\5164583\intence\testing\package\85f780d0530411a64b0be4407b381706014b445d\include;C:\Users\t.vogl\.conan\data\suitesparse\5164583\intence\testing\package\85f780d0530411a64b0be4407b381706014b445d\include\suitesparse;%(AdditionalIncludeDirectories) + $(ProjectDir)/$(IntDir) + %(Filename).h + %(Filename).tlb + %(Filename)_i.c + %(Filename)_p.c + + + C:\Users\t.vogl\.conan\data\suitesparse\5164583\intence\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\suitesparseconfig.lib;C:\Users\t.vogl\.conan\data\suitesparse\5164583\intence\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\libamd.lib;C:\Users\t.vogl\.conan\data\suitesparse\5164583\intence\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\libbtf.lib;C:\Users\t.vogl\.conan\data\suitesparse\5164583\intence\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\libcamd.lib;C:\Users\t.vogl\.conan\data\suitesparse\5164583\intence\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\libccolamd.lib;C:\Users\t.vogl\.conan\data\suitesparse\5164583\intence\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\libcolamd.lib;C:\Users\t.vogl\.conan\data\suitesparse\5164583\intence\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\libcholmod.lib;C:\Users\t.vogl\.conan\data\suitesparse\5164583\intence\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\libcxsparse.lib;C:\Users\t.vogl\.conan\data\suitesparse\5164583\intence\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\libklu.lib;C:\Users\t.vogl\.conan\data\suitesparse\5164583\intence\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\libldl.lib;C:\Users\t.vogl\.conan\data\suitesparse\5164583\intence\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\libumfpack.lib;C:\Users\t.vogl\.conan\data\suitesparse\5164583\intence\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\libspqr.lib;C:\Users\t.vogl\.conan\data\suitesparse\5164583\intence\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\metis.lib;C:\Users\t.vogl\.conan\data\suitesparse\5164583\intence\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\libbtf.lib;C:\Users\t.vogl\.conan\data\suitesparse\5164583\intence\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\libcholmod.lib;C:\Users\t.vogl\.conan\data\suitesparse\5164583\intence\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\libamd.lib;C:\Users\t.vogl\.conan\data\suitesparse\5164583\intence\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\libcamd.lib;C:\Users\t.vogl\.conan\data\suitesparse\5164583\intence\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\libccolamd.lib;C:\Users\t.vogl\.conan\data\suitesparse\5164583\intence\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\libcolamd.lib;C:\Users\t.vogl\.conan\data\suitesparse\5164583\intence\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\suitesparseconfig.lib;C:\Users\t.vogl\.conan\data\suitesparse\5164583\intence\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\metis.lib;blas.lib;lapack.lib;kernel32.lib;user32.lib;gdi32.lib;winspool.lib;shell32.lib;ole32.lib;oleaut32.lib;uuid.lib;comdlg32.lib;advapi32.lib + C:/Users/t.vogl/.conan/data/suitesparse/5164583/intence/testing/package/85f780d0530411a64b0be4407b381706014b445d/lib;C:/Users/t.vogl/.conan/data/suitesparse/5164583/intence/testing/package/85f780d0530411a64b0be4407b381706014b445d/lib/$(Configuration);C:/Users/t.vogl/.conan/data/suitesparse/5164583/intence/testing/package/85f780d0530411a64b0be4407b381706014b445d/lib64/lapack_blas_windows;C:/Users/t.vogl/.conan/data/suitesparse/5164583/intence/testing/package/85f780d0530411a64b0be4407b381706014b445d/lib64/lapack_blas_windows/$(Configuration);C:/Users/t.vogl/.conan/data/suitesparse/5164583/intence/testing/package/85f780d0530411a64b0be4407b381706014b445d/lib64;C:/Users/t.vogl/.conan/data/suitesparse/5164583/intence/testing/package/85f780d0530411a64b0be4407b381706014b445d/lib64/$(Configuration);%(AdditionalLibraryDirectories) + %(AdditionalOptions) /machine:x64 + false + %(IgnoreSpecificDefaultLibraries) + C:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/lib/cholmod-test.lib + C:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/bin/cholmod-test.pdb + Console + + + false + + + + + C:\Users\t.vogl\.conan\data\suitesparse\5164583\intence\testing\package\85f780d0530411a64b0be4407b381706014b445d\include;C:\Users\t.vogl\.conan\data\suitesparse\5164583\intence\testing\package\85f780d0530411a64b0be4407b381706014b445d\include\suitesparse;%(AdditionalIncludeDirectories) + MinSizeRel/ + CompileAsCpp + Sync + OnlyExplicitInline + true + MinSpace + NotUsing + 8 + MultiThreadedDLL + true + Level3 + WIN32;_WINDOWS;NDEBUG;CMAKE_INTDIR="MinSizeRel";%(PreprocessorDefinitions) + $(IntDir) + + + + WIN32;_WINDOWS;NDEBUG;CMAKE_INTDIR=\"MinSizeRel\";%(PreprocessorDefinitions) + C:\Users\t.vogl\.conan\data\suitesparse\5164583\intence\testing\package\85f780d0530411a64b0be4407b381706014b445d\include;C:\Users\t.vogl\.conan\data\suitesparse\5164583\intence\testing\package\85f780d0530411a64b0be4407b381706014b445d\include\suitesparse;%(AdditionalIncludeDirectories) + + + C:\Users\t.vogl\.conan\data\suitesparse\5164583\intence\testing\package\85f780d0530411a64b0be4407b381706014b445d\include;C:\Users\t.vogl\.conan\data\suitesparse\5164583\intence\testing\package\85f780d0530411a64b0be4407b381706014b445d\include\suitesparse;%(AdditionalIncludeDirectories) + $(ProjectDir)/$(IntDir) + %(Filename).h + %(Filename).tlb + %(Filename)_i.c + %(Filename)_p.c + + + C:\Users\t.vogl\.conan\data\suitesparse\5164583\intence\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\suitesparseconfig.lib;C:\Users\t.vogl\.conan\data\suitesparse\5164583\intence\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\libamd.lib;C:\Users\t.vogl\.conan\data\suitesparse\5164583\intence\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\libbtf.lib;C:\Users\t.vogl\.conan\data\suitesparse\5164583\intence\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\libcamd.lib;C:\Users\t.vogl\.conan\data\suitesparse\5164583\intence\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\libccolamd.lib;C:\Users\t.vogl\.conan\data\suitesparse\5164583\intence\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\libcolamd.lib;C:\Users\t.vogl\.conan\data\suitesparse\5164583\intence\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\libcholmod.lib;C:\Users\t.vogl\.conan\data\suitesparse\5164583\intence\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\libcxsparse.lib;C:\Users\t.vogl\.conan\data\suitesparse\5164583\intence\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\libklu.lib;C:\Users\t.vogl\.conan\data\suitesparse\5164583\intence\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\libldl.lib;C:\Users\t.vogl\.conan\data\suitesparse\5164583\intence\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\libumfpack.lib;C:\Users\t.vogl\.conan\data\suitesparse\5164583\intence\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\libspqr.lib;C:\Users\t.vogl\.conan\data\suitesparse\5164583\intence\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\metis.lib;C:\Users\t.vogl\.conan\data\suitesparse\5164583\intence\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\libbtf.lib;C:\Users\t.vogl\.conan\data\suitesparse\5164583\intence\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\libcholmod.lib;C:\Users\t.vogl\.conan\data\suitesparse\5164583\intence\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\libamd.lib;C:\Users\t.vogl\.conan\data\suitesparse\5164583\intence\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\libcamd.lib;C:\Users\t.vogl\.conan\data\suitesparse\5164583\intence\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\libccolamd.lib;C:\Users\t.vogl\.conan\data\suitesparse\5164583\intence\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\libcolamd.lib;C:\Users\t.vogl\.conan\data\suitesparse\5164583\intence\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\suitesparseconfig.lib;C:\Users\t.vogl\.conan\data\suitesparse\5164583\intence\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\metis.lib;blas.lib;lapack.lib;kernel32.lib;user32.lib;gdi32.lib;winspool.lib;shell32.lib;ole32.lib;oleaut32.lib;uuid.lib;comdlg32.lib;advapi32.lib + C:/Users/t.vogl/.conan/data/suitesparse/5164583/intence/testing/package/85f780d0530411a64b0be4407b381706014b445d/lib;C:/Users/t.vogl/.conan/data/suitesparse/5164583/intence/testing/package/85f780d0530411a64b0be4407b381706014b445d/lib/$(Configuration);C:/Users/t.vogl/.conan/data/suitesparse/5164583/intence/testing/package/85f780d0530411a64b0be4407b381706014b445d/lib64/lapack_blas_windows;C:/Users/t.vogl/.conan/data/suitesparse/5164583/intence/testing/package/85f780d0530411a64b0be4407b381706014b445d/lib64/lapack_blas_windows/$(Configuration);C:/Users/t.vogl/.conan/data/suitesparse/5164583/intence/testing/package/85f780d0530411a64b0be4407b381706014b445d/lib64;C:/Users/t.vogl/.conan/data/suitesparse/5164583/intence/testing/package/85f780d0530411a64b0be4407b381706014b445d/lib64/$(Configuration);%(AdditionalLibraryDirectories) + %(AdditionalOptions) /machine:x64 + false + %(IgnoreSpecificDefaultLibraries) + C:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/lib/cholmod-test.lib + C:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/bin/cholmod-test.pdb + Console + + + false + + + + + C:\Users\t.vogl\.conan\data\suitesparse\5164583\intence\testing\package\85f780d0530411a64b0be4407b381706014b445d\include;C:\Users\t.vogl\.conan\data\suitesparse\5164583\intence\testing\package\85f780d0530411a64b0be4407b381706014b445d\include\suitesparse;%(AdditionalIncludeDirectories) + RelWithDebInfo/ + CompileAsCpp + ProgramDatabase + Sync + OnlyExplicitInline + true + MaxSpeed + NotUsing + 8 + MultiThreadedDLL + true + Level3 + WIN32;_WINDOWS;NDEBUG;CMAKE_INTDIR="RelWithDebInfo";%(PreprocessorDefinitions) + $(IntDir) + + + WIN32;_WINDOWS;NDEBUG;CMAKE_INTDIR=\"RelWithDebInfo\";%(PreprocessorDefinitions) + C:\Users\t.vogl\.conan\data\suitesparse\5164583\intence\testing\package\85f780d0530411a64b0be4407b381706014b445d\include;C:\Users\t.vogl\.conan\data\suitesparse\5164583\intence\testing\package\85f780d0530411a64b0be4407b381706014b445d\include\suitesparse;%(AdditionalIncludeDirectories) + + + C:\Users\t.vogl\.conan\data\suitesparse\5164583\intence\testing\package\85f780d0530411a64b0be4407b381706014b445d\include;C:\Users\t.vogl\.conan\data\suitesparse\5164583\intence\testing\package\85f780d0530411a64b0be4407b381706014b445d\include\suitesparse;%(AdditionalIncludeDirectories) + $(ProjectDir)/$(IntDir) + %(Filename).h + %(Filename).tlb + %(Filename)_i.c + %(Filename)_p.c + + + C:\Users\t.vogl\.conan\data\suitesparse\5164583\intence\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\suitesparseconfig.lib;C:\Users\t.vogl\.conan\data\suitesparse\5164583\intence\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\libamd.lib;C:\Users\t.vogl\.conan\data\suitesparse\5164583\intence\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\libbtf.lib;C:\Users\t.vogl\.conan\data\suitesparse\5164583\intence\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\libcamd.lib;C:\Users\t.vogl\.conan\data\suitesparse\5164583\intence\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\libccolamd.lib;C:\Users\t.vogl\.conan\data\suitesparse\5164583\intence\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\libcolamd.lib;C:\Users\t.vogl\.conan\data\suitesparse\5164583\intence\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\libcholmod.lib;C:\Users\t.vogl\.conan\data\suitesparse\5164583\intence\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\libcxsparse.lib;C:\Users\t.vogl\.conan\data\suitesparse\5164583\intence\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\libklu.lib;C:\Users\t.vogl\.conan\data\suitesparse\5164583\intence\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\libldl.lib;C:\Users\t.vogl\.conan\data\suitesparse\5164583\intence\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\libumfpack.lib;C:\Users\t.vogl\.conan\data\suitesparse\5164583\intence\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\libspqr.lib;C:\Users\t.vogl\.conan\data\suitesparse\5164583\intence\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\metis.lib;C:\Users\t.vogl\.conan\data\suitesparse\5164583\intence\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\libbtf.lib;C:\Users\t.vogl\.conan\data\suitesparse\5164583\intence\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\libcholmod.lib;C:\Users\t.vogl\.conan\data\suitesparse\5164583\intence\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\libamd.lib;C:\Users\t.vogl\.conan\data\suitesparse\5164583\intence\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\libcamd.lib;C:\Users\t.vogl\.conan\data\suitesparse\5164583\intence\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\libccolamd.lib;C:\Users\t.vogl\.conan\data\suitesparse\5164583\intence\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\libcolamd.lib;C:\Users\t.vogl\.conan\data\suitesparse\5164583\intence\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\suitesparseconfig.lib;C:\Users\t.vogl\.conan\data\suitesparse\5164583\intence\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\metis.lib;blas.lib;lapack.lib;kernel32.lib;user32.lib;gdi32.lib;winspool.lib;shell32.lib;ole32.lib;oleaut32.lib;uuid.lib;comdlg32.lib;advapi32.lib + C:/Users/t.vogl/.conan/data/suitesparse/5164583/intence/testing/package/85f780d0530411a64b0be4407b381706014b445d/lib;C:/Users/t.vogl/.conan/data/suitesparse/5164583/intence/testing/package/85f780d0530411a64b0be4407b381706014b445d/lib/$(Configuration);C:/Users/t.vogl/.conan/data/suitesparse/5164583/intence/testing/package/85f780d0530411a64b0be4407b381706014b445d/lib64/lapack_blas_windows;C:/Users/t.vogl/.conan/data/suitesparse/5164583/intence/testing/package/85f780d0530411a64b0be4407b381706014b445d/lib64/lapack_blas_windows/$(Configuration);C:/Users/t.vogl/.conan/data/suitesparse/5164583/intence/testing/package/85f780d0530411a64b0be4407b381706014b445d/lib64;C:/Users/t.vogl/.conan/data/suitesparse/5164583/intence/testing/package/85f780d0530411a64b0be4407b381706014b445d/lib64/$(Configuration);%(AdditionalLibraryDirectories) + %(AdditionalOptions) /machine:x64 + true + %(IgnoreSpecificDefaultLibraries) + C:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/lib/cholmod-test.lib + C:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/bin/cholmod-test.pdb + Console + + + false + + + + + Building Custom Rule C:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/src/CMakeLists.txt + setlocal +"C:\Program Files\CMake\bin\cmake.exe" -HC:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/src -BC:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd --check-stamp-file C:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/generate.stamp +if %errorlevel% neq 0 goto :cmEnd +:cmEnd +endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone +:cmErrorLevel +exit /b %1 +:cmDone +if %errorlevel% neq 0 goto :VCEnd + C:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/src/CMakeLists.txt;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\src\CMakeLists.txt;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineSystem.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeSystem.cmake.in;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\3.10.0\CMakeSystem.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeSystemSpecificInitialize.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCompilerId.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCompilerIdDetection.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\ADSP-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\ARMCC-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\AppleClang-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Clang-DetermineCompilerInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Borland-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Bruce-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Clang-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Clang-DetermineCompilerInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Compaq-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Cray-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Embarcadero-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Fujitsu-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\GHS-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\GNU-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\HP-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\IAR-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Intel-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\MIPSpro-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\MSVC-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\NVIDIA-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\OpenWatcom-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\PGI-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\PathScale-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\SCO-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\SDCC-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\SunPro-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\TI-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\TinyCC-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\VisualAge-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\IBMCPP-C-DetermineVersionInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Watcom-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\XL-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\IBMCPP-C-DetermineVersionInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\zOS-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\IBMCPP-C-DetermineVersionInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CompilerId\VS-10.vcxproj.in;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeFindBinUtils.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCCompiler.cmake.in;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\3.10.0\CMakeCCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCXXCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\Windows-Determine-CXX.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCompilerId.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCompilerIdDetection.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\ADSP-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\ARMCC-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\AppleClang-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Clang-DetermineCompilerInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Borland-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Clang-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Clang-DetermineCompilerInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Comeau-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Compaq-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Cray-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Embarcadero-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Fujitsu-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\GHS-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\GNU-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\HP-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\IAR-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Intel-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\MIPSpro-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\MSVC-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\NVIDIA-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\OpenWatcom-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\PGI-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\PathScale-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\SCO-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\SunPro-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\TI-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\VisualAge-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\IBMCPP-CXX-DetermineVersionInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Watcom-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\XL-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\IBMCPP-CXX-DetermineVersionInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\zOS-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\IBMCPP-CXX-DetermineVersionInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CompilerId\VS-10.vcxproj.in;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeFindBinUtils.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCXXCompiler.cmake.in;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\3.10.0\CMakeCXXCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeSystemSpecificInformation.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeGenericSystem.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\Windows.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\WindowsPaths.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCInformation.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeLanguageInformation.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\Windows-MSVC-C.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\Windows-MSVC.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineRCCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeRCCompiler.cmake.in;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\3.10.0\CMakeRCCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeRCInformation.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeTestRCCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCommonLanguageInclude.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeTestCCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeTestCompilerCommon.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCompilerABI.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeParseImplicitLinkInfo.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCCompilerABI.c;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCompileFeatures.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCCompiler.cmake.in;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\3.10.0\CMakeCCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCXXInformation.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeLanguageInformation.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\MSVC-CXX.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\CMakeCommonCompilerMacros.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\Windows-MSVC-CXX.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\Windows-MSVC.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCommonLanguageInclude.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeTestCXXCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeTestCompilerCommon.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCompilerABI.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeParseImplicitLinkInfo.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCXXCompilerABI.cpp;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCompileFeatures.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Internal\FeatureTesting.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\MSVC-CXX-FeatureTests.cmake;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\feature_tests.cxx;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCXXCompiler.cmake.in;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\3.10.0\CMakeCXXCompiler.cmake;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\conanbuildinfo.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeParseArguments.cmake;C:\Users\t.vogl\.conan\data\suitesparse\5164583\intence\testing\package\85f780d0530411a64b0be4407b381706014b445d\FindCholmod.cmake;C:\Users\t.vogl\.conan\data\suitesparse\5164583\intence\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\cmake\suitesparse-4.5.0\suitesparse-config-version.cmake;C:\Users\t.vogl\.conan\data\suitesparse\5164583\intence\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\cmake\suitesparse-4.5.0\suitesparse-config.cmake;C:\Users\t.vogl\.conan\data\suitesparse\5164583\intence\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\cmake\suitesparse-4.5.0\SuiteSparse-targets.cmake;C:\Users\t.vogl\.conan\data\suitesparse\5164583\intence\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\cmake\suitesparse-4.5.0\SuiteSparse-targets-release.cmake;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\src\CMakeLists.txt;%(AdditionalInputs) + C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\generate.stamp + Building Custom Rule C:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/src/CMakeLists.txt + setlocal +"C:\Program Files\CMake\bin\cmake.exe" -HC:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/src -BC:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd --check-stamp-file C:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/generate.stamp +if %errorlevel% neq 0 goto :cmEnd +:cmEnd +endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone +:cmErrorLevel +exit /b %1 +:cmDone +if %errorlevel% neq 0 goto :VCEnd + C:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/src/CMakeLists.txt;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\src\CMakeLists.txt;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineSystem.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeSystem.cmake.in;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\3.10.0\CMakeSystem.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeSystemSpecificInitialize.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCompilerId.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCompilerIdDetection.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\ADSP-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\ARMCC-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\AppleClang-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Clang-DetermineCompilerInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Borland-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Bruce-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Clang-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Clang-DetermineCompilerInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Compaq-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Cray-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Embarcadero-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Fujitsu-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\GHS-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\GNU-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\HP-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\IAR-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Intel-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\MIPSpro-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\MSVC-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\NVIDIA-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\OpenWatcom-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\PGI-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\PathScale-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\SCO-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\SDCC-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\SunPro-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\TI-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\TinyCC-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\VisualAge-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\IBMCPP-C-DetermineVersionInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Watcom-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\XL-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\IBMCPP-C-DetermineVersionInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\zOS-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\IBMCPP-C-DetermineVersionInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CompilerId\VS-10.vcxproj.in;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeFindBinUtils.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCCompiler.cmake.in;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\3.10.0\CMakeCCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCXXCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\Windows-Determine-CXX.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCompilerId.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCompilerIdDetection.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\ADSP-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\ARMCC-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\AppleClang-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Clang-DetermineCompilerInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Borland-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Clang-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Clang-DetermineCompilerInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Comeau-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Compaq-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Cray-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Embarcadero-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Fujitsu-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\GHS-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\GNU-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\HP-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\IAR-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Intel-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\MIPSpro-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\MSVC-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\NVIDIA-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\OpenWatcom-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\PGI-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\PathScale-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\SCO-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\SunPro-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\TI-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\VisualAge-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\IBMCPP-CXX-DetermineVersionInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Watcom-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\XL-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\IBMCPP-CXX-DetermineVersionInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\zOS-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\IBMCPP-CXX-DetermineVersionInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CompilerId\VS-10.vcxproj.in;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeFindBinUtils.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCXXCompiler.cmake.in;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\3.10.0\CMakeCXXCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeSystemSpecificInformation.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeGenericSystem.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\Windows.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\WindowsPaths.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCInformation.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeLanguageInformation.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\Windows-MSVC-C.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\Windows-MSVC.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineRCCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeRCCompiler.cmake.in;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\3.10.0\CMakeRCCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeRCInformation.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeTestRCCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCommonLanguageInclude.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeTestCCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeTestCompilerCommon.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCompilerABI.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeParseImplicitLinkInfo.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCCompilerABI.c;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCompileFeatures.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCCompiler.cmake.in;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\3.10.0\CMakeCCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCXXInformation.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeLanguageInformation.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\MSVC-CXX.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\CMakeCommonCompilerMacros.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\Windows-MSVC-CXX.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\Windows-MSVC.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCommonLanguageInclude.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeTestCXXCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeTestCompilerCommon.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCompilerABI.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeParseImplicitLinkInfo.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCXXCompilerABI.cpp;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCompileFeatures.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Internal\FeatureTesting.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\MSVC-CXX-FeatureTests.cmake;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\feature_tests.cxx;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCXXCompiler.cmake.in;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\3.10.0\CMakeCXXCompiler.cmake;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\conanbuildinfo.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeParseArguments.cmake;C:\Users\t.vogl\.conan\data\suitesparse\5164583\intence\testing\package\85f780d0530411a64b0be4407b381706014b445d\FindCholmod.cmake;C:\Users\t.vogl\.conan\data\suitesparse\5164583\intence\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\cmake\suitesparse-4.5.0\suitesparse-config-version.cmake;C:\Users\t.vogl\.conan\data\suitesparse\5164583\intence\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\cmake\suitesparse-4.5.0\suitesparse-config.cmake;C:\Users\t.vogl\.conan\data\suitesparse\5164583\intence\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\cmake\suitesparse-4.5.0\SuiteSparse-targets.cmake;C:\Users\t.vogl\.conan\data\suitesparse\5164583\intence\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\cmake\suitesparse-4.5.0\SuiteSparse-targets-release.cmake;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\src\CMakeLists.txt;%(AdditionalInputs) + C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\generate.stamp + Building Custom Rule C:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/src/CMakeLists.txt + setlocal +"C:\Program Files\CMake\bin\cmake.exe" -HC:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/src -BC:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd --check-stamp-file C:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/generate.stamp +if %errorlevel% neq 0 goto :cmEnd +:cmEnd +endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone +:cmErrorLevel +exit /b %1 +:cmDone +if %errorlevel% neq 0 goto :VCEnd + C:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/src/CMakeLists.txt;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\src\CMakeLists.txt;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineSystem.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeSystem.cmake.in;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\3.10.0\CMakeSystem.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeSystemSpecificInitialize.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCompilerId.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCompilerIdDetection.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\ADSP-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\ARMCC-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\AppleClang-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Clang-DetermineCompilerInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Borland-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Bruce-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Clang-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Clang-DetermineCompilerInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Compaq-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Cray-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Embarcadero-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Fujitsu-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\GHS-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\GNU-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\HP-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\IAR-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Intel-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\MIPSpro-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\MSVC-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\NVIDIA-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\OpenWatcom-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\PGI-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\PathScale-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\SCO-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\SDCC-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\SunPro-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\TI-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\TinyCC-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\VisualAge-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\IBMCPP-C-DetermineVersionInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Watcom-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\XL-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\IBMCPP-C-DetermineVersionInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\zOS-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\IBMCPP-C-DetermineVersionInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CompilerId\VS-10.vcxproj.in;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeFindBinUtils.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCCompiler.cmake.in;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\3.10.0\CMakeCCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCXXCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\Windows-Determine-CXX.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCompilerId.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCompilerIdDetection.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\ADSP-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\ARMCC-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\AppleClang-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Clang-DetermineCompilerInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Borland-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Clang-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Clang-DetermineCompilerInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Comeau-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Compaq-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Cray-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Embarcadero-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Fujitsu-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\GHS-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\GNU-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\HP-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\IAR-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Intel-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\MIPSpro-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\MSVC-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\NVIDIA-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\OpenWatcom-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\PGI-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\PathScale-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\SCO-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\SunPro-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\TI-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\VisualAge-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\IBMCPP-CXX-DetermineVersionInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Watcom-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\XL-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\IBMCPP-CXX-DetermineVersionInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\zOS-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\IBMCPP-CXX-DetermineVersionInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CompilerId\VS-10.vcxproj.in;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeFindBinUtils.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCXXCompiler.cmake.in;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\3.10.0\CMakeCXXCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeSystemSpecificInformation.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeGenericSystem.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\Windows.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\WindowsPaths.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCInformation.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeLanguageInformation.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\Windows-MSVC-C.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\Windows-MSVC.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineRCCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeRCCompiler.cmake.in;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\3.10.0\CMakeRCCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeRCInformation.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeTestRCCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCommonLanguageInclude.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeTestCCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeTestCompilerCommon.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCompilerABI.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeParseImplicitLinkInfo.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCCompilerABI.c;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCompileFeatures.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCCompiler.cmake.in;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\3.10.0\CMakeCCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCXXInformation.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeLanguageInformation.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\MSVC-CXX.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\CMakeCommonCompilerMacros.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\Windows-MSVC-CXX.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\Windows-MSVC.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCommonLanguageInclude.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeTestCXXCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeTestCompilerCommon.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCompilerABI.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeParseImplicitLinkInfo.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCXXCompilerABI.cpp;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCompileFeatures.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Internal\FeatureTesting.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\MSVC-CXX-FeatureTests.cmake;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\feature_tests.cxx;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCXXCompiler.cmake.in;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\3.10.0\CMakeCXXCompiler.cmake;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\conanbuildinfo.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeParseArguments.cmake;C:\Users\t.vogl\.conan\data\suitesparse\5164583\intence\testing\package\85f780d0530411a64b0be4407b381706014b445d\FindCholmod.cmake;C:\Users\t.vogl\.conan\data\suitesparse\5164583\intence\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\cmake\suitesparse-4.5.0\suitesparse-config-version.cmake;C:\Users\t.vogl\.conan\data\suitesparse\5164583\intence\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\cmake\suitesparse-4.5.0\suitesparse-config.cmake;C:\Users\t.vogl\.conan\data\suitesparse\5164583\intence\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\cmake\suitesparse-4.5.0\SuiteSparse-targets.cmake;C:\Users\t.vogl\.conan\data\suitesparse\5164583\intence\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\cmake\suitesparse-4.5.0\SuiteSparse-targets-release.cmake;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\src\CMakeLists.txt;%(AdditionalInputs) + C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\generate.stamp + Building Custom Rule C:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/src/CMakeLists.txt + setlocal +"C:\Program Files\CMake\bin\cmake.exe" -HC:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/src -BC:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd --check-stamp-file C:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/CMakeFiles/generate.stamp +if %errorlevel% neq 0 goto :cmEnd +:cmEnd +endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone +:cmErrorLevel +exit /b %1 +:cmDone +if %errorlevel% neq 0 goto :VCEnd + C:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/src/CMakeLists.txt;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\src\CMakeLists.txt;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineSystem.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeSystem.cmake.in;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\3.10.0\CMakeSystem.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeSystemSpecificInitialize.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCompilerId.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCompilerIdDetection.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\ADSP-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\ARMCC-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\AppleClang-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Clang-DetermineCompilerInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Borland-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Bruce-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Clang-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Clang-DetermineCompilerInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Compaq-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Cray-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Embarcadero-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Fujitsu-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\GHS-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\GNU-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\HP-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\IAR-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Intel-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\MIPSpro-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\MSVC-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\NVIDIA-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\OpenWatcom-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\PGI-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\PathScale-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\SCO-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\SDCC-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\SunPro-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\TI-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\TinyCC-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\VisualAge-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\IBMCPP-C-DetermineVersionInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Watcom-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\XL-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\IBMCPP-C-DetermineVersionInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\zOS-C-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\IBMCPP-C-DetermineVersionInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CompilerId\VS-10.vcxproj.in;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeFindBinUtils.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCCompiler.cmake.in;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\3.10.0\CMakeCCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCXXCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\Windows-Determine-CXX.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCompilerId.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCompilerIdDetection.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\ADSP-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\ARMCC-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\AppleClang-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Clang-DetermineCompilerInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Borland-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Clang-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Clang-DetermineCompilerInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Comeau-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Compaq-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Cray-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Embarcadero-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Fujitsu-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\GHS-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\GNU-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\HP-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\IAR-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Intel-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\MIPSpro-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\MSVC-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\NVIDIA-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\OpenWatcom-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\PGI-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\PathScale-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\SCO-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\SunPro-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\TI-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\VisualAge-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\IBMCPP-CXX-DetermineVersionInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\Watcom-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\XL-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\IBMCPP-CXX-DetermineVersionInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\zOS-CXX-DetermineCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\IBMCPP-CXX-DetermineVersionInternal.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CompilerId\VS-10.vcxproj.in;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeFindBinUtils.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCXXCompiler.cmake.in;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\3.10.0\CMakeCXXCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeSystemSpecificInformation.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeGenericSystem.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\Windows.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\WindowsPaths.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCInformation.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeLanguageInformation.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\Windows-MSVC-C.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\Windows-MSVC.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineRCCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeRCCompiler.cmake.in;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\3.10.0\CMakeRCCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeRCInformation.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeTestRCCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCommonLanguageInclude.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeTestCCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeTestCompilerCommon.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCompilerABI.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeParseImplicitLinkInfo.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCCompilerABI.c;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCompileFeatures.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCCompiler.cmake.in;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\3.10.0\CMakeCCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCXXInformation.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeLanguageInformation.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\MSVC-CXX.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\CMakeCommonCompilerMacros.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\Windows-MSVC-CXX.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Platform\Windows-MSVC.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCommonLanguageInclude.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeTestCXXCompiler.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeTestCompilerCommon.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCompilerABI.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeParseImplicitLinkInfo.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCXXCompilerABI.cpp;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeDetermineCompileFeatures.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Internal\FeatureTesting.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\Compiler\MSVC-CXX-FeatureTests.cmake;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\feature_tests.cxx;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeCXXCompiler.cmake.in;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\3.10.0\CMakeCXXCompiler.cmake;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\conanbuildinfo.cmake;C:\Program Files\CMake\share\cmake-3.10\Modules\CMakeParseArguments.cmake;C:\Users\t.vogl\.conan\data\suitesparse\5164583\intence\testing\package\85f780d0530411a64b0be4407b381706014b445d\FindCholmod.cmake;C:\Users\t.vogl\.conan\data\suitesparse\5164583\intence\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\cmake\suitesparse-4.5.0\suitesparse-config-version.cmake;C:\Users\t.vogl\.conan\data\suitesparse\5164583\intence\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\cmake\suitesparse-4.5.0\suitesparse-config.cmake;C:\Users\t.vogl\.conan\data\suitesparse\5164583\intence\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\cmake\suitesparse-4.5.0\SuiteSparse-targets.cmake;C:\Users\t.vogl\.conan\data\suitesparse\5164583\intence\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib\cmake\suitesparse-4.5.0\SuiteSparse-targets-release.cmake;C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\src\CMakeLists.txt;%(AdditionalInputs) + C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\CMakeFiles\generate.stamp + + + + + + + + {1AB0F46E-D70A-39A6-9F4B-01E2564B21BE} + ZERO_CHECK + + + + + + \ No newline at end of file diff --git a/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/cholmod-test.vcxproj.filters b/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/cholmod-test.vcxproj.filters new file mode 100644 index 0000000..7dfd1f3 --- /dev/null +++ b/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/cholmod-test.vcxproj.filters @@ -0,0 +1,16 @@ + + + + + Source Files + + + + + + + + {573D06F6-6AA2-3C34-868F-DD7D5EE88E9D} + + + diff --git a/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/cmake_install.cmake b/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/cmake_install.cmake new file mode 100644 index 0000000..b89e830 --- /dev/null +++ b/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/cmake_install.cmake @@ -0,0 +1,44 @@ +# Install script for directory: C:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/src + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files/SuitesparseTest") +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() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "FALSE") +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 "C:/Users/t.vogl/Documents/repos/conan-suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/${CMAKE_INSTALL_MANIFEST}" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") diff --git a/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/conanbuildinfo.cmake b/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/conanbuildinfo.cmake new file mode 100644 index 0000000..a467981 --- /dev/null +++ b/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/conanbuildinfo.cmake @@ -0,0 +1,505 @@ +include(CMakeParseArguments) +set(CONAN_SUITESPARSE_ROOT "C:/Users/t.vogl/.conan/data/suitesparse/5164583/intence/testing/package/85f780d0530411a64b0be4407b381706014b445d") +set(CONAN_INCLUDE_DIRS_SUITESPARSE "C:/Users/t.vogl/.conan/data/suitesparse/5164583/intence/testing/package/85f780d0530411a64b0be4407b381706014b445d/include" + "C:/Users/t.vogl/.conan/data/suitesparse/5164583/intence/testing/package/85f780d0530411a64b0be4407b381706014b445d/include/suitesparse") +set(CONAN_LIB_DIRS_SUITESPARSE "C:/Users/t.vogl/.conan/data/suitesparse/5164583/intence/testing/package/85f780d0530411a64b0be4407b381706014b445d/lib" + "C:/Users/t.vogl/.conan/data/suitesparse/5164583/intence/testing/package/85f780d0530411a64b0be4407b381706014b445d/lib64/lapack_blas_windows" + "C:/Users/t.vogl/.conan/data/suitesparse/5164583/intence/testing/package/85f780d0530411a64b0be4407b381706014b445d/lib64") +set(CONAN_BIN_DIRS_SUITESPARSE "C:/Users/t.vogl/.conan/data/suitesparse/5164583/intence/testing/package/85f780d0530411a64b0be4407b381706014b445d/lib64/lapack_blas_windows") +set(CONAN_RES_DIRS_SUITESPARSE ) +set(CONAN_BUILD_DIRS_SUITESPARSE "C:/Users/t.vogl/.conan/data/suitesparse/5164583/intence/testing/package/85f780d0530411a64b0be4407b381706014b445d/") +set(CONAN_LIBS_SUITESPARSE libamd libbtf libcamd libccolamd libcholmod libcolamd libcxsparse libklu libldl libspqr libumfpack metis suitesparseconfig libblas liblapack) +set(CONAN_DEFINES_SUITESPARSE ) +# COMPILE_DEFINITIONS are equal to CONAN_DEFINES without -D, for targets +set(CONAN_COMPILE_DEFINITIONS_SUITESPARSE ) + +set(CONAN_C_FLAGS_SUITESPARSE "") +set(CONAN_CXX_FLAGS_SUITESPARSE "") +set(CONAN_SHARED_LINKER_FLAGS_SUITESPARSE "") +set(CONAN_EXE_LINKER_FLAGS_SUITESPARSE "") + +# For modern cmake targets we use the list variables (separated with ;) +set(CONAN_C_FLAGS_SUITESPARSE_LIST "") +set(CONAN_CXX_FLAGS_SUITESPARSE_LIST "") +set(CONAN_SHARED_LINKER_FLAGS_SUITESPARSE_LIST "") +set(CONAN_EXE_LINKER_FLAGS_SUITESPARSE_LIST "") + + + +### Definition of global aggregated variables ### + +set(CONAN_PACKAGE_NAME suitesparse-test) +set(CONAN_PACKAGE_VERSION 0.1) + +set(CONAN_SETTINGS_ARCH "x86_64") +set(CONAN_SETTINGS_BUILD_TYPE "Release") +set(CONAN_SETTINGS_COMPILER "Visual Studio") +set(CONAN_SETTINGS_COMPILER_RUNTIME "MD") +set(CONAN_SETTINGS_COMPILER_VERSION "10") +set(CONAN_SETTINGS_OS "Windows") + +set(CONAN_DEPENDENCIES suitesparse) +# Storing original command line args (CMake helper) flags +set(CONAN_CMD_CXX_FLAGS ${CONAN_CXX_FLAGS}) + +set(CONAN_CMD_SHARED_LINKER_FLAGS ${CONAN_SHARED_LINKER_FLAGS}) +set(CONAN_CMD_C_FLAGS ${CONAN_C_FLAGS}) +# Defining accumulated conan variables for all deps + +set(CONAN_INCLUDE_DIRS "C:/Users/t.vogl/.conan/data/suitesparse/5164583/intence/testing/package/85f780d0530411a64b0be4407b381706014b445d/include" + "C:/Users/t.vogl/.conan/data/suitesparse/5164583/intence/testing/package/85f780d0530411a64b0be4407b381706014b445d/include/suitesparse" ${CONAN_INCLUDE_DIRS}) +set(CONAN_LIB_DIRS "C:/Users/t.vogl/.conan/data/suitesparse/5164583/intence/testing/package/85f780d0530411a64b0be4407b381706014b445d/lib" + "C:/Users/t.vogl/.conan/data/suitesparse/5164583/intence/testing/package/85f780d0530411a64b0be4407b381706014b445d/lib64/lapack_blas_windows" + "C:/Users/t.vogl/.conan/data/suitesparse/5164583/intence/testing/package/85f780d0530411a64b0be4407b381706014b445d/lib64" ${CONAN_LIB_DIRS}) +set(CONAN_BIN_DIRS "C:/Users/t.vogl/.conan/data/suitesparse/5164583/intence/testing/package/85f780d0530411a64b0be4407b381706014b445d/lib64/lapack_blas_windows" ${CONAN_BIN_DIRS}) +set(CONAN_RES_DIRS ${CONAN_RES_DIRS}) +set(CONAN_LIBS libamd libbtf libcamd libccolamd libcholmod libcolamd libcxsparse libklu libldl libspqr libumfpack metis suitesparseconfig libblas liblapack ${CONAN_LIBS}) +set(CONAN_DEFINES ${CONAN_DEFINES}) +set(CONAN_CMAKE_MODULE_PATH "C:/Users/t.vogl/.conan/data/suitesparse/5164583/intence/testing/package/85f780d0530411a64b0be4407b381706014b445d/" ${CONAN_CMAKE_MODULE_PATH}) + +set(CONAN_CXX_FLAGS " ${CONAN_CXX_FLAGS}") +set(CONAN_SHARED_LINKER_FLAGS " ${CONAN_SHARED_LINKER_FLAGS}") +set(CONAN_EXE_LINKER_FLAGS " ${CONAN_EXE_LINKER_FLAGS}") +set(CONAN_C_FLAGS " ${CONAN_C_FLAGS}") + + +### Definition of macros and functions ### + +macro(conan_define_targets) + if(${CMAKE_VERSION} VERSION_LESS "3.1.2") + message(FATAL_ERROR "TARGETS not supported by your CMake version!") + endif() # CMAKE > 3.x + set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${CONAN_CMD_CXX_FLAGS}") + set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} ${CONAN_CMD_C_FLAGS}") + set(CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} ${CONAN_CMD_SHARED_LINKER_FLAGS}") + + + conan_package_library_targets("${CONAN_LIBS_SUITESPARSE}" "${CONAN_LIB_DIRS_SUITESPARSE}" + CONAN_PACKAGE_TARGETS_SUITESPARSE "" "" suitesparse) + conan_package_library_targets("${CONAN_LIBS_SUITESPARSE_DEBUG}" "${CONAN_LIB_DIRS_SUITESPARSE_DEBUG}" + CONAN_PACKAGE_TARGETS_SUITESPARSE_DEBUG "" "debug" suitesparse) + conan_package_library_targets("${CONAN_LIBS_SUITESPARSE_RELEASE}" "${CONAN_LIB_DIRS_SUITESPARSE_RELEASE}" + CONAN_PACKAGE_TARGETS_SUITESPARSE_RELEASE "" "release" suitesparse) + + add_library(CONAN_PKG::suitesparse INTERFACE IMPORTED) + + # Property INTERFACE_LINK_FLAGS do not work, necessary to add to INTERFACE_LINK_LIBRARIES + set_property(TARGET CONAN_PKG::suitesparse PROPERTY INTERFACE_LINK_LIBRARIES ${CONAN_PACKAGE_TARGETS_SUITESPARSE} ${CONAN_SHARED_LINKER_FLAGS_SUITESPARSE_LIST} ${CONAN_EXE_LINKER_FLAGS_SUITESPARSE_LIST} + $<$:${CONAN_PACKAGE_TARGETS_SUITESPARSE_RELEASE} ${CONAN_SHARED_LINKER_FLAGS_SUITESPARSE_RELEASE_LIST} ${CONAN_EXE_LINKER_FLAGS_SUITESPARSE_RELEASE_LIST}> + $<$:${CONAN_PACKAGE_TARGETS_SUITESPARSE_RELEASE} ${CONAN_SHARED_LINKER_FLAGS_SUITESPARSE_RELEASE_LIST} ${CONAN_EXE_LINKER_FLAGS_SUITESPARSE_RELEASE_LIST}> + $<$:${CONAN_PACKAGE_TARGETS_SUITESPARSE_RELEASE} ${CONAN_SHARED_LINKER_FLAGS_SUITESPARSE_RELEASE_LIST} ${CONAN_EXE_LINKER_FLAGS_SUITESPARSE_RELEASE_LIST}> + $<$:${CONAN_PACKAGE_TARGETS_SUITESPARSE_DEBUG} ${CONAN_SHARED_LINKER_FLAGS_SUITESPARSE_DEBUG_LIST} ${CONAN_EXE_LINKER_FLAGS_SUITESPARSE_DEBUG_LIST}> + ) + set_property(TARGET CONAN_PKG::suitesparse PROPERTY INTERFACE_INCLUDE_DIRECTORIES ${CONAN_INCLUDE_DIRS_SUITESPARSE} + $<$:${CONAN_INCLUDE_DIRS_SUITESPARSE_RELEASE}> + $<$:${CONAN_INCLUDE_DIRS_SUITESPARSE_RELEASE}> + $<$:${CONAN_INCLUDE_DIRS_SUITESPARSE_RELEASE}> + $<$:${CONAN_INCLUDE_DIRS_SUITESPARSE_DEBUG}>) + set_property(TARGET CONAN_PKG::suitesparse PROPERTY INTERFACE_COMPILE_DEFINITIONS ${CONAN_COMPILE_DEFINITIONS_SUITESPARSE} + $<$:${CONAN_COMPILE_DEFINITIONS_SUITESPARSE_RELEASE}> + $<$:${CONAN_COMPILE_DEFINITIONS_SUITESPARSE_RELEASE}> + $<$:${CONAN_COMPILE_DEFINITIONS_SUITESPARSE_RELEASE}> + $<$:${CONAN_COMPILE_DEFINITIONS_SUITESPARSE_DEBUG}>) + set_property(TARGET CONAN_PKG::suitesparse PROPERTY INTERFACE_COMPILE_OPTIONS ${CONAN_C_FLAGS_SUITESPARSE_LIST} ${CONAN_CXX_FLAGS_SUITESPARSE_LIST} + $<$:${CONAN_C_FLAGS_SUITESPARSE_RELEASE_LIST} ${CONAN_CXX_FLAGS_SUITESPARSE_RELEASE_LIST}> + $<$:${CONAN_C_FLAGS_SUITESPARSE_RELEASE_LIST} ${CONAN_CXX_FLAGS_SUITESPARSE_RELEASE_LIST}> + $<$:${CONAN_C_FLAGS_SUITESPARSE_RELEASE_LIST} ${CONAN_CXX_FLAGS_SUITESPARSE_RELEASE_LIST}> + $<$:${CONAN_C_FLAGS_SUITESPARSE_DEBUG_LIST} ${CONAN_CXX_FLAGS_SUITESPARSE_DEBUG_LIST}>) + + set(CONAN_TARGETS CONAN_PKG::suitesparse) + +endmacro() + + +macro(conan_basic_setup) + set(options TARGETS NO_OUTPUT_DIRS SKIP_RPATH KEEP_RPATHS) + cmake_parse_arguments(ARGUMENTS "${options}" "${oneValueArgs}" "${multiValueArgs}" ${ARGN} ) + if(CONAN_EXPORTED) + message(STATUS "Conan: called by CMake conan helper") + endif() + conan_check_compiler() + if(NOT ARGUMENTS_NO_OUTPUT_DIRS) + conan_output_dirs_setup() + endif() + conan_set_find_library_paths() + if(NOT ARGUMENTS_TARGETS) + message(STATUS "Conan: Using cmake global configuration") + conan_global_flags() + else() + message(STATUS "Conan: Using cmake targets configuration") + conan_define_targets() + endif() + if(ARGUMENTS_SKIP_RPATH) + # Change by "DEPRECATION" or "SEND_ERROR" when we are ready + message(WARNING "Conan: SKIP_RPATH is deprecated, it has been renamed to KEEP_RPATHS") + endif() + if(NOT ARGUMENTS_SKIP_RPATH AND NOT ARGUMENTS_KEEP_RPATHS) + # Parameter has renamed, but we keep the compatibility with old SKIP_RPATH + message(STATUS "Conan: Adjusting default RPATHs Conan policies") + conan_set_rpath() + endif() + conan_set_vs_runtime() + conan_set_libcxx() + conan_set_find_paths() +endmacro() + +macro(conan_set_find_paths) + # CMAKE_MODULE_PATH does not have Debug/Release config, but there are variables + # CONAN_CMAKE_MODULE_PATH_DEBUG to be used by the consumer + # CMake can find findXXX.cmake files in the root of packages + set(CMAKE_MODULE_PATH ${CONAN_CMAKE_MODULE_PATH} ${CMAKE_MODULE_PATH}) + + # Make find_package() to work + set(CMAKE_PREFIX_PATH ${CONAN_CMAKE_MODULE_PATH} ${CMAKE_PREFIX_PATH}) + + # Set the find root path (cross build) + set(CMAKE_FIND_ROOT_PATH ${CONAN_CMAKE_FIND_ROOT_PATH} ${CMAKE_FIND_ROOT_PATH}) + if(CONAN_CMAKE_FIND_ROOT_PATH_MODE_PROGRAM) + set(CMAKE_FIND_ROOT_PATH_MODE_PROGRAM ${CONAN_CMAKE_FIND_ROOT_PATH_MODE_PROGRAM}) + endif() + if(CONAN_CMAKE_FIND_ROOT_PATH_MODE_LIBRARY) + set(CMAKE_FIND_ROOT_PATH_MODE_LIBRARY ${CONAN_CMAKE_FIND_ROOT_PATH_MODE_LIBRARY}) + endif() + if(CONAN_CMAKE_FIND_ROOT_PATH_MODE_INCLUDE) + set(CMAKE_FIND_ROOT_PATH_MODE_INCLUDE ${CONAN_CMAKE_FIND_ROOT_PATH_MODE_INCLUDE}) + endif() +endmacro() + +macro(conan_set_find_library_paths) + # CMAKE_INCLUDE_PATH, CMAKE_LIBRARY_PATH does not have Debug/Release config, but there are variables + # CONAN_INCLUDE_DIRS_DEBUG/RELEASE CONAN_LIB_DIRS_DEBUG/RELEASE to be used by the consumer + # For find_library + set(CMAKE_INCLUDE_PATH ${CONAN_INCLUDE_DIRS} ${CMAKE_INCLUDE_PATH}) + set(CMAKE_LIBRARY_PATH ${CONAN_LIB_DIRS} ${CMAKE_LIBRARY_PATH}) +endmacro() + +macro(conan_set_vs_runtime) + if(CONAN_LINK_RUNTIME) + foreach(flag CMAKE_C_FLAGS_RELEASE CMAKE_CXX_FLAGS_RELEASE + CMAKE_C_FLAGS_RELWITHDEBINFO CMAKE_CXX_FLAGS_RELWITHDEBINFO + CMAKE_C_FLAGS_MINSIZEREL CMAKE_CXX_FLAGS_MINSIZEREL) + if(DEFINED ${flag}) + string(REPLACE "/MD" ${CONAN_LINK_RUNTIME} ${flag} "${${flag}}") + endif() + endforeach() + foreach(flag CMAKE_C_FLAGS_DEBUG CMAKE_CXX_FLAGS_DEBUG) + if(DEFINED ${flag}) + string(REPLACE "/MDd" ${CONAN_LINK_RUNTIME} ${flag} "${${flag}}") + endif() + endforeach() + endif() +endmacro() + +macro(conan_flags_setup) + # Macro maintained for backwards compatibility + conan_set_find_library_paths() + conan_global_flags() + conan_set_rpath() + conan_set_vs_runtime() + conan_set_libcxx() +endmacro() + + + +function(conan_find_libraries_abs_path libraries package_libdir libraries_abs_path) + foreach(_LIBRARY_NAME ${libraries}) + unset(CONAN_FOUND_LIBRARY CACHE) + find_library(CONAN_FOUND_LIBRARY NAME ${_LIBRARY_NAME} PATHS ${package_libdir} + NO_DEFAULT_PATH NO_CMAKE_FIND_ROOT_PATH) + if(CONAN_FOUND_LIBRARY) + message(STATUS "Library ${_LIBRARY_NAME} found ${CONAN_FOUND_LIBRARY}") + set(CONAN_FULLPATH_LIBS ${CONAN_FULLPATH_LIBS} ${CONAN_FOUND_LIBRARY}) + else() + message(STATUS "Library ${_LIBRARY_NAME} not found in package, might be system one") + set(CONAN_FULLPATH_LIBS ${CONAN_FULLPATH_LIBS} ${_LIBRARY_NAME}) + endif() + endforeach() + unset(CONAN_FOUND_LIBRARY CACHE) + set(${libraries_abs_path} ${CONAN_FULLPATH_LIBS} PARENT_SCOPE) +endfunction() + +function(conan_package_library_targets libraries package_libdir libraries_abs_path deps build_type package_name) + foreach(_LIBRARY_NAME ${libraries}) + unset(CONAN_FOUND_LIBRARY CACHE) + find_library(CONAN_FOUND_LIBRARY NAME ${_LIBRARY_NAME} PATHS ${package_libdir} + NO_DEFAULT_PATH NO_CMAKE_FIND_ROOT_PATH) + if(CONAN_FOUND_LIBRARY) + message(STATUS "Library ${_LIBRARY_NAME} found ${CONAN_FOUND_LIBRARY}") + set(_LIB_NAME CONAN_LIB::${package_name}_${_LIBRARY_NAME}${build_type}) + add_library(${_LIB_NAME} UNKNOWN IMPORTED) + set_target_properties(${_LIB_NAME} PROPERTIES IMPORTED_LOCATION ${CONAN_FOUND_LIBRARY}) + string(REPLACE " " ";" deps_list "${deps}") + set_property(TARGET ${_LIB_NAME} PROPERTY INTERFACE_LINK_LIBRARIES ${deps_list}) + set(CONAN_FULLPATH_LIBS ${CONAN_FULLPATH_LIBS} ${_LIB_NAME}) + else() + message(STATUS "Library ${_LIBRARY_NAME} not found in package, might be system one") + set(CONAN_FULLPATH_LIBS ${CONAN_FULLPATH_LIBS} ${_LIBRARY_NAME}) + endif() + endforeach() + unset(CONAN_FOUND_LIBRARY CACHE) + set(${libraries_abs_path} ${CONAN_FULLPATH_LIBS} PARENT_SCOPE) +endfunction() + +macro(conan_set_libcxx) + if(DEFINED CONAN_LIBCXX) + message(STATUS "Conan: C++ stdlib: ${CONAN_LIBCXX}") + if(CONAN_COMPILER STREQUAL "clang" OR CONAN_COMPILER STREQUAL "apple-clang") + if(CONAN_LIBCXX STREQUAL "libstdc++" OR CONAN_LIBCXX STREQUAL "libstdc++11" ) + set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -stdlib=libstdc++") + elseif(CONAN_LIBCXX STREQUAL "libc++") + set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -stdlib=libc++") + endif() + endif() + if(CONAN_COMPILER STREQUAL "sun-cc") + if(CONAN_LIBCXX STREQUAL "libCstd") + set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -library=Cstd") + elseif(CONAN_LIBCXX STREQUAL "libstdcxx") + set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -library=stdcxx4") + elseif(CONAN_LIBCXX STREQUAL "libstlport") + set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -library=stlport4") + elseif(CONAN_LIBCXX STREQUAL "libstdc++") + set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -library=stdcpp") + endif() + endif() + if(CONAN_LIBCXX STREQUAL "libstdc++11") + add_definitions(-D_GLIBCXX_USE_CXX11_ABI=1) + elseif(CONAN_LIBCXX STREQUAL "libstdc++") + add_definitions(-D_GLIBCXX_USE_CXX11_ABI=0) + endif() + endif() +endmacro() + +macro(conan_set_rpath) + if(APPLE) + # https://cmake.org/Wiki/CMake_RPATH_handling + # CONAN GUIDE: All generated libraries should have the id and dependencies to other + # dylibs without path, just the name, EX: + # libMyLib1.dylib: + # libMyLib1.dylib (compatibility version 0.0.0, current version 0.0.0) + # libMyLib0.dylib (compatibility version 0.0.0, current version 0.0.0) + # /usr/lib/libc++.1.dylib (compatibility version 1.0.0, current version 120.0.0) + # /usr/lib/libSystem.B.dylib (compatibility version 1.0.0, current version 1197.1.1) + set(CMAKE_SKIP_RPATH 1) # AVOID RPATH FOR *.dylib, ALL LIBS BETWEEN THEM AND THE EXE + # SHOULD BE ON THE LINKER RESOLVER PATH (./ IS ONE OF THEM) + # Policy CMP0068 + # We want the old behavior, in CMake >= 3.9 CMAKE_SKIP_RPATH won't affect the install_name in OSX + set(CMAKE_INSTALL_NAME_DIR "") + endif() +endmacro() + +macro(conan_output_dirs_setup) + set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/bin) + set(CMAKE_RUNTIME_OUTPUT_DIRECTORY_RELEASE ${CMAKE_RUNTIME_OUTPUT_DIRECTORY}) + set(CMAKE_RUNTIME_OUTPUT_DIRECTORY_RELWITHDEBINFO ${CMAKE_RUNTIME_OUTPUT_DIRECTORY}) + set(CMAKE_RUNTIME_OUTPUT_DIRECTORY_MINSIZEREL ${CMAKE_RUNTIME_OUTPUT_DIRECTORY}) + set(CMAKE_RUNTIME_OUTPUT_DIRECTORY_DEBUG ${CMAKE_RUNTIME_OUTPUT_DIRECTORY}) + + set(CMAKE_ARCHIVE_OUTPUT_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/lib) + set(CMAKE_ARCHIVE_OUTPUT_DIRECTORY_RELEASE ${CMAKE_ARCHIVE_OUTPUT_DIRECTORY}) + set(CMAKE_ARCHIVE_OUTPUT_DIRECTORY_RELWITHDEBINFO ${CMAKE_ARCHIVE_OUTPUT_DIRECTORY}) + set(CMAKE_ARCHIVE_OUTPUT_DIRECTORY_MINSIZEREL ${CMAKE_ARCHIVE_OUTPUT_DIRECTORY}) + set(CMAKE_ARCHIVE_OUTPUT_DIRECTORY_DEBUG ${CMAKE_ARCHIVE_OUTPUT_DIRECTORY}) + + set(CMAKE_LIBRARY_OUTPUT_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/lib) + set(CMAKE_LIBRARY_OUTPUT_DIRECTORY_RELEASE ${CMAKE_LIBRARY_OUTPUT_DIRECTORY}) + set(CMAKE_LIBRARY_OUTPUT_DIRECTORY_RELWITHDEBINFO ${CMAKE_LIBRARY_OUTPUT_DIRECTORY}) + set(CMAKE_LIBRARY_OUTPUT_DIRECTORY_MINSIZEREL ${CMAKE_LIBRARY_OUTPUT_DIRECTORY}) + set(CMAKE_LIBRARY_OUTPUT_DIRECTORY_DEBUG ${CMAKE_LIBRARY_OUTPUT_DIRECTORY}) +endmacro() + +macro(conan_split_version VERSION_STRING MAJOR MINOR) + #make a list from the version string + string(REPLACE "." ";" VERSION_LIST "${VERSION_STRING}") + + #write output values + list(LENGTH VERSION_LIST _version_len) + list(GET VERSION_LIST 0 ${MAJOR}) + if(${_version_len} GREATER 1) + list(GET VERSION_LIST 1 ${MINOR}) + endif() +endmacro() + +macro(conan_error_compiler_version) + message(FATAL_ERROR "Incorrect '${CONAN_COMPILER}' version 'compiler.version=${CONAN_COMPILER_VERSION}'" + " is not the one detected by CMake: '${CMAKE_CXX_COMPILER_ID}=" ${VERSION_MAJOR}.${VERSION_MINOR}') +endmacro() + +set(_CONAN_CURRENT_DIR ${CMAKE_CURRENT_LIST_DIR}) +function(conan_get_compiler CONAN_INFO_COMPILER CONAN_INFO_COMPILER_VERSION) + MESSAGE(STATUS "Current conanbuildinfo.cmake directory: " ${_CONAN_CURRENT_DIR}) + if(NOT EXISTS ${_CONAN_CURRENT_DIR}/conaninfo.txt) + message(STATUS "WARN: conaninfo.txt not found") + return() + endif() + + file (READ "${_CONAN_CURRENT_DIR}/conaninfo.txt" CONANINFO) + + string(REGEX MATCH "compiler=([-A-Za-z0-9_ ]+)" _MATCHED ${CONANINFO}) + if(DEFINED CMAKE_MATCH_1) + string(STRIP "${CMAKE_MATCH_1}" _CONAN_INFO_COMPILER) + set(${CONAN_INFO_COMPILER} ${_CONAN_INFO_COMPILER} PARENT_SCOPE) + endif() + + string(REGEX MATCH "compiler.version=([-A-Za-z0-9_.]+)" _MATCHED ${CONANINFO}) + if(DEFINED CMAKE_MATCH_1) + string(STRIP "${CMAKE_MATCH_1}" _CONAN_INFO_COMPILER_VERSION) + set(${CONAN_INFO_COMPILER_VERSION} ${_CONAN_INFO_COMPILER_VERSION} PARENT_SCOPE) + endif() +endfunction() + +function(check_compiler_version) + conan_split_version(${CMAKE_CXX_COMPILER_VERSION} VERSION_MAJOR VERSION_MINOR) + if(CMAKE_CXX_COMPILER_ID MATCHES MSVC) + # https://cmake.org/cmake/help/v3.2/variable/MSVC_VERSION.html + if( (CONAN_COMPILER_VERSION STREQUAL "14" AND NOT VERSION_MAJOR STREQUAL "19") OR + (CONAN_COMPILER_VERSION STREQUAL "12" AND NOT VERSION_MAJOR STREQUAL "18") OR + (CONAN_COMPILER_VERSION STREQUAL "11" AND NOT VERSION_MAJOR STREQUAL "17") OR + (CONAN_COMPILER_VERSION STREQUAL "10" AND NOT VERSION_MAJOR STREQUAL "16") OR + (CONAN_COMPILER_VERSION STREQUAL "9" AND NOT VERSION_MAJOR STREQUAL "15") OR + (CONAN_COMPILER_VERSION STREQUAL "8" AND NOT VERSION_MAJOR STREQUAL "14") OR + (CONAN_COMPILER_VERSION STREQUAL "7" AND NOT VERSION_MAJOR STREQUAL "13") OR + (CONAN_COMPILER_VERSION STREQUAL "6" AND NOT VERSION_MAJOR STREQUAL "12") ) + conan_error_compiler_version() + endif() + elseif(CONAN_COMPILER STREQUAL "gcc") + set(_CHECK_VERSION ${VERSION_MAJOR}.${VERSION_MINOR}) + if(NOT ${CONAN_COMPILER_VERSION} VERSION_LESS 5.0) + message(STATUS "Conan: Compiler GCC>=5, checking major version ${CONAN_COMPILER_VERSION}") + conan_split_version(${CONAN_COMPILER_VERSION} CONAN_COMPILER_MAJOR CONAN_COMPILER_MINOR) + if("${CONAN_COMPILER_MINOR}" STREQUAL "") + set(_CHECK_VERSION ${VERSION_MAJOR}) + endif() + endif() + message(STATUS "Conan: Checking correct version: ${_CHECK_VERSION}") + if(NOT ${_CHECK_VERSION} VERSION_EQUAL CONAN_COMPILER_VERSION) + conan_error_compiler_version() + endif() + elseif(CONAN_COMPILER MATCHES "clang" OR CONAN_COMPILER STREQUAL "sun-cc") + if(NOT ${VERSION_MAJOR}.${VERSION_MINOR} VERSION_EQUAL CONAN_COMPILER_VERSION) + conan_error_compiler_version() + endif() + else() + message(STATUS "WARN: Unknown compiler '${CONAN_COMPILER}', skipping the version check...") + endif() +endfunction() + +function(conan_check_compiler) + if(NOT DEFINED CMAKE_CXX_COMPILER_ID) + if(DEFINED CMAKE_C_COMPILER_ID) + message(STATUS "This project seems to be plain C, using '${CMAKE_C_COMPILER_ID}' compiler") + set(CMAKE_CXX_COMPILER_ID ${CMAKE_C_COMPILER_ID}) + set(CMAKE_CXX_COMPILER_VERSION ${CMAKE_C_COMPILER_VERSION}) + else() + message(FATAL_ERROR "This project seems to be plain C, but no compiler defined") + endif() + endif() + if(CONAN_DISABLE_CHECK_COMPILER) + message(STATUS "WARN: Disabled conan compiler checks") + return() + endif() + + if(NOT DEFINED CONAN_COMPILER) + conan_get_compiler(CONAN_COMPILER CONAN_COMPILER_VERSION) + if(NOT DEFINED CONAN_COMPILER) + message(STATUS "WARN: CONAN_COMPILER variable not set, please make sure yourself that " + "your compiler and version matches your declared settings") + return() + endif() + endif() + + if(NOT CMAKE_HOST_SYSTEM_NAME STREQUAL ${CMAKE_SYSTEM_NAME}) + set(CROSS_BUILDING 1) + endif() + + # If using VS, verify toolset + if (CONAN_COMPILER STREQUAL "Visual Studio") + if (CONAN_SETTINGS_COMPILER_TOOLSET MATCHES "LLVM" OR + CONAN_SETTINGS_COMPILER_TOOLSET MATCHES "clang") + set(EXPECTED_CMAKE_CXX_COMPILER_ID "Clang") + elseif (CONAN_SETTINGS_COMPILER_TOOLSET MATCHES "Intel") + set(EXPECTED_CMAKE_CXX_COMPILER_ID "Intel") + else() + set(EXPECTED_CMAKE_CXX_COMPILER_ID "MSVC") + endif() + + if (NOT CMAKE_CXX_COMPILER_ID MATCHES ${EXPECTED_CMAKE_CXX_COMPILER_ID}) + message(FATAL_ERROR "Incorrect '${CONAN_COMPILER}'. Toolset specifies compiler as '${EXPECTED_CMAKE_CXX_COMPILER_ID}' " + "but CMake detected '${CMAKE_CXX_COMPILER_ID}'") + endif() + + # Avoid checks when cross compiling, apple-clang crashes because its APPLE but not apple-clang + # Actually CMake is detecting "clang" when you are using apple-clang, only if CMP0025 is set to NEW will detect apple-clang + elseif((CONAN_COMPILER STREQUAL "gcc" AND NOT CMAKE_CXX_COMPILER_ID MATCHES "GNU") OR + (CONAN_COMPILER STREQUAL "apple-clang" AND NOT CROSS_BUILDING AND (NOT APPLE OR NOT CMAKE_CXX_COMPILER_ID MATCHES "Clang")) OR + (CONAN_COMPILER STREQUAL "clang" AND NOT CMAKE_CXX_COMPILER_ID MATCHES "Clang") OR + (CONAN_COMPILER STREQUAL "sun-cc" AND NOT CMAKE_CXX_COMPILER_ID MATCHES "SunPro") ) + message(FATAL_ERROR "Incorrect '${CONAN_COMPILER}', is not the one detected by CMake: '${CMAKE_CXX_COMPILER_ID}'") + endif() + + + if(NOT DEFINED CONAN_COMPILER_VERSION) + message(STATUS "WARN: CONAN_COMPILER_VERSION variable not set, please make sure yourself " + "that your compiler version matches your declared settings") + return() + endif() + check_compiler_version() +endfunction() + +macro(conan_set_flags build_type) + set(CMAKE_CXX_FLAGS${build_type} "${CMAKE_CXX_FLAGS${build_type}} ${CONAN_CXX_FLAGS${build_type}}") + set(CMAKE_C_FLAGS${build_type} "${CMAKE_C_FLAGS${build_type}} ${CONAN_C_FLAGS${build_type}}") + set(CMAKE_SHARED_LINKER_FLAGS${build_type} "${CMAKE_SHARED_LINKER_FLAGS${build_type}} ${CONAN_SHARED_LINKER_FLAGS${build_type}}") + set(CMAKE_EXE_LINKER_FLAGS${build_type} "${CMAKE_EXE_LINKER_FLAGS${build_type}} ${CONAN_EXE_LINKER_FLAGS${build_type}}") +endmacro() + +macro(conan_global_flags) + if(CONAN_SYSTEM_INCLUDES) + include_directories(SYSTEM ${CONAN_INCLUDE_DIRS} + "$<$:${CONAN_INCLUDE_DIRS_RELEASE}>" + "$<$:${CONAN_INCLUDE_DIRS_RELEASE}>" + "$<$:${CONAN_INCLUDE_DIRS_RELEASE}>" + "$<$:${CONAN_INCLUDE_DIRS_DEBUG}>") + else() + include_directories(${CONAN_INCLUDE_DIRS} + "$<$:${CONAN_INCLUDE_DIRS_RELEASE}>" + "$<$:${CONAN_INCLUDE_DIRS_RELEASE}>" + "$<$:${CONAN_INCLUDE_DIRS_RELEASE}>" + "$<$:${CONAN_INCLUDE_DIRS_DEBUG}>") + endif() + + link_directories(${CONAN_LIB_DIRS}) + + conan_find_libraries_abs_path("${CONAN_LIBS_DEBUG}" "${CONAN_LIB_DIRS_DEBUG}" + CONAN_LIBS_DEBUG) + conan_find_libraries_abs_path("${CONAN_LIBS_RELEASE}" "${CONAN_LIB_DIRS_RELEASE}" + CONAN_LIBS_RELEASE) + + add_compile_options(${CONAN_DEFINES} + "$<$:${CONAN_DEFINES_DEBUG}>" + "$<$:${CONAN_DEFINES_RELEASE}>" + "$<$:${CONAN_DEFINES_RELEASE}>" + "$<$:${CONAN_DEFINES_RELEASE}>") + + conan_set_flags("") + conan_set_flags("_RELEASE") + conan_set_flags("_DEBUG") + +endmacro() + +macro(conan_target_link_libraries target) + if(CONAN_TARGETS) + target_link_libraries(${target} ${CONAN_TARGETS}) + else() + target_link_libraries(${target} ${CONAN_LIBS}) + foreach(_LIB ${CONAN_LIBS_RELEASE}) + target_link_libraries(${target} optimized ${_LIB}) + endforeach() + foreach(_LIB ${CONAN_LIBS_DEBUG}) + target_link_libraries(${target} debug ${_LIB}) + endforeach() + endif() +endmacro() + + +### Definition of user declared vars (user_info) ### + diff --git a/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/conanbuildinfo.txt b/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/conanbuildinfo.txt new file mode 100644 index 0000000..dc3fced --- /dev/null +++ b/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/conanbuildinfo.txt @@ -0,0 +1,108 @@ +[includedirs] +C:/Users/t.vogl/.conan/data/suitesparse/5164583/intence/testing/package/85f780d0530411a64b0be4407b381706014b445d/include +C:/Users/t.vogl/.conan/data/suitesparse/5164583/intence/testing/package/85f780d0530411a64b0be4407b381706014b445d/include/suitesparse + +[libdirs] +C:/Users/t.vogl/.conan/data/suitesparse/5164583/intence/testing/package/85f780d0530411a64b0be4407b381706014b445d/lib +C:/Users/t.vogl/.conan/data/suitesparse/5164583/intence/testing/package/85f780d0530411a64b0be4407b381706014b445d/lib64/lapack_blas_windows +C:/Users/t.vogl/.conan/data/suitesparse/5164583/intence/testing/package/85f780d0530411a64b0be4407b381706014b445d/lib64 + +[bindirs] +C:/Users/t.vogl/.conan/data/suitesparse/5164583/intence/testing/package/85f780d0530411a64b0be4407b381706014b445d/lib64/lapack_blas_windows + +[resdirs] + + +[builddirs] +C:/Users/t.vogl/.conan/data/suitesparse/5164583/intence/testing/package/85f780d0530411a64b0be4407b381706014b445d/ + +[libs] +libamd +libbtf +libcamd +libccolamd +libcholmod +libcolamd +libcxsparse +libklu +libldl +libspqr +libumfpack +metis +suitesparseconfig +libblas +liblapack + +[defines] + + +[cppflags] + + +[cflags] + + +[sharedlinkflags] + + +[exelinkflags] + + + +[includedirs_suitesparse] +C:/Users/t.vogl/.conan/data/suitesparse/5164583/intence/testing/package/85f780d0530411a64b0be4407b381706014b445d/include +C:/Users/t.vogl/.conan/data/suitesparse/5164583/intence/testing/package/85f780d0530411a64b0be4407b381706014b445d/include/suitesparse + +[libdirs_suitesparse] +C:/Users/t.vogl/.conan/data/suitesparse/5164583/intence/testing/package/85f780d0530411a64b0be4407b381706014b445d/lib +C:/Users/t.vogl/.conan/data/suitesparse/5164583/intence/testing/package/85f780d0530411a64b0be4407b381706014b445d/lib64/lapack_blas_windows +C:/Users/t.vogl/.conan/data/suitesparse/5164583/intence/testing/package/85f780d0530411a64b0be4407b381706014b445d/lib64 + +[bindirs_suitesparse] +C:/Users/t.vogl/.conan/data/suitesparse/5164583/intence/testing/package/85f780d0530411a64b0be4407b381706014b445d/lib64/lapack_blas_windows + +[resdirs_suitesparse] + + +[builddirs_suitesparse] +C:/Users/t.vogl/.conan/data/suitesparse/5164583/intence/testing/package/85f780d0530411a64b0be4407b381706014b445d/ + +[libs_suitesparse] +libamd +libbtf +libcamd +libccolamd +libcholmod +libcolamd +libcxsparse +libklu +libldl +libspqr +libumfpack +metis +suitesparseconfig +libblas +liblapack + +[defines_suitesparse] + + +[cppflags_suitesparse] + + +[cflags_suitesparse] + + +[sharedlinkflags_suitesparse] + + +[exelinkflags_suitesparse] + + +[rootpath_suitesparse] +C:/Users/t.vogl/.conan/data/suitesparse/5164583/intence/testing/package/85f780d0530411a64b0be4407b381706014b445d + + +[USER_suitesparse] +[ENV_suitesparse] +path=["C:\Users\t.vogl\.conan\data\suitesparse\5164583\intence\testing\package\85f780d0530411a64b0be4407b381706014b445d\lib64/lapack_blas_windows"] \ No newline at end of file diff --git a/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/conaninfo.txt b/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/conaninfo.txt new file mode 100644 index 0000000..363a9d9 --- /dev/null +++ b/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/conaninfo.txt @@ -0,0 +1,33 @@ +[settings] + arch=x86_64 + build_type=Release + compiler=Visual Studio + compiler.runtime=MD + compiler.version=10 + os=Windows + +[requires] + suitesparse/5164583.Y.Z + +[options] + + +[full_settings] + arch=x86_64 + build_type=Release + compiler=Visual Studio + compiler.runtime=MD + compiler.version=10 + os=Windows + +[full_requires] + suitesparse/5164583@intence/testing:85f780d0530411a64b0be4407b381706014b445d + +[full_options] + + +[recipe_hash] + + +[env] + diff --git a/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/x64/Release/ALL_BUILD/ALL_BUILD.lastbuildstate b/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/x64/Release/ALL_BUILD/ALL_BUILD.lastbuildstate new file mode 100644 index 0000000..0bcd497 --- /dev/null +++ b/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/x64/Release/ALL_BUILD/ALL_BUILD.lastbuildstate @@ -0,0 +1,2 @@ +#v4.0:v100:false +Release|x64|C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\| diff --git a/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/x64/Release/ALL_BUILD/custombuild.command.1.tlog b/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/x64/Release/ALL_BUILD/custombuild.command.1.tlog new file mode 100644 index 0000000..cc986e3 Binary files /dev/null and b/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/x64/Release/ALL_BUILD/custombuild.command.1.tlog differ diff --git a/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/x64/Release/ALL_BUILD/custombuild.read.1.tlog b/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/x64/Release/ALL_BUILD/custombuild.read.1.tlog new file mode 100644 index 0000000..f582c63 Binary files /dev/null and b/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/x64/Release/ALL_BUILD/custombuild.read.1.tlog differ diff --git a/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/x64/Release/ALL_BUILD/custombuild.write.1.tlog b/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/x64/Release/ALL_BUILD/custombuild.write.1.tlog new file mode 100644 index 0000000..fd2c928 Binary files /dev/null and b/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/x64/Release/ALL_BUILD/custombuild.write.1.tlog differ diff --git a/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/x64/Release/ZERO_CHECK/ZERO_CHECK.lastbuildstate b/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/x64/Release/ZERO_CHECK/ZERO_CHECK.lastbuildstate new file mode 100644 index 0000000..0bcd497 --- /dev/null +++ b/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/x64/Release/ZERO_CHECK/ZERO_CHECK.lastbuildstate @@ -0,0 +1,2 @@ +#v4.0:v100:false +Release|x64|C:\Users\t.vogl\Documents\repos\conan-suitesparse\test_package\build\cc0b6d0f55c55af98d31d87caa3e6e6976664cfd\| diff --git a/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/x64/Release/ZERO_CHECK/ZERO_CHECK.vcxprojResolveAssemblyReference.cache b/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/x64/Release/ZERO_CHECK/ZERO_CHECK.vcxprojResolveAssemblyReference.cache new file mode 100644 index 0000000..368dff8 Binary files /dev/null and b/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/x64/Release/ZERO_CHECK/ZERO_CHECK.vcxprojResolveAssemblyReference.cache differ diff --git a/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/x64/Release/ZERO_CHECK/custombuild.command.1.tlog b/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/x64/Release/ZERO_CHECK/custombuild.command.1.tlog new file mode 100644 index 0000000..8c55ea2 Binary files /dev/null and b/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/x64/Release/ZERO_CHECK/custombuild.command.1.tlog differ diff --git a/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/x64/Release/ZERO_CHECK/custombuild.read.1.tlog b/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/x64/Release/ZERO_CHECK/custombuild.read.1.tlog new file mode 100644 index 0000000..262c5bb Binary files /dev/null and b/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/x64/Release/ZERO_CHECK/custombuild.read.1.tlog differ diff --git a/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/x64/Release/ZERO_CHECK/custombuild.write.1.tlog b/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/x64/Release/ZERO_CHECK/custombuild.write.1.tlog new file mode 100644 index 0000000..abd5eb6 Binary files /dev/null and b/suitesparse/test_package/build/cc0b6d0f55c55af98d31d87caa3e6e6976664cfd/x64/Release/ZERO_CHECK/custombuild.write.1.tlog differ diff --git a/suitesparse/test_package/conanfile.py b/suitesparse/test_package/conanfile.py new file mode 100644 index 0000000..202f295 --- /dev/null +++ b/suitesparse/test_package/conanfile.py @@ -0,0 +1,22 @@ +from conans import ConanFile, CMake, tools +import os + +class SuitesparsetestConan(ConanFile): + name = "suitesparse-test" + version = "0.1" + license = "" + url = "" + description = "" + settings = "os", "compiler", "build_type", "arch" + generators = "cmake" + + def build(self): + cmake = CMake(self) + cmake.configure(source_dir=os.path.join(self.source_folder,"src"), build_dir=".") + cmake.build() + + def test(self): + if ( self.settings.os == "Windows"): + self.run("cholmod-test.exe",cwd="bin") + else: + self.run("./cholmod-test",cwd="bin") diff --git a/suitesparse/test_package/src/CMakeLists.txt b/suitesparse/test_package/src/CMakeLists.txt new file mode 100644 index 0000000..ef1ac2c --- /dev/null +++ b/suitesparse/test_package/src/CMakeLists.txt @@ -0,0 +1,9 @@ +project(SuitesparseTest) + + +include(${CMAKE_BINARY_DIR}/conanbuildinfo.cmake) +conan_basic_setup() +find_package(Cholmod REQUIRED) + +add_executable(cholmod-test cholmod-test.cpp) +TARGET_LINK_LIBRARIES(cholmod-test ${Cholmod_LIBRARIES}) diff --git a/suitesparse/test_package/src/cholmod-test.cpp b/suitesparse/test_package/src/cholmod-test.cpp new file mode 100644 index 0000000..4263565 --- /dev/null +++ b/suitesparse/test_package/src/cholmod-test.cpp @@ -0,0 +1,9 @@ +#include "cholmod.h" + +int main (void) +{ + cholmod_common c ; + cholmod_start (&c) ; /* start CHOLMOD */ + cholmod_finish (&c) ; /* finish CHOLMOD */ + return (0) ; +} \ No newline at end of file diff --git a/vtk/conanfile.py b/vtk/conanfile.py new file mode 100644 index 0000000..b8200b2 --- /dev/null +++ b/vtk/conanfile.py @@ -0,0 +1,187 @@ +import os +from conans import ConanFile, CMake,tools + +class VTKConan(ConanFile): + name = "VTK" + generators = "cmake" + settings = "os", "compiler", "build_type", "arch" + options = {"shared": [True, False], "with_qt":[True,False] } + default_options = "shared=True","with_qt=False" + url="http://github.com/av3m/conan-vtk.git" + license="http://www.vtk.org/licensing/" + short_paths=True + + + def configure(self): + if self.options.with_qt == True: + self.requires("Qt/[>=5.0.0]@%s/%s" %(self.user,self.channel)) + + def system_requirements(self): + installer= tools.SystemPackageTool(self) + if tools.os_info.is_linux and tools.os_info.linux_distro in [ "ubuntu" , "debian" ]: + installer.install("freeglut3-dev") + installer.install("mesa-common-dev") + installer.install("mesa-utils-extra") + installer.install("libgl1-mesa-dev") + installer.install("libglapi-mesa") + + def remove_qt_absolute_paths(self): + qt_lib_path = os.path.join(self.deps_cpp_info["Qt"].rootpath,"lib") + qt_lib_path = qt_lib_path.replace("\\","/") + "/" + tools.replace_in_file("_install/lib/cmake/vtk-7.1/VTKTargets.cmake",qt_lib_path,"") + + + def source(self): + self.run("git clone --branch v%s --single-branch https://gitlab.kitware.com/vtk/vtk.git vtk" %(self.version) ) + tools.replace_in_file("vtk/CMakeLists.txt","""project(VTK)""","""project(VTK) + include(${CMAKE_BINARY_DIR}/conanbuildinfo.cmake) + conan_basic_setup()""") + + def build(self): + cmake = CMake(self,parallel=True) + + cmake.definitions["BUILD_TESTING"] = "OFF" + cmake.definitions["BUILD_EXAMPLES"] = "OFF" + cmake.definitions["CMAKE_INSTALL_PREFIX"] = "_install" + + if self.options.shared == False: + cmake.definitions["BUILD_SHARED_LIBS"] = "OFF" + else: + cmake.definitions["BUILD_SHARED_LIBS"] = "ON" + if self.options.with_qt == True: + cmake.definitions["VTK_Group_Qt:BOOL"] = "ON" + cmake.definitions["VTK_BUILD_QT_DESIGNER_PLUGIN:BOOL"] = "ON" + + if self.settings.build_type == "Debug" and self.settings.compiler == "Visual Studio": + cmake.definitions["CMAKE_DEBUG_POSTFIX"] = "_d" + + cmake.configure(source_dir="vtk", build_dir=".") + cmake.build() + cmake.install() + #if self.options.with_qt == True: + # self.remove_qt_absolute_paths() + + def package(self): + self.copy("*", dst=".", src="_install") + + def package_info(self): + self.short_version = ".".join(str(self.version).split(".")[0:2]) + LIB_POSTFIX = "" + if self.settings.build_type == "Debug" and self.settings.compiler == "Visual Studio": + LIB_POSTFIX = "_d" + libs = [ + "vtkalglib-%s" % self.short_version + LIB_POSTFIX, + "vtkChartsCore-%s" % self.short_version + LIB_POSTFIX, + "vtkCommonColor-%s" % self.short_version + LIB_POSTFIX, + "vtkCommonComputationalGeometry-%s" % self.short_version + LIB_POSTFIX, + "vtkCommonCore-%s" % self.short_version + LIB_POSTFIX, + "vtkCommonDataModel-%s" % self.short_version + LIB_POSTFIX, + "vtkCommonExecutionModel-%s" % self.short_version + LIB_POSTFIX, + "vtkCommonMath-%s" % self.short_version + LIB_POSTFIX, + "vtkCommonMisc-%s" % self.short_version + LIB_POSTFIX, + "vtkCommonSystem-%s" % self.short_version + LIB_POSTFIX, + "vtkCommonTransforms-%s" % self.short_version + LIB_POSTFIX, + "vtkDICOMParser-%s" % self.short_version + LIB_POSTFIX, + "vtkDomainsChemistry-%s" % self.short_version + LIB_POSTFIX, + "vtkDomainsChemistryOpenGL2-%s" % self.short_version + LIB_POSTFIX, + "vtkexoIIc-%s" % self.short_version + LIB_POSTFIX, + "vtkexpat-%s" % self.short_version + LIB_POSTFIX, + "vtkFiltersAMR-%s" % self.short_version + LIB_POSTFIX, + "vtkFiltersCore-%s" % self.short_version + LIB_POSTFIX, + "vtkFiltersExtraction-%s" % self.short_version + LIB_POSTFIX, + "vtkFiltersFlowPaths-%s" % self.short_version + LIB_POSTFIX, + "vtkFiltersGeneral-%s" % self.short_version + LIB_POSTFIX, + "vtkFiltersGeneric-%s" % self.short_version + LIB_POSTFIX, + "vtkFiltersGeometry-%s" % self.short_version + LIB_POSTFIX, + "vtkFiltersHybrid-%s" % self.short_version + LIB_POSTFIX, + "vtkFiltersHyperTree-%s" % self.short_version + LIB_POSTFIX, + "vtkFiltersImaging-%s" % self.short_version + LIB_POSTFIX, + "vtkFiltersModeling-%s" % self.short_version + LIB_POSTFIX, + "vtkFiltersParallel-%s" % self.short_version + LIB_POSTFIX, + "vtkFiltersParallelImaging-%s" % self.short_version + LIB_POSTFIX, + "vtkFiltersProgrammable-%s" % self.short_version + LIB_POSTFIX, + "vtkFiltersSelection-%s" % self.short_version + LIB_POSTFIX, + "vtkFiltersSMP-%s" % self.short_version + LIB_POSTFIX, + "vtkFiltersSources-%s" % self.short_version + LIB_POSTFIX, + "vtkFiltersStatistics-%s" % self.short_version + LIB_POSTFIX, + "vtkFiltersTexture-%s" % self.short_version + LIB_POSTFIX, + "vtkFiltersVerdict-%s" % self.short_version + LIB_POSTFIX, + "vtkfreetype-%s" % self.short_version + LIB_POSTFIX, + "vtkGeovisCore-%s" % self.short_version + LIB_POSTFIX, + "vtkglew-%s" % self.short_version + LIB_POSTFIX, + "vtkhdf5_hl-%s" % self.short_version + LIB_POSTFIX, + "vtkhdf5-%s" % self.short_version + LIB_POSTFIX, + "vtkImagingColor-%s" % self.short_version + LIB_POSTFIX, + "vtkImagingCore-%s" % self.short_version + LIB_POSTFIX, + "vtkImagingFourier-%s" % self.short_version + LIB_POSTFIX, + "vtkImagingGeneral-%s" % self.short_version + LIB_POSTFIX, + "vtkImagingHybrid-%s" % self.short_version + LIB_POSTFIX, + "vtkImagingMath-%s" % self.short_version + LIB_POSTFIX, + "vtkImagingMorphological-%s" % self.short_version + LIB_POSTFIX, + "vtkImagingSources-%s" % self.short_version + LIB_POSTFIX, + "vtkImagingStatistics-%s" % self.short_version + LIB_POSTFIX, + "vtkImagingStencil-%s" % self.short_version + LIB_POSTFIX, + "vtkInfovisCore-%s" % self.short_version + LIB_POSTFIX, + "vtkInfovisLayout-%s" % self.short_version + LIB_POSTFIX, + "vtkInteractionImage-%s" % self.short_version + LIB_POSTFIX, + "vtkInteractionStyle-%s" % self.short_version + LIB_POSTFIX, + "vtkInteractionWidgets-%s" % self.short_version + LIB_POSTFIX, + "vtkIOAMR-%s" % self.short_version + LIB_POSTFIX, + "vtkIOCore-%s" % self.short_version + LIB_POSTFIX, + "vtkIOEnSight-%s" % self.short_version + LIB_POSTFIX, + "vtkIOExodus-%s" % self.short_version + LIB_POSTFIX, + "vtkIOExport-%s" % self.short_version + LIB_POSTFIX, + "vtkIOGeometry-%s" % self.short_version + LIB_POSTFIX, + "vtkIOImage-%s" % self.short_version + LIB_POSTFIX, + "vtkIOImport-%s" % self.short_version + LIB_POSTFIX, + "vtkIOInfovis-%s" % self.short_version + LIB_POSTFIX, + "vtkIOLegacy-%s" % self.short_version + LIB_POSTFIX, + "vtkIOLSDyna-%s" % self.short_version + LIB_POSTFIX, + "vtkIOMINC-%s" % self.short_version + LIB_POSTFIX, + "vtkIOMovie-%s" % self.short_version + LIB_POSTFIX, + "vtkIONetCDF-%s" % self.short_version + LIB_POSTFIX, + "vtkIOParallel-%s" % self.short_version + LIB_POSTFIX, + "vtkIOParallelXML-%s" % self.short_version + LIB_POSTFIX, + "vtkIOPLY-%s" % self.short_version + LIB_POSTFIX, + "vtkIOSQL-%s" % self.short_version + LIB_POSTFIX, + "vtkIOVideo-%s" % self.short_version + LIB_POSTFIX, + "vtkIOXML-%s" % self.short_version + LIB_POSTFIX, + "vtkIOXMLParser-%s" % self.short_version + LIB_POSTFIX, + "vtkjpeg-%s" % self.short_version + LIB_POSTFIX, + "vtkjsoncpp-%s" % self.short_version + LIB_POSTFIX, + "vtklibxml2-%s" % self.short_version + LIB_POSTFIX, + "vtkmetaio-%s" % self.short_version + LIB_POSTFIX, + "vtkNetCDF_cxx-%s" % self.short_version + LIB_POSTFIX, + "vtkNetCDF-%s" % self.short_version + LIB_POSTFIX, + "vtkoggtheora-%s" % self.short_version + LIB_POSTFIX, + "vtkParallelCore-%s" % self.short_version + LIB_POSTFIX, + "vtkpng-%s" % self.short_version + LIB_POSTFIX, + "vtkproj4-%s" % self.short_version + LIB_POSTFIX, + "vtkRenderingAnnotation-%s" % self.short_version + LIB_POSTFIX, + "vtkRenderingContext2D-%s" % self.short_version + LIB_POSTFIX, + "vtkRenderingContextOpenGL2-%s" % self.short_version + LIB_POSTFIX, + "vtkRenderingCore-%s" % self.short_version + LIB_POSTFIX, + "vtkRenderingFreeType-%s" % self.short_version + LIB_POSTFIX, + "vtkRenderingImage-%s" % self.short_version + LIB_POSTFIX, + "vtkRenderingLabel-%s" % self.short_version + LIB_POSTFIX, + "vtkRenderingLOD-%s" % self.short_version + LIB_POSTFIX, + "vtkRenderingOpenGL2-%s" % self.short_version + LIB_POSTFIX, + "vtkRenderingVolume-%s" % self.short_version + LIB_POSTFIX, + "vtkRenderingVolumeOpenGL2-%s" % self.short_version + LIB_POSTFIX, + "vtksqlite-%s" % self.short_version + LIB_POSTFIX, + "vtksys-%s" % self.short_version + LIB_POSTFIX, + "vtktiff-%s" % self.short_version + LIB_POSTFIX, + "vtkverdict-%s" % self.short_version + LIB_POSTFIX, + "vtkViewsContext2D-%s" % self.short_version + LIB_POSTFIX, + "vtkViewsCore-%s" % self.short_version + LIB_POSTFIX, + "vtkViewsInfovis-%s" % self.short_version + LIB_POSTFIX, + "vtkzlib-%s" % self.short_version + LIB_POSTFIX + ] + if self.options.with_qt: + libs.append("vtkGUISupportQt-%s" % self.short_version + LIB_POSTFIX) + libs.append("vtkGUISupportQtSQL-%s" % self.short_version + LIB_POSTFIX) + self.cpp_info.libs = libs + self.cpp_info.includedirs = [ + "include/vtk-%s" % self.short_version, + "include/vtk-%s/vtknetcdf/include" % self.short_version, + ] diff --git a/winiconv/conanfile.py b/winiconv/conanfile.py new file mode 100644 index 0000000..70f4530 --- /dev/null +++ b/winiconv/conanfile.py @@ -0,0 +1,42 @@ +from conans import ConanFile +import os +from conans.tools import download +from conans.tools import unzip +from conans import CMake + + +class WinIConvConan(ConanFile): + name = "win-iconv" + version = "0.0.8" + license = "MIT" + generators = "cmake" + settings = "os", "arch", "compiler", "build_type" + options = {"shared": [True, False]} + default_options = "shared=False" + url="http://github.com/Av3m/conan-packages" + license="https://github.com/win-iconv/win-iconv" + + def source(self): + self.run("git clone --branch v%s --single-branch https://github.com/win-iconv/win-iconv.git" %(self.version)) + + def build(self): + cmake = CMake(self) + + cmake.definitions["CMAKE_INSTALL_PREFIX"] = "__install" + if ( self.options.shared): + cmake.definitions["BUILD_SHARED_LIBS"] = "ON" + else: + cmake.definitions["BUILD_SHARED_LIBS"] = "OFF" + + cmake.configure(source_dir="win-iconv", build_dir=".") + cmake.build() + cmake.install() + + def package(self): + # Copying headers + self.copy(pattern="*", dst=".", src="__install", keep_path=True) + + + + def package_info(self): + self.cpp_info.libs = ['iconv']