diff --git a/.github/workflows/cmake-single-platform.yml b/.github/workflows/cmake-single-platform.yml new file mode 100644 index 0000000..0ac33d9 --- /dev/null +++ b/.github/workflows/cmake-single-platform.yml @@ -0,0 +1,39 @@ +# This starter workflow is for a CMake project running on a single platform. There is a different starter workflow if you need cross-platform coverage. +# See: https://github.com/actions/starter-workflows/blob/main/ci/cmake-multi-platform.yml +name: CMake on a single platform + +on: + push: + branches: [ "main" ] + pull_request: + branches: [ "main" ] + +env: + # Customize the CMake build type here (Release, Debug, RelWithDebInfo, etc.) + BUILD_TYPE: Release + +jobs: + build: + # The CMake configure and build commands are platform agnostic and should work equally well on Windows or Mac. + # You can convert this to a matrix build if you need cross-platform coverage. + # See: https://docs.github.com/en/free-pro-team@latest/actions/learn-github-actions/managing-complex-workflows#using-a-build-matrix + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v4 + + - name: Configure CMake + # Configure CMake in a 'build' subdirectory. `CMAKE_BUILD_TYPE` is only required if you are using a single-configuration generator such as make. + # See https://cmake.org/cmake/help/latest/variable/CMAKE_BUILD_TYPE.html?highlight=cmake_build_type + run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} + + - name: Build + # Build your program with the given configuration + run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}} + + - name: Test + working-directory: ${{github.workspace}}/build + # Execute tests defined by the CMake configuration. + # See https://cmake.org/cmake/help/latest/manual/ctest.1.html for more detail + run: ctest -C ${{env.BUILD_TYPE}} + diff --git a/build/CMakeCache.txt b/build/CMakeCache.txt deleted file mode 100644 index 032acd5..0000000 --- a/build/CMakeCache.txt +++ /dev/null @@ -1,533 +0,0 @@ -# This is the CMakeCache file. -# For build in directory: /Users/rhseung/Documents/GitHub/hinguri-pingpong/build -# It was generated by CMake: /opt/homebrew/bin/cmake -# You can edit this file to change values found and used by cmake. -# If you do not want to change any of the values, simply exit the editor. -# If you do want to change a value, simply edit, save, and exit the editor. -# The syntax for the file is as follows: -# KEY:TYPE=VALUE -# KEY is the name of a variable in the cache. -# TYPE is a hint to GUIs for the type of VALUE, DO NOT EDIT TYPE!. -# VALUE is the current value for the KEY. - -######################## -# EXTERNAL cache entries -######################## - -//Build All targets -BUILD_ALL:BOOL=OFF - -//Build All targets except the python bindings for pytest -BUILD_ALL_NON_PYTHON:BOOL=OFF - -//Build the cppcheck test -BUILD_CPPCHECK_TEST:BOOL=OFF - -//Build the doxygen documentation -BUILD_DOCS:BOOL=OFF - -//Build all of the examples -BUILD_EXAMPLE_ALL:BOOL=OFF - -//Build the Gauss-Newton NLLS example -BUILD_EXAMPLE_GAUSS_NEWTON_NLLS:BOOL=OFF - -//Build the Interface with Eigen example -BUILD_EXAMPLE_INTERFACE_WITH_EIGEN:BOOL=OFF - -//Build the Interface with OpenCV example -BUILD_EXAMPLE_INTERFACE_WITH_OPENCV:BOOL=OFF - -//Build the README example -BUILD_EXAMPLE_README:BOOL=OFF - -//Build the gtest tests -BUILD_GTEST:BOOL=OFF - -//Build the multiple translation unit test -BUILD_MULTIPLE_TEST:BOOL=OFF - -//Build the unit tests -BUILD_TESTS:BOOL=OFF - -//The directory containing a CMake configuration file for Boost. -Boost_DIR:PATH=/opt/homebrew/lib/cmake/Boost-1.88.0 - -//Path to a program. -CMAKE_ADDR2LINE:FILEPATH=CMAKE_ADDR2LINE-NOTFOUND - -//Path to a program. -CMAKE_AR:FILEPATH=/usr/bin/ar - -//Choose the type of build, options are: None Debug Release RelWithDebInfo -// MinSizeRel ... -CMAKE_BUILD_TYPE:STRING= - -//Enable/Disable color output during build. -CMAKE_COLOR_MAKEFILE:BOOL=ON - -//CXX compiler -CMAKE_CXX_COMPILER:FILEPATH=/usr/bin/c++ - -//Flags used by the CXX compiler during all build types. -CMAKE_CXX_FLAGS:STRING= - -//Flags used by the CXX compiler during DEBUG builds. -CMAKE_CXX_FLAGS_DEBUG:STRING=-g - -//Flags used by the CXX compiler during MINSIZEREL builds. -CMAKE_CXX_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG - -//Flags used by the CXX compiler during RELEASE builds. -CMAKE_CXX_FLAGS_RELEASE:STRING=-O3 -DNDEBUG - -//Flags used by the CXX compiler during RELWITHDEBINFO builds. -CMAKE_CXX_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG - -//Path to a program. -CMAKE_DLLTOOL:FILEPATH=CMAKE_DLLTOOL-NOTFOUND - -//Flags used by the linker during all build types. -CMAKE_EXE_LINKER_FLAGS:STRING= - -//Flags used by the linker during DEBUG builds. -CMAKE_EXE_LINKER_FLAGS_DEBUG:STRING= - -//Flags used by the linker during MINSIZEREL builds. -CMAKE_EXE_LINKER_FLAGS_MINSIZEREL:STRING= - -//Flags used by the linker during RELEASE builds. -CMAKE_EXE_LINKER_FLAGS_RELEASE:STRING= - -//Flags used by the linker during RELWITHDEBINFO builds. -CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO:STRING= - -//Value Computed by CMake. -CMAKE_FIND_PACKAGE_REDIRECTS_DIR:STATIC=/Users/rhseung/Documents/GitHub/hinguri-pingpong/build/CMakeFiles/pkgRedirects - -//User executables (bin) -CMAKE_INSTALL_BINDIR:PATH=bin - -//Read-only architecture-independent data (DATAROOTDIR) -CMAKE_INSTALL_DATADIR:PATH= - -//Read-only architecture-independent data root (share) -CMAKE_INSTALL_DATAROOTDIR:PATH=share - -//Documentation root (DATAROOTDIR/doc/PROJECT_NAME) -CMAKE_INSTALL_DOCDIR:PATH= - -//C header files (include) -CMAKE_INSTALL_INCLUDEDIR:PATH=include - -//Info documentation (DATAROOTDIR/info) -CMAKE_INSTALL_INFODIR:PATH= - -//Object code libraries (lib) -CMAKE_INSTALL_LIBDIR:PATH=lib - -//Program executables (libexec) -CMAKE_INSTALL_LIBEXECDIR:PATH=libexec - -//Locale-dependent data (DATAROOTDIR/locale) -CMAKE_INSTALL_LOCALEDIR:PATH= - -//Modifiable single-machine data (var) -CMAKE_INSTALL_LOCALSTATEDIR:PATH=var - -//Man documentation (DATAROOTDIR/man) -CMAKE_INSTALL_MANDIR:PATH= - -//Path to a program. -CMAKE_INSTALL_NAME_TOOL:FILEPATH=/usr/bin/install_name_tool - -//C header files for non-gcc (/usr/include) -CMAKE_INSTALL_OLDINCLUDEDIR:PATH=/usr/include - -//Install path prefix, prepended onto install directories. -CMAKE_INSTALL_PREFIX:PATH=/usr/local - -//Run-time variable data (LOCALSTATEDIR/run) -CMAKE_INSTALL_RUNSTATEDIR:PATH= - -//System admin executables (sbin) -CMAKE_INSTALL_SBINDIR:PATH=sbin - -//Modifiable architecture-independent data (com) -CMAKE_INSTALL_SHAREDSTATEDIR:PATH=com - -//Read-only single-machine data (etc) -CMAKE_INSTALL_SYSCONFDIR:PATH=etc - -//Path to a program. -CMAKE_LINKER:FILEPATH=/usr/bin/ld - -//Path to a program. -CMAKE_MAKE_PROGRAM:FILEPATH=/usr/bin/make - -//Flags used by the linker during the creation of modules during -// all build types. -CMAKE_MODULE_LINKER_FLAGS:STRING= - -//Flags used by the linker during the creation of modules during -// DEBUG builds. -CMAKE_MODULE_LINKER_FLAGS_DEBUG:STRING= - -//Flags used by the linker during the creation of modules during -// MINSIZEREL builds. -CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL:STRING= - -//Flags used by the linker during the creation of modules during -// RELEASE builds. -CMAKE_MODULE_LINKER_FLAGS_RELEASE:STRING= - -//Flags used by the linker during the creation of modules during -// RELWITHDEBINFO builds. -CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO:STRING= - -//Path to a program. -CMAKE_NM:FILEPATH=/usr/bin/nm - -//Path to a program. -CMAKE_OBJCOPY:FILEPATH=CMAKE_OBJCOPY-NOTFOUND - -//Path to a program. -CMAKE_OBJDUMP:FILEPATH=/usr/bin/objdump - -//Build architectures for OSX -CMAKE_OSX_ARCHITECTURES:STRING= - -//Minimum OS X version to target for deployment (at runtime); newer -// APIs weak linked. Set to empty string for default value. -CMAKE_OSX_DEPLOYMENT_TARGET:STRING= - -//The product will be built against the headers and libraries located -// inside the indicated SDK. -CMAKE_OSX_SYSROOT:STRING= - -//Value Computed by CMake -CMAKE_PROJECT_DESCRIPTION:STATIC=A Templatized Header Only C++ Implementation of the Python NumPy Library - -//Value Computed by CMake -CMAKE_PROJECT_HOMEPAGE_URL:STATIC=https://github.com/dpilger26/NumCpp - -//Value Computed by CMake -CMAKE_PROJECT_NAME:STATIC=NumCpp - -//Value Computed by CMake -CMAKE_PROJECT_VERSION:STATIC=2.14.1 - -//Value Computed by CMake -CMAKE_PROJECT_VERSION_MAJOR:STATIC=2 - -//Value Computed by CMake -CMAKE_PROJECT_VERSION_MINOR:STATIC=14 - -//Value Computed by CMake -CMAKE_PROJECT_VERSION_PATCH:STATIC=1 - -//Value Computed by CMake -CMAKE_PROJECT_VERSION_TWEAK:STATIC= - -//Path to a program. -CMAKE_RANLIB:FILEPATH=/usr/bin/ranlib - -//Path to a program. -CMAKE_READELF:FILEPATH=CMAKE_READELF-NOTFOUND - -//Flags used by the linker during the creation of shared libraries -// during all build types. -CMAKE_SHARED_LINKER_FLAGS:STRING= - -//Flags used by the linker during the creation of shared libraries -// during DEBUG builds. -CMAKE_SHARED_LINKER_FLAGS_DEBUG:STRING= - -//Flags used by the linker during the creation of shared libraries -// during MINSIZEREL builds. -CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL:STRING= - -//Flags used by the linker during the creation of shared libraries -// during RELEASE builds. -CMAKE_SHARED_LINKER_FLAGS_RELEASE:STRING= - -//Flags used by the linker during the creation of shared libraries -// during RELWITHDEBINFO builds. -CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO:STRING= - -//If set, runtime paths are not added when installing shared libraries, -// but are added when building. -CMAKE_SKIP_INSTALL_RPATH:BOOL=NO - -//If set, runtime paths are not added when using shared libraries. -CMAKE_SKIP_RPATH:BOOL=NO - -//Flags used by the linker during the creation of static libraries -// during all build types. -CMAKE_STATIC_LINKER_FLAGS:STRING= - -//Flags used by the linker during the creation of static libraries -// during DEBUG builds. -CMAKE_STATIC_LINKER_FLAGS_DEBUG:STRING= - -//Flags used by the linker during the creation of static libraries -// during MINSIZEREL builds. -CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL:STRING= - -//Flags used by the linker during the creation of static libraries -// during RELEASE builds. -CMAKE_STATIC_LINKER_FLAGS_RELEASE:STRING= - -//Flags used by the linker during the creation of static libraries -// during RELWITHDEBINFO builds. -CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO:STRING= - -//Path to a program. -CMAKE_STRIP:FILEPATH=/usr/bin/strip - -//Path to a program. -CMAKE_TAPI:FILEPATH=/Library/Developer/CommandLineTools/usr/bin/tapi - -//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 - -//Don't use the boost libraries -NUMCPP_NO_USE_BOOST:BOOL=OFF - -//Enable multithreading -NUMCPP_USE_MULTITHREAD:BOOL=OFF - -//Value Computed by CMake -NumCpp_BINARY_DIR:STATIC=/Users/rhseung/Documents/GitHub/hinguri-pingpong/build - -//Value Computed by CMake -NumCpp_IS_TOP_LEVEL:STATIC=ON - -//Value Computed by CMake -NumCpp_SOURCE_DIR:STATIC=/Users/rhseung/Documents/GitHub/hinguri-pingpong/NumCpp - -//Path to a file. -VERSION_FILE:FILEPATH=/Users/rhseung/Documents/GitHub/hinguri-pingpong/NumCpp/include/NumCpp/Core/Internal/Version.hpp - -//The directory containing a CMake configuration file for boost_atomic. -boost_atomic_DIR:PATH=/opt/homebrew/lib/cmake/boost_atomic-1.88.0 - -//The directory containing a CMake configuration file for boost_chrono. -boost_chrono_DIR:PATH=/opt/homebrew/lib/cmake/boost_chrono-1.88.0 - -//The directory containing a CMake configuration file for boost_date_time. -boost_date_time_DIR:PATH=/opt/homebrew/lib/cmake/boost_date_time-1.88.0 - -//The directory containing a CMake configuration file for boost_filesystem. -boost_filesystem_DIR:PATH=/opt/homebrew/lib/cmake/boost_filesystem-1.88.0 - -//The directory containing a CMake configuration file for boost_headers. -boost_headers_DIR:PATH=/opt/homebrew/lib/cmake/boost_headers-1.88.0 - -//The directory containing a CMake configuration file for boost_log. -boost_log_DIR:PATH=/opt/homebrew/lib/cmake/boost_log-1.88.0 - -//The directory containing a CMake configuration file for boost_log_setup. -boost_log_setup_DIR:PATH=/opt/homebrew/lib/cmake/boost_log_setup-1.88.0 - -//The directory containing a CMake configuration file for boost_system. -boost_system_DIR:PATH=/opt/homebrew/lib/cmake/boost_system-1.88.0 - -//The directory containing a CMake configuration file for boost_thread. -boost_thread_DIR:PATH=/opt/homebrew/lib/cmake/boost_thread-1.88.0 - - -######################## -# INTERNAL cache entries -######################## - -//ADVANCED property for variable: CMAKE_ADDR2LINE -CMAKE_ADDR2LINE-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_AR -CMAKE_AR-ADVANCED:INTERNAL=1 -//This is the directory where this CMakeCache.txt was created -CMAKE_CACHEFILE_DIR:INTERNAL=/Users/rhseung/Documents/GitHub/hinguri-pingpong/build -//Major version of cmake used to create the current loaded cache -CMAKE_CACHE_MAJOR_VERSION:INTERNAL=4 -//Minor version of cmake used to create the current loaded cache -CMAKE_CACHE_MINOR_VERSION:INTERNAL=0 -//Patch version of cmake used to create the current loaded cache -CMAKE_CACHE_PATCH_VERSION:INTERNAL=3 -//ADVANCED property for variable: CMAKE_COLOR_MAKEFILE -CMAKE_COLOR_MAKEFILE-ADVANCED:INTERNAL=1 -//Path to CMake executable. -CMAKE_COMMAND:INTERNAL=/opt/homebrew/bin/cmake -//Path to cpack program executable. -CMAKE_CPACK_COMMAND:INTERNAL=/opt/homebrew/bin/cpack -//Path to ctest program executable. -CMAKE_CTEST_COMMAND:INTERNAL=/opt/homebrew/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_DLLTOOL -CMAKE_DLLTOOL-ADVANCED:INTERNAL=1 -//Path to cache edit program executable. -CMAKE_EDIT_COMMAND:INTERNAL=/opt/homebrew/bin/ccmake -//Executable file format -CMAKE_EXECUTABLE_FORMAT:INTERNAL=MACHO -//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 -CMAKE_EXPORT_COMPILE_COMMANDS:INTERNAL=ON -//Name of external makefile project generator. -CMAKE_EXTRA_GENERATOR:INTERNAL= -//Name of generator. -CMAKE_GENERATOR:INTERNAL=Unix Makefiles -//Generator instance identifier. -CMAKE_GENERATOR_INSTANCE:INTERNAL= -//Name of generator platform. -CMAKE_GENERATOR_PLATFORM:INTERNAL= -//Name of generator toolset. -CMAKE_GENERATOR_TOOLSET:INTERNAL= -//Test CMAKE_HAVE_LIBC_PTHREAD -CMAKE_HAVE_LIBC_PTHREAD:INTERNAL=1 -//Source directory with the top level CMakeLists.txt file for this -// project -CMAKE_HOME_DIRECTORY:INTERNAL=/Users/rhseung/Documents/GitHub/hinguri-pingpong/NumCpp -//ADVANCED property for variable: CMAKE_INSTALL_BINDIR -CMAKE_INSTALL_BINDIR-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_INSTALL_DATADIR -CMAKE_INSTALL_DATADIR-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_INSTALL_DATAROOTDIR -CMAKE_INSTALL_DATAROOTDIR-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_INSTALL_DOCDIR -CMAKE_INSTALL_DOCDIR-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_INSTALL_INCLUDEDIR -CMAKE_INSTALL_INCLUDEDIR-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_INSTALL_INFODIR -CMAKE_INSTALL_INFODIR-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_INSTALL_LIBDIR -CMAKE_INSTALL_LIBDIR-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_INSTALL_LIBEXECDIR -CMAKE_INSTALL_LIBEXECDIR-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_INSTALL_LOCALEDIR -CMAKE_INSTALL_LOCALEDIR-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_INSTALL_LOCALSTATEDIR -CMAKE_INSTALL_LOCALSTATEDIR-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_INSTALL_MANDIR -CMAKE_INSTALL_MANDIR-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_INSTALL_NAME_TOOL -CMAKE_INSTALL_NAME_TOOL-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_INSTALL_OLDINCLUDEDIR -CMAKE_INSTALL_OLDINCLUDEDIR-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_INSTALL_RUNSTATEDIR -CMAKE_INSTALL_RUNSTATEDIR-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_INSTALL_SBINDIR -CMAKE_INSTALL_SBINDIR-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_INSTALL_SHAREDSTATEDIR -CMAKE_INSTALL_SHAREDSTATEDIR-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_INSTALL_SYSCONFDIR -CMAKE_INSTALL_SYSCONFDIR-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_LINKER -CMAKE_LINKER-ADVANCED:INTERNAL=1 -//Name of CMakeLists files to read -CMAKE_LIST_FILE_NAME:INTERNAL=CMakeLists.txt -//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=2 -//ADVANCED property for variable: CMAKE_OBJCOPY -CMAKE_OBJCOPY-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_OBJDUMP -CMAKE_OBJDUMP-ADVANCED:INTERNAL=1 -//Platform information initialized -CMAKE_PLATFORM_INFO_INITIALIZED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_RANLIB -CMAKE_RANLIB-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_READELF -CMAKE_READELF-ADVANCED:INTERNAL=1 -//Path to CMake installation. -CMAKE_ROOT:INTERNAL=/opt/homebrew/share/cmake -//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS -CMAKE_SHARED_LINKER_FLAGS-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_DEBUG -CMAKE_SHARED_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL -CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELEASE -CMAKE_SHARED_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO -CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_SKIP_INSTALL_RPATH -CMAKE_SKIP_INSTALL_RPATH-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_SKIP_RPATH -CMAKE_SKIP_RPATH-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS -CMAKE_STATIC_LINKER_FLAGS-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_DEBUG -CMAKE_STATIC_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL -CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELEASE -CMAKE_STATIC_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO -CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_STRIP -CMAKE_STRIP-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_TAPI -CMAKE_TAPI-ADVANCED:INTERNAL=1 -//uname command -CMAKE_UNAME:INTERNAL=/usr/bin/uname -//ADVANCED property for variable: CMAKE_VERBOSE_MAKEFILE -CMAKE_VERBOSE_MAKEFILE-ADVANCED:INTERNAL=1 -//Details about finding Threads -FIND_PACKAGE_MESSAGE_DETAILS_Threads:INTERNAL=[TRUE][v()] -//CMAKE_INSTALL_PREFIX during last run -_GNUInstallDirs_LAST_CMAKE_INSTALL_PREFIX:INTERNAL=/usr/local -//ADVANCED property for variable: boost_atomic_DIR -boost_atomic_DIR-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: boost_chrono_DIR -boost_chrono_DIR-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: boost_date_time_DIR -boost_date_time_DIR-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: boost_filesystem_DIR -boost_filesystem_DIR-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: boost_headers_DIR -boost_headers_DIR-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: boost_log_DIR -boost_log_DIR-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: boost_log_setup_DIR -boost_log_setup_DIR-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: boost_system_DIR -boost_system_DIR-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: boost_thread_DIR -boost_thread_DIR-ADVANCED:INTERNAL=1 - diff --git a/build/CMakeFiles/4.0.3/CMakeCXXCompiler.cmake b/build/CMakeFiles/4.0.3/CMakeCXXCompiler.cmake deleted file mode 100644 index 7b4947f..0000000 --- a/build/CMakeFiles/4.0.3/CMakeCXXCompiler.cmake +++ /dev/null @@ -1,104 +0,0 @@ -set(CMAKE_CXX_COMPILER "/usr/bin/c++") -set(CMAKE_CXX_COMPILER_ARG1 "") -set(CMAKE_CXX_COMPILER_ID "AppleClang") -set(CMAKE_CXX_COMPILER_VERSION "17.0.0.17000013") -set(CMAKE_CXX_COMPILER_VERSION_INTERNAL "") -set(CMAKE_CXX_COMPILER_WRAPPER "") -set(CMAKE_CXX_STANDARD_COMPUTED_DEFAULT "14") -set(CMAKE_CXX_EXTENSIONS_COMPUTED_DEFAULT "ON") -set(CMAKE_CXX_STANDARD_LATEST "23") -set(CMAKE_CXX_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters;cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates;cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates;cxx_std_17;cxx_std_20;cxx_std_23") -set(CMAKE_CXX98_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters") -set(CMAKE_CXX11_COMPILE_FEATURES "cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates") -set(CMAKE_CXX14_COMPILE_FEATURES "cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates") -set(CMAKE_CXX17_COMPILE_FEATURES "cxx_std_17") -set(CMAKE_CXX20_COMPILE_FEATURES "cxx_std_20") -set(CMAKE_CXX23_COMPILE_FEATURES "cxx_std_23") -set(CMAKE_CXX26_COMPILE_FEATURES "") - -set(CMAKE_CXX_PLATFORM_ID "Darwin") -set(CMAKE_CXX_SIMULATE_ID "") -set(CMAKE_CXX_COMPILER_FRONTEND_VARIANT "GNU") -set(CMAKE_CXX_COMPILER_APPLE_SYSROOT "/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk") -set(CMAKE_CXX_SIMULATE_VERSION "") - - - - -set(CMAKE_AR "/usr/bin/ar") -set(CMAKE_CXX_COMPILER_AR "") -set(CMAKE_RANLIB "/usr/bin/ranlib") -set(CMAKE_CXX_COMPILER_RANLIB "") -set(CMAKE_LINKER "/usr/bin/ld") -set(CMAKE_LINKER_LINK "") -set(CMAKE_LINKER_LLD "") -set(CMAKE_CXX_COMPILER_LINKER "/Library/Developer/CommandLineTools/usr/bin/ld") -set(CMAKE_CXX_COMPILER_LINKER_ID "AppleClang") -set(CMAKE_CXX_COMPILER_LINKER_VERSION 1167.5) -set(CMAKE_CXX_COMPILER_LINKER_FRONTEND_VARIANT GNU) -set(CMAKE_MT "") -set(CMAKE_TAPI "/Library/Developer/CommandLineTools/usr/bin/tapi") -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_CXX_COMPILER_ENV_VAR "CXX") - -set(CMAKE_CXX_COMPILER_ID_RUN 1) -set(CMAKE_CXX_SOURCE_FILE_EXTENSIONS C;M;c++;cc;cpp;cxx;m;mm;mpp;CPP;ixx;cppm;ccm;cxxm;c++m) -set(CMAKE_CXX_IGNORE_EXTENSIONS inl;h;hpp;HPP;H;o;O;obj;OBJ;def;DEF;rc;RC) - -foreach (lang IN ITEMS C OBJC OBJCXX) - if (CMAKE_${lang}_COMPILER_ID_RUN) - foreach(extension IN LISTS CMAKE_${lang}_SOURCE_FILE_EXTENSIONS) - list(REMOVE_ITEM CMAKE_CXX_SOURCE_FILE_EXTENSIONS ${extension}) - endforeach() - endif() -endforeach() - -set(CMAKE_CXX_LINKER_PREFERENCE 30) -set(CMAKE_CXX_LINKER_PREFERENCE_PROPAGATES 1) -set(CMAKE_CXX_LINKER_DEPFILE_SUPPORTED ) -set(CMAKE_LINKER_PUSHPOP_STATE_SUPPORTED ) -set(CMAKE_CXX_LINKER_PUSHPOP_STATE_SUPPORTED ) - -# Save compiler ABI information. -set(CMAKE_CXX_SIZEOF_DATA_PTR "8") -set(CMAKE_CXX_COMPILER_ABI "") -set(CMAKE_CXX_BYTE_ORDER "LITTLE_ENDIAN") -set(CMAKE_CXX_LIBRARY_ARCHITECTURE "") - -if(CMAKE_CXX_SIZEOF_DATA_PTR) - set(CMAKE_SIZEOF_VOID_P "${CMAKE_CXX_SIZEOF_DATA_PTR}") -endif() - -if(CMAKE_CXX_COMPILER_ABI) - set(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_CXX_COMPILER_ABI}") -endif() - -if(CMAKE_CXX_LIBRARY_ARCHITECTURE) - set(CMAKE_LIBRARY_ARCHITECTURE "") -endif() - -set(CMAKE_CXX_CL_SHOWINCLUDES_PREFIX "") -if(CMAKE_CXX_CL_SHOWINCLUDES_PREFIX) - set(CMAKE_CL_SHOWINCLUDES_PREFIX "${CMAKE_CXX_CL_SHOWINCLUDES_PREFIX}") -endif() - - - - - -set(CMAKE_CXX_IMPLICIT_INCLUDE_DIRECTORIES "/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1;/Library/Developer/CommandLineTools/usr/lib/clang/17/include;/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include;/Library/Developer/CommandLineTools/usr/include") -set(CMAKE_CXX_IMPLICIT_LINK_LIBRARIES "c++") -set(CMAKE_CXX_IMPLICIT_LINK_DIRECTORIES "/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/lib;/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/lib/swift") -set(CMAKE_CXX_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/System/Library/Frameworks") -set(CMAKE_CXX_COMPILER_CLANG_RESOURCE_DIR "") - -set(CMAKE_CXX_COMPILER_IMPORT_STD "") -### Imported target for C++23 standard library -set(CMAKE_CXX23_COMPILER_IMPORT_STD_NOT_FOUND_MESSAGE "Unsupported generator: Unix Makefiles") - - - diff --git a/build/CMakeFiles/4.0.3/CMakeDetermineCompilerABI_CXX.bin b/build/CMakeFiles/4.0.3/CMakeDetermineCompilerABI_CXX.bin deleted file mode 100755 index 5b768b2..0000000 Binary files a/build/CMakeFiles/4.0.3/CMakeDetermineCompilerABI_CXX.bin and /dev/null differ diff --git a/build/CMakeFiles/CMakeConfigureLog.yaml b/build/CMakeFiles/CMakeConfigureLog.yaml deleted file mode 100644 index 3236768..0000000 --- a/build/CMakeFiles/CMakeConfigureLog.yaml +++ /dev/null @@ -1,315 +0,0 @@ - ---- -events: - - - kind: "message-v1" - backtrace: - - "/opt/homebrew/share/cmake/Modules/CMakeDetermineSystem.cmake:205 (message)" - - "CMakeLists.txt:9 (project)" - message: | - The system is: Darwin - 24.5.0 - arm64 - - - kind: "message-v1" - backtrace: - - "/opt/homebrew/share/cmake/Modules/CMakeDetermineCompilerId.cmake:17 (message)" - - "/opt/homebrew/share/cmake/Modules/CMakeDetermineCompilerId.cmake:64 (__determine_compiler_id_test)" - - "/opt/homebrew/share/cmake/Modules/CMakeDetermineCXXCompiler.cmake:126 (CMAKE_DETERMINE_COMPILER_ID)" - - "CMakeLists.txt:9 (project)" - message: | - 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 AppleClang, found in: - /Users/rhseung/Documents/GitHub/hinguri-pingpong/build/CMakeFiles/4.0.3/CompilerIdCXX/a.out - - - - kind: "message-v1" - backtrace: - - "/opt/homebrew/share/cmake/Modules/CMakeDetermineCompilerId.cmake:290 (message)" - - "/opt/homebrew/share/cmake/Modules/CMakeDetermineCXXCompiler.cmake:126 (CMAKE_DETERMINE_COMPILER_ID)" - - "CMakeLists.txt:9 (project)" - message: | - Detecting CXX compiler apple sysroot: "/usr/bin/c++" "-E" "apple-sdk.cpp" - # 1 "apple-sdk.cpp" - # 1 "" 1 - # 1 "" 3 - # 513 "" 3 - # 1 "" 1 - # 1 "" 2 - # 1 "apple-sdk.cpp" 2 - # 1 "/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/AvailabilityMacros.h" 1 3 4 - # 89 "/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/AvailabilityMacros.h" 3 4 - # 1 "/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/AvailabilityVersions.h" 1 3 4 - # 90 "/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/AvailabilityMacros.h" 2 3 4 - # 1 "/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/TargetConditionals.h" 1 3 4 - # 91 "/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/AvailabilityMacros.h" 2 3 4 - # 207 "/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/AvailabilityMacros.h" 3 4 - # 1 "/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/Availability.h" 1 3 4 - # 196 "/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/Availability.h" 3 4 - # 1 "/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/AvailabilityVersions.h" 1 3 4 - # 197 "/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/Availability.h" 2 3 4 - # 1 "/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/AvailabilityInternal.h" 1 3 4 - # 33 "/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/AvailabilityInternal.h" 3 4 - # 1 "/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/AvailabilityVersions.h" 1 3 4 - # 34 "/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/AvailabilityInternal.h" 2 3 4 - # 198 "/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/Availability.h" 2 3 4 - # 1 "/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/AvailabilityInternalLegacy.h" 1 3 4 - # 34 "/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/AvailabilityInternalLegacy.h" 3 4 - # 1 "/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/AvailabilityInternal.h" 1 3 4 - # 35 "/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/AvailabilityInternalLegacy.h" 2 3 4 - # 199 "/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/Availability.h" 2 3 4 - # 208 "/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/AvailabilityMacros.h" 2 3 4 - # 2 "apple-sdk.cpp" 2 - - - Found apple sysroot: /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk - - - kind: "try_compile-v1" - backtrace: - - "/opt/homebrew/share/cmake/Modules/CMakeDetermineCompilerABI.cmake:83 (try_compile)" - - "/opt/homebrew/share/cmake/Modules/CMakeTestCXXCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" - - "CMakeLists.txt:9 (project)" - checks: - - "Detecting CXX compiler ABI info" - directories: - source: "/Users/rhseung/Documents/GitHub/hinguri-pingpong/build/CMakeFiles/CMakeScratch/TryCompile-rz62V2" - binary: "/Users/rhseung/Documents/GitHub/hinguri-pingpong/build/CMakeFiles/CMakeScratch/TryCompile-rz62V2" - cmakeVariables: - CMAKE_CXX_FLAGS: "" - CMAKE_CXX_FLAGS_DEBUG: "-g" - CMAKE_CXX_SCAN_FOR_MODULES: "OFF" - CMAKE_EXE_LINKER_FLAGS: "" - CMAKE_MODULE_PATH: "/Users/rhseung/Documents/GitHub/hinguri-pingpong/NumCpp/cmake" - CMAKE_OSX_ARCHITECTURES: "" - CMAKE_OSX_DEPLOYMENT_TARGET: "" - CMAKE_OSX_SYSROOT: "" - buildResult: - variable: "CMAKE_CXX_ABI_COMPILED" - cached: true - stdout: | - Change Dir: '/Users/rhseung/Documents/GitHub/hinguri-pingpong/build/CMakeFiles/CMakeScratch/TryCompile-rz62V2' - - Run Build Command(s): /opt/homebrew/bin/cmake -E env VERBOSE=1 /usr/bin/make -f Makefile cmTC_ea974/fast - /Library/Developer/CommandLineTools/usr/bin/make -f CMakeFiles/cmTC_ea974.dir/build.make CMakeFiles/cmTC_ea974.dir/build - Building CXX object CMakeFiles/cmTC_ea974.dir/CMakeCXXCompilerABI.cpp.o - /usr/bin/c++ -arch arm64 -v -Wl,-v -MD -MT CMakeFiles/cmTC_ea974.dir/CMakeCXXCompilerABI.cpp.o -MF CMakeFiles/cmTC_ea974.dir/CMakeCXXCompilerABI.cpp.o.d -o CMakeFiles/cmTC_ea974.dir/CMakeCXXCompilerABI.cpp.o -c /opt/homebrew/share/cmake/Modules/CMakeCXXCompilerABI.cpp - Apple clang version 17.0.0 (clang-1700.0.13.5) - Target: arm64-apple-darwin24.5.0 - Thread model: posix - InstalledDir: /Library/Developer/CommandLineTools/usr/bin - clang++: warning: -Wl,-v: 'linker' input unused [-Wunused-command-line-argument] - ignoring nonexistent directory "/Library/Developer/CommandLineTools/usr/bin/../include/c++/v1" - "/Library/Developer/CommandLineTools/usr/bin/clang" -cc1 -triple arm64-apple-macosx15.0.0 -Wundef-prefix=TARGET_OS_ -Wdeprecated-objc-isa-usage -Werror=deprecated-objc-isa-usage -Werror=implicit-function-declaration -emit-obj -disable-free -clear-ast-before-backend -disable-llvm-verifier -discard-value-names -main-file-name CMakeCXXCompilerABI.cpp -mrelocation-model pic -pic-level 2 -mframe-pointer=non-leaf -fno-strict-return -ffp-contract=on -fno-rounding-math -funwind-tables=1 -fobjc-msgsend-selector-stubs -target-sdk-version=15.5 -fvisibility-inlines-hidden-static-local-var -fdefine-target-os-macros -fno-assume-unique-vtables -fno-modulemap-allow-subdirectory-search -target-cpu apple-m1 -target-feature +zcm -target-feature +zcz -target-feature +v8.5a -target-feature +aes -target-feature +altnzcv -target-feature +ccdp -target-feature +complxnum -target-feature +crc -target-feature +dotprod -target-feature +fp-armv8 -target-feature +fp16fml -target-feature +fptoint -target-feature +fullfp16 -target-feature +jsconv -target-feature +lse -target-feature +neon -target-feature +pauth -target-feature +perfmon -target-feature +predres -target-feature +ras -target-feature +rcpc -target-feature +rdm -target-feature +sb -target-feature +sha2 -target-feature +sha3 -target-feature +specrestrict -target-feature +ssbs -target-abi darwinpcs -debugger-tuning=lldb -fdebug-compilation-dir=/Users/rhseung/Documents/GitHub/hinguri-pingpong/build/CMakeFiles/CMakeScratch/TryCompile-rz62V2 -target-linker-version 1167.5 -v -fcoverage-compilation-dir=/Users/rhseung/Documents/GitHub/hinguri-pingpong/build/CMakeFiles/CMakeScratch/TryCompile-rz62V2 -resource-dir /Library/Developer/CommandLineTools/usr/lib/clang/17 -dependency-file CMakeFiles/cmTC_ea974.dir/CMakeCXXCompilerABI.cpp.o.d -skip-unused-modulemap-deps -MT CMakeFiles/cmTC_ea974.dir/CMakeCXXCompilerABI.cpp.o -sys-header-deps -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -I/usr/local/include -internal-isystem /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1 -internal-isystem /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/local/include -internal-isystem /Library/Developer/CommandLineTools/usr/lib/clang/17/include -internal-externc-isystem /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include -internal-externc-isystem /Library/Developer/CommandLineTools/usr/include -Wno-reorder-init-list -Wno-implicit-int-float-conversion -Wno-c99-designator -Wno-final-dtor-non-final-class -Wno-extra-semi-stmt -Wno-misleading-indentation -Wno-quoted-include-in-framework-header -Wno-implicit-fallthrough -Wno-enum-enum-conversion -Wno-enum-float-conversion -Wno-elaborated-enum-base -Wno-reserved-identifier -Wno-gnu-folding-constant -fdeprecated-macro -ferror-limit 19 -stack-protector 1 -fstack-check -mdarwin-stkchk-strong-link -fblocks -fencode-extended-block-signature -fregister-global-dtors-with-atexit -fgnuc-version=4.2.1 -fno-cxx-modules -fskip-odr-check-in-gmf -fcxx-exceptions -fexceptions -fmax-type-align=16 -fcommon -clang-vendor-feature=+disableNonDependentMemberExprInCurrentInstantiation -fno-odr-hash-protocols -clang-vendor-feature=+enableAggressiveVLAFolding -clang-vendor-feature=+revert09abecef7bbf -clang-vendor-feature=+thisNoAlignAttr -clang-vendor-feature=+thisNoNullAttr -clang-vendor-feature=+disableAtImportPrivateFrameworkInImplementationError -D__GCC_HAVE_DWARF2_CFI_ASM=1 -o CMakeFiles/cmTC_ea974.dir/CMakeCXXCompilerABI.cpp.o -x c++ /opt/homebrew/share/cmake/Modules/CMakeCXXCompilerABI.cpp - clang -cc1 version 17.0.0 (clang-1700.0.13.5) default target arm64-apple-darwin24.5.0 - ignoring nonexistent directory "/usr/local/include" - ignoring nonexistent directory "/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/local/include" - ignoring nonexistent directory "/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/System/Library/SubFrameworks" - ignoring nonexistent directory "/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/Library/Frameworks" - #include "..." search starts here: - #include <...> search starts here: - /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1 - /Library/Developer/CommandLineTools/usr/lib/clang/17/include - /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include - /Library/Developer/CommandLineTools/usr/include - /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/System/Library/Frameworks (framework directory) - End of search list. - Linking CXX executable cmTC_ea974 - /opt/homebrew/bin/cmake -E cmake_link_script CMakeFiles/cmTC_ea974.dir/link.txt --verbose=1 - Apple clang version 17.0.0 (clang-1700.0.13.5) - Target: arm64-apple-darwin24.5.0 - Thread model: posix - InstalledDir: /Library/Developer/CommandLineTools/usr/bin - "/Library/Developer/CommandLineTools/usr/bin/ld" -demangle -lto_library /Library/Developer/CommandLineTools/usr/lib/libLTO.dylib -dynamic -arch arm64 -platform_version macos 15.0.0 15.5 -syslibroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -mllvm -enable-linkonceodr-outlining -o cmTC_ea974 -L/usr/local/lib -search_paths_first -headerpad_max_install_names -v CMakeFiles/cmTC_ea974.dir/CMakeCXXCompilerABI.cpp.o -lc++ -lSystem /Library/Developer/CommandLineTools/usr/lib/clang/17/lib/darwin/libclang_rt.osx.a - @(#)PROGRAM:ld PROJECT:ld-1167.5 - BUILD 01:45:05 Apr 30 2025 - configured to support archs: armv6 armv7 armv7s arm64 arm64e arm64_32 i386 x86_64 x86_64h armv6m armv7k armv7m armv7em - will use ld-classic for: armv6 armv7 armv7s i386 armv6m armv7k armv7m armv7em - LTO support using: LLVM version 17.0.0 (static support for 29, runtime is 29) - TAPI support using: Apple TAPI version 17.0.0 (tapi-1700.0.3.5) - Library search paths: - /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/lib - /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/lib/swift - Framework search paths: - /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/System/Library/Frameworks - /usr/bin/c++ -arch arm64 -Wl,-search_paths_first -Wl,-headerpad_max_install_names -v -Wl,-v CMakeFiles/cmTC_ea974.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_ea974 - - exitCode: 0 - - - kind: "message-v1" - backtrace: - - "/opt/homebrew/share/cmake/Modules/CMakeDetermineCompilerABI.cmake:122 (message)" - - "/opt/homebrew/share/cmake/Modules/CMakeTestCXXCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" - - "CMakeLists.txt:9 (project)" - message: | - Effective list of requested architectures (possibly empty) : "" - Effective list of architectures found in the ABI info binary: "arm64" - - - kind: "message-v1" - backtrace: - - "/opt/homebrew/share/cmake/Modules/CMakeDetermineCompilerABI.cmake:191 (message)" - - "/opt/homebrew/share/cmake/Modules/CMakeTestCXXCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" - - "CMakeLists.txt:9 (project)" - message: | - Parsed CXX implicit include dir info: rv=done - found start of include info - found start of implicit include info - add: [/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1] - add: [/Library/Developer/CommandLineTools/usr/lib/clang/17/include] - add: [/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include] - add: [/Library/Developer/CommandLineTools/usr/include] - end of search list found - collapse include dir [/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1] ==> [/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1] - collapse include dir [/Library/Developer/CommandLineTools/usr/lib/clang/17/include] ==> [/Library/Developer/CommandLineTools/usr/lib/clang/17/include] - collapse include dir [/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include] ==> [/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include] - collapse include dir [/Library/Developer/CommandLineTools/usr/include] ==> [/Library/Developer/CommandLineTools/usr/include] - implicit include dirs: [/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1;/Library/Developer/CommandLineTools/usr/lib/clang/17/include;/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include;/Library/Developer/CommandLineTools/usr/include] - - - - - kind: "message-v1" - backtrace: - - "/opt/homebrew/share/cmake/Modules/CMakeDetermineCompilerABI.cmake:227 (message)" - - "/opt/homebrew/share/cmake/Modules/CMakeTestCXXCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" - - "CMakeLists.txt:9 (project)" - message: | - Parsed CXX implicit link information: - link line regex: [^( *|.*[/\\])(ld[0-9]*(|\\.[a-rt-z][a-z]*|\\.s[a-np-z][a-z]*|\\.so[a-z]+)|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\\]+-)?ld|collect2)[^/\\]*( |$)] - linker tool regex: [^[ ]*(->|")?[ ]*(([^"]*[/\\])?(ld[0-9]*(|\\.[a-rt-z][a-z]*|\\.s[a-np-z][a-z]*|\\.so[a-z]+)))("|,| |$)] - ignore line: [Change Dir: '/Users/rhseung/Documents/GitHub/hinguri-pingpong/build/CMakeFiles/CMakeScratch/TryCompile-rz62V2'] - ignore line: [] - ignore line: [Run Build Command(s): /opt/homebrew/bin/cmake -E env VERBOSE=1 /usr/bin/make -f Makefile cmTC_ea974/fast] - ignore line: [/Library/Developer/CommandLineTools/usr/bin/make -f CMakeFiles/cmTC_ea974.dir/build.make CMakeFiles/cmTC_ea974.dir/build] - ignore line: [Building CXX object CMakeFiles/cmTC_ea974.dir/CMakeCXXCompilerABI.cpp.o] - ignore line: [/usr/bin/c++ -arch arm64 -v -Wl -v -MD -MT CMakeFiles/cmTC_ea974.dir/CMakeCXXCompilerABI.cpp.o -MF CMakeFiles/cmTC_ea974.dir/CMakeCXXCompilerABI.cpp.o.d -o CMakeFiles/cmTC_ea974.dir/CMakeCXXCompilerABI.cpp.o -c /opt/homebrew/share/cmake/Modules/CMakeCXXCompilerABI.cpp] - ignore line: [Apple clang version 17.0.0 (clang-1700.0.13.5)] - ignore line: [Target: arm64-apple-darwin24.5.0] - ignore line: [Thread model: posix] - ignore line: [InstalledDir: /Library/Developer/CommandLineTools/usr/bin] - ignore line: [clang++: warning: -Wl -v: 'linker' input unused [-Wunused-command-line-argument]] - ignore line: [ignoring nonexistent directory "/Library/Developer/CommandLineTools/usr/bin/../include/c++/v1"] - ignore line: [ "/Library/Developer/CommandLineTools/usr/bin/clang" -cc1 -triple arm64-apple-macosx15.0.0 -Wundef-prefix=TARGET_OS_ -Wdeprecated-objc-isa-usage -Werror=deprecated-objc-isa-usage -Werror=implicit-function-declaration -emit-obj -disable-free -clear-ast-before-backend -disable-llvm-verifier -discard-value-names -main-file-name CMakeCXXCompilerABI.cpp -mrelocation-model pic -pic-level 2 -mframe-pointer=non-leaf -fno-strict-return -ffp-contract=on -fno-rounding-math -funwind-tables=1 -fobjc-msgsend-selector-stubs -target-sdk-version=15.5 -fvisibility-inlines-hidden-static-local-var -fdefine-target-os-macros -fno-assume-unique-vtables -fno-modulemap-allow-subdirectory-search -target-cpu apple-m1 -target-feature +zcm -target-feature +zcz -target-feature +v8.5a -target-feature +aes -target-feature +altnzcv -target-feature +ccdp -target-feature +complxnum -target-feature +crc -target-feature +dotprod -target-feature +fp-armv8 -target-feature +fp16fml -target-feature +fptoint -target-feature +fullfp16 -target-feature +jsconv -target-feature +lse -target-feature +neon -target-feature +pauth -target-feature +perfmon -target-feature +predres -target-feature +ras -target-feature +rcpc -target-feature +rdm -target-feature +sb -target-feature +sha2 -target-feature +sha3 -target-feature +specrestrict -target-feature +ssbs -target-abi darwinpcs -debugger-tuning=lldb -fdebug-compilation-dir=/Users/rhseung/Documents/GitHub/hinguri-pingpong/build/CMakeFiles/CMakeScratch/TryCompile-rz62V2 -target-linker-version 1167.5 -v -fcoverage-compilation-dir=/Users/rhseung/Documents/GitHub/hinguri-pingpong/build/CMakeFiles/CMakeScratch/TryCompile-rz62V2 -resource-dir /Library/Developer/CommandLineTools/usr/lib/clang/17 -dependency-file CMakeFiles/cmTC_ea974.dir/CMakeCXXCompilerABI.cpp.o.d -skip-unused-modulemap-deps -MT CMakeFiles/cmTC_ea974.dir/CMakeCXXCompilerABI.cpp.o -sys-header-deps -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -I/usr/local/include -internal-isystem /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1 -internal-isystem /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/local/include -internal-isystem /Library/Developer/CommandLineTools/usr/lib/clang/17/include -internal-externc-isystem /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include -internal-externc-isystem /Library/Developer/CommandLineTools/usr/include -Wno-reorder-init-list -Wno-implicit-int-float-conversion -Wno-c99-designator -Wno-final-dtor-non-final-class -Wno-extra-semi-stmt -Wno-misleading-indentation -Wno-quoted-include-in-framework-header -Wno-implicit-fallthrough -Wno-enum-enum-conversion -Wno-enum-float-conversion -Wno-elaborated-enum-base -Wno-reserved-identifier -Wno-gnu-folding-constant -fdeprecated-macro -ferror-limit 19 -stack-protector 1 -fstack-check -mdarwin-stkchk-strong-link -fblocks -fencode-extended-block-signature -fregister-global-dtors-with-atexit -fgnuc-version=4.2.1 -fno-cxx-modules -fskip-odr-check-in-gmf -fcxx-exceptions -fexceptions -fmax-type-align=16 -fcommon -clang-vendor-feature=+disableNonDependentMemberExprInCurrentInstantiation -fno-odr-hash-protocols -clang-vendor-feature=+enableAggressiveVLAFolding -clang-vendor-feature=+revert09abecef7bbf -clang-vendor-feature=+thisNoAlignAttr -clang-vendor-feature=+thisNoNullAttr -clang-vendor-feature=+disableAtImportPrivateFrameworkInImplementationError -D__GCC_HAVE_DWARF2_CFI_ASM=1 -o CMakeFiles/cmTC_ea974.dir/CMakeCXXCompilerABI.cpp.o -x c++ /opt/homebrew/share/cmake/Modules/CMakeCXXCompilerABI.cpp] - ignore line: [clang -cc1 version 17.0.0 (clang-1700.0.13.5) default target arm64-apple-darwin24.5.0] - ignore line: [ignoring nonexistent directory "/usr/local/include"] - ignore line: [ignoring nonexistent directory "/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/local/include"] - ignore line: [ignoring nonexistent directory "/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/System/Library/SubFrameworks"] - ignore line: [ignoring nonexistent directory "/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/Library/Frameworks"] - ignore line: [#include "..." search starts here:] - ignore line: [#include <...> search starts here:] - ignore line: [ /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1] - ignore line: [ /Library/Developer/CommandLineTools/usr/lib/clang/17/include] - ignore line: [ /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include] - ignore line: [ /Library/Developer/CommandLineTools/usr/include] - ignore line: [ /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/System/Library/Frameworks (framework directory)] - ignore line: [End of search list.] - ignore line: [Linking CXX executable cmTC_ea974] - ignore line: [/opt/homebrew/bin/cmake -E cmake_link_script CMakeFiles/cmTC_ea974.dir/link.txt --verbose=1] - ignore line: [Apple clang version 17.0.0 (clang-1700.0.13.5)] - ignore line: [Target: arm64-apple-darwin24.5.0] - ignore line: [Thread model: posix] - ignore line: [InstalledDir: /Library/Developer/CommandLineTools/usr/bin] - link line: [ "/Library/Developer/CommandLineTools/usr/bin/ld" -demangle -lto_library /Library/Developer/CommandLineTools/usr/lib/libLTO.dylib -dynamic -arch arm64 -platform_version macos 15.0.0 15.5 -syslibroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -mllvm -enable-linkonceodr-outlining -o cmTC_ea974 -L/usr/local/lib -search_paths_first -headerpad_max_install_names -v CMakeFiles/cmTC_ea974.dir/CMakeCXXCompilerABI.cpp.o -lc++ -lSystem /Library/Developer/CommandLineTools/usr/lib/clang/17/lib/darwin/libclang_rt.osx.a] - arg [/Library/Developer/CommandLineTools/usr/bin/ld] ==> ignore - arg [-demangle] ==> ignore - arg [-lto_library] ==> ignore, skip following value - arg [/Library/Developer/CommandLineTools/usr/lib/libLTO.dylib] ==> skip value of -lto_library - arg [-dynamic] ==> ignore - arg [-arch] ==> ignore - arg [arm64] ==> ignore - arg [-platform_version] ==> ignore - arg [macos] ==> ignore - arg [15.0.0] ==> ignore - arg [15.5] ==> ignore - arg [-syslibroot] ==> ignore - arg [/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk] ==> ignore - arg [-mllvm] ==> ignore - arg [-enable-linkonceodr-outlining] ==> ignore - arg [-o] ==> ignore - arg [cmTC_ea974] ==> ignore - arg [-L/usr/local/lib] ==> dir [/usr/local/lib] - arg [-search_paths_first] ==> ignore - arg [-headerpad_max_install_names] ==> ignore - arg [-v] ==> ignore - arg [CMakeFiles/cmTC_ea974.dir/CMakeCXXCompilerABI.cpp.o] ==> ignore - arg [-lc++] ==> lib [c++] - arg [-lSystem] ==> lib [System] - arg [/Library/Developer/CommandLineTools/usr/lib/clang/17/lib/darwin/libclang_rt.osx.a] ==> lib [/Library/Developer/CommandLineTools/usr/lib/clang/17/lib/darwin/libclang_rt.osx.a] - linker tool for 'CXX': /Library/Developer/CommandLineTools/usr/bin/ld - Library search paths: [;/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/lib;/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/lib/swift] - Framework search paths: [;/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/System/Library/Frameworks] - remove lib [System] - remove lib [/Library/Developer/CommandLineTools/usr/lib/clang/17/lib/darwin/libclang_rt.osx.a] - collapse library dir [/usr/local/lib] ==> [/usr/local/lib] - collapse library dir [/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/lib] ==> [/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/lib] - collapse library dir [/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/lib/swift] ==> [/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/lib/swift] - collapse framework dir [/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/System/Library/Frameworks] ==> [/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/System/Library/Frameworks] - implicit libs: [c++] - implicit objs: [] - implicit dirs: [/usr/local/lib;/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/lib;/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/lib/swift] - implicit fwks: [/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/System/Library/Frameworks] - - - - - kind: "message-v1" - backtrace: - - "/opt/homebrew/share/cmake/Modules/Internal/CMakeDetermineLinkerId.cmake:36 (message)" - - "/opt/homebrew/share/cmake/Modules/CMakeDetermineCompilerABI.cmake:270 (cmake_determine_linker_id)" - - "/opt/homebrew/share/cmake/Modules/CMakeTestCXXCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" - - "CMakeLists.txt:9 (project)" - message: | - Running the CXX compiler's linker: "/Library/Developer/CommandLineTools/usr/bin/ld" "-v" - @(#)PROGRAM:ld PROJECT:ld-1167.5 - BUILD 01:45:05 Apr 30 2025 - configured to support archs: armv6 armv7 armv7s arm64 arm64e arm64_32 i386 x86_64 x86_64h armv6m armv7k armv7m armv7em - will use ld-classic for: armv6 armv7 armv7s i386 armv6m armv7k armv7m armv7em - LTO support using: LLVM version 17.0.0 (static support for 29, runtime is 29) - TAPI support using: Apple TAPI version 17.0.0 (tapi-1700.0.3.5) - - - kind: "try_compile-v1" - backtrace: - - "/opt/homebrew/share/cmake/Modules/Internal/CheckSourceCompiles.cmake:104 (try_compile)" - - "/opt/homebrew/share/cmake/Modules/CheckCXXSourceCompiles.cmake:58 (cmake_check_source_compiles)" - - "/opt/homebrew/share/cmake/Modules/FindThreads.cmake:99 (check_cxx_source_compiles)" - - "/opt/homebrew/share/cmake/Modules/FindThreads.cmake:163 (_threads_check_libc)" - - "/opt/homebrew/share/cmake/Modules/CMakeFindDependencyMacro.cmake:78 (find_package)" - - "/opt/homebrew/lib/cmake/boost_thread-1.88.0/boost_thread-config.cmake:118 (find_dependency)" - - "/opt/homebrew/lib/cmake/boost_log-1.88.0/boost_log-config.cmake:102 (find_package)" - - "/opt/homebrew/lib/cmake/Boost-1.88.0/BoostConfig.cmake:141 (find_package)" - - "/opt/homebrew/lib/cmake/Boost-1.88.0/BoostConfig.cmake:262 (boost_find_component)" - - "CMakeLists.txt:74 (find_package)" - checks: - - "Performing Test CMAKE_HAVE_LIBC_PTHREAD" - directories: - source: "/Users/rhseung/Documents/GitHub/hinguri-pingpong/build/CMakeFiles/CMakeScratch/TryCompile-c22l4c" - binary: "/Users/rhseung/Documents/GitHub/hinguri-pingpong/build/CMakeFiles/CMakeScratch/TryCompile-c22l4c" - cmakeVariables: - CMAKE_CXX_FLAGS: "" - CMAKE_CXX_FLAGS_DEBUG: "-g" - CMAKE_EXE_LINKER_FLAGS: "" - CMAKE_MODULE_PATH: "/Users/rhseung/Documents/GitHub/hinguri-pingpong/NumCpp/cmake" - CMAKE_OSX_ARCHITECTURES: "" - CMAKE_OSX_DEPLOYMENT_TARGET: "" - CMAKE_OSX_SYSROOT: "" - buildResult: - variable: "CMAKE_HAVE_LIBC_PTHREAD" - cached: true - stdout: | - Change Dir: '/Users/rhseung/Documents/GitHub/hinguri-pingpong/build/CMakeFiles/CMakeScratch/TryCompile-c22l4c' - - Run Build Command(s): /opt/homebrew/bin/cmake -E env VERBOSE=1 /usr/bin/make -f Makefile cmTC_5e765/fast - /Library/Developer/CommandLineTools/usr/bin/make -f CMakeFiles/cmTC_5e765.dir/build.make CMakeFiles/cmTC_5e765.dir/build - Building CXX object CMakeFiles/cmTC_5e765.dir/src.cxx.o - /usr/bin/c++ -DCMAKE_HAVE_LIBC_PTHREAD -std=gnu++17 -arch arm64 -MD -MT CMakeFiles/cmTC_5e765.dir/src.cxx.o -MF CMakeFiles/cmTC_5e765.dir/src.cxx.o.d -o CMakeFiles/cmTC_5e765.dir/src.cxx.o -c /Users/rhseung/Documents/GitHub/hinguri-pingpong/build/CMakeFiles/CMakeScratch/TryCompile-c22l4c/src.cxx - Linking CXX executable cmTC_5e765 - /opt/homebrew/bin/cmake -E cmake_link_script CMakeFiles/cmTC_5e765.dir/link.txt --verbose=1 - /usr/bin/c++ -arch arm64 -Wl,-search_paths_first -Wl,-headerpad_max_install_names CMakeFiles/cmTC_5e765.dir/src.cxx.o -o cmTC_5e765 - - exitCode: 0 -... diff --git a/build/CMakeFiles/CMakeDirectoryInformation.cmake b/build/CMakeFiles/CMakeDirectoryInformation.cmake deleted file mode 100644 index 1a704f5..0000000 --- a/build/CMakeFiles/CMakeDirectoryInformation.cmake +++ /dev/null @@ -1,16 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 4.0 - -# Relative path conversion top directories. -set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/Users/rhseung/Documents/GitHub/hinguri-pingpong/NumCpp") -set(CMAKE_RELATIVE_PATH_TOP_BINARY "/Users/rhseung/Documents/GitHub/hinguri-pingpong/build") - -# Force unix paths in dependencies. -set(CMAKE_FORCE_UNIX_PATHS 1) - - -# The C and CXX include file regular expressions for this directory. -set(CMAKE_C_INCLUDE_REGEX_SCAN "^.*$") -set(CMAKE_C_INCLUDE_REGEX_COMPLAIN "^$") -set(CMAKE_CXX_INCLUDE_REGEX_SCAN ${CMAKE_C_INCLUDE_REGEX_SCAN}) -set(CMAKE_CXX_INCLUDE_REGEX_COMPLAIN ${CMAKE_C_INCLUDE_REGEX_COMPLAIN}) diff --git a/build/CMakeFiles/CMakeRuleHashes.txt b/build/CMakeFiles/CMakeRuleHashes.txt deleted file mode 100644 index ec6f6ec..0000000 --- a/build/CMakeFiles/CMakeRuleHashes.txt +++ /dev/null @@ -1,3 +0,0 @@ -# Hashes of file build rules. -5cc81258f7382c5e80dc86dfda4cf8bd CMakeFiles/format -ffad71df7b425bc0e83793c9c984ca4a CMakeFiles/tidy diff --git a/build/CMakeFiles/InstallScripts.json b/build/CMakeFiles/InstallScripts.json deleted file mode 100644 index 9e90065..0000000 --- a/build/CMakeFiles/InstallScripts.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "InstallScripts" : - [ - "/Users/rhseung/Documents/GitHub/hinguri-pingpong/build/cmake_install.cmake", - "/Users/rhseung/Documents/GitHub/hinguri-pingpong/build/examples/cmake_install.cmake" - ], - "Parallel" : false -} diff --git a/build/CMakeFiles/Makefile.cmake b/build/CMakeFiles/Makefile.cmake deleted file mode 100644 index 39ee2e8..0000000 --- a/build/CMakeFiles/Makefile.cmake +++ /dev/null @@ -1,172 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 4.0 - -# 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" - "/Users/rhseung/Documents/GitHub/hinguri-pingpong/NumCpp/CMakeLists.txt" - "/Users/rhseung/Documents/GitHub/hinguri-pingpong/NumCpp/cmake/NumCppConfig.cmake.in" - "/Users/rhseung/Documents/GitHub/hinguri-pingpong/NumCpp/cmake/NumCppTools.cmake" - "/Users/rhseung/Documents/GitHub/hinguri-pingpong/NumCpp/examples/CMakeLists.txt" - "CMakeFiles/4.0.3/CMakeCXXCompiler.cmake" - "CMakeFiles/4.0.3/CMakeSystem.cmake" - "/opt/homebrew/lib/cmake/Boost-1.88.0/BoostConfig.cmake" - "/opt/homebrew/lib/cmake/Boost-1.88.0/BoostConfigVersion.cmake" - "/opt/homebrew/lib/cmake/BoostDetectToolset-1.88.0.cmake" - "/opt/homebrew/lib/cmake/boost_atomic-1.88.0/boost_atomic-config-version.cmake" - "/opt/homebrew/lib/cmake/boost_atomic-1.88.0/boost_atomic-config.cmake" - "/opt/homebrew/lib/cmake/boost_atomic-1.88.0/libboost_atomic-variant-shared.cmake" - "/opt/homebrew/lib/cmake/boost_atomic-1.88.0/libboost_atomic-variant-static.cmake" - "/opt/homebrew/lib/cmake/boost_chrono-1.88.0/boost_chrono-config-version.cmake" - "/opt/homebrew/lib/cmake/boost_chrono-1.88.0/boost_chrono-config.cmake" - "/opt/homebrew/lib/cmake/boost_chrono-1.88.0/libboost_chrono-variant-shared.cmake" - "/opt/homebrew/lib/cmake/boost_chrono-1.88.0/libboost_chrono-variant-static.cmake" - "/opt/homebrew/lib/cmake/boost_date_time-1.88.0/boost_date_time-config-version.cmake" - "/opt/homebrew/lib/cmake/boost_date_time-1.88.0/boost_date_time-config.cmake" - "/opt/homebrew/lib/cmake/boost_date_time-1.88.0/libboost_date_time-variant-shared.cmake" - "/opt/homebrew/lib/cmake/boost_date_time-1.88.0/libboost_date_time-variant-static.cmake" - "/opt/homebrew/lib/cmake/boost_filesystem-1.88.0/boost_filesystem-config-version.cmake" - "/opt/homebrew/lib/cmake/boost_filesystem-1.88.0/boost_filesystem-config.cmake" - "/opt/homebrew/lib/cmake/boost_filesystem-1.88.0/libboost_filesystem-variant-shared.cmake" - "/opt/homebrew/lib/cmake/boost_filesystem-1.88.0/libboost_filesystem-variant-static.cmake" - "/opt/homebrew/lib/cmake/boost_headers-1.88.0/boost_headers-config-version.cmake" - "/opt/homebrew/lib/cmake/boost_headers-1.88.0/boost_headers-config.cmake" - "/opt/homebrew/lib/cmake/boost_log-1.88.0/boost_log-config-version.cmake" - "/opt/homebrew/lib/cmake/boost_log-1.88.0/boost_log-config.cmake" - "/opt/homebrew/lib/cmake/boost_log-1.88.0/libboost_log-variant-shared.cmake" - "/opt/homebrew/lib/cmake/boost_log-1.88.0/libboost_log-variant-static.cmake" - "/opt/homebrew/lib/cmake/boost_log_setup-1.88.0/boost_log_setup-config-version.cmake" - "/opt/homebrew/lib/cmake/boost_log_setup-1.88.0/boost_log_setup-config.cmake" - "/opt/homebrew/lib/cmake/boost_log_setup-1.88.0/libboost_log_setup-variant-shared.cmake" - "/opt/homebrew/lib/cmake/boost_log_setup-1.88.0/libboost_log_setup-variant-static.cmake" - "/opt/homebrew/lib/cmake/boost_system-1.88.0/boost_system-config-version.cmake" - "/opt/homebrew/lib/cmake/boost_system-1.88.0/boost_system-config.cmake" - "/opt/homebrew/lib/cmake/boost_system-1.88.0/libboost_system-variant-shared.cmake" - "/opt/homebrew/lib/cmake/boost_system-1.88.0/libboost_system-variant-static.cmake" - "/opt/homebrew/lib/cmake/boost_thread-1.88.0/boost_thread-config-version.cmake" - "/opt/homebrew/lib/cmake/boost_thread-1.88.0/boost_thread-config.cmake" - "/opt/homebrew/lib/cmake/boost_thread-1.88.0/libboost_thread-variant-shared.cmake" - "/opt/homebrew/lib/cmake/boost_thread-1.88.0/libboost_thread-variant-static.cmake" - "/opt/homebrew/share/cmake/Modules/BasicConfigVersion-SameMajorVersion.cmake.in" - "/opt/homebrew/share/cmake/Modules/CMakeCXXCompiler.cmake.in" - "/opt/homebrew/share/cmake/Modules/CMakeCXXCompilerABI.cpp" - "/opt/homebrew/share/cmake/Modules/CMakeCXXInformation.cmake" - "/opt/homebrew/share/cmake/Modules/CMakeCommonLanguageInclude.cmake" - "/opt/homebrew/share/cmake/Modules/CMakeCompilerIdDetection.cmake" - "/opt/homebrew/share/cmake/Modules/CMakeDetermineCXXCompiler.cmake" - "/opt/homebrew/share/cmake/Modules/CMakeDetermineCompiler.cmake" - "/opt/homebrew/share/cmake/Modules/CMakeDetermineCompilerABI.cmake" - "/opt/homebrew/share/cmake/Modules/CMakeDetermineCompilerId.cmake" - "/opt/homebrew/share/cmake/Modules/CMakeDetermineCompilerSupport.cmake" - "/opt/homebrew/share/cmake/Modules/CMakeDetermineSystem.cmake" - "/opt/homebrew/share/cmake/Modules/CMakeFindBinUtils.cmake" - "/opt/homebrew/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - "/opt/homebrew/share/cmake/Modules/CMakeGenericSystem.cmake" - "/opt/homebrew/share/cmake/Modules/CMakeInitializeConfigs.cmake" - "/opt/homebrew/share/cmake/Modules/CMakeLanguageInformation.cmake" - "/opt/homebrew/share/cmake/Modules/CMakePackageConfigHelpers.cmake" - "/opt/homebrew/share/cmake/Modules/CMakeParseImplicitIncludeInfo.cmake" - "/opt/homebrew/share/cmake/Modules/CMakeParseImplicitLinkInfo.cmake" - "/opt/homebrew/share/cmake/Modules/CMakeParseLibraryArchitecture.cmake" - "/opt/homebrew/share/cmake/Modules/CMakeSystem.cmake.in" - "/opt/homebrew/share/cmake/Modules/CMakeSystemSpecificInformation.cmake" - "/opt/homebrew/share/cmake/Modules/CMakeSystemSpecificInitialize.cmake" - "/opt/homebrew/share/cmake/Modules/CMakeTestCXXCompiler.cmake" - "/opt/homebrew/share/cmake/Modules/CMakeTestCompilerCommon.cmake" - "/opt/homebrew/share/cmake/Modules/CMakeUnixFindMake.cmake" - "/opt/homebrew/share/cmake/Modules/CheckCXXSourceCompiles.cmake" - "/opt/homebrew/share/cmake/Modules/CheckIncludeFileCXX.cmake" - "/opt/homebrew/share/cmake/Modules/CheckLibraryExists.cmake" - "/opt/homebrew/share/cmake/Modules/Compiler/ADSP-DetermineCompiler.cmake" - "/opt/homebrew/share/cmake/Modules/Compiler/ARMCC-DetermineCompiler.cmake" - "/opt/homebrew/share/cmake/Modules/Compiler/ARMClang-DetermineCompiler.cmake" - "/opt/homebrew/share/cmake/Modules/Compiler/AppleClang-CXX.cmake" - "/opt/homebrew/share/cmake/Modules/Compiler/AppleClang-DetermineCompiler.cmake" - "/opt/homebrew/share/cmake/Modules/Compiler/Borland-DetermineCompiler.cmake" - "/opt/homebrew/share/cmake/Modules/Compiler/CMakeCommonCompilerMacros.cmake" - "/opt/homebrew/share/cmake/Modules/Compiler/Clang-DetermineCompiler.cmake" - "/opt/homebrew/share/cmake/Modules/Compiler/Clang-DetermineCompilerInternal.cmake" - "/opt/homebrew/share/cmake/Modules/Compiler/Clang.cmake" - "/opt/homebrew/share/cmake/Modules/Compiler/Compaq-CXX-DetermineCompiler.cmake" - "/opt/homebrew/share/cmake/Modules/Compiler/Cray-DetermineCompiler.cmake" - "/opt/homebrew/share/cmake/Modules/Compiler/CrayClang-DetermineCompiler.cmake" - "/opt/homebrew/share/cmake/Modules/Compiler/Embarcadero-DetermineCompiler.cmake" - "/opt/homebrew/share/cmake/Modules/Compiler/Fujitsu-DetermineCompiler.cmake" - "/opt/homebrew/share/cmake/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake" - "/opt/homebrew/share/cmake/Modules/Compiler/GHS-DetermineCompiler.cmake" - "/opt/homebrew/share/cmake/Modules/Compiler/GNU-CXX-DetermineCompiler.cmake" - "/opt/homebrew/share/cmake/Modules/Compiler/GNU.cmake" - "/opt/homebrew/share/cmake/Modules/Compiler/HP-CXX-DetermineCompiler.cmake" - "/opt/homebrew/share/cmake/Modules/Compiler/IAR-DetermineCompiler.cmake" - "/opt/homebrew/share/cmake/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake" - "/opt/homebrew/share/cmake/Modules/Compiler/IBMClang-CXX-DetermineCompiler.cmake" - "/opt/homebrew/share/cmake/Modules/Compiler/Intel-DetermineCompiler.cmake" - "/opt/homebrew/share/cmake/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake" - "/opt/homebrew/share/cmake/Modules/Compiler/LCC-CXX-DetermineCompiler.cmake" - "/opt/homebrew/share/cmake/Modules/Compiler/MSVC-DetermineCompiler.cmake" - "/opt/homebrew/share/cmake/Modules/Compiler/NVHPC-DetermineCompiler.cmake" - "/opt/homebrew/share/cmake/Modules/Compiler/NVIDIA-DetermineCompiler.cmake" - "/opt/homebrew/share/cmake/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake" - "/opt/homebrew/share/cmake/Modules/Compiler/OrangeC-DetermineCompiler.cmake" - "/opt/homebrew/share/cmake/Modules/Compiler/PGI-DetermineCompiler.cmake" - "/opt/homebrew/share/cmake/Modules/Compiler/PathScale-DetermineCompiler.cmake" - "/opt/homebrew/share/cmake/Modules/Compiler/SCO-DetermineCompiler.cmake" - "/opt/homebrew/share/cmake/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake" - "/opt/homebrew/share/cmake/Modules/Compiler/TI-DetermineCompiler.cmake" - "/opt/homebrew/share/cmake/Modules/Compiler/TIClang-DetermineCompiler.cmake" - "/opt/homebrew/share/cmake/Modules/Compiler/Tasking-DetermineCompiler.cmake" - "/opt/homebrew/share/cmake/Modules/Compiler/VisualAge-CXX-DetermineCompiler.cmake" - "/opt/homebrew/share/cmake/Modules/Compiler/Watcom-DetermineCompiler.cmake" - "/opt/homebrew/share/cmake/Modules/Compiler/XL-CXX-DetermineCompiler.cmake" - "/opt/homebrew/share/cmake/Modules/Compiler/XLClang-CXX-DetermineCompiler.cmake" - "/opt/homebrew/share/cmake/Modules/Compiler/zOS-CXX-DetermineCompiler.cmake" - "/opt/homebrew/share/cmake/Modules/FindPackageHandleStandardArgs.cmake" - "/opt/homebrew/share/cmake/Modules/FindPackageMessage.cmake" - "/opt/homebrew/share/cmake/Modules/FindThreads.cmake" - "/opt/homebrew/share/cmake/Modules/GNUInstallDirs.cmake" - "/opt/homebrew/share/cmake/Modules/Internal/CMakeCXXLinkerInformation.cmake" - "/opt/homebrew/share/cmake/Modules/Internal/CMakeCommonLinkerInformation.cmake" - "/opt/homebrew/share/cmake/Modules/Internal/CMakeDetermineLinkerId.cmake" - "/opt/homebrew/share/cmake/Modules/Internal/CMakeInspectCXXLinker.cmake" - "/opt/homebrew/share/cmake/Modules/Internal/CheckSourceCompiles.cmake" - "/opt/homebrew/share/cmake/Modules/Internal/FeatureTesting.cmake" - "/opt/homebrew/share/cmake/Modules/Linker/AppleClang-CXX.cmake" - "/opt/homebrew/share/cmake/Modules/Linker/AppleClang.cmake" - "/opt/homebrew/share/cmake/Modules/Platform/Apple-AppleClang-CXX.cmake" - "/opt/homebrew/share/cmake/Modules/Platform/Apple-Clang-CXX.cmake" - "/opt/homebrew/share/cmake/Modules/Platform/Apple-Clang.cmake" - "/opt/homebrew/share/cmake/Modules/Platform/Darwin-Determine-CXX.cmake" - "/opt/homebrew/share/cmake/Modules/Platform/Darwin-Initialize.cmake" - "/opt/homebrew/share/cmake/Modules/Platform/Darwin.cmake" - "/opt/homebrew/share/cmake/Modules/Platform/Linker/Apple-AppleClang-CXX.cmake" - "/opt/homebrew/share/cmake/Modules/Platform/Linker/Apple-AppleClang.cmake" - "/opt/homebrew/share/cmake/Modules/Platform/UnixPaths.cmake" - "/opt/homebrew/share/cmake/Modules/WriteBasicConfigVersionFile.cmake" - ) - -# The corresponding makefile is: -set(CMAKE_MAKEFILE_OUTPUTS - "Makefile" - "CMakeFiles/cmake.check_cache" - ) - -# Byproducts of CMake generate step: -set(CMAKE_MAKEFILE_PRODUCTS - "CMakeFiles/4.0.3/CMakeSystem.cmake" - "CMakeFiles/4.0.3/CMakeCXXCompiler.cmake" - "CMakeFiles/4.0.3/CMakeCXXCompiler.cmake" - "CMakeFiles/4.0.3/CMakeCXXCompiler.cmake" - "NumCppConfigVersion.cmake" - "NumCppConfig.cmake" - "CMakeFiles/CMakeDirectoryInformation.cmake" - "examples/CMakeFiles/CMakeDirectoryInformation.cmake" - ) - -# Dependency information for all targets: -set(CMAKE_DEPEND_INFO_FILES - "CMakeFiles/format.dir/DependInfo.cmake" - "CMakeFiles/tidy.dir/DependInfo.cmake" - ) diff --git a/build/CMakeFiles/Makefile2 b/build/CMakeFiles/Makefile2 deleted file mode 100644 index 6a90d4f..0000000 --- a/build/CMakeFiles/Makefile2 +++ /dev/null @@ -1,175 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 4.0 - -# Default target executed when no arguments are given to make. -default_target: all -.PHONY : default_target - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/rhseung/Documents/GitHub/hinguri-pingpong/NumCpp - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/rhseung/Documents/GitHub/hinguri-pingpong/build - -#============================================================================= -# Directory level rules for the build root directory - -# The main recursive "all" target. -all: examples/all -.PHONY : all - -# The main recursive "codegen" target. -codegen: examples/codegen -.PHONY : codegen - -# The main recursive "preinstall" target. -preinstall: examples/preinstall -.PHONY : preinstall - -# The main recursive "clean" target. -clean: CMakeFiles/format.dir/clean -clean: CMakeFiles/tidy.dir/clean -clean: examples/clean -.PHONY : clean - -#============================================================================= -# Directory level rules for directory examples - -# Recursive "all" directory target. -examples/all: -.PHONY : examples/all - -# Recursive "codegen" directory target. -examples/codegen: -.PHONY : examples/codegen - -# Recursive "preinstall" directory target. -examples/preinstall: -.PHONY : examples/preinstall - -# Recursive "clean" directory target. -examples/clean: -.PHONY : examples/clean - -#============================================================================= -# Target rules for target CMakeFiles/format.dir - -# All Build rule for target. -CMakeFiles/format.dir/all: - $(MAKE) $(MAKESILENT) -f CMakeFiles/format.dir/build.make CMakeFiles/format.dir/depend - $(MAKE) $(MAKESILENT) -f CMakeFiles/format.dir/build.make CMakeFiles/format.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/rhseung/Documents/GitHub/hinguri-pingpong/build/CMakeFiles --progress-num= "Built target format" -.PHONY : CMakeFiles/format.dir/all - -# Build rule for subdir invocation for target. -CMakeFiles/format.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/rhseung/Documents/GitHub/hinguri-pingpong/build/CMakeFiles 0 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 CMakeFiles/format.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/rhseung/Documents/GitHub/hinguri-pingpong/build/CMakeFiles 0 -.PHONY : CMakeFiles/format.dir/rule - -# Convenience name for target. -format: CMakeFiles/format.dir/rule -.PHONY : format - -# codegen rule for target. -CMakeFiles/format.dir/codegen: - $(MAKE) $(MAKESILENT) -f CMakeFiles/format.dir/build.make CMakeFiles/format.dir/codegen - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/rhseung/Documents/GitHub/hinguri-pingpong/build/CMakeFiles --progress-num= "Finished codegen for target format" -.PHONY : CMakeFiles/format.dir/codegen - -# clean rule for target. -CMakeFiles/format.dir/clean: - $(MAKE) $(MAKESILENT) -f CMakeFiles/format.dir/build.make CMakeFiles/format.dir/clean -.PHONY : CMakeFiles/format.dir/clean - -#============================================================================= -# Target rules for target CMakeFiles/tidy.dir - -# All Build rule for target. -CMakeFiles/tidy.dir/all: - $(MAKE) $(MAKESILENT) -f CMakeFiles/tidy.dir/build.make CMakeFiles/tidy.dir/depend - $(MAKE) $(MAKESILENT) -f CMakeFiles/tidy.dir/build.make CMakeFiles/tidy.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/rhseung/Documents/GitHub/hinguri-pingpong/build/CMakeFiles --progress-num= "Built target tidy" -.PHONY : CMakeFiles/tidy.dir/all - -# Build rule for subdir invocation for target. -CMakeFiles/tidy.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/rhseung/Documents/GitHub/hinguri-pingpong/build/CMakeFiles 0 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 CMakeFiles/tidy.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/rhseung/Documents/GitHub/hinguri-pingpong/build/CMakeFiles 0 -.PHONY : CMakeFiles/tidy.dir/rule - -# Convenience name for target. -tidy: CMakeFiles/tidy.dir/rule -.PHONY : tidy - -# codegen rule for target. -CMakeFiles/tidy.dir/codegen: - $(MAKE) $(MAKESILENT) -f CMakeFiles/tidy.dir/build.make CMakeFiles/tidy.dir/codegen - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Users/rhseung/Documents/GitHub/hinguri-pingpong/build/CMakeFiles --progress-num= "Finished codegen for target tidy" -.PHONY : CMakeFiles/tidy.dir/codegen - -# clean rule for target. -CMakeFiles/tidy.dir/clean: - $(MAKE) $(MAKESILENT) -f CMakeFiles/tidy.dir/build.make CMakeFiles/tidy.dir/clean -.PHONY : CMakeFiles/tidy.dir/clean - -#============================================================================= -# Special targets to cleanup operation of make. - -# Special rule to run CMake to check the build system integrity. -# No rule that depends on this can have commands that come from listfiles -# because they might be regenerated. -cmake_check_build_system: - $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 -.PHONY : cmake_check_build_system - diff --git a/build/CMakeFiles/TargetDirectories.txt b/build/CMakeFiles/TargetDirectories.txt deleted file mode 100644 index 4b2931e..0000000 --- a/build/CMakeFiles/TargetDirectories.txt +++ /dev/null @@ -1,14 +0,0 @@ -/Users/rhseung/Documents/GitHub/hinguri-pingpong/build/CMakeFiles/format.dir -/Users/rhseung/Documents/GitHub/hinguri-pingpong/build/CMakeFiles/tidy.dir -/Users/rhseung/Documents/GitHub/hinguri-pingpong/build/CMakeFiles/edit_cache.dir -/Users/rhseung/Documents/GitHub/hinguri-pingpong/build/CMakeFiles/rebuild_cache.dir -/Users/rhseung/Documents/GitHub/hinguri-pingpong/build/CMakeFiles/list_install_components.dir -/Users/rhseung/Documents/GitHub/hinguri-pingpong/build/CMakeFiles/install.dir -/Users/rhseung/Documents/GitHub/hinguri-pingpong/build/CMakeFiles/install/local.dir -/Users/rhseung/Documents/GitHub/hinguri-pingpong/build/CMakeFiles/install/strip.dir -/Users/rhseung/Documents/GitHub/hinguri-pingpong/build/examples/CMakeFiles/edit_cache.dir -/Users/rhseung/Documents/GitHub/hinguri-pingpong/build/examples/CMakeFiles/rebuild_cache.dir -/Users/rhseung/Documents/GitHub/hinguri-pingpong/build/examples/CMakeFiles/list_install_components.dir -/Users/rhseung/Documents/GitHub/hinguri-pingpong/build/examples/CMakeFiles/install.dir -/Users/rhseung/Documents/GitHub/hinguri-pingpong/build/examples/CMakeFiles/install/local.dir -/Users/rhseung/Documents/GitHub/hinguri-pingpong/build/examples/CMakeFiles/install/strip.dir diff --git a/build/CMakeFiles/cmake.check_cache b/build/CMakeFiles/cmake.check_cache deleted file mode 100644 index 3dccd73..0000000 --- a/build/CMakeFiles/cmake.check_cache +++ /dev/null @@ -1 +0,0 @@ -# This file is generated by cmake for dependency checking of the CMakeCache.txt file diff --git a/build/CMakeFiles/progress.marks b/build/CMakeFiles/progress.marks deleted file mode 100644 index 573541a..0000000 --- a/build/CMakeFiles/progress.marks +++ /dev/null @@ -1 +0,0 @@ -0 diff --git a/build/CMakeFiles/tidy.dir/DependInfo.cmake b/build/CMakeFiles/tidy.dir/DependInfo.cmake deleted file mode 100644 index 29b95a5..0000000 --- a/build/CMakeFiles/tidy.dir/DependInfo.cmake +++ /dev/null @@ -1,22 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_FORWARD_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/build/CMakeFiles/tidy.dir/build.make b/build/CMakeFiles/tidy.dir/build.make deleted file mode 100644 index 766eee3..0000000 --- a/build/CMakeFiles/tidy.dir/build.make +++ /dev/null @@ -1,90 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 4.0 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/rhseung/Documents/GitHub/hinguri-pingpong/NumCpp - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/rhseung/Documents/GitHub/hinguri-pingpong/build - -# Utility rule file for tidy. - -# Include any custom commands dependencies for this target. -include CMakeFiles/tidy.dir/compiler_depend.make - -# Include the progress variables for this target. -include CMakeFiles/tidy.dir/progress.make - -CMakeFiles/tidy: - run-clang-tidy -p /Users/rhseung/Documents/GitHub/hinguri-pingpong/build -extra-arg=-std=c++17 - -CMakeFiles/tidy.dir/codegen: -.PHONY : CMakeFiles/tidy.dir/codegen - -tidy: CMakeFiles/tidy -tidy: CMakeFiles/tidy.dir/build.make -.PHONY : tidy - -# Rule to build all files generated by this target. -CMakeFiles/tidy.dir/build: tidy -.PHONY : CMakeFiles/tidy.dir/build - -CMakeFiles/tidy.dir/clean: - $(CMAKE_COMMAND) -P CMakeFiles/tidy.dir/cmake_clean.cmake -.PHONY : CMakeFiles/tidy.dir/clean - -CMakeFiles/tidy.dir/depend: - cd /Users/rhseung/Documents/GitHub/hinguri-pingpong/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Users/rhseung/Documents/GitHub/hinguri-pingpong/NumCpp /Users/rhseung/Documents/GitHub/hinguri-pingpong/NumCpp /Users/rhseung/Documents/GitHub/hinguri-pingpong/build /Users/rhseung/Documents/GitHub/hinguri-pingpong/build /Users/rhseung/Documents/GitHub/hinguri-pingpong/build/CMakeFiles/tidy.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : CMakeFiles/tidy.dir/depend - diff --git a/build/CMakeFiles/tidy.dir/cmake_clean.cmake b/build/CMakeFiles/tidy.dir/cmake_clean.cmake deleted file mode 100644 index 6f5e14b..0000000 --- a/build/CMakeFiles/tidy.dir/cmake_clean.cmake +++ /dev/null @@ -1,8 +0,0 @@ -file(REMOVE_RECURSE - "CMakeFiles/tidy" -) - -# Per-language clean rules from dependency scanning. -foreach(lang ) - include(CMakeFiles/tidy.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/build/Makefile b/build/Makefile deleted file mode 100644 index a81dd32..0000000 --- a/build/Makefile +++ /dev/null @@ -1,225 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 4.0 - -# Default target executed when no arguments are given to make. -default_target: all -.PHONY : default_target - -# Allow only one "make -f Makefile2" at a time, but pass parallelism. -.NOTPARALLEL: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/rhseung/Documents/GitHub/hinguri-pingpong/NumCpp - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/rhseung/Documents/GitHub/hinguri-pingpong/build - -#============================================================================= -# Targets provided globally by CMake. - -# Special rule for the target edit_cache -edit_cache: - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Running CMake cache editor..." - /opt/homebrew/bin/ccmake -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) -.PHONY : edit_cache - -# Special rule for the target edit_cache -edit_cache/fast: edit_cache -.PHONY : edit_cache/fast - -# Special rule for the target rebuild_cache -rebuild_cache: - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Running CMake to regenerate build system..." - /opt/homebrew/bin/cmake --regenerate-during-build -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) -.PHONY : rebuild_cache - -# Special rule for the target rebuild_cache -rebuild_cache/fast: rebuild_cache -.PHONY : rebuild_cache/fast - -# Special rule for the target list_install_components -list_install_components: - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Available install components are: \"Unspecified\"" -.PHONY : list_install_components - -# Special rule for the target list_install_components -list_install_components/fast: list_install_components -.PHONY : list_install_components/fast - -# Special rule for the target install -install: preinstall - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Install the project..." - /opt/homebrew/bin/cmake -P cmake_install.cmake -.PHONY : install - -# Special rule for the target install -install/fast: preinstall/fast - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Install the project..." - /opt/homebrew/bin/cmake -P cmake_install.cmake -.PHONY : install/fast - -# Special rule for the target install/local -install/local: preinstall - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing only the local directory..." - /opt/homebrew/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake -.PHONY : install/local - -# Special rule for the target install/local -install/local/fast: preinstall/fast - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing only the local directory..." - /opt/homebrew/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake -.PHONY : install/local/fast - -# Special rule for the target install/strip -install/strip: preinstall - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing the project stripped..." - /opt/homebrew/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake -.PHONY : install/strip - -# Special rule for the target install/strip -install/strip/fast: preinstall/fast - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing the project stripped..." - /opt/homebrew/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake -.PHONY : install/strip/fast - -# The main all target -all: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/rhseung/Documents/GitHub/hinguri-pingpong/build/CMakeFiles /Users/rhseung/Documents/GitHub/hinguri-pingpong/build//CMakeFiles/progress.marks - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/rhseung/Documents/GitHub/hinguri-pingpong/build/CMakeFiles 0 -.PHONY : all - -# The main codegen target -codegen: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /Users/rhseung/Documents/GitHub/hinguri-pingpong/build/CMakeFiles /Users/rhseung/Documents/GitHub/hinguri-pingpong/build//CMakeFiles/progress.marks - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 codegen - $(CMAKE_COMMAND) -E cmake_progress_start /Users/rhseung/Documents/GitHub/hinguri-pingpong/build/CMakeFiles 0 -.PHONY : codegen - -# The main clean target -clean: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 clean -.PHONY : clean - -# The main clean target -clean/fast: clean -.PHONY : clean/fast - -# Prepare targets for installation. -preinstall: all - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 preinstall -.PHONY : preinstall - -# Prepare targets for installation. -preinstall/fast: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 preinstall -.PHONY : preinstall/fast - -# clear depends -depend: - $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1 -.PHONY : depend - -#============================================================================= -# Target rules for targets named format - -# Build rule for target. -format: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 format -.PHONY : format - -# fast build rule for target. -format/fast: - $(MAKE) $(MAKESILENT) -f CMakeFiles/format.dir/build.make CMakeFiles/format.dir/build -.PHONY : format/fast - -#============================================================================= -# Target rules for targets named tidy - -# Build rule for target. -tidy: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 tidy -.PHONY : tidy - -# fast build rule for target. -tidy/fast: - $(MAKE) $(MAKESILENT) -f CMakeFiles/tidy.dir/build.make CMakeFiles/tidy.dir/build -.PHONY : tidy/fast - -# 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 "... codegen" - @echo "... edit_cache" - @echo "... install" - @echo "... install/local" - @echo "... install/strip" - @echo "... list_install_components" - @echo "... rebuild_cache" - @echo "... format" - @echo "... tidy" -.PHONY : help - - - -#============================================================================= -# Special targets to cleanup operation of make. - -# Special rule to run CMake to check the build system integrity. -# No rule that depends on this can have commands that come from listfiles -# because they might be regenerated. -cmake_check_build_system: - $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 -.PHONY : cmake_check_build_system - diff --git a/build/NumCppConfig.cmake b/build/NumCppConfig.cmake deleted file mode 100644 index 6e3244e..0000000 --- a/build/NumCppConfig.cmake +++ /dev/null @@ -1,130 +0,0 @@ -# NumCppConfig.cmake -# -------------------- -# -# NumCpp cmake module. -# This module sets the following variables in your project:: -# -# NumCpp_FOUND - true if NumCpp found on the system -# NumCpp_VERSION - NumCpp version in format Major.Minor.Release -# NumCpp_INCLUDE_DIR - Directory where NumCpp headers are located. -# -# The following variables can be set to guide the search for this package:: -# -# NumCpp_DIR - CMake variable, set to directory containing this Config file -# CMAKE_PREFIX_PATH - CMake variable, set to root directory of this package -# PATH - environment variable, set to bin directory of this package -# - -####### Expanded from @PACKAGE_INIT@ by configure_package_config_file() ####### -####### Any changes to this file will be overwritten by the next CMake run #### -####### The input file was NumCppConfig.cmake.in ######## - -get_filename_component(PACKAGE_PREFIX_DIR "${CMAKE_CURRENT_LIST_DIR}/../../../" ABSOLUTE) - -macro(set_and_check _var _file) - set(${_var} "${_file}") - if(NOT EXISTS "${_file}") - message(FATAL_ERROR "File or directory ${_file} referenced by variable ${_var} does not exist !") - endif() -endmacro() - -macro(check_required_components _NAME) - foreach(comp ${${_NAME}_FIND_COMPONENTS}) - if(NOT ${_NAME}_${comp}_FOUND) - if(${_NAME}_FIND_REQUIRED_${comp}) - set(${_NAME}_FOUND FALSE) - endif() - endif() - endforeach() -endmacro() - -#################################################################################### - -if(NOT TARGET NumCpp::NumCpp) - include("${CMAKE_CURRENT_LIST_DIR}/NumCppTargets.cmake") - set_and_check(NumCpp_INCLUDE_DIR "${PACKAGE_PREFIX_DIR}/include") - check_required_components("NumCpp") - - if(NUMCPP_NO_USE_BOOST) - set_property(TARGET NumCpp::NumCpp APPEND - PROPERTY - INTERFACE_COMPILE_DEFINITIONS - NUMCPP_NO_USE_BOOST - ) - else() - find_package(Boost 1.68.0 REQUIRED COMPONENTS date_time) - set_property(TARGET NumCpp::NumCpp APPEND - PROPERTY - INTERFACE_LINK_LIBRARIES - Boost::boost - $<$,$>:Boost::date_time> - ) - endif() - - if(NUMCPP_USE_MULTITHREAD) - set_property(TARGET NumCpp::NumCpp APPEND - PROPERTY - INTERFACE_COMPILE_DEFINITIONS - NUMCPP_USE_MULTITHREAD - ) - if (CMAKE_CXX_COMPILER_ID STREQUAL "GNU" OR CMAKE_CXX_COMPILER_ID STREQUAL "Clang") - find_package(TBB REQUIRED) - endif() - set_property(TARGET NumCpp::NumCpp APPEND - PROPERTY - INTERFACE_LINK_LIBRARIES - $<$,$>:TBB::tbb> - ) - endif() - - if(NUMCPP_INCLUDE_PYBIND_PYTHON_INTERFACE OR NUMCPP_INCLUDE_BOOST_PYTHON_INTERFACE) - find_package(Python REQUIRED - COMPONENTS - Interpreter - Development.Module - ) - - set_property(TARGET NumCpp::NumCpp - PROPERTY - POSITION_INDEPENDENT_CODE ON - ) - - if(NUMCPP_INCLUDE_PYBIND_PYTHON_INTERFACE) - find_package(pybind11 CONFIG REQUIRED) - set_property(TARGET NumCpp::NumCpp APPEND - PROPERTY - INTERFACE_COMPILE_DEFINITIONS - NUMCPP_INCLUDE_PYBIND_PYTHON_INTERFACE - ) - set_property(TARGET NumCpp::NumCpp APPEND - PROPERTY - INTERFACE_LINK_LIBRARIES - pybind11::module - ) - endif() - - if(NUMCPP_INCLUDE_BOOST_PYTHON_INTERFACE) - find_package(Boost 1.68.0 REQUIRED COMPONENTS python numpy) - set_property(TARGET NumCpp::NumCpp APPEND - PROPERTY - INTERFACE_COMPILE_DEFINITIONS - NUMCPP_INCLUDE_BOOST_PYTHON_INTERFACE - ) - set_property(TARGET NumCpp::NumCpp APPEND - PROPERTY - INTERFACE_LINK_LIBRARIES - Boost::boost - $<$,$>:Boost::python> - $<$,$>:Boost::numpy> - ) - endif() - - set_property(TARGET NumCpp::NumCpp APPEND - PROPERTY - INTERFACE_LINK_LIBRARIES - Python::Module - ) - endif() - - message(STATUS "Found NumCpp: ${NumCpp_INCLUDE_DIR} (found version ${NumCpp_VERSION})") -endif() diff --git a/build/NumCppConfigVersion.cmake b/build/NumCppConfigVersion.cmake deleted file mode 100644 index 8cc246b..0000000 --- a/build/NumCppConfigVersion.cmake +++ /dev/null @@ -1,65 +0,0 @@ -# This is a basic version file for the Config-mode of find_package(). -# It is used by write_basic_package_version_file() as input file for configure_file() -# to create a version-file which can be installed along a config.cmake file. -# -# The created file sets PACKAGE_VERSION_EXACT if the current version string and -# the requested version string are exactly the same and it sets -# PACKAGE_VERSION_COMPATIBLE if the current version is >= requested version, -# but only if the requested major version is the same as the current one. -# The variable CVF_VERSION must be set before calling configure_file(). - - -set(PACKAGE_VERSION "2.14.1") - -if(PACKAGE_VERSION VERSION_LESS PACKAGE_FIND_VERSION) - set(PACKAGE_VERSION_COMPATIBLE FALSE) -else() - - if("2.14.1" MATCHES "^([0-9]+)\\.") - set(CVF_VERSION_MAJOR "${CMAKE_MATCH_1}") - if(NOT CVF_VERSION_MAJOR VERSION_EQUAL 0) - string(REGEX REPLACE "^0+" "" CVF_VERSION_MAJOR "${CVF_VERSION_MAJOR}") - endif() - else() - set(CVF_VERSION_MAJOR "2.14.1") - endif() - - if(PACKAGE_FIND_VERSION_RANGE) - # both endpoints of the range must have the expected major version - math (EXPR CVF_VERSION_MAJOR_NEXT "${CVF_VERSION_MAJOR} + 1") - if (NOT PACKAGE_FIND_VERSION_MIN_MAJOR STREQUAL CVF_VERSION_MAJOR - OR ((PACKAGE_FIND_VERSION_RANGE_MAX STREQUAL "INCLUDE" AND NOT PACKAGE_FIND_VERSION_MAX_MAJOR STREQUAL CVF_VERSION_MAJOR) - OR (PACKAGE_FIND_VERSION_RANGE_MAX STREQUAL "EXCLUDE" AND NOT PACKAGE_FIND_VERSION_MAX VERSION_LESS_EQUAL CVF_VERSION_MAJOR_NEXT))) - set(PACKAGE_VERSION_COMPATIBLE FALSE) - elseif(PACKAGE_FIND_VERSION_MIN_MAJOR STREQUAL CVF_VERSION_MAJOR - AND ((PACKAGE_FIND_VERSION_RANGE_MAX STREQUAL "INCLUDE" AND PACKAGE_VERSION VERSION_LESS_EQUAL PACKAGE_FIND_VERSION_MAX) - OR (PACKAGE_FIND_VERSION_RANGE_MAX STREQUAL "EXCLUDE" AND PACKAGE_VERSION VERSION_LESS PACKAGE_FIND_VERSION_MAX))) - set(PACKAGE_VERSION_COMPATIBLE TRUE) - else() - set(PACKAGE_VERSION_COMPATIBLE FALSE) - endif() - else() - if(PACKAGE_FIND_VERSION_MAJOR STREQUAL CVF_VERSION_MAJOR) - set(PACKAGE_VERSION_COMPATIBLE TRUE) - else() - set(PACKAGE_VERSION_COMPATIBLE FALSE) - endif() - - if(PACKAGE_FIND_VERSION STREQUAL PACKAGE_VERSION) - set(PACKAGE_VERSION_EXACT TRUE) - endif() - endif() -endif() - - -# if the installed or the using project don't have CMAKE_SIZEOF_VOID_P set, ignore it: -if("${CMAKE_SIZEOF_VOID_P}" STREQUAL "" OR "8" STREQUAL "") - return() -endif() - -# check that the installed version has the same 32/64bit-ness as the one which is currently searching: -if(NOT CMAKE_SIZEOF_VOID_P STREQUAL "8") - math(EXPR installedBits "8 * 8") - set(PACKAGE_VERSION "${PACKAGE_VERSION} (${installedBits}bit)") - set(PACKAGE_VERSION_UNSUITABLE TRUE) -endif() diff --git a/build/cmake_install.cmake b/build/cmake_install.cmake deleted file mode 100644 index 13bd673..0000000 --- a/build/cmake_install.cmake +++ /dev/null @@ -1,97 +0,0 @@ -# Install script for directory: /Users/rhseung/Documents/GitHub/hinguri-pingpong/NumCpp - -# 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() - -# Is this installation the result of a crosscompile? -if(NOT DEFINED CMAKE_CROSSCOMPILING) - set(CMAKE_CROSSCOMPILING "FALSE") -endif() - -# Set path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "/usr/bin/objdump") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for the subdirectory. - include("/Users/rhseung/Documents/GitHub/hinguri-pingpong/build/examples/cmake_install.cmake") -endif() - -if(CMAKE_INSTALL_COMPONENT STREQUAL "Unspecified" OR NOT CMAKE_INSTALL_COMPONENT) - if(EXISTS "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/share/NumCpp/cmake/NumCppTargets.cmake") - file(DIFFERENT _cmake_export_file_changed FILES - "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/share/NumCpp/cmake/NumCppTargets.cmake" - "/Users/rhseung/Documents/GitHub/hinguri-pingpong/build/CMakeFiles/Export/92c9a7fd17518a8ad88a7cfe13174b73/NumCppTargets.cmake") - if(_cmake_export_file_changed) - file(GLOB _cmake_old_config_files "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/share/NumCpp/cmake/NumCppTargets-*.cmake") - if(_cmake_old_config_files) - string(REPLACE ";" ", " _cmake_old_config_files_text "${_cmake_old_config_files}") - message(STATUS "Old export file \"$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/share/NumCpp/cmake/NumCppTargets.cmake\" will be replaced. Removing files [${_cmake_old_config_files_text}].") - unset(_cmake_old_config_files_text) - file(REMOVE ${_cmake_old_config_files}) - endif() - unset(_cmake_old_config_files) - endif() - unset(_cmake_export_file_changed) - endif() - file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/share/NumCpp/cmake" TYPE FILE FILES "/Users/rhseung/Documents/GitHub/hinguri-pingpong/build/CMakeFiles/Export/92c9a7fd17518a8ad88a7cfe13174b73/NumCppTargets.cmake") -endif() - -if(CMAKE_INSTALL_COMPONENT STREQUAL "Unspecified" OR NOT CMAKE_INSTALL_COMPONENT) - file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/share/NumCpp/cmake" TYPE FILE FILES - "/Users/rhseung/Documents/GitHub/hinguri-pingpong/build/NumCppConfig.cmake" - "/Users/rhseung/Documents/GitHub/hinguri-pingpong/build/NumCppConfigVersion.cmake" - ) -endif() - -if(CMAKE_INSTALL_COMPONENT STREQUAL "Unspecified" OR NOT CMAKE_INSTALL_COMPONENT) - file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/include" TYPE DIRECTORY FILES "/Users/rhseung/Documents/GitHub/hinguri-pingpong/NumCpp/include/") -endif() - -string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT - "${CMAKE_INSTALL_MANIFEST_FILES}") -if(CMAKE_INSTALL_LOCAL_ONLY) - file(WRITE "/Users/rhseung/Documents/GitHub/hinguri-pingpong/build/install_local_manifest.txt" - "${CMAKE_INSTALL_MANIFEST_CONTENT}") -endif() -if(CMAKE_INSTALL_COMPONENT) - if(CMAKE_INSTALL_COMPONENT MATCHES "^[a-zA-Z0-9_.+-]+$") - set(CMAKE_INSTALL_MANIFEST "install_manifest_${CMAKE_INSTALL_COMPONENT}.txt") - else() - string(MD5 CMAKE_INST_COMP_HASH "${CMAKE_INSTALL_COMPONENT}") - set(CMAKE_INSTALL_MANIFEST "install_manifest_${CMAKE_INST_COMP_HASH}.txt") - unset(CMAKE_INST_COMP_HASH) - endif() -else() - set(CMAKE_INSTALL_MANIFEST "install_manifest.txt") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - file(WRITE "/Users/rhseung/Documents/GitHub/hinguri-pingpong/build/${CMAKE_INSTALL_MANIFEST}" - "${CMAKE_INSTALL_MANIFEST_CONTENT}") -endif() diff --git a/build/examples/CMakeFiles/CMakeDirectoryInformation.cmake b/build/examples/CMakeFiles/CMakeDirectoryInformation.cmake deleted file mode 100644 index 1a704f5..0000000 --- a/build/examples/CMakeFiles/CMakeDirectoryInformation.cmake +++ /dev/null @@ -1,16 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 4.0 - -# Relative path conversion top directories. -set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/Users/rhseung/Documents/GitHub/hinguri-pingpong/NumCpp") -set(CMAKE_RELATIVE_PATH_TOP_BINARY "/Users/rhseung/Documents/GitHub/hinguri-pingpong/build") - -# Force unix paths in dependencies. -set(CMAKE_FORCE_UNIX_PATHS 1) - - -# The C and CXX include file regular expressions for this directory. -set(CMAKE_C_INCLUDE_REGEX_SCAN "^.*$") -set(CMAKE_C_INCLUDE_REGEX_COMPLAIN "^$") -set(CMAKE_CXX_INCLUDE_REGEX_SCAN ${CMAKE_C_INCLUDE_REGEX_SCAN}) -set(CMAKE_CXX_INCLUDE_REGEX_COMPLAIN ${CMAKE_C_INCLUDE_REGEX_COMPLAIN}) diff --git a/build/examples/CMakeFiles/progress.marks b/build/examples/CMakeFiles/progress.marks deleted file mode 100644 index 573541a..0000000 --- a/build/examples/CMakeFiles/progress.marks +++ /dev/null @@ -1 +0,0 @@ -0 diff --git a/build/examples/Makefile b/build/examples/Makefile deleted file mode 100644 index b9c6998..0000000 --- a/build/examples/Makefile +++ /dev/null @@ -1,197 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 4.0 - -# Default target executed when no arguments are given to make. -default_target: all -.PHONY : default_target - -# Allow only one "make -f Makefile2" at a time, but pass parallelism. -.NOTPARALLEL: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /opt/homebrew/bin/cmake - -# The command to remove a file. -RM = /opt/homebrew/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /Users/rhseung/Documents/GitHub/hinguri-pingpong/NumCpp - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /Users/rhseung/Documents/GitHub/hinguri-pingpong/build - -#============================================================================= -# Targets provided globally by CMake. - -# Special rule for the target edit_cache -edit_cache: - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Running CMake cache editor..." - /opt/homebrew/bin/ccmake -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) -.PHONY : edit_cache - -# Special rule for the target edit_cache -edit_cache/fast: edit_cache -.PHONY : edit_cache/fast - -# Special rule for the target rebuild_cache -rebuild_cache: - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Running CMake to regenerate build system..." - /opt/homebrew/bin/cmake --regenerate-during-build -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) -.PHONY : rebuild_cache - -# Special rule for the target rebuild_cache -rebuild_cache/fast: rebuild_cache -.PHONY : rebuild_cache/fast - -# Special rule for the target list_install_components -list_install_components: - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Available install components are: \"Unspecified\"" -.PHONY : list_install_components - -# Special rule for the target list_install_components -list_install_components/fast: list_install_components -.PHONY : list_install_components/fast - -# Special rule for the target install -install: preinstall - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Install the project..." - /opt/homebrew/bin/cmake -P cmake_install.cmake -.PHONY : install - -# Special rule for the target install -install/fast: preinstall/fast - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Install the project..." - /opt/homebrew/bin/cmake -P cmake_install.cmake -.PHONY : install/fast - -# Special rule for the target install/local -install/local: preinstall - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing only the local directory..." - /opt/homebrew/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake -.PHONY : install/local - -# Special rule for the target install/local -install/local/fast: preinstall/fast - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing only the local directory..." - /opt/homebrew/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake -.PHONY : install/local/fast - -# Special rule for the target install/strip -install/strip: preinstall - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing the project stripped..." - /opt/homebrew/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake -.PHONY : install/strip - -# Special rule for the target install/strip -install/strip/fast: preinstall/fast - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Installing the project stripped..." - /opt/homebrew/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake -.PHONY : install/strip/fast - -# The main all target -all: cmake_check_build_system - cd /Users/rhseung/Documents/GitHub/hinguri-pingpong/build && $(CMAKE_COMMAND) -E cmake_progress_start /Users/rhseung/Documents/GitHub/hinguri-pingpong/build/CMakeFiles /Users/rhseung/Documents/GitHub/hinguri-pingpong/build/examples//CMakeFiles/progress.marks - cd /Users/rhseung/Documents/GitHub/hinguri-pingpong/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 examples/all - $(CMAKE_COMMAND) -E cmake_progress_start /Users/rhseung/Documents/GitHub/hinguri-pingpong/build/CMakeFiles 0 -.PHONY : all - -# The main codegen target -codegen: cmake_check_build_system - cd /Users/rhseung/Documents/GitHub/hinguri-pingpong/build && $(CMAKE_COMMAND) -E cmake_progress_start /Users/rhseung/Documents/GitHub/hinguri-pingpong/build/CMakeFiles /Users/rhseung/Documents/GitHub/hinguri-pingpong/build/examples//CMakeFiles/progress.marks - cd /Users/rhseung/Documents/GitHub/hinguri-pingpong/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 examples/codegen - $(CMAKE_COMMAND) -E cmake_progress_start /Users/rhseung/Documents/GitHub/hinguri-pingpong/build/CMakeFiles 0 -.PHONY : codegen - -# The main clean target -clean: - cd /Users/rhseung/Documents/GitHub/hinguri-pingpong/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 examples/clean -.PHONY : clean - -# The main clean target -clean/fast: clean -.PHONY : clean/fast - -# Prepare targets for installation. -preinstall: all - cd /Users/rhseung/Documents/GitHub/hinguri-pingpong/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 examples/preinstall -.PHONY : preinstall - -# Prepare targets for installation. -preinstall/fast: - cd /Users/rhseung/Documents/GitHub/hinguri-pingpong/build && $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 examples/preinstall -.PHONY : preinstall/fast - -# clear depends -depend: - cd /Users/rhseung/Documents/GitHub/hinguri-pingpong/build && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1 -.PHONY : depend - -# Help Target -help: - @echo "The following are some of the valid targets for this Makefile:" - @echo "... all (the default if no target is provided)" - @echo "... clean" - @echo "... depend" - @echo "... codegen" - @echo "... edit_cache" - @echo "... install" - @echo "... install/local" - @echo "... install/strip" - @echo "... list_install_components" - @echo "... rebuild_cache" -.PHONY : help - - - -#============================================================================= -# Special targets to cleanup operation of make. - -# Special rule to run CMake to check the build system integrity. -# No rule that depends on this can have commands that come from listfiles -# because they might be regenerated. -cmake_check_build_system: - cd /Users/rhseung/Documents/GitHub/hinguri-pingpong/build && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 -.PHONY : cmake_check_build_system - diff --git a/build/examples/cmake_install.cmake b/build/examples/cmake_install.cmake deleted file mode 100644 index e6945df..0000000 --- a/build/examples/cmake_install.cmake +++ /dev/null @@ -1,45 +0,0 @@ -# Install script for directory: /Users/rhseung/Documents/GitHub/hinguri-pingpong/NumCpp/examples - -# Set the install prefix -if(NOT DEFINED CMAKE_INSTALL_PREFIX) - set(CMAKE_INSTALL_PREFIX "/usr/local") -endif() -string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") - -# Set the install configuration name. -if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) - if(BUILD_TYPE) - string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" - CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") - else() - set(CMAKE_INSTALL_CONFIG_NAME "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() - -# Set path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "/usr/bin/objdump") -endif() - -string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT - "${CMAKE_INSTALL_MANIFEST_FILES}") -if(CMAKE_INSTALL_LOCAL_ONLY) - file(WRITE "/Users/rhseung/Documents/GitHub/hinguri-pingpong/build/examples/install_local_manifest.txt" - "${CMAKE_INSTALL_MANIFEST_CONTENT}") -endif()