WIP: TMDS encoded signal recovery simiulation

Cloned gr-tempest 2.0 repo and added a couple of new Python blocks (to be eventually replaced with more efficient C++ written blocks)
This commit is contained in:
Emilio Martínez 2022-11-25 00:01:19 -03:00
parent 4aaff1cfea
commit 58d9da6198
303 changed files with 105000 additions and 0 deletions

166
CMakeLists.txt Normal file
View File

@ -0,0 +1,166 @@
# Copyright 2011,2012,2014,2016,2018 Free Software Foundation, Inc.
# # This file was generated by gr_modtool, a tool from the GNU Radio framework # This file is a part of gr-tempest
#
# GNU Radio is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 3, or (at your option)
# any later version.
#
# GNU Radio is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with GNU Radio; see the file COPYING. If not, write to
# the Free Software Foundation, Inc., 51 Franklin Street,
# Boston, MA 02110-1301, USA.
########################################################################
# Project setup
########################################################################
cmake_minimum_required(VERSION 3.8)
project(gr-tempest CXX C)
enable_testing()
# Install to PyBOMBS target prefix if defined
if(DEFINED ENV{PYBOMBS_PREFIX})
set(CMAKE_INSTALL_PREFIX $ENV{PYBOMBS_PREFIX})
message(STATUS "PyBOMBS installed GNU Radio. Setting CMAKE_INSTALL_PREFIX to $ENV{PYBOMBS_PREFIX}")
endif()
# Select the release build type by default to get optimization flags
if(NOT CMAKE_BUILD_TYPE)
set(CMAKE_BUILD_TYPE "Release")
message(STATUS "Build type not specified: defaulting to release.")
endif(NOT CMAKE_BUILD_TYPE)
set(CMAKE_BUILD_TYPE ${CMAKE_BUILD_TYPE} CACHE STRING "")
# Make sure our local CMake Modules path comes first
list(INSERT CMAKE_MODULE_PATH 0 ${CMAKE_SOURCE_DIR}/cmake/Modules)
# Set the version information here
set(VERSION_MAJOR 1)
set(VERSION_API 0)
set(VERSION_ABI 0)
set(VERSION_PATCH git)
cmake_policy(SET CMP0011 NEW)
# Enable generation of compile_commands.json for code completion engines
set(CMAKE_EXPORT_COMPILE_COMMANDS ON)
########################################################################
# Compiler specific setup
########################################################################
if((CMAKE_CXX_COMPILER_ID MATCHES "Clang" OR
CMAKE_CXX_COMPILER_ID STREQUAL "GNU")
AND NOT WIN32)
#http://gcc.gnu.org/wiki/Visibility
add_definitions(-fvisibility=hidden)
endif()
IF(CMAKE_CXX_COMPILER_ID STREQUAL "GNU")
SET(CMAKE_CXX_STANDARD 11)
ELSEIF(CMAKE_CXX_COMPILER_ID MATCHES "Clang")
SET(CMAKE_CXX_STANDARD 11)
ELSEIF(CMAKE_CXX_COMPILER_ID STREQUAL "MSVC")
SET(CMAKE_CXX_STANDARD 11)
ELSE()
message(WARNING "C++ standard could not be set because compiler is not GNU, Clang or MSVC.")
ENDIF()
IF(CMAKE_C_COMPILER_ID STREQUAL "GNU")
SET(CMAKE_C_STANDARD 11)
ELSEIF(CMAKE_C_COMPILER_ID MATCHES "Clang")
SET(CMAKE_C_STANDARD 11)
ELSEIF(CMAKE_C_COMPILER_ID STREQUAL "MSVC")
SET(CMAKE_C_STANDARD 11)
ELSE()
message(WARNING "C standard could not be set because compiler is not GNU, Clang or MSVC.")
ENDIF()
########################################################################
# Install directories
########################################################################
find_package(Gnuradio "3.8" REQUIRED COMPONENTS blocks fft filter volk)
include(GrVersion)
include(GrPlatform) #define LIB_SUFFIX
if(NOT CMAKE_MODULES_DIR)
set(CMAKE_MODULES_DIR lib${LIB_SUFFIX}/cmake)
endif(NOT CMAKE_MODULES_DIR)
set(GR_INCLUDE_DIR include/tempest)
set(GR_CMAKE_DIR ${CMAKE_MODULES_DIR}/tempest)
set(GR_PKG_DATA_DIR ${GR_DATA_DIR}/${CMAKE_PROJECT_NAME})
set(GR_PKG_DOC_DIR ${GR_DOC_DIR}/${CMAKE_PROJECT_NAME})
set(GR_PKG_CONF_DIR ${GR_CONF_DIR}/${CMAKE_PROJECT_NAME}/conf.d)
set(GR_PKG_LIBEXEC_DIR ${GR_LIBEXEC_DIR}/${CMAKE_PROJECT_NAME})
########################################################################
# On Apple only, set install name and use rpath correctly, if not already set
########################################################################
if(APPLE)
if(NOT CMAKE_INSTALL_NAME_DIR)
set(CMAKE_INSTALL_NAME_DIR
${CMAKE_INSTALL_PREFIX}/${GR_LIBRARY_DIR} CACHE
PATH "Library Install Name Destination Directory" FORCE)
endif(NOT CMAKE_INSTALL_NAME_DIR)
if(NOT CMAKE_INSTALL_RPATH)
set(CMAKE_INSTALL_RPATH
${CMAKE_INSTALL_PREFIX}/${GR_LIBRARY_DIR} CACHE
PATH "Library Install RPath" FORCE)
endif(NOT CMAKE_INSTALL_RPATH)
if(NOT CMAKE_BUILD_WITH_INSTALL_RPATH)
set(CMAKE_BUILD_WITH_INSTALL_RPATH ON CACHE
BOOL "Do Build Using Library Install RPath" FORCE)
endif(NOT CMAKE_BUILD_WITH_INSTALL_RPATH)
endif(APPLE)
########################################################################
# Find gnuradio build dependencies
########################################################################
find_package(Doxygen)
########################################################################
# Setup doxygen option
########################################################################
if(DOXYGEN_FOUND)
option(ENABLE_DOXYGEN "Build docs using Doxygen" ON)
else(DOXYGEN_FOUND)
option(ENABLE_DOXYGEN "Build docs using Doxygen" OFF)
endif(DOXYGEN_FOUND)
########################################################################
# Create uninstall target
########################################################################
configure_file(
${CMAKE_SOURCE_DIR}/cmake/cmake_uninstall.cmake.in
${CMAKE_CURRENT_BINARY_DIR}/cmake_uninstall.cmake
@ONLY)
add_custom_target(uninstall
${CMAKE_COMMAND} -P ${CMAKE_CURRENT_BINARY_DIR}/cmake_uninstall.cmake
)
########################################################################
# Add subdirectories
########################################################################
add_subdirectory(include/tempest)
add_subdirectory(lib)
add_subdirectory(apps)
add_subdirectory(docs)
add_subdirectory(swig)
add_subdirectory(python)
add_subdirectory(grc)
########################################################################
# Install cmake search helper for this library
########################################################################
install(FILES cmake/Modules/tempestConfig.cmake
DESTINATION ${CMAKE_MODULES_DIR}/tempest
)

BIN
Imagen_800_600.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 455 KiB

22
LICENSE Normal file
View File

@ -0,0 +1,22 @@
Copyright 2020
Federico "Larroca" La Rocca <flarroca@fing.edu.uy>
Instituto de Ingenieria Electrica, Facultad de Ingenieria,
Universidad de la Republica, Uruguay.
This is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 3, or (at your option)
any later version.
This software is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this software; see the file COPYING. If not, write to
the Free Software Foundation, Inc., 51 Franklin Street,
Boston, MA 02110-1301, USA.

17
MANIFEST.md Normal file
View File

@ -0,0 +1,17 @@
title: The TEMPEST OOT Module
brief: Short description of gr-tempest
tags: # Tags are arbitrary, but look at CGRAN what other authors are using
- sdr
author:
- Author Name <authors@email.address>
copyright_owner:
- Copyright Owner 1
license:
gr_supported_version: # Put a comma separated list of supported GR versions here
#repo: # Put the URL of the repository here, or leave blank for default
#website: <module_website> # If you have a separate project website, put it here
#icon: <icon_url> # Put a URL to a square image here that will be used as an icon on CGRAN
---
A longer, multi-line description of gr-tempest.
You may use some *basic* Markdown here.
If left empty, it will try to find a README file instead.

26
apps/CMakeLists.txt Normal file
View File

@ -0,0 +1,26 @@
# Copyright 2011 Free Software Foundation, Inc.
#
# This file was generated by gr_modtool, a tool from the GNU Radio framework
# This file is a part of gr-tempest
#
# GNU Radio is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 3, or (at your option)
# any later version.
#
# GNU Radio is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with GNU Radio; see the file COPYING. If not, write to
# the Free Software Foundation, Inc., 51 Franklin Street,
# Boston, MA 02110-1301, USA.
include(GrPython)
GR_PYTHON_INSTALL(
PROGRAMS
DESTINATION bin
)

761
build/CMakeCache.txt Normal file
View File

@ -0,0 +1,761 @@
# This is the CMakeCache file.
# For build in directory: /home/emidan19/gr-tempest/build
# It was generated by CMake: /usr/bin/cmake
# You can edit this file to change values found and used by cmake.
# If you do not want to change any of the values, simply exit the editor.
# If you do want to change a value, simply edit, save, and exit the editor.
# The syntax for the file is as follows:
# KEY:TYPE=VALUE
# KEY is the name of a variable in the cache.
# TYPE is a hint to GUIs for the type of VALUE, DO NOT EDIT TYPE!.
# VALUE is the current value for the KEY.
########################
# EXTERNAL cache entries
########################
Boost_DATE_TIME_LIBRARY_RELEASE:STRING=/usr/lib/x86_64-linux-gnu/libboost_date_time.so.1.71.0
//The directory containing a CMake configuration file for Boost.
Boost_DIR:PATH=/usr/lib/x86_64-linux-gnu/cmake/Boost-1.71.0
Boost_FILESYSTEM_LIBRARY_RELEASE:STRING=/usr/lib/x86_64-linux-gnu/libboost_filesystem.so.1.71.0
//Path to a file.
Boost_INCLUDE_DIR:PATH=/usr/include
Boost_PROGRAM_OPTIONS_LIBRARY_RELEASE:STRING=/usr/lib/x86_64-linux-gnu/libboost_program_options.so.1.71.0
Boost_REGEX_LIBRARY_RELEASE:STRING=/usr/lib/x86_64-linux-gnu/libboost_regex.so.1.71.0
Boost_SYSTEM_LIBRARY_RELEASE:STRING=/usr/lib/x86_64-linux-gnu/libboost_system.so.1.71.0
Boost_THREAD_LIBRARY_RELEASE:STRING=/usr/lib/x86_64-linux-gnu/libboost_thread.so.1.71.0
Boost_UNIT_TEST_FRAMEWORK_LIBRARY_RELEASE:STRING=/usr/lib/x86_64-linux-gnu/libboost_unit_test_framework.so.1.71.0
//Path to a program.
CMAKE_ADDR2LINE:FILEPATH=/usr/bin/addr2line
//Path to a program.
CMAKE_AR:FILEPATH=/usr/bin/ar
//Choose the type of build, options are: None Debug Release RelWithDebInfo
// MinSizeRel ...
CMAKE_BUILD_TYPE:STRING=
//Enable/Disable color output during build.
CMAKE_COLOR_MAKEFILE:BOOL=ON
//CXX compiler
CMAKE_CXX_COMPILER:FILEPATH=/usr/bin/c++
//A wrapper around 'ar' adding the appropriate '--plugin' option
// for the GCC compiler
CMAKE_CXX_COMPILER_AR:FILEPATH=/usr/bin/gcc-ar-9
//A wrapper around 'ranlib' adding the appropriate '--plugin' option
// for the GCC compiler
CMAKE_CXX_COMPILER_RANLIB:FILEPATH=/usr/bin/gcc-ranlib-9
//Flags used by the CXX compiler during all build types.
CMAKE_CXX_FLAGS:STRING=
//Flags used by the CXX compiler during DEBUG builds.
CMAKE_CXX_FLAGS_DEBUG:STRING=-g
//Flags used by the CXX compiler during MINSIZEREL builds.
CMAKE_CXX_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG
//Flags used by the CXX compiler during RELEASE builds.
CMAKE_CXX_FLAGS_RELEASE:STRING=-O3 -DNDEBUG
//Flags used by the CXX compiler during RELWITHDEBINFO builds.
CMAKE_CXX_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG
//C compiler
CMAKE_C_COMPILER:FILEPATH=/usr/bin/cc
//A wrapper around 'ar' adding the appropriate '--plugin' option
// for the GCC compiler
CMAKE_C_COMPILER_AR:FILEPATH=/usr/bin/gcc-ar-9
//A wrapper around 'ranlib' adding the appropriate '--plugin' option
// for the GCC compiler
CMAKE_C_COMPILER_RANLIB:FILEPATH=/usr/bin/gcc-ranlib-9
//Flags used by the C compiler during all build types.
CMAKE_C_FLAGS:STRING=
//Flags used by the C compiler during DEBUG builds.
CMAKE_C_FLAGS_DEBUG:STRING=-g
//Flags used by the C compiler during MINSIZEREL builds.
CMAKE_C_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG
//Flags used by the C compiler during RELEASE builds.
CMAKE_C_FLAGS_RELEASE:STRING=-O3 -DNDEBUG
//Flags used by the C compiler during RELWITHDEBINFO builds.
CMAKE_C_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG
//Path to a program.
CMAKE_DLLTOOL:FILEPATH=CMAKE_DLLTOOL-NOTFOUND
//Flags used by the linker during all build types.
CMAKE_EXE_LINKER_FLAGS:STRING=
//Flags used by the linker during DEBUG builds.
CMAKE_EXE_LINKER_FLAGS_DEBUG:STRING=
//Flags used by the linker during MINSIZEREL builds.
CMAKE_EXE_LINKER_FLAGS_MINSIZEREL:STRING=
//Flags used by the linker during RELEASE builds.
CMAKE_EXE_LINKER_FLAGS_RELEASE:STRING=
//Flags used by the linker during RELWITHDEBINFO builds.
CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO:STRING=
//Enable/Disable output of compile commands during generation.
CMAKE_EXPORT_COMPILE_COMMANDS:BOOL=OFF
//Install path prefix, prepended onto install directories.
CMAKE_INSTALL_PREFIX:PATH=/usr/local
//Path to a program.
CMAKE_LINKER:FILEPATH=/usr/bin/ld
//Path to a program.
CMAKE_MAKE_PROGRAM:FILEPATH=/usr/bin/make
//Flags used by the linker during the creation of modules during
// all build types.
CMAKE_MODULE_LINKER_FLAGS:STRING=
//Flags used by the linker during the creation of modules during
// DEBUG builds.
CMAKE_MODULE_LINKER_FLAGS_DEBUG:STRING=
//Flags used by the linker during the creation of modules during
// MINSIZEREL builds.
CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL:STRING=
//Flags used by the linker during the creation of modules during
// RELEASE builds.
CMAKE_MODULE_LINKER_FLAGS_RELEASE:STRING=
//Flags used by the linker during the creation of modules during
// RELWITHDEBINFO builds.
CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO:STRING=
//Path to a program.
CMAKE_NM:FILEPATH=/usr/bin/nm
//Path to a program.
CMAKE_OBJCOPY:FILEPATH=/usr/bin/objcopy
//Path to a program.
CMAKE_OBJDUMP:FILEPATH=/usr/bin/objdump
//Value Computed by CMake
CMAKE_PROJECT_DESCRIPTION:STATIC=
//Value Computed by CMake
CMAKE_PROJECT_HOMEPAGE_URL:STATIC=
//Value Computed by CMake
CMAKE_PROJECT_NAME:STATIC=gr-tempest
//Path to a program.
CMAKE_RANLIB:FILEPATH=/usr/bin/ranlib
//Path to a program.
CMAKE_READELF:FILEPATH=/usr/bin/readelf
//Flags used by the linker during the creation of shared libraries
// during all build types.
CMAKE_SHARED_LINKER_FLAGS:STRING=
//Flags used by the linker during the creation of shared libraries
// during DEBUG builds.
CMAKE_SHARED_LINKER_FLAGS_DEBUG:STRING=
//Flags used by the linker during the creation of shared libraries
// during MINSIZEREL builds.
CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL:STRING=
//Flags used by the linker during the creation of shared libraries
// during RELEASE builds.
CMAKE_SHARED_LINKER_FLAGS_RELEASE:STRING=
//Flags used by the linker during the creation of shared libraries
// during RELWITHDEBINFO builds.
CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO:STRING=
//If set, runtime paths are not added when installing shared libraries,
// but are added when building.
CMAKE_SKIP_INSTALL_RPATH:BOOL=NO
//If set, runtime paths are not added when using shared libraries.
CMAKE_SKIP_RPATH:BOOL=NO
//Flags used by the linker during the creation of static libraries
// during all build types.
CMAKE_STATIC_LINKER_FLAGS:STRING=
//Flags used by the linker during the creation of static libraries
// during DEBUG builds.
CMAKE_STATIC_LINKER_FLAGS_DEBUG:STRING=
//Flags used by the linker during the creation of static libraries
// during MINSIZEREL builds.
CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL:STRING=
//Flags used by the linker during the creation of static libraries
// during RELEASE builds.
CMAKE_STATIC_LINKER_FLAGS_RELEASE:STRING=
//Flags used by the linker during the creation of static libraries
// during RELWITHDEBINFO builds.
CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO:STRING=
//Path to a program.
CMAKE_STRIP:FILEPATH=/usr/bin/strip
//If this value is on, makefiles will be generated without the
// .SILENT directive, and all commands will be echoed to the console
// during the make. This is useful for debugging only. With Visual
// Studio IDE projects all commands are done without /nologo.
CMAKE_VERBOSE_MAKEFILE:BOOL=FALSE
//Dot tool for use with Doxygen
DOXYGEN_DOT_EXECUTABLE:FILEPATH=DOXYGEN_DOT_EXECUTABLE-NOTFOUND
//Doxygen documentation generation tool (http://www.doxygen.org)
DOXYGEN_EXECUTABLE:FILEPATH=DOXYGEN_EXECUTABLE-NOTFOUND
//Build docs using Doxygen
ENABLE_DOXYGEN:BOOL=OFF
//Enable GRC features (export block YAML)
ENABLE_GRC:BOOL=ON
//Enable Python & SWIG
ENABLE_PYTHON:BOOL=ON
//Enable testing support
ENABLE_TESTING:BOOL=ON
//Path to a file.
FFTW3f_INCLUDE_DIRS:PATH=/usr/include
//Path to a library.
FFTW3f_LIBRARIES:FILEPATH=/usr/lib/x86_64-linux-gnu/libfftw3f.so
//Path to a library.
FFTW3f_THREADS_LIBRARIES:FILEPATH=/usr/lib/x86_64-linux-gnu/libfftw3f_threads.so
//git command line client
GIT_EXECUTABLE:FILEPATH=/usr/bin/git
//Path to a library.
GMPXX_LIBRARY:FILEPATH=/usr/lib/x86_64-linux-gnu/libgmpxx.so
//Path to a file.
GMP_INCLUDE_DIR:PATH=/usr/include
//Path to a library.
GMP_LIBRARY:FILEPATH=/usr/lib/x86_64-linux-gnu/libgmp.so
//The directory containing a CMake configuration file for Gnuradio.
Gnuradio_DIR:PATH=/usr/lib/x86_64-linux-gnu/cmake/gnuradio
//lib directory suffix
LIB_SUFFIX:STRING=
//Path to a file.
LOG4CPP_INCLUDE_DIR:PATH=/usr/include
//Path to a library.
LOG4CPP_LIBRARY:FILEPATH=/usr/lib/x86_64-linux-gnu/liblog4cpp.so
//pkg-config executable
PKG_CONFIG_EXECUTABLE:FILEPATH=/usr/bin/pkg-config
//python interpreter
PYTHON_EXECUTABLE:FILEPATH=/usr/bin/python3
//Path to a file.
PYTHON_INCLUDE_DIR:PATH=/usr/include/python3.8
//Path to a library.
PYTHON_LIBRARY:FILEPATH=/usr/lib/x86_64-linux-gnu/libpython3.8.so
//Path to a library.
PYTHON_LIBRARY_DEBUG:FILEPATH=PYTHON_LIBRARY_DEBUG-NOTFOUND
//python interpreter for QA tests
QA_PYTHON_EXECUTABLE:FILEPATH=/usr/bin/python3
//Path to a program.
SHELL:FILEPATH=/usr/bin/sh
//Path to a file.
SWIG_DIR:PATH=/usr/share/swig4.0
//Path to a program.
SWIG_EXECUTABLE:FILEPATH=/usr/bin/swig4.0
//Swig version
SWIG_VERSION:STRING=4.0.1
//Path to a program.
THRIFT_BIN:FILEPATH=/usr/bin/thrift
//If Thrift has been found
THRIFT_FOUND:BOOL=TRUE
//Path to a file.
THRIFT_HAS_THREADFACTORY_H:FILEPATH=/usr/include/thrift/concurrency/ThreadFactory.h
//Path to a file.
THRIFT_HAS_VERSION_H:FILEPATH=THRIFT_HAS_VERSION_H-NOTFOUND
//Path to a file.
THRIFT_INCLUDE_DIRS:PATH=/usr/include
//Path to a library.
THRIFT_LIBRARIES:FILEPATH=/usr/lib/x86_64-linux-gnu/libthrift.so
//Whether a compatible Volk was found
VOLK_FOUND:BOOL=TRUE
//Volk Include Directories
VOLK_INCLUDE_DIRS:STRING=/usr/include
//Volk Library
VOLK_LIBRARIES:STRING=Volk::volk
//The directory containing a CMake configuration file for Volk.
Volk_DIR:PATH=/usr/lib/x86_64-linux-gnu/cmake/volk
//The directory containing a CMake configuration file for boost_atomic.
boost_atomic_DIR:PATH=/usr/lib/x86_64-linux-gnu/cmake/boost_atomic-1.71.0
//The directory containing a CMake configuration file for boost_date_time.
boost_date_time_DIR:PATH=/usr/lib/x86_64-linux-gnu/cmake/boost_date_time-1.71.0
//The directory containing a CMake configuration file for boost_filesystem.
boost_filesystem_DIR:PATH=/usr/lib/x86_64-linux-gnu/cmake/boost_filesystem-1.71.0
//The directory containing a CMake configuration file for boost_headers.
boost_headers_DIR:PATH=/usr/lib/x86_64-linux-gnu/cmake/boost_headers-1.71.0
//The directory containing a CMake configuration file for boost_program_options.
boost_program_options_DIR:PATH=/usr/lib/x86_64-linux-gnu/cmake/boost_program_options-1.71.0
//The directory containing a CMake configuration file for boost_regex.
boost_regex_DIR:PATH=/usr/lib/x86_64-linux-gnu/cmake/boost_regex-1.71.0
//The directory containing a CMake configuration file for boost_system.
boost_system_DIR:PATH=/usr/lib/x86_64-linux-gnu/cmake/boost_system-1.71.0
//The directory containing a CMake configuration file for boost_thread.
boost_thread_DIR:PATH=/usr/lib/x86_64-linux-gnu/cmake/boost_thread-1.71.0
//The directory containing a CMake configuration file for boost_unit_test_framework.
boost_unit_test_framework_DIR:PATH=/usr/lib/x86_64-linux-gnu/cmake/boost_unit_test_framework-1.71.0
//Dependencies for the target
gnuradio-tempest_LIB_DEPENDS:STATIC=general;gnuradio::gnuradio-runtime;general;gnuradio::gnuradio-blocks;general;gnuradio::gnuradio-fft;general;gnuradio::gnuradio-filter;general;Volk::volk;
//Value Computed by CMake
gr-tempest_BINARY_DIR:STATIC=/home/emidan19/gr-tempest/build
//Value Computed by CMake
gr-tempest_SOURCE_DIR:STATIC=/home/emidan19/gr-tempest
//Path to a library.
pkgcfg_lib_PC_FFTW3f_fftw3f:FILEPATH=/usr/lib/x86_64-linux-gnu/libfftw3f.so
//Path to a library.
pkgcfg_lib_PC_GMP_gmp:FILEPATH=/usr/lib/x86_64-linux-gnu/libgmp.so
//Path to a library.
pkgcfg_lib_PC_THRIFT_thrift:FILEPATH=/usr/lib/x86_64-linux-gnu/libthrift.so
//Dependencies for the target
tempest_swig_LIB_DEPENDS:STATIC=general;gnuradio-tempest;
########################
# INTERNAL cache entries
########################
//ADVANCED property for variable: Boost_DIR
Boost_DIR-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_ADDR2LINE
CMAKE_ADDR2LINE-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_AR
CMAKE_AR-ADVANCED:INTERNAL=1
//This is the directory where this CMakeCache.txt was created
CMAKE_CACHEFILE_DIR:INTERNAL=/home/emidan19/gr-tempest/build
//Major version of cmake used to create the current loaded cache
CMAKE_CACHE_MAJOR_VERSION:INTERNAL=3
//Minor version of cmake used to create the current loaded cache
CMAKE_CACHE_MINOR_VERSION:INTERNAL=16
//Patch version of cmake used to create the current loaded cache
CMAKE_CACHE_PATCH_VERSION:INTERNAL=3
//ADVANCED property for variable: CMAKE_COLOR_MAKEFILE
CMAKE_COLOR_MAKEFILE-ADVANCED:INTERNAL=1
//Path to CMake executable.
CMAKE_COMMAND:INTERNAL=/usr/bin/cmake
//Path to cpack program executable.
CMAKE_CPACK_COMMAND:INTERNAL=/usr/bin/cpack
//Path to ctest program executable.
CMAKE_CTEST_COMMAND:INTERNAL=/usr/bin/ctest
//ADVANCED property for variable: CMAKE_CXX_COMPILER
CMAKE_CXX_COMPILER-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_CXX_COMPILER_AR
CMAKE_CXX_COMPILER_AR-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_CXX_COMPILER_RANLIB
CMAKE_CXX_COMPILER_RANLIB-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_CXX_FLAGS
CMAKE_CXX_FLAGS-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_CXX_FLAGS_DEBUG
CMAKE_CXX_FLAGS_DEBUG-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_CXX_FLAGS_MINSIZEREL
CMAKE_CXX_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELEASE
CMAKE_CXX_FLAGS_RELEASE-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELWITHDEBINFO
CMAKE_CXX_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_C_COMPILER
CMAKE_C_COMPILER-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_C_COMPILER_AR
CMAKE_C_COMPILER_AR-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_C_COMPILER_RANLIB
CMAKE_C_COMPILER_RANLIB-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_C_FLAGS
CMAKE_C_FLAGS-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_C_FLAGS_DEBUG
CMAKE_C_FLAGS_DEBUG-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_C_FLAGS_MINSIZEREL
CMAKE_C_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_C_FLAGS_RELEASE
CMAKE_C_FLAGS_RELEASE-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_C_FLAGS_RELWITHDEBINFO
CMAKE_C_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_DLLTOOL
CMAKE_DLLTOOL-ADVANCED:INTERNAL=1
//Executable file format
CMAKE_EXECUTABLE_FORMAT:INTERNAL=ELF
//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS
CMAKE_EXE_LINKER_FLAGS-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_DEBUG
CMAKE_EXE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_MINSIZEREL
CMAKE_EXE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELEASE
CMAKE_EXE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO
CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_EXPORT_COMPILE_COMMANDS
CMAKE_EXPORT_COMPILE_COMMANDS-ADVANCED:INTERNAL=1
//Name of external makefile project generator.
CMAKE_EXTRA_GENERATOR:INTERNAL=
//Name of generator.
CMAKE_GENERATOR:INTERNAL=Unix Makefiles
//Generator instance identifier.
CMAKE_GENERATOR_INSTANCE:INTERNAL=
//Name of generator platform.
CMAKE_GENERATOR_PLATFORM:INTERNAL=
//Name of generator toolset.
CMAKE_GENERATOR_TOOLSET:INTERNAL=
//Test CMAKE_HAVE_LIBC_PTHREAD
CMAKE_HAVE_LIBC_PTHREAD:INTERNAL=
//Have library pthreads
CMAKE_HAVE_PTHREADS_CREATE:INTERNAL=
//Have library pthread
CMAKE_HAVE_PTHREAD_CREATE:INTERNAL=1
//Have include pthread.h
CMAKE_HAVE_PTHREAD_H:INTERNAL=1
//Source directory with the top level CMakeLists.txt file for this
// project
CMAKE_HOME_DIRECTORY:INTERNAL=/home/emidan19/gr-tempest
//Install .so files without execute permission.
CMAKE_INSTALL_SO_NO_EXE:INTERNAL=1
//ADVANCED property for variable: CMAKE_LINKER
CMAKE_LINKER-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_MAKE_PROGRAM
CMAKE_MAKE_PROGRAM-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS
CMAKE_MODULE_LINKER_FLAGS-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_DEBUG
CMAKE_MODULE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL
CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELEASE
CMAKE_MODULE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO
CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_NM
CMAKE_NM-ADVANCED:INTERNAL=1
//number of local generators
CMAKE_NUMBER_OF_MAKEFILES:INTERNAL=8
//ADVANCED property for variable: CMAKE_OBJCOPY
CMAKE_OBJCOPY-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_OBJDUMP
CMAKE_OBJDUMP-ADVANCED:INTERNAL=1
//Platform information initialized
CMAKE_PLATFORM_INFO_INITIALIZED:INTERNAL=1
//ADVANCED property for variable: CMAKE_RANLIB
CMAKE_RANLIB-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_READELF
CMAKE_READELF-ADVANCED:INTERNAL=1
//Path to CMake installation.
CMAKE_ROOT:INTERNAL=/usr/share/cmake-3.16
//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS
CMAKE_SHARED_LINKER_FLAGS-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_DEBUG
CMAKE_SHARED_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL
CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELEASE
CMAKE_SHARED_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO
CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_SKIP_INSTALL_RPATH
CMAKE_SKIP_INSTALL_RPATH-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_SKIP_RPATH
CMAKE_SKIP_RPATH-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS
CMAKE_STATIC_LINKER_FLAGS-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_DEBUG
CMAKE_STATIC_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL
CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELEASE
CMAKE_STATIC_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO
CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_STRIP
CMAKE_STRIP-ADVANCED:INTERNAL=1
//uname command
CMAKE_UNAME:INTERNAL=/usr/bin/uname
//ADVANCED property for variable: CMAKE_VERBOSE_MAKEFILE
CMAKE_VERBOSE_MAKEFILE-ADVANCED:INTERNAL=1
//ADVANCED property for variable: DOXYGEN_DOT_EXECUTABLE
DOXYGEN_DOT_EXECUTABLE-ADVANCED:INTERNAL=1
//ADVANCED property for variable: DOXYGEN_EXECUTABLE
DOXYGEN_EXECUTABLE-ADVANCED:INTERNAL=1
//ADVANCED property for variable: FFTW3f_INCLUDE_DIRS
FFTW3f_INCLUDE_DIRS-ADVANCED:INTERNAL=1
//ADVANCED property for variable: FFTW3f_LIBRARIES
FFTW3f_LIBRARIES-ADVANCED:INTERNAL=1
//ADVANCED property for variable: FFTW3f_THREADS_LIBRARIES
FFTW3f_THREADS_LIBRARIES-ADVANCED:INTERNAL=1
//Details about finding Boost
FIND_PACKAGE_MESSAGE_DETAILS_Boost:INTERNAL=[/usr/lib/x86_64-linux-gnu/cmake/Boost-1.71.0/BoostConfig.cmake][cfound components: date_time program_options filesystem system regex thread unit_test_framework ][v1.71.0(1.71.0)]
//Details about finding FFTW3f
FIND_PACKAGE_MESSAGE_DETAILS_FFTW3f:INTERNAL=[/usr/lib/x86_64-linux-gnu/libfftw3f.so][/usr/include][v()]
//Details about finding GMP
FIND_PACKAGE_MESSAGE_DETAILS_GMP:INTERNAL=[/usr/lib/x86_64-linux-gnu/libgmpxx.so][/usr/lib/x86_64-linux-gnu/libgmp.so][/usr/include][v()]
//Details about finding Git
FIND_PACKAGE_MESSAGE_DETAILS_Git:INTERNAL=[/usr/bin/git][v()]
//Details about finding MPLIB
FIND_PACKAGE_MESSAGE_DETAILS_MPLIB:INTERNAL=[/usr/lib/x86_64-linux-gnu/libgmpxx.so][/usr/lib/x86_64-linux-gnu/libgmp.so][/usr/include][v()]
//Details about finding PkgConfig
FIND_PACKAGE_MESSAGE_DETAILS_PkgConfig:INTERNAL=[/usr/bin/pkg-config][v0.29.1()]
//Details about finding PythonInterp
FIND_PACKAGE_MESSAGE_DETAILS_PythonInterp:INTERNAL=[/usr/bin/python3][v3.8.10()]
//Details about finding PythonLibs
FIND_PACKAGE_MESSAGE_DETAILS_PythonLibs:INTERNAL=[/usr/lib/x86_64-linux-gnu/libpython3.8.so][/usr/include/python3.8][v3.8.10()]
//Details about finding SWIG
FIND_PACKAGE_MESSAGE_DETAILS_SWIG:INTERNAL=[/usr/bin/swig4.0][/usr/share/swig4.0][v()]
//Details about finding THRIFT
FIND_PACKAGE_MESSAGE_DETAILS_THRIFT:INTERNAL=[/usr/lib/x86_64-linux-gnu/libthrift.so][/usr/include][/usr/bin/thrift][TRUE][TRUE][v()]
//Details about finding VOLK
FIND_PACKAGE_MESSAGE_DETAILS_VOLK:INTERNAL=[Volk::volk][/usr/include][v()]
//ADVANCED property for variable: GIT_EXECUTABLE
GIT_EXECUTABLE-ADVANCED:INTERNAL=1
//ADVANCED property for variable: GMPXX_LIBRARY
GMPXX_LIBRARY-ADVANCED:INTERNAL=1
//ADVANCED property for variable: GMP_INCLUDE_DIR
GMP_INCLUDE_DIR-ADVANCED:INTERNAL=1
//ADVANCED property for variable: GMP_LIBRARY
GMP_LIBRARY-ADVANCED:INTERNAL=1
//ADVANCED property for variable: LOG4CPP_INCLUDE_DIRS
LOG4CPP_INCLUDE_DIRS-ADVANCED:INTERNAL=1
LOG4CPP_INCLUDE_DIRS:INTERNAL=/usr/include
//ADVANCED property for variable: LOG4CPP_LIBRARIES
LOG4CPP_LIBRARIES-ADVANCED:INTERNAL=1
LOG4CPP_LIBRARIES:INTERNAL=/usr/lib/x86_64-linux-gnu/liblog4cpp.so
PC_FFTW3f_CFLAGS:INTERNAL=
PC_FFTW3f_CFLAGS_I:INTERNAL=
PC_FFTW3f_CFLAGS_OTHER:INTERNAL=
PC_FFTW3f_FOUND:INTERNAL=1
PC_FFTW3f_INCLUDEDIR:INTERNAL=/usr/include
PC_FFTW3f_INCLUDE_DIRS:INTERNAL=
PC_FFTW3f_LDFLAGS:INTERNAL=-lfftw3f
PC_FFTW3f_LDFLAGS_OTHER:INTERNAL=
PC_FFTW3f_LIBDIR:INTERNAL=/usr/lib/x86_64-linux-gnu
PC_FFTW3f_LIBRARIES:INTERNAL=fftw3f
PC_FFTW3f_LIBRARY_DIRS:INTERNAL=
PC_FFTW3f_LIBS:INTERNAL=
PC_FFTW3f_LIBS_L:INTERNAL=
PC_FFTW3f_LIBS_OTHER:INTERNAL=
PC_FFTW3f_LIBS_PATHS:INTERNAL=
PC_FFTW3f_MODULE_NAME:INTERNAL='fftw3f '
PC_FFTW3f_PREFIX:INTERNAL=/usr
PC_FFTW3f_STATIC_CFLAGS:INTERNAL=
PC_FFTW3f_STATIC_CFLAGS_I:INTERNAL=
PC_FFTW3f_STATIC_CFLAGS_OTHER:INTERNAL=
PC_FFTW3f_STATIC_INCLUDE_DIRS:INTERNAL=
PC_FFTW3f_STATIC_LDFLAGS:INTERNAL=-lfftw3f;-lm
PC_FFTW3f_STATIC_LDFLAGS_OTHER:INTERNAL=
PC_FFTW3f_STATIC_LIBDIR:INTERNAL=
PC_FFTW3f_STATIC_LIBRARIES:INTERNAL=fftw3f;m
PC_FFTW3f_STATIC_LIBRARY_DIRS:INTERNAL=
PC_FFTW3f_STATIC_LIBS:INTERNAL=
PC_FFTW3f_STATIC_LIBS_L:INTERNAL=
PC_FFTW3f_STATIC_LIBS_OTHER:INTERNAL=
PC_FFTW3f_STATIC_LIBS_PATHS:INTERNAL=
PC_FFTW3f_VERSION:INTERNAL=3.3.8
PC_FFTW3f_fftw3f _INCLUDEDIR:INTERNAL=
PC_FFTW3f_fftw3f _LIBDIR:INTERNAL=
PC_FFTW3f_fftw3f _PREFIX:INTERNAL=
PC_FFTW3f_fftw3f _VERSION:INTERNAL=
PC_GMP_CFLAGS:INTERNAL=
PC_GMP_CFLAGS_I:INTERNAL=
PC_GMP_CFLAGS_OTHER:INTERNAL=
PC_GMP_FOUND:INTERNAL=1
PC_GMP_INCLUDEDIR:INTERNAL=/usr/include
PC_GMP_INCLUDE_DIRS:INTERNAL=
PC_GMP_LDFLAGS:INTERNAL=-lgmp
PC_GMP_LDFLAGS_OTHER:INTERNAL=
PC_GMP_LIBDIR:INTERNAL=/usr/lib/x86_64-linux-gnu
PC_GMP_LIBRARIES:INTERNAL=gmp
PC_GMP_LIBRARY_DIRS:INTERNAL=
PC_GMP_LIBS:INTERNAL=
PC_GMP_LIBS_L:INTERNAL=
PC_GMP_LIBS_OTHER:INTERNAL=
PC_GMP_LIBS_PATHS:INTERNAL=
PC_GMP_MODULE_NAME:INTERNAL=gmp
PC_GMP_PREFIX:INTERNAL=/usr
PC_GMP_STATIC_CFLAGS:INTERNAL=
PC_GMP_STATIC_CFLAGS_I:INTERNAL=
PC_GMP_STATIC_CFLAGS_OTHER:INTERNAL=
PC_GMP_STATIC_INCLUDE_DIRS:INTERNAL=
PC_GMP_STATIC_LDFLAGS:INTERNAL=-lgmp
PC_GMP_STATIC_LDFLAGS_OTHER:INTERNAL=
PC_GMP_STATIC_LIBDIR:INTERNAL=
PC_GMP_STATIC_LIBRARIES:INTERNAL=gmp
PC_GMP_STATIC_LIBRARY_DIRS:INTERNAL=
PC_GMP_STATIC_LIBS:INTERNAL=
PC_GMP_STATIC_LIBS_L:INTERNAL=
PC_GMP_STATIC_LIBS_OTHER:INTERNAL=
PC_GMP_STATIC_LIBS_PATHS:INTERNAL=
PC_GMP_VERSION:INTERNAL=6.2.0
PC_GMP_gmp_INCLUDEDIR:INTERNAL=
PC_GMP_gmp_LIBDIR:INTERNAL=
PC_GMP_gmp_PREFIX:INTERNAL=
PC_GMP_gmp_VERSION:INTERNAL=
PC_THRIFT_CFLAGS:INTERNAL=
PC_THRIFT_CFLAGS_I:INTERNAL=
PC_THRIFT_CFLAGS_OTHER:INTERNAL=
PC_THRIFT_FOUND:INTERNAL=1
PC_THRIFT_INCLUDEDIR:INTERNAL=/usr/include
PC_THRIFT_INCLUDE_DIRS:INTERNAL=
PC_THRIFT_LDFLAGS:INTERNAL=-lthrift
PC_THRIFT_LDFLAGS_OTHER:INTERNAL=
PC_THRIFT_LIBDIR:INTERNAL=/usr/lib/x86_64-linux-gnu
PC_THRIFT_LIBRARIES:INTERNAL=thrift
PC_THRIFT_LIBRARY_DIRS:INTERNAL=
PC_THRIFT_LIBS:INTERNAL=
PC_THRIFT_LIBS_L:INTERNAL=
PC_THRIFT_LIBS_OTHER:INTERNAL=
PC_THRIFT_LIBS_PATHS:INTERNAL=
PC_THRIFT_MODULE_NAME:INTERNAL=thrift
PC_THRIFT_PREFIX:INTERNAL=/usr
PC_THRIFT_STATIC_CFLAGS:INTERNAL=
PC_THRIFT_STATIC_CFLAGS_I:INTERNAL=
PC_THRIFT_STATIC_CFLAGS_OTHER:INTERNAL=
PC_THRIFT_STATIC_INCLUDE_DIRS:INTERNAL=
PC_THRIFT_STATIC_LDFLAGS:INTERNAL=-lthrift
PC_THRIFT_STATIC_LDFLAGS_OTHER:INTERNAL=
PC_THRIFT_STATIC_LIBDIR:INTERNAL=
PC_THRIFT_STATIC_LIBRARIES:INTERNAL=thrift
PC_THRIFT_STATIC_LIBRARY_DIRS:INTERNAL=
PC_THRIFT_STATIC_LIBS:INTERNAL=
PC_THRIFT_STATIC_LIBS_L:INTERNAL=
PC_THRIFT_STATIC_LIBS_OTHER:INTERNAL=
PC_THRIFT_STATIC_LIBS_PATHS:INTERNAL=
PC_THRIFT_VERSION:INTERNAL=0.13.0
PC_THRIFT_thrift_INCLUDEDIR:INTERNAL=
PC_THRIFT_thrift_LIBDIR:INTERNAL=
PC_THRIFT_thrift_PREFIX:INTERNAL=
PC_THRIFT_thrift_VERSION:INTERNAL=
//ADVANCED property for variable: PKG_CONFIG_EXECUTABLE
PKG_CONFIG_EXECUTABLE-ADVANCED:INTERNAL=1
//ADVANCED property for variable: PYTHON_EXECUTABLE
PYTHON_EXECUTABLE-ADVANCED:INTERNAL=1
//ADVANCED property for variable: PYTHON_INCLUDE_DIR
PYTHON_INCLUDE_DIR-ADVANCED:INTERNAL=1
//ADVANCED property for variable: PYTHON_LIBRARY
PYTHON_LIBRARY-ADVANCED:INTERNAL=1
//ADVANCED property for variable: PYTHON_LIBRARY_DEBUG
PYTHON_LIBRARY_DEBUG-ADVANCED:INTERNAL=1
//ADVANCED property for variable: SWIG_DIR
SWIG_DIR-ADVANCED:INTERNAL=1
//ADVANCED property for variable: SWIG_EXECUTABLE
SWIG_EXECUTABLE-ADVANCED:INTERNAL=1
//ADVANCED property for variable: SWIG_VERSION
SWIG_VERSION-ADVANCED:INTERNAL=1
//ADVANCED property for variable: THRIFT_BIN
THRIFT_BIN-ADVANCED:INTERNAL=1
//ADVANCED property for variable: THRIFT_FOUND
THRIFT_FOUND-ADVANCED:INTERNAL=1
//ADVANCED property for variable: THRIFT_INCLUDE_DIRS
THRIFT_INCLUDE_DIRS-ADVANCED:INTERNAL=1
//ADVANCED property for variable: THRIFT_LIBRARIES
THRIFT_LIBRARIES-ADVANCED:INTERNAL=1
//Thrift Version
THRIFT_VERSION:INTERNAL=0.13.0
//ADVANCED property for variable: VOLK_INCLUDE_DIRS
VOLK_INCLUDE_DIRS-ADVANCED:INTERNAL=1
//ADVANCED property for variable: VOLK_LIBRARIES
VOLK_LIBRARIES-ADVANCED:INTERNAL=1
__pkg_config_arguments_PC_FFTW3f:INTERNAL=fftw3f >= 3.0
__pkg_config_arguments_PC_GMP:INTERNAL=gmp
__pkg_config_arguments_PC_THRIFT:INTERNAL=thrift
__pkg_config_checked_PC_FFTW3f:INTERNAL=1
__pkg_config_checked_PC_GMP:INTERNAL=1
__pkg_config_checked_PC_THRIFT:INTERNAL=1
//ADVANCED property for variable: boost_atomic_DIR
boost_atomic_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_program_options_DIR
boost_program_options_DIR-ADVANCED:INTERNAL=1
//ADVANCED property for variable: boost_regex_DIR
boost_regex_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
//ADVANCED property for variable: boost_unit_test_framework_DIR
boost_unit_test_framework_DIR-ADVANCED:INTERNAL=1
//ADVANCED property for variable: pkgcfg_lib_PC_FFTW3f_fftw3f
pkgcfg_lib_PC_FFTW3f_fftw3f-ADVANCED:INTERNAL=1
//ADVANCED property for variable: pkgcfg_lib_PC_GMP_gmp
pkgcfg_lib_PC_GMP_gmp-ADVANCED:INTERNAL=1
//ADVANCED property for variable: pkgcfg_lib_PC_THRIFT_thrift
pkgcfg_lib_PC_THRIFT_thrift-ADVANCED:INTERNAL=1
prefix_result:INTERNAL=/usr/lib/x86_64-linux-gnu

View File

@ -0,0 +1,76 @@
set(CMAKE_C_COMPILER "/usr/bin/cc")
set(CMAKE_C_COMPILER_ARG1 "")
set(CMAKE_C_COMPILER_ID "GNU")
set(CMAKE_C_COMPILER_VERSION "9.4.0")
set(CMAKE_C_COMPILER_VERSION_INTERNAL "")
set(CMAKE_C_COMPILER_WRAPPER "")
set(CMAKE_C_STANDARD_COMPUTED_DEFAULT "11")
set(CMAKE_C_COMPILE_FEATURES "c_std_90;c_function_prototypes;c_std_99;c_restrict;c_variadic_macros;c_std_11;c_static_assert")
set(CMAKE_C90_COMPILE_FEATURES "c_std_90;c_function_prototypes")
set(CMAKE_C99_COMPILE_FEATURES "c_std_99;c_restrict;c_variadic_macros")
set(CMAKE_C11_COMPILE_FEATURES "c_std_11;c_static_assert")
set(CMAKE_C_PLATFORM_ID "Linux")
set(CMAKE_C_SIMULATE_ID "")
set(CMAKE_C_COMPILER_FRONTEND_VARIANT "")
set(CMAKE_C_SIMULATE_VERSION "")
set(CMAKE_AR "/usr/bin/ar")
set(CMAKE_C_COMPILER_AR "/usr/bin/gcc-ar-9")
set(CMAKE_RANLIB "/usr/bin/ranlib")
set(CMAKE_C_COMPILER_RANLIB "/usr/bin/gcc-ranlib-9")
set(CMAKE_LINKER "/usr/bin/ld")
set(CMAKE_MT "")
set(CMAKE_COMPILER_IS_GNUCC 1)
set(CMAKE_C_COMPILER_LOADED 1)
set(CMAKE_C_COMPILER_WORKS TRUE)
set(CMAKE_C_ABI_COMPILED TRUE)
set(CMAKE_COMPILER_IS_MINGW )
set(CMAKE_COMPILER_IS_CYGWIN )
if(CMAKE_COMPILER_IS_CYGWIN)
set(CYGWIN 1)
set(UNIX 1)
endif()
set(CMAKE_C_COMPILER_ENV_VAR "CC")
if(CMAKE_COMPILER_IS_MINGW)
set(MINGW 1)
endif()
set(CMAKE_C_COMPILER_ID_RUN 1)
set(CMAKE_C_SOURCE_FILE_EXTENSIONS c;m)
set(CMAKE_C_IGNORE_EXTENSIONS h;H;o;O;obj;OBJ;def;DEF;rc;RC)
set(CMAKE_C_LINKER_PREFERENCE 10)
# Save compiler ABI information.
set(CMAKE_C_SIZEOF_DATA_PTR "8")
set(CMAKE_C_COMPILER_ABI "ELF")
set(CMAKE_C_LIBRARY_ARCHITECTURE "x86_64-linux-gnu")
if(CMAKE_C_SIZEOF_DATA_PTR)
set(CMAKE_SIZEOF_VOID_P "${CMAKE_C_SIZEOF_DATA_PTR}")
endif()
if(CMAKE_C_COMPILER_ABI)
set(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_C_COMPILER_ABI}")
endif()
if(CMAKE_C_LIBRARY_ARCHITECTURE)
set(CMAKE_LIBRARY_ARCHITECTURE "x86_64-linux-gnu")
endif()
set(CMAKE_C_CL_SHOWINCLUDES_PREFIX "")
if(CMAKE_C_CL_SHOWINCLUDES_PREFIX)
set(CMAKE_CL_SHOWINCLUDES_PREFIX "${CMAKE_C_CL_SHOWINCLUDES_PREFIX}")
endif()
set(CMAKE_C_IMPLICIT_INCLUDE_DIRECTORIES "/usr/lib/gcc/x86_64-linux-gnu/9/include;/usr/local/include;/usr/include/x86_64-linux-gnu;/usr/include")
set(CMAKE_C_IMPLICIT_LINK_LIBRARIES "gcc;gcc_s;c;gcc;gcc_s")
set(CMAKE_C_IMPLICIT_LINK_DIRECTORIES "/usr/lib/gcc/x86_64-linux-gnu/9;/usr/lib/x86_64-linux-gnu;/usr/lib;/lib/x86_64-linux-gnu;/lib")
set(CMAKE_C_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "")

View File

@ -0,0 +1,88 @@
set(CMAKE_CXX_COMPILER "/usr/bin/c++")
set(CMAKE_CXX_COMPILER_ARG1 "")
set(CMAKE_CXX_COMPILER_ID "GNU")
set(CMAKE_CXX_COMPILER_VERSION "9.4.0")
set(CMAKE_CXX_COMPILER_VERSION_INTERNAL "")
set(CMAKE_CXX_COMPILER_WRAPPER "")
set(CMAKE_CXX_STANDARD_COMPUTED_DEFAULT "14")
set(CMAKE_CXX_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters;cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates;cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates;cxx_std_17;cxx_std_20")
set(CMAKE_CXX98_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters")
set(CMAKE_CXX11_COMPILE_FEATURES "cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates")
set(CMAKE_CXX14_COMPILE_FEATURES "cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates")
set(CMAKE_CXX17_COMPILE_FEATURES "cxx_std_17")
set(CMAKE_CXX20_COMPILE_FEATURES "cxx_std_20")
set(CMAKE_CXX_PLATFORM_ID "Linux")
set(CMAKE_CXX_SIMULATE_ID "")
set(CMAKE_CXX_COMPILER_FRONTEND_VARIANT "")
set(CMAKE_CXX_SIMULATE_VERSION "")
set(CMAKE_AR "/usr/bin/ar")
set(CMAKE_CXX_COMPILER_AR "/usr/bin/gcc-ar-9")
set(CMAKE_RANLIB "/usr/bin/ranlib")
set(CMAKE_CXX_COMPILER_RANLIB "/usr/bin/gcc-ranlib-9")
set(CMAKE_LINKER "/usr/bin/ld")
set(CMAKE_MT "")
set(CMAKE_COMPILER_IS_GNUCXX 1)
set(CMAKE_CXX_COMPILER_LOADED 1)
set(CMAKE_CXX_COMPILER_WORKS TRUE)
set(CMAKE_CXX_ABI_COMPILED TRUE)
set(CMAKE_COMPILER_IS_MINGW )
set(CMAKE_COMPILER_IS_CYGWIN )
if(CMAKE_COMPILER_IS_CYGWIN)
set(CYGWIN 1)
set(UNIX 1)
endif()
set(CMAKE_CXX_COMPILER_ENV_VAR "CXX")
if(CMAKE_COMPILER_IS_MINGW)
set(MINGW 1)
endif()
set(CMAKE_CXX_COMPILER_ID_RUN 1)
set(CMAKE_CXX_SOURCE_FILE_EXTENSIONS C;M;c++;cc;cpp;cxx;m;mm;CPP)
set(CMAKE_CXX_IGNORE_EXTENSIONS inl;h;hpp;HPP;H;o;O;obj;OBJ;def;DEF;rc;RC)
foreach (lang C OBJC OBJCXX)
if (CMAKE_${lang}_COMPILER_ID_RUN)
foreach(extension IN LISTS CMAKE_${lang}_SOURCE_FILE_EXTENSIONS)
list(REMOVE_ITEM CMAKE_CXX_SOURCE_FILE_EXTENSIONS ${extension})
endforeach()
endif()
endforeach()
set(CMAKE_CXX_LINKER_PREFERENCE 30)
set(CMAKE_CXX_LINKER_PREFERENCE_PROPAGATES 1)
# Save compiler ABI information.
set(CMAKE_CXX_SIZEOF_DATA_PTR "8")
set(CMAKE_CXX_COMPILER_ABI "ELF")
set(CMAKE_CXX_LIBRARY_ARCHITECTURE "x86_64-linux-gnu")
if(CMAKE_CXX_SIZEOF_DATA_PTR)
set(CMAKE_SIZEOF_VOID_P "${CMAKE_CXX_SIZEOF_DATA_PTR}")
endif()
if(CMAKE_CXX_COMPILER_ABI)
set(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_CXX_COMPILER_ABI}")
endif()
if(CMAKE_CXX_LIBRARY_ARCHITECTURE)
set(CMAKE_LIBRARY_ARCHITECTURE "x86_64-linux-gnu")
endif()
set(CMAKE_CXX_CL_SHOWINCLUDES_PREFIX "")
if(CMAKE_CXX_CL_SHOWINCLUDES_PREFIX)
set(CMAKE_CL_SHOWINCLUDES_PREFIX "${CMAKE_CXX_CL_SHOWINCLUDES_PREFIX}")
endif()
set(CMAKE_CXX_IMPLICIT_INCLUDE_DIRECTORIES "/usr/include/c++/9;/usr/include/x86_64-linux-gnu/c++/9;/usr/include/c++/9/backward;/usr/lib/gcc/x86_64-linux-gnu/9/include;/usr/local/include;/usr/include/x86_64-linux-gnu;/usr/include")
set(CMAKE_CXX_IMPLICIT_LINK_LIBRARIES "stdc++;m;gcc_s;gcc;c;gcc_s;gcc")
set(CMAKE_CXX_IMPLICIT_LINK_DIRECTORIES "/usr/lib/gcc/x86_64-linux-gnu/9;/usr/lib/x86_64-linux-gnu;/usr/lib;/lib/x86_64-linux-gnu;/lib")
set(CMAKE_CXX_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "")

Binary file not shown.

Binary file not shown.

View File

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

View File

@ -0,0 +1,671 @@
#ifdef __cplusplus
# error "A C++ compiler has been selected for C."
#endif
#if defined(__18CXX)
# define ID_VOID_MAIN
#endif
#if defined(__CLASSIC_C__)
/* cv-qualifiers did not exist in K&R C */
# define const
# define volatile
#endif
/* Version number components: V=Version, R=Revision, P=Patch
Version date components: YYYY=Year, MM=Month, DD=Day */
#if defined(__INTEL_COMPILER) || defined(__ICC)
# define COMPILER_ID "Intel"
# if defined(_MSC_VER)
# define SIMULATE_ID "MSVC"
# endif
# if defined(__GNUC__)
# define SIMULATE_ID "GNU"
# endif
/* __INTEL_COMPILER = VRP */
# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER/100)
# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER/10 % 10)
# if defined(__INTEL_COMPILER_UPDATE)
# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER_UPDATE)
# else
# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER % 10)
# endif
# if defined(__INTEL_COMPILER_BUILD_DATE)
/* __INTEL_COMPILER_BUILD_DATE = YYYYMMDD */
# define COMPILER_VERSION_TWEAK DEC(__INTEL_COMPILER_BUILD_DATE)
# endif
# if defined(_MSC_VER)
/* _MSC_VER = VVRR */
# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100)
# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100)
# endif
# if defined(__GNUC__)
# define SIMULATE_VERSION_MAJOR DEC(__GNUC__)
# elif defined(__GNUG__)
# define SIMULATE_VERSION_MAJOR DEC(__GNUG__)
# endif
# if defined(__GNUC_MINOR__)
# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__)
# endif
# if defined(__GNUC_PATCHLEVEL__)
# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__)
# endif
#elif defined(__PATHCC__)
# define COMPILER_ID "PathScale"
# define COMPILER_VERSION_MAJOR DEC(__PATHCC__)
# define COMPILER_VERSION_MINOR DEC(__PATHCC_MINOR__)
# if defined(__PATHCC_PATCHLEVEL__)
# define COMPILER_VERSION_PATCH DEC(__PATHCC_PATCHLEVEL__)
# endif
#elif defined(__BORLANDC__) && defined(__CODEGEARC_VERSION__)
# define COMPILER_ID "Embarcadero"
# define COMPILER_VERSION_MAJOR HEX(__CODEGEARC_VERSION__>>24 & 0x00FF)
# define COMPILER_VERSION_MINOR HEX(__CODEGEARC_VERSION__>>16 & 0x00FF)
# define COMPILER_VERSION_PATCH DEC(__CODEGEARC_VERSION__ & 0xFFFF)
#elif defined(__BORLANDC__)
# define COMPILER_ID "Borland"
/* __BORLANDC__ = 0xVRR */
# define COMPILER_VERSION_MAJOR HEX(__BORLANDC__>>8)
# define COMPILER_VERSION_MINOR HEX(__BORLANDC__ & 0xFF)
#elif defined(__WATCOMC__) && __WATCOMC__ < 1200
# define COMPILER_ID "Watcom"
/* __WATCOMC__ = VVRR */
# define COMPILER_VERSION_MAJOR DEC(__WATCOMC__ / 100)
# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10)
# if (__WATCOMC__ % 10) > 0
# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10)
# endif
#elif defined(__WATCOMC__)
# define COMPILER_ID "OpenWatcom"
/* __WATCOMC__ = VVRP + 1100 */
# define COMPILER_VERSION_MAJOR DEC((__WATCOMC__ - 1100) / 100)
# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10)
# if (__WATCOMC__ % 10) > 0
# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10)
# endif
#elif defined(__SUNPRO_C)
# define COMPILER_ID "SunPro"
# if __SUNPRO_C >= 0x5100
/* __SUNPRO_C = 0xVRRP */
# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_C>>12)
# define COMPILER_VERSION_MINOR HEX(__SUNPRO_C>>4 & 0xFF)
# define COMPILER_VERSION_PATCH HEX(__SUNPRO_C & 0xF)
# else
/* __SUNPRO_CC = 0xVRP */
# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_C>>8)
# define COMPILER_VERSION_MINOR HEX(__SUNPRO_C>>4 & 0xF)
# define COMPILER_VERSION_PATCH HEX(__SUNPRO_C & 0xF)
# endif
#elif defined(__HP_cc)
# define COMPILER_ID "HP"
/* __HP_cc = VVRRPP */
# define COMPILER_VERSION_MAJOR DEC(__HP_cc/10000)
# define COMPILER_VERSION_MINOR DEC(__HP_cc/100 % 100)
# define COMPILER_VERSION_PATCH DEC(__HP_cc % 100)
#elif defined(__DECC)
# define COMPILER_ID "Compaq"
/* __DECC_VER = VVRRTPPPP */
# define COMPILER_VERSION_MAJOR DEC(__DECC_VER/10000000)
# define COMPILER_VERSION_MINOR DEC(__DECC_VER/100000 % 100)
# define COMPILER_VERSION_PATCH DEC(__DECC_VER % 10000)
#elif defined(__IBMC__) && defined(__COMPILER_VER__)
# define COMPILER_ID "zOS"
/* __IBMC__ = VRP */
# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100)
# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10)
# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10)
#elif defined(__ibmxl__) && defined(__clang__)
# define COMPILER_ID "XLClang"
# define COMPILER_VERSION_MAJOR DEC(__ibmxl_version__)
# define COMPILER_VERSION_MINOR DEC(__ibmxl_release__)
# define COMPILER_VERSION_PATCH DEC(__ibmxl_modification__)
# define COMPILER_VERSION_TWEAK DEC(__ibmxl_ptf_fix_level__)
#elif defined(__IBMC__) && !defined(__COMPILER_VER__) && __IBMC__ >= 800
# define COMPILER_ID "XL"
/* __IBMC__ = VRP */
# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100)
# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10)
# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10)
#elif defined(__IBMC__) && !defined(__COMPILER_VER__) && __IBMC__ < 800
# define COMPILER_ID "VisualAge"
/* __IBMC__ = VRP */
# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100)
# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10)
# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10)
#elif defined(__PGI)
# define COMPILER_ID "PGI"
# define COMPILER_VERSION_MAJOR DEC(__PGIC__)
# define COMPILER_VERSION_MINOR DEC(__PGIC_MINOR__)
# if defined(__PGIC_PATCHLEVEL__)
# define COMPILER_VERSION_PATCH DEC(__PGIC_PATCHLEVEL__)
# endif
#elif defined(_CRAYC)
# define COMPILER_ID "Cray"
# define COMPILER_VERSION_MAJOR DEC(_RELEASE_MAJOR)
# define COMPILER_VERSION_MINOR DEC(_RELEASE_MINOR)
#elif defined(__TI_COMPILER_VERSION__)
# define COMPILER_ID "TI"
/* __TI_COMPILER_VERSION__ = VVVRRRPPP */
# define COMPILER_VERSION_MAJOR DEC(__TI_COMPILER_VERSION__/1000000)
# define COMPILER_VERSION_MINOR DEC(__TI_COMPILER_VERSION__/1000 % 1000)
# define COMPILER_VERSION_PATCH DEC(__TI_COMPILER_VERSION__ % 1000)
#elif defined(__FUJITSU) || defined(__FCC_VERSION) || defined(__fcc_version)
# define COMPILER_ID "Fujitsu"
#elif defined(__ghs__)
# define COMPILER_ID "GHS"
/* __GHS_VERSION_NUMBER = VVVVRP */
# ifdef __GHS_VERSION_NUMBER
# define COMPILER_VERSION_MAJOR DEC(__GHS_VERSION_NUMBER / 100)
# define COMPILER_VERSION_MINOR DEC(__GHS_VERSION_NUMBER / 10 % 10)
# define COMPILER_VERSION_PATCH DEC(__GHS_VERSION_NUMBER % 10)
# endif
#elif defined(__TINYC__)
# define COMPILER_ID "TinyCC"
#elif defined(__BCC__)
# define COMPILER_ID "Bruce"
#elif defined(__SCO_VERSION__)
# define COMPILER_ID "SCO"
#elif defined(__ARMCC_VERSION) && !defined(__clang__)
# define COMPILER_ID "ARMCC"
#if __ARMCC_VERSION >= 1000000
/* __ARMCC_VERSION = VRRPPPP */
# define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/1000000)
# define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 100)
# define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000)
#else
/* __ARMCC_VERSION = VRPPPP */
# define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/100000)
# define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 10)
# define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000)
#endif
#elif defined(__clang__) && defined(__apple_build_version__)
# define COMPILER_ID "AppleClang"
# if defined(_MSC_VER)
# define SIMULATE_ID "MSVC"
# endif
# define COMPILER_VERSION_MAJOR DEC(__clang_major__)
# define COMPILER_VERSION_MINOR DEC(__clang_minor__)
# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__)
# if defined(_MSC_VER)
/* _MSC_VER = VVRR */
# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100)
# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100)
# endif
# define COMPILER_VERSION_TWEAK DEC(__apple_build_version__)
#elif defined(__clang__) && defined(__ARMCOMPILER_VERSION)
# define COMPILER_ID "ARMClang"
# define COMPILER_VERSION_MAJOR DEC(__ARMCOMPILER_VERSION/1000000)
# define COMPILER_VERSION_MINOR DEC(__ARMCOMPILER_VERSION/10000 % 100)
# define COMPILER_VERSION_PATCH DEC(__ARMCOMPILER_VERSION % 10000)
# define COMPILER_VERSION_INTERNAL DEC(__ARMCOMPILER_VERSION)
#elif defined(__clang__)
# define COMPILER_ID "Clang"
# if defined(_MSC_VER)
# define SIMULATE_ID "MSVC"
# endif
# define COMPILER_VERSION_MAJOR DEC(__clang_major__)
# define COMPILER_VERSION_MINOR DEC(__clang_minor__)
# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__)
# if defined(_MSC_VER)
/* _MSC_VER = VVRR */
# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100)
# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100)
# endif
#elif defined(__GNUC__)
# define COMPILER_ID "GNU"
# define COMPILER_VERSION_MAJOR DEC(__GNUC__)
# if defined(__GNUC_MINOR__)
# define COMPILER_VERSION_MINOR DEC(__GNUC_MINOR__)
# endif
# if defined(__GNUC_PATCHLEVEL__)
# define COMPILER_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__)
# endif
#elif defined(_MSC_VER)
# define COMPILER_ID "MSVC"
/* _MSC_VER = VVRR */
# define COMPILER_VERSION_MAJOR DEC(_MSC_VER / 100)
# define COMPILER_VERSION_MINOR DEC(_MSC_VER % 100)
# if defined(_MSC_FULL_VER)
# if _MSC_VER >= 1400
/* _MSC_FULL_VER = VVRRPPPPP */
# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 100000)
# else
/* _MSC_FULL_VER = VVRRPPPP */
# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 10000)
# endif
# endif
# if defined(_MSC_BUILD)
# define COMPILER_VERSION_TWEAK DEC(_MSC_BUILD)
# endif
#elif defined(__VISUALDSPVERSION__) || defined(__ADSPBLACKFIN__) || defined(__ADSPTS__) || defined(__ADSP21000__)
# define COMPILER_ID "ADSP"
#if defined(__VISUALDSPVERSION__)
/* __VISUALDSPVERSION__ = 0xVVRRPP00 */
# define COMPILER_VERSION_MAJOR HEX(__VISUALDSPVERSION__>>24)
# define COMPILER_VERSION_MINOR HEX(__VISUALDSPVERSION__>>16 & 0xFF)
# define COMPILER_VERSION_PATCH HEX(__VISUALDSPVERSION__>>8 & 0xFF)
#endif
#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC)
# define COMPILER_ID "IAR"
# if defined(__VER__) && defined(__ICCARM__)
# define COMPILER_VERSION_MAJOR DEC((__VER__) / 1000000)
# define COMPILER_VERSION_MINOR DEC(((__VER__) / 1000) % 1000)
# define COMPILER_VERSION_PATCH DEC((__VER__) % 1000)
# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__)
# elif defined(__VER__) && (defined(__ICCAVR__) || defined(__ICCRX__) || defined(__ICCRH850__) || defined(__ICCRL78__) || defined(__ICC430__) || defined(__ICCRISCV__) || defined(__ICCV850__) || defined(__ICC8051__))
# define COMPILER_VERSION_MAJOR DEC((__VER__) / 100)
# define COMPILER_VERSION_MINOR DEC((__VER__) - (((__VER__) / 100)*100))
# define COMPILER_VERSION_PATCH DEC(__SUBVERSION__)
# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__)
# endif
#elif defined(__SDCC_VERSION_MAJOR) || defined(SDCC)
# define COMPILER_ID "SDCC"
# if defined(__SDCC_VERSION_MAJOR)
# define COMPILER_VERSION_MAJOR DEC(__SDCC_VERSION_MAJOR)
# define COMPILER_VERSION_MINOR DEC(__SDCC_VERSION_MINOR)
# define COMPILER_VERSION_PATCH DEC(__SDCC_VERSION_PATCH)
# else
/* SDCC = VRP */
# define COMPILER_VERSION_MAJOR DEC(SDCC/100)
# define COMPILER_VERSION_MINOR DEC(SDCC/10 % 10)
# define COMPILER_VERSION_PATCH DEC(SDCC % 10)
# endif
/* These compilers are either not known or too old to define an
identification macro. Try to identify the platform and guess that
it is the native compiler. */
#elif defined(__hpux) || defined(__hpua)
# define COMPILER_ID "HP"
#else /* unknown compiler */
# define COMPILER_ID ""
#endif
/* Construct the string literal in pieces to prevent the source from
getting matched. Store it in a pointer rather than an array
because some compilers will just produce instructions to fill the
array rather than assigning a pointer to a static array. */
char const* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]";
#ifdef SIMULATE_ID
char const* info_simulate = "INFO" ":" "simulate[" SIMULATE_ID "]";
#endif
#ifdef __QNXNTO__
char const* qnxnto = "INFO" ":" "qnxnto[]";
#endif
#if defined(__CRAYXE) || defined(__CRAYXC)
char const *info_cray = "INFO" ":" "compiler_wrapper[CrayPrgEnv]";
#endif
#define STRINGIFY_HELPER(X) #X
#define STRINGIFY(X) STRINGIFY_HELPER(X)
/* Identify known platforms by name. */
#if defined(__linux) || defined(__linux__) || defined(linux)
# define PLATFORM_ID "Linux"
#elif defined(__CYGWIN__)
# define PLATFORM_ID "Cygwin"
#elif defined(__MINGW32__)
# define PLATFORM_ID "MinGW"
#elif defined(__APPLE__)
# define PLATFORM_ID "Darwin"
#elif defined(_WIN32) || defined(__WIN32__) || defined(WIN32)
# define PLATFORM_ID "Windows"
#elif defined(__FreeBSD__) || defined(__FreeBSD)
# define PLATFORM_ID "FreeBSD"
#elif defined(__NetBSD__) || defined(__NetBSD)
# define PLATFORM_ID "NetBSD"
#elif defined(__OpenBSD__) || defined(__OPENBSD)
# define PLATFORM_ID "OpenBSD"
#elif defined(__sun) || defined(sun)
# define PLATFORM_ID "SunOS"
#elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__)
# define PLATFORM_ID "AIX"
#elif defined(__hpux) || defined(__hpux__)
# define PLATFORM_ID "HP-UX"
#elif defined(__HAIKU__)
# define PLATFORM_ID "Haiku"
#elif defined(__BeOS) || defined(__BEOS__) || defined(_BEOS)
# define PLATFORM_ID "BeOS"
#elif defined(__QNX__) || defined(__QNXNTO__)
# define PLATFORM_ID "QNX"
#elif defined(__tru64) || defined(_tru64) || defined(__TRU64__)
# define PLATFORM_ID "Tru64"
#elif defined(__riscos) || defined(__riscos__)
# define PLATFORM_ID "RISCos"
#elif defined(__sinix) || defined(__sinix__) || defined(__SINIX__)
# define PLATFORM_ID "SINIX"
#elif defined(__UNIX_SV__)
# define PLATFORM_ID "UNIX_SV"
#elif defined(__bsdos__)
# define PLATFORM_ID "BSDOS"
#elif defined(_MPRAS) || defined(MPRAS)
# define PLATFORM_ID "MP-RAS"
#elif defined(__osf) || defined(__osf__)
# define PLATFORM_ID "OSF1"
#elif defined(_SCO_SV) || defined(SCO_SV) || defined(sco_sv)
# define PLATFORM_ID "SCO_SV"
#elif defined(__ultrix) || defined(__ultrix__) || defined(_ULTRIX)
# define PLATFORM_ID "ULTRIX"
#elif defined(__XENIX__) || defined(_XENIX) || defined(XENIX)
# define PLATFORM_ID "Xenix"
#elif defined(__WATCOMC__)
# if defined(__LINUX__)
# define PLATFORM_ID "Linux"
# elif defined(__DOS__)
# define PLATFORM_ID "DOS"
# elif defined(__OS2__)
# define PLATFORM_ID "OS2"
# elif defined(__WINDOWS__)
# define PLATFORM_ID "Windows3x"
# else /* unknown platform */
# define PLATFORM_ID
# endif
#elif defined(__INTEGRITY)
# if defined(INT_178B)
# define PLATFORM_ID "Integrity178"
# else /* regular Integrity */
# define PLATFORM_ID "Integrity"
# endif
#else /* unknown platform */
# define PLATFORM_ID
#endif
/* For windows compilers MSVC and Intel we can determine
the architecture of the compiler being used. This is because
the compilers do not have flags that can change the architecture,
but rather depend on which compiler is being used
*/
#if defined(_WIN32) && defined(_MSC_VER)
# if defined(_M_IA64)
# define ARCHITECTURE_ID "IA64"
# elif defined(_M_X64) || defined(_M_AMD64)
# define ARCHITECTURE_ID "x64"
# elif defined(_M_IX86)
# define ARCHITECTURE_ID "X86"
# elif defined(_M_ARM64)
# define ARCHITECTURE_ID "ARM64"
# elif defined(_M_ARM)
# if _M_ARM == 4
# define ARCHITECTURE_ID "ARMV4I"
# elif _M_ARM == 5
# define ARCHITECTURE_ID "ARMV5I"
# else
# define ARCHITECTURE_ID "ARMV" STRINGIFY(_M_ARM)
# endif
# elif defined(_M_MIPS)
# define ARCHITECTURE_ID "MIPS"
# elif defined(_M_SH)
# define ARCHITECTURE_ID "SHx"
# else /* unknown architecture */
# define ARCHITECTURE_ID ""
# endif
#elif defined(__WATCOMC__)
# if defined(_M_I86)
# define ARCHITECTURE_ID "I86"
# elif defined(_M_IX86)
# define ARCHITECTURE_ID "X86"
# else /* unknown architecture */
# define ARCHITECTURE_ID ""
# endif
#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC)
# if defined(__ICCARM__)
# define ARCHITECTURE_ID "ARM"
# elif defined(__ICCRX__)
# define ARCHITECTURE_ID "RX"
# elif defined(__ICCRH850__)
# define ARCHITECTURE_ID "RH850"
# elif defined(__ICCRL78__)
# define ARCHITECTURE_ID "RL78"
# elif defined(__ICCRISCV__)
# define ARCHITECTURE_ID "RISCV"
# elif defined(__ICCAVR__)
# define ARCHITECTURE_ID "AVR"
# elif defined(__ICC430__)
# define ARCHITECTURE_ID "MSP430"
# elif defined(__ICCV850__)
# define ARCHITECTURE_ID "V850"
# elif defined(__ICC8051__)
# define ARCHITECTURE_ID "8051"
# else /* unknown architecture */
# define ARCHITECTURE_ID ""
# endif
#elif defined(__ghs__)
# if defined(__PPC64__)
# define ARCHITECTURE_ID "PPC64"
# elif defined(__ppc__)
# define ARCHITECTURE_ID "PPC"
# elif defined(__ARM__)
# define ARCHITECTURE_ID "ARM"
# elif defined(__x86_64__)
# define ARCHITECTURE_ID "x64"
# elif defined(__i386__)
# define ARCHITECTURE_ID "X86"
# else /* unknown architecture */
# define ARCHITECTURE_ID ""
# endif
#else
# define ARCHITECTURE_ID
#endif
/* Convert integer to decimal digit literals. */
#define DEC(n) \
('0' + (((n) / 10000000)%10)), \
('0' + (((n) / 1000000)%10)), \
('0' + (((n) / 100000)%10)), \
('0' + (((n) / 10000)%10)), \
('0' + (((n) / 1000)%10)), \
('0' + (((n) / 100)%10)), \
('0' + (((n) / 10)%10)), \
('0' + ((n) % 10))
/* Convert integer to hex digit literals. */
#define HEX(n) \
('0' + ((n)>>28 & 0xF)), \
('0' + ((n)>>24 & 0xF)), \
('0' + ((n)>>20 & 0xF)), \
('0' + ((n)>>16 & 0xF)), \
('0' + ((n)>>12 & 0xF)), \
('0' + ((n)>>8 & 0xF)), \
('0' + ((n)>>4 & 0xF)), \
('0' + ((n) & 0xF))
/* Construct a string literal encoding the version number components. */
#ifdef COMPILER_VERSION_MAJOR
char const info_version[] = {
'I', 'N', 'F', 'O', ':',
'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','[',
COMPILER_VERSION_MAJOR,
# ifdef COMPILER_VERSION_MINOR
'.', COMPILER_VERSION_MINOR,
# ifdef COMPILER_VERSION_PATCH
'.', COMPILER_VERSION_PATCH,
# ifdef COMPILER_VERSION_TWEAK
'.', COMPILER_VERSION_TWEAK,
# endif
# endif
# endif
']','\0'};
#endif
/* Construct a string literal encoding the internal version number. */
#ifdef COMPILER_VERSION_INTERNAL
char const info_version_internal[] = {
'I', 'N', 'F', 'O', ':',
'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','_',
'i','n','t','e','r','n','a','l','[',
COMPILER_VERSION_INTERNAL,']','\0'};
#endif
/* Construct a string literal encoding the version number components. */
#ifdef SIMULATE_VERSION_MAJOR
char const info_simulate_version[] = {
'I', 'N', 'F', 'O', ':',
's','i','m','u','l','a','t','e','_','v','e','r','s','i','o','n','[',
SIMULATE_VERSION_MAJOR,
# ifdef SIMULATE_VERSION_MINOR
'.', SIMULATE_VERSION_MINOR,
# ifdef SIMULATE_VERSION_PATCH
'.', SIMULATE_VERSION_PATCH,
# ifdef SIMULATE_VERSION_TWEAK
'.', SIMULATE_VERSION_TWEAK,
# endif
# endif
# endif
']','\0'};
#endif
/* Construct the string literal in pieces to prevent the source from
getting matched. Store it in a pointer rather than an array
because some compilers will just produce instructions to fill the
array rather than assigning a pointer to a static array. */
char const* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]";
char const* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]";
#if !defined(__STDC__)
# if (defined(_MSC_VER) && !defined(__clang__)) \
|| (defined(__ibmxl__) || defined(__IBMC__))
# define C_DIALECT "90"
# else
# define C_DIALECT
# endif
#elif __STDC_VERSION__ >= 201000L
# define C_DIALECT "11"
#elif __STDC_VERSION__ >= 199901L
# define C_DIALECT "99"
#else
# define C_DIALECT "90"
#endif
const char* info_language_dialect_default =
"INFO" ":" "dialect_default[" C_DIALECT "]";
/*--------------------------------------------------------------------------*/
#ifdef ID_VOID_MAIN
void main() {}
#else
# if defined(__CLASSIC_C__)
int main(argc, argv) int argc; char *argv[];
# else
int main(int argc, char* argv[])
# endif
{
int require = 0;
require += info_compiler[argc];
require += info_platform[argc];
require += info_arch[argc];
#ifdef COMPILER_VERSION_MAJOR
require += info_version[argc];
#endif
#ifdef COMPILER_VERSION_INTERNAL
require += info_version_internal[argc];
#endif
#ifdef SIMULATE_ID
require += info_simulate[argc];
#endif
#ifdef SIMULATE_VERSION_MAJOR
require += info_simulate_version[argc];
#endif
#if defined(__CRAYXE) || defined(__CRAYXC)
require += info_cray[argc];
#endif
require += info_language_dialect_default[argc];
(void)argv;
return require;
}
#endif

Binary file not shown.

View File

@ -0,0 +1,660 @@
/* This source file must have a .cpp extension so that all C++ compilers
recognize the extension without flags. Borland does not know .cxx for
example. */
#ifndef __cplusplus
# error "A C compiler has been selected for C++."
#endif
/* Version number components: V=Version, R=Revision, P=Patch
Version date components: YYYY=Year, MM=Month, DD=Day */
#if defined(__COMO__)
# define COMPILER_ID "Comeau"
/* __COMO_VERSION__ = VRR */
# define COMPILER_VERSION_MAJOR DEC(__COMO_VERSION__ / 100)
# define COMPILER_VERSION_MINOR DEC(__COMO_VERSION__ % 100)
#elif defined(__INTEL_COMPILER) || defined(__ICC)
# define COMPILER_ID "Intel"
# if defined(_MSC_VER)
# define SIMULATE_ID "MSVC"
# endif
# if defined(__GNUC__)
# define SIMULATE_ID "GNU"
# endif
/* __INTEL_COMPILER = VRP */
# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER/100)
# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER/10 % 10)
# if defined(__INTEL_COMPILER_UPDATE)
# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER_UPDATE)
# else
# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER % 10)
# endif
# if defined(__INTEL_COMPILER_BUILD_DATE)
/* __INTEL_COMPILER_BUILD_DATE = YYYYMMDD */
# define COMPILER_VERSION_TWEAK DEC(__INTEL_COMPILER_BUILD_DATE)
# endif
# if defined(_MSC_VER)
/* _MSC_VER = VVRR */
# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100)
# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100)
# endif
# if defined(__GNUC__)
# define SIMULATE_VERSION_MAJOR DEC(__GNUC__)
# elif defined(__GNUG__)
# define SIMULATE_VERSION_MAJOR DEC(__GNUG__)
# endif
# if defined(__GNUC_MINOR__)
# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__)
# endif
# if defined(__GNUC_PATCHLEVEL__)
# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__)
# endif
#elif defined(__PATHCC__)
# define COMPILER_ID "PathScale"
# define COMPILER_VERSION_MAJOR DEC(__PATHCC__)
# define COMPILER_VERSION_MINOR DEC(__PATHCC_MINOR__)
# if defined(__PATHCC_PATCHLEVEL__)
# define COMPILER_VERSION_PATCH DEC(__PATHCC_PATCHLEVEL__)
# endif
#elif defined(__BORLANDC__) && defined(__CODEGEARC_VERSION__)
# define COMPILER_ID "Embarcadero"
# define COMPILER_VERSION_MAJOR HEX(__CODEGEARC_VERSION__>>24 & 0x00FF)
# define COMPILER_VERSION_MINOR HEX(__CODEGEARC_VERSION__>>16 & 0x00FF)
# define COMPILER_VERSION_PATCH DEC(__CODEGEARC_VERSION__ & 0xFFFF)
#elif defined(__BORLANDC__)
# define COMPILER_ID "Borland"
/* __BORLANDC__ = 0xVRR */
# define COMPILER_VERSION_MAJOR HEX(__BORLANDC__>>8)
# define COMPILER_VERSION_MINOR HEX(__BORLANDC__ & 0xFF)
#elif defined(__WATCOMC__) && __WATCOMC__ < 1200
# define COMPILER_ID "Watcom"
/* __WATCOMC__ = VVRR */
# define COMPILER_VERSION_MAJOR DEC(__WATCOMC__ / 100)
# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10)
# if (__WATCOMC__ % 10) > 0
# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10)
# endif
#elif defined(__WATCOMC__)
# define COMPILER_ID "OpenWatcom"
/* __WATCOMC__ = VVRP + 1100 */
# define COMPILER_VERSION_MAJOR DEC((__WATCOMC__ - 1100) / 100)
# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10)
# if (__WATCOMC__ % 10) > 0
# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10)
# endif
#elif defined(__SUNPRO_CC)
# define COMPILER_ID "SunPro"
# if __SUNPRO_CC >= 0x5100
/* __SUNPRO_CC = 0xVRRP */
# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_CC>>12)
# define COMPILER_VERSION_MINOR HEX(__SUNPRO_CC>>4 & 0xFF)
# define COMPILER_VERSION_PATCH HEX(__SUNPRO_CC & 0xF)
# else
/* __SUNPRO_CC = 0xVRP */
# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_CC>>8)
# define COMPILER_VERSION_MINOR HEX(__SUNPRO_CC>>4 & 0xF)
# define COMPILER_VERSION_PATCH HEX(__SUNPRO_CC & 0xF)
# endif
#elif defined(__HP_aCC)
# define COMPILER_ID "HP"
/* __HP_aCC = VVRRPP */
# define COMPILER_VERSION_MAJOR DEC(__HP_aCC/10000)
# define COMPILER_VERSION_MINOR DEC(__HP_aCC/100 % 100)
# define COMPILER_VERSION_PATCH DEC(__HP_aCC % 100)
#elif defined(__DECCXX)
# define COMPILER_ID "Compaq"
/* __DECCXX_VER = VVRRTPPPP */
# define COMPILER_VERSION_MAJOR DEC(__DECCXX_VER/10000000)
# define COMPILER_VERSION_MINOR DEC(__DECCXX_VER/100000 % 100)
# define COMPILER_VERSION_PATCH DEC(__DECCXX_VER % 10000)
#elif defined(__IBMCPP__) && defined(__COMPILER_VER__)
# define COMPILER_ID "zOS"
/* __IBMCPP__ = VRP */
# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100)
# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10)
# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10)
#elif defined(__ibmxl__) && defined(__clang__)
# define COMPILER_ID "XLClang"
# define COMPILER_VERSION_MAJOR DEC(__ibmxl_version__)
# define COMPILER_VERSION_MINOR DEC(__ibmxl_release__)
# define COMPILER_VERSION_PATCH DEC(__ibmxl_modification__)
# define COMPILER_VERSION_TWEAK DEC(__ibmxl_ptf_fix_level__)
#elif defined(__IBMCPP__) && !defined(__COMPILER_VER__) && __IBMCPP__ >= 800
# define COMPILER_ID "XL"
/* __IBMCPP__ = VRP */
# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100)
# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10)
# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10)
#elif defined(__IBMCPP__) && !defined(__COMPILER_VER__) && __IBMCPP__ < 800
# define COMPILER_ID "VisualAge"
/* __IBMCPP__ = VRP */
# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100)
# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10)
# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10)
#elif defined(__PGI)
# define COMPILER_ID "PGI"
# define COMPILER_VERSION_MAJOR DEC(__PGIC__)
# define COMPILER_VERSION_MINOR DEC(__PGIC_MINOR__)
# if defined(__PGIC_PATCHLEVEL__)
# define COMPILER_VERSION_PATCH DEC(__PGIC_PATCHLEVEL__)
# endif
#elif defined(_CRAYC)
# define COMPILER_ID "Cray"
# define COMPILER_VERSION_MAJOR DEC(_RELEASE_MAJOR)
# define COMPILER_VERSION_MINOR DEC(_RELEASE_MINOR)
#elif defined(__TI_COMPILER_VERSION__)
# define COMPILER_ID "TI"
/* __TI_COMPILER_VERSION__ = VVVRRRPPP */
# define COMPILER_VERSION_MAJOR DEC(__TI_COMPILER_VERSION__/1000000)
# define COMPILER_VERSION_MINOR DEC(__TI_COMPILER_VERSION__/1000 % 1000)
# define COMPILER_VERSION_PATCH DEC(__TI_COMPILER_VERSION__ % 1000)
#elif defined(__FUJITSU) || defined(__FCC_VERSION) || defined(__fcc_version)
# define COMPILER_ID "Fujitsu"
#elif defined(__ghs__)
# define COMPILER_ID "GHS"
/* __GHS_VERSION_NUMBER = VVVVRP */
# ifdef __GHS_VERSION_NUMBER
# define COMPILER_VERSION_MAJOR DEC(__GHS_VERSION_NUMBER / 100)
# define COMPILER_VERSION_MINOR DEC(__GHS_VERSION_NUMBER / 10 % 10)
# define COMPILER_VERSION_PATCH DEC(__GHS_VERSION_NUMBER % 10)
# endif
#elif defined(__SCO_VERSION__)
# define COMPILER_ID "SCO"
#elif defined(__ARMCC_VERSION) && !defined(__clang__)
# define COMPILER_ID "ARMCC"
#if __ARMCC_VERSION >= 1000000
/* __ARMCC_VERSION = VRRPPPP */
# define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/1000000)
# define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 100)
# define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000)
#else
/* __ARMCC_VERSION = VRPPPP */
# define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/100000)
# define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 10)
# define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000)
#endif
#elif defined(__clang__) && defined(__apple_build_version__)
# define COMPILER_ID "AppleClang"
# if defined(_MSC_VER)
# define SIMULATE_ID "MSVC"
# endif
# define COMPILER_VERSION_MAJOR DEC(__clang_major__)
# define COMPILER_VERSION_MINOR DEC(__clang_minor__)
# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__)
# if defined(_MSC_VER)
/* _MSC_VER = VVRR */
# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100)
# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100)
# endif
# define COMPILER_VERSION_TWEAK DEC(__apple_build_version__)
#elif defined(__clang__) && defined(__ARMCOMPILER_VERSION)
# define COMPILER_ID "ARMClang"
# define COMPILER_VERSION_MAJOR DEC(__ARMCOMPILER_VERSION/1000000)
# define COMPILER_VERSION_MINOR DEC(__ARMCOMPILER_VERSION/10000 % 100)
# define COMPILER_VERSION_PATCH DEC(__ARMCOMPILER_VERSION % 10000)
# define COMPILER_VERSION_INTERNAL DEC(__ARMCOMPILER_VERSION)
#elif defined(__clang__)
# define COMPILER_ID "Clang"
# if defined(_MSC_VER)
# define SIMULATE_ID "MSVC"
# endif
# define COMPILER_VERSION_MAJOR DEC(__clang_major__)
# define COMPILER_VERSION_MINOR DEC(__clang_minor__)
# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__)
# if defined(_MSC_VER)
/* _MSC_VER = VVRR */
# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100)
# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100)
# endif
#elif defined(__GNUC__) || defined(__GNUG__)
# define COMPILER_ID "GNU"
# if defined(__GNUC__)
# define COMPILER_VERSION_MAJOR DEC(__GNUC__)
# else
# define COMPILER_VERSION_MAJOR DEC(__GNUG__)
# endif
# if defined(__GNUC_MINOR__)
# define COMPILER_VERSION_MINOR DEC(__GNUC_MINOR__)
# endif
# if defined(__GNUC_PATCHLEVEL__)
# define COMPILER_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__)
# endif
#elif defined(_MSC_VER)
# define COMPILER_ID "MSVC"
/* _MSC_VER = VVRR */
# define COMPILER_VERSION_MAJOR DEC(_MSC_VER / 100)
# define COMPILER_VERSION_MINOR DEC(_MSC_VER % 100)
# if defined(_MSC_FULL_VER)
# if _MSC_VER >= 1400
/* _MSC_FULL_VER = VVRRPPPPP */
# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 100000)
# else
/* _MSC_FULL_VER = VVRRPPPP */
# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 10000)
# endif
# endif
# if defined(_MSC_BUILD)
# define COMPILER_VERSION_TWEAK DEC(_MSC_BUILD)
# endif
#elif defined(__VISUALDSPVERSION__) || defined(__ADSPBLACKFIN__) || defined(__ADSPTS__) || defined(__ADSP21000__)
# define COMPILER_ID "ADSP"
#if defined(__VISUALDSPVERSION__)
/* __VISUALDSPVERSION__ = 0xVVRRPP00 */
# define COMPILER_VERSION_MAJOR HEX(__VISUALDSPVERSION__>>24)
# define COMPILER_VERSION_MINOR HEX(__VISUALDSPVERSION__>>16 & 0xFF)
# define COMPILER_VERSION_PATCH HEX(__VISUALDSPVERSION__>>8 & 0xFF)
#endif
#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC)
# define COMPILER_ID "IAR"
# if defined(__VER__) && defined(__ICCARM__)
# define COMPILER_VERSION_MAJOR DEC((__VER__) / 1000000)
# define COMPILER_VERSION_MINOR DEC(((__VER__) / 1000) % 1000)
# define COMPILER_VERSION_PATCH DEC((__VER__) % 1000)
# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__)
# elif defined(__VER__) && (defined(__ICCAVR__) || defined(__ICCRX__) || defined(__ICCRH850__) || defined(__ICCRL78__) || defined(__ICC430__) || defined(__ICCRISCV__) || defined(__ICCV850__) || defined(__ICC8051__))
# define COMPILER_VERSION_MAJOR DEC((__VER__) / 100)
# define COMPILER_VERSION_MINOR DEC((__VER__) - (((__VER__) / 100)*100))
# define COMPILER_VERSION_PATCH DEC(__SUBVERSION__)
# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__)
# endif
/* These compilers are either not known or too old to define an
identification macro. Try to identify the platform and guess that
it is the native compiler. */
#elif defined(__hpux) || defined(__hpua)
# define COMPILER_ID "HP"
#else /* unknown compiler */
# define COMPILER_ID ""
#endif
/* Construct the string literal in pieces to prevent the source from
getting matched. Store it in a pointer rather than an array
because some compilers will just produce instructions to fill the
array rather than assigning a pointer to a static array. */
char const* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]";
#ifdef SIMULATE_ID
char const* info_simulate = "INFO" ":" "simulate[" SIMULATE_ID "]";
#endif
#ifdef __QNXNTO__
char const* qnxnto = "INFO" ":" "qnxnto[]";
#endif
#if defined(__CRAYXE) || defined(__CRAYXC)
char const *info_cray = "INFO" ":" "compiler_wrapper[CrayPrgEnv]";
#endif
#define STRINGIFY_HELPER(X) #X
#define STRINGIFY(X) STRINGIFY_HELPER(X)
/* Identify known platforms by name. */
#if defined(__linux) || defined(__linux__) || defined(linux)
# define PLATFORM_ID "Linux"
#elif defined(__CYGWIN__)
# define PLATFORM_ID "Cygwin"
#elif defined(__MINGW32__)
# define PLATFORM_ID "MinGW"
#elif defined(__APPLE__)
# define PLATFORM_ID "Darwin"
#elif defined(_WIN32) || defined(__WIN32__) || defined(WIN32)
# define PLATFORM_ID "Windows"
#elif defined(__FreeBSD__) || defined(__FreeBSD)
# define PLATFORM_ID "FreeBSD"
#elif defined(__NetBSD__) || defined(__NetBSD)
# define PLATFORM_ID "NetBSD"
#elif defined(__OpenBSD__) || defined(__OPENBSD)
# define PLATFORM_ID "OpenBSD"
#elif defined(__sun) || defined(sun)
# define PLATFORM_ID "SunOS"
#elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__)
# define PLATFORM_ID "AIX"
#elif defined(__hpux) || defined(__hpux__)
# define PLATFORM_ID "HP-UX"
#elif defined(__HAIKU__)
# define PLATFORM_ID "Haiku"
#elif defined(__BeOS) || defined(__BEOS__) || defined(_BEOS)
# define PLATFORM_ID "BeOS"
#elif defined(__QNX__) || defined(__QNXNTO__)
# define PLATFORM_ID "QNX"
#elif defined(__tru64) || defined(_tru64) || defined(__TRU64__)
# define PLATFORM_ID "Tru64"
#elif defined(__riscos) || defined(__riscos__)
# define PLATFORM_ID "RISCos"
#elif defined(__sinix) || defined(__sinix__) || defined(__SINIX__)
# define PLATFORM_ID "SINIX"
#elif defined(__UNIX_SV__)
# define PLATFORM_ID "UNIX_SV"
#elif defined(__bsdos__)
# define PLATFORM_ID "BSDOS"
#elif defined(_MPRAS) || defined(MPRAS)
# define PLATFORM_ID "MP-RAS"
#elif defined(__osf) || defined(__osf__)
# define PLATFORM_ID "OSF1"
#elif defined(_SCO_SV) || defined(SCO_SV) || defined(sco_sv)
# define PLATFORM_ID "SCO_SV"
#elif defined(__ultrix) || defined(__ultrix__) || defined(_ULTRIX)
# define PLATFORM_ID "ULTRIX"
#elif defined(__XENIX__) || defined(_XENIX) || defined(XENIX)
# define PLATFORM_ID "Xenix"
#elif defined(__WATCOMC__)
# if defined(__LINUX__)
# define PLATFORM_ID "Linux"
# elif defined(__DOS__)
# define PLATFORM_ID "DOS"
# elif defined(__OS2__)
# define PLATFORM_ID "OS2"
# elif defined(__WINDOWS__)
# define PLATFORM_ID "Windows3x"
# else /* unknown platform */
# define PLATFORM_ID
# endif
#elif defined(__INTEGRITY)
# if defined(INT_178B)
# define PLATFORM_ID "Integrity178"
# else /* regular Integrity */
# define PLATFORM_ID "Integrity"
# endif
#else /* unknown platform */
# define PLATFORM_ID
#endif
/* For windows compilers MSVC and Intel we can determine
the architecture of the compiler being used. This is because
the compilers do not have flags that can change the architecture,
but rather depend on which compiler is being used
*/
#if defined(_WIN32) && defined(_MSC_VER)
# if defined(_M_IA64)
# define ARCHITECTURE_ID "IA64"
# elif defined(_M_X64) || defined(_M_AMD64)
# define ARCHITECTURE_ID "x64"
# elif defined(_M_IX86)
# define ARCHITECTURE_ID "X86"
# elif defined(_M_ARM64)
# define ARCHITECTURE_ID "ARM64"
# elif defined(_M_ARM)
# if _M_ARM == 4
# define ARCHITECTURE_ID "ARMV4I"
# elif _M_ARM == 5
# define ARCHITECTURE_ID "ARMV5I"
# else
# define ARCHITECTURE_ID "ARMV" STRINGIFY(_M_ARM)
# endif
# elif defined(_M_MIPS)
# define ARCHITECTURE_ID "MIPS"
# elif defined(_M_SH)
# define ARCHITECTURE_ID "SHx"
# else /* unknown architecture */
# define ARCHITECTURE_ID ""
# endif
#elif defined(__WATCOMC__)
# if defined(_M_I86)
# define ARCHITECTURE_ID "I86"
# elif defined(_M_IX86)
# define ARCHITECTURE_ID "X86"
# else /* unknown architecture */
# define ARCHITECTURE_ID ""
# endif
#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC)
# if defined(__ICCARM__)
# define ARCHITECTURE_ID "ARM"
# elif defined(__ICCRX__)
# define ARCHITECTURE_ID "RX"
# elif defined(__ICCRH850__)
# define ARCHITECTURE_ID "RH850"
# elif defined(__ICCRL78__)
# define ARCHITECTURE_ID "RL78"
# elif defined(__ICCRISCV__)
# define ARCHITECTURE_ID "RISCV"
# elif defined(__ICCAVR__)
# define ARCHITECTURE_ID "AVR"
# elif defined(__ICC430__)
# define ARCHITECTURE_ID "MSP430"
# elif defined(__ICCV850__)
# define ARCHITECTURE_ID "V850"
# elif defined(__ICC8051__)
# define ARCHITECTURE_ID "8051"
# else /* unknown architecture */
# define ARCHITECTURE_ID ""
# endif
#elif defined(__ghs__)
# if defined(__PPC64__)
# define ARCHITECTURE_ID "PPC64"
# elif defined(__ppc__)
# define ARCHITECTURE_ID "PPC"
# elif defined(__ARM__)
# define ARCHITECTURE_ID "ARM"
# elif defined(__x86_64__)
# define ARCHITECTURE_ID "x64"
# elif defined(__i386__)
# define ARCHITECTURE_ID "X86"
# else /* unknown architecture */
# define ARCHITECTURE_ID ""
# endif
#else
# define ARCHITECTURE_ID
#endif
/* Convert integer to decimal digit literals. */
#define DEC(n) \
('0' + (((n) / 10000000)%10)), \
('0' + (((n) / 1000000)%10)), \
('0' + (((n) / 100000)%10)), \
('0' + (((n) / 10000)%10)), \
('0' + (((n) / 1000)%10)), \
('0' + (((n) / 100)%10)), \
('0' + (((n) / 10)%10)), \
('0' + ((n) % 10))
/* Convert integer to hex digit literals. */
#define HEX(n) \
('0' + ((n)>>28 & 0xF)), \
('0' + ((n)>>24 & 0xF)), \
('0' + ((n)>>20 & 0xF)), \
('0' + ((n)>>16 & 0xF)), \
('0' + ((n)>>12 & 0xF)), \
('0' + ((n)>>8 & 0xF)), \
('0' + ((n)>>4 & 0xF)), \
('0' + ((n) & 0xF))
/* Construct a string literal encoding the version number components. */
#ifdef COMPILER_VERSION_MAJOR
char const info_version[] = {
'I', 'N', 'F', 'O', ':',
'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','[',
COMPILER_VERSION_MAJOR,
# ifdef COMPILER_VERSION_MINOR
'.', COMPILER_VERSION_MINOR,
# ifdef COMPILER_VERSION_PATCH
'.', COMPILER_VERSION_PATCH,
# ifdef COMPILER_VERSION_TWEAK
'.', COMPILER_VERSION_TWEAK,
# endif
# endif
# endif
']','\0'};
#endif
/* Construct a string literal encoding the internal version number. */
#ifdef COMPILER_VERSION_INTERNAL
char const info_version_internal[] = {
'I', 'N', 'F', 'O', ':',
'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','_',
'i','n','t','e','r','n','a','l','[',
COMPILER_VERSION_INTERNAL,']','\0'};
#endif
/* Construct a string literal encoding the version number components. */
#ifdef SIMULATE_VERSION_MAJOR
char const info_simulate_version[] = {
'I', 'N', 'F', 'O', ':',
's','i','m','u','l','a','t','e','_','v','e','r','s','i','o','n','[',
SIMULATE_VERSION_MAJOR,
# ifdef SIMULATE_VERSION_MINOR
'.', SIMULATE_VERSION_MINOR,
# ifdef SIMULATE_VERSION_PATCH
'.', SIMULATE_VERSION_PATCH,
# ifdef SIMULATE_VERSION_TWEAK
'.', SIMULATE_VERSION_TWEAK,
# endif
# endif
# endif
']','\0'};
#endif
/* Construct the string literal in pieces to prevent the source from
getting matched. Store it in a pointer rather than an array
because some compilers will just produce instructions to fill the
array rather than assigning a pointer to a static array. */
char const* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]";
char const* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]";
#if defined(__INTEL_COMPILER) && defined(_MSVC_LANG) && _MSVC_LANG < 201403L
# if defined(__INTEL_CXX11_MODE__)
# if defined(__cpp_aggregate_nsdmi)
# define CXX_STD 201402L
# else
# define CXX_STD 201103L
# endif
# else
# define CXX_STD 199711L
# endif
#elif defined(_MSC_VER) && defined(_MSVC_LANG)
# define CXX_STD _MSVC_LANG
#else
# define CXX_STD __cplusplus
#endif
const char* info_language_dialect_default = "INFO" ":" "dialect_default["
#if CXX_STD > 201703L
"20"
#elif CXX_STD >= 201703L
"17"
#elif CXX_STD >= 201402L
"14"
#elif CXX_STD >= 201103L
"11"
#else
"98"
#endif
"]";
/*--------------------------------------------------------------------------*/
int main(int argc, char* argv[])
{
int require = 0;
require += info_compiler[argc];
require += info_platform[argc];
#ifdef COMPILER_VERSION_MAJOR
require += info_version[argc];
#endif
#ifdef COMPILER_VERSION_INTERNAL
require += info_version_internal[argc];
#endif
#ifdef SIMULATE_ID
require += info_simulate[argc];
#endif
#ifdef SIMULATE_VERSION_MAJOR
require += info_simulate_version[argc];
#endif
#if defined(__CRAYXE) || defined(__CRAYXC)
require += info_cray[argc];
#endif
require += info_language_dialect_default[argc];
(void)argv;
return require;
}

Binary file not shown.

View File

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

View File

@ -0,0 +1,58 @@
Performing C SOURCE FILE Test CMAKE_HAVE_LIBC_PTHREAD failed with the following output:
Change Dir: /home/emidan19/gr-tempest/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/make cmTC_72e2a/fast && /usr/bin/make -f CMakeFiles/cmTC_72e2a.dir/build.make CMakeFiles/cmTC_72e2a.dir/build
make[1]: Entering directory '/home/emidan19/gr-tempest/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_72e2a.dir/src.c.o
/usr/bin/cc -DCMAKE_HAVE_LIBC_PTHREAD -std=gnu11 -o CMakeFiles/cmTC_72e2a.dir/src.c.o -c /home/emidan19/gr-tempest/build/CMakeFiles/CMakeTmp/src.c
Linking C executable cmTC_72e2a
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_72e2a.dir/link.txt --verbose=1
/usr/bin/cc -DCMAKE_HAVE_LIBC_PTHREAD CMakeFiles/cmTC_72e2a.dir/src.c.o -o cmTC_72e2a
/usr/bin/ld: CMakeFiles/cmTC_72e2a.dir/src.c.o: in function `main':
src.c:(.text+0x46): undefined reference to `pthread_create'
/usr/bin/ld: src.c:(.text+0x52): undefined reference to `pthread_detach'
/usr/bin/ld: src.c:(.text+0x63): undefined reference to `pthread_join'
collect2: error: ld returned 1 exit status
make[1]: *** [CMakeFiles/cmTC_72e2a.dir/build.make:87: cmTC_72e2a] Error 1
make[1]: Leaving directory '/home/emidan19/gr-tempest/build/CMakeFiles/CMakeTmp'
make: *** [Makefile:121: cmTC_72e2a/fast] Error 2
Source file was:
#include <pthread.h>
void* test_func(void* data)
{
return data;
}
int main(void)
{
pthread_t thread;
pthread_create(&thread, NULL, test_func, NULL);
pthread_detach(thread);
pthread_join(thread, NULL);
pthread_atfork(NULL, NULL, NULL);
pthread_exit(NULL);
return 0;
}
Determining if the function pthread_create exists in the pthreads failed with the following output:
Change Dir: /home/emidan19/gr-tempest/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/make cmTC_72b66/fast && /usr/bin/make -f CMakeFiles/cmTC_72b66.dir/build.make CMakeFiles/cmTC_72b66.dir/build
make[1]: Entering directory '/home/emidan19/gr-tempest/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_72b66.dir/CheckFunctionExists.c.o
/usr/bin/cc -DCHECK_FUNCTION_EXISTS=pthread_create -std=gnu11 -o CMakeFiles/cmTC_72b66.dir/CheckFunctionExists.c.o -c /usr/share/cmake-3.16/Modules/CheckFunctionExists.c
Linking C executable cmTC_72b66
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_72b66.dir/link.txt --verbose=1
/usr/bin/cc -DCHECK_FUNCTION_EXISTS=pthread_create CMakeFiles/cmTC_72b66.dir/CheckFunctionExists.c.o -o cmTC_72b66 -lpthreads
/usr/bin/ld: cannot find -lpthreads
collect2: error: ld returned 1 exit status
make[1]: *** [CMakeFiles/cmTC_72b66.dir/build.make:87: cmTC_72b66] Error 1
make[1]: Leaving directory '/home/emidan19/gr-tempest/build/CMakeFiles/CMakeTmp'
make: *** [Makefile:121: cmTC_72b66/fast] Error 2

View File

@ -0,0 +1,489 @@
The system is: Linux - 5.15.0-53-generic - x86_64
Compiling the CXX compiler identification source file "CMakeCXXCompilerId.cpp" succeeded.
Compiler: /usr/bin/c++
Build flags:
Id flags:
The output was:
0
Compilation of the CXX compiler identification source "CMakeCXXCompilerId.cpp" produced "a.out"
The CXX compiler identification is GNU, found in "/home/emidan19/gr-tempest/build/CMakeFiles/3.16.3/CompilerIdCXX/a.out"
Compiling the C compiler identification source file "CMakeCCompilerId.c" succeeded.
Compiler: /usr/bin/cc
Build flags:
Id flags:
The output was:
0
Compilation of the C compiler identification source "CMakeCCompilerId.c" produced "a.out"
The C compiler identification is GNU, found in "/home/emidan19/gr-tempest/build/CMakeFiles/3.16.3/CompilerIdC/a.out"
Determining if the CXX compiler works passed with the following output:
Change Dir: /home/emidan19/gr-tempest/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/make cmTC_31f7c/fast && /usr/bin/make -f CMakeFiles/cmTC_31f7c.dir/build.make CMakeFiles/cmTC_31f7c.dir/build
make[1]: Entering directory '/home/emidan19/gr-tempest/build/CMakeFiles/CMakeTmp'
Building CXX object CMakeFiles/cmTC_31f7c.dir/testCXXCompiler.cxx.o
/usr/bin/c++ -o CMakeFiles/cmTC_31f7c.dir/testCXXCompiler.cxx.o -c /home/emidan19/gr-tempest/build/CMakeFiles/CMakeTmp/testCXXCompiler.cxx
Linking CXX executable cmTC_31f7c
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_31f7c.dir/link.txt --verbose=1
/usr/bin/c++ CMakeFiles/cmTC_31f7c.dir/testCXXCompiler.cxx.o -o cmTC_31f7c
make[1]: Leaving directory '/home/emidan19/gr-tempest/build/CMakeFiles/CMakeTmp'
Detecting CXX compiler ABI info compiled with the following output:
Change Dir: /home/emidan19/gr-tempest/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/make cmTC_0c2b8/fast && /usr/bin/make -f CMakeFiles/cmTC_0c2b8.dir/build.make CMakeFiles/cmTC_0c2b8.dir/build
make[1]: Entering directory '/home/emidan19/gr-tempest/build/CMakeFiles/CMakeTmp'
Building CXX object CMakeFiles/cmTC_0c2b8.dir/CMakeCXXCompilerABI.cpp.o
/usr/bin/c++ -v -o CMakeFiles/cmTC_0c2b8.dir/CMakeCXXCompilerABI.cpp.o -c /usr/share/cmake-3.16/Modules/CMakeCXXCompilerABI.cpp
Using built-in specs.
COLLECT_GCC=/usr/bin/c++
OFFLOAD_TARGET_NAMES=nvptx-none:hsa
OFFLOAD_TARGET_DEFAULT=1
Target: x86_64-linux-gnu
Configured with: ../src/configure -v --with-pkgversion='Ubuntu 9.4.0-1ubuntu1~20.04.1' --with-bugurl=file:///usr/share/doc/gcc-9/README.Bugs --enable-languages=c,ada,c++,go,brig,d,fortran,objc,obj-c++,gm2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-9 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-plugin --enable-default-pie --with-system-zlib --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --disable-werror --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none=/build/gcc-9-Av3uEd/gcc-9-9.4.0/debian/tmp-nvptx/usr,hsa --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu
Thread model: posix
gcc version 9.4.0 (Ubuntu 9.4.0-1ubuntu1~20.04.1)
COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_0c2b8.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64'
/usr/lib/gcc/x86_64-linux-gnu/9/cc1plus -quiet -v -imultiarch x86_64-linux-gnu -D_GNU_SOURCE /usr/share/cmake-3.16/Modules/CMakeCXXCompilerABI.cpp -quiet -dumpbase CMakeCXXCompilerABI.cpp -mtune=generic -march=x86-64 -auxbase-strip CMakeFiles/cmTC_0c2b8.dir/CMakeCXXCompilerABI.cpp.o -version -fasynchronous-unwind-tables -fstack-protector-strong -Wformat -Wformat-security -fstack-clash-protection -fcf-protection -o /tmp/ccVfS91x.s
GNU C++14 (Ubuntu 9.4.0-1ubuntu1~20.04.1) version 9.4.0 (x86_64-linux-gnu)
compiled by GNU C version 9.4.0, GMP version 6.2.0, MPFR version 4.0.2, MPC version 1.1.0, isl version isl-0.22.1-GMP
GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072
ignoring duplicate directory "/usr/include/x86_64-linux-gnu/c++/9"
ignoring nonexistent directory "/usr/local/include/x86_64-linux-gnu"
ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/9/include-fixed"
ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/9/../../../../x86_64-linux-gnu/include"
#include "..." search starts here:
#include <...> search starts here:
/usr/include/c++/9
/usr/include/x86_64-linux-gnu/c++/9
/usr/include/c++/9/backward
/usr/lib/gcc/x86_64-linux-gnu/9/include
/usr/local/include
/usr/include/x86_64-linux-gnu
/usr/include
End of search list.
GNU C++14 (Ubuntu 9.4.0-1ubuntu1~20.04.1) version 9.4.0 (x86_64-linux-gnu)
compiled by GNU C version 9.4.0, GMP version 6.2.0, MPFR version 4.0.2, MPC version 1.1.0, isl version isl-0.22.1-GMP
GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072
Compiler executable checksum: 65fe925b83d3956b533de4aaba7dace0
COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_0c2b8.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64'
as -v --64 -o CMakeFiles/cmTC_0c2b8.dir/CMakeCXXCompilerABI.cpp.o /tmp/ccVfS91x.s
GNU assembler version 2.34 (x86_64-linux-gnu) using BFD version (GNU Binutils for Ubuntu) 2.34
COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/9/:/usr/lib/gcc/x86_64-linux-gnu/9/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/9/:/usr/lib/gcc/x86_64-linux-gnu/
LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/9/:/usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/9/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/9/../../../:/lib/:/usr/lib/
COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_0c2b8.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64'
Linking CXX executable cmTC_0c2b8
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_0c2b8.dir/link.txt --verbose=1
/usr/bin/c++ -v CMakeFiles/cmTC_0c2b8.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_0c2b8
Using built-in specs.
COLLECT_GCC=/usr/bin/c++
COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/9/lto-wrapper
OFFLOAD_TARGET_NAMES=nvptx-none:hsa
OFFLOAD_TARGET_DEFAULT=1
Target: x86_64-linux-gnu
Configured with: ../src/configure -v --with-pkgversion='Ubuntu 9.4.0-1ubuntu1~20.04.1' --with-bugurl=file:///usr/share/doc/gcc-9/README.Bugs --enable-languages=c,ada,c++,go,brig,d,fortran,objc,obj-c++,gm2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-9 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-plugin --enable-default-pie --with-system-zlib --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --disable-werror --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none=/build/gcc-9-Av3uEd/gcc-9-9.4.0/debian/tmp-nvptx/usr,hsa --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu
Thread model: posix
gcc version 9.4.0 (Ubuntu 9.4.0-1ubuntu1~20.04.1)
COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/9/:/usr/lib/gcc/x86_64-linux-gnu/9/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/9/:/usr/lib/gcc/x86_64-linux-gnu/
LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/9/:/usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/9/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/9/../../../:/lib/:/usr/lib/
COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_0c2b8' '-shared-libgcc' '-mtune=generic' '-march=x86-64'
/usr/lib/gcc/x86_64-linux-gnu/9/collect2 -plugin /usr/lib/gcc/x86_64-linux-gnu/9/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/9/lto-wrapper -plugin-opt=-fresolution=/tmp/ccs3jKaY.res -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc --build-id --eh-frame-hdr -m elf_x86_64 --hash-style=gnu --as-needed -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -z now -z relro -o cmTC_0c2b8 /usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu/Scrt1.o /usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/9/crtbeginS.o -L/usr/lib/gcc/x86_64-linux-gnu/9 -L/usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/9/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/9/../../.. CMakeFiles/cmTC_0c2b8.dir/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm -lgcc_s -lgcc -lc -lgcc_s -lgcc /usr/lib/gcc/x86_64-linux-gnu/9/crtendS.o /usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu/crtn.o
COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_0c2b8' '-shared-libgcc' '-mtune=generic' '-march=x86-64'
make[1]: Leaving directory '/home/emidan19/gr-tempest/build/CMakeFiles/CMakeTmp'
Parsed CXX implicit include dir info from above output: rv=done
found start of include info
found start of implicit include info
add: [/usr/include/c++/9]
add: [/usr/include/x86_64-linux-gnu/c++/9]
add: [/usr/include/c++/9/backward]
add: [/usr/lib/gcc/x86_64-linux-gnu/9/include]
add: [/usr/local/include]
add: [/usr/include/x86_64-linux-gnu]
add: [/usr/include]
end of search list found
collapse include dir [/usr/include/c++/9] ==> [/usr/include/c++/9]
collapse include dir [/usr/include/x86_64-linux-gnu/c++/9] ==> [/usr/include/x86_64-linux-gnu/c++/9]
collapse include dir [/usr/include/c++/9/backward] ==> [/usr/include/c++/9/backward]
collapse include dir [/usr/lib/gcc/x86_64-linux-gnu/9/include] ==> [/usr/lib/gcc/x86_64-linux-gnu/9/include]
collapse include dir [/usr/local/include] ==> [/usr/local/include]
collapse include dir [/usr/include/x86_64-linux-gnu] ==> [/usr/include/x86_64-linux-gnu]
collapse include dir [/usr/include] ==> [/usr/include]
implicit include dirs: [/usr/include/c++/9;/usr/include/x86_64-linux-gnu/c++/9;/usr/include/c++/9/backward;/usr/lib/gcc/x86_64-linux-gnu/9/include;/usr/local/include;/usr/include/x86_64-linux-gnu;/usr/include]
Parsed CXX implicit link information from above output:
link line regex: [^( *|.*[/\])(ld|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\]+-)?ld|collect2)[^/\]*( |$)]
ignore line: [Change Dir: /home/emidan19/gr-tempest/build/CMakeFiles/CMakeTmp]
ignore line: []
ignore line: [Run Build Command(s):/usr/bin/make cmTC_0c2b8/fast && /usr/bin/make -f CMakeFiles/cmTC_0c2b8.dir/build.make CMakeFiles/cmTC_0c2b8.dir/build]
ignore line: [make[1]: Entering directory '/home/emidan19/gr-tempest/build/CMakeFiles/CMakeTmp']
ignore line: [Building CXX object CMakeFiles/cmTC_0c2b8.dir/CMakeCXXCompilerABI.cpp.o]
ignore line: [/usr/bin/c++ -v -o CMakeFiles/cmTC_0c2b8.dir/CMakeCXXCompilerABI.cpp.o -c /usr/share/cmake-3.16/Modules/CMakeCXXCompilerABI.cpp]
ignore line: [Using built-in specs.]
ignore line: [COLLECT_GCC=/usr/bin/c++]
ignore line: [OFFLOAD_TARGET_NAMES=nvptx-none:hsa]
ignore line: [OFFLOAD_TARGET_DEFAULT=1]
ignore line: [Target: x86_64-linux-gnu]
ignore line: [Configured with: ../src/configure -v --with-pkgversion='Ubuntu 9.4.0-1ubuntu1~20.04.1' --with-bugurl=file:///usr/share/doc/gcc-9/README.Bugs --enable-languages=c ada c++ go brig d fortran objc obj-c++ gm2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-9 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-plugin --enable-default-pie --with-system-zlib --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --disable-werror --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32 m64 mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none=/build/gcc-9-Av3uEd/gcc-9-9.4.0/debian/tmp-nvptx/usr hsa --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu]
ignore line: [Thread model: posix]
ignore line: [gcc version 9.4.0 (Ubuntu 9.4.0-1ubuntu1~20.04.1) ]
ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_0c2b8.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64']
ignore line: [ /usr/lib/gcc/x86_64-linux-gnu/9/cc1plus -quiet -v -imultiarch x86_64-linux-gnu -D_GNU_SOURCE /usr/share/cmake-3.16/Modules/CMakeCXXCompilerABI.cpp -quiet -dumpbase CMakeCXXCompilerABI.cpp -mtune=generic -march=x86-64 -auxbase-strip CMakeFiles/cmTC_0c2b8.dir/CMakeCXXCompilerABI.cpp.o -version -fasynchronous-unwind-tables -fstack-protector-strong -Wformat -Wformat-security -fstack-clash-protection -fcf-protection -o /tmp/ccVfS91x.s]
ignore line: [GNU C++14 (Ubuntu 9.4.0-1ubuntu1~20.04.1) version 9.4.0 (x86_64-linux-gnu)]
ignore line: [ compiled by GNU C version 9.4.0 GMP version 6.2.0 MPFR version 4.0.2 MPC version 1.1.0 isl version isl-0.22.1-GMP]
ignore line: []
ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072]
ignore line: [ignoring duplicate directory "/usr/include/x86_64-linux-gnu/c++/9"]
ignore line: [ignoring nonexistent directory "/usr/local/include/x86_64-linux-gnu"]
ignore line: [ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/9/include-fixed"]
ignore line: [ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/9/../../../../x86_64-linux-gnu/include"]
ignore line: [#include "..." search starts here:]
ignore line: [#include <...> search starts here:]
ignore line: [ /usr/include/c++/9]
ignore line: [ /usr/include/x86_64-linux-gnu/c++/9]
ignore line: [ /usr/include/c++/9/backward]
ignore line: [ /usr/lib/gcc/x86_64-linux-gnu/9/include]
ignore line: [ /usr/local/include]
ignore line: [ /usr/include/x86_64-linux-gnu]
ignore line: [ /usr/include]
ignore line: [End of search list.]
ignore line: [GNU C++14 (Ubuntu 9.4.0-1ubuntu1~20.04.1) version 9.4.0 (x86_64-linux-gnu)]
ignore line: [ compiled by GNU C version 9.4.0 GMP version 6.2.0 MPFR version 4.0.2 MPC version 1.1.0 isl version isl-0.22.1-GMP]
ignore line: []
ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072]
ignore line: [Compiler executable checksum: 65fe925b83d3956b533de4aaba7dace0]
ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_0c2b8.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64']
ignore line: [ as -v --64 -o CMakeFiles/cmTC_0c2b8.dir/CMakeCXXCompilerABI.cpp.o /tmp/ccVfS91x.s]
ignore line: [GNU assembler version 2.34 (x86_64-linux-gnu) using BFD version (GNU Binutils for Ubuntu) 2.34]
ignore line: [COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/9/:/usr/lib/gcc/x86_64-linux-gnu/9/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/9/:/usr/lib/gcc/x86_64-linux-gnu/]
ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/9/:/usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/9/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/9/../../../:/lib/:/usr/lib/]
ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_0c2b8.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64']
ignore line: [Linking CXX executable cmTC_0c2b8]
ignore line: [/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_0c2b8.dir/link.txt --verbose=1]
ignore line: [/usr/bin/c++ -v CMakeFiles/cmTC_0c2b8.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_0c2b8 ]
ignore line: [Using built-in specs.]
ignore line: [COLLECT_GCC=/usr/bin/c++]
ignore line: [COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/9/lto-wrapper]
ignore line: [OFFLOAD_TARGET_NAMES=nvptx-none:hsa]
ignore line: [OFFLOAD_TARGET_DEFAULT=1]
ignore line: [Target: x86_64-linux-gnu]
ignore line: [Configured with: ../src/configure -v --with-pkgversion='Ubuntu 9.4.0-1ubuntu1~20.04.1' --with-bugurl=file:///usr/share/doc/gcc-9/README.Bugs --enable-languages=c ada c++ go brig d fortran objc obj-c++ gm2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-9 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-plugin --enable-default-pie --with-system-zlib --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --disable-werror --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32 m64 mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none=/build/gcc-9-Av3uEd/gcc-9-9.4.0/debian/tmp-nvptx/usr hsa --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu]
ignore line: [Thread model: posix]
ignore line: [gcc version 9.4.0 (Ubuntu 9.4.0-1ubuntu1~20.04.1) ]
ignore line: [COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/9/:/usr/lib/gcc/x86_64-linux-gnu/9/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/9/:/usr/lib/gcc/x86_64-linux-gnu/]
ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/9/:/usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/9/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/9/../../../:/lib/:/usr/lib/]
ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_0c2b8' '-shared-libgcc' '-mtune=generic' '-march=x86-64']
link line: [ /usr/lib/gcc/x86_64-linux-gnu/9/collect2 -plugin /usr/lib/gcc/x86_64-linux-gnu/9/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/9/lto-wrapper -plugin-opt=-fresolution=/tmp/ccs3jKaY.res -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc --build-id --eh-frame-hdr -m elf_x86_64 --hash-style=gnu --as-needed -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -z now -z relro -o cmTC_0c2b8 /usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu/Scrt1.o /usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/9/crtbeginS.o -L/usr/lib/gcc/x86_64-linux-gnu/9 -L/usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/9/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/9/../../.. CMakeFiles/cmTC_0c2b8.dir/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm -lgcc_s -lgcc -lc -lgcc_s -lgcc /usr/lib/gcc/x86_64-linux-gnu/9/crtendS.o /usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu/crtn.o]
arg [/usr/lib/gcc/x86_64-linux-gnu/9/collect2] ==> ignore
arg [-plugin] ==> ignore
arg [/usr/lib/gcc/x86_64-linux-gnu/9/liblto_plugin.so] ==> ignore
arg [-plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/9/lto-wrapper] ==> ignore
arg [-plugin-opt=-fresolution=/tmp/ccs3jKaY.res] ==> ignore
arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore
arg [-plugin-opt=-pass-through=-lgcc] ==> ignore
arg [-plugin-opt=-pass-through=-lc] ==> ignore
arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore
arg [-plugin-opt=-pass-through=-lgcc] ==> ignore
arg [--build-id] ==> ignore
arg [--eh-frame-hdr] ==> ignore
arg [-m] ==> ignore
arg [elf_x86_64] ==> ignore
arg [--hash-style=gnu] ==> ignore
arg [--as-needed] ==> ignore
arg [-dynamic-linker] ==> ignore
arg [/lib64/ld-linux-x86-64.so.2] ==> ignore
arg [-pie] ==> ignore
arg [-znow] ==> ignore
arg [-zrelro] ==> ignore
arg [-o] ==> ignore
arg [cmTC_0c2b8] ==> ignore
arg [/usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu/Scrt1.o] ==> ignore
arg [/usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu/crti.o] ==> ignore
arg [/usr/lib/gcc/x86_64-linux-gnu/9/crtbeginS.o] ==> ignore
arg [-L/usr/lib/gcc/x86_64-linux-gnu/9] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/9]
arg [-L/usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu]
arg [-L/usr/lib/gcc/x86_64-linux-gnu/9/../../../../lib] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/9/../../../../lib]
arg [-L/lib/x86_64-linux-gnu] ==> dir [/lib/x86_64-linux-gnu]
arg [-L/lib/../lib] ==> dir [/lib/../lib]
arg [-L/usr/lib/x86_64-linux-gnu] ==> dir [/usr/lib/x86_64-linux-gnu]
arg [-L/usr/lib/../lib] ==> dir [/usr/lib/../lib]
arg [-L/usr/lib/gcc/x86_64-linux-gnu/9/../../..] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/9/../../..]
arg [CMakeFiles/cmTC_0c2b8.dir/CMakeCXXCompilerABI.cpp.o] ==> ignore
arg [-lstdc++] ==> lib [stdc++]
arg [-lm] ==> lib [m]
arg [-lgcc_s] ==> lib [gcc_s]
arg [-lgcc] ==> lib [gcc]
arg [-lc] ==> lib [c]
arg [-lgcc_s] ==> lib [gcc_s]
arg [-lgcc] ==> lib [gcc]
arg [/usr/lib/gcc/x86_64-linux-gnu/9/crtendS.o] ==> ignore
arg [/usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu/crtn.o] ==> ignore
collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/9] ==> [/usr/lib/gcc/x86_64-linux-gnu/9]
collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu] ==> [/usr/lib/x86_64-linux-gnu]
collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/9/../../../../lib] ==> [/usr/lib]
collapse library dir [/lib/x86_64-linux-gnu] ==> [/lib/x86_64-linux-gnu]
collapse library dir [/lib/../lib] ==> [/lib]
collapse library dir [/usr/lib/x86_64-linux-gnu] ==> [/usr/lib/x86_64-linux-gnu]
collapse library dir [/usr/lib/../lib] ==> [/usr/lib]
collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/9/../../..] ==> [/usr/lib]
implicit libs: [stdc++;m;gcc_s;gcc;c;gcc_s;gcc]
implicit dirs: [/usr/lib/gcc/x86_64-linux-gnu/9;/usr/lib/x86_64-linux-gnu;/usr/lib;/lib/x86_64-linux-gnu;/lib]
implicit fwks: []
Determining if the C compiler works passed with the following output:
Change Dir: /home/emidan19/gr-tempest/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/make cmTC_0238a/fast && /usr/bin/make -f CMakeFiles/cmTC_0238a.dir/build.make CMakeFiles/cmTC_0238a.dir/build
make[1]: Entering directory '/home/emidan19/gr-tempest/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_0238a.dir/testCCompiler.c.o
/usr/bin/cc -o CMakeFiles/cmTC_0238a.dir/testCCompiler.c.o -c /home/emidan19/gr-tempest/build/CMakeFiles/CMakeTmp/testCCompiler.c
Linking C executable cmTC_0238a
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_0238a.dir/link.txt --verbose=1
/usr/bin/cc CMakeFiles/cmTC_0238a.dir/testCCompiler.c.o -o cmTC_0238a
make[1]: Leaving directory '/home/emidan19/gr-tempest/build/CMakeFiles/CMakeTmp'
Detecting C compiler ABI info compiled with the following output:
Change Dir: /home/emidan19/gr-tempest/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/make cmTC_c50e3/fast && /usr/bin/make -f CMakeFiles/cmTC_c50e3.dir/build.make CMakeFiles/cmTC_c50e3.dir/build
make[1]: Entering directory '/home/emidan19/gr-tempest/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_c50e3.dir/CMakeCCompilerABI.c.o
/usr/bin/cc -v -o CMakeFiles/cmTC_c50e3.dir/CMakeCCompilerABI.c.o -c /usr/share/cmake-3.16/Modules/CMakeCCompilerABI.c
Using built-in specs.
COLLECT_GCC=/usr/bin/cc
OFFLOAD_TARGET_NAMES=nvptx-none:hsa
OFFLOAD_TARGET_DEFAULT=1
Target: x86_64-linux-gnu
Configured with: ../src/configure -v --with-pkgversion='Ubuntu 9.4.0-1ubuntu1~20.04.1' --with-bugurl=file:///usr/share/doc/gcc-9/README.Bugs --enable-languages=c,ada,c++,go,brig,d,fortran,objc,obj-c++,gm2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-9 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-plugin --enable-default-pie --with-system-zlib --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --disable-werror --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none=/build/gcc-9-Av3uEd/gcc-9-9.4.0/debian/tmp-nvptx/usr,hsa --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu
Thread model: posix
gcc version 9.4.0 (Ubuntu 9.4.0-1ubuntu1~20.04.1)
COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_c50e3.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64'
/usr/lib/gcc/x86_64-linux-gnu/9/cc1 -quiet -v -imultiarch x86_64-linux-gnu /usr/share/cmake-3.16/Modules/CMakeCCompilerABI.c -quiet -dumpbase CMakeCCompilerABI.c -mtune=generic -march=x86-64 -auxbase-strip CMakeFiles/cmTC_c50e3.dir/CMakeCCompilerABI.c.o -version -fasynchronous-unwind-tables -fstack-protector-strong -Wformat -Wformat-security -fstack-clash-protection -fcf-protection -o /tmp/cctKvE1w.s
GNU C17 (Ubuntu 9.4.0-1ubuntu1~20.04.1) version 9.4.0 (x86_64-linux-gnu)
compiled by GNU C version 9.4.0, GMP version 6.2.0, MPFR version 4.0.2, MPC version 1.1.0, isl version isl-0.22.1-GMP
GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072
ignoring nonexistent directory "/usr/local/include/x86_64-linux-gnu"
ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/9/include-fixed"
ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/9/../../../../x86_64-linux-gnu/include"
#include "..." search starts here:
#include <...> search starts here:
/usr/lib/gcc/x86_64-linux-gnu/9/include
/usr/local/include
/usr/include/x86_64-linux-gnu
/usr/include
End of search list.
GNU C17 (Ubuntu 9.4.0-1ubuntu1~20.04.1) version 9.4.0 (x86_64-linux-gnu)
compiled by GNU C version 9.4.0, GMP version 6.2.0, MPFR version 4.0.2, MPC version 1.1.0, isl version isl-0.22.1-GMP
GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072
Compiler executable checksum: c0c95c0b4209efec1c1892d5ff24030b
COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_c50e3.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64'
as -v --64 -o CMakeFiles/cmTC_c50e3.dir/CMakeCCompilerABI.c.o /tmp/cctKvE1w.s
GNU assembler version 2.34 (x86_64-linux-gnu) using BFD version (GNU Binutils for Ubuntu) 2.34
COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/9/:/usr/lib/gcc/x86_64-linux-gnu/9/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/9/:/usr/lib/gcc/x86_64-linux-gnu/
LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/9/:/usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/9/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/9/../../../:/lib/:/usr/lib/
COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_c50e3.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64'
Linking C executable cmTC_c50e3
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_c50e3.dir/link.txt --verbose=1
/usr/bin/cc -v CMakeFiles/cmTC_c50e3.dir/CMakeCCompilerABI.c.o -o cmTC_c50e3
Using built-in specs.
COLLECT_GCC=/usr/bin/cc
COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/9/lto-wrapper
OFFLOAD_TARGET_NAMES=nvptx-none:hsa
OFFLOAD_TARGET_DEFAULT=1
Target: x86_64-linux-gnu
Configured with: ../src/configure -v --with-pkgversion='Ubuntu 9.4.0-1ubuntu1~20.04.1' --with-bugurl=file:///usr/share/doc/gcc-9/README.Bugs --enable-languages=c,ada,c++,go,brig,d,fortran,objc,obj-c++,gm2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-9 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-plugin --enable-default-pie --with-system-zlib --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --disable-werror --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none=/build/gcc-9-Av3uEd/gcc-9-9.4.0/debian/tmp-nvptx/usr,hsa --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu
Thread model: posix
gcc version 9.4.0 (Ubuntu 9.4.0-1ubuntu1~20.04.1)
COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/9/:/usr/lib/gcc/x86_64-linux-gnu/9/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/9/:/usr/lib/gcc/x86_64-linux-gnu/
LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/9/:/usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/9/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/9/../../../:/lib/:/usr/lib/
COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_c50e3' '-mtune=generic' '-march=x86-64'
/usr/lib/gcc/x86_64-linux-gnu/9/collect2 -plugin /usr/lib/gcc/x86_64-linux-gnu/9/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/9/lto-wrapper -plugin-opt=-fresolution=/tmp/ccjkKm3V.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s --build-id --eh-frame-hdr -m elf_x86_64 --hash-style=gnu --as-needed -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -z now -z relro -o cmTC_c50e3 /usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu/Scrt1.o /usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/9/crtbeginS.o -L/usr/lib/gcc/x86_64-linux-gnu/9 -L/usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/9/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/9/../../.. CMakeFiles/cmTC_c50e3.dir/CMakeCCompilerABI.c.o -lgcc --push-state --as-needed -lgcc_s --pop-state -lc -lgcc --push-state --as-needed -lgcc_s --pop-state /usr/lib/gcc/x86_64-linux-gnu/9/crtendS.o /usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu/crtn.o
COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_c50e3' '-mtune=generic' '-march=x86-64'
make[1]: Leaving directory '/home/emidan19/gr-tempest/build/CMakeFiles/CMakeTmp'
Parsed C implicit include dir info from above output: rv=done
found start of include info
found start of implicit include info
add: [/usr/lib/gcc/x86_64-linux-gnu/9/include]
add: [/usr/local/include]
add: [/usr/include/x86_64-linux-gnu]
add: [/usr/include]
end of search list found
collapse include dir [/usr/lib/gcc/x86_64-linux-gnu/9/include] ==> [/usr/lib/gcc/x86_64-linux-gnu/9/include]
collapse include dir [/usr/local/include] ==> [/usr/local/include]
collapse include dir [/usr/include/x86_64-linux-gnu] ==> [/usr/include/x86_64-linux-gnu]
collapse include dir [/usr/include] ==> [/usr/include]
implicit include dirs: [/usr/lib/gcc/x86_64-linux-gnu/9/include;/usr/local/include;/usr/include/x86_64-linux-gnu;/usr/include]
Parsed C implicit link information from above output:
link line regex: [^( *|.*[/\])(ld|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\]+-)?ld|collect2)[^/\]*( |$)]
ignore line: [Change Dir: /home/emidan19/gr-tempest/build/CMakeFiles/CMakeTmp]
ignore line: []
ignore line: [Run Build Command(s):/usr/bin/make cmTC_c50e3/fast && /usr/bin/make -f CMakeFiles/cmTC_c50e3.dir/build.make CMakeFiles/cmTC_c50e3.dir/build]
ignore line: [make[1]: Entering directory '/home/emidan19/gr-tempest/build/CMakeFiles/CMakeTmp']
ignore line: [Building C object CMakeFiles/cmTC_c50e3.dir/CMakeCCompilerABI.c.o]
ignore line: [/usr/bin/cc -v -o CMakeFiles/cmTC_c50e3.dir/CMakeCCompilerABI.c.o -c /usr/share/cmake-3.16/Modules/CMakeCCompilerABI.c]
ignore line: [Using built-in specs.]
ignore line: [COLLECT_GCC=/usr/bin/cc]
ignore line: [OFFLOAD_TARGET_NAMES=nvptx-none:hsa]
ignore line: [OFFLOAD_TARGET_DEFAULT=1]
ignore line: [Target: x86_64-linux-gnu]
ignore line: [Configured with: ../src/configure -v --with-pkgversion='Ubuntu 9.4.0-1ubuntu1~20.04.1' --with-bugurl=file:///usr/share/doc/gcc-9/README.Bugs --enable-languages=c ada c++ go brig d fortran objc obj-c++ gm2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-9 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-plugin --enable-default-pie --with-system-zlib --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --disable-werror --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32 m64 mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none=/build/gcc-9-Av3uEd/gcc-9-9.4.0/debian/tmp-nvptx/usr hsa --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu]
ignore line: [Thread model: posix]
ignore line: [gcc version 9.4.0 (Ubuntu 9.4.0-1ubuntu1~20.04.1) ]
ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_c50e3.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64']
ignore line: [ /usr/lib/gcc/x86_64-linux-gnu/9/cc1 -quiet -v -imultiarch x86_64-linux-gnu /usr/share/cmake-3.16/Modules/CMakeCCompilerABI.c -quiet -dumpbase CMakeCCompilerABI.c -mtune=generic -march=x86-64 -auxbase-strip CMakeFiles/cmTC_c50e3.dir/CMakeCCompilerABI.c.o -version -fasynchronous-unwind-tables -fstack-protector-strong -Wformat -Wformat-security -fstack-clash-protection -fcf-protection -o /tmp/cctKvE1w.s]
ignore line: [GNU C17 (Ubuntu 9.4.0-1ubuntu1~20.04.1) version 9.4.0 (x86_64-linux-gnu)]
ignore line: [ compiled by GNU C version 9.4.0 GMP version 6.2.0 MPFR version 4.0.2 MPC version 1.1.0 isl version isl-0.22.1-GMP]
ignore line: []
ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072]
ignore line: [ignoring nonexistent directory "/usr/local/include/x86_64-linux-gnu"]
ignore line: [ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/9/include-fixed"]
ignore line: [ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/9/../../../../x86_64-linux-gnu/include"]
ignore line: [#include "..." search starts here:]
ignore line: [#include <...> search starts here:]
ignore line: [ /usr/lib/gcc/x86_64-linux-gnu/9/include]
ignore line: [ /usr/local/include]
ignore line: [ /usr/include/x86_64-linux-gnu]
ignore line: [ /usr/include]
ignore line: [End of search list.]
ignore line: [GNU C17 (Ubuntu 9.4.0-1ubuntu1~20.04.1) version 9.4.0 (x86_64-linux-gnu)]
ignore line: [ compiled by GNU C version 9.4.0 GMP version 6.2.0 MPFR version 4.0.2 MPC version 1.1.0 isl version isl-0.22.1-GMP]
ignore line: []
ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072]
ignore line: [Compiler executable checksum: c0c95c0b4209efec1c1892d5ff24030b]
ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_c50e3.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64']
ignore line: [ as -v --64 -o CMakeFiles/cmTC_c50e3.dir/CMakeCCompilerABI.c.o /tmp/cctKvE1w.s]
ignore line: [GNU assembler version 2.34 (x86_64-linux-gnu) using BFD version (GNU Binutils for Ubuntu) 2.34]
ignore line: [COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/9/:/usr/lib/gcc/x86_64-linux-gnu/9/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/9/:/usr/lib/gcc/x86_64-linux-gnu/]
ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/9/:/usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/9/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/9/../../../:/lib/:/usr/lib/]
ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_c50e3.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64']
ignore line: [Linking C executable cmTC_c50e3]
ignore line: [/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_c50e3.dir/link.txt --verbose=1]
ignore line: [/usr/bin/cc -v CMakeFiles/cmTC_c50e3.dir/CMakeCCompilerABI.c.o -o cmTC_c50e3 ]
ignore line: [Using built-in specs.]
ignore line: [COLLECT_GCC=/usr/bin/cc]
ignore line: [COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/9/lto-wrapper]
ignore line: [OFFLOAD_TARGET_NAMES=nvptx-none:hsa]
ignore line: [OFFLOAD_TARGET_DEFAULT=1]
ignore line: [Target: x86_64-linux-gnu]
ignore line: [Configured with: ../src/configure -v --with-pkgversion='Ubuntu 9.4.0-1ubuntu1~20.04.1' --with-bugurl=file:///usr/share/doc/gcc-9/README.Bugs --enable-languages=c ada c++ go brig d fortran objc obj-c++ gm2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-9 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-plugin --enable-default-pie --with-system-zlib --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --disable-werror --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32 m64 mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none=/build/gcc-9-Av3uEd/gcc-9-9.4.0/debian/tmp-nvptx/usr hsa --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu]
ignore line: [Thread model: posix]
ignore line: [gcc version 9.4.0 (Ubuntu 9.4.0-1ubuntu1~20.04.1) ]
ignore line: [COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/9/:/usr/lib/gcc/x86_64-linux-gnu/9/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/9/:/usr/lib/gcc/x86_64-linux-gnu/]
ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/9/:/usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/9/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/9/../../../:/lib/:/usr/lib/]
ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_c50e3' '-mtune=generic' '-march=x86-64']
link line: [ /usr/lib/gcc/x86_64-linux-gnu/9/collect2 -plugin /usr/lib/gcc/x86_64-linux-gnu/9/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/9/lto-wrapper -plugin-opt=-fresolution=/tmp/ccjkKm3V.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s --build-id --eh-frame-hdr -m elf_x86_64 --hash-style=gnu --as-needed -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -z now -z relro -o cmTC_c50e3 /usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu/Scrt1.o /usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/9/crtbeginS.o -L/usr/lib/gcc/x86_64-linux-gnu/9 -L/usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/9/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/9/../../.. CMakeFiles/cmTC_c50e3.dir/CMakeCCompilerABI.c.o -lgcc --push-state --as-needed -lgcc_s --pop-state -lc -lgcc --push-state --as-needed -lgcc_s --pop-state /usr/lib/gcc/x86_64-linux-gnu/9/crtendS.o /usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu/crtn.o]
arg [/usr/lib/gcc/x86_64-linux-gnu/9/collect2] ==> ignore
arg [-plugin] ==> ignore
arg [/usr/lib/gcc/x86_64-linux-gnu/9/liblto_plugin.so] ==> ignore
arg [-plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/9/lto-wrapper] ==> ignore
arg [-plugin-opt=-fresolution=/tmp/ccjkKm3V.res] ==> ignore
arg [-plugin-opt=-pass-through=-lgcc] ==> ignore
arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore
arg [-plugin-opt=-pass-through=-lc] ==> ignore
arg [-plugin-opt=-pass-through=-lgcc] ==> ignore
arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore
arg [--build-id] ==> ignore
arg [--eh-frame-hdr] ==> ignore
arg [-m] ==> ignore
arg [elf_x86_64] ==> ignore
arg [--hash-style=gnu] ==> ignore
arg [--as-needed] ==> ignore
arg [-dynamic-linker] ==> ignore
arg [/lib64/ld-linux-x86-64.so.2] ==> ignore
arg [-pie] ==> ignore
arg [-znow] ==> ignore
arg [-zrelro] ==> ignore
arg [-o] ==> ignore
arg [cmTC_c50e3] ==> ignore
arg [/usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu/Scrt1.o] ==> ignore
arg [/usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu/crti.o] ==> ignore
arg [/usr/lib/gcc/x86_64-linux-gnu/9/crtbeginS.o] ==> ignore
arg [-L/usr/lib/gcc/x86_64-linux-gnu/9] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/9]
arg [-L/usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu]
arg [-L/usr/lib/gcc/x86_64-linux-gnu/9/../../../../lib] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/9/../../../../lib]
arg [-L/lib/x86_64-linux-gnu] ==> dir [/lib/x86_64-linux-gnu]
arg [-L/lib/../lib] ==> dir [/lib/../lib]
arg [-L/usr/lib/x86_64-linux-gnu] ==> dir [/usr/lib/x86_64-linux-gnu]
arg [-L/usr/lib/../lib] ==> dir [/usr/lib/../lib]
arg [-L/usr/lib/gcc/x86_64-linux-gnu/9/../../..] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/9/../../..]
arg [CMakeFiles/cmTC_c50e3.dir/CMakeCCompilerABI.c.o] ==> ignore
arg [-lgcc] ==> lib [gcc]
arg [--push-state] ==> ignore
arg [--as-needed] ==> ignore
arg [-lgcc_s] ==> lib [gcc_s]
arg [--pop-state] ==> ignore
arg [-lc] ==> lib [c]
arg [-lgcc] ==> lib [gcc]
arg [--push-state] ==> ignore
arg [--as-needed] ==> ignore
arg [-lgcc_s] ==> lib [gcc_s]
arg [--pop-state] ==> ignore
arg [/usr/lib/gcc/x86_64-linux-gnu/9/crtendS.o] ==> ignore
arg [/usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu/crtn.o] ==> ignore
collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/9] ==> [/usr/lib/gcc/x86_64-linux-gnu/9]
collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu] ==> [/usr/lib/x86_64-linux-gnu]
collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/9/../../../../lib] ==> [/usr/lib]
collapse library dir [/lib/x86_64-linux-gnu] ==> [/lib/x86_64-linux-gnu]
collapse library dir [/lib/../lib] ==> [/lib]
collapse library dir [/usr/lib/x86_64-linux-gnu] ==> [/usr/lib/x86_64-linux-gnu]
collapse library dir [/usr/lib/../lib] ==> [/usr/lib]
collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/9/../../..] ==> [/usr/lib]
implicit libs: [gcc;gcc_s;c;gcc;gcc_s]
implicit dirs: [/usr/lib/gcc/x86_64-linux-gnu/9;/usr/lib/x86_64-linux-gnu;/usr/lib;/lib/x86_64-linux-gnu;/lib]
implicit fwks: []
Determining if the include file pthread.h exists passed with the following output:
Change Dir: /home/emidan19/gr-tempest/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/make cmTC_cf55c/fast && /usr/bin/make -f CMakeFiles/cmTC_cf55c.dir/build.make CMakeFiles/cmTC_cf55c.dir/build
make[1]: Entering directory '/home/emidan19/gr-tempest/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_cf55c.dir/CheckIncludeFile.c.o
/usr/bin/cc -std=gnu11 -o CMakeFiles/cmTC_cf55c.dir/CheckIncludeFile.c.o -c /home/emidan19/gr-tempest/build/CMakeFiles/CMakeTmp/CheckIncludeFile.c
Linking C executable cmTC_cf55c
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_cf55c.dir/link.txt --verbose=1
/usr/bin/cc CMakeFiles/cmTC_cf55c.dir/CheckIncludeFile.c.o -o cmTC_cf55c
make[1]: Leaving directory '/home/emidan19/gr-tempest/build/CMakeFiles/CMakeTmp'
Determining if the function pthread_create exists in the pthread passed with the following output:
Change Dir: /home/emidan19/gr-tempest/build/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/make cmTC_6b720/fast && /usr/bin/make -f CMakeFiles/cmTC_6b720.dir/build.make CMakeFiles/cmTC_6b720.dir/build
make[1]: Entering directory '/home/emidan19/gr-tempest/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_6b720.dir/CheckFunctionExists.c.o
/usr/bin/cc -DCHECK_FUNCTION_EXISTS=pthread_create -std=gnu11 -o CMakeFiles/cmTC_6b720.dir/CheckFunctionExists.c.o -c /usr/share/cmake-3.16/Modules/CheckFunctionExists.c
Linking C executable cmTC_6b720
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_6b720.dir/link.txt --verbose=1
/usr/bin/cc -DCHECK_FUNCTION_EXISTS=pthread_create CMakeFiles/cmTC_6b720.dir/CheckFunctionExists.c.o -o cmTC_6b720 -lpthread
make[1]: Leaving directory '/home/emidan19/gr-tempest/build/CMakeFiles/CMakeTmp'

View File

@ -0,0 +1,11 @@
# Hashes of file build rules.
c631fbc0d169ca39fcb1e01525b3e13a CMakeFiles/uninstall
dd287d08823c120fe5194508bdcf4dac python/CMakeFiles/pygen_python_2ccf9
6e2801557d13c5556d56cf5512537472 python/__init__.pyc
522bf23c89b9b69220fbf6708b69a9c1 python/__init__.pyo
df740e86614f6c13c3b60ba0d3d885c8 swig/CMakeFiles/pygen_swig_8088c
7a3c0fc01bf16bf36cd61ca8e14a872a swig/CMakeFiles/tempest_swig.dir/tempest_swigPYTHON.stamp
df740e86614f6c13c3b60ba0d3d885c8 swig/CMakeFiles/tempest_swig_swig_compilation
df740e86614f6c13c3b60ba0d3d885c8 swig/CMakeFiles/tempest_swig_swig_doc
37adc07be59d5b69ec898f88b9b16c91 swig/tempest_swig.pyc
b163bda164537e092688a72ffccdadbf swig/tempest_swig.pyo

View File

@ -0,0 +1,165 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 3.16
# The generator used is:
set(CMAKE_DEPENDS_GENERATOR "Unix Makefiles")
# The top level Makefile was generated from the following files:
set(CMAKE_MAKEFILE_DEPENDS
"CMakeCache.txt"
"../CMakeLists.txt"
"../apps/CMakeLists.txt"
"CMakeFiles/3.16.3/CMakeCCompiler.cmake"
"CMakeFiles/3.16.3/CMakeCXXCompiler.cmake"
"CMakeFiles/3.16.3/CMakeSystem.cmake"
"../cmake/Modules/targetConfig.cmake.in"
"../cmake/cmake_uninstall.cmake.in"
"../docs/CMakeLists.txt"
"../grc/CMakeLists.txt"
"../include/tempest/CMakeLists.txt"
"../lib/CMakeLists.txt"
"../python/CMakeLists.txt"
"../swig/CMakeLists.txt"
"/usr/lib/x86_64-linux-gnu/cmake/Boost-1.71.0/BoostConfig.cmake"
"/usr/lib/x86_64-linux-gnu/cmake/Boost-1.71.0/BoostConfigVersion.cmake"
"/usr/lib/x86_64-linux-gnu/cmake/BoostDetectToolset-1.71.0.cmake"
"/usr/lib/x86_64-linux-gnu/cmake/boost_atomic-1.71.0/boost_atomic-config-version.cmake"
"/usr/lib/x86_64-linux-gnu/cmake/boost_atomic-1.71.0/boost_atomic-config.cmake"
"/usr/lib/x86_64-linux-gnu/cmake/boost_atomic-1.71.0/libboost_atomic-variant-shared.cmake"
"/usr/lib/x86_64-linux-gnu/cmake/boost_atomic-1.71.0/libboost_atomic-variant-static.cmake"
"/usr/lib/x86_64-linux-gnu/cmake/boost_date_time-1.71.0/boost_date_time-config-version.cmake"
"/usr/lib/x86_64-linux-gnu/cmake/boost_date_time-1.71.0/boost_date_time-config.cmake"
"/usr/lib/x86_64-linux-gnu/cmake/boost_date_time-1.71.0/libboost_date_time-variant-shared.cmake"
"/usr/lib/x86_64-linux-gnu/cmake/boost_date_time-1.71.0/libboost_date_time-variant-static.cmake"
"/usr/lib/x86_64-linux-gnu/cmake/boost_filesystem-1.71.0/boost_filesystem-config-version.cmake"
"/usr/lib/x86_64-linux-gnu/cmake/boost_filesystem-1.71.0/boost_filesystem-config.cmake"
"/usr/lib/x86_64-linux-gnu/cmake/boost_filesystem-1.71.0/libboost_filesystem-variant-shared.cmake"
"/usr/lib/x86_64-linux-gnu/cmake/boost_filesystem-1.71.0/libboost_filesystem-variant-static.cmake"
"/usr/lib/x86_64-linux-gnu/cmake/boost_headers-1.71.0/boost_headers-config-version.cmake"
"/usr/lib/x86_64-linux-gnu/cmake/boost_headers-1.71.0/boost_headers-config.cmake"
"/usr/lib/x86_64-linux-gnu/cmake/boost_program_options-1.71.0/boost_program_options-config-version.cmake"
"/usr/lib/x86_64-linux-gnu/cmake/boost_program_options-1.71.0/boost_program_options-config.cmake"
"/usr/lib/x86_64-linux-gnu/cmake/boost_program_options-1.71.0/libboost_program_options-variant-shared.cmake"
"/usr/lib/x86_64-linux-gnu/cmake/boost_program_options-1.71.0/libboost_program_options-variant-static.cmake"
"/usr/lib/x86_64-linux-gnu/cmake/boost_regex-1.71.0/boost_regex-config-version.cmake"
"/usr/lib/x86_64-linux-gnu/cmake/boost_regex-1.71.0/boost_regex-config.cmake"
"/usr/lib/x86_64-linux-gnu/cmake/boost_regex-1.71.0/libboost_regex-variant-shared.cmake"
"/usr/lib/x86_64-linux-gnu/cmake/boost_regex-1.71.0/libboost_regex-variant-static.cmake"
"/usr/lib/x86_64-linux-gnu/cmake/boost_system-1.71.0/boost_system-config-version.cmake"
"/usr/lib/x86_64-linux-gnu/cmake/boost_system-1.71.0/boost_system-config.cmake"
"/usr/lib/x86_64-linux-gnu/cmake/boost_system-1.71.0/libboost_system-variant-shared.cmake"
"/usr/lib/x86_64-linux-gnu/cmake/boost_system-1.71.0/libboost_system-variant-static.cmake"
"/usr/lib/x86_64-linux-gnu/cmake/boost_thread-1.71.0/boost_thread-config-version.cmake"
"/usr/lib/x86_64-linux-gnu/cmake/boost_thread-1.71.0/boost_thread-config.cmake"
"/usr/lib/x86_64-linux-gnu/cmake/boost_thread-1.71.0/libboost_thread-variant-shared.cmake"
"/usr/lib/x86_64-linux-gnu/cmake/boost_thread-1.71.0/libboost_thread-variant-static.cmake"
"/usr/lib/x86_64-linux-gnu/cmake/boost_unit_test_framework-1.71.0/boost_unit_test_framework-config-version.cmake"
"/usr/lib/x86_64-linux-gnu/cmake/boost_unit_test_framework-1.71.0/boost_unit_test_framework-config.cmake"
"/usr/lib/x86_64-linux-gnu/cmake/boost_unit_test_framework-1.71.0/libboost_unit_test_framework-variant-shared.cmake"
"/usr/lib/x86_64-linux-gnu/cmake/boost_unit_test_framework-1.71.0/libboost_unit_test_framework-variant-static.cmake"
"/usr/lib/x86_64-linux-gnu/cmake/gnuradio/CMakeParseArgumentsCopy.cmake"
"/usr/lib/x86_64-linux-gnu/cmake/gnuradio/FindFFTW3f.cmake"
"/usr/lib/x86_64-linux-gnu/cmake/gnuradio/FindGMP.cmake"
"/usr/lib/x86_64-linux-gnu/cmake/gnuradio/FindGit.cmake"
"/usr/lib/x86_64-linux-gnu/cmake/gnuradio/FindLOG4CPP.cmake"
"/usr/lib/x86_64-linux-gnu/cmake/gnuradio/FindMPLIB.cmake"
"/usr/lib/x86_64-linux-gnu/cmake/gnuradio/FindSWIG.cmake"
"/usr/lib/x86_64-linux-gnu/cmake/gnuradio/FindTHRIFT.cmake"
"/usr/lib/x86_64-linux-gnu/cmake/gnuradio/GnuradioConfig.cmake"
"/usr/lib/x86_64-linux-gnu/cmake/gnuradio/GnuradioConfigVersion.cmake"
"/usr/lib/x86_64-linux-gnu/cmake/gnuradio/GrMiscUtils.cmake"
"/usr/lib/x86_64-linux-gnu/cmake/gnuradio/GrPlatform.cmake"
"/usr/lib/x86_64-linux-gnu/cmake/gnuradio/GrPython.cmake"
"/usr/lib/x86_64-linux-gnu/cmake/gnuradio/GrSwig.cmake"
"/usr/lib/x86_64-linux-gnu/cmake/gnuradio/GrTest.cmake"
"/usr/lib/x86_64-linux-gnu/cmake/gnuradio/GrVersion.cmake"
"/usr/lib/x86_64-linux-gnu/cmake/gnuradio/UseSWIG.cmake"
"/usr/lib/x86_64-linux-gnu/cmake/gnuradio/gnuradio-blocksConfig.cmake"
"/usr/lib/x86_64-linux-gnu/cmake/gnuradio/gnuradio-blocksTargets-relwithdebinfo.cmake"
"/usr/lib/x86_64-linux-gnu/cmake/gnuradio/gnuradio-blocksTargets.cmake"
"/usr/lib/x86_64-linux-gnu/cmake/gnuradio/gnuradio-fftConfig.cmake"
"/usr/lib/x86_64-linux-gnu/cmake/gnuradio/gnuradio-fftTargets-relwithdebinfo.cmake"
"/usr/lib/x86_64-linux-gnu/cmake/gnuradio/gnuradio-fftTargets.cmake"
"/usr/lib/x86_64-linux-gnu/cmake/gnuradio/gnuradio-filterConfig.cmake"
"/usr/lib/x86_64-linux-gnu/cmake/gnuradio/gnuradio-filterTargets-relwithdebinfo.cmake"
"/usr/lib/x86_64-linux-gnu/cmake/gnuradio/gnuradio-filterTargets.cmake"
"/usr/lib/x86_64-linux-gnu/cmake/gnuradio/gnuradio-pmtConfig.cmake"
"/usr/lib/x86_64-linux-gnu/cmake/gnuradio/gnuradio-pmtTargets-relwithdebinfo.cmake"
"/usr/lib/x86_64-linux-gnu/cmake/gnuradio/gnuradio-pmtTargets.cmake"
"/usr/lib/x86_64-linux-gnu/cmake/gnuradio/gnuradio-runtimeConfig.cmake"
"/usr/lib/x86_64-linux-gnu/cmake/gnuradio/gnuradio-runtimeTargets-relwithdebinfo.cmake"
"/usr/lib/x86_64-linux-gnu/cmake/gnuradio/gnuradio-runtimeTargets.cmake"
"/usr/lib/x86_64-linux-gnu/cmake/gnuradio/runtime_swigTargets-relwithdebinfo.cmake"
"/usr/lib/x86_64-linux-gnu/cmake/gnuradio/runtime_swigTargets.cmake"
"/usr/lib/x86_64-linux-gnu/cmake/volk/VolkConfig.cmake"
"/usr/lib/x86_64-linux-gnu/cmake/volk/VolkConfigVersion.cmake"
"/usr/lib/x86_64-linux-gnu/cmake/volk/VolkTargets-relwithdebinfo.cmake"
"/usr/lib/x86_64-linux-gnu/cmake/volk/VolkTargets.cmake"
"/usr/share/cmake-3.16/Modules/CMakeCInformation.cmake"
"/usr/share/cmake-3.16/Modules/CMakeCXXInformation.cmake"
"/usr/share/cmake-3.16/Modules/CMakeCheckCompilerFlagCommonPatterns.cmake"
"/usr/share/cmake-3.16/Modules/CMakeCommonLanguageInclude.cmake"
"/usr/share/cmake-3.16/Modules/CMakeFindDependencyMacro.cmake"
"/usr/share/cmake-3.16/Modules/CMakeFindFrameworks.cmake"
"/usr/share/cmake-3.16/Modules/CMakeGenericSystem.cmake"
"/usr/share/cmake-3.16/Modules/CMakeInitializeConfigs.cmake"
"/usr/share/cmake-3.16/Modules/CMakeLanguageInformation.cmake"
"/usr/share/cmake-3.16/Modules/CMakePackageConfigHelpers.cmake"
"/usr/share/cmake-3.16/Modules/CMakeSystemSpecificInformation.cmake"
"/usr/share/cmake-3.16/Modules/CMakeSystemSpecificInitialize.cmake"
"/usr/share/cmake-3.16/Modules/CheckCSourceCompiles.cmake"
"/usr/share/cmake-3.16/Modules/CheckIncludeFile.cmake"
"/usr/share/cmake-3.16/Modules/CheckLibraryExists.cmake"
"/usr/share/cmake-3.16/Modules/Compiler/CMakeCommonCompilerMacros.cmake"
"/usr/share/cmake-3.16/Modules/Compiler/GNU-C.cmake"
"/usr/share/cmake-3.16/Modules/Compiler/GNU-CXX.cmake"
"/usr/share/cmake-3.16/Modules/Compiler/GNU.cmake"
"/usr/share/cmake-3.16/Modules/FindBoost.cmake"
"/usr/share/cmake-3.16/Modules/FindDoxygen.cmake"
"/usr/share/cmake-3.16/Modules/FindPackageHandleStandardArgs.cmake"
"/usr/share/cmake-3.16/Modules/FindPackageMessage.cmake"
"/usr/share/cmake-3.16/Modules/FindPkgConfig.cmake"
"/usr/share/cmake-3.16/Modules/FindPythonInterp.cmake"
"/usr/share/cmake-3.16/Modules/FindPythonLibs.cmake"
"/usr/share/cmake-3.16/Modules/FindSWIG.cmake"
"/usr/share/cmake-3.16/Modules/FindThreads.cmake"
"/usr/share/cmake-3.16/Modules/Internal/CMakeCheckCompilerFlag.cmake"
"/usr/share/cmake-3.16/Modules/Platform/Linux-GNU-C.cmake"
"/usr/share/cmake-3.16/Modules/Platform/Linux-GNU-CXX.cmake"
"/usr/share/cmake-3.16/Modules/Platform/Linux-GNU.cmake"
"/usr/share/cmake-3.16/Modules/Platform/Linux.cmake"
"/usr/share/cmake-3.16/Modules/Platform/UnixPaths.cmake"
"/usr/share/cmake-3.16/Modules/SelectLibraryConfigurations.cmake"
"/usr/share/cmake-3.16/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
"cmake_uninstall.cmake"
"CMakeFiles/CMakeDirectoryInformation.cmake"
"include/tempest/CMakeFiles/CMakeDirectoryInformation.cmake"
"lib/CMakeFiles/CMakeDirectoryInformation.cmake"
"apps/CMakeFiles/CMakeDirectoryInformation.cmake"
"docs/CMakeFiles/CMakeDirectoryInformation.cmake"
"swig/CMakeFiles/CMakeDirectoryInformation.cmake"
"python/CMakeFiles/CMakeDirectoryInformation.cmake"
"grc/CMakeFiles/CMakeDirectoryInformation.cmake"
)
# Dependency information for all targets:
set(CMAKE_DEPEND_INFO_FILES
"CMakeFiles/uninstall.dir/DependInfo.cmake"
"lib/CMakeFiles/gnuradio-tempest.dir/DependInfo.cmake"
"apps/CMakeFiles/pygen_apps_9a6dd.dir/DependInfo.cmake"
"swig/CMakeFiles/pygen_swig_8088c.dir/DependInfo.cmake"
"swig/CMakeFiles/tempest_swig_swig_compilation.dir/DependInfo.cmake"
"swig/CMakeFiles/tempest_swig.dir/DependInfo.cmake"
"swig/CMakeFiles/tempest_swig_swig_doc.dir/DependInfo.cmake"
"python/CMakeFiles/pygen_python_2ccf9.dir/DependInfo.cmake"
)

445
build/CMakeFiles/Makefile2 Normal file
View File

@ -0,0 +1,445 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 3.16
# 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:
# Remove some rules from gmake that .SUFFIXES does not remove.
SUFFIXES =
.SUFFIXES: .hpux_make_needs_suffix_list
# Suppress display of executed commands.
$(VERBOSE).SILENT:
# A target that is always out of date.
cmake_force:
.PHONY : cmake_force
#=============================================================================
# Set environment variables for the build.
# The shell in which to execute make rules.
SHELL = /bin/sh
# The CMake executable.
CMAKE_COMMAND = /usr/bin/cmake
# The command to remove a file.
RM = /usr/bin/cmake -E remove -f
# Escaping for special characters.
EQUALS = =
# The top-level source directory on which CMake was run.
CMAKE_SOURCE_DIR = /home/emidan19/gr-tempest
# The top-level build directory on which CMake was run.
CMAKE_BINARY_DIR = /home/emidan19/gr-tempest/build
#=============================================================================
# Directory level rules for the build root directory
# The main recursive "all" target.
all: include/tempest/all
all: lib/all
all: apps/all
all: docs/all
all: swig/all
all: python/all
all: grc/all
.PHONY : all
# The main recursive "preinstall" target.
preinstall: include/tempest/preinstall
preinstall: lib/preinstall
preinstall: apps/preinstall
preinstall: docs/preinstall
preinstall: swig/preinstall
preinstall: python/preinstall
preinstall: grc/preinstall
.PHONY : preinstall
# The main recursive "clean" target.
clean: CMakeFiles/uninstall.dir/clean
clean: include/tempest/clean
clean: lib/clean
clean: apps/clean
clean: docs/clean
clean: swig/clean
clean: python/clean
clean: grc/clean
.PHONY : clean
#=============================================================================
# Directory level rules for directory apps
# Recursive "all" directory target.
apps/all: apps/CMakeFiles/pygen_apps_9a6dd.dir/all
.PHONY : apps/all
# Recursive "preinstall" directory target.
apps/preinstall:
.PHONY : apps/preinstall
# Recursive "clean" directory target.
apps/clean: apps/CMakeFiles/pygen_apps_9a6dd.dir/clean
.PHONY : apps/clean
#=============================================================================
# Directory level rules for directory docs
# Recursive "all" directory target.
docs/all:
.PHONY : docs/all
# Recursive "preinstall" directory target.
docs/preinstall:
.PHONY : docs/preinstall
# Recursive "clean" directory target.
docs/clean:
.PHONY : docs/clean
#=============================================================================
# Directory level rules for directory grc
# Recursive "all" directory target.
grc/all:
.PHONY : grc/all
# Recursive "preinstall" directory target.
grc/preinstall:
.PHONY : grc/preinstall
# Recursive "clean" directory target.
grc/clean:
.PHONY : grc/clean
#=============================================================================
# Directory level rules for directory include/tempest
# Recursive "all" directory target.
include/tempest/all:
.PHONY : include/tempest/all
# Recursive "preinstall" directory target.
include/tempest/preinstall:
.PHONY : include/tempest/preinstall
# Recursive "clean" directory target.
include/tempest/clean:
.PHONY : include/tempest/clean
#=============================================================================
# Directory level rules for directory lib
# Recursive "all" directory target.
lib/all: lib/CMakeFiles/gnuradio-tempest.dir/all
.PHONY : lib/all
# Recursive "preinstall" directory target.
lib/preinstall:
.PHONY : lib/preinstall
# Recursive "clean" directory target.
lib/clean: lib/CMakeFiles/gnuradio-tempest.dir/clean
.PHONY : lib/clean
#=============================================================================
# Directory level rules for directory python
# Recursive "all" directory target.
python/all: python/CMakeFiles/pygen_python_2ccf9.dir/all
.PHONY : python/all
# Recursive "preinstall" directory target.
python/preinstall:
.PHONY : python/preinstall
# Recursive "clean" directory target.
python/clean: python/CMakeFiles/pygen_python_2ccf9.dir/clean
.PHONY : python/clean
#=============================================================================
# Directory level rules for directory swig
# Recursive "all" directory target.
swig/all: swig/CMakeFiles/pygen_swig_8088c.dir/all
swig/all: swig/CMakeFiles/tempest_swig.dir/all
.PHONY : swig/all
# Recursive "preinstall" directory target.
swig/preinstall:
.PHONY : swig/preinstall
# Recursive "clean" directory target.
swig/clean: swig/CMakeFiles/pygen_swig_8088c.dir/clean
swig/clean: swig/CMakeFiles/tempest_swig_swig_compilation.dir/clean
swig/clean: swig/CMakeFiles/tempest_swig.dir/clean
swig/clean: swig/CMakeFiles/tempest_swig_swig_doc.dir/clean
.PHONY : swig/clean
#=============================================================================
# Target rules for target CMakeFiles/uninstall.dir
# All Build rule for target.
CMakeFiles/uninstall.dir/all:
$(MAKE) -f CMakeFiles/uninstall.dir/build.make CMakeFiles/uninstall.dir/depend
$(MAKE) -f CMakeFiles/uninstall.dir/build.make CMakeFiles/uninstall.dir/build
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/emidan19/gr-tempest/build/CMakeFiles --progress-num= "Built target uninstall"
.PHONY : CMakeFiles/uninstall.dir/all
# Build rule for subdir invocation for target.
CMakeFiles/uninstall.dir/rule: cmake_check_build_system
$(CMAKE_COMMAND) -E cmake_progress_start /home/emidan19/gr-tempest/build/CMakeFiles 0
$(MAKE) -f CMakeFiles/Makefile2 CMakeFiles/uninstall.dir/all
$(CMAKE_COMMAND) -E cmake_progress_start /home/emidan19/gr-tempest/build/CMakeFiles 0
.PHONY : CMakeFiles/uninstall.dir/rule
# Convenience name for target.
uninstall: CMakeFiles/uninstall.dir/rule
.PHONY : uninstall
# clean rule for target.
CMakeFiles/uninstall.dir/clean:
$(MAKE) -f CMakeFiles/uninstall.dir/build.make CMakeFiles/uninstall.dir/clean
.PHONY : CMakeFiles/uninstall.dir/clean
#=============================================================================
# Target rules for target lib/CMakeFiles/gnuradio-tempest.dir
# All Build rule for target.
lib/CMakeFiles/gnuradio-tempest.dir/all:
$(MAKE) -f lib/CMakeFiles/gnuradio-tempest.dir/build.make lib/CMakeFiles/gnuradio-tempest.dir/depend
$(MAKE) -f lib/CMakeFiles/gnuradio-tempest.dir/build.make lib/CMakeFiles/gnuradio-tempest.dir/build
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/emidan19/gr-tempest/build/CMakeFiles --progress-num=1,2,3,4,5,6,7,8,9,10,11 "Built target gnuradio-tempest"
.PHONY : lib/CMakeFiles/gnuradio-tempest.dir/all
# Build rule for subdir invocation for target.
lib/CMakeFiles/gnuradio-tempest.dir/rule: cmake_check_build_system
$(CMAKE_COMMAND) -E cmake_progress_start /home/emidan19/gr-tempest/build/CMakeFiles 11
$(MAKE) -f CMakeFiles/Makefile2 lib/CMakeFiles/gnuradio-tempest.dir/all
$(CMAKE_COMMAND) -E cmake_progress_start /home/emidan19/gr-tempest/build/CMakeFiles 0
.PHONY : lib/CMakeFiles/gnuradio-tempest.dir/rule
# Convenience name for target.
gnuradio-tempest: lib/CMakeFiles/gnuradio-tempest.dir/rule
.PHONY : gnuradio-tempest
# clean rule for target.
lib/CMakeFiles/gnuradio-tempest.dir/clean:
$(MAKE) -f lib/CMakeFiles/gnuradio-tempest.dir/build.make lib/CMakeFiles/gnuradio-tempest.dir/clean
.PHONY : lib/CMakeFiles/gnuradio-tempest.dir/clean
#=============================================================================
# Target rules for target apps/CMakeFiles/pygen_apps_9a6dd.dir
# All Build rule for target.
apps/CMakeFiles/pygen_apps_9a6dd.dir/all:
$(MAKE) -f apps/CMakeFiles/pygen_apps_9a6dd.dir/build.make apps/CMakeFiles/pygen_apps_9a6dd.dir/depend
$(MAKE) -f apps/CMakeFiles/pygen_apps_9a6dd.dir/build.make apps/CMakeFiles/pygen_apps_9a6dd.dir/build
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/emidan19/gr-tempest/build/CMakeFiles --progress-num= "Built target pygen_apps_9a6dd"
.PHONY : apps/CMakeFiles/pygen_apps_9a6dd.dir/all
# Build rule for subdir invocation for target.
apps/CMakeFiles/pygen_apps_9a6dd.dir/rule: cmake_check_build_system
$(CMAKE_COMMAND) -E cmake_progress_start /home/emidan19/gr-tempest/build/CMakeFiles 0
$(MAKE) -f CMakeFiles/Makefile2 apps/CMakeFiles/pygen_apps_9a6dd.dir/all
$(CMAKE_COMMAND) -E cmake_progress_start /home/emidan19/gr-tempest/build/CMakeFiles 0
.PHONY : apps/CMakeFiles/pygen_apps_9a6dd.dir/rule
# Convenience name for target.
pygen_apps_9a6dd: apps/CMakeFiles/pygen_apps_9a6dd.dir/rule
.PHONY : pygen_apps_9a6dd
# clean rule for target.
apps/CMakeFiles/pygen_apps_9a6dd.dir/clean:
$(MAKE) -f apps/CMakeFiles/pygen_apps_9a6dd.dir/build.make apps/CMakeFiles/pygen_apps_9a6dd.dir/clean
.PHONY : apps/CMakeFiles/pygen_apps_9a6dd.dir/clean
#=============================================================================
# Target rules for target swig/CMakeFiles/pygen_swig_8088c.dir
# All Build rule for target.
swig/CMakeFiles/pygen_swig_8088c.dir/all: swig/CMakeFiles/tempest_swig.dir/all
$(MAKE) -f swig/CMakeFiles/pygen_swig_8088c.dir/build.make swig/CMakeFiles/pygen_swig_8088c.dir/depend
$(MAKE) -f swig/CMakeFiles/pygen_swig_8088c.dir/build.make swig/CMakeFiles/pygen_swig_8088c.dir/build
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/emidan19/gr-tempest/build/CMakeFiles --progress-num=14,15 "Built target pygen_swig_8088c"
.PHONY : swig/CMakeFiles/pygen_swig_8088c.dir/all
# Build rule for subdir invocation for target.
swig/CMakeFiles/pygen_swig_8088c.dir/rule: cmake_check_build_system
$(CMAKE_COMMAND) -E cmake_progress_start /home/emidan19/gr-tempest/build/CMakeFiles 16
$(MAKE) -f CMakeFiles/Makefile2 swig/CMakeFiles/pygen_swig_8088c.dir/all
$(CMAKE_COMMAND) -E cmake_progress_start /home/emidan19/gr-tempest/build/CMakeFiles 0
.PHONY : swig/CMakeFiles/pygen_swig_8088c.dir/rule
# Convenience name for target.
pygen_swig_8088c: swig/CMakeFiles/pygen_swig_8088c.dir/rule
.PHONY : pygen_swig_8088c
# clean rule for target.
swig/CMakeFiles/pygen_swig_8088c.dir/clean:
$(MAKE) -f swig/CMakeFiles/pygen_swig_8088c.dir/build.make swig/CMakeFiles/pygen_swig_8088c.dir/clean
.PHONY : swig/CMakeFiles/pygen_swig_8088c.dir/clean
#=============================================================================
# Target rules for target swig/CMakeFiles/tempest_swig_swig_compilation.dir
# All Build rule for target.
swig/CMakeFiles/tempest_swig_swig_compilation.dir/all: swig/CMakeFiles/tempest_swig_swig_doc.dir/all
$(MAKE) -f swig/CMakeFiles/tempest_swig_swig_compilation.dir/build.make swig/CMakeFiles/tempest_swig_swig_compilation.dir/depend
$(MAKE) -f swig/CMakeFiles/tempest_swig_swig_compilation.dir/build.make swig/CMakeFiles/tempest_swig_swig_compilation.dir/build
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/emidan19/gr-tempest/build/CMakeFiles --progress-num=18 "Built target tempest_swig_swig_compilation"
.PHONY : swig/CMakeFiles/tempest_swig_swig_compilation.dir/all
# Build rule for subdir invocation for target.
swig/CMakeFiles/tempest_swig_swig_compilation.dir/rule: cmake_check_build_system
$(CMAKE_COMMAND) -E cmake_progress_start /home/emidan19/gr-tempest/build/CMakeFiles 1
$(MAKE) -f CMakeFiles/Makefile2 swig/CMakeFiles/tempest_swig_swig_compilation.dir/all
$(CMAKE_COMMAND) -E cmake_progress_start /home/emidan19/gr-tempest/build/CMakeFiles 0
.PHONY : swig/CMakeFiles/tempest_swig_swig_compilation.dir/rule
# Convenience name for target.
tempest_swig_swig_compilation: swig/CMakeFiles/tempest_swig_swig_compilation.dir/rule
.PHONY : tempest_swig_swig_compilation
# clean rule for target.
swig/CMakeFiles/tempest_swig_swig_compilation.dir/clean:
$(MAKE) -f swig/CMakeFiles/tempest_swig_swig_compilation.dir/build.make swig/CMakeFiles/tempest_swig_swig_compilation.dir/clean
.PHONY : swig/CMakeFiles/tempest_swig_swig_compilation.dir/clean
#=============================================================================
# Target rules for target swig/CMakeFiles/tempest_swig.dir
# All Build rule for target.
swig/CMakeFiles/tempest_swig.dir/all: lib/CMakeFiles/gnuradio-tempest.dir/all
swig/CMakeFiles/tempest_swig.dir/all: swig/CMakeFiles/tempest_swig_swig_compilation.dir/all
$(MAKE) -f swig/CMakeFiles/tempest_swig.dir/build.make swig/CMakeFiles/tempest_swig.dir/depend
$(MAKE) -f swig/CMakeFiles/tempest_swig.dir/build.make swig/CMakeFiles/tempest_swig.dir/build
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/emidan19/gr-tempest/build/CMakeFiles --progress-num=16,17 "Built target tempest_swig"
.PHONY : swig/CMakeFiles/tempest_swig.dir/all
# Build rule for subdir invocation for target.
swig/CMakeFiles/tempest_swig.dir/rule: cmake_check_build_system
$(CMAKE_COMMAND) -E cmake_progress_start /home/emidan19/gr-tempest/build/CMakeFiles 14
$(MAKE) -f CMakeFiles/Makefile2 swig/CMakeFiles/tempest_swig.dir/all
$(CMAKE_COMMAND) -E cmake_progress_start /home/emidan19/gr-tempest/build/CMakeFiles 0
.PHONY : swig/CMakeFiles/tempest_swig.dir/rule
# Convenience name for target.
tempest_swig: swig/CMakeFiles/tempest_swig.dir/rule
.PHONY : tempest_swig
# clean rule for target.
swig/CMakeFiles/tempest_swig.dir/clean:
$(MAKE) -f swig/CMakeFiles/tempest_swig.dir/build.make swig/CMakeFiles/tempest_swig.dir/clean
.PHONY : swig/CMakeFiles/tempest_swig.dir/clean
#=============================================================================
# Target rules for target swig/CMakeFiles/tempest_swig_swig_doc.dir
# All Build rule for target.
swig/CMakeFiles/tempest_swig_swig_doc.dir/all:
$(MAKE) -f swig/CMakeFiles/tempest_swig_swig_doc.dir/build.make swig/CMakeFiles/tempest_swig_swig_doc.dir/depend
$(MAKE) -f swig/CMakeFiles/tempest_swig_swig_doc.dir/build.make swig/CMakeFiles/tempest_swig_swig_doc.dir/build
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/emidan19/gr-tempest/build/CMakeFiles --progress-num= "Built target tempest_swig_swig_doc"
.PHONY : swig/CMakeFiles/tempest_swig_swig_doc.dir/all
# Build rule for subdir invocation for target.
swig/CMakeFiles/tempest_swig_swig_doc.dir/rule: cmake_check_build_system
$(CMAKE_COMMAND) -E cmake_progress_start /home/emidan19/gr-tempest/build/CMakeFiles 0
$(MAKE) -f CMakeFiles/Makefile2 swig/CMakeFiles/tempest_swig_swig_doc.dir/all
$(CMAKE_COMMAND) -E cmake_progress_start /home/emidan19/gr-tempest/build/CMakeFiles 0
.PHONY : swig/CMakeFiles/tempest_swig_swig_doc.dir/rule
# Convenience name for target.
tempest_swig_swig_doc: swig/CMakeFiles/tempest_swig_swig_doc.dir/rule
.PHONY : tempest_swig_swig_doc
# clean rule for target.
swig/CMakeFiles/tempest_swig_swig_doc.dir/clean:
$(MAKE) -f swig/CMakeFiles/tempest_swig_swig_doc.dir/build.make swig/CMakeFiles/tempest_swig_swig_doc.dir/clean
.PHONY : swig/CMakeFiles/tempest_swig_swig_doc.dir/clean
#=============================================================================
# Target rules for target python/CMakeFiles/pygen_python_2ccf9.dir
# All Build rule for target.
python/CMakeFiles/pygen_python_2ccf9.dir/all:
$(MAKE) -f python/CMakeFiles/pygen_python_2ccf9.dir/build.make python/CMakeFiles/pygen_python_2ccf9.dir/depend
$(MAKE) -f python/CMakeFiles/pygen_python_2ccf9.dir/build.make python/CMakeFiles/pygen_python_2ccf9.dir/build
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/emidan19/gr-tempest/build/CMakeFiles --progress-num=12,13 "Built target pygen_python_2ccf9"
.PHONY : python/CMakeFiles/pygen_python_2ccf9.dir/all
# Build rule for subdir invocation for target.
python/CMakeFiles/pygen_python_2ccf9.dir/rule: cmake_check_build_system
$(CMAKE_COMMAND) -E cmake_progress_start /home/emidan19/gr-tempest/build/CMakeFiles 2
$(MAKE) -f CMakeFiles/Makefile2 python/CMakeFiles/pygen_python_2ccf9.dir/all
$(CMAKE_COMMAND) -E cmake_progress_start /home/emidan19/gr-tempest/build/CMakeFiles 0
.PHONY : python/CMakeFiles/pygen_python_2ccf9.dir/rule
# Convenience name for target.
pygen_python_2ccf9: python/CMakeFiles/pygen_python_2ccf9.dir/rule
.PHONY : pygen_python_2ccf9
# clean rule for target.
python/CMakeFiles/pygen_python_2ccf9.dir/clean:
$(MAKE) -f python/CMakeFiles/pygen_python_2ccf9.dir/build.make python/CMakeFiles/pygen_python_2ccf9.dir/clean
.PHONY : python/CMakeFiles/pygen_python_2ccf9.dir/clean
#=============================================================================
# Special targets to cleanup operation of make.
# Special rule to run CMake to check the build system integrity.
# No rule that depends on this can have commands that come from listfiles
# because they might be regenerated.
cmake_check_build_system:
$(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0
.PHONY : cmake_check_build_system

View File

@ -0,0 +1,64 @@
/home/emidan19/gr-tempest/build/CMakeFiles/install/strip.dir
/home/emidan19/gr-tempest/build/CMakeFiles/install/local.dir
/home/emidan19/gr-tempest/build/CMakeFiles/install.dir
/home/emidan19/gr-tempest/build/CMakeFiles/list_install_components.dir
/home/emidan19/gr-tempest/build/CMakeFiles/rebuild_cache.dir
/home/emidan19/gr-tempest/build/CMakeFiles/edit_cache.dir
/home/emidan19/gr-tempest/build/CMakeFiles/test.dir
/home/emidan19/gr-tempest/build/CMakeFiles/uninstall.dir
/home/emidan19/gr-tempest/build/include/tempest/CMakeFiles/install/strip.dir
/home/emidan19/gr-tempest/build/include/tempest/CMakeFiles/install/local.dir
/home/emidan19/gr-tempest/build/include/tempest/CMakeFiles/install.dir
/home/emidan19/gr-tempest/build/include/tempest/CMakeFiles/list_install_components.dir
/home/emidan19/gr-tempest/build/include/tempest/CMakeFiles/rebuild_cache.dir
/home/emidan19/gr-tempest/build/include/tempest/CMakeFiles/edit_cache.dir
/home/emidan19/gr-tempest/build/include/tempest/CMakeFiles/test.dir
/home/emidan19/gr-tempest/build/lib/CMakeFiles/install/strip.dir
/home/emidan19/gr-tempest/build/lib/CMakeFiles/install/local.dir
/home/emidan19/gr-tempest/build/lib/CMakeFiles/install.dir
/home/emidan19/gr-tempest/build/lib/CMakeFiles/list_install_components.dir
/home/emidan19/gr-tempest/build/lib/CMakeFiles/rebuild_cache.dir
/home/emidan19/gr-tempest/build/lib/CMakeFiles/edit_cache.dir
/home/emidan19/gr-tempest/build/lib/CMakeFiles/test.dir
/home/emidan19/gr-tempest/build/lib/CMakeFiles/gnuradio-tempest.dir
/home/emidan19/gr-tempest/build/apps/CMakeFiles/install/local.dir
/home/emidan19/gr-tempest/build/apps/CMakeFiles/install.dir
/home/emidan19/gr-tempest/build/apps/CMakeFiles/list_install_components.dir
/home/emidan19/gr-tempest/build/apps/CMakeFiles/rebuild_cache.dir
/home/emidan19/gr-tempest/build/apps/CMakeFiles/edit_cache.dir
/home/emidan19/gr-tempest/build/apps/CMakeFiles/test.dir
/home/emidan19/gr-tempest/build/apps/CMakeFiles/install/strip.dir
/home/emidan19/gr-tempest/build/apps/CMakeFiles/pygen_apps_9a6dd.dir
/home/emidan19/gr-tempest/build/docs/CMakeFiles/install/strip.dir
/home/emidan19/gr-tempest/build/docs/CMakeFiles/install/local.dir
/home/emidan19/gr-tempest/build/docs/CMakeFiles/install.dir
/home/emidan19/gr-tempest/build/docs/CMakeFiles/list_install_components.dir
/home/emidan19/gr-tempest/build/docs/CMakeFiles/rebuild_cache.dir
/home/emidan19/gr-tempest/build/docs/CMakeFiles/edit_cache.dir
/home/emidan19/gr-tempest/build/docs/CMakeFiles/test.dir
/home/emidan19/gr-tempest/build/swig/CMakeFiles/install/strip.dir
/home/emidan19/gr-tempest/build/swig/CMakeFiles/install/local.dir
/home/emidan19/gr-tempest/build/swig/CMakeFiles/install.dir
/home/emidan19/gr-tempest/build/swig/CMakeFiles/list_install_components.dir
/home/emidan19/gr-tempest/build/swig/CMakeFiles/rebuild_cache.dir
/home/emidan19/gr-tempest/build/swig/CMakeFiles/edit_cache.dir
/home/emidan19/gr-tempest/build/swig/CMakeFiles/test.dir
/home/emidan19/gr-tempest/build/swig/CMakeFiles/pygen_swig_8088c.dir
/home/emidan19/gr-tempest/build/swig/CMakeFiles/tempest_swig_swig_compilation.dir
/home/emidan19/gr-tempest/build/swig/CMakeFiles/tempest_swig.dir
/home/emidan19/gr-tempest/build/swig/CMakeFiles/tempest_swig_swig_doc.dir
/home/emidan19/gr-tempest/build/python/CMakeFiles/install/strip.dir
/home/emidan19/gr-tempest/build/python/CMakeFiles/install/local.dir
/home/emidan19/gr-tempest/build/python/CMakeFiles/install.dir
/home/emidan19/gr-tempest/build/python/CMakeFiles/list_install_components.dir
/home/emidan19/gr-tempest/build/python/CMakeFiles/rebuild_cache.dir
/home/emidan19/gr-tempest/build/python/CMakeFiles/edit_cache.dir
/home/emidan19/gr-tempest/build/python/CMakeFiles/test.dir
/home/emidan19/gr-tempest/build/python/CMakeFiles/pygen_python_2ccf9.dir
/home/emidan19/gr-tempest/build/grc/CMakeFiles/install/strip.dir
/home/emidan19/gr-tempest/build/grc/CMakeFiles/install/local.dir
/home/emidan19/gr-tempest/build/grc/CMakeFiles/install.dir
/home/emidan19/gr-tempest/build/grc/CMakeFiles/list_install_components.dir
/home/emidan19/gr-tempest/build/grc/CMakeFiles/rebuild_cache.dir
/home/emidan19/gr-tempest/build/grc/CMakeFiles/edit_cache.dir
/home/emidan19/gr-tempest/build/grc/CMakeFiles/test.dir

View File

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

View File

@ -0,0 +1 @@
18

View File

@ -0,0 +1,11 @@
# The set of languages for which implicit dependencies are needed:
set(CMAKE_DEPENDS_LANGUAGES
)
# The set of files for implicit dependencies of each language:
# Targets to which this target links.
set(CMAKE_TARGET_LINKED_INFO_FILES
)
# Fortran module output directory.
set(CMAKE_Fortran_TARGET_MODULE_DIR "")

View File

@ -0,0 +1,76 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 3.16
# Delete rule output on recipe failure.
.DELETE_ON_ERROR:
#=============================================================================
# Special targets provided by cmake.
# Disable implicit rules so canonical targets will work.
.SUFFIXES:
# Remove some rules from gmake that .SUFFIXES does not remove.
SUFFIXES =
.SUFFIXES: .hpux_make_needs_suffix_list
# Suppress display of executed commands.
$(VERBOSE).SILENT:
# A target that is always out of date.
cmake_force:
.PHONY : cmake_force
#=============================================================================
# Set environment variables for the build.
# The shell in which to execute make rules.
SHELL = /bin/sh
# The CMake executable.
CMAKE_COMMAND = /usr/bin/cmake
# The command to remove a file.
RM = /usr/bin/cmake -E remove -f
# Escaping for special characters.
EQUALS = =
# The top-level source directory on which CMake was run.
CMAKE_SOURCE_DIR = /home/emidan19/gr-tempest
# The top-level build directory on which CMake was run.
CMAKE_BINARY_DIR = /home/emidan19/gr-tempest/build
# Utility rule file for uninstall.
# Include the progress variables for this target.
include CMakeFiles/uninstall.dir/progress.make
CMakeFiles/uninstall:
/usr/bin/cmake -P /home/emidan19/gr-tempest/build/cmake_uninstall.cmake
uninstall: CMakeFiles/uninstall
uninstall: CMakeFiles/uninstall.dir/build.make
.PHONY : uninstall
# Rule to build all files generated by this target.
CMakeFiles/uninstall.dir/build: uninstall
.PHONY : CMakeFiles/uninstall.dir/build
CMakeFiles/uninstall.dir/clean:
$(CMAKE_COMMAND) -P CMakeFiles/uninstall.dir/cmake_clean.cmake
.PHONY : CMakeFiles/uninstall.dir/clean
CMakeFiles/uninstall.dir/depend:
cd /home/emidan19/gr-tempest/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/emidan19/gr-tempest /home/emidan19/gr-tempest /home/emidan19/gr-tempest/build /home/emidan19/gr-tempest/build /home/emidan19/gr-tempest/build/CMakeFiles/uninstall.dir/DependInfo.cmake --color=$(COLOR)
.PHONY : CMakeFiles/uninstall.dir/depend

View File

@ -0,0 +1,8 @@
file(REMOVE_RECURSE
"CMakeFiles/uninstall"
)
# Per-language clean rules from dependency scanning.
foreach(lang )
include(CMakeFiles/uninstall.dir/cmake_clean_${lang}.cmake OPTIONAL)
endforeach()

View File

@ -0,0 +1 @@

13
build/CTestTestfile.cmake Normal file
View File

@ -0,0 +1,13 @@
# CMake generated Testfile for
# Source directory: /home/emidan19/gr-tempest
# Build directory: /home/emidan19/gr-tempest/build
#
# This file includes the relevant testing commands required for
# testing this directory and lists subdirectories to be tested as well.
subdirs("include/tempest")
subdirs("lib")
subdirs("apps")
subdirs("docs")
subdirs("swig")
subdirs("python")
subdirs("grc")

308
build/Makefile Normal file
View File

@ -0,0 +1,308 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 3.16
# Default target executed when no arguments are given to make.
default_target: all
.PHONY : default_target
# Allow only one "make -f Makefile2" at a time, but pass parallelism.
.NOTPARALLEL:
#=============================================================================
# Special targets provided by cmake.
# Disable implicit rules so canonical targets will work.
.SUFFIXES:
# Remove some rules from gmake that .SUFFIXES does not remove.
SUFFIXES =
.SUFFIXES: .hpux_make_needs_suffix_list
# Suppress display of executed commands.
$(VERBOSE).SILENT:
# A target that is always out of date.
cmake_force:
.PHONY : cmake_force
#=============================================================================
# Set environment variables for the build.
# The shell in which to execute make rules.
SHELL = /bin/sh
# The CMake executable.
CMAKE_COMMAND = /usr/bin/cmake
# The command to remove a file.
RM = /usr/bin/cmake -E remove -f
# Escaping for special characters.
EQUALS = =
# The top-level source directory on which CMake was run.
CMAKE_SOURCE_DIR = /home/emidan19/gr-tempest
# The top-level build directory on which CMake was run.
CMAKE_BINARY_DIR = /home/emidan19/gr-tempest/build
#=============================================================================
# Targets provided globally by CMake.
# Special rule for the target install/strip
install/strip: preinstall
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing the project stripped..."
/usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake
.PHONY : install/strip
# Special rule for the target install/strip
install/strip/fast: preinstall/fast
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing the project stripped..."
/usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake
.PHONY : install/strip/fast
# Special rule for the target install/local
install/local: preinstall
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing only the local directory..."
/usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake
.PHONY : install/local
# Special rule for the target install/local
install/local/fast: preinstall/fast
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing only the local directory..."
/usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake
.PHONY : install/local/fast
# Special rule for the target install
install: preinstall
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Install the project..."
/usr/bin/cmake -P cmake_install.cmake
.PHONY : install
# Special rule for the target install
install/fast: preinstall/fast
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Install the project..."
/usr/bin/cmake -P cmake_install.cmake
.PHONY : install/fast
# Special rule for the target list_install_components
list_install_components:
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Available install components are: \"Unspecified\""
.PHONY : list_install_components
# Special rule for the target list_install_components
list_install_components/fast: list_install_components
.PHONY : list_install_components/fast
# Special rule for the target rebuild_cache
rebuild_cache:
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running CMake to regenerate build system..."
/usr/bin/cmake -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 edit_cache
edit_cache:
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "No interactive CMake dialog available..."
/usr/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available.
.PHONY : edit_cache
# Special rule for the target edit_cache
edit_cache/fast: edit_cache
.PHONY : edit_cache/fast
# Special rule for the target test
test:
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running tests..."
/usr/bin/ctest --force-new-ctest-process $(ARGS)
.PHONY : test
# Special rule for the target test
test/fast: test
.PHONY : test/fast
# The main all target
all: cmake_check_build_system
$(CMAKE_COMMAND) -E cmake_progress_start /home/emidan19/gr-tempest/build/CMakeFiles /home/emidan19/gr-tempest/build/CMakeFiles/progress.marks
$(MAKE) -f CMakeFiles/Makefile2 all
$(CMAKE_COMMAND) -E cmake_progress_start /home/emidan19/gr-tempest/build/CMakeFiles 0
.PHONY : all
# The main clean target
clean:
$(MAKE) -f CMakeFiles/Makefile2 clean
.PHONY : clean
# The main clean target
clean/fast: clean
.PHONY : clean/fast
# Prepare targets for installation.
preinstall: all
$(MAKE) -f CMakeFiles/Makefile2 preinstall
.PHONY : preinstall
# Prepare targets for installation.
preinstall/fast:
$(MAKE) -f CMakeFiles/Makefile2 preinstall
.PHONY : preinstall/fast
# clear depends
depend:
$(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1
.PHONY : depend
#=============================================================================
# Target rules for targets named uninstall
# Build rule for target.
uninstall: cmake_check_build_system
$(MAKE) -f CMakeFiles/Makefile2 uninstall
.PHONY : uninstall
# fast build rule for target.
uninstall/fast:
$(MAKE) -f CMakeFiles/uninstall.dir/build.make CMakeFiles/uninstall.dir/build
.PHONY : uninstall/fast
#=============================================================================
# Target rules for targets named gnuradio-tempest
# Build rule for target.
gnuradio-tempest: cmake_check_build_system
$(MAKE) -f CMakeFiles/Makefile2 gnuradio-tempest
.PHONY : gnuradio-tempest
# fast build rule for target.
gnuradio-tempest/fast:
$(MAKE) -f lib/CMakeFiles/gnuradio-tempest.dir/build.make lib/CMakeFiles/gnuradio-tempest.dir/build
.PHONY : gnuradio-tempest/fast
#=============================================================================
# Target rules for targets named pygen_apps_9a6dd
# Build rule for target.
pygen_apps_9a6dd: cmake_check_build_system
$(MAKE) -f CMakeFiles/Makefile2 pygen_apps_9a6dd
.PHONY : pygen_apps_9a6dd
# fast build rule for target.
pygen_apps_9a6dd/fast:
$(MAKE) -f apps/CMakeFiles/pygen_apps_9a6dd.dir/build.make apps/CMakeFiles/pygen_apps_9a6dd.dir/build
.PHONY : pygen_apps_9a6dd/fast
#=============================================================================
# Target rules for targets named pygen_swig_8088c
# Build rule for target.
pygen_swig_8088c: cmake_check_build_system
$(MAKE) -f CMakeFiles/Makefile2 pygen_swig_8088c
.PHONY : pygen_swig_8088c
# fast build rule for target.
pygen_swig_8088c/fast:
$(MAKE) -f swig/CMakeFiles/pygen_swig_8088c.dir/build.make swig/CMakeFiles/pygen_swig_8088c.dir/build
.PHONY : pygen_swig_8088c/fast
#=============================================================================
# Target rules for targets named tempest_swig_swig_compilation
# Build rule for target.
tempest_swig_swig_compilation: cmake_check_build_system
$(MAKE) -f CMakeFiles/Makefile2 tempest_swig_swig_compilation
.PHONY : tempest_swig_swig_compilation
# fast build rule for target.
tempest_swig_swig_compilation/fast:
$(MAKE) -f swig/CMakeFiles/tempest_swig_swig_compilation.dir/build.make swig/CMakeFiles/tempest_swig_swig_compilation.dir/build
.PHONY : tempest_swig_swig_compilation/fast
#=============================================================================
# Target rules for targets named tempest_swig
# Build rule for target.
tempest_swig: cmake_check_build_system
$(MAKE) -f CMakeFiles/Makefile2 tempest_swig
.PHONY : tempest_swig
# fast build rule for target.
tempest_swig/fast:
$(MAKE) -f swig/CMakeFiles/tempest_swig.dir/build.make swig/CMakeFiles/tempest_swig.dir/build
.PHONY : tempest_swig/fast
#=============================================================================
# Target rules for targets named tempest_swig_swig_doc
# Build rule for target.
tempest_swig_swig_doc: cmake_check_build_system
$(MAKE) -f CMakeFiles/Makefile2 tempest_swig_swig_doc
.PHONY : tempest_swig_swig_doc
# fast build rule for target.
tempest_swig_swig_doc/fast:
$(MAKE) -f swig/CMakeFiles/tempest_swig_swig_doc.dir/build.make swig/CMakeFiles/tempest_swig_swig_doc.dir/build
.PHONY : tempest_swig_swig_doc/fast
#=============================================================================
# Target rules for targets named pygen_python_2ccf9
# Build rule for target.
pygen_python_2ccf9: cmake_check_build_system
$(MAKE) -f CMakeFiles/Makefile2 pygen_python_2ccf9
.PHONY : pygen_python_2ccf9
# fast build rule for target.
pygen_python_2ccf9/fast:
$(MAKE) -f python/CMakeFiles/pygen_python_2ccf9.dir/build.make python/CMakeFiles/pygen_python_2ccf9.dir/build
.PHONY : pygen_python_2ccf9/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 "... install/strip"
@echo "... install/local"
@echo "... install"
@echo "... list_install_components"
@echo "... rebuild_cache"
@echo "... edit_cache"
@echo "... test"
@echo "... uninstall"
@echo "... gnuradio-tempest"
@echo "... pygen_apps_9a6dd"
@echo "... pygen_swig_8088c"
@echo "... tempest_swig_swig_compilation"
@echo "... tempest_swig"
@echo "... tempest_swig_swig_doc"
@echo "... pygen_python_2ccf9"
.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

View File

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

View File

@ -0,0 +1 @@
0

View File

@ -0,0 +1,11 @@
# The set of languages for which implicit dependencies are needed:
set(CMAKE_DEPENDS_LANGUAGES
)
# The set of files for implicit dependencies of each language:
# Targets to which this target links.
set(CMAKE_TARGET_LINKED_INFO_FILES
)
# Fortran module output directory.
set(CMAKE_Fortran_TARGET_MODULE_DIR "")

View File

@ -0,0 +1,72 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 3.16
# Delete rule output on recipe failure.
.DELETE_ON_ERROR:
#=============================================================================
# Special targets provided by cmake.
# Disable implicit rules so canonical targets will work.
.SUFFIXES:
# Remove some rules from gmake that .SUFFIXES does not remove.
SUFFIXES =
.SUFFIXES: .hpux_make_needs_suffix_list
# Suppress display of executed commands.
$(VERBOSE).SILENT:
# A target that is always out of date.
cmake_force:
.PHONY : cmake_force
#=============================================================================
# Set environment variables for the build.
# The shell in which to execute make rules.
SHELL = /bin/sh
# The CMake executable.
CMAKE_COMMAND = /usr/bin/cmake
# The command to remove a file.
RM = /usr/bin/cmake -E remove -f
# Escaping for special characters.
EQUALS = =
# The top-level source directory on which CMake was run.
CMAKE_SOURCE_DIR = /home/emidan19/gr-tempest
# The top-level build directory on which CMake was run.
CMAKE_BINARY_DIR = /home/emidan19/gr-tempest/build
# Utility rule file for pygen_apps_9a6dd.
# Include the progress variables for this target.
include apps/CMakeFiles/pygen_apps_9a6dd.dir/progress.make
pygen_apps_9a6dd: apps/CMakeFiles/pygen_apps_9a6dd.dir/build.make
.PHONY : pygen_apps_9a6dd
# Rule to build all files generated by this target.
apps/CMakeFiles/pygen_apps_9a6dd.dir/build: pygen_apps_9a6dd
.PHONY : apps/CMakeFiles/pygen_apps_9a6dd.dir/build
apps/CMakeFiles/pygen_apps_9a6dd.dir/clean:
cd /home/emidan19/gr-tempest/build/apps && $(CMAKE_COMMAND) -P CMakeFiles/pygen_apps_9a6dd.dir/cmake_clean.cmake
.PHONY : apps/CMakeFiles/pygen_apps_9a6dd.dir/clean
apps/CMakeFiles/pygen_apps_9a6dd.dir/depend:
cd /home/emidan19/gr-tempest/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/emidan19/gr-tempest /home/emidan19/gr-tempest/apps /home/emidan19/gr-tempest/build /home/emidan19/gr-tempest/build/apps /home/emidan19/gr-tempest/build/apps/CMakeFiles/pygen_apps_9a6dd.dir/DependInfo.cmake --color=$(COLOR)
.PHONY : apps/CMakeFiles/pygen_apps_9a6dd.dir/depend

View File

@ -0,0 +1,5 @@
# Per-language clean rules from dependency scanning.
foreach(lang )
include(CMakeFiles/pygen_apps_9a6dd.dir/cmake_clean_${lang}.cmake OPTIONAL)
endforeach()

View File

@ -0,0 +1,3 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 3.16

View File

@ -0,0 +1,3 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 3.16

View File

@ -0,0 +1 @@

View File

@ -0,0 +1,6 @@
# CMake generated Testfile for
# Source directory: /home/emidan19/gr-tempest/apps
# Build directory: /home/emidan19/gr-tempest/build/apps
#
# This file includes the relevant testing commands required for
# testing this directory and lists subdirectories to be tested as well.

212
build/apps/Makefile Normal file
View File

@ -0,0 +1,212 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 3.16
# Default target executed when no arguments are given to make.
default_target: all
.PHONY : default_target
# Allow only one "make -f Makefile2" at a time, but pass parallelism.
.NOTPARALLEL:
#=============================================================================
# Special targets provided by cmake.
# Disable implicit rules so canonical targets will work.
.SUFFIXES:
# Remove some rules from gmake that .SUFFIXES does not remove.
SUFFIXES =
.SUFFIXES: .hpux_make_needs_suffix_list
# Suppress display of executed commands.
$(VERBOSE).SILENT:
# A target that is always out of date.
cmake_force:
.PHONY : cmake_force
#=============================================================================
# Set environment variables for the build.
# The shell in which to execute make rules.
SHELL = /bin/sh
# The CMake executable.
CMAKE_COMMAND = /usr/bin/cmake
# The command to remove a file.
RM = /usr/bin/cmake -E remove -f
# Escaping for special characters.
EQUALS = =
# The top-level source directory on which CMake was run.
CMAKE_SOURCE_DIR = /home/emidan19/gr-tempest
# The top-level build directory on which CMake was run.
CMAKE_BINARY_DIR = /home/emidan19/gr-tempest/build
#=============================================================================
# Targets provided globally by CMake.
# Special rule for the target install/local
install/local: preinstall
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing only the local directory..."
/usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake
.PHONY : install/local
# Special rule for the target install/local
install/local/fast: preinstall/fast
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing only the local directory..."
/usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake
.PHONY : install/local/fast
# Special rule for the target install
install: preinstall
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Install the project..."
/usr/bin/cmake -P cmake_install.cmake
.PHONY : install
# Special rule for the target install
install/fast: preinstall/fast
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Install the project..."
/usr/bin/cmake -P cmake_install.cmake
.PHONY : install/fast
# Special rule for the target list_install_components
list_install_components:
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Available install components are: \"Unspecified\""
.PHONY : list_install_components
# Special rule for the target list_install_components
list_install_components/fast: list_install_components
.PHONY : list_install_components/fast
# Special rule for the target rebuild_cache
rebuild_cache:
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running CMake to regenerate build system..."
/usr/bin/cmake -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 edit_cache
edit_cache:
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "No interactive CMake dialog available..."
/usr/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available.
.PHONY : edit_cache
# Special rule for the target edit_cache
edit_cache/fast: edit_cache
.PHONY : edit_cache/fast
# Special rule for the target test
test:
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running tests..."
/usr/bin/ctest --force-new-ctest-process $(ARGS)
.PHONY : test
# Special rule for the target test
test/fast: test
.PHONY : test/fast
# Special rule for the target install/strip
install/strip: preinstall
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing the project stripped..."
/usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake
.PHONY : install/strip
# Special rule for the target install/strip
install/strip/fast: preinstall/fast
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing the project stripped..."
/usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake
.PHONY : install/strip/fast
# The main all target
all: cmake_check_build_system
cd /home/emidan19/gr-tempest/build && $(CMAKE_COMMAND) -E cmake_progress_start /home/emidan19/gr-tempest/build/CMakeFiles /home/emidan19/gr-tempest/build/apps/CMakeFiles/progress.marks
cd /home/emidan19/gr-tempest/build && $(MAKE) -f CMakeFiles/Makefile2 apps/all
$(CMAKE_COMMAND) -E cmake_progress_start /home/emidan19/gr-tempest/build/CMakeFiles 0
.PHONY : all
# The main clean target
clean:
cd /home/emidan19/gr-tempest/build && $(MAKE) -f CMakeFiles/Makefile2 apps/clean
.PHONY : clean
# The main clean target
clean/fast: clean
.PHONY : clean/fast
# Prepare targets for installation.
preinstall: all
cd /home/emidan19/gr-tempest/build && $(MAKE) -f CMakeFiles/Makefile2 apps/preinstall
.PHONY : preinstall
# Prepare targets for installation.
preinstall/fast:
cd /home/emidan19/gr-tempest/build && $(MAKE) -f CMakeFiles/Makefile2 apps/preinstall
.PHONY : preinstall/fast
# clear depends
depend:
cd /home/emidan19/gr-tempest/build && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1
.PHONY : depend
# Convenience name for target.
apps/CMakeFiles/pygen_apps_9a6dd.dir/rule:
cd /home/emidan19/gr-tempest/build && $(MAKE) -f CMakeFiles/Makefile2 apps/CMakeFiles/pygen_apps_9a6dd.dir/rule
.PHONY : apps/CMakeFiles/pygen_apps_9a6dd.dir/rule
# Convenience name for target.
pygen_apps_9a6dd: apps/CMakeFiles/pygen_apps_9a6dd.dir/rule
.PHONY : pygen_apps_9a6dd
# fast build rule for target.
pygen_apps_9a6dd/fast:
cd /home/emidan19/gr-tempest/build && $(MAKE) -f apps/CMakeFiles/pygen_apps_9a6dd.dir/build.make apps/CMakeFiles/pygen_apps_9a6dd.dir/build
.PHONY : pygen_apps_9a6dd/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 "... install/local"
@echo "... install"
@echo "... list_install_components"
@echo "... rebuild_cache"
@echo "... edit_cache"
@echo "... test"
@echo "... install/strip"
@echo "... pygen_apps_9a6dd"
.PHONY : help
#=============================================================================
# Special targets to cleanup operation of make.
# Special rule to run CMake to check the build system integrity.
# No rule that depends on this can have commands that come from listfiles
# because they might be regenerated.
cmake_check_build_system:
cd /home/emidan19/gr-tempest/build && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0
.PHONY : cmake_check_build_system

View File

@ -0,0 +1,39 @@
# Install script for directory: /home/emidan19/gr-tempest/apps
# Set the install prefix
if(NOT DEFINED CMAKE_INSTALL_PREFIX)
set(CMAKE_INSTALL_PREFIX "/usr/local")
endif()
string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")
# Set the install configuration name.
if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
if(BUILD_TYPE)
string(REGEX REPLACE "^[^A-Za-z0-9_]+" ""
CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}")
else()
set(CMAKE_INSTALL_CONFIG_NAME "Release")
endif()
message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
endif()
# Set the component getting installed.
if(NOT CMAKE_INSTALL_COMPONENT)
if(COMPONENT)
message(STATUS "Install component: \"${COMPONENT}\"")
set(CMAKE_INSTALL_COMPONENT "${COMPONENT}")
else()
set(CMAKE_INSTALL_COMPONENT)
endif()
endif()
# Install shared libraries without execute permission?
if(NOT DEFINED CMAKE_INSTALL_SO_NO_EXE)
set(CMAKE_INSTALL_SO_NO_EXE "1")
endif()
# Is this installation the result of a crosscompile?
if(NOT DEFINED CMAKE_CROSSCOMPILING)
set(CMAKE_CROSSCOMPILING "FALSE")
endif()

65
build/cmake_install.cmake Normal file
View File

@ -0,0 +1,65 @@
# Install script for directory: /home/emidan19/gr-tempest
# Set the install prefix
if(NOT DEFINED CMAKE_INSTALL_PREFIX)
set(CMAKE_INSTALL_PREFIX "/usr/local")
endif()
string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")
# Set the install configuration name.
if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
if(BUILD_TYPE)
string(REGEX REPLACE "^[^A-Za-z0-9_]+" ""
CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}")
else()
set(CMAKE_INSTALL_CONFIG_NAME "Release")
endif()
message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
endif()
# Set the component getting installed.
if(NOT CMAKE_INSTALL_COMPONENT)
if(COMPONENT)
message(STATUS "Install component: \"${COMPONENT}\"")
set(CMAKE_INSTALL_COMPONENT "${COMPONENT}")
else()
set(CMAKE_INSTALL_COMPONENT)
endif()
endif()
# Install shared libraries without execute permission?
if(NOT DEFINED CMAKE_INSTALL_SO_NO_EXE)
set(CMAKE_INSTALL_SO_NO_EXE "1")
endif()
# Is this installation the result of a crosscompile?
if(NOT DEFINED CMAKE_CROSSCOMPILING)
set(CMAKE_CROSSCOMPILING "FALSE")
endif()
if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_COMPONENT)
file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/lib/cmake/tempest" TYPE FILE FILES "/home/emidan19/gr-tempest/cmake/Modules/tempestConfig.cmake")
endif()
if(NOT CMAKE_INSTALL_LOCAL_ONLY)
# Include the install script for each subdirectory.
include("/home/emidan19/gr-tempest/build/include/tempest/cmake_install.cmake")
include("/home/emidan19/gr-tempest/build/lib/cmake_install.cmake")
include("/home/emidan19/gr-tempest/build/apps/cmake_install.cmake")
include("/home/emidan19/gr-tempest/build/docs/cmake_install.cmake")
include("/home/emidan19/gr-tempest/build/swig/cmake_install.cmake")
include("/home/emidan19/gr-tempest/build/python/cmake_install.cmake")
include("/home/emidan19/gr-tempest/build/grc/cmake_install.cmake")
endif()
if(CMAKE_INSTALL_COMPONENT)
set(CMAKE_INSTALL_MANIFEST "install_manifest_${CMAKE_INSTALL_COMPONENT}.txt")
else()
set(CMAKE_INSTALL_MANIFEST "install_manifest.txt")
endif()
string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT
"${CMAKE_INSTALL_MANIFEST_FILES}")
file(WRITE "/home/emidan19/gr-tempest/build/${CMAKE_INSTALL_MANIFEST}"
"${CMAKE_INSTALL_MANIFEST_CONTENT}")

View File

@ -0,0 +1,32 @@
# http://www.vtk.org/Wiki/CMake_FAQ#Can_I_do_.22make_uninstall.22_with_CMake.3F
IF(NOT EXISTS "/home/emidan19/gr-tempest/build/install_manifest.txt")
MESSAGE(FATAL_ERROR "Cannot find install manifest: \"/home/emidan19/gr-tempest/build/install_manifest.txt\"")
ENDIF(NOT EXISTS "/home/emidan19/gr-tempest/build/install_manifest.txt")
FILE(READ "/home/emidan19/gr-tempest/build/install_manifest.txt" files)
STRING(REGEX REPLACE "\n" ";" files "${files}")
FOREACH(file ${files})
MESSAGE(STATUS "Uninstalling \"$ENV{DESTDIR}${file}\"")
IF(EXISTS "$ENV{DESTDIR}${file}")
EXEC_PROGRAM(
"/usr/bin/cmake" ARGS "-E remove \"$ENV{DESTDIR}${file}\""
OUTPUT_VARIABLE rm_out
RETURN_VALUE rm_retval
)
IF(NOT "${rm_retval}" STREQUAL 0)
MESSAGE(FATAL_ERROR "Problem when removing \"$ENV{DESTDIR}${file}\"")
ENDIF(NOT "${rm_retval}" STREQUAL 0)
ELSEIF(IS_SYMLINK "$ENV{DESTDIR}${file}")
EXEC_PROGRAM(
"/usr/bin/cmake" ARGS "-E remove \"$ENV{DESTDIR}${file}\""
OUTPUT_VARIABLE rm_out
RETURN_VALUE rm_retval
)
IF(NOT "${rm_retval}" STREQUAL 0)
MESSAGE(FATAL_ERROR "Problem when removing \"$ENV{DESTDIR}${file}\"")
ENDIF(NOT "${rm_retval}" STREQUAL 0)
ELSE(EXISTS "$ENV{DESTDIR}${file}")
MESSAGE(STATUS "File \"$ENV{DESTDIR}${file}\" does not exist.")
ENDIF(EXISTS "$ENV{DESTDIR}${file}")
ENDFOREACH(file)

View File

@ -0,0 +1,57 @@
[
{
"directory": "/home/emidan19/gr-tempest/build/lib",
"command": "/usr/bin/c++ -DBOOST_ALL_NO_LIB -DBOOST_ATOMIC_DYN_LINK -DBOOST_FILESYSTEM_DYN_LINK -DBOOST_PROGRAM_OPTIONS_DYN_LINK -DBOOST_REGEX_DYN_LINK -DBOOST_SYSTEM_DYN_LINK -DBOOST_THREAD_DYN_LINK -DFFTW3F_THREADS -DGR_CTRLPORT -Dgnuradio_tempest_EXPORTS -I/home/emidan19/gr-tempest/lib/../include -O3 -DNDEBUG -fPIC -fvisibility=hidden -std=gnu++11 -o CMakeFiles/gnuradio-tempest.dir/sampling_synchronization_impl.cc.o -c /home/emidan19/gr-tempest/lib/sampling_synchronization_impl.cc",
"file": "/home/emidan19/gr-tempest/lib/sampling_synchronization_impl.cc"
},
{
"directory": "/home/emidan19/gr-tempest/build/lib",
"command": "/usr/bin/c++ -DBOOST_ALL_NO_LIB -DBOOST_ATOMIC_DYN_LINK -DBOOST_FILESYSTEM_DYN_LINK -DBOOST_PROGRAM_OPTIONS_DYN_LINK -DBOOST_REGEX_DYN_LINK -DBOOST_SYSTEM_DYN_LINK -DBOOST_THREAD_DYN_LINK -DFFTW3F_THREADS -DGR_CTRLPORT -Dgnuradio_tempest_EXPORTS -I/home/emidan19/gr-tempest/lib/../include -O3 -DNDEBUG -fPIC -fvisibility=hidden -std=gnu++11 -o CMakeFiles/gnuradio-tempest.dir/framing_impl.cc.o -c /home/emidan19/gr-tempest/lib/framing_impl.cc",
"file": "/home/emidan19/gr-tempest/lib/framing_impl.cc"
},
{
"directory": "/home/emidan19/gr-tempest/build/lib",
"command": "/usr/bin/c++ -DBOOST_ALL_NO_LIB -DBOOST_ATOMIC_DYN_LINK -DBOOST_FILESYSTEM_DYN_LINK -DBOOST_PROGRAM_OPTIONS_DYN_LINK -DBOOST_REGEX_DYN_LINK -DBOOST_SYSTEM_DYN_LINK -DBOOST_THREAD_DYN_LINK -DFFTW3F_THREADS -DGR_CTRLPORT -Dgnuradio_tempest_EXPORTS -I/home/emidan19/gr-tempest/lib/../include -O3 -DNDEBUG -fPIC -fvisibility=hidden -std=gnu++11 -o CMakeFiles/gnuradio-tempest.dir/Hsync_impl.cc.o -c /home/emidan19/gr-tempest/lib/Hsync_impl.cc",
"file": "/home/emidan19/gr-tempest/lib/Hsync_impl.cc"
},
{
"directory": "/home/emidan19/gr-tempest/build/lib",
"command": "/usr/bin/c++ -DBOOST_ALL_NO_LIB -DBOOST_ATOMIC_DYN_LINK -DBOOST_FILESYSTEM_DYN_LINK -DBOOST_PROGRAM_OPTIONS_DYN_LINK -DBOOST_REGEX_DYN_LINK -DBOOST_SYSTEM_DYN_LINK -DBOOST_THREAD_DYN_LINK -DFFTW3F_THREADS -DGR_CTRLPORT -Dgnuradio_tempest_EXPORTS -I/home/emidan19/gr-tempest/lib/../include -O3 -DNDEBUG -fPIC -fvisibility=hidden -std=gnu++11 -o CMakeFiles/gnuradio-tempest.dir/normalize_flow_impl.cc.o -c /home/emidan19/gr-tempest/lib/normalize_flow_impl.cc",
"file": "/home/emidan19/gr-tempest/lib/normalize_flow_impl.cc"
},
{
"directory": "/home/emidan19/gr-tempest/build/lib",
"command": "/usr/bin/c++ -DBOOST_ALL_NO_LIB -DBOOST_ATOMIC_DYN_LINK -DBOOST_FILESYSTEM_DYN_LINK -DBOOST_PROGRAM_OPTIONS_DYN_LINK -DBOOST_REGEX_DYN_LINK -DBOOST_SYSTEM_DYN_LINK -DBOOST_THREAD_DYN_LINK -DFFTW3F_THREADS -DGR_CTRLPORT -Dgnuradio_tempest_EXPORTS -I/home/emidan19/gr-tempest/lib/../include -O3 -DNDEBUG -fPIC -fvisibility=hidden -std=gnu++11 -o CMakeFiles/gnuradio-tempest.dir/fine_sampling_synchronization_impl.cc.o -c /home/emidan19/gr-tempest/lib/fine_sampling_synchronization_impl.cc",
"file": "/home/emidan19/gr-tempest/lib/fine_sampling_synchronization_impl.cc"
},
{
"directory": "/home/emidan19/gr-tempest/build/lib",
"command": "/usr/bin/c++ -DBOOST_ALL_NO_LIB -DBOOST_ATOMIC_DYN_LINK -DBOOST_FILESYSTEM_DYN_LINK -DBOOST_PROGRAM_OPTIONS_DYN_LINK -DBOOST_REGEX_DYN_LINK -DBOOST_SYSTEM_DYN_LINK -DBOOST_THREAD_DYN_LINK -DFFTW3F_THREADS -DGR_CTRLPORT -Dgnuradio_tempest_EXPORTS -I/home/emidan19/gr-tempest/lib/../include -O3 -DNDEBUG -fPIC -fvisibility=hidden -std=gnu++11 -o CMakeFiles/gnuradio-tempest.dir/sync_detector_impl.cc.o -c /home/emidan19/gr-tempest/lib/sync_detector_impl.cc",
"file": "/home/emidan19/gr-tempest/lib/sync_detector_impl.cc"
},
{
"directory": "/home/emidan19/gr-tempest/build/lib",
"command": "/usr/bin/c++ -DBOOST_ALL_NO_LIB -DBOOST_ATOMIC_DYN_LINK -DBOOST_FILESYSTEM_DYN_LINK -DBOOST_PROGRAM_OPTIONS_DYN_LINK -DBOOST_REGEX_DYN_LINK -DBOOST_SYSTEM_DYN_LINK -DBOOST_THREAD_DYN_LINK -DFFTW3F_THREADS -DGR_CTRLPORT -Dgnuradio_tempest_EXPORTS -I/home/emidan19/gr-tempest/lib/../include -O3 -DNDEBUG -fPIC -fvisibility=hidden -std=gnu++11 -o CMakeFiles/gnuradio-tempest.dir/frame_drop_impl.cc.o -c /home/emidan19/gr-tempest/lib/frame_drop_impl.cc",
"file": "/home/emidan19/gr-tempest/lib/frame_drop_impl.cc"
},
{
"directory": "/home/emidan19/gr-tempest/build/lib",
"command": "/usr/bin/c++ -DBOOST_ALL_NO_LIB -DBOOST_ATOMIC_DYN_LINK -DBOOST_FILESYSTEM_DYN_LINK -DBOOST_PROGRAM_OPTIONS_DYN_LINK -DBOOST_REGEX_DYN_LINK -DBOOST_SYSTEM_DYN_LINK -DBOOST_THREAD_DYN_LINK -DFFTW3F_THREADS -DGR_CTRLPORT -Dgnuradio_tempest_EXPORTS -I/home/emidan19/gr-tempest/lib/../include -O3 -DNDEBUG -fPIC -fvisibility=hidden -std=gnu++11 -o CMakeFiles/gnuradio-tempest.dir/fft_peak_fine_sampling_sync_impl.cc.o -c /home/emidan19/gr-tempest/lib/fft_peak_fine_sampling_sync_impl.cc",
"file": "/home/emidan19/gr-tempest/lib/fft_peak_fine_sampling_sync_impl.cc"
},
{
"directory": "/home/emidan19/gr-tempest/build/lib",
"command": "/usr/bin/c++ -DBOOST_ALL_NO_LIB -DBOOST_ATOMIC_DYN_LINK -DBOOST_FILESYSTEM_DYN_LINK -DBOOST_PROGRAM_OPTIONS_DYN_LINK -DBOOST_REGEX_DYN_LINK -DBOOST_SYSTEM_DYN_LINK -DBOOST_THREAD_DYN_LINK -DFFTW3F_THREADS -DGR_CTRLPORT -Dgnuradio_tempest_EXPORTS -I/home/emidan19/gr-tempest/lib/../include -O3 -DNDEBUG -fPIC -fvisibility=hidden -std=gnu++11 -o CMakeFiles/gnuradio-tempest.dir/infer_screen_resolution_impl.cc.o -c /home/emidan19/gr-tempest/lib/infer_screen_resolution_impl.cc",
"file": "/home/emidan19/gr-tempest/lib/infer_screen_resolution_impl.cc"
},
{
"directory": "/home/emidan19/gr-tempest/build/lib",
"command": "/usr/bin/c++ -DBOOST_ALL_NO_LIB -DBOOST_ATOMIC_DYN_LINK -DBOOST_FILESYSTEM_DYN_LINK -DBOOST_PROGRAM_OPTIONS_DYN_LINK -DBOOST_REGEX_DYN_LINK -DBOOST_SYSTEM_DYN_LINK -DBOOST_THREAD_DYN_LINK -DFFTW3F_THREADS -DGR_CTRLPORT -Dgnuradio_tempest_EXPORTS -I/home/emidan19/gr-tempest/lib/../include -O3 -DNDEBUG -fPIC -fvisibility=hidden -std=gnu++11 -o CMakeFiles/gnuradio-tempest.dir/ssamp_correction_impl.cc.o -c /home/emidan19/gr-tempest/lib/ssamp_correction_impl.cc",
"file": "/home/emidan19/gr-tempest/lib/ssamp_correction_impl.cc"
},
{
"directory": "/home/emidan19/gr-tempest/build/swig",
"command": "/usr/bin/c++ -DBOOST_ALL_NO_LIB -DBOOST_ATOMIC_DYN_LINK -DBOOST_FILESYSTEM_DYN_LINK -DBOOST_PROGRAM_OPTIONS_DYN_LINK -DBOOST_REGEX_DYN_LINK -DBOOST_SYSTEM_DYN_LINK -DBOOST_THREAD_DYN_LINK -DFFTW3F_THREADS -DGR_CTRLPORT -Dtempest_swig_EXPORTS -I/home/emidan19/gr-tempest/build/swig -I/home/emidan19/gr-tempest/swig -I/usr/include/gnuradio/swig -I/home/emidan19/gr-tempest/lib/../include -isystem /usr/include/python3.8 -O3 -DNDEBUG -fPIC -fvisibility=hidden -std=gnu++11 -o CMakeFiles/tempest_swig.dir/CMakeFiles/tempest_swig.dir/tempest_swigPYTHON_wrap.cxx.o -c /home/emidan19/gr-tempest/build/swig/CMakeFiles/tempest_swig.dir/tempest_swigPYTHON_wrap.cxx",
"file": "/home/emidan19/gr-tempest/build/swig/CMakeFiles/tempest_swig.dir/tempest_swigPYTHON_wrap.cxx"
}
]

View File

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

View File

@ -0,0 +1 @@
0

View File

@ -0,0 +1,6 @@
# CMake generated Testfile for
# Source directory: /home/emidan19/gr-tempest/docs
# Build directory: /home/emidan19/gr-tempest/build/docs
#
# This file includes the relevant testing commands required for
# testing this directory and lists subdirectories to be tested as well.

196
build/docs/Makefile Normal file
View File

@ -0,0 +1,196 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 3.16
# Default target executed when no arguments are given to make.
default_target: all
.PHONY : default_target
# Allow only one "make -f Makefile2" at a time, but pass parallelism.
.NOTPARALLEL:
#=============================================================================
# Special targets provided by cmake.
# Disable implicit rules so canonical targets will work.
.SUFFIXES:
# Remove some rules from gmake that .SUFFIXES does not remove.
SUFFIXES =
.SUFFIXES: .hpux_make_needs_suffix_list
# Suppress display of executed commands.
$(VERBOSE).SILENT:
# A target that is always out of date.
cmake_force:
.PHONY : cmake_force
#=============================================================================
# Set environment variables for the build.
# The shell in which to execute make rules.
SHELL = /bin/sh
# The CMake executable.
CMAKE_COMMAND = /usr/bin/cmake
# The command to remove a file.
RM = /usr/bin/cmake -E remove -f
# Escaping for special characters.
EQUALS = =
# The top-level source directory on which CMake was run.
CMAKE_SOURCE_DIR = /home/emidan19/gr-tempest
# The top-level build directory on which CMake was run.
CMAKE_BINARY_DIR = /home/emidan19/gr-tempest/build
#=============================================================================
# Targets provided globally by CMake.
# Special rule for the target install/strip
install/strip: preinstall
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing the project stripped..."
/usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake
.PHONY : install/strip
# Special rule for the target install/strip
install/strip/fast: preinstall/fast
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing the project stripped..."
/usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake
.PHONY : install/strip/fast
# Special rule for the target install/local
install/local: preinstall
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing only the local directory..."
/usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake
.PHONY : install/local
# Special rule for the target install/local
install/local/fast: preinstall/fast
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing only the local directory..."
/usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake
.PHONY : install/local/fast
# Special rule for the target install
install: preinstall
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Install the project..."
/usr/bin/cmake -P cmake_install.cmake
.PHONY : install
# Special rule for the target install
install/fast: preinstall/fast
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Install the project..."
/usr/bin/cmake -P cmake_install.cmake
.PHONY : install/fast
# Special rule for the target list_install_components
list_install_components:
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Available install components are: \"Unspecified\""
.PHONY : list_install_components
# Special rule for the target list_install_components
list_install_components/fast: list_install_components
.PHONY : list_install_components/fast
# Special rule for the target rebuild_cache
rebuild_cache:
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running CMake to regenerate build system..."
/usr/bin/cmake -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 edit_cache
edit_cache:
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "No interactive CMake dialog available..."
/usr/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available.
.PHONY : edit_cache
# Special rule for the target edit_cache
edit_cache/fast: edit_cache
.PHONY : edit_cache/fast
# Special rule for the target test
test:
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running tests..."
/usr/bin/ctest --force-new-ctest-process $(ARGS)
.PHONY : test
# Special rule for the target test
test/fast: test
.PHONY : test/fast
# The main all target
all: cmake_check_build_system
cd /home/emidan19/gr-tempest/build && $(CMAKE_COMMAND) -E cmake_progress_start /home/emidan19/gr-tempest/build/CMakeFiles /home/emidan19/gr-tempest/build/docs/CMakeFiles/progress.marks
cd /home/emidan19/gr-tempest/build && $(MAKE) -f CMakeFiles/Makefile2 docs/all
$(CMAKE_COMMAND) -E cmake_progress_start /home/emidan19/gr-tempest/build/CMakeFiles 0
.PHONY : all
# The main clean target
clean:
cd /home/emidan19/gr-tempest/build && $(MAKE) -f CMakeFiles/Makefile2 docs/clean
.PHONY : clean
# The main clean target
clean/fast: clean
.PHONY : clean/fast
# Prepare targets for installation.
preinstall: all
cd /home/emidan19/gr-tempest/build && $(MAKE) -f CMakeFiles/Makefile2 docs/preinstall
.PHONY : preinstall
# Prepare targets for installation.
preinstall/fast:
cd /home/emidan19/gr-tempest/build && $(MAKE) -f CMakeFiles/Makefile2 docs/preinstall
.PHONY : preinstall/fast
# clear depends
depend:
cd /home/emidan19/gr-tempest/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 "... install/strip"
@echo "... install/local"
@echo "... install"
@echo "... list_install_components"
@echo "... rebuild_cache"
@echo "... edit_cache"
@echo "... test"
.PHONY : help
#=============================================================================
# Special targets to cleanup operation of make.
# Special rule to run CMake to check the build system integrity.
# No rule that depends on this can have commands that come from listfiles
# because they might be regenerated.
cmake_check_build_system:
cd /home/emidan19/gr-tempest/build && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0
.PHONY : cmake_check_build_system

View File

@ -0,0 +1,39 @@
# Install script for directory: /home/emidan19/gr-tempest/docs
# Set the install prefix
if(NOT DEFINED CMAKE_INSTALL_PREFIX)
set(CMAKE_INSTALL_PREFIX "/usr/local")
endif()
string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")
# Set the install configuration name.
if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
if(BUILD_TYPE)
string(REGEX REPLACE "^[^A-Za-z0-9_]+" ""
CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}")
else()
set(CMAKE_INSTALL_CONFIG_NAME "Release")
endif()
message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
endif()
# Set the component getting installed.
if(NOT CMAKE_INSTALL_COMPONENT)
if(COMPONENT)
message(STATUS "Install component: \"${COMPONENT}\"")
set(CMAKE_INSTALL_COMPONENT "${COMPONENT}")
else()
set(CMAKE_INSTALL_COMPONENT)
endif()
endif()
# Install shared libraries without execute permission?
if(NOT DEFINED CMAKE_INSTALL_SO_NO_EXE)
set(CMAKE_INSTALL_SO_NO_EXE "1")
endif()
# Is this installation the result of a crosscompile?
if(NOT DEFINED CMAKE_CROSSCOMPILING)
set(CMAKE_CROSSCOMPILING "FALSE")
endif()

View File

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

View File

@ -0,0 +1 @@
0

View File

@ -0,0 +1,6 @@
# CMake generated Testfile for
# Source directory: /home/emidan19/gr-tempest/grc
# Build directory: /home/emidan19/gr-tempest/build/grc
#
# This file includes the relevant testing commands required for
# testing this directory and lists subdirectories to be tested as well.

196
build/grc/Makefile Normal file
View File

@ -0,0 +1,196 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 3.16
# Default target executed when no arguments are given to make.
default_target: all
.PHONY : default_target
# Allow only one "make -f Makefile2" at a time, but pass parallelism.
.NOTPARALLEL:
#=============================================================================
# Special targets provided by cmake.
# Disable implicit rules so canonical targets will work.
.SUFFIXES:
# Remove some rules from gmake that .SUFFIXES does not remove.
SUFFIXES =
.SUFFIXES: .hpux_make_needs_suffix_list
# Suppress display of executed commands.
$(VERBOSE).SILENT:
# A target that is always out of date.
cmake_force:
.PHONY : cmake_force
#=============================================================================
# Set environment variables for the build.
# The shell in which to execute make rules.
SHELL = /bin/sh
# The CMake executable.
CMAKE_COMMAND = /usr/bin/cmake
# The command to remove a file.
RM = /usr/bin/cmake -E remove -f
# Escaping for special characters.
EQUALS = =
# The top-level source directory on which CMake was run.
CMAKE_SOURCE_DIR = /home/emidan19/gr-tempest
# The top-level build directory on which CMake was run.
CMAKE_BINARY_DIR = /home/emidan19/gr-tempest/build
#=============================================================================
# Targets provided globally by CMake.
# Special rule for the target install/strip
install/strip: preinstall
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing the project stripped..."
/usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake
.PHONY : install/strip
# Special rule for the target install/strip
install/strip/fast: preinstall/fast
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing the project stripped..."
/usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake
.PHONY : install/strip/fast
# Special rule for the target install/local
install/local: preinstall
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing only the local directory..."
/usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake
.PHONY : install/local
# Special rule for the target install/local
install/local/fast: preinstall/fast
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing only the local directory..."
/usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake
.PHONY : install/local/fast
# Special rule for the target install
install: preinstall
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Install the project..."
/usr/bin/cmake -P cmake_install.cmake
.PHONY : install
# Special rule for the target install
install/fast: preinstall/fast
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Install the project..."
/usr/bin/cmake -P cmake_install.cmake
.PHONY : install/fast
# Special rule for the target list_install_components
list_install_components:
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Available install components are: \"Unspecified\""
.PHONY : list_install_components
# Special rule for the target list_install_components
list_install_components/fast: list_install_components
.PHONY : list_install_components/fast
# Special rule for the target rebuild_cache
rebuild_cache:
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running CMake to regenerate build system..."
/usr/bin/cmake -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 edit_cache
edit_cache:
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "No interactive CMake dialog available..."
/usr/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available.
.PHONY : edit_cache
# Special rule for the target edit_cache
edit_cache/fast: edit_cache
.PHONY : edit_cache/fast
# Special rule for the target test
test:
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running tests..."
/usr/bin/ctest --force-new-ctest-process $(ARGS)
.PHONY : test
# Special rule for the target test
test/fast: test
.PHONY : test/fast
# The main all target
all: cmake_check_build_system
cd /home/emidan19/gr-tempest/build && $(CMAKE_COMMAND) -E cmake_progress_start /home/emidan19/gr-tempest/build/CMakeFiles /home/emidan19/gr-tempest/build/grc/CMakeFiles/progress.marks
cd /home/emidan19/gr-tempest/build && $(MAKE) -f CMakeFiles/Makefile2 grc/all
$(CMAKE_COMMAND) -E cmake_progress_start /home/emidan19/gr-tempest/build/CMakeFiles 0
.PHONY : all
# The main clean target
clean:
cd /home/emidan19/gr-tempest/build && $(MAKE) -f CMakeFiles/Makefile2 grc/clean
.PHONY : clean
# The main clean target
clean/fast: clean
.PHONY : clean/fast
# Prepare targets for installation.
preinstall: all
cd /home/emidan19/gr-tempest/build && $(MAKE) -f CMakeFiles/Makefile2 grc/preinstall
.PHONY : preinstall
# Prepare targets for installation.
preinstall/fast:
cd /home/emidan19/gr-tempest/build && $(MAKE) -f CMakeFiles/Makefile2 grc/preinstall
.PHONY : preinstall/fast
# clear depends
depend:
cd /home/emidan19/gr-tempest/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 "... install/strip"
@echo "... install/local"
@echo "... install"
@echo "... list_install_components"
@echo "... rebuild_cache"
@echo "... edit_cache"
@echo "... test"
.PHONY : help
#=============================================================================
# Special targets to cleanup operation of make.
# Special rule to run CMake to check the build system integrity.
# No rule that depends on this can have commands that come from listfiles
# because they might be regenerated.
cmake_check_build_system:
cd /home/emidan19/gr-tempest/build && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0
.PHONY : cmake_check_build_system

View File

@ -0,0 +1,60 @@
# Install script for directory: /home/emidan19/gr-tempest/grc
# Set the install prefix
if(NOT DEFINED CMAKE_INSTALL_PREFIX)
set(CMAKE_INSTALL_PREFIX "/usr/local")
endif()
string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")
# Set the install configuration name.
if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
if(BUILD_TYPE)
string(REGEX REPLACE "^[^A-Za-z0-9_]+" ""
CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}")
else()
set(CMAKE_INSTALL_CONFIG_NAME "Release")
endif()
message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
endif()
# Set the component getting installed.
if(NOT CMAKE_INSTALL_COMPONENT)
if(COMPONENT)
message(STATUS "Install component: \"${COMPONENT}\"")
set(CMAKE_INSTALL_COMPONENT "${COMPONENT}")
else()
set(CMAKE_INSTALL_COMPONENT)
endif()
endif()
# Install shared libraries without execute permission?
if(NOT DEFINED CMAKE_INSTALL_SO_NO_EXE)
set(CMAKE_INSTALL_SO_NO_EXE "1")
endif()
# Is this installation the result of a crosscompile?
if(NOT DEFINED CMAKE_CROSSCOMPILING)
set(CMAKE_CROSSCOMPILING "FALSE")
endif()
if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_COMPONENT)
file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/share/gnuradio/grc/blocks" TYPE FILE FILES
"/home/emidan19/gr-tempest/grc/tempest_sampling_synchronization.block.yml"
"/home/emidan19/gr-tempest/grc/tempest_framing.block.yml"
"/home/emidan19/gr-tempest/grc/tempest_Hsync.block.yml"
"/home/emidan19/gr-tempest/grc/tempest_image_source.block.yml"
"/home/emidan19/gr-tempest/grc/tempest_normalize_flow.block.yml"
"/home/emidan19/gr-tempest/grc/tempest_fine_sampling_synchronization.block.yml"
"/home/emidan19/gr-tempest/grc/tempest_sync_detector.block.yml"
"/home/emidan19/gr-tempest/grc/tempest_frame_drop.block.yml"
"/home/emidan19/gr-tempest/grc/tempest_message_to_var.block.yml"
"/home/emidan19/gr-tempest/grc/tempest_fft_peak_fine_sampling_sync.block.yml"
"/home/emidan19/gr-tempest/grc/tempest_infer_screen_resolution.block.yml"
"/home/emidan19/gr-tempest/grc/tempest_tempest_msgbtn.block.yml"
"/home/emidan19/gr-tempest/grc/tempest_ssamp_correction.block.yml"
"/home/emidan19/gr-tempest/grc/tempest_TMDS_image_source.block.yml"
"/home/emidan19/gr-tempest/grc/tempest_binary_serializer.block.yml"
"/home/emidan19/gr-tempest/grc/tempest_TMDS_decoder.block.yml"
)
endif()

View File

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

View File

@ -0,0 +1 @@
0

View File

@ -0,0 +1,6 @@
# CMake generated Testfile for
# Source directory: /home/emidan19/gr-tempest/include/tempest
# Build directory: /home/emidan19/gr-tempest/build/include/tempest
#
# This file includes the relevant testing commands required for
# testing this directory and lists subdirectories to be tested as well.

View File

@ -0,0 +1,196 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 3.16
# Default target executed when no arguments are given to make.
default_target: all
.PHONY : default_target
# Allow only one "make -f Makefile2" at a time, but pass parallelism.
.NOTPARALLEL:
#=============================================================================
# Special targets provided by cmake.
# Disable implicit rules so canonical targets will work.
.SUFFIXES:
# Remove some rules from gmake that .SUFFIXES does not remove.
SUFFIXES =
.SUFFIXES: .hpux_make_needs_suffix_list
# Suppress display of executed commands.
$(VERBOSE).SILENT:
# A target that is always out of date.
cmake_force:
.PHONY : cmake_force
#=============================================================================
# Set environment variables for the build.
# The shell in which to execute make rules.
SHELL = /bin/sh
# The CMake executable.
CMAKE_COMMAND = /usr/bin/cmake
# The command to remove a file.
RM = /usr/bin/cmake -E remove -f
# Escaping for special characters.
EQUALS = =
# The top-level source directory on which CMake was run.
CMAKE_SOURCE_DIR = /home/emidan19/gr-tempest
# The top-level build directory on which CMake was run.
CMAKE_BINARY_DIR = /home/emidan19/gr-tempest/build
#=============================================================================
# Targets provided globally by CMake.
# Special rule for the target install/strip
install/strip: preinstall
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing the project stripped..."
/usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake
.PHONY : install/strip
# Special rule for the target install/strip
install/strip/fast: preinstall/fast
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing the project stripped..."
/usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake
.PHONY : install/strip/fast
# Special rule for the target install/local
install/local: preinstall
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing only the local directory..."
/usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake
.PHONY : install/local
# Special rule for the target install/local
install/local/fast: preinstall/fast
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing only the local directory..."
/usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake
.PHONY : install/local/fast
# Special rule for the target install
install: preinstall
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Install the project..."
/usr/bin/cmake -P cmake_install.cmake
.PHONY : install
# Special rule for the target install
install/fast: preinstall/fast
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Install the project..."
/usr/bin/cmake -P cmake_install.cmake
.PHONY : install/fast
# Special rule for the target list_install_components
list_install_components:
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Available install components are: \"Unspecified\""
.PHONY : list_install_components
# Special rule for the target list_install_components
list_install_components/fast: list_install_components
.PHONY : list_install_components/fast
# Special rule for the target rebuild_cache
rebuild_cache:
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running CMake to regenerate build system..."
/usr/bin/cmake -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 edit_cache
edit_cache:
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "No interactive CMake dialog available..."
/usr/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available.
.PHONY : edit_cache
# Special rule for the target edit_cache
edit_cache/fast: edit_cache
.PHONY : edit_cache/fast
# Special rule for the target test
test:
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running tests..."
/usr/bin/ctest --force-new-ctest-process $(ARGS)
.PHONY : test
# Special rule for the target test
test/fast: test
.PHONY : test/fast
# The main all target
all: cmake_check_build_system
cd /home/emidan19/gr-tempest/build && $(CMAKE_COMMAND) -E cmake_progress_start /home/emidan19/gr-tempest/build/CMakeFiles /home/emidan19/gr-tempest/build/include/tempest/CMakeFiles/progress.marks
cd /home/emidan19/gr-tempest/build && $(MAKE) -f CMakeFiles/Makefile2 include/tempest/all
$(CMAKE_COMMAND) -E cmake_progress_start /home/emidan19/gr-tempest/build/CMakeFiles 0
.PHONY : all
# The main clean target
clean:
cd /home/emidan19/gr-tempest/build && $(MAKE) -f CMakeFiles/Makefile2 include/tempest/clean
.PHONY : clean
# The main clean target
clean/fast: clean
.PHONY : clean/fast
# Prepare targets for installation.
preinstall: all
cd /home/emidan19/gr-tempest/build && $(MAKE) -f CMakeFiles/Makefile2 include/tempest/preinstall
.PHONY : preinstall
# Prepare targets for installation.
preinstall/fast:
cd /home/emidan19/gr-tempest/build && $(MAKE) -f CMakeFiles/Makefile2 include/tempest/preinstall
.PHONY : preinstall/fast
# clear depends
depend:
cd /home/emidan19/gr-tempest/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 "... install/strip"
@echo "... install/local"
@echo "... install"
@echo "... list_install_components"
@echo "... rebuild_cache"
@echo "... edit_cache"
@echo "... test"
.PHONY : help
#=============================================================================
# Special targets to cleanup operation of make.
# Special rule to run CMake to check the build system integrity.
# No rule that depends on this can have commands that come from listfiles
# because they might be regenerated.
cmake_check_build_system:
cd /home/emidan19/gr-tempest/build && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0
.PHONY : cmake_check_build_system

View File

@ -0,0 +1,55 @@
# Install script for directory: /home/emidan19/gr-tempest/include/tempest
# Set the install prefix
if(NOT DEFINED CMAKE_INSTALL_PREFIX)
set(CMAKE_INSTALL_PREFIX "/usr/local")
endif()
string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")
# Set the install configuration name.
if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
if(BUILD_TYPE)
string(REGEX REPLACE "^[^A-Za-z0-9_]+" ""
CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}")
else()
set(CMAKE_INSTALL_CONFIG_NAME "Release")
endif()
message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
endif()
# Set the component getting installed.
if(NOT CMAKE_INSTALL_COMPONENT)
if(COMPONENT)
message(STATUS "Install component: \"${COMPONENT}\"")
set(CMAKE_INSTALL_COMPONENT "${COMPONENT}")
else()
set(CMAKE_INSTALL_COMPONENT)
endif()
endif()
# Install shared libraries without execute permission?
if(NOT DEFINED CMAKE_INSTALL_SO_NO_EXE)
set(CMAKE_INSTALL_SO_NO_EXE "1")
endif()
# Is this installation the result of a crosscompile?
if(NOT DEFINED CMAKE_CROSSCOMPILING)
set(CMAKE_CROSSCOMPILING "FALSE")
endif()
if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_COMPONENT)
file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/include/tempest" TYPE FILE FILES
"/home/emidan19/gr-tempest/include/tempest/api.h"
"/home/emidan19/gr-tempest/include/tempest/sampling_synchronization.h"
"/home/emidan19/gr-tempest/include/tempest/framing.h"
"/home/emidan19/gr-tempest/include/tempest/Hsync.h"
"/home/emidan19/gr-tempest/include/tempest/normalize_flow.h"
"/home/emidan19/gr-tempest/include/tempest/fine_sampling_synchronization.h"
"/home/emidan19/gr-tempest/include/tempest/sync_detector.h"
"/home/emidan19/gr-tempest/include/tempest/frame_drop.h"
"/home/emidan19/gr-tempest/include/tempest/fft_peak_fine_sampling_sync.h"
"/home/emidan19/gr-tempest/include/tempest/infer_screen_resolution.h"
"/home/emidan19/gr-tempest/include/tempest/ssamp_correction.h"
)
endif()

View File

@ -0,0 +1,61 @@
/usr/local/lib/cmake/tempest/tempestConfig.cmake
/usr/local/include/tempest/api.h
/usr/local/include/tempest/sampling_synchronization.h
/usr/local/include/tempest/framing.h
/usr/local/include/tempest/Hsync.h
/usr/local/include/tempest/normalize_flow.h
/usr/local/include/tempest/fine_sampling_synchronization.h
/usr/local/include/tempest/sync_detector.h
/usr/local/include/tempest/frame_drop.h
/usr/local/include/tempest/fft_peak_fine_sampling_sync.h
/usr/local/include/tempest/infer_screen_resolution.h
/usr/local/include/tempest/ssamp_correction.h
/usr/local/lib/x86_64-linux-gnu/libgnuradio-tempest.so.17a754aa
/usr/local/lib/x86_64-linux-gnu/libgnuradio-tempest.so.1.0.0git
/usr/local/lib/x86_64-linux-gnu/libgnuradio-tempest.so
/usr/local/lib/cmake/tempest/gnuradio-tempestTargets.cmake
/usr/local/lib/cmake/tempest/gnuradio-tempestTargets-release.cmake
/usr/local/lib/cmake/tempest/gnuradio-tempestConfig.cmake
/usr/local/lib/python3/dist-packages/tempest/_tempest_swig.so
/usr/local/lib/python3/dist-packages/tempest/tempest_swig.py
/usr/local/lib/python3/dist-packages/tempest/tempest_swig.pyc
/usr/local/lib/python3/dist-packages/tempest/tempest_swig.pyo
/usr/local/include/tempest/tempest/swig/tempest_swig.i
/usr/local/include/tempest/tempest/swig/tempest_swig_doc.i
/usr/local/lib/python3/dist-packages/tempest/__init__.py
/usr/local/lib/python3/dist-packages/tempest/image_source.py
/usr/local/lib/python3/dist-packages/tempest/message_to_var.py
/usr/local/lib/python3/dist-packages/tempest/tempest_msgbtn.py
/usr/local/lib/python3/dist-packages/tempest/TMDS_image_source.py
/usr/local/lib/python3/dist-packages/tempest/binary_serializer.py
/usr/local/lib/python3/dist-packages/tempest/TMDS_decoder.py
/usr/local/lib/python3/dist-packages/tempest/__init__.pyc
/usr/local/lib/python3/dist-packages/tempest/image_source.pyc
/usr/local/lib/python3/dist-packages/tempest/message_to_var.pyc
/usr/local/lib/python3/dist-packages/tempest/tempest_msgbtn.pyc
/usr/local/lib/python3/dist-packages/tempest/TMDS_image_source.pyc
/usr/local/lib/python3/dist-packages/tempest/binary_serializer.pyc
/usr/local/lib/python3/dist-packages/tempest/TMDS_decoder.pyc
/usr/local/lib/python3/dist-packages/tempest/__init__.pyo
/usr/local/lib/python3/dist-packages/tempest/image_source.pyo
/usr/local/lib/python3/dist-packages/tempest/message_to_var.pyo
/usr/local/lib/python3/dist-packages/tempest/tempest_msgbtn.pyo
/usr/local/lib/python3/dist-packages/tempest/TMDS_image_source.pyo
/usr/local/lib/python3/dist-packages/tempest/binary_serializer.pyo
/usr/local/lib/python3/dist-packages/tempest/TMDS_decoder.pyo
/usr/local/share/gnuradio/grc/blocks/tempest_sampling_synchronization.block.yml
/usr/local/share/gnuradio/grc/blocks/tempest_framing.block.yml
/usr/local/share/gnuradio/grc/blocks/tempest_Hsync.block.yml
/usr/local/share/gnuradio/grc/blocks/tempest_image_source.block.yml
/usr/local/share/gnuradio/grc/blocks/tempest_normalize_flow.block.yml
/usr/local/share/gnuradio/grc/blocks/tempest_fine_sampling_synchronization.block.yml
/usr/local/share/gnuradio/grc/blocks/tempest_sync_detector.block.yml
/usr/local/share/gnuradio/grc/blocks/tempest_frame_drop.block.yml
/usr/local/share/gnuradio/grc/blocks/tempest_message_to_var.block.yml
/usr/local/share/gnuradio/grc/blocks/tempest_fft_peak_fine_sampling_sync.block.yml
/usr/local/share/gnuradio/grc/blocks/tempest_infer_screen_resolution.block.yml
/usr/local/share/gnuradio/grc/blocks/tempest_tempest_msgbtn.block.yml
/usr/local/share/gnuradio/grc/blocks/tempest_ssamp_correction.block.yml
/usr/local/share/gnuradio/grc/blocks/tempest_TMDS_image_source.block.yml
/usr/local/share/gnuradio/grc/blocks/tempest_binary_serializer.block.yml
/usr/local/share/gnuradio/grc/blocks/tempest_TMDS_decoder.block.yml

View File

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

View File

@ -0,0 +1,19 @@
#----------------------------------------------------------------
# Generated CMake target import file for configuration "Release".
#----------------------------------------------------------------
# Commands may need to know the format version.
set(CMAKE_IMPORT_FILE_VERSION 1)
# Import target "gnuradio::gnuradio-tempest" for configuration "Release"
set_property(TARGET gnuradio::gnuradio-tempest APPEND PROPERTY IMPORTED_CONFIGURATIONS RELEASE)
set_target_properties(gnuradio::gnuradio-tempest PROPERTIES
IMPORTED_LOCATION_RELEASE "${_IMPORT_PREFIX}/lib/x86_64-linux-gnu/libgnuradio-tempest.so.17a754aa"
IMPORTED_SONAME_RELEASE "libgnuradio-tempest.so.1.0.0git"
)
list(APPEND _IMPORT_CHECK_TARGETS gnuradio::gnuradio-tempest )
list(APPEND _IMPORT_CHECK_FILES_FOR_gnuradio::gnuradio-tempest "${_IMPORT_PREFIX}/lib/x86_64-linux-gnu/libgnuradio-tempest.so.17a754aa" )
# Commands beyond this point should not need to know the version.
set(CMAKE_IMPORT_FILE_VERSION)

View File

@ -0,0 +1,99 @@
# Generated by CMake
if("${CMAKE_MAJOR_VERSION}.${CMAKE_MINOR_VERSION}" LESS 2.5)
message(FATAL_ERROR "CMake >= 2.6.0 required")
endif()
cmake_policy(PUSH)
cmake_policy(VERSION 2.6)
#----------------------------------------------------------------
# Generated CMake target import file.
#----------------------------------------------------------------
# Commands may need to know the format version.
set(CMAKE_IMPORT_FILE_VERSION 1)
# Protect against multiple inclusion, which would fail when already imported targets are added once more.
set(_targetsDefined)
set(_targetsNotDefined)
set(_expectedTargets)
foreach(_expectedTarget gnuradio::gnuradio-tempest)
list(APPEND _expectedTargets ${_expectedTarget})
if(NOT TARGET ${_expectedTarget})
list(APPEND _targetsNotDefined ${_expectedTarget})
endif()
if(TARGET ${_expectedTarget})
list(APPEND _targetsDefined ${_expectedTarget})
endif()
endforeach()
if("${_targetsDefined}" STREQUAL "${_expectedTargets}")
unset(_targetsDefined)
unset(_targetsNotDefined)
unset(_expectedTargets)
set(CMAKE_IMPORT_FILE_VERSION)
cmake_policy(POP)
return()
endif()
if(NOT "${_targetsDefined}" STREQUAL "")
message(FATAL_ERROR "Some (but not all) targets in this export set were already defined.\nTargets Defined: ${_targetsDefined}\nTargets not yet defined: ${_targetsNotDefined}\n")
endif()
unset(_targetsDefined)
unset(_targetsNotDefined)
unset(_expectedTargets)
# Compute the installation prefix relative to this file.
get_filename_component(_IMPORT_PREFIX "${CMAKE_CURRENT_LIST_FILE}" PATH)
get_filename_component(_IMPORT_PREFIX "${_IMPORT_PREFIX}" PATH)
get_filename_component(_IMPORT_PREFIX "${_IMPORT_PREFIX}" PATH)
get_filename_component(_IMPORT_PREFIX "${_IMPORT_PREFIX}" PATH)
if(_IMPORT_PREFIX STREQUAL "/")
set(_IMPORT_PREFIX "")
endif()
# Create imported target gnuradio::gnuradio-tempest
add_library(gnuradio::gnuradio-tempest SHARED IMPORTED)
set_target_properties(gnuradio::gnuradio-tempest PROPERTIES
INTERFACE_INCLUDE_DIRECTORIES "${_IMPORT_PREFIX}/include"
INTERFACE_LINK_LIBRARIES "gnuradio::gnuradio-runtime;gnuradio::gnuradio-blocks;gnuradio::gnuradio-fft;gnuradio::gnuradio-filter;Volk::volk"
)
if(CMAKE_VERSION VERSION_LESS 2.8.12)
message(FATAL_ERROR "This file relies on consumers using CMake 2.8.12 or greater.")
endif()
# Load information for each installed configuration.
get_filename_component(_DIR "${CMAKE_CURRENT_LIST_FILE}" PATH)
file(GLOB CONFIG_FILES "${_DIR}/gnuradio-tempestTargets-*.cmake")
foreach(f ${CONFIG_FILES})
include(${f})
endforeach()
# Cleanup temporary variables.
set(_IMPORT_PREFIX)
# Loop over all imported files and verify that they actually exist
foreach(target ${_IMPORT_CHECK_TARGETS} )
foreach(file ${_IMPORT_CHECK_FILES_FOR_${target}} )
if(NOT EXISTS "${file}" )
message(FATAL_ERROR "The imported target \"${target}\" references the file
\"${file}\"
but this file does not exist. Possible reasons include:
* The file was deleted, renamed, or moved to another location.
* An install or uninstall procedure did not complete successfully.
* The installation package was faulty and contained
\"${CMAKE_CURRENT_LIST_FILE}\"
but not all the files it references.
")
endif()
endforeach()
unset(_IMPORT_CHECK_FILES_FOR_${target})
endforeach()
unset(_IMPORT_CHECK_TARGETS)
# This file does not depend on other imported targets which have
# been exported from the same project but in a separate export set.
# Commands beyond this point should not need to know the version.
set(CMAKE_IMPORT_FILE_VERSION)
cmake_policy(POP)

View File

@ -0,0 +1,260 @@
#IncludeRegexLine: ^[ ]*[#%][ ]*(include|import)[ ]*[<"]([^">]+)([">])
#IncludeRegexScan: ^.*$
#IncludeRegexComplain: ^$
#IncludeRegexTransform:
../include/tempest/Hsync.h
tempest/api.h
-
gnuradio/block.h
-
../include/tempest/api.h
gnuradio/attributes.h
-
../include/tempest/fft_peak_fine_sampling_sync.h
tempest/api.h
-
gnuradio/block.h
-
../include/tempest/fine_sampling_synchronization.h
tempest/api.h
-
gnuradio/block.h
-
../include/tempest/frame_drop.h
tempest/api.h
-
gnuradio/block.h
-
../include/tempest/framing.h
tempest/api.h
-
gnuradio/block.h
-
../include/tempest/infer_screen_resolution.h
tempest/api.h
-
gnuradio/block.h
-
../include/tempest/normalize_flow.h
tempest/api.h
-
gnuradio/sync_block.h
-
../include/tempest/sampling_synchronization.h
tempest/api.h
-
gnuradio/block.h
-
../include/tempest/ssamp_correction.h
tempest/api.h
-
gnuradio/block.h
-
../include/tempest/sync_detector.h
tempest/api.h
-
gnuradio/block.h
-
/home/emidan19/gr-tempest/lib/Hsync_impl.cc
config.h
/home/emidan19/gr-tempest/lib/config.h
gnuradio/io_signature.h
-
Hsync_impl.h
/home/emidan19/gr-tempest/lib/Hsync_impl.h
volk/volk.h
-
math.h
-
gnuradio/math.h
-
/home/emidan19/gr-tempest/lib/Hsync_impl.h
tempest/Hsync.h
-
/home/emidan19/gr-tempest/lib/fft_peak_fine_sampling_sync_impl.cc
config.h
/home/emidan19/gr-tempest/lib/config.h
gnuradio/io_signature.h
-
fft_peak_fine_sampling_sync_impl.h
/home/emidan19/gr-tempest/lib/fft_peak_fine_sampling_sync_impl.h
thread
-
volk/volk.h
-
math.h
-
/home/emidan19/gr-tempest/lib/fft_peak_fine_sampling_sync_impl.h
tempest/fft_peak_fine_sampling_sync.h
-
/home/emidan19/gr-tempest/lib/fine_sampling_synchronization_impl.cc
config.h
/home/emidan19/gr-tempest/lib/config.h
gnuradio/io_signature.h
-
fine_sampling_synchronization_impl.h
/home/emidan19/gr-tempest/lib/fine_sampling_synchronization_impl.h
volk/volk.h
-
random
-
/home/emidan19/gr-tempest/lib/fine_sampling_synchronization_impl.h
tempest/fine_sampling_synchronization.h
-
gnuradio/filter/mmse_fir_interpolator_cc.h
-
random
-
/home/emidan19/gr-tempest/lib/frame_drop_impl.cc
config.h
/home/emidan19/gr-tempest/lib/config.h
stdio.h
-
math.h
-
gnuradio/io_signature.h
-
frame_drop_impl.h
/home/emidan19/gr-tempest/lib/frame_drop_impl.h
volk/volk.h
-
random
-
vector
-
/home/emidan19/gr-tempest/lib/frame_drop_impl.h
gnuradio/filter/mmse_fir_interpolator_cc.h
-
random
-
tempest/frame_drop.h
-
stdio.h
-
math.h
-
/home/emidan19/gr-tempest/lib/framing_impl.cc
config.h
/home/emidan19/gr-tempest/lib/config.h
gnuradio/io_signature.h
-
framing_impl.h
/home/emidan19/gr-tempest/lib/framing_impl.h
/home/emidan19/gr-tempest/lib/framing_impl.h
tempest/framing.h
-
/home/emidan19/gr-tempest/lib/infer_screen_resolution_impl.cc
config.h
/home/emidan19/gr-tempest/lib/config.h
gnuradio/io_signature.h
-
infer_screen_resolution_impl.h
/home/emidan19/gr-tempest/lib/infer_screen_resolution_impl.h
/home/emidan19/gr-tempest/lib/infer_screen_resolution_impl.h
tempest/infer_screen_resolution.h
-
volk/volk.h
-
math.h
-
/home/emidan19/gr-tempest/lib/normalize_flow_impl.cc
config.h
/home/emidan19/gr-tempest/lib/config.h
gnuradio/io_signature.h
-
normalize_flow_impl.h
/home/emidan19/gr-tempest/lib/normalize_flow_impl.h
volk/volk.h
-
/home/emidan19/gr-tempest/lib/normalize_flow_impl.h
tempest/normalize_flow.h
-
random
-
/home/emidan19/gr-tempest/lib/sampling_synchronization_impl.cc
config.h
/home/emidan19/gr-tempest/lib/config.h
gnuradio/io_signature.h
-
sampling_synchronization_impl.h
/home/emidan19/gr-tempest/lib/sampling_synchronization_impl.h
volk/volk.h
-
random
-
/home/emidan19/gr-tempest/lib/sampling_synchronization_impl.h
tempest/sampling_synchronization.h
-
gnuradio/filter/mmse_fir_interpolator_cc.h
-
random
-
/home/emidan19/gr-tempest/lib/ssamp_correction_impl.cc
config.h
/home/emidan19/gr-tempest/lib/config.h
gnuradio/io_signature.h
-
volk/volk.h
-
random
-
ssamp_correction_impl.h
/home/emidan19/gr-tempest/lib/ssamp_correction_impl.h
/home/emidan19/gr-tempest/lib/ssamp_correction_impl.h
tempest/ssamp_correction.h
-
gnuradio/filter/mmse_fir_interpolator_cc.h
-
random
-
/home/emidan19/gr-tempest/lib/sync_detector_impl.cc
config.h
/home/emidan19/gr-tempest/lib/config.h
gnuradio/io_signature.h
-
sync_detector_impl.h
/home/emidan19/gr-tempest/lib/sync_detector_impl.h
volk/volk.h
-
math.h
-
gnuradio/math.h
-
/home/emidan19/gr-tempest/lib/sync_detector_impl.h
tempest/sync_detector.h
-

View File

@ -0,0 +1,51 @@
# The set of languages for which implicit dependencies are needed:
set(CMAKE_DEPENDS_LANGUAGES
"CXX"
)
# The set of files for implicit dependencies of each language:
set(CMAKE_DEPENDS_CHECK_CXX
"/home/emidan19/gr-tempest/lib/Hsync_impl.cc" "/home/emidan19/gr-tempest/build/lib/CMakeFiles/gnuradio-tempest.dir/Hsync_impl.cc.o"
"/home/emidan19/gr-tempest/lib/fft_peak_fine_sampling_sync_impl.cc" "/home/emidan19/gr-tempest/build/lib/CMakeFiles/gnuradio-tempest.dir/fft_peak_fine_sampling_sync_impl.cc.o"
"/home/emidan19/gr-tempest/lib/fine_sampling_synchronization_impl.cc" "/home/emidan19/gr-tempest/build/lib/CMakeFiles/gnuradio-tempest.dir/fine_sampling_synchronization_impl.cc.o"
"/home/emidan19/gr-tempest/lib/frame_drop_impl.cc" "/home/emidan19/gr-tempest/build/lib/CMakeFiles/gnuradio-tempest.dir/frame_drop_impl.cc.o"
"/home/emidan19/gr-tempest/lib/framing_impl.cc" "/home/emidan19/gr-tempest/build/lib/CMakeFiles/gnuradio-tempest.dir/framing_impl.cc.o"
"/home/emidan19/gr-tempest/lib/infer_screen_resolution_impl.cc" "/home/emidan19/gr-tempest/build/lib/CMakeFiles/gnuradio-tempest.dir/infer_screen_resolution_impl.cc.o"
"/home/emidan19/gr-tempest/lib/normalize_flow_impl.cc" "/home/emidan19/gr-tempest/build/lib/CMakeFiles/gnuradio-tempest.dir/normalize_flow_impl.cc.o"
"/home/emidan19/gr-tempest/lib/sampling_synchronization_impl.cc" "/home/emidan19/gr-tempest/build/lib/CMakeFiles/gnuradio-tempest.dir/sampling_synchronization_impl.cc.o"
"/home/emidan19/gr-tempest/lib/ssamp_correction_impl.cc" "/home/emidan19/gr-tempest/build/lib/CMakeFiles/gnuradio-tempest.dir/ssamp_correction_impl.cc.o"
"/home/emidan19/gr-tempest/lib/sync_detector_impl.cc" "/home/emidan19/gr-tempest/build/lib/CMakeFiles/gnuradio-tempest.dir/sync_detector_impl.cc.o"
)
set(CMAKE_CXX_COMPILER_ID "GNU")
# Preprocessor definitions for this target.
set(CMAKE_TARGET_DEFINITIONS_CXX
"BOOST_ALL_NO_LIB"
"BOOST_ATOMIC_DYN_LINK"
"BOOST_FILESYSTEM_DYN_LINK"
"BOOST_PROGRAM_OPTIONS_DYN_LINK"
"BOOST_REGEX_DYN_LINK"
"BOOST_SYSTEM_DYN_LINK"
"BOOST_THREAD_DYN_LINK"
"FFTW3F_THREADS"
"GR_CTRLPORT"
"gnuradio_tempest_EXPORTS"
)
# The include file search paths:
set(CMAKE_CXX_TARGET_INCLUDE_PATH
"../lib/../include"
)
# Pairs of files generated by the same build rule.
set(CMAKE_MULTIPLE_OUTPUT_PAIRS
"/home/emidan19/gr-tempest/build/lib/libgnuradio-tempest.so" "/home/emidan19/gr-tempest/build/lib/libgnuradio-tempest.so.17a754aa"
"/home/emidan19/gr-tempest/build/lib/libgnuradio-tempest.so.1.0.0git" "/home/emidan19/gr-tempest/build/lib/libgnuradio-tempest.so.17a754aa"
)
# Targets to which this target links.
set(CMAKE_TARGET_LINKED_INFO_FILES
)
# Fortran module output directory.
set(CMAKE_Fortran_TARGET_MODULE_DIR "")

View File

@ -0,0 +1,259 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 3.16
# Delete rule output on recipe failure.
.DELETE_ON_ERROR:
#=============================================================================
# Special targets provided by cmake.
# Disable implicit rules so canonical targets will work.
.SUFFIXES:
# Remove some rules from gmake that .SUFFIXES does not remove.
SUFFIXES =
.SUFFIXES: .hpux_make_needs_suffix_list
# Suppress display of executed commands.
$(VERBOSE).SILENT:
# A target that is always out of date.
cmake_force:
.PHONY : cmake_force
#=============================================================================
# Set environment variables for the build.
# The shell in which to execute make rules.
SHELL = /bin/sh
# The CMake executable.
CMAKE_COMMAND = /usr/bin/cmake
# The command to remove a file.
RM = /usr/bin/cmake -E remove -f
# Escaping for special characters.
EQUALS = =
# The top-level source directory on which CMake was run.
CMAKE_SOURCE_DIR = /home/emidan19/gr-tempest
# The top-level build directory on which CMake was run.
CMAKE_BINARY_DIR = /home/emidan19/gr-tempest/build
# Include any dependencies generated for this target.
include lib/CMakeFiles/gnuradio-tempest.dir/depend.make
# Include the progress variables for this target.
include lib/CMakeFiles/gnuradio-tempest.dir/progress.make
# Include the compile flags for this target's objects.
include lib/CMakeFiles/gnuradio-tempest.dir/flags.make
lib/CMakeFiles/gnuradio-tempest.dir/sampling_synchronization_impl.cc.o: lib/CMakeFiles/gnuradio-tempest.dir/flags.make
lib/CMakeFiles/gnuradio-tempest.dir/sampling_synchronization_impl.cc.o: ../lib/sampling_synchronization_impl.cc
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/emidan19/gr-tempest/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object lib/CMakeFiles/gnuradio-tempest.dir/sampling_synchronization_impl.cc.o"
cd /home/emidan19/gr-tempest/build/lib && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -o CMakeFiles/gnuradio-tempest.dir/sampling_synchronization_impl.cc.o -c /home/emidan19/gr-tempest/lib/sampling_synchronization_impl.cc
lib/CMakeFiles/gnuradio-tempest.dir/sampling_synchronization_impl.cc.i: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/gnuradio-tempest.dir/sampling_synchronization_impl.cc.i"
cd /home/emidan19/gr-tempest/build/lib && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/emidan19/gr-tempest/lib/sampling_synchronization_impl.cc > CMakeFiles/gnuradio-tempest.dir/sampling_synchronization_impl.cc.i
lib/CMakeFiles/gnuradio-tempest.dir/sampling_synchronization_impl.cc.s: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/gnuradio-tempest.dir/sampling_synchronization_impl.cc.s"
cd /home/emidan19/gr-tempest/build/lib && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/emidan19/gr-tempest/lib/sampling_synchronization_impl.cc -o CMakeFiles/gnuradio-tempest.dir/sampling_synchronization_impl.cc.s
lib/CMakeFiles/gnuradio-tempest.dir/framing_impl.cc.o: lib/CMakeFiles/gnuradio-tempest.dir/flags.make
lib/CMakeFiles/gnuradio-tempest.dir/framing_impl.cc.o: ../lib/framing_impl.cc
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/emidan19/gr-tempest/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building CXX object lib/CMakeFiles/gnuradio-tempest.dir/framing_impl.cc.o"
cd /home/emidan19/gr-tempest/build/lib && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -o CMakeFiles/gnuradio-tempest.dir/framing_impl.cc.o -c /home/emidan19/gr-tempest/lib/framing_impl.cc
lib/CMakeFiles/gnuradio-tempest.dir/framing_impl.cc.i: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/gnuradio-tempest.dir/framing_impl.cc.i"
cd /home/emidan19/gr-tempest/build/lib && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/emidan19/gr-tempest/lib/framing_impl.cc > CMakeFiles/gnuradio-tempest.dir/framing_impl.cc.i
lib/CMakeFiles/gnuradio-tempest.dir/framing_impl.cc.s: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/gnuradio-tempest.dir/framing_impl.cc.s"
cd /home/emidan19/gr-tempest/build/lib && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/emidan19/gr-tempest/lib/framing_impl.cc -o CMakeFiles/gnuradio-tempest.dir/framing_impl.cc.s
lib/CMakeFiles/gnuradio-tempest.dir/Hsync_impl.cc.o: lib/CMakeFiles/gnuradio-tempest.dir/flags.make
lib/CMakeFiles/gnuradio-tempest.dir/Hsync_impl.cc.o: ../lib/Hsync_impl.cc
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/emidan19/gr-tempest/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Building CXX object lib/CMakeFiles/gnuradio-tempest.dir/Hsync_impl.cc.o"
cd /home/emidan19/gr-tempest/build/lib && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -o CMakeFiles/gnuradio-tempest.dir/Hsync_impl.cc.o -c /home/emidan19/gr-tempest/lib/Hsync_impl.cc
lib/CMakeFiles/gnuradio-tempest.dir/Hsync_impl.cc.i: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/gnuradio-tempest.dir/Hsync_impl.cc.i"
cd /home/emidan19/gr-tempest/build/lib && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/emidan19/gr-tempest/lib/Hsync_impl.cc > CMakeFiles/gnuradio-tempest.dir/Hsync_impl.cc.i
lib/CMakeFiles/gnuradio-tempest.dir/Hsync_impl.cc.s: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/gnuradio-tempest.dir/Hsync_impl.cc.s"
cd /home/emidan19/gr-tempest/build/lib && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/emidan19/gr-tempest/lib/Hsync_impl.cc -o CMakeFiles/gnuradio-tempest.dir/Hsync_impl.cc.s
lib/CMakeFiles/gnuradio-tempest.dir/normalize_flow_impl.cc.o: lib/CMakeFiles/gnuradio-tempest.dir/flags.make
lib/CMakeFiles/gnuradio-tempest.dir/normalize_flow_impl.cc.o: ../lib/normalize_flow_impl.cc
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/emidan19/gr-tempest/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_4) "Building CXX object lib/CMakeFiles/gnuradio-tempest.dir/normalize_flow_impl.cc.o"
cd /home/emidan19/gr-tempest/build/lib && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -o CMakeFiles/gnuradio-tempest.dir/normalize_flow_impl.cc.o -c /home/emidan19/gr-tempest/lib/normalize_flow_impl.cc
lib/CMakeFiles/gnuradio-tempest.dir/normalize_flow_impl.cc.i: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/gnuradio-tempest.dir/normalize_flow_impl.cc.i"
cd /home/emidan19/gr-tempest/build/lib && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/emidan19/gr-tempest/lib/normalize_flow_impl.cc > CMakeFiles/gnuradio-tempest.dir/normalize_flow_impl.cc.i
lib/CMakeFiles/gnuradio-tempest.dir/normalize_flow_impl.cc.s: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/gnuradio-tempest.dir/normalize_flow_impl.cc.s"
cd /home/emidan19/gr-tempest/build/lib && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/emidan19/gr-tempest/lib/normalize_flow_impl.cc -o CMakeFiles/gnuradio-tempest.dir/normalize_flow_impl.cc.s
lib/CMakeFiles/gnuradio-tempest.dir/fine_sampling_synchronization_impl.cc.o: lib/CMakeFiles/gnuradio-tempest.dir/flags.make
lib/CMakeFiles/gnuradio-tempest.dir/fine_sampling_synchronization_impl.cc.o: ../lib/fine_sampling_synchronization_impl.cc
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/emidan19/gr-tempest/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_5) "Building CXX object lib/CMakeFiles/gnuradio-tempest.dir/fine_sampling_synchronization_impl.cc.o"
cd /home/emidan19/gr-tempest/build/lib && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -o CMakeFiles/gnuradio-tempest.dir/fine_sampling_synchronization_impl.cc.o -c /home/emidan19/gr-tempest/lib/fine_sampling_synchronization_impl.cc
lib/CMakeFiles/gnuradio-tempest.dir/fine_sampling_synchronization_impl.cc.i: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/gnuradio-tempest.dir/fine_sampling_synchronization_impl.cc.i"
cd /home/emidan19/gr-tempest/build/lib && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/emidan19/gr-tempest/lib/fine_sampling_synchronization_impl.cc > CMakeFiles/gnuradio-tempest.dir/fine_sampling_synchronization_impl.cc.i
lib/CMakeFiles/gnuradio-tempest.dir/fine_sampling_synchronization_impl.cc.s: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/gnuradio-tempest.dir/fine_sampling_synchronization_impl.cc.s"
cd /home/emidan19/gr-tempest/build/lib && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/emidan19/gr-tempest/lib/fine_sampling_synchronization_impl.cc -o CMakeFiles/gnuradio-tempest.dir/fine_sampling_synchronization_impl.cc.s
lib/CMakeFiles/gnuradio-tempest.dir/sync_detector_impl.cc.o: lib/CMakeFiles/gnuradio-tempest.dir/flags.make
lib/CMakeFiles/gnuradio-tempest.dir/sync_detector_impl.cc.o: ../lib/sync_detector_impl.cc
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/emidan19/gr-tempest/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_6) "Building CXX object lib/CMakeFiles/gnuradio-tempest.dir/sync_detector_impl.cc.o"
cd /home/emidan19/gr-tempest/build/lib && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -o CMakeFiles/gnuradio-tempest.dir/sync_detector_impl.cc.o -c /home/emidan19/gr-tempest/lib/sync_detector_impl.cc
lib/CMakeFiles/gnuradio-tempest.dir/sync_detector_impl.cc.i: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/gnuradio-tempest.dir/sync_detector_impl.cc.i"
cd /home/emidan19/gr-tempest/build/lib && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/emidan19/gr-tempest/lib/sync_detector_impl.cc > CMakeFiles/gnuradio-tempest.dir/sync_detector_impl.cc.i
lib/CMakeFiles/gnuradio-tempest.dir/sync_detector_impl.cc.s: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/gnuradio-tempest.dir/sync_detector_impl.cc.s"
cd /home/emidan19/gr-tempest/build/lib && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/emidan19/gr-tempest/lib/sync_detector_impl.cc -o CMakeFiles/gnuradio-tempest.dir/sync_detector_impl.cc.s
lib/CMakeFiles/gnuradio-tempest.dir/frame_drop_impl.cc.o: lib/CMakeFiles/gnuradio-tempest.dir/flags.make
lib/CMakeFiles/gnuradio-tempest.dir/frame_drop_impl.cc.o: ../lib/frame_drop_impl.cc
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/emidan19/gr-tempest/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_7) "Building CXX object lib/CMakeFiles/gnuradio-tempest.dir/frame_drop_impl.cc.o"
cd /home/emidan19/gr-tempest/build/lib && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -o CMakeFiles/gnuradio-tempest.dir/frame_drop_impl.cc.o -c /home/emidan19/gr-tempest/lib/frame_drop_impl.cc
lib/CMakeFiles/gnuradio-tempest.dir/frame_drop_impl.cc.i: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/gnuradio-tempest.dir/frame_drop_impl.cc.i"
cd /home/emidan19/gr-tempest/build/lib && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/emidan19/gr-tempest/lib/frame_drop_impl.cc > CMakeFiles/gnuradio-tempest.dir/frame_drop_impl.cc.i
lib/CMakeFiles/gnuradio-tempest.dir/frame_drop_impl.cc.s: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/gnuradio-tempest.dir/frame_drop_impl.cc.s"
cd /home/emidan19/gr-tempest/build/lib && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/emidan19/gr-tempest/lib/frame_drop_impl.cc -o CMakeFiles/gnuradio-tempest.dir/frame_drop_impl.cc.s
lib/CMakeFiles/gnuradio-tempest.dir/fft_peak_fine_sampling_sync_impl.cc.o: lib/CMakeFiles/gnuradio-tempest.dir/flags.make
lib/CMakeFiles/gnuradio-tempest.dir/fft_peak_fine_sampling_sync_impl.cc.o: ../lib/fft_peak_fine_sampling_sync_impl.cc
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/emidan19/gr-tempest/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_8) "Building CXX object lib/CMakeFiles/gnuradio-tempest.dir/fft_peak_fine_sampling_sync_impl.cc.o"
cd /home/emidan19/gr-tempest/build/lib && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -o CMakeFiles/gnuradio-tempest.dir/fft_peak_fine_sampling_sync_impl.cc.o -c /home/emidan19/gr-tempest/lib/fft_peak_fine_sampling_sync_impl.cc
lib/CMakeFiles/gnuradio-tempest.dir/fft_peak_fine_sampling_sync_impl.cc.i: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/gnuradio-tempest.dir/fft_peak_fine_sampling_sync_impl.cc.i"
cd /home/emidan19/gr-tempest/build/lib && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/emidan19/gr-tempest/lib/fft_peak_fine_sampling_sync_impl.cc > CMakeFiles/gnuradio-tempest.dir/fft_peak_fine_sampling_sync_impl.cc.i
lib/CMakeFiles/gnuradio-tempest.dir/fft_peak_fine_sampling_sync_impl.cc.s: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/gnuradio-tempest.dir/fft_peak_fine_sampling_sync_impl.cc.s"
cd /home/emidan19/gr-tempest/build/lib && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/emidan19/gr-tempest/lib/fft_peak_fine_sampling_sync_impl.cc -o CMakeFiles/gnuradio-tempest.dir/fft_peak_fine_sampling_sync_impl.cc.s
lib/CMakeFiles/gnuradio-tempest.dir/infer_screen_resolution_impl.cc.o: lib/CMakeFiles/gnuradio-tempest.dir/flags.make
lib/CMakeFiles/gnuradio-tempest.dir/infer_screen_resolution_impl.cc.o: ../lib/infer_screen_resolution_impl.cc
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/emidan19/gr-tempest/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_9) "Building CXX object lib/CMakeFiles/gnuradio-tempest.dir/infer_screen_resolution_impl.cc.o"
cd /home/emidan19/gr-tempest/build/lib && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -o CMakeFiles/gnuradio-tempest.dir/infer_screen_resolution_impl.cc.o -c /home/emidan19/gr-tempest/lib/infer_screen_resolution_impl.cc
lib/CMakeFiles/gnuradio-tempest.dir/infer_screen_resolution_impl.cc.i: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/gnuradio-tempest.dir/infer_screen_resolution_impl.cc.i"
cd /home/emidan19/gr-tempest/build/lib && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/emidan19/gr-tempest/lib/infer_screen_resolution_impl.cc > CMakeFiles/gnuradio-tempest.dir/infer_screen_resolution_impl.cc.i
lib/CMakeFiles/gnuradio-tempest.dir/infer_screen_resolution_impl.cc.s: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/gnuradio-tempest.dir/infer_screen_resolution_impl.cc.s"
cd /home/emidan19/gr-tempest/build/lib && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/emidan19/gr-tempest/lib/infer_screen_resolution_impl.cc -o CMakeFiles/gnuradio-tempest.dir/infer_screen_resolution_impl.cc.s
lib/CMakeFiles/gnuradio-tempest.dir/ssamp_correction_impl.cc.o: lib/CMakeFiles/gnuradio-tempest.dir/flags.make
lib/CMakeFiles/gnuradio-tempest.dir/ssamp_correction_impl.cc.o: ../lib/ssamp_correction_impl.cc
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/emidan19/gr-tempest/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_10) "Building CXX object lib/CMakeFiles/gnuradio-tempest.dir/ssamp_correction_impl.cc.o"
cd /home/emidan19/gr-tempest/build/lib && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -o CMakeFiles/gnuradio-tempest.dir/ssamp_correction_impl.cc.o -c /home/emidan19/gr-tempest/lib/ssamp_correction_impl.cc
lib/CMakeFiles/gnuradio-tempest.dir/ssamp_correction_impl.cc.i: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/gnuradio-tempest.dir/ssamp_correction_impl.cc.i"
cd /home/emidan19/gr-tempest/build/lib && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/emidan19/gr-tempest/lib/ssamp_correction_impl.cc > CMakeFiles/gnuradio-tempest.dir/ssamp_correction_impl.cc.i
lib/CMakeFiles/gnuradio-tempest.dir/ssamp_correction_impl.cc.s: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/gnuradio-tempest.dir/ssamp_correction_impl.cc.s"
cd /home/emidan19/gr-tempest/build/lib && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/emidan19/gr-tempest/lib/ssamp_correction_impl.cc -o CMakeFiles/gnuradio-tempest.dir/ssamp_correction_impl.cc.s
# Object files for target gnuradio-tempest
gnuradio__tempest_OBJECTS = \
"CMakeFiles/gnuradio-tempest.dir/sampling_synchronization_impl.cc.o" \
"CMakeFiles/gnuradio-tempest.dir/framing_impl.cc.o" \
"CMakeFiles/gnuradio-tempest.dir/Hsync_impl.cc.o" \
"CMakeFiles/gnuradio-tempest.dir/normalize_flow_impl.cc.o" \
"CMakeFiles/gnuradio-tempest.dir/fine_sampling_synchronization_impl.cc.o" \
"CMakeFiles/gnuradio-tempest.dir/sync_detector_impl.cc.o" \
"CMakeFiles/gnuradio-tempest.dir/frame_drop_impl.cc.o" \
"CMakeFiles/gnuradio-tempest.dir/fft_peak_fine_sampling_sync_impl.cc.o" \
"CMakeFiles/gnuradio-tempest.dir/infer_screen_resolution_impl.cc.o" \
"CMakeFiles/gnuradio-tempest.dir/ssamp_correction_impl.cc.o"
# External object files for target gnuradio-tempest
gnuradio__tempest_EXTERNAL_OBJECTS =
lib/libgnuradio-tempest.so.17a754aa: lib/CMakeFiles/gnuradio-tempest.dir/sampling_synchronization_impl.cc.o
lib/libgnuradio-tempest.so.17a754aa: lib/CMakeFiles/gnuradio-tempest.dir/framing_impl.cc.o
lib/libgnuradio-tempest.so.17a754aa: lib/CMakeFiles/gnuradio-tempest.dir/Hsync_impl.cc.o
lib/libgnuradio-tempest.so.17a754aa: lib/CMakeFiles/gnuradio-tempest.dir/normalize_flow_impl.cc.o
lib/libgnuradio-tempest.so.17a754aa: lib/CMakeFiles/gnuradio-tempest.dir/fine_sampling_synchronization_impl.cc.o
lib/libgnuradio-tempest.so.17a754aa: lib/CMakeFiles/gnuradio-tempest.dir/sync_detector_impl.cc.o
lib/libgnuradio-tempest.so.17a754aa: lib/CMakeFiles/gnuradio-tempest.dir/frame_drop_impl.cc.o
lib/libgnuradio-tempest.so.17a754aa: lib/CMakeFiles/gnuradio-tempest.dir/fft_peak_fine_sampling_sync_impl.cc.o
lib/libgnuradio-tempest.so.17a754aa: lib/CMakeFiles/gnuradio-tempest.dir/infer_screen_resolution_impl.cc.o
lib/libgnuradio-tempest.so.17a754aa: lib/CMakeFiles/gnuradio-tempest.dir/ssamp_correction_impl.cc.o
lib/libgnuradio-tempest.so.17a754aa: lib/CMakeFiles/gnuradio-tempest.dir/build.make
lib/libgnuradio-tempest.so.17a754aa: /usr/lib/x86_64-linux-gnu/libgnuradio-filter.so.3.8.5.0
lib/libgnuradio-tempest.so.17a754aa: /usr/lib/x86_64-linux-gnu/libgnuradio-blocks.so.3.8.5.0
lib/libgnuradio-tempest.so.17a754aa: /usr/lib/x86_64-linux-gnu/libgnuradio-fft.so.3.8.5.0
lib/libgnuradio-tempest.so.17a754aa: /usr/lib/x86_64-linux-gnu/libgnuradio-runtime.so.3.8.5.0
lib/libgnuradio-tempest.so.17a754aa: /usr/lib/x86_64-linux-gnu/libthrift.so
lib/libgnuradio-tempest.so.17a754aa: /usr/lib/x86_64-linux-gnu/libgnuradio-pmt.so.3.8.5.0
lib/libgnuradio-tempest.so.17a754aa: /usr/lib/x86_64-linux-gnu/libboost_program_options.so.1.71.0
lib/libgnuradio-tempest.so.17a754aa: /usr/lib/x86_64-linux-gnu/libboost_filesystem.so.1.71.0
lib/libgnuradio-tempest.so.17a754aa: /usr/lib/x86_64-linux-gnu/libboost_system.so.1.71.0
lib/libgnuradio-tempest.so.17a754aa: /usr/lib/x86_64-linux-gnu/libboost_regex.so.1.71.0
lib/libgnuradio-tempest.so.17a754aa: /usr/lib/x86_64-linux-gnu/libboost_thread.so.1.71.0
lib/libgnuradio-tempest.so.17a754aa: /usr/lib/x86_64-linux-gnu/libboost_atomic.so.1.71.0
lib/libgnuradio-tempest.so.17a754aa: /usr/lib/x86_64-linux-gnu/liblog4cpp.so
lib/libgnuradio-tempest.so.17a754aa: /usr/lib/x86_64-linux-gnu/libgmpxx.so
lib/libgnuradio-tempest.so.17a754aa: /usr/lib/x86_64-linux-gnu/libgmp.so
lib/libgnuradio-tempest.so.17a754aa: /usr/lib/x86_64-linux-gnu/libfftw3f.so
lib/libgnuradio-tempest.so.17a754aa: /usr/lib/x86_64-linux-gnu/libfftw3f_threads.so
lib/libgnuradio-tempest.so.17a754aa: /usr/lib/x86_64-linux-gnu/libvolk.so.2.2
lib/libgnuradio-tempest.so.17a754aa: /usr/lib/x86_64-linux-gnu/liborc-0.4.so
lib/libgnuradio-tempest.so.17a754aa: lib/CMakeFiles/gnuradio-tempest.dir/link.txt
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --bold --progress-dir=/home/emidan19/gr-tempest/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_11) "Linking CXX shared library libgnuradio-tempest.so"
cd /home/emidan19/gr-tempest/build/lib && $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/gnuradio-tempest.dir/link.txt --verbose=$(VERBOSE)
cd /home/emidan19/gr-tempest/build/lib && $(CMAKE_COMMAND) -E cmake_symlink_library libgnuradio-tempest.so.17a754aa libgnuradio-tempest.so.1.0.0git libgnuradio-tempest.so
lib/libgnuradio-tempest.so.1.0.0git: lib/libgnuradio-tempest.so.17a754aa
@$(CMAKE_COMMAND) -E touch_nocreate lib/libgnuradio-tempest.so.1.0.0git
lib/libgnuradio-tempest.so: lib/libgnuradio-tempest.so.17a754aa
@$(CMAKE_COMMAND) -E touch_nocreate lib/libgnuradio-tempest.so
# Rule to build all files generated by this target.
lib/CMakeFiles/gnuradio-tempest.dir/build: lib/libgnuradio-tempest.so
.PHONY : lib/CMakeFiles/gnuradio-tempest.dir/build
lib/CMakeFiles/gnuradio-tempest.dir/clean:
cd /home/emidan19/gr-tempest/build/lib && $(CMAKE_COMMAND) -P CMakeFiles/gnuradio-tempest.dir/cmake_clean.cmake
.PHONY : lib/CMakeFiles/gnuradio-tempest.dir/clean
lib/CMakeFiles/gnuradio-tempest.dir/depend:
cd /home/emidan19/gr-tempest/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/emidan19/gr-tempest /home/emidan19/gr-tempest/lib /home/emidan19/gr-tempest/build /home/emidan19/gr-tempest/build/lib /home/emidan19/gr-tempest/build/lib/CMakeFiles/gnuradio-tempest.dir/DependInfo.cmake --color=$(COLOR)
.PHONY : lib/CMakeFiles/gnuradio-tempest.dir/depend

View File

@ -0,0 +1,21 @@
file(REMOVE_RECURSE
"CMakeFiles/gnuradio-tempest.dir/Hsync_impl.cc.o"
"CMakeFiles/gnuradio-tempest.dir/fft_peak_fine_sampling_sync_impl.cc.o"
"CMakeFiles/gnuradio-tempest.dir/fine_sampling_synchronization_impl.cc.o"
"CMakeFiles/gnuradio-tempest.dir/frame_drop_impl.cc.o"
"CMakeFiles/gnuradio-tempest.dir/framing_impl.cc.o"
"CMakeFiles/gnuradio-tempest.dir/infer_screen_resolution_impl.cc.o"
"CMakeFiles/gnuradio-tempest.dir/normalize_flow_impl.cc.o"
"CMakeFiles/gnuradio-tempest.dir/sampling_synchronization_impl.cc.o"
"CMakeFiles/gnuradio-tempest.dir/ssamp_correction_impl.cc.o"
"CMakeFiles/gnuradio-tempest.dir/sync_detector_impl.cc.o"
"libgnuradio-tempest.pdb"
"libgnuradio-tempest.so"
"libgnuradio-tempest.so.1.0.0git"
"libgnuradio-tempest.so.17a754aa"
)
# Per-language clean rules from dependency scanning.
foreach(lang CXX)
include(CMakeFiles/gnuradio-tempest.dir/cmake_clean_${lang}.cmake OPTIONAL)
endforeach()

View File

@ -0,0 +1,53 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 3.16
lib/CMakeFiles/gnuradio-tempest.dir/Hsync_impl.cc.o
../include/tempest/Hsync.h
../include/tempest/api.h
/home/emidan19/gr-tempest/lib/Hsync_impl.cc
/home/emidan19/gr-tempest/lib/Hsync_impl.h
lib/CMakeFiles/gnuradio-tempest.dir/fft_peak_fine_sampling_sync_impl.cc.o
../include/tempest/api.h
../include/tempest/fft_peak_fine_sampling_sync.h
/home/emidan19/gr-tempest/lib/fft_peak_fine_sampling_sync_impl.cc
/home/emidan19/gr-tempest/lib/fft_peak_fine_sampling_sync_impl.h
lib/CMakeFiles/gnuradio-tempest.dir/fine_sampling_synchronization_impl.cc.o
../include/tempest/api.h
../include/tempest/fine_sampling_synchronization.h
/home/emidan19/gr-tempest/lib/fine_sampling_synchronization_impl.cc
/home/emidan19/gr-tempest/lib/fine_sampling_synchronization_impl.h
lib/CMakeFiles/gnuradio-tempest.dir/frame_drop_impl.cc.o
../include/tempest/api.h
../include/tempest/frame_drop.h
/home/emidan19/gr-tempest/lib/frame_drop_impl.cc
/home/emidan19/gr-tempest/lib/frame_drop_impl.h
lib/CMakeFiles/gnuradio-tempest.dir/framing_impl.cc.o
../include/tempest/api.h
../include/tempest/framing.h
/home/emidan19/gr-tempest/lib/framing_impl.cc
/home/emidan19/gr-tempest/lib/framing_impl.h
lib/CMakeFiles/gnuradio-tempest.dir/infer_screen_resolution_impl.cc.o
../include/tempest/api.h
../include/tempest/infer_screen_resolution.h
/home/emidan19/gr-tempest/lib/infer_screen_resolution_impl.cc
/home/emidan19/gr-tempest/lib/infer_screen_resolution_impl.h
lib/CMakeFiles/gnuradio-tempest.dir/normalize_flow_impl.cc.o
../include/tempest/api.h
../include/tempest/normalize_flow.h
/home/emidan19/gr-tempest/lib/normalize_flow_impl.cc
/home/emidan19/gr-tempest/lib/normalize_flow_impl.h
lib/CMakeFiles/gnuradio-tempest.dir/sampling_synchronization_impl.cc.o
../include/tempest/api.h
../include/tempest/sampling_synchronization.h
/home/emidan19/gr-tempest/lib/sampling_synchronization_impl.cc
/home/emidan19/gr-tempest/lib/sampling_synchronization_impl.h
lib/CMakeFiles/gnuradio-tempest.dir/ssamp_correction_impl.cc.o
../include/tempest/api.h
../include/tempest/ssamp_correction.h
/home/emidan19/gr-tempest/lib/ssamp_correction_impl.cc
/home/emidan19/gr-tempest/lib/ssamp_correction_impl.h
lib/CMakeFiles/gnuradio-tempest.dir/sync_detector_impl.cc.o
../include/tempest/api.h
../include/tempest/sync_detector.h
/home/emidan19/gr-tempest/lib/sync_detector_impl.cc
/home/emidan19/gr-tempest/lib/sync_detector_impl.h

View File

@ -0,0 +1,53 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 3.16
lib/CMakeFiles/gnuradio-tempest.dir/Hsync_impl.cc.o: ../include/tempest/Hsync.h
lib/CMakeFiles/gnuradio-tempest.dir/Hsync_impl.cc.o: ../include/tempest/api.h
lib/CMakeFiles/gnuradio-tempest.dir/Hsync_impl.cc.o: ../lib/Hsync_impl.cc
lib/CMakeFiles/gnuradio-tempest.dir/Hsync_impl.cc.o: ../lib/Hsync_impl.h
lib/CMakeFiles/gnuradio-tempest.dir/fft_peak_fine_sampling_sync_impl.cc.o: ../include/tempest/api.h
lib/CMakeFiles/gnuradio-tempest.dir/fft_peak_fine_sampling_sync_impl.cc.o: ../include/tempest/fft_peak_fine_sampling_sync.h
lib/CMakeFiles/gnuradio-tempest.dir/fft_peak_fine_sampling_sync_impl.cc.o: ../lib/fft_peak_fine_sampling_sync_impl.cc
lib/CMakeFiles/gnuradio-tempest.dir/fft_peak_fine_sampling_sync_impl.cc.o: ../lib/fft_peak_fine_sampling_sync_impl.h
lib/CMakeFiles/gnuradio-tempest.dir/fine_sampling_synchronization_impl.cc.o: ../include/tempest/api.h
lib/CMakeFiles/gnuradio-tempest.dir/fine_sampling_synchronization_impl.cc.o: ../include/tempest/fine_sampling_synchronization.h
lib/CMakeFiles/gnuradio-tempest.dir/fine_sampling_synchronization_impl.cc.o: ../lib/fine_sampling_synchronization_impl.cc
lib/CMakeFiles/gnuradio-tempest.dir/fine_sampling_synchronization_impl.cc.o: ../lib/fine_sampling_synchronization_impl.h
lib/CMakeFiles/gnuradio-tempest.dir/frame_drop_impl.cc.o: ../include/tempest/api.h
lib/CMakeFiles/gnuradio-tempest.dir/frame_drop_impl.cc.o: ../include/tempest/frame_drop.h
lib/CMakeFiles/gnuradio-tempest.dir/frame_drop_impl.cc.o: ../lib/frame_drop_impl.cc
lib/CMakeFiles/gnuradio-tempest.dir/frame_drop_impl.cc.o: ../lib/frame_drop_impl.h
lib/CMakeFiles/gnuradio-tempest.dir/framing_impl.cc.o: ../include/tempest/api.h
lib/CMakeFiles/gnuradio-tempest.dir/framing_impl.cc.o: ../include/tempest/framing.h
lib/CMakeFiles/gnuradio-tempest.dir/framing_impl.cc.o: ../lib/framing_impl.cc
lib/CMakeFiles/gnuradio-tempest.dir/framing_impl.cc.o: ../lib/framing_impl.h
lib/CMakeFiles/gnuradio-tempest.dir/infer_screen_resolution_impl.cc.o: ../include/tempest/api.h
lib/CMakeFiles/gnuradio-tempest.dir/infer_screen_resolution_impl.cc.o: ../include/tempest/infer_screen_resolution.h
lib/CMakeFiles/gnuradio-tempest.dir/infer_screen_resolution_impl.cc.o: ../lib/infer_screen_resolution_impl.cc
lib/CMakeFiles/gnuradio-tempest.dir/infer_screen_resolution_impl.cc.o: ../lib/infer_screen_resolution_impl.h
lib/CMakeFiles/gnuradio-tempest.dir/normalize_flow_impl.cc.o: ../include/tempest/api.h
lib/CMakeFiles/gnuradio-tempest.dir/normalize_flow_impl.cc.o: ../include/tempest/normalize_flow.h
lib/CMakeFiles/gnuradio-tempest.dir/normalize_flow_impl.cc.o: ../lib/normalize_flow_impl.cc
lib/CMakeFiles/gnuradio-tempest.dir/normalize_flow_impl.cc.o: ../lib/normalize_flow_impl.h
lib/CMakeFiles/gnuradio-tempest.dir/sampling_synchronization_impl.cc.o: ../include/tempest/api.h
lib/CMakeFiles/gnuradio-tempest.dir/sampling_synchronization_impl.cc.o: ../include/tempest/sampling_synchronization.h
lib/CMakeFiles/gnuradio-tempest.dir/sampling_synchronization_impl.cc.o: ../lib/sampling_synchronization_impl.cc
lib/CMakeFiles/gnuradio-tempest.dir/sampling_synchronization_impl.cc.o: ../lib/sampling_synchronization_impl.h
lib/CMakeFiles/gnuradio-tempest.dir/ssamp_correction_impl.cc.o: ../include/tempest/api.h
lib/CMakeFiles/gnuradio-tempest.dir/ssamp_correction_impl.cc.o: ../include/tempest/ssamp_correction.h
lib/CMakeFiles/gnuradio-tempest.dir/ssamp_correction_impl.cc.o: ../lib/ssamp_correction_impl.cc
lib/CMakeFiles/gnuradio-tempest.dir/ssamp_correction_impl.cc.o: ../lib/ssamp_correction_impl.h
lib/CMakeFiles/gnuradio-tempest.dir/sync_detector_impl.cc.o: ../include/tempest/api.h
lib/CMakeFiles/gnuradio-tempest.dir/sync_detector_impl.cc.o: ../include/tempest/sync_detector.h
lib/CMakeFiles/gnuradio-tempest.dir/sync_detector_impl.cc.o: ../lib/sync_detector_impl.cc
lib/CMakeFiles/gnuradio-tempest.dir/sync_detector_impl.cc.o: ../lib/sync_detector_impl.h

View File

@ -0,0 +1,10 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 3.16
# compile CXX with /usr/bin/c++
CXX_FLAGS = -O3 -DNDEBUG -fPIC -fvisibility=hidden -std=gnu++11
CXX_DEFINES = -DBOOST_ALL_NO_LIB -DBOOST_ATOMIC_DYN_LINK -DBOOST_FILESYSTEM_DYN_LINK -DBOOST_PROGRAM_OPTIONS_DYN_LINK -DBOOST_REGEX_DYN_LINK -DBOOST_SYSTEM_DYN_LINK -DBOOST_THREAD_DYN_LINK -DFFTW3F_THREADS -DGR_CTRLPORT -Dgnuradio_tempest_EXPORTS
CXX_INCLUDES = -I/home/emidan19/gr-tempest/lib/../include

View File

@ -0,0 +1 @@
/usr/bin/c++ -fPIC -O3 -DNDEBUG -shared -Wl,-soname,libgnuradio-tempest.so.1.0.0git -o libgnuradio-tempest.so.17a754aa CMakeFiles/gnuradio-tempest.dir/sampling_synchronization_impl.cc.o CMakeFiles/gnuradio-tempest.dir/framing_impl.cc.o CMakeFiles/gnuradio-tempest.dir/Hsync_impl.cc.o CMakeFiles/gnuradio-tempest.dir/normalize_flow_impl.cc.o CMakeFiles/gnuradio-tempest.dir/fine_sampling_synchronization_impl.cc.o CMakeFiles/gnuradio-tempest.dir/sync_detector_impl.cc.o CMakeFiles/gnuradio-tempest.dir/frame_drop_impl.cc.o CMakeFiles/gnuradio-tempest.dir/fft_peak_fine_sampling_sync_impl.cc.o CMakeFiles/gnuradio-tempest.dir/infer_screen_resolution_impl.cc.o CMakeFiles/gnuradio-tempest.dir/ssamp_correction_impl.cc.o /usr/lib/x86_64-linux-gnu/libgnuradio-filter.so.3.8.5.0 /usr/lib/x86_64-linux-gnu/libgnuradio-blocks.so.3.8.5.0 /usr/lib/x86_64-linux-gnu/libgnuradio-fft.so.3.8.5.0 /usr/lib/x86_64-linux-gnu/libgnuradio-runtime.so.3.8.5.0 /usr/lib/x86_64-linux-gnu/libthrift.so /usr/lib/x86_64-linux-gnu/libgnuradio-pmt.so.3.8.5.0 /usr/lib/x86_64-linux-gnu/libboost_program_options.so.1.71.0 /usr/lib/x86_64-linux-gnu/libboost_filesystem.so.1.71.0 /usr/lib/x86_64-linux-gnu/libboost_system.so.1.71.0 /usr/lib/x86_64-linux-gnu/libboost_regex.so.1.71.0 /usr/lib/x86_64-linux-gnu/libboost_thread.so.1.71.0 /usr/lib/x86_64-linux-gnu/libboost_atomic.so.1.71.0 -lpthread /usr/lib/x86_64-linux-gnu/liblog4cpp.so /usr/lib/x86_64-linux-gnu/libgmpxx.so /usr/lib/x86_64-linux-gnu/libgmp.so -lrt /usr/lib/x86_64-linux-gnu/libfftw3f.so /usr/lib/x86_64-linux-gnu/libfftw3f_threads.so /usr/lib/x86_64-linux-gnu/libvolk.so.2.2 -ldl /usr/lib/x86_64-linux-gnu/liborc-0.4.so -lm

View File

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

View File

@ -0,0 +1 @@
11

View File

@ -0,0 +1,6 @@
# CMake generated Testfile for
# Source directory: /home/emidan19/gr-tempest/lib
# Build directory: /home/emidan19/gr-tempest/build/lib
#
# This file includes the relevant testing commands required for
# testing this directory and lists subdirectories to be tested as well.

512
build/lib/Makefile Normal file
View File

@ -0,0 +1,512 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 3.16
# Default target executed when no arguments are given to make.
default_target: all
.PHONY : default_target
# Allow only one "make -f Makefile2" at a time, but pass parallelism.
.NOTPARALLEL:
#=============================================================================
# Special targets provided by cmake.
# Disable implicit rules so canonical targets will work.
.SUFFIXES:
# Remove some rules from gmake that .SUFFIXES does not remove.
SUFFIXES =
.SUFFIXES: .hpux_make_needs_suffix_list
# Suppress display of executed commands.
$(VERBOSE).SILENT:
# A target that is always out of date.
cmake_force:
.PHONY : cmake_force
#=============================================================================
# Set environment variables for the build.
# The shell in which to execute make rules.
SHELL = /bin/sh
# The CMake executable.
CMAKE_COMMAND = /usr/bin/cmake
# The command to remove a file.
RM = /usr/bin/cmake -E remove -f
# Escaping for special characters.
EQUALS = =
# The top-level source directory on which CMake was run.
CMAKE_SOURCE_DIR = /home/emidan19/gr-tempest
# The top-level build directory on which CMake was run.
CMAKE_BINARY_DIR = /home/emidan19/gr-tempest/build
#=============================================================================
# Targets provided globally by CMake.
# Special rule for the target install/strip
install/strip: preinstall
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing the project stripped..."
/usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake
.PHONY : install/strip
# Special rule for the target install/strip
install/strip/fast: preinstall/fast
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing the project stripped..."
/usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake
.PHONY : install/strip/fast
# Special rule for the target install/local
install/local: preinstall
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing only the local directory..."
/usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake
.PHONY : install/local
# Special rule for the target install/local
install/local/fast: preinstall/fast
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing only the local directory..."
/usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake
.PHONY : install/local/fast
# Special rule for the target install
install: preinstall
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Install the project..."
/usr/bin/cmake -P cmake_install.cmake
.PHONY : install
# Special rule for the target install
install/fast: preinstall/fast
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Install the project..."
/usr/bin/cmake -P cmake_install.cmake
.PHONY : install/fast
# Special rule for the target list_install_components
list_install_components:
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Available install components are: \"Unspecified\""
.PHONY : list_install_components
# Special rule for the target list_install_components
list_install_components/fast: list_install_components
.PHONY : list_install_components/fast
# Special rule for the target rebuild_cache
rebuild_cache:
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running CMake to regenerate build system..."
/usr/bin/cmake -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 edit_cache
edit_cache:
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "No interactive CMake dialog available..."
/usr/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available.
.PHONY : edit_cache
# Special rule for the target edit_cache
edit_cache/fast: edit_cache
.PHONY : edit_cache/fast
# Special rule for the target test
test:
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running tests..."
/usr/bin/ctest --force-new-ctest-process $(ARGS)
.PHONY : test
# Special rule for the target test
test/fast: test
.PHONY : test/fast
# The main all target
all: cmake_check_build_system
cd /home/emidan19/gr-tempest/build && $(CMAKE_COMMAND) -E cmake_progress_start /home/emidan19/gr-tempest/build/CMakeFiles /home/emidan19/gr-tempest/build/lib/CMakeFiles/progress.marks
cd /home/emidan19/gr-tempest/build && $(MAKE) -f CMakeFiles/Makefile2 lib/all
$(CMAKE_COMMAND) -E cmake_progress_start /home/emidan19/gr-tempest/build/CMakeFiles 0
.PHONY : all
# The main clean target
clean:
cd /home/emidan19/gr-tempest/build && $(MAKE) -f CMakeFiles/Makefile2 lib/clean
.PHONY : clean
# The main clean target
clean/fast: clean
.PHONY : clean/fast
# Prepare targets for installation.
preinstall: all
cd /home/emidan19/gr-tempest/build && $(MAKE) -f CMakeFiles/Makefile2 lib/preinstall
.PHONY : preinstall
# Prepare targets for installation.
preinstall/fast:
cd /home/emidan19/gr-tempest/build && $(MAKE) -f CMakeFiles/Makefile2 lib/preinstall
.PHONY : preinstall/fast
# clear depends
depend:
cd /home/emidan19/gr-tempest/build && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1
.PHONY : depend
# Convenience name for target.
lib/CMakeFiles/gnuradio-tempest.dir/rule:
cd /home/emidan19/gr-tempest/build && $(MAKE) -f CMakeFiles/Makefile2 lib/CMakeFiles/gnuradio-tempest.dir/rule
.PHONY : lib/CMakeFiles/gnuradio-tempest.dir/rule
# Convenience name for target.
gnuradio-tempest: lib/CMakeFiles/gnuradio-tempest.dir/rule
.PHONY : gnuradio-tempest
# fast build rule for target.
gnuradio-tempest/fast:
cd /home/emidan19/gr-tempest/build && $(MAKE) -f lib/CMakeFiles/gnuradio-tempest.dir/build.make lib/CMakeFiles/gnuradio-tempest.dir/build
.PHONY : gnuradio-tempest/fast
Hsync_impl.o: Hsync_impl.cc.o
.PHONY : Hsync_impl.o
# target to build an object file
Hsync_impl.cc.o:
cd /home/emidan19/gr-tempest/build && $(MAKE) -f lib/CMakeFiles/gnuradio-tempest.dir/build.make lib/CMakeFiles/gnuradio-tempest.dir/Hsync_impl.cc.o
.PHONY : Hsync_impl.cc.o
Hsync_impl.i: Hsync_impl.cc.i
.PHONY : Hsync_impl.i
# target to preprocess a source file
Hsync_impl.cc.i:
cd /home/emidan19/gr-tempest/build && $(MAKE) -f lib/CMakeFiles/gnuradio-tempest.dir/build.make lib/CMakeFiles/gnuradio-tempest.dir/Hsync_impl.cc.i
.PHONY : Hsync_impl.cc.i
Hsync_impl.s: Hsync_impl.cc.s
.PHONY : Hsync_impl.s
# target to generate assembly for a file
Hsync_impl.cc.s:
cd /home/emidan19/gr-tempest/build && $(MAKE) -f lib/CMakeFiles/gnuradio-tempest.dir/build.make lib/CMakeFiles/gnuradio-tempest.dir/Hsync_impl.cc.s
.PHONY : Hsync_impl.cc.s
fft_peak_fine_sampling_sync_impl.o: fft_peak_fine_sampling_sync_impl.cc.o
.PHONY : fft_peak_fine_sampling_sync_impl.o
# target to build an object file
fft_peak_fine_sampling_sync_impl.cc.o:
cd /home/emidan19/gr-tempest/build && $(MAKE) -f lib/CMakeFiles/gnuradio-tempest.dir/build.make lib/CMakeFiles/gnuradio-tempest.dir/fft_peak_fine_sampling_sync_impl.cc.o
.PHONY : fft_peak_fine_sampling_sync_impl.cc.o
fft_peak_fine_sampling_sync_impl.i: fft_peak_fine_sampling_sync_impl.cc.i
.PHONY : fft_peak_fine_sampling_sync_impl.i
# target to preprocess a source file
fft_peak_fine_sampling_sync_impl.cc.i:
cd /home/emidan19/gr-tempest/build && $(MAKE) -f lib/CMakeFiles/gnuradio-tempest.dir/build.make lib/CMakeFiles/gnuradio-tempest.dir/fft_peak_fine_sampling_sync_impl.cc.i
.PHONY : fft_peak_fine_sampling_sync_impl.cc.i
fft_peak_fine_sampling_sync_impl.s: fft_peak_fine_sampling_sync_impl.cc.s
.PHONY : fft_peak_fine_sampling_sync_impl.s
# target to generate assembly for a file
fft_peak_fine_sampling_sync_impl.cc.s:
cd /home/emidan19/gr-tempest/build && $(MAKE) -f lib/CMakeFiles/gnuradio-tempest.dir/build.make lib/CMakeFiles/gnuradio-tempest.dir/fft_peak_fine_sampling_sync_impl.cc.s
.PHONY : fft_peak_fine_sampling_sync_impl.cc.s
fine_sampling_synchronization_impl.o: fine_sampling_synchronization_impl.cc.o
.PHONY : fine_sampling_synchronization_impl.o
# target to build an object file
fine_sampling_synchronization_impl.cc.o:
cd /home/emidan19/gr-tempest/build && $(MAKE) -f lib/CMakeFiles/gnuradio-tempest.dir/build.make lib/CMakeFiles/gnuradio-tempest.dir/fine_sampling_synchronization_impl.cc.o
.PHONY : fine_sampling_synchronization_impl.cc.o
fine_sampling_synchronization_impl.i: fine_sampling_synchronization_impl.cc.i
.PHONY : fine_sampling_synchronization_impl.i
# target to preprocess a source file
fine_sampling_synchronization_impl.cc.i:
cd /home/emidan19/gr-tempest/build && $(MAKE) -f lib/CMakeFiles/gnuradio-tempest.dir/build.make lib/CMakeFiles/gnuradio-tempest.dir/fine_sampling_synchronization_impl.cc.i
.PHONY : fine_sampling_synchronization_impl.cc.i
fine_sampling_synchronization_impl.s: fine_sampling_synchronization_impl.cc.s
.PHONY : fine_sampling_synchronization_impl.s
# target to generate assembly for a file
fine_sampling_synchronization_impl.cc.s:
cd /home/emidan19/gr-tempest/build && $(MAKE) -f lib/CMakeFiles/gnuradio-tempest.dir/build.make lib/CMakeFiles/gnuradio-tempest.dir/fine_sampling_synchronization_impl.cc.s
.PHONY : fine_sampling_synchronization_impl.cc.s
frame_drop_impl.o: frame_drop_impl.cc.o
.PHONY : frame_drop_impl.o
# target to build an object file
frame_drop_impl.cc.o:
cd /home/emidan19/gr-tempest/build && $(MAKE) -f lib/CMakeFiles/gnuradio-tempest.dir/build.make lib/CMakeFiles/gnuradio-tempest.dir/frame_drop_impl.cc.o
.PHONY : frame_drop_impl.cc.o
frame_drop_impl.i: frame_drop_impl.cc.i
.PHONY : frame_drop_impl.i
# target to preprocess a source file
frame_drop_impl.cc.i:
cd /home/emidan19/gr-tempest/build && $(MAKE) -f lib/CMakeFiles/gnuradio-tempest.dir/build.make lib/CMakeFiles/gnuradio-tempest.dir/frame_drop_impl.cc.i
.PHONY : frame_drop_impl.cc.i
frame_drop_impl.s: frame_drop_impl.cc.s
.PHONY : frame_drop_impl.s
# target to generate assembly for a file
frame_drop_impl.cc.s:
cd /home/emidan19/gr-tempest/build && $(MAKE) -f lib/CMakeFiles/gnuradio-tempest.dir/build.make lib/CMakeFiles/gnuradio-tempest.dir/frame_drop_impl.cc.s
.PHONY : frame_drop_impl.cc.s
framing_impl.o: framing_impl.cc.o
.PHONY : framing_impl.o
# target to build an object file
framing_impl.cc.o:
cd /home/emidan19/gr-tempest/build && $(MAKE) -f lib/CMakeFiles/gnuradio-tempest.dir/build.make lib/CMakeFiles/gnuradio-tempest.dir/framing_impl.cc.o
.PHONY : framing_impl.cc.o
framing_impl.i: framing_impl.cc.i
.PHONY : framing_impl.i
# target to preprocess a source file
framing_impl.cc.i:
cd /home/emidan19/gr-tempest/build && $(MAKE) -f lib/CMakeFiles/gnuradio-tempest.dir/build.make lib/CMakeFiles/gnuradio-tempest.dir/framing_impl.cc.i
.PHONY : framing_impl.cc.i
framing_impl.s: framing_impl.cc.s
.PHONY : framing_impl.s
# target to generate assembly for a file
framing_impl.cc.s:
cd /home/emidan19/gr-tempest/build && $(MAKE) -f lib/CMakeFiles/gnuradio-tempest.dir/build.make lib/CMakeFiles/gnuradio-tempest.dir/framing_impl.cc.s
.PHONY : framing_impl.cc.s
infer_screen_resolution_impl.o: infer_screen_resolution_impl.cc.o
.PHONY : infer_screen_resolution_impl.o
# target to build an object file
infer_screen_resolution_impl.cc.o:
cd /home/emidan19/gr-tempest/build && $(MAKE) -f lib/CMakeFiles/gnuradio-tempest.dir/build.make lib/CMakeFiles/gnuradio-tempest.dir/infer_screen_resolution_impl.cc.o
.PHONY : infer_screen_resolution_impl.cc.o
infer_screen_resolution_impl.i: infer_screen_resolution_impl.cc.i
.PHONY : infer_screen_resolution_impl.i
# target to preprocess a source file
infer_screen_resolution_impl.cc.i:
cd /home/emidan19/gr-tempest/build && $(MAKE) -f lib/CMakeFiles/gnuradio-tempest.dir/build.make lib/CMakeFiles/gnuradio-tempest.dir/infer_screen_resolution_impl.cc.i
.PHONY : infer_screen_resolution_impl.cc.i
infer_screen_resolution_impl.s: infer_screen_resolution_impl.cc.s
.PHONY : infer_screen_resolution_impl.s
# target to generate assembly for a file
infer_screen_resolution_impl.cc.s:
cd /home/emidan19/gr-tempest/build && $(MAKE) -f lib/CMakeFiles/gnuradio-tempest.dir/build.make lib/CMakeFiles/gnuradio-tempest.dir/infer_screen_resolution_impl.cc.s
.PHONY : infer_screen_resolution_impl.cc.s
normalize_flow_impl.o: normalize_flow_impl.cc.o
.PHONY : normalize_flow_impl.o
# target to build an object file
normalize_flow_impl.cc.o:
cd /home/emidan19/gr-tempest/build && $(MAKE) -f lib/CMakeFiles/gnuradio-tempest.dir/build.make lib/CMakeFiles/gnuradio-tempest.dir/normalize_flow_impl.cc.o
.PHONY : normalize_flow_impl.cc.o
normalize_flow_impl.i: normalize_flow_impl.cc.i
.PHONY : normalize_flow_impl.i
# target to preprocess a source file
normalize_flow_impl.cc.i:
cd /home/emidan19/gr-tempest/build && $(MAKE) -f lib/CMakeFiles/gnuradio-tempest.dir/build.make lib/CMakeFiles/gnuradio-tempest.dir/normalize_flow_impl.cc.i
.PHONY : normalize_flow_impl.cc.i
normalize_flow_impl.s: normalize_flow_impl.cc.s
.PHONY : normalize_flow_impl.s
# target to generate assembly for a file
normalize_flow_impl.cc.s:
cd /home/emidan19/gr-tempest/build && $(MAKE) -f lib/CMakeFiles/gnuradio-tempest.dir/build.make lib/CMakeFiles/gnuradio-tempest.dir/normalize_flow_impl.cc.s
.PHONY : normalize_flow_impl.cc.s
sampling_synchronization_impl.o: sampling_synchronization_impl.cc.o
.PHONY : sampling_synchronization_impl.o
# target to build an object file
sampling_synchronization_impl.cc.o:
cd /home/emidan19/gr-tempest/build && $(MAKE) -f lib/CMakeFiles/gnuradio-tempest.dir/build.make lib/CMakeFiles/gnuradio-tempest.dir/sampling_synchronization_impl.cc.o
.PHONY : sampling_synchronization_impl.cc.o
sampling_synchronization_impl.i: sampling_synchronization_impl.cc.i
.PHONY : sampling_synchronization_impl.i
# target to preprocess a source file
sampling_synchronization_impl.cc.i:
cd /home/emidan19/gr-tempest/build && $(MAKE) -f lib/CMakeFiles/gnuradio-tempest.dir/build.make lib/CMakeFiles/gnuradio-tempest.dir/sampling_synchronization_impl.cc.i
.PHONY : sampling_synchronization_impl.cc.i
sampling_synchronization_impl.s: sampling_synchronization_impl.cc.s
.PHONY : sampling_synchronization_impl.s
# target to generate assembly for a file
sampling_synchronization_impl.cc.s:
cd /home/emidan19/gr-tempest/build && $(MAKE) -f lib/CMakeFiles/gnuradio-tempest.dir/build.make lib/CMakeFiles/gnuradio-tempest.dir/sampling_synchronization_impl.cc.s
.PHONY : sampling_synchronization_impl.cc.s
ssamp_correction_impl.o: ssamp_correction_impl.cc.o
.PHONY : ssamp_correction_impl.o
# target to build an object file
ssamp_correction_impl.cc.o:
cd /home/emidan19/gr-tempest/build && $(MAKE) -f lib/CMakeFiles/gnuradio-tempest.dir/build.make lib/CMakeFiles/gnuradio-tempest.dir/ssamp_correction_impl.cc.o
.PHONY : ssamp_correction_impl.cc.o
ssamp_correction_impl.i: ssamp_correction_impl.cc.i
.PHONY : ssamp_correction_impl.i
# target to preprocess a source file
ssamp_correction_impl.cc.i:
cd /home/emidan19/gr-tempest/build && $(MAKE) -f lib/CMakeFiles/gnuradio-tempest.dir/build.make lib/CMakeFiles/gnuradio-tempest.dir/ssamp_correction_impl.cc.i
.PHONY : ssamp_correction_impl.cc.i
ssamp_correction_impl.s: ssamp_correction_impl.cc.s
.PHONY : ssamp_correction_impl.s
# target to generate assembly for a file
ssamp_correction_impl.cc.s:
cd /home/emidan19/gr-tempest/build && $(MAKE) -f lib/CMakeFiles/gnuradio-tempest.dir/build.make lib/CMakeFiles/gnuradio-tempest.dir/ssamp_correction_impl.cc.s
.PHONY : ssamp_correction_impl.cc.s
sync_detector_impl.o: sync_detector_impl.cc.o
.PHONY : sync_detector_impl.o
# target to build an object file
sync_detector_impl.cc.o:
cd /home/emidan19/gr-tempest/build && $(MAKE) -f lib/CMakeFiles/gnuradio-tempest.dir/build.make lib/CMakeFiles/gnuradio-tempest.dir/sync_detector_impl.cc.o
.PHONY : sync_detector_impl.cc.o
sync_detector_impl.i: sync_detector_impl.cc.i
.PHONY : sync_detector_impl.i
# target to preprocess a source file
sync_detector_impl.cc.i:
cd /home/emidan19/gr-tempest/build && $(MAKE) -f lib/CMakeFiles/gnuradio-tempest.dir/build.make lib/CMakeFiles/gnuradio-tempest.dir/sync_detector_impl.cc.i
.PHONY : sync_detector_impl.cc.i
sync_detector_impl.s: sync_detector_impl.cc.s
.PHONY : sync_detector_impl.s
# target to generate assembly for a file
sync_detector_impl.cc.s:
cd /home/emidan19/gr-tempest/build && $(MAKE) -f lib/CMakeFiles/gnuradio-tempest.dir/build.make lib/CMakeFiles/gnuradio-tempest.dir/sync_detector_impl.cc.s
.PHONY : sync_detector_impl.cc.s
# Help Target
help:
@echo "The following are some of the valid targets for this Makefile:"
@echo "... all (the default if no target is provided)"
@echo "... clean"
@echo "... depend"
@echo "... install/strip"
@echo "... install/local"
@echo "... install"
@echo "... list_install_components"
@echo "... rebuild_cache"
@echo "... edit_cache"
@echo "... test"
@echo "... gnuradio-tempest"
@echo "... Hsync_impl.o"
@echo "... Hsync_impl.i"
@echo "... Hsync_impl.s"
@echo "... fft_peak_fine_sampling_sync_impl.o"
@echo "... fft_peak_fine_sampling_sync_impl.i"
@echo "... fft_peak_fine_sampling_sync_impl.s"
@echo "... fine_sampling_synchronization_impl.o"
@echo "... fine_sampling_synchronization_impl.i"
@echo "... fine_sampling_synchronization_impl.s"
@echo "... frame_drop_impl.o"
@echo "... frame_drop_impl.i"
@echo "... frame_drop_impl.s"
@echo "... framing_impl.o"
@echo "... framing_impl.i"
@echo "... framing_impl.s"
@echo "... infer_screen_resolution_impl.o"
@echo "... infer_screen_resolution_impl.i"
@echo "... infer_screen_resolution_impl.s"
@echo "... normalize_flow_impl.o"
@echo "... normalize_flow_impl.i"
@echo "... normalize_flow_impl.s"
@echo "... sampling_synchronization_impl.o"
@echo "... sampling_synchronization_impl.i"
@echo "... sampling_synchronization_impl.s"
@echo "... ssamp_correction_impl.o"
@echo "... ssamp_correction_impl.i"
@echo "... ssamp_correction_impl.s"
@echo "... sync_detector_impl.o"
@echo "... sync_detector_impl.i"
@echo "... sync_detector_impl.s"
.PHONY : help
#=============================================================================
# Special targets to cleanup operation of make.
# Special rule to run CMake to check the build system integrity.
# No rule that depends on this can have commands that come from listfiles
# because they might be regenerated.
cmake_check_build_system:
cd /home/emidan19/gr-tempest/build && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0
.PHONY : cmake_check_build_system

View File

@ -0,0 +1,26 @@
# Copyright 2018 Free Software Foundation, Inc.
#
# This file is part of GNU Radio
#
# GNU Radio is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 3, or (at your option)
# any later version.
#
# GNU Radio is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with GNU Radio; see the file COPYING. If not, write to
# the Free Software Foundation, Inc., 51 Franklin Street,
# Boston, MA 02110-1301, USA.
include(CMakeFindDependencyMacro)
set(target_deps "")
foreach(dep IN LISTS target_deps)
find_dependency(${dep})
endforeach()
include("${CMAKE_CURRENT_LIST_DIR}/gnuradio-tempestTargets.cmake")

View File

@ -0,0 +1,107 @@
# Install script for directory: /home/emidan19/gr-tempest/lib
# Set the install prefix
if(NOT DEFINED CMAKE_INSTALL_PREFIX)
set(CMAKE_INSTALL_PREFIX "/usr/local")
endif()
string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")
# Set the install configuration name.
if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
if(BUILD_TYPE)
string(REGEX REPLACE "^[^A-Za-z0-9_]+" ""
CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}")
else()
set(CMAKE_INSTALL_CONFIG_NAME "Release")
endif()
message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
endif()
# Set the component getting installed.
if(NOT CMAKE_INSTALL_COMPONENT)
if(COMPONENT)
message(STATUS "Install component: \"${COMPONENT}\"")
set(CMAKE_INSTALL_COMPONENT "${COMPONENT}")
else()
set(CMAKE_INSTALL_COMPONENT)
endif()
endif()
# Install shared libraries without execute permission?
if(NOT DEFINED CMAKE_INSTALL_SO_NO_EXE)
set(CMAKE_INSTALL_SO_NO_EXE "1")
endif()
# Is this installation the result of a crosscompile?
if(NOT DEFINED CMAKE_CROSSCOMPILING)
set(CMAKE_CROSSCOMPILING "FALSE")
endif()
if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_COMPONENT)
foreach(file
"$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/x86_64-linux-gnu/libgnuradio-tempest.so.17a754aa"
"$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/x86_64-linux-gnu/libgnuradio-tempest.so.1.0.0git"
)
if(EXISTS "${file}" AND
NOT IS_SYMLINK "${file}")
file(RPATH_CHECK
FILE "${file}"
RPATH "")
endif()
endforeach()
file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/lib/x86_64-linux-gnu" TYPE SHARED_LIBRARY FILES
"/home/emidan19/gr-tempest/build/lib/libgnuradio-tempest.so.17a754aa"
"/home/emidan19/gr-tempest/build/lib/libgnuradio-tempest.so.1.0.0git"
)
foreach(file
"$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/x86_64-linux-gnu/libgnuradio-tempest.so.17a754aa"
"$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/x86_64-linux-gnu/libgnuradio-tempest.so.1.0.0git"
)
if(EXISTS "${file}" AND
NOT IS_SYMLINK "${file}")
if(CMAKE_INSTALL_DO_STRIP)
execute_process(COMMAND "/usr/bin/strip" "${file}")
endif()
endif()
endforeach()
endif()
if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_COMPONENT)
if(EXISTS "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/x86_64-linux-gnu/libgnuradio-tempest.so" AND
NOT IS_SYMLINK "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/x86_64-linux-gnu/libgnuradio-tempest.so")
file(RPATH_CHECK
FILE "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/x86_64-linux-gnu/libgnuradio-tempest.so"
RPATH "")
endif()
file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/lib/x86_64-linux-gnu" TYPE SHARED_LIBRARY FILES "/home/emidan19/gr-tempest/build/lib/libgnuradio-tempest.so")
if(EXISTS "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/x86_64-linux-gnu/libgnuradio-tempest.so" AND
NOT IS_SYMLINK "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/x86_64-linux-gnu/libgnuradio-tempest.so")
if(CMAKE_INSTALL_DO_STRIP)
execute_process(COMMAND "/usr/bin/strip" "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/x86_64-linux-gnu/libgnuradio-tempest.so")
endif()
endif()
endif()
if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_COMPONENT)
if(EXISTS "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/cmake/tempest/gnuradio-tempestTargets.cmake")
file(DIFFERENT EXPORT_FILE_CHANGED FILES
"$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/cmake/tempest/gnuradio-tempestTargets.cmake"
"/home/emidan19/gr-tempest/build/lib/CMakeFiles/Export/lib/cmake/tempest/gnuradio-tempestTargets.cmake")
if(EXPORT_FILE_CHANGED)
file(GLOB OLD_CONFIG_FILES "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/cmake/tempest/gnuradio-tempestTargets-*.cmake")
if(OLD_CONFIG_FILES)
message(STATUS "Old export file \"$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/cmake/tempest/gnuradio-tempestTargets.cmake\" will be replaced. Removing files [${OLD_CONFIG_FILES}].")
file(REMOVE ${OLD_CONFIG_FILES})
endif()
endif()
endif()
file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/lib/cmake/tempest" TYPE FILE FILES "/home/emidan19/gr-tempest/build/lib/CMakeFiles/Export/lib/cmake/tempest/gnuradio-tempestTargets.cmake")
if("${CMAKE_INSTALL_CONFIG_NAME}" MATCHES "^([Rr][Ee][Ll][Ee][Aa][Ss][Ee])$")
file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/lib/cmake/tempest" TYPE FILE FILES "/home/emidan19/gr-tempest/build/lib/CMakeFiles/Export/lib/cmake/tempest/gnuradio-tempestTargets-release.cmake")
endif()
endif()
if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_COMPONENT)
file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/lib/cmake/tempest" TYPE FILE FILES "/home/emidan19/gr-tempest/build/lib/cmake/Modules/gnuradio-tempestConfig.cmake")
endif()

View File

@ -0,0 +1 @@
libgnuradio-tempest.so.1.0.0git

View File

@ -0,0 +1 @@
libgnuradio-tempest.so.17a754aa

Binary file not shown.

View File

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

View File

@ -0,0 +1 @@
2

View File

@ -0,0 +1,28 @@
# The set of languages for which implicit dependencies are needed:
set(CMAKE_DEPENDS_LANGUAGES
)
# The set of files for implicit dependencies of each language:
# Pairs of files generated by the same build rule.
set(CMAKE_MULTIPLE_OUTPUT_PAIRS
"/home/emidan19/gr-tempest/build/python/TMDS_decoder.pyc" "/home/emidan19/gr-tempest/build/python/__init__.pyc"
"/home/emidan19/gr-tempest/build/python/TMDS_decoder.pyo" "/home/emidan19/gr-tempest/build/python/__init__.pyo"
"/home/emidan19/gr-tempest/build/python/TMDS_image_source.pyc" "/home/emidan19/gr-tempest/build/python/__init__.pyc"
"/home/emidan19/gr-tempest/build/python/TMDS_image_source.pyo" "/home/emidan19/gr-tempest/build/python/__init__.pyo"
"/home/emidan19/gr-tempest/build/python/binary_serializer.pyc" "/home/emidan19/gr-tempest/build/python/__init__.pyc"
"/home/emidan19/gr-tempest/build/python/binary_serializer.pyo" "/home/emidan19/gr-tempest/build/python/__init__.pyo"
"/home/emidan19/gr-tempest/build/python/image_source.pyc" "/home/emidan19/gr-tempest/build/python/__init__.pyc"
"/home/emidan19/gr-tempest/build/python/image_source.pyo" "/home/emidan19/gr-tempest/build/python/__init__.pyo"
"/home/emidan19/gr-tempest/build/python/message_to_var.pyc" "/home/emidan19/gr-tempest/build/python/__init__.pyc"
"/home/emidan19/gr-tempest/build/python/message_to_var.pyo" "/home/emidan19/gr-tempest/build/python/__init__.pyo"
"/home/emidan19/gr-tempest/build/python/tempest_msgbtn.pyc" "/home/emidan19/gr-tempest/build/python/__init__.pyc"
"/home/emidan19/gr-tempest/build/python/tempest_msgbtn.pyo" "/home/emidan19/gr-tempest/build/python/__init__.pyo"
)
# Targets to which this target links.
set(CMAKE_TARGET_LINKED_INFO_FILES
)
# Fortran module output directory.
set(CMAKE_Fortran_TARGET_MODULE_DIR "")

View File

@ -0,0 +1,159 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 3.16
# Delete rule output on recipe failure.
.DELETE_ON_ERROR:
#=============================================================================
# Special targets provided by cmake.
# Disable implicit rules so canonical targets will work.
.SUFFIXES:
# Remove some rules from gmake that .SUFFIXES does not remove.
SUFFIXES =
.SUFFIXES: .hpux_make_needs_suffix_list
# Suppress display of executed commands.
$(VERBOSE).SILENT:
# A target that is always out of date.
cmake_force:
.PHONY : cmake_force
#=============================================================================
# Set environment variables for the build.
# The shell in which to execute make rules.
SHELL = /bin/sh
# The CMake executable.
CMAKE_COMMAND = /usr/bin/cmake
# The command to remove a file.
RM = /usr/bin/cmake -E remove -f
# Escaping for special characters.
EQUALS = =
# The top-level source directory on which CMake was run.
CMAKE_SOURCE_DIR = /home/emidan19/gr-tempest
# The top-level build directory on which CMake was run.
CMAKE_BINARY_DIR = /home/emidan19/gr-tempest/build
# Utility rule file for pygen_python_2ccf9.
# Include the progress variables for this target.
include python/CMakeFiles/pygen_python_2ccf9.dir/progress.make
python/CMakeFiles/pygen_python_2ccf9: python/__init__.pyc
python/CMakeFiles/pygen_python_2ccf9: python/image_source.pyc
python/CMakeFiles/pygen_python_2ccf9: python/message_to_var.pyc
python/CMakeFiles/pygen_python_2ccf9: python/tempest_msgbtn.pyc
python/CMakeFiles/pygen_python_2ccf9: python/TMDS_image_source.pyc
python/CMakeFiles/pygen_python_2ccf9: python/binary_serializer.pyc
python/CMakeFiles/pygen_python_2ccf9: python/TMDS_decoder.pyc
python/CMakeFiles/pygen_python_2ccf9: python/__init__.pyo
python/CMakeFiles/pygen_python_2ccf9: python/image_source.pyo
python/CMakeFiles/pygen_python_2ccf9: python/message_to_var.pyo
python/CMakeFiles/pygen_python_2ccf9: python/tempest_msgbtn.pyo
python/CMakeFiles/pygen_python_2ccf9: python/TMDS_image_source.pyo
python/CMakeFiles/pygen_python_2ccf9: python/binary_serializer.pyo
python/CMakeFiles/pygen_python_2ccf9: python/TMDS_decoder.pyo
python/__init__.pyc: ../python/__init__.py
python/__init__.pyc: ../python/image_source.py
python/__init__.pyc: ../python/message_to_var.py
python/__init__.pyc: ../python/tempest_msgbtn.py
python/__init__.pyc: ../python/TMDS_image_source.py
python/__init__.pyc: ../python/binary_serializer.py
python/__init__.pyc: ../python/TMDS_decoder.py
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --blue --bold --progress-dir=/home/emidan19/gr-tempest/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Generating __init__.pyc, image_source.pyc, message_to_var.pyc, tempest_msgbtn.pyc, TMDS_image_source.pyc, binary_serializer.pyc, TMDS_decoder.pyc"
cd /home/emidan19/gr-tempest/build/python && /usr/bin/python3 /home/emidan19/gr-tempest/build/python_compile_helper.py /home/emidan19/gr-tempest/python/__init__.py /home/emidan19/gr-tempest/python/image_source.py /home/emidan19/gr-tempest/python/message_to_var.py /home/emidan19/gr-tempest/python/tempest_msgbtn.py /home/emidan19/gr-tempest/python/TMDS_image_source.py /home/emidan19/gr-tempest/python/binary_serializer.py /home/emidan19/gr-tempest/python/TMDS_decoder.py /home/emidan19/gr-tempest/build/python/__init__.pyc /home/emidan19/gr-tempest/build/python/image_source.pyc /home/emidan19/gr-tempest/build/python/message_to_var.pyc /home/emidan19/gr-tempest/build/python/tempest_msgbtn.pyc /home/emidan19/gr-tempest/build/python/TMDS_image_source.pyc /home/emidan19/gr-tempest/build/python/binary_serializer.pyc /home/emidan19/gr-tempest/build/python/TMDS_decoder.pyc
python/image_source.pyc: python/__init__.pyc
@$(CMAKE_COMMAND) -E touch_nocreate python/image_source.pyc
python/message_to_var.pyc: python/__init__.pyc
@$(CMAKE_COMMAND) -E touch_nocreate python/message_to_var.pyc
python/tempest_msgbtn.pyc: python/__init__.pyc
@$(CMAKE_COMMAND) -E touch_nocreate python/tempest_msgbtn.pyc
python/TMDS_image_source.pyc: python/__init__.pyc
@$(CMAKE_COMMAND) -E touch_nocreate python/TMDS_image_source.pyc
python/binary_serializer.pyc: python/__init__.pyc
@$(CMAKE_COMMAND) -E touch_nocreate python/binary_serializer.pyc
python/TMDS_decoder.pyc: python/__init__.pyc
@$(CMAKE_COMMAND) -E touch_nocreate python/TMDS_decoder.pyc
python/__init__.pyo: ../python/__init__.py
python/__init__.pyo: ../python/image_source.py
python/__init__.pyo: ../python/message_to_var.py
python/__init__.pyo: ../python/tempest_msgbtn.py
python/__init__.pyo: ../python/TMDS_image_source.py
python/__init__.pyo: ../python/binary_serializer.py
python/__init__.pyo: ../python/TMDS_decoder.py
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --blue --bold --progress-dir=/home/emidan19/gr-tempest/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Generating __init__.pyo, image_source.pyo, message_to_var.pyo, tempest_msgbtn.pyo, TMDS_image_source.pyo, binary_serializer.pyo, TMDS_decoder.pyo"
cd /home/emidan19/gr-tempest/build/python && /usr/bin/python3 -O /home/emidan19/gr-tempest/build/python_compile_helper.py /home/emidan19/gr-tempest/python/__init__.py /home/emidan19/gr-tempest/python/image_source.py /home/emidan19/gr-tempest/python/message_to_var.py /home/emidan19/gr-tempest/python/tempest_msgbtn.py /home/emidan19/gr-tempest/python/TMDS_image_source.py /home/emidan19/gr-tempest/python/binary_serializer.py /home/emidan19/gr-tempest/python/TMDS_decoder.py /home/emidan19/gr-tempest/build/python/__init__.pyo /home/emidan19/gr-tempest/build/python/image_source.pyo /home/emidan19/gr-tempest/build/python/message_to_var.pyo /home/emidan19/gr-tempest/build/python/tempest_msgbtn.pyo /home/emidan19/gr-tempest/build/python/TMDS_image_source.pyo /home/emidan19/gr-tempest/build/python/binary_serializer.pyo /home/emidan19/gr-tempest/build/python/TMDS_decoder.pyo
python/image_source.pyo: python/__init__.pyo
@$(CMAKE_COMMAND) -E touch_nocreate python/image_source.pyo
python/message_to_var.pyo: python/__init__.pyo
@$(CMAKE_COMMAND) -E touch_nocreate python/message_to_var.pyo
python/tempest_msgbtn.pyo: python/__init__.pyo
@$(CMAKE_COMMAND) -E touch_nocreate python/tempest_msgbtn.pyo
python/TMDS_image_source.pyo: python/__init__.pyo
@$(CMAKE_COMMAND) -E touch_nocreate python/TMDS_image_source.pyo
python/binary_serializer.pyo: python/__init__.pyo
@$(CMAKE_COMMAND) -E touch_nocreate python/binary_serializer.pyo
python/TMDS_decoder.pyo: python/__init__.pyo
@$(CMAKE_COMMAND) -E touch_nocreate python/TMDS_decoder.pyo
pygen_python_2ccf9: python/CMakeFiles/pygen_python_2ccf9
pygen_python_2ccf9: python/__init__.pyc
pygen_python_2ccf9: python/image_source.pyc
pygen_python_2ccf9: python/message_to_var.pyc
pygen_python_2ccf9: python/tempest_msgbtn.pyc
pygen_python_2ccf9: python/TMDS_image_source.pyc
pygen_python_2ccf9: python/binary_serializer.pyc
pygen_python_2ccf9: python/TMDS_decoder.pyc
pygen_python_2ccf9: python/__init__.pyo
pygen_python_2ccf9: python/image_source.pyo
pygen_python_2ccf9: python/message_to_var.pyo
pygen_python_2ccf9: python/tempest_msgbtn.pyo
pygen_python_2ccf9: python/TMDS_image_source.pyo
pygen_python_2ccf9: python/binary_serializer.pyo
pygen_python_2ccf9: python/TMDS_decoder.pyo
pygen_python_2ccf9: python/CMakeFiles/pygen_python_2ccf9.dir/build.make
.PHONY : pygen_python_2ccf9
# Rule to build all files generated by this target.
python/CMakeFiles/pygen_python_2ccf9.dir/build: pygen_python_2ccf9
.PHONY : python/CMakeFiles/pygen_python_2ccf9.dir/build
python/CMakeFiles/pygen_python_2ccf9.dir/clean:
cd /home/emidan19/gr-tempest/build/python && $(CMAKE_COMMAND) -P CMakeFiles/pygen_python_2ccf9.dir/cmake_clean.cmake
.PHONY : python/CMakeFiles/pygen_python_2ccf9.dir/clean
python/CMakeFiles/pygen_python_2ccf9.dir/depend:
cd /home/emidan19/gr-tempest/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/emidan19/gr-tempest /home/emidan19/gr-tempest/python /home/emidan19/gr-tempest/build /home/emidan19/gr-tempest/build/python /home/emidan19/gr-tempest/build/python/CMakeFiles/pygen_python_2ccf9.dir/DependInfo.cmake --color=$(COLOR)
.PHONY : python/CMakeFiles/pygen_python_2ccf9.dir/depend

View File

@ -0,0 +1,22 @@
file(REMOVE_RECURSE
"CMakeFiles/pygen_python_2ccf9"
"TMDS_decoder.pyc"
"TMDS_decoder.pyo"
"TMDS_image_source.pyc"
"TMDS_image_source.pyo"
"__init__.pyc"
"__init__.pyo"
"binary_serializer.pyc"
"binary_serializer.pyo"
"image_source.pyc"
"image_source.pyo"
"message_to_var.pyc"
"message_to_var.pyo"
"tempest_msgbtn.pyc"
"tempest_msgbtn.pyo"
)
# Per-language clean rules from dependency scanning.
foreach(lang )
include(CMakeFiles/pygen_python_2ccf9.dir/cmake_clean_${lang}.cmake OPTIONAL)
endforeach()

View File

@ -0,0 +1,3 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 3.16

View File

@ -0,0 +1,3 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 3.16

View File

@ -0,0 +1,3 @@
CMAKE_PROGRESS_1 = 12
CMAKE_PROGRESS_2 = 13

View File

@ -0,0 +1,26 @@
# The set of languages for which implicit dependencies are needed:
set(CMAKE_DEPENDS_LANGUAGES
)
# The set of files for implicit dependencies of each language:
# Pairs of files generated by the same build rule.
set(CMAKE_MULTIPLE_OUTPUT_PAIRS
"/home/emidan19/gr-tempest/build/python/TMDS_image_source.pyc" "/home/emidan19/gr-tempest/build/python/__init__.pyc"
"/home/emidan19/gr-tempest/build/python/TMDS_image_source.pyo" "/home/emidan19/gr-tempest/build/python/__init__.pyo"
"/home/emidan19/gr-tempest/build/python/binary_serializer.pyc" "/home/emidan19/gr-tempest/build/python/__init__.pyc"
"/home/emidan19/gr-tempest/build/python/binary_serializer.pyo" "/home/emidan19/gr-tempest/build/python/__init__.pyo"
"/home/emidan19/gr-tempest/build/python/image_source.pyc" "/home/emidan19/gr-tempest/build/python/__init__.pyc"
"/home/emidan19/gr-tempest/build/python/image_source.pyo" "/home/emidan19/gr-tempest/build/python/__init__.pyo"
"/home/emidan19/gr-tempest/build/python/message_to_var.pyc" "/home/emidan19/gr-tempest/build/python/__init__.pyc"
"/home/emidan19/gr-tempest/build/python/message_to_var.pyo" "/home/emidan19/gr-tempest/build/python/__init__.pyo"
"/home/emidan19/gr-tempest/build/python/tempest_msgbtn.pyc" "/home/emidan19/gr-tempest/build/python/__init__.pyc"
"/home/emidan19/gr-tempest/build/python/tempest_msgbtn.pyo" "/home/emidan19/gr-tempest/build/python/__init__.pyo"
)
# Targets to which this target links.
set(CMAKE_TARGET_LINKED_INFO_FILES
)
# Fortran module output directory.
set(CMAKE_Fortran_TARGET_MODULE_DIR "")

View File

@ -0,0 +1,147 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 3.16
# Delete rule output on recipe failure.
.DELETE_ON_ERROR:
#=============================================================================
# Special targets provided by cmake.
# Disable implicit rules so canonical targets will work.
.SUFFIXES:
# Remove some rules from gmake that .SUFFIXES does not remove.
SUFFIXES =
.SUFFIXES: .hpux_make_needs_suffix_list
# Suppress display of executed commands.
$(VERBOSE).SILENT:
# A target that is always out of date.
cmake_force:
.PHONY : cmake_force
#=============================================================================
# Set environment variables for the build.
# The shell in which to execute make rules.
SHELL = /bin/sh
# The CMake executable.
CMAKE_COMMAND = /usr/bin/cmake
# The command to remove a file.
RM = /usr/bin/cmake -E remove -f
# Escaping for special characters.
EQUALS = =
# The top-level source directory on which CMake was run.
CMAKE_SOURCE_DIR = /home/emidan19/gr-tempest
# The top-level build directory on which CMake was run.
CMAKE_BINARY_DIR = /home/emidan19/gr-tempest/build
# Utility rule file for pygen_python_f8102.
# Include the progress variables for this target.
include python/CMakeFiles/pygen_python_f8102.dir/progress.make
python/CMakeFiles/pygen_python_f8102: python/__init__.pyc
python/CMakeFiles/pygen_python_f8102: python/image_source.pyc
python/CMakeFiles/pygen_python_f8102: python/message_to_var.pyc
python/CMakeFiles/pygen_python_f8102: python/tempest_msgbtn.pyc
python/CMakeFiles/pygen_python_f8102: python/TMDS_image_source.pyc
python/CMakeFiles/pygen_python_f8102: python/binary_serializer.pyc
python/CMakeFiles/pygen_python_f8102: python/__init__.pyo
python/CMakeFiles/pygen_python_f8102: python/image_source.pyo
python/CMakeFiles/pygen_python_f8102: python/message_to_var.pyo
python/CMakeFiles/pygen_python_f8102: python/tempest_msgbtn.pyo
python/CMakeFiles/pygen_python_f8102: python/TMDS_image_source.pyo
python/CMakeFiles/pygen_python_f8102: python/binary_serializer.pyo
python/__init__.pyc: ../python/__init__.py
python/__init__.pyc: ../python/image_source.py
python/__init__.pyc: ../python/message_to_var.py
python/__init__.pyc: ../python/tempest_msgbtn.py
python/__init__.pyc: ../python/TMDS_image_source.py
python/__init__.pyc: ../python/binary_serializer.py
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --blue --bold --progress-dir=/home/emidan19/gr-tempest/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Generating __init__.pyc, image_source.pyc, message_to_var.pyc, tempest_msgbtn.pyc, TMDS_image_source.pyc, binary_serializer.pyc"
cd /home/emidan19/gr-tempest/build/python && /usr/bin/python3 /home/emidan19/gr-tempest/build/python_compile_helper.py /home/emidan19/gr-tempest/python/__init__.py /home/emidan19/gr-tempest/python/image_source.py /home/emidan19/gr-tempest/python/message_to_var.py /home/emidan19/gr-tempest/python/tempest_msgbtn.py /home/emidan19/gr-tempest/python/TMDS_image_source.py /home/emidan19/gr-tempest/python/binary_serializer.py /home/emidan19/gr-tempest/build/python/__init__.pyc /home/emidan19/gr-tempest/build/python/image_source.pyc /home/emidan19/gr-tempest/build/python/message_to_var.pyc /home/emidan19/gr-tempest/build/python/tempest_msgbtn.pyc /home/emidan19/gr-tempest/build/python/TMDS_image_source.pyc /home/emidan19/gr-tempest/build/python/binary_serializer.pyc
python/image_source.pyc: python/__init__.pyc
@$(CMAKE_COMMAND) -E touch_nocreate python/image_source.pyc
python/message_to_var.pyc: python/__init__.pyc
@$(CMAKE_COMMAND) -E touch_nocreate python/message_to_var.pyc
python/tempest_msgbtn.pyc: python/__init__.pyc
@$(CMAKE_COMMAND) -E touch_nocreate python/tempest_msgbtn.pyc
python/TMDS_image_source.pyc: python/__init__.pyc
@$(CMAKE_COMMAND) -E touch_nocreate python/TMDS_image_source.pyc
python/binary_serializer.pyc: python/__init__.pyc
@$(CMAKE_COMMAND) -E touch_nocreate python/binary_serializer.pyc
python/__init__.pyo: ../python/__init__.py
python/__init__.pyo: ../python/image_source.py
python/__init__.pyo: ../python/message_to_var.py
python/__init__.pyo: ../python/tempest_msgbtn.py
python/__init__.pyo: ../python/TMDS_image_source.py
python/__init__.pyo: ../python/binary_serializer.py
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --blue --bold --progress-dir=/home/emidan19/gr-tempest/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Generating __init__.pyo, image_source.pyo, message_to_var.pyo, tempest_msgbtn.pyo, TMDS_image_source.pyo, binary_serializer.pyo"
cd /home/emidan19/gr-tempest/build/python && /usr/bin/python3 -O /home/emidan19/gr-tempest/build/python_compile_helper.py /home/emidan19/gr-tempest/python/__init__.py /home/emidan19/gr-tempest/python/image_source.py /home/emidan19/gr-tempest/python/message_to_var.py /home/emidan19/gr-tempest/python/tempest_msgbtn.py /home/emidan19/gr-tempest/python/TMDS_image_source.py /home/emidan19/gr-tempest/python/binary_serializer.py /home/emidan19/gr-tempest/build/python/__init__.pyo /home/emidan19/gr-tempest/build/python/image_source.pyo /home/emidan19/gr-tempest/build/python/message_to_var.pyo /home/emidan19/gr-tempest/build/python/tempest_msgbtn.pyo /home/emidan19/gr-tempest/build/python/TMDS_image_source.pyo /home/emidan19/gr-tempest/build/python/binary_serializer.pyo
python/image_source.pyo: python/__init__.pyo
@$(CMAKE_COMMAND) -E touch_nocreate python/image_source.pyo
python/message_to_var.pyo: python/__init__.pyo
@$(CMAKE_COMMAND) -E touch_nocreate python/message_to_var.pyo
python/tempest_msgbtn.pyo: python/__init__.pyo
@$(CMAKE_COMMAND) -E touch_nocreate python/tempest_msgbtn.pyo
python/TMDS_image_source.pyo: python/__init__.pyo
@$(CMAKE_COMMAND) -E touch_nocreate python/TMDS_image_source.pyo
python/binary_serializer.pyo: python/__init__.pyo
@$(CMAKE_COMMAND) -E touch_nocreate python/binary_serializer.pyo
pygen_python_f8102: python/CMakeFiles/pygen_python_f8102
pygen_python_f8102: python/__init__.pyc
pygen_python_f8102: python/image_source.pyc
pygen_python_f8102: python/message_to_var.pyc
pygen_python_f8102: python/tempest_msgbtn.pyc
pygen_python_f8102: python/TMDS_image_source.pyc
pygen_python_f8102: python/binary_serializer.pyc
pygen_python_f8102: python/__init__.pyo
pygen_python_f8102: python/image_source.pyo
pygen_python_f8102: python/message_to_var.pyo
pygen_python_f8102: python/tempest_msgbtn.pyo
pygen_python_f8102: python/TMDS_image_source.pyo
pygen_python_f8102: python/binary_serializer.pyo
pygen_python_f8102: python/CMakeFiles/pygen_python_f8102.dir/build.make
.PHONY : pygen_python_f8102
# Rule to build all files generated by this target.
python/CMakeFiles/pygen_python_f8102.dir/build: pygen_python_f8102
.PHONY : python/CMakeFiles/pygen_python_f8102.dir/build
python/CMakeFiles/pygen_python_f8102.dir/clean:
cd /home/emidan19/gr-tempest/build/python && $(CMAKE_COMMAND) -P CMakeFiles/pygen_python_f8102.dir/cmake_clean.cmake
.PHONY : python/CMakeFiles/pygen_python_f8102.dir/clean
python/CMakeFiles/pygen_python_f8102.dir/depend:
cd /home/emidan19/gr-tempest/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/emidan19/gr-tempest /home/emidan19/gr-tempest/python /home/emidan19/gr-tempest/build /home/emidan19/gr-tempest/build/python /home/emidan19/gr-tempest/build/python/CMakeFiles/pygen_python_f8102.dir/DependInfo.cmake --color=$(COLOR)
.PHONY : python/CMakeFiles/pygen_python_f8102.dir/depend

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