commit ba8bc27298e206e40ca908d1bbc7c36f674725d8 Author: Бычков Андрей Date: Sat Feb 28 21:28:53 2015 +0000 1 git-svn-id: svn://db.shs.com.ru/libs@1 a8b55f48-bf90-11e4-a774-851b48703e85 diff --git a/.kdev4/_custom.kdev4 b/.kdev4/_custom.kdev4 new file mode 100644 index 0000000..80afbf7 --- /dev/null +++ b/.kdev4/_custom.kdev4 @@ -0,0 +1,26 @@ +[Containments][1] +ActionPluginsSource=Global +activity=libs +activityId= +desktop=-1 +formfactor=0 +geometry=0,0,1535,683 +immutability=1 +lastDesktop=-1 +lastScreen=0 +location=0 +orientation=2 +plugin=newspaper +screen=0 +wallpaperplugin=color +wallpaperpluginmode= +zvalue=0 + +[Containments][1][Wallpaper][color] +backgroundMode=0 +color1=255,255,255 +color2=0,0,0 + +[Project] +Manager=KDevCMakeManager +Name=libs diff --git a/.kdev4/libs.kdev4 b/.kdev4/libs.kdev4 new file mode 100644 index 0000000..4e7ffa2 --- /dev/null +++ b/.kdev4/libs.kdev4 @@ -0,0 +1,28 @@ +[Buildset] +BuildItems=@Variant(\x00\x00\x00\t\x00\x00\x00\x00\x01\x00\x00\x00\x0b\x00\x00\x00\x00\x01\x00\x00\x00\x08\x00l\x00i\x00b\x00s) + +[CMake] +Build Directory Count=1 +Current Build Directory Index=0 +ProjectRootRelative=./ + +[CMake][CMake Build Directory 0] +Build Directory Path=file:///home/andrey/linux_build/libs +Build Type= +CMake Binary=file:///usr/bin/cmake +Environment Profile= +Extra Arguments= +Install Directory=file:///usr/local + +[Defines And Includes][Compiler] +Name=GCC +Path=gcc +Type=GCC + +[MakeBuilder] +Install As Root=true +Number Of Jobs=8 +Su Command=1 + +[SourceFileTemplates] +LastUsedTemplate=/home/andrey/.kde/share/apps/kdevfiletemplates/template_descriptions/cpp_basic.desktop diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..1fcd364 --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,30 @@ +cmake_minimum_required(VERSION 2.6) +project(libs) +#set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -g3) +if (${WIN32}) + find_package(MinGW REQUIRED) +endif (${WIN32}) +find_package(Qt REQUIRED) +set(LIB 1) +set(LIBPROJECT 1) +set(PIP_LIBRARY pip) +set(PIP_FOLDERS "." "code" "containers" "core" "io" "math" "system" "thread") + +foreach(F ${PIP_FOLDERS}) + set(PIP_INCLUDES ${PIP_INCLUDES} "../pip/src/${F}") +endforeach(F) +#message(STATUS "PIP includes = ${PIP_INCLUDES}") + +set(LIST_LIBS pip qad_widgets qad_utils qad_application qad_blockview qad_graphic qad_sql_table piqt mbricks kx_tools piqt_tools qglview touch_widgets) + +foreach(L ${LIST_LIBS}) + add_subdirectory(${L}) + include_directories(${L}) +endforeach(L) + +if (${WIN32}) + get_filename_component(QTDIR ${QT_QMAKE_EXECUTABLE} PATH) + install(FILES "pip/libpip.dll" DESTINATION ${QTDIR}) + install(FILES "piqt_tools/libpiqt_utils.dll" DESTINATION ${QTDIR}) + install(FILES "FindMinGW.cmake" DESTINATION ${CMAKE_ROOT}/Modules) +endif (${WIN32}) diff --git a/FindMinGW.cmake b/FindMinGW.cmake new file mode 100644 index 0000000..a34d37b --- /dev/null +++ b/FindMinGW.cmake @@ -0,0 +1,12 @@ +if (${MINGW}) +if (NOT DEFINED MINGW_DIR) + get_filename_component(MINGW_BIN ${CMAKE_C_COMPILER} PATH) + get_filename_component(MINGW_DIR ${MINGW_BIN} PATH) + find_path(MINGW_INCLUDE windows.h HINTS ${MINGW_DIR}/include) + find_library(MINGW_LIB m HINTS ${MINGW_BIN}/../lib ${MINGW_INCLUDE}/../lib) + get_filename_component(MINGW_LIB ${MINGW_LIB} PATH) + message(STATUS "Find MinGW binary path = ${MINGW_BIN}") + message(STATUS "Find MinGW include path = ${MINGW_INCLUDE}") + message(STATUS "Find MinGW library path = ${MINGW_LIB}") +endif () +endif (${MINGW}) diff --git a/_oldpip/pip_0.4.0_r5/AUTHORS.txt b/_oldpip/pip_0.4.0_r5/AUTHORS.txt new file mode 100644 index 0000000..53a973d --- /dev/null +++ b/_oldpip/pip_0.4.0_r5/AUTHORS.txt @@ -0,0 +1,2 @@ +Pelipenko Ivan (peri4) peri4ko@yandex.ru +Bychkov Andrey () work.a.b@yandex.ru diff --git a/_oldpip/pip_0.4.0_r5/CMakeCache.txt b/_oldpip/pip_0.4.0_r5/CMakeCache.txt new file mode 100644 index 0000000..4dd47aa --- /dev/null +++ b/_oldpip/pip_0.4.0_r5/CMakeCache.txt @@ -0,0 +1,1413 @@ +# This is the CMakeCache file. +# For build in directory: c:/libs/oldpip/pip_0.4.0_r5 +# It was generated by CMake: C:/Program Files (x86)/CMake 2.8/bin/cmake.exe +# You can edit this file to change values found and used by cmake. +# If you do not want to change any of the values, simply exit the editor. +# If you do want to change a value, simply edit, save, and exit the editor. +# The syntax for the file is as follows: +# KEY:TYPE=VALUE +# KEY is the name of a variable in the cache. +# TYPE is a hint to GUIs for the type of VALUE, DO NOT EDIT TYPE!. +# VALUE is the current value for the KEY. + +######################## +# EXTERNAL cache entries +######################## + +//Path to a program. +CMAKE_AR:FILEPATH=C:/mingw/x32/bin/ar.exe + +//Choose the type of build, options are: None(CMAKE_CXX_FLAGS or +// CMAKE_C_FLAGS used) 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=C:/mingw/x32/bin/g++.exe + +//Flags used by the compiler during all build types. +CMAKE_CXX_FLAGS:STRING= + +//Flags used by the compiler during debug builds. +CMAKE_CXX_FLAGS_DEBUG:STRING=-g + +//Flags used by the compiler during release minsize builds. +CMAKE_CXX_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG + +//Flags used by the compiler during release builds (/MD /Ob1 /Oi +// /Ot /Oy /Gs will produce slightly less optimized but smaller +// files). +CMAKE_CXX_FLAGS_RELEASE:STRING=-O3 -DNDEBUG + +//Flags used by the compiler during Release with Debug Info builds. +CMAKE_CXX_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG + +//Libraries linked by defalut with all C++ applications. +CMAKE_CXX_STANDARD_LIBRARIES:STRING=-lkernel32 -luser32 -lgdi32 -lwinspool -lshell32 -lole32 -loleaut32 -luuid -lcomdlg32 -ladvapi32 + +//C compiler. +CMAKE_C_COMPILER:FILEPATH=C:/mingw/x32/bin/gcc.exe + +//Flags used by the compiler during all build types. +CMAKE_C_FLAGS:STRING= + +//Flags used by the compiler during debug builds. +CMAKE_C_FLAGS_DEBUG:STRING=-g + +//Flags used by the compiler during release minsize builds. +CMAKE_C_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG + +//Flags used by the compiler during release builds (/MD /Ob1 /Oi +// /Ot /Oy /Gs will produce slightly less optimized but smaller +// files). +CMAKE_C_FLAGS_RELEASE:STRING=-O3 -DNDEBUG + +//Flags used by the compiler during Release with Debug Info builds. +CMAKE_C_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG + +//Libraries linked by defalut with all C applications. +CMAKE_C_STANDARD_LIBRARIES:STRING=-lkernel32 -luser32 -lgdi32 -lwinspool -lshell32 -lole32 -loleaut32 -luuid -lcomdlg32 -ladvapi32 + +//Flags used by the linker. +CMAKE_EXE_LINKER_FLAGS:STRING=' ' + +//Flags used by the linker during debug builds. +CMAKE_EXE_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during release minsize builds. +CMAKE_EXE_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during release builds. +CMAKE_EXE_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during Release with Debug Info builds. +CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//Convert GNU import libraries to MS format (requires Visual Studio) +CMAKE_GNUtoMS:BOOL=OFF + +//Install path prefix, prepended onto install directories. +CMAKE_INSTALL_PREFIX:PATH=C:/Program Files (x86)/pip + +//Path to a program. +CMAKE_LINKER:FILEPATH=C:/mingw/x32/bin/ld.exe + +//Path to a program. +CMAKE_MAKE_PROGRAM:FILEPATH=C:/mingw/x32/bin/mingw32-make.exe + +//Flags used by the linker during the creation of modules. +CMAKE_MODULE_LINKER_FLAGS:STRING=' ' + +//Flags used by the linker during debug builds. +CMAKE_MODULE_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during release minsize builds. +CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during release builds. +CMAKE_MODULE_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during Release with Debug Info builds. +CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//Path to a program. +CMAKE_NM:FILEPATH=C:/mingw/x32/bin/nm.exe + +//Path to a program. +CMAKE_OBJCOPY:FILEPATH=C:/mingw/x32/bin/objcopy.exe + +//Path to a program. +CMAKE_OBJDUMP:FILEPATH=C:/mingw/x32/bin/objdump.exe + +//Value Computed by CMake +CMAKE_PROJECT_NAME:STATIC=pip + +//Path to a program. +CMAKE_RANLIB:FILEPATH=C:/mingw/x32/bin/ranlib.exe + +//RC compiler. +CMAKE_RC_COMPILER:FILEPATH=C:/mingw/x32/bin/windres.exe + +//Flags for Fortran compiler. +CMAKE_RC_FLAGS:STRING=' ' + +//Path to a program. +CMAKE_SH:FILEPATH=CMAKE_SH-NOTFOUND + +//Flags used by the linker during the creation of dll's. +CMAKE_SHARED_LINKER_FLAGS:STRING=' ' + +//Flags used by the linker during debug builds. +CMAKE_SHARED_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during release minsize builds. +CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during release builds. +CMAKE_SHARED_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during Release with Debug Info builds. +CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//If set, runtime paths are not added when installing shared libraries, +// but are added when building. +CMAKE_SKIP_INSTALL_RPATH:BOOL=NO + +//If set, runtime paths are not added when using shared libraries. +CMAKE_SKIP_RPATH:BOOL=NO + +//Flags used by the linker during the creation of static libraries. +CMAKE_STATIC_LINKER_FLAGS:STRING= + +//Flags used by the linker during debug builds. +CMAKE_STATIC_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during release minsize builds. +CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during release builds. +CMAKE_STATIC_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during Release with Debug Info builds. +CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//Path to a program. +CMAKE_STRIP:FILEPATH=C:/mingw/x32/bin/strip.exe + +//If true, cmake will use relative paths in makefiles and projects. +CMAKE_USE_RELATIVE_PATHS:BOOL=OFF + +//If this value is on, makefiles will be generated without the +// .SILENT directive, and all commands will be echoed to the console +// during the make. This is useful for debugging only. With Visual +// Studio IDE projects all commands are done without /nologo. +CMAKE_VERBOSE_MAKEFILE:BOOL=FALSE + +//No help, variable specified on the command line. +LIB:UNINITIALIZED= + +//Path to a file. +MGWINCLUDE:PATH=C:/mingw/x32/i686-w64-mingw32/include + +//Path to a library. +QT_ARTHURPLUGIN_PLUGIN_DEBUG:FILEPATH=QT_ARTHURPLUGIN_PLUGIN_DEBUG-NOTFOUND + +//Path to a library. +QT_ARTHURPLUGIN_PLUGIN_RELEASE:FILEPATH=C:/Qt/4.8.6/plugins/designer/arthurplugin.dll + +//Path to a library. +QT_CONTAINEREXTENSION_PLUGIN_DEBUG:FILEPATH=C:/Qt/4.8.6/plugins/designer/containerextensiond.dll + +//Path to a library. +QT_CONTAINEREXTENSION_PLUGIN_RELEASE:FILEPATH=C:/Qt/4.8.6/plugins/designer/containerextension.dll + +//Path to a library. +QT_CUSTOMWIDGETPLUGIN_PLUGIN_DEBUG:FILEPATH=QT_CUSTOMWIDGETPLUGIN_PLUGIN_DEBUG-NOTFOUND + +//Path to a library. +QT_CUSTOMWIDGETPLUGIN_PLUGIN_RELEASE:FILEPATH=C:/Qt/4.8.6/plugins/designer/customwidgetplugin.dll + +//Path to a program. +QT_DBUSCPP2XML_EXECUTABLE:FILEPATH=C:/Qt/4.8.6/bin/qdbuscpp2xml.exe + +//Path to a program. +QT_DBUSXML2CPP_EXECUTABLE:FILEPATH=C:/Qt/4.8.6/bin/qdbusxml2cpp.exe + +//Path to a program. +QT_DESIGNER_EXECUTABLE:FILEPATH=C:/Qt/4.8.6/bin/designer.exe + +//The location of the Qt docs +QT_DOC_DIR:PATH=C:/Qt/4.8.6/doc + +//The location of the Qt imports +QT_IMPORTS_DIR:PATH=C:/Qt/4.8.6/imports + +//Path to a program. +QT_LINGUIST_EXECUTABLE:FILEPATH=C:/Qt/4.8.6/bin/linguist.exe + +//Path to a program. +QT_LRELEASE_EXECUTABLE:FILEPATH=C:/Qt/4.8.6/bin/lrelease.exe + +//Path to a program. +QT_LUPDATE_EXECUTABLE:FILEPATH=C:/Qt/4.8.6/bin/lupdate.exe + +//The location of the Qt mkspecs containing qconfig.pri +QT_MKSPECS_DIR:PATH=C:/Qt/4.8.6/mkspecs + +//Path to a program. +QT_MOC_EXECUTABLE:FILEPATH=C:/Qt/4.8.6/bin/moc.exe + +//Path to a library. +QT_PHONONWIDGETS_PLUGIN_DEBUG:FILEPATH=QT_PHONONWIDGETS_PLUGIN_DEBUG-NOTFOUND + +//Path to a library. +QT_PHONONWIDGETS_PLUGIN_RELEASE:FILEPATH=C:/Qt/4.8.6/plugins/designer/phononwidgets.dll + +//Path to a library. +QT_PHONON_DS9_PLUGIN_DEBUG:FILEPATH=C:/Qt/4.8.6/plugins/phonon_backend/phonon_ds9d4.dll + +//Path to a library. +QT_PHONON_DS9_PLUGIN_RELEASE:FILEPATH=C:/Qt/4.8.6/plugins/phonon_backend/phonon_ds94.dll + +//Path to a file. +QT_PHONON_INCLUDE_DIR:PATH=C:/Qt/4.8.6/include/phonon + +//The Qt PHONON library +QT_PHONON_LIBRARY:STRING=optimized;C:/Qt/4.8.6/lib/libphonon4.a;debug;C:/Qt/4.8.6/lib/libphonond4.a + +//Path to a library. +QT_PHONON_LIBRARY_DEBUG:FILEPATH=C:/Qt/4.8.6/lib/libphonond4.a + +//Path to a library. +QT_PHONON_LIBRARY_RELEASE:FILEPATH=C:/Qt/4.8.6/lib/libphonon4.a + +//The location of the Qt plugins +QT_PLUGINS_DIR:PATH=C:/Qt/4.8.6/plugins + +//Path to a file. +QT_QAXCONTAINER_INCLUDE_DIR:PATH=C:/Qt/4.8.6/include/ActiveQt + +//The Qt QAXCONTAINER library +QT_QAXCONTAINER_LIBRARY:STRING=optimized;C:/Qt/4.8.6/lib/libQAxContainer.a;debug;C:/Qt/4.8.6/lib/libQAxContainerd.a + +//Path to a library. +QT_QAXCONTAINER_LIBRARY_DEBUG:FILEPATH=C:/Qt/4.8.6/lib/libQAxContainerd.a + +//Path to a library. +QT_QAXCONTAINER_LIBRARY_RELEASE:FILEPATH=C:/Qt/4.8.6/lib/libQAxContainer.a + +//Path to a file. +QT_QAXSERVER_INCLUDE_DIR:PATH=C:/Qt/4.8.6/include/ActiveQt + +//The Qt QAXSERVER library +QT_QAXSERVER_LIBRARY:STRING=optimized;C:/Qt/4.8.6/lib/libQAxServer.a;debug;C:/Qt/4.8.6/lib/libQAxServerd.a + +//Path to a library. +QT_QAXSERVER_LIBRARY_DEBUG:FILEPATH=C:/Qt/4.8.6/lib/libQAxServerd.a + +//Path to a library. +QT_QAXSERVER_LIBRARY_RELEASE:FILEPATH=C:/Qt/4.8.6/lib/libQAxServer.a + +//Path to a library. +QT_QCNCODECS_PLUGIN_DEBUG:FILEPATH=C:/Qt/4.8.6/plugins/codecs/qcncodecsd4.dll + +//Path to a library. +QT_QCNCODECS_PLUGIN_RELEASE:FILEPATH=C:/Qt/4.8.6/plugins/codecs/qcncodecs4.dll + +//Path to a program. +QT_QCOLLECTIONGENERATOR_EXECUTABLE:FILEPATH=C:/Qt/4.8.6/bin/qcollectiongenerator.exe + +//Path to a library. +QT_QCOREWLANBEARER_PLUGIN_DEBUG:FILEPATH=QT_QCOREWLANBEARER_PLUGIN_DEBUG-NOTFOUND + +//Path to a library. +QT_QCOREWLANBEARER_PLUGIN_RELEASE:FILEPATH=QT_QCOREWLANBEARER_PLUGIN_RELEASE-NOTFOUND + +//Path to a library. +QT_QDECLARATIVEVIEW_PLUGIN_DEBUG:FILEPATH=QT_QDECLARATIVEVIEW_PLUGIN_DEBUG-NOTFOUND + +//Path to a library. +QT_QDECLARATIVEVIEW_PLUGIN_RELEASE:FILEPATH=C:/Qt/4.8.6/plugins/designer/qdeclarativeview.dll + +//Path to a library. +QT_QDECORATIONDEFAULT_PLUGIN_DEBUG:FILEPATH=QT_QDECORATIONDEFAULT_PLUGIN_DEBUG-NOTFOUND + +//Path to a library. +QT_QDECORATIONDEFAULT_PLUGIN_RELEASE:FILEPATH=QT_QDECORATIONDEFAULT_PLUGIN_RELEASE-NOTFOUND + +//Path to a library. +QT_QDECORATIONWINDOWS_PLUGIN_DEBUG:FILEPATH=QT_QDECORATIONWINDOWS_PLUGIN_DEBUG-NOTFOUND + +//Path to a library. +QT_QDECORATIONWINDOWS_PLUGIN_RELEASE:FILEPATH=QT_QDECORATIONWINDOWS_PLUGIN_RELEASE-NOTFOUND + +//Path to a library. +QT_QGENERICBEARER_PLUGIN_DEBUG:FILEPATH=C:/Qt/4.8.6/plugins/bearer/qgenericbearerd4.dll + +//Path to a library. +QT_QGENERICBEARER_PLUGIN_RELEASE:FILEPATH=C:/Qt/4.8.6/plugins/bearer/qgenericbearer4.dll + +//Path to a library. +QT_QGIF_PLUGIN_DEBUG:FILEPATH=C:/Qt/4.8.6/plugins/imageformats/qgifd4.dll + +//Path to a library. +QT_QGIF_PLUGIN_RELEASE:FILEPATH=C:/Qt/4.8.6/plugins/imageformats/qgif4.dll + +//Path to a library. +QT_QGLGRAPHICSSYSTEM_PLUGIN_DEBUG:FILEPATH=C:/Qt/4.8.6/plugins/graphicssystems/qglgraphicssystemd4.dll + +//Path to a library. +QT_QGLGRAPHICSSYSTEM_PLUGIN_RELEASE:FILEPATH=C:/Qt/4.8.6/plugins/graphicssystems/qglgraphicssystem4.dll + +//Path to a library. +QT_QICO_PLUGIN_DEBUG:FILEPATH=C:/Qt/4.8.6/plugins/imageformats/qicod4.dll + +//Path to a library. +QT_QICO_PLUGIN_RELEASE:FILEPATH=C:/Qt/4.8.6/plugins/imageformats/qico4.dll + +//Path to a library. +QT_QIMSW_MULTI_PLUGIN_DEBUG:FILEPATH=QT_QIMSW_MULTI_PLUGIN_DEBUG-NOTFOUND + +//Path to a library. +QT_QIMSW_MULTI_PLUGIN_RELEASE:FILEPATH=QT_QIMSW_MULTI_PLUGIN_RELEASE-NOTFOUND + +//Path to a library. +QT_QJPCODECS_PLUGIN_DEBUG:FILEPATH=C:/Qt/4.8.6/plugins/codecs/qjpcodecsd4.dll + +//Path to a library. +QT_QJPCODECS_PLUGIN_RELEASE:FILEPATH=C:/Qt/4.8.6/plugins/codecs/qjpcodecs4.dll + +//Path to a library. +QT_QJPEG_PLUGIN_DEBUG:FILEPATH=C:/Qt/4.8.6/plugins/imageformats/qjpegd4.dll + +//Path to a library. +QT_QJPEG_PLUGIN_RELEASE:FILEPATH=C:/Qt/4.8.6/plugins/imageformats/qjpeg4.dll + +//Path to a library. +QT_QKRCODECS_PLUGIN_DEBUG:FILEPATH=C:/Qt/4.8.6/plugins/codecs/qkrcodecsd4.dll + +//Path to a library. +QT_QKRCODECS_PLUGIN_RELEASE:FILEPATH=C:/Qt/4.8.6/plugins/codecs/qkrcodecs4.dll + +//The qmake executable for the Qt installation to use +QT_QMAKE_EXECUTABLE:FILEPATH=C:/Qt/4.8.6/bin/qmake.exe + +//Path to a library. +QT_QMNG_PLUGIN_DEBUG:FILEPATH=C:/Qt/4.8.6/plugins/imageformats/qmngd4.dll + +//Path to a library. +QT_QMNG_PLUGIN_RELEASE:FILEPATH=C:/Qt/4.8.6/plugins/imageformats/qmng4.dll + +//Path to a library. +QT_QSQLDB2_PLUGIN_DEBUG:FILEPATH=QT_QSQLDB2_PLUGIN_DEBUG-NOTFOUND + +//Path to a library. +QT_QSQLDB2_PLUGIN_RELEASE:FILEPATH=QT_QSQLDB2_PLUGIN_RELEASE-NOTFOUND + +//Path to a library. +QT_QSQLIBASE_PLUGIN_DEBUG:FILEPATH=QT_QSQLIBASE_PLUGIN_DEBUG-NOTFOUND + +//Path to a library. +QT_QSQLIBASE_PLUGIN_RELEASE:FILEPATH=QT_QSQLIBASE_PLUGIN_RELEASE-NOTFOUND + +//Path to a library. +QT_QSQLITE2_PLUGIN_DEBUG:FILEPATH=QT_QSQLITE2_PLUGIN_DEBUG-NOTFOUND + +//Path to a library. +QT_QSQLITE2_PLUGIN_RELEASE:FILEPATH=QT_QSQLITE2_PLUGIN_RELEASE-NOTFOUND + +//Path to a library. +QT_QSQLITE_PLUGIN_DEBUG:FILEPATH=C:/Qt/4.8.6/plugins/sqldrivers/qsqlited4.dll + +//Path to a library. +QT_QSQLITE_PLUGIN_RELEASE:FILEPATH=C:/Qt/4.8.6/plugins/sqldrivers/qsqlite4.dll + +//Path to a library. +QT_QSQLMYSQL_PLUGIN_DEBUG:FILEPATH=QT_QSQLMYSQL_PLUGIN_DEBUG-NOTFOUND + +//Path to a library. +QT_QSQLMYSQL_PLUGIN_RELEASE:FILEPATH=QT_QSQLMYSQL_PLUGIN_RELEASE-NOTFOUND + +//Path to a library. +QT_QSQLOCI_PLUGIN_DEBUG:FILEPATH=QT_QSQLOCI_PLUGIN_DEBUG-NOTFOUND + +//Path to a library. +QT_QSQLOCI_PLUGIN_RELEASE:FILEPATH=QT_QSQLOCI_PLUGIN_RELEASE-NOTFOUND + +//Path to a library. +QT_QSQLODBC_PLUGIN_DEBUG:FILEPATH=C:/Qt/4.8.6/plugins/sqldrivers/qsqlodbcd4.dll + +//Path to a library. +QT_QSQLODBC_PLUGIN_RELEASE:FILEPATH=C:/Qt/4.8.6/plugins/sqldrivers/qsqlodbc4.dll + +//Path to a library. +QT_QSQLPSQL_PLUGIN_DEBUG:FILEPATH=QT_QSQLPSQL_PLUGIN_DEBUG-NOTFOUND + +//Path to a library. +QT_QSQLPSQL_PLUGIN_RELEASE:FILEPATH=QT_QSQLPSQL_PLUGIN_RELEASE-NOTFOUND + +//Path to a library. +QT_QSQLTDS_PLUGIN_DEBUG:FILEPATH=QT_QSQLTDS_PLUGIN_DEBUG-NOTFOUND + +//Path to a library. +QT_QSQLTDS_PLUGIN_RELEASE:FILEPATH=QT_QSQLTDS_PLUGIN_RELEASE-NOTFOUND + +//Path to a library. +QT_QSVGICON_PLUGIN_DEBUG:FILEPATH=C:/Qt/4.8.6/plugins/iconengines/qsvgicond4.dll + +//Path to a library. +QT_QSVGICON_PLUGIN_RELEASE:FILEPATH=C:/Qt/4.8.6/plugins/iconengines/qsvgicon4.dll + +//Path to a library. +QT_QSVG_PLUGIN_DEBUG:FILEPATH=C:/Qt/4.8.6/plugins/imageformats/qsvgd4.dll + +//Path to a library. +QT_QSVG_PLUGIN_RELEASE:FILEPATH=C:/Qt/4.8.6/plugins/imageformats/qsvg4.dll + +//Path to a library. +QT_QT3SUPPORTWIDGETS_PLUGIN_DEBUG:FILEPATH=QT_QT3SUPPORTWIDGETS_PLUGIN_DEBUG-NOTFOUND + +//Path to a library. +QT_QT3SUPPORTWIDGETS_PLUGIN_RELEASE:FILEPATH=C:/Qt/4.8.6/plugins/designer/qt3supportwidgets.dll + +//Path to a file. +QT_QT3SUPPORT_INCLUDE_DIR:PATH=C:/Qt/4.8.6/include/Qt3Support + +//The Qt QT3SUPPORT library +QT_QT3SUPPORT_LIBRARY:STRING=optimized;C:/Qt/4.8.6/lib/libQt3Support4.a;debug;C:/Qt/4.8.6/lib/libQt3Supportd4.a + +//Path to a library. +QT_QT3SUPPORT_LIBRARY_DEBUG:FILEPATH=C:/Qt/4.8.6/lib/libQt3Supportd4.a + +//Path to a library. +QT_QT3SUPPORT_LIBRARY_RELEASE:FILEPATH=C:/Qt/4.8.6/lib/libQt3Support4.a + +//Path to a library. +QT_QTACCESSIBLECOMPATWIDGETS_PLUGIN_DEBUG:FILEPATH=C:/Qt/4.8.6/plugins/accessible/qtaccessiblecompatwidgetsd4.dll + +//Path to a library. +QT_QTACCESSIBLECOMPATWIDGETS_PLUGIN_RELEASE:FILEPATH=C:/Qt/4.8.6/plugins/accessible/qtaccessiblecompatwidgets4.dll + +//Path to a library. +QT_QTACCESSIBLEWIDGETS_PLUGIN_DEBUG:FILEPATH=C:/Qt/4.8.6/plugins/accessible/qtaccessiblewidgetsd4.dll + +//Path to a library. +QT_QTACCESSIBLEWIDGETS_PLUGIN_RELEASE:FILEPATH=C:/Qt/4.8.6/plugins/accessible/qtaccessiblewidgets4.dll + +//Path to a file. +QT_QTASSISTANTCLIENT_INCLUDE_DIR:PATH=QT_QTASSISTANTCLIENT_INCLUDE_DIR-NOTFOUND + +//The Qt QTASSISTANTCLIENT library +QT_QTASSISTANTCLIENT_LIBRARY:STRING= + +//Path to a library. +QT_QTASSISTANTCLIENT_LIBRARY_DEBUG:FILEPATH=QT_QTASSISTANTCLIENT_LIBRARY_DEBUG-NOTFOUND + +//Path to a library. +QT_QTASSISTANTCLIENT_LIBRARY_RELEASE:FILEPATH=QT_QTASSISTANTCLIENT_LIBRARY_RELEASE-NOTFOUND + +//Path to a file. +QT_QTASSISTANT_INCLUDE_DIR:PATH=QT_QTASSISTANT_INCLUDE_DIR-NOTFOUND + +//The Qt QTASSISTANT library +QT_QTASSISTANT_LIBRARY:STRING= + +//Path to a library. +QT_QTASSISTANT_LIBRARY_DEBUG:FILEPATH=QT_QTASSISTANT_LIBRARY_DEBUG-NOTFOUND + +//Path to a library. +QT_QTASSISTANT_LIBRARY_RELEASE:FILEPATH=QT_QTASSISTANT_LIBRARY_RELEASE-NOTFOUND + +//The Qt QTCLUCENE library +QT_QTCLUCENE_LIBRARY:STRING=optimized;C:/Qt/4.8.6/lib/libQtCLucene4.a;debug;C:/Qt/4.8.6/lib/libQtCLucened4.a + +//Path to a library. +QT_QTCLUCENE_LIBRARY_DEBUG:FILEPATH=C:/Qt/4.8.6/lib/libQtCLucened4.a + +//Path to a library. +QT_QTCLUCENE_LIBRARY_RELEASE:FILEPATH=C:/Qt/4.8.6/lib/libQtCLucene4.a + +//Path to a file. +QT_QTCORE_INCLUDE_DIR:PATH=C:/Qt/4.8.6/include/QtCore + +//The Qt QTCORE library +QT_QTCORE_LIBRARY:STRING=optimized;C:/Qt/4.8.6/lib/libQtCore4.a;debug;C:/Qt/4.8.6/lib/libQtCored4.a + +//Path to a library. +QT_QTCORE_LIBRARY_DEBUG:FILEPATH=C:/Qt/4.8.6/lib/libQtCored4.a + +//Path to a library. +QT_QTCORE_LIBRARY_RELEASE:FILEPATH=C:/Qt/4.8.6/lib/libQtCore4.a + +//Path to a file. +QT_QTDBUS_INCLUDE_DIR:PATH=C:/Qt/4.8.6/include/QtDBus + +//The Qt QTDBUS library +QT_QTDBUS_LIBRARY:STRING=optimized;C:/Qt/4.8.6/lib/libQtDBus4.a;debug;C:/Qt/4.8.6/lib/libQtDBusd4.a + +//Path to a library. +QT_QTDBUS_LIBRARY_DEBUG:FILEPATH=C:/Qt/4.8.6/lib/libQtDBusd4.a + +//Path to a library. +QT_QTDBUS_LIBRARY_RELEASE:FILEPATH=C:/Qt/4.8.6/lib/libQtDBus4.a + +//Path to a file. +QT_QTDECLARATIVE_INCLUDE_DIR:PATH=C:/Qt/4.8.6/include/QtDeclarative + +//The Qt QTDECLARATIVE library +QT_QTDECLARATIVE_LIBRARY:STRING=optimized;C:/Qt/4.8.6/lib/libQtDeclarative4.a;debug;C:/Qt/4.8.6/lib/libQtDeclaratived4.a + +//Path to a library. +QT_QTDECLARATIVE_LIBRARY_DEBUG:FILEPATH=C:/Qt/4.8.6/lib/libQtDeclaratived4.a + +//Path to a library. +QT_QTDECLARATIVE_LIBRARY_RELEASE:FILEPATH=C:/Qt/4.8.6/lib/libQtDeclarative4.a + +//Path to a file. +QT_QTDESIGNERCOMPONENTS_INCLUDE_DIR:PATH=C:/Qt/4.8.6/include/QtDesigner + +//The Qt QTDESIGNERCOMPONENTS library +QT_QTDESIGNERCOMPONENTS_LIBRARY:STRING=optimized;C:/Qt/4.8.6/lib/libQtDesignerComponents4.a;debug;C:/Qt/4.8.6/lib/libQtDesignerComponentsd4.a + +//Path to a library. +QT_QTDESIGNERCOMPONENTS_LIBRARY_DEBUG:FILEPATH=C:/Qt/4.8.6/lib/libQtDesignerComponentsd4.a + +//Path to a library. +QT_QTDESIGNERCOMPONENTS_LIBRARY_RELEASE:FILEPATH=C:/Qt/4.8.6/lib/libQtDesignerComponents4.a + +//Path to a file. +QT_QTDESIGNER_INCLUDE_DIR:PATH=C:/Qt/4.8.6/include/QtDesigner + +//The Qt QTDESIGNER library +QT_QTDESIGNER_LIBRARY:STRING=optimized;C:/Qt/4.8.6/lib/libQtDesigner4.a;debug;C:/Qt/4.8.6/lib/libQtDesignerd4.a + +//Path to a library. +QT_QTDESIGNER_LIBRARY_DEBUG:FILEPATH=C:/Qt/4.8.6/lib/libQtDesignerd4.a + +//Path to a library. +QT_QTDESIGNER_LIBRARY_RELEASE:FILEPATH=C:/Qt/4.8.6/lib/libQtDesigner4.a + +//Path to a file. +QT_QTGUI_INCLUDE_DIR:PATH=C:/Qt/4.8.6/include/QtGui + +//The Qt QTGUI library +QT_QTGUI_LIBRARY:STRING=optimized;C:/Qt/4.8.6/lib/libQtGui4.a;debug;C:/Qt/4.8.6/lib/libQtGuid4.a + +//Path to a library. +QT_QTGUI_LIBRARY_DEBUG:FILEPATH=C:/Qt/4.8.6/lib/libQtGuid4.a + +//Path to a library. +QT_QTGUI_LIBRARY_RELEASE:FILEPATH=C:/Qt/4.8.6/lib/libQtGui4.a + +//Path to a file. +QT_QTHELP_INCLUDE_DIR:PATH=C:/Qt/4.8.6/include/QtHelp + +//The Qt QTHELP library +QT_QTHELP_LIBRARY:STRING=optimized;C:/Qt/4.8.6/lib/libQtHelp4.a;debug;C:/Qt/4.8.6/lib/libQtHelpd4.a + +//Path to a library. +QT_QTHELP_LIBRARY_DEBUG:FILEPATH=C:/Qt/4.8.6/lib/libQtHelpd4.a + +//Path to a library. +QT_QTHELP_LIBRARY_RELEASE:FILEPATH=C:/Qt/4.8.6/lib/libQtHelp4.a + +//Path to a library. +QT_QTIFF_PLUGIN_DEBUG:FILEPATH=C:/Qt/4.8.6/plugins/imageformats/qtiffd4.dll + +//Path to a library. +QT_QTIFF_PLUGIN_RELEASE:FILEPATH=C:/Qt/4.8.6/plugins/imageformats/qtiff4.dll + +//The Qt QTMAIN library +QT_QTMAIN_LIBRARY:STRING=optimized;C:/Qt/4.8.6/lib/libqtmain.a;debug;C:/Qt/4.8.6/lib/libqtmaind.a + +//Path to a library. +QT_QTMAIN_LIBRARY_DEBUG:FILEPATH=C:/Qt/4.8.6/lib/libqtmaind.a + +//Path to a library. +QT_QTMAIN_LIBRARY_RELEASE:FILEPATH=C:/Qt/4.8.6/lib/libqtmain.a + +//Path to a file. +QT_QTMULTIMEDIA_INCLUDE_DIR:PATH=C:/Qt/4.8.6/include/QtMultimedia + +//The Qt QTMULTIMEDIA library +QT_QTMULTIMEDIA_LIBRARY:STRING=optimized;C:/Qt/4.8.6/lib/libQtMultimedia4.a;debug;C:/Qt/4.8.6/lib/libQtMultimediad4.a + +//Path to a library. +QT_QTMULTIMEDIA_LIBRARY_DEBUG:FILEPATH=C:/Qt/4.8.6/lib/libQtMultimediad4.a + +//Path to a library. +QT_QTMULTIMEDIA_LIBRARY_RELEASE:FILEPATH=C:/Qt/4.8.6/lib/libQtMultimedia4.a + +//Path to a file. +QT_QTNETWORK_INCLUDE_DIR:PATH=C:/Qt/4.8.6/include/QtNetwork + +//The Qt QTNETWORK library +QT_QTNETWORK_LIBRARY:STRING=optimized;C:/Qt/4.8.6/lib/libQtNetwork4.a;debug;C:/Qt/4.8.6/lib/libQtNetworkd4.a + +//Path to a library. +QT_QTNETWORK_LIBRARY_DEBUG:FILEPATH=C:/Qt/4.8.6/lib/libQtNetworkd4.a + +//Path to a library. +QT_QTNETWORK_LIBRARY_RELEASE:FILEPATH=C:/Qt/4.8.6/lib/libQtNetwork4.a + +//Path to a file. +QT_QTNSPLUGIN_INCLUDE_DIR:PATH=QT_QTNSPLUGIN_INCLUDE_DIR-NOTFOUND + +//The Qt QTNSPLUGIN library +QT_QTNSPLUGIN_LIBRARY:STRING= + +//Path to a library. +QT_QTNSPLUGIN_LIBRARY_DEBUG:FILEPATH=QT_QTNSPLUGIN_LIBRARY_DEBUG-NOTFOUND + +//Path to a library. +QT_QTNSPLUGIN_LIBRARY_RELEASE:FILEPATH=QT_QTNSPLUGIN_LIBRARY_RELEASE-NOTFOUND + +//Path to a file. +QT_QTOPENGL_INCLUDE_DIR:PATH=C:/Qt/4.8.6/include/QtOpenGL + +//The Qt QTOPENGL library +QT_QTOPENGL_LIBRARY:STRING=optimized;C:/Qt/4.8.6/lib/libQtOpenGL4.a;debug;C:/Qt/4.8.6/lib/libQtOpenGLd4.a + +//Path to a library. +QT_QTOPENGL_LIBRARY_DEBUG:FILEPATH=C:/Qt/4.8.6/lib/libQtOpenGLd4.a + +//Path to a library. +QT_QTOPENGL_LIBRARY_RELEASE:FILEPATH=C:/Qt/4.8.6/lib/libQtOpenGL4.a + +//Path to a library. +QT_QTRACEGRAPHICSSYSTEM_PLUGIN_DEBUG:FILEPATH=C:/Qt/4.8.6/plugins/graphicssystems/qtracegraphicssystemd4.dll + +//Path to a library. +QT_QTRACEGRAPHICSSYSTEM_PLUGIN_RELEASE:FILEPATH=C:/Qt/4.8.6/plugins/graphicssystems/qtracegraphicssystem4.dll + +//Path to a library. +QT_QTSCRIPTDBUS_PLUGIN_DEBUG:FILEPATH=C:/Qt/4.8.6/plugins/script/qtscriptdbusd4.dll + +//Path to a library. +QT_QTSCRIPTDBUS_PLUGIN_RELEASE:FILEPATH=C:/Qt/4.8.6/plugins/script/qtscriptdbus4.dll + +//Path to a file. +QT_QTSCRIPTTOOLS_INCLUDE_DIR:PATH=C:/Qt/4.8.6/include/QtScriptTools + +//The Qt QTSCRIPTTOOLS library +QT_QTSCRIPTTOOLS_LIBRARY:STRING=optimized;C:/Qt/4.8.6/lib/libQtScriptTools4.a;debug;C:/Qt/4.8.6/lib/libQtScriptToolsd4.a + +//Path to a library. +QT_QTSCRIPTTOOLS_LIBRARY_DEBUG:FILEPATH=C:/Qt/4.8.6/lib/libQtScriptToolsd4.a + +//Path to a library. +QT_QTSCRIPTTOOLS_LIBRARY_RELEASE:FILEPATH=C:/Qt/4.8.6/lib/libQtScriptTools4.a + +//Path to a file. +QT_QTSCRIPT_INCLUDE_DIR:PATH=C:/Qt/4.8.6/include/QtScript + +//The Qt QTSCRIPT library +QT_QTSCRIPT_LIBRARY:STRING=optimized;C:/Qt/4.8.6/lib/libQtScript4.a;debug;C:/Qt/4.8.6/lib/libQtScriptd4.a + +//Path to a library. +QT_QTSCRIPT_LIBRARY_DEBUG:FILEPATH=C:/Qt/4.8.6/lib/libQtScriptd4.a + +//Path to a library. +QT_QTSCRIPT_LIBRARY_RELEASE:FILEPATH=C:/Qt/4.8.6/lib/libQtScript4.a + +//Path to a file. +QT_QTSQL_INCLUDE_DIR:PATH=C:/Qt/4.8.6/include/QtSql + +//The Qt QTSQL library +QT_QTSQL_LIBRARY:STRING=optimized;C:/Qt/4.8.6/lib/libQtSql4.a;debug;C:/Qt/4.8.6/lib/libQtSqld4.a + +//Path to a library. +QT_QTSQL_LIBRARY_DEBUG:FILEPATH=C:/Qt/4.8.6/lib/libQtSqld4.a + +//Path to a library. +QT_QTSQL_LIBRARY_RELEASE:FILEPATH=C:/Qt/4.8.6/lib/libQtSql4.a + +//Path to a file. +QT_QTSVG_INCLUDE_DIR:PATH=C:/Qt/4.8.6/include/QtSvg + +//The Qt QTSVG library +QT_QTSVG_LIBRARY:STRING=optimized;C:/Qt/4.8.6/lib/libQtSvg4.a;debug;C:/Qt/4.8.6/lib/libQtSvgd4.a + +//Path to a library. +QT_QTSVG_LIBRARY_DEBUG:FILEPATH=C:/Qt/4.8.6/lib/libQtSvgd4.a + +//Path to a library. +QT_QTSVG_LIBRARY_RELEASE:FILEPATH=C:/Qt/4.8.6/lib/libQtSvg4.a + +//Path to a file. +QT_QTTEST_INCLUDE_DIR:PATH=C:/Qt/4.8.6/include/QtTest + +//The Qt QTTEST library +QT_QTTEST_LIBRARY:STRING=optimized;C:/Qt/4.8.6/lib/libQtTest4.a;debug;C:/Qt/4.8.6/lib/libQtTestd4.a + +//Path to a library. +QT_QTTEST_LIBRARY_DEBUG:FILEPATH=C:/Qt/4.8.6/lib/libQtTestd4.a + +//Path to a library. +QT_QTTEST_LIBRARY_RELEASE:FILEPATH=C:/Qt/4.8.6/lib/libQtTest4.a + +//Path to a file. +QT_QTUITOOLS_INCLUDE_DIR:PATH=C:/Qt/4.8.6/include/QtUiTools + +//The Qt QTUITOOLS library +QT_QTUITOOLS_LIBRARY:STRING=optimized;C:/Qt/4.8.6/lib/libQtUiTools.a;debug;C:/Qt/4.8.6/lib/libQtUiToolsd.a + +//Path to a library. +QT_QTUITOOLS_LIBRARY_DEBUG:FILEPATH=C:/Qt/4.8.6/lib/libQtUiToolsd.a + +//Path to a library. +QT_QTUITOOLS_LIBRARY_RELEASE:FILEPATH=C:/Qt/4.8.6/lib/libQtUiTools.a + +//Path to a library. +QT_QTWCODECS_PLUGIN_DEBUG:FILEPATH=C:/Qt/4.8.6/plugins/codecs/qtwcodecsd4.dll + +//Path to a library. +QT_QTWCODECS_PLUGIN_RELEASE:FILEPATH=C:/Qt/4.8.6/plugins/codecs/qtwcodecs4.dll + +//Path to a file. +QT_QTWEBKIT_INCLUDE_DIR:PATH=C:/Qt/4.8.6/include/QtWebKit + +//The Qt QTWEBKIT library +QT_QTWEBKIT_LIBRARY:STRING=optimized;C:/Qt/4.8.6/lib/libQtWebKit4.a;debug;C:/Qt/4.8.6/lib/libQtWebKitd4.a + +//Path to a library. +QT_QTWEBKIT_LIBRARY_DEBUG:FILEPATH=C:/Qt/4.8.6/lib/libQtWebKitd4.a + +//Path to a library. +QT_QTWEBKIT_LIBRARY_RELEASE:FILEPATH=C:/Qt/4.8.6/lib/libQtWebKit4.a + +//Path to a file. +QT_QTXMLPATTERNS_INCLUDE_DIR:PATH=C:/Qt/4.8.6/include/QtXmlPatterns + +//The Qt QTXMLPATTERNS library +QT_QTXMLPATTERNS_LIBRARY:STRING=optimized;C:/Qt/4.8.6/lib/libQtXmlPatterns4.a;debug;C:/Qt/4.8.6/lib/libQtXmlPatternsd4.a + +//Path to a library. +QT_QTXMLPATTERNS_LIBRARY_DEBUG:FILEPATH=C:/Qt/4.8.6/lib/libQtXmlPatternsd4.a + +//Path to a library. +QT_QTXMLPATTERNS_LIBRARY_RELEASE:FILEPATH=C:/Qt/4.8.6/lib/libQtXmlPatterns4.a + +//Path to a file. +QT_QTXML_INCLUDE_DIR:PATH=C:/Qt/4.8.6/include/QtXml + +//The Qt QTXML library +QT_QTXML_LIBRARY:STRING=optimized;C:/Qt/4.8.6/lib/libQtXml4.a;debug;C:/Qt/4.8.6/lib/libQtXmld4.a + +//Path to a library. +QT_QTXML_LIBRARY_DEBUG:FILEPATH=C:/Qt/4.8.6/lib/libQtXmld4.a + +//Path to a library. +QT_QTXML_LIBRARY_RELEASE:FILEPATH=C:/Qt/4.8.6/lib/libQtXml4.a + +//Path to a library. +QT_QWEBVIEW_PLUGIN_DEBUG:FILEPATH=QT_QWEBVIEW_PLUGIN_DEBUG-NOTFOUND + +//Path to a library. +QT_QWEBVIEW_PLUGIN_RELEASE:FILEPATH=C:/Qt/4.8.6/plugins/designer/qwebview.dll + +//Path to a library. +QT_QWSTSLIBMOUSEHANDLER_PLUGIN_DEBUG:FILEPATH=QT_QWSTSLIBMOUSEHANDLER_PLUGIN_DEBUG-NOTFOUND + +//Path to a library. +QT_QWSTSLIBMOUSEHANDLER_PLUGIN_RELEASE:FILEPATH=QT_QWSTSLIBMOUSEHANDLER_PLUGIN_RELEASE-NOTFOUND + +//Path to a program. +QT_RCC_EXECUTABLE:FILEPATH=C:/Qt/4.8.6/bin/rcc.exe + +//Path to a library. +QT_TASKMENUEXTENSION_PLUGIN_DEBUG:FILEPATH=C:/Qt/4.8.6/plugins/designer/taskmenuextensiond.dll + +//Path to a library. +QT_TASKMENUEXTENSION_PLUGIN_RELEASE:FILEPATH=C:/Qt/4.8.6/plugins/designer/taskmenuextension.dll + +//The location of the Qt translations +QT_TRANSLATIONS_DIR:PATH=C:/Qt/4.8.6/translations + +//Path to a program. +QT_UIC3_EXECUTABLE:FILEPATH=C:/Qt/4.8.6/bin/uic3.exe + +//Path to a program. +QT_UIC_EXECUTABLE:FILEPATH=C:/Qt/4.8.6/bin/uic.exe + +//Path to a library. +QT_WORLDTIMECLOCKPLUGIN_PLUGIN_DEBUG:FILEPATH=QT_WORLDTIMECLOCKPLUGIN_PLUGIN_DEBUG-NOTFOUND + +//Path to a library. +QT_WORLDTIMECLOCKPLUGIN_PLUGIN_RELEASE:FILEPATH=C:/Qt/4.8.6/plugins/designer/worldtimeclockplugin.dll + +//Value Computed by CMake +pip_BINARY_DIR:STATIC=C:/libs/oldpip/pip_0.4.0_r5 + +//Dependencies for the target +pip_LIB_DEPENDS:STATIC=general;ws2_32;general;Iphlpapi; + +//Value Computed by CMake +pip_SOURCE_DIR:STATIC=C:/libs/oldpip/pip_0.4.0_r5 + + +######################## +# INTERNAL cache entries +######################## + +//ADVANCED property for variable: CMAKE_AR +CMAKE_AR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_BUILD_TOOL +CMAKE_BUILD_TOOL-ADVANCED:INTERNAL=1 +//What is the target build tool cmake is generating for. +CMAKE_BUILD_TOOL:INTERNAL=C:/mingw/x32/bin/mingw32-make.exe +//This is the directory where this CMakeCache.txt was created +CMAKE_CACHEFILE_DIR:INTERNAL=c:/libs/oldpip/pip_0.4.0_r5 +//Major version of cmake used to create the current loaded cache +CMAKE_CACHE_MAJOR_VERSION:INTERNAL=2 +//Minor version of cmake used to create the current loaded cache +CMAKE_CACHE_MINOR_VERSION:INTERNAL=8 +//Patch version of cmake used to create the current loaded cache +CMAKE_CACHE_PATCH_VERSION:INTERNAL=12 +//ADVANCED property for variable: CMAKE_COLOR_MAKEFILE +CMAKE_COLOR_MAKEFILE-ADVANCED:INTERNAL=1 +//Path to CMake executable. +CMAKE_COMMAND:INTERNAL=C:/Program Files (x86)/CMake 2.8/bin/cmake.exe +//Path to cpack program executable. +CMAKE_CPACK_COMMAND:INTERNAL=C:/Program Files (x86)/CMake 2.8/bin/cpack.exe +//Path to ctest program executable. +CMAKE_CTEST_COMMAND:INTERNAL=C:/Program Files (x86)/CMake 2.8/bin/ctest.exe +//ADVANCED property for variable: CMAKE_CXX_COMPILER +CMAKE_CXX_COMPILER-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS +CMAKE_CXX_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_DEBUG +CMAKE_CXX_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_MINSIZEREL +CMAKE_CXX_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELEASE +CMAKE_CXX_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELWITHDEBINFO +CMAKE_CXX_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_STANDARD_LIBRARIES +CMAKE_CXX_STANDARD_LIBRARIES-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_COMPILER +CMAKE_C_COMPILER-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS +CMAKE_C_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS_DEBUG +CMAKE_C_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS_MINSIZEREL +CMAKE_C_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS_RELEASE +CMAKE_C_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS_RELWITHDEBINFO +CMAKE_C_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_STANDARD_LIBRARIES +CMAKE_C_STANDARD_LIBRARIES-ADVANCED:INTERNAL=1 +//Path to cache edit program executable. +CMAKE_EDIT_COMMAND:INTERNAL=C:/Program Files (x86)/CMake 2.8/bin/cmake-gui.exe +//Executable file format +CMAKE_EXECUTABLE_FORMAT:INTERNAL=Unknown +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS +CMAKE_EXE_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_DEBUG +CMAKE_EXE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_MINSIZEREL +CMAKE_EXE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELEASE +CMAKE_EXE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//Name of generator. +CMAKE_GENERATOR:INTERNAL=MinGW Makefiles +//Name of generator toolset. +CMAKE_GENERATOR_TOOLSET:INTERNAL= +//Start directory with the top level CMakeLists.txt file for this +// project +CMAKE_HOME_DIRECTORY:INTERNAL=C:/libs/oldpip/pip_0.4.0_r5 +//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_LOCAL_GENERATORS:INTERNAL=4 +//ADVANCED property for variable: CMAKE_OBJCOPY +CMAKE_OBJCOPY-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_OBJDUMP +CMAKE_OBJDUMP-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_RANLIB +CMAKE_RANLIB-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_RC_COMPILER +CMAKE_RC_COMPILER-ADVANCED:INTERNAL=1 +CMAKE_RC_COMPILER_WORKS:INTERNAL=1 +//ADVANCED property for variable: CMAKE_RC_FLAGS +CMAKE_RC_FLAGS-ADVANCED:INTERNAL=1 +//Path to CMake installation. +CMAKE_ROOT:INTERNAL=C:/Program Files (x86)/CMake 2.8/share/cmake-2.8 +//ADVANCED property for variable: CMAKE_SH +CMAKE_SH-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS +CMAKE_SHARED_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_DEBUG +CMAKE_SHARED_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL +CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELEASE +CMAKE_SHARED_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SKIP_INSTALL_RPATH +CMAKE_SKIP_INSTALL_RPATH-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SKIP_RPATH +CMAKE_SKIP_RPATH-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS +CMAKE_STATIC_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_DEBUG +CMAKE_STATIC_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL +CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELEASE +CMAKE_STATIC_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STRIP +CMAKE_STRIP-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_USE_RELATIVE_PATHS +CMAKE_USE_RELATIVE_PATHS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_VERBOSE_MAKEFILE +CMAKE_VERBOSE_MAKEFILE-ADVANCED:INTERNAL=1 +//Details about finding Qt4 +FIND_PACKAGE_MESSAGE_DETAILS_Qt4:INTERNAL=[C:/Qt/4.8.6/bin/qmake.exe][C:/Qt/4.8.6/bin/moc.exe][C:/Qt/4.8.6/bin/rcc.exe][C:/Qt/4.8.6/bin/uic.exe][C:/Qt/4.8.6/include][C:/Qt/4.8.6/lib][optimized;C:/Qt/4.8.6/lib/libQtCore4.a;debug;C:/Qt/4.8.6/lib/libQtCored4.a][v4.8.6()] +//Have function j0 +PIP_MATH_J0:INTERNAL=1 +//Have function j1 +PIP_MATH_J1:INTERNAL=1 +//Have function jn +PIP_MATH_JN:INTERNAL=1 +//Have function y0 +PIP_MATH_Y0:INTERNAL=1 +//Have function y1 +PIP_MATH_Y1:INTERNAL=1 +//Have function yn +PIP_MATH_YN:INTERNAL=1 +//ADVANCED property for variable: QT_ARTHURPLUGIN_PLUGIN_DEBUG +QT_ARTHURPLUGIN_PLUGIN_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: QT_ARTHURPLUGIN_PLUGIN_RELEASE +QT_ARTHURPLUGIN_PLUGIN_RELEASE-ADVANCED:INTERNAL=1 +QT_BINARY_DIR:INTERNAL=C:/Qt/4.8.6/bin +//ADVANCED property for variable: QT_CONTAINEREXTENSION_PLUGIN_DEBUG +QT_CONTAINEREXTENSION_PLUGIN_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: QT_CONTAINEREXTENSION_PLUGIN_RELEASE +QT_CONTAINEREXTENSION_PLUGIN_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: QT_CUSTOMWIDGETPLUGIN_PLUGIN_DEBUG +QT_CUSTOMWIDGETPLUGIN_PLUGIN_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: QT_CUSTOMWIDGETPLUGIN_PLUGIN_RELEASE +QT_CUSTOMWIDGETPLUGIN_PLUGIN_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: QT_DBUSCPP2XML_EXECUTABLE +QT_DBUSCPP2XML_EXECUTABLE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: QT_DBUSXML2CPP_EXECUTABLE +QT_DBUSXML2CPP_EXECUTABLE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: QT_DESIGNER_EXECUTABLE +QT_DESIGNER_EXECUTABLE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: QT_DOC_DIR +QT_DOC_DIR-ADVANCED:INTERNAL=1 +QT_HEADERS_DIR:INTERNAL=C:/Qt/4.8.6/include +//ADVANCED property for variable: QT_IMPORTS_DIR +QT_IMPORTS_DIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: QT_LIBRARY_DIR +QT_LIBRARY_DIR-ADVANCED:INTERNAL=1 +//Qt library dir +QT_LIBRARY_DIR:INTERNAL=C:/Qt/4.8.6/lib +//ADVANCED property for variable: QT_LINGUIST_EXECUTABLE +QT_LINGUIST_EXECUTABLE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: QT_LRELEASE_EXECUTABLE +QT_LRELEASE_EXECUTABLE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: QT_LUPDATE_EXECUTABLE +QT_LUPDATE_EXECUTABLE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: QT_MKSPECS_DIR +QT_MKSPECS_DIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: QT_MOC_EXECUTABLE +QT_MOC_EXECUTABLE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: QT_PHONONWIDGETS_PLUGIN_DEBUG +QT_PHONONWIDGETS_PLUGIN_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: QT_PHONONWIDGETS_PLUGIN_RELEASE +QT_PHONONWIDGETS_PLUGIN_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: QT_PHONON_DS9_PLUGIN_DEBUG +QT_PHONON_DS9_PLUGIN_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: QT_PHONON_DS9_PLUGIN_RELEASE +QT_PHONON_DS9_PLUGIN_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: QT_PHONON_INCLUDE_DIR +QT_PHONON_INCLUDE_DIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: QT_PHONON_LIBRARY +QT_PHONON_LIBRARY-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: QT_PHONON_LIBRARY_DEBUG +QT_PHONON_LIBRARY_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: QT_PHONON_LIBRARY_RELEASE +QT_PHONON_LIBRARY_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: QT_PLUGINS_DIR +QT_PLUGINS_DIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: QT_QAXCONTAINER_INCLUDE_DIR +QT_QAXCONTAINER_INCLUDE_DIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: QT_QAXCONTAINER_LIBRARY +QT_QAXCONTAINER_LIBRARY-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: QT_QAXCONTAINER_LIBRARY_DEBUG +QT_QAXCONTAINER_LIBRARY_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: QT_QAXCONTAINER_LIBRARY_RELEASE +QT_QAXCONTAINER_LIBRARY_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: QT_QAXSERVER_INCLUDE_DIR +QT_QAXSERVER_INCLUDE_DIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: QT_QAXSERVER_LIBRARY +QT_QAXSERVER_LIBRARY-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: QT_QAXSERVER_LIBRARY_DEBUG +QT_QAXSERVER_LIBRARY_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: QT_QAXSERVER_LIBRARY_RELEASE +QT_QAXSERVER_LIBRARY_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: QT_QCNCODECS_PLUGIN_DEBUG +QT_QCNCODECS_PLUGIN_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: QT_QCNCODECS_PLUGIN_RELEASE +QT_QCNCODECS_PLUGIN_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: QT_QCOLLECTIONGENERATOR_EXECUTABLE +QT_QCOLLECTIONGENERATOR_EXECUTABLE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: QT_QCOREWLANBEARER_PLUGIN_DEBUG +QT_QCOREWLANBEARER_PLUGIN_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: QT_QCOREWLANBEARER_PLUGIN_RELEASE +QT_QCOREWLANBEARER_PLUGIN_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: QT_QDECLARATIVEVIEW_PLUGIN_DEBUG +QT_QDECLARATIVEVIEW_PLUGIN_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: QT_QDECLARATIVEVIEW_PLUGIN_RELEASE +QT_QDECLARATIVEVIEW_PLUGIN_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: QT_QDECORATIONDEFAULT_PLUGIN_DEBUG +QT_QDECORATIONDEFAULT_PLUGIN_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: QT_QDECORATIONDEFAULT_PLUGIN_RELEASE +QT_QDECORATIONDEFAULT_PLUGIN_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: QT_QDECORATIONWINDOWS_PLUGIN_DEBUG +QT_QDECORATIONWINDOWS_PLUGIN_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: QT_QDECORATIONWINDOWS_PLUGIN_RELEASE +QT_QDECORATIONWINDOWS_PLUGIN_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: QT_QGENERICBEARER_PLUGIN_DEBUG +QT_QGENERICBEARER_PLUGIN_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: QT_QGENERICBEARER_PLUGIN_RELEASE +QT_QGENERICBEARER_PLUGIN_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: QT_QGIF_PLUGIN_DEBUG +QT_QGIF_PLUGIN_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: QT_QGIF_PLUGIN_RELEASE +QT_QGIF_PLUGIN_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: QT_QGLGRAPHICSSYSTEM_PLUGIN_DEBUG +QT_QGLGRAPHICSSYSTEM_PLUGIN_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: QT_QGLGRAPHICSSYSTEM_PLUGIN_RELEASE +QT_QGLGRAPHICSSYSTEM_PLUGIN_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: QT_QICO_PLUGIN_DEBUG +QT_QICO_PLUGIN_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: QT_QICO_PLUGIN_RELEASE +QT_QICO_PLUGIN_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: QT_QIMSW_MULTI_PLUGIN_DEBUG +QT_QIMSW_MULTI_PLUGIN_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: QT_QIMSW_MULTI_PLUGIN_RELEASE +QT_QIMSW_MULTI_PLUGIN_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: QT_QJPCODECS_PLUGIN_DEBUG +QT_QJPCODECS_PLUGIN_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: QT_QJPCODECS_PLUGIN_RELEASE +QT_QJPCODECS_PLUGIN_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: QT_QJPEG_PLUGIN_DEBUG +QT_QJPEG_PLUGIN_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: QT_QJPEG_PLUGIN_RELEASE +QT_QJPEG_PLUGIN_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: QT_QKRCODECS_PLUGIN_DEBUG +QT_QKRCODECS_PLUGIN_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: QT_QKRCODECS_PLUGIN_RELEASE +QT_QKRCODECS_PLUGIN_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: QT_QMNG_PLUGIN_DEBUG +QT_QMNG_PLUGIN_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: QT_QMNG_PLUGIN_RELEASE +QT_QMNG_PLUGIN_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: QT_QSQLDB2_PLUGIN_DEBUG +QT_QSQLDB2_PLUGIN_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: QT_QSQLDB2_PLUGIN_RELEASE +QT_QSQLDB2_PLUGIN_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: QT_QSQLIBASE_PLUGIN_DEBUG +QT_QSQLIBASE_PLUGIN_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: QT_QSQLIBASE_PLUGIN_RELEASE +QT_QSQLIBASE_PLUGIN_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: QT_QSQLITE2_PLUGIN_DEBUG +QT_QSQLITE2_PLUGIN_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: QT_QSQLITE2_PLUGIN_RELEASE +QT_QSQLITE2_PLUGIN_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: QT_QSQLITE_PLUGIN_DEBUG +QT_QSQLITE_PLUGIN_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: QT_QSQLITE_PLUGIN_RELEASE +QT_QSQLITE_PLUGIN_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: QT_QSQLMYSQL_PLUGIN_DEBUG +QT_QSQLMYSQL_PLUGIN_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: QT_QSQLMYSQL_PLUGIN_RELEASE +QT_QSQLMYSQL_PLUGIN_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: QT_QSQLOCI_PLUGIN_DEBUG +QT_QSQLOCI_PLUGIN_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: QT_QSQLOCI_PLUGIN_RELEASE +QT_QSQLOCI_PLUGIN_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: QT_QSQLODBC_PLUGIN_DEBUG +QT_QSQLODBC_PLUGIN_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: QT_QSQLODBC_PLUGIN_RELEASE +QT_QSQLODBC_PLUGIN_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: QT_QSQLPSQL_PLUGIN_DEBUG +QT_QSQLPSQL_PLUGIN_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: QT_QSQLPSQL_PLUGIN_RELEASE +QT_QSQLPSQL_PLUGIN_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: QT_QSQLTDS_PLUGIN_DEBUG +QT_QSQLTDS_PLUGIN_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: QT_QSQLTDS_PLUGIN_RELEASE +QT_QSQLTDS_PLUGIN_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: QT_QSVGICON_PLUGIN_DEBUG +QT_QSVGICON_PLUGIN_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: QT_QSVGICON_PLUGIN_RELEASE +QT_QSVGICON_PLUGIN_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: QT_QSVG_PLUGIN_DEBUG +QT_QSVG_PLUGIN_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: QT_QSVG_PLUGIN_RELEASE +QT_QSVG_PLUGIN_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: QT_QT3SUPPORTWIDGETS_PLUGIN_DEBUG +QT_QT3SUPPORTWIDGETS_PLUGIN_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: QT_QT3SUPPORTWIDGETS_PLUGIN_RELEASE +QT_QT3SUPPORTWIDGETS_PLUGIN_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: QT_QT3SUPPORT_INCLUDE_DIR +QT_QT3SUPPORT_INCLUDE_DIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: QT_QT3SUPPORT_LIBRARY +QT_QT3SUPPORT_LIBRARY-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: QT_QT3SUPPORT_LIBRARY_DEBUG +QT_QT3SUPPORT_LIBRARY_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: QT_QT3SUPPORT_LIBRARY_RELEASE +QT_QT3SUPPORT_LIBRARY_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: QT_QTACCESSIBLECOMPATWIDGETS_PLUGIN_DEBUG +QT_QTACCESSIBLECOMPATWIDGETS_PLUGIN_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: QT_QTACCESSIBLECOMPATWIDGETS_PLUGIN_RELEASE +QT_QTACCESSIBLECOMPATWIDGETS_PLUGIN_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: QT_QTACCESSIBLEWIDGETS_PLUGIN_DEBUG +QT_QTACCESSIBLEWIDGETS_PLUGIN_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: QT_QTACCESSIBLEWIDGETS_PLUGIN_RELEASE +QT_QTACCESSIBLEWIDGETS_PLUGIN_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: QT_QTASSISTANTCLIENT_INCLUDE_DIR +QT_QTASSISTANTCLIENT_INCLUDE_DIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: QT_QTASSISTANTCLIENT_LIBRARY +QT_QTASSISTANTCLIENT_LIBRARY-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: QT_QTASSISTANTCLIENT_LIBRARY_DEBUG +QT_QTASSISTANTCLIENT_LIBRARY_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: QT_QTASSISTANTCLIENT_LIBRARY_RELEASE +QT_QTASSISTANTCLIENT_LIBRARY_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: QT_QTASSISTANT_INCLUDE_DIR +QT_QTASSISTANT_INCLUDE_DIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: QT_QTASSISTANT_LIBRARY +QT_QTASSISTANT_LIBRARY-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: QT_QTASSISTANT_LIBRARY_DEBUG +QT_QTASSISTANT_LIBRARY_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: QT_QTASSISTANT_LIBRARY_RELEASE +QT_QTASSISTANT_LIBRARY_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: QT_QTCLUCENE_LIBRARY +QT_QTCLUCENE_LIBRARY-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: QT_QTCLUCENE_LIBRARY_DEBUG +QT_QTCLUCENE_LIBRARY_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: QT_QTCLUCENE_LIBRARY_RELEASE +QT_QTCLUCENE_LIBRARY_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: QT_QTCORE_INCLUDE_DIR +QT_QTCORE_INCLUDE_DIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: QT_QTCORE_LIBRARY +QT_QTCORE_LIBRARY-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: QT_QTCORE_LIBRARY_DEBUG +QT_QTCORE_LIBRARY_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: QT_QTCORE_LIBRARY_RELEASE +QT_QTCORE_LIBRARY_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: QT_QTDBUS_INCLUDE_DIR +QT_QTDBUS_INCLUDE_DIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: QT_QTDBUS_LIBRARY +QT_QTDBUS_LIBRARY-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: QT_QTDBUS_LIBRARY_DEBUG +QT_QTDBUS_LIBRARY_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: QT_QTDBUS_LIBRARY_RELEASE +QT_QTDBUS_LIBRARY_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: QT_QTDECLARATIVE_INCLUDE_DIR +QT_QTDECLARATIVE_INCLUDE_DIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: QT_QTDECLARATIVE_LIBRARY +QT_QTDECLARATIVE_LIBRARY-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: QT_QTDECLARATIVE_LIBRARY_DEBUG +QT_QTDECLARATIVE_LIBRARY_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: QT_QTDECLARATIVE_LIBRARY_RELEASE +QT_QTDECLARATIVE_LIBRARY_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: QT_QTDESIGNERCOMPONENTS_INCLUDE_DIR +QT_QTDESIGNERCOMPONENTS_INCLUDE_DIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: QT_QTDESIGNERCOMPONENTS_LIBRARY +QT_QTDESIGNERCOMPONENTS_LIBRARY-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: QT_QTDESIGNERCOMPONENTS_LIBRARY_DEBUG +QT_QTDESIGNERCOMPONENTS_LIBRARY_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: QT_QTDESIGNERCOMPONENTS_LIBRARY_RELEASE +QT_QTDESIGNERCOMPONENTS_LIBRARY_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: QT_QTDESIGNER_INCLUDE_DIR +QT_QTDESIGNER_INCLUDE_DIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: QT_QTDESIGNER_LIBRARY +QT_QTDESIGNER_LIBRARY-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: QT_QTDESIGNER_LIBRARY_DEBUG +QT_QTDESIGNER_LIBRARY_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: QT_QTDESIGNER_LIBRARY_RELEASE +QT_QTDESIGNER_LIBRARY_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: QT_QTGUI_INCLUDE_DIR +QT_QTGUI_INCLUDE_DIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: QT_QTGUI_LIBRARY +QT_QTGUI_LIBRARY-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: QT_QTGUI_LIBRARY_DEBUG +QT_QTGUI_LIBRARY_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: QT_QTGUI_LIBRARY_RELEASE +QT_QTGUI_LIBRARY_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: QT_QTHELP_INCLUDE_DIR +QT_QTHELP_INCLUDE_DIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: QT_QTHELP_LIBRARY +QT_QTHELP_LIBRARY-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: QT_QTHELP_LIBRARY_DEBUG +QT_QTHELP_LIBRARY_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: QT_QTHELP_LIBRARY_RELEASE +QT_QTHELP_LIBRARY_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: QT_QTIFF_PLUGIN_DEBUG +QT_QTIFF_PLUGIN_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: QT_QTIFF_PLUGIN_RELEASE +QT_QTIFF_PLUGIN_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: QT_QTMAIN_LIBRARY +QT_QTMAIN_LIBRARY-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: QT_QTMAIN_LIBRARY_DEBUG +QT_QTMAIN_LIBRARY_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: QT_QTMAIN_LIBRARY_RELEASE +QT_QTMAIN_LIBRARY_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: QT_QTMULTIMEDIA_INCLUDE_DIR +QT_QTMULTIMEDIA_INCLUDE_DIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: QT_QTMULTIMEDIA_LIBRARY +QT_QTMULTIMEDIA_LIBRARY-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: QT_QTMULTIMEDIA_LIBRARY_DEBUG +QT_QTMULTIMEDIA_LIBRARY_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: QT_QTMULTIMEDIA_LIBRARY_RELEASE +QT_QTMULTIMEDIA_LIBRARY_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: QT_QTNETWORK_INCLUDE_DIR +QT_QTNETWORK_INCLUDE_DIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: QT_QTNETWORK_LIBRARY +QT_QTNETWORK_LIBRARY-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: QT_QTNETWORK_LIBRARY_DEBUG +QT_QTNETWORK_LIBRARY_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: QT_QTNETWORK_LIBRARY_RELEASE +QT_QTNETWORK_LIBRARY_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: QT_QTNSPLUGIN_INCLUDE_DIR +QT_QTNSPLUGIN_INCLUDE_DIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: QT_QTNSPLUGIN_LIBRARY +QT_QTNSPLUGIN_LIBRARY-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: QT_QTNSPLUGIN_LIBRARY_DEBUG +QT_QTNSPLUGIN_LIBRARY_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: QT_QTNSPLUGIN_LIBRARY_RELEASE +QT_QTNSPLUGIN_LIBRARY_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: QT_QTOPENGL_INCLUDE_DIR +QT_QTOPENGL_INCLUDE_DIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: QT_QTOPENGL_LIBRARY +QT_QTOPENGL_LIBRARY-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: QT_QTOPENGL_LIBRARY_DEBUG +QT_QTOPENGL_LIBRARY_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: QT_QTOPENGL_LIBRARY_RELEASE +QT_QTOPENGL_LIBRARY_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: QT_QTRACEGRAPHICSSYSTEM_PLUGIN_DEBUG +QT_QTRACEGRAPHICSSYSTEM_PLUGIN_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: QT_QTRACEGRAPHICSSYSTEM_PLUGIN_RELEASE +QT_QTRACEGRAPHICSSYSTEM_PLUGIN_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: QT_QTSCRIPTDBUS_PLUGIN_DEBUG +QT_QTSCRIPTDBUS_PLUGIN_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: QT_QTSCRIPTDBUS_PLUGIN_RELEASE +QT_QTSCRIPTDBUS_PLUGIN_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: QT_QTSCRIPTTOOLS_INCLUDE_DIR +QT_QTSCRIPTTOOLS_INCLUDE_DIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: QT_QTSCRIPTTOOLS_LIBRARY +QT_QTSCRIPTTOOLS_LIBRARY-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: QT_QTSCRIPTTOOLS_LIBRARY_DEBUG +QT_QTSCRIPTTOOLS_LIBRARY_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: QT_QTSCRIPTTOOLS_LIBRARY_RELEASE +QT_QTSCRIPTTOOLS_LIBRARY_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: QT_QTSCRIPT_INCLUDE_DIR +QT_QTSCRIPT_INCLUDE_DIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: QT_QTSCRIPT_LIBRARY +QT_QTSCRIPT_LIBRARY-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: QT_QTSCRIPT_LIBRARY_DEBUG +QT_QTSCRIPT_LIBRARY_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: QT_QTSCRIPT_LIBRARY_RELEASE +QT_QTSCRIPT_LIBRARY_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: QT_QTSQL_INCLUDE_DIR +QT_QTSQL_INCLUDE_DIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: QT_QTSQL_LIBRARY +QT_QTSQL_LIBRARY-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: QT_QTSQL_LIBRARY_DEBUG +QT_QTSQL_LIBRARY_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: QT_QTSQL_LIBRARY_RELEASE +QT_QTSQL_LIBRARY_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: QT_QTSVG_INCLUDE_DIR +QT_QTSVG_INCLUDE_DIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: QT_QTSVG_LIBRARY +QT_QTSVG_LIBRARY-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: QT_QTSVG_LIBRARY_DEBUG +QT_QTSVG_LIBRARY_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: QT_QTSVG_LIBRARY_RELEASE +QT_QTSVG_LIBRARY_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: QT_QTTEST_INCLUDE_DIR +QT_QTTEST_INCLUDE_DIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: QT_QTTEST_LIBRARY +QT_QTTEST_LIBRARY-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: QT_QTTEST_LIBRARY_DEBUG +QT_QTTEST_LIBRARY_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: QT_QTTEST_LIBRARY_RELEASE +QT_QTTEST_LIBRARY_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: QT_QTUITOOLS_INCLUDE_DIR +QT_QTUITOOLS_INCLUDE_DIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: QT_QTUITOOLS_LIBRARY +QT_QTUITOOLS_LIBRARY-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: QT_QTUITOOLS_LIBRARY_DEBUG +QT_QTUITOOLS_LIBRARY_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: QT_QTUITOOLS_LIBRARY_RELEASE +QT_QTUITOOLS_LIBRARY_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: QT_QTWCODECS_PLUGIN_DEBUG +QT_QTWCODECS_PLUGIN_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: QT_QTWCODECS_PLUGIN_RELEASE +QT_QTWCODECS_PLUGIN_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: QT_QTWEBKIT_INCLUDE_DIR +QT_QTWEBKIT_INCLUDE_DIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: QT_QTWEBKIT_LIBRARY +QT_QTWEBKIT_LIBRARY-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: QT_QTWEBKIT_LIBRARY_DEBUG +QT_QTWEBKIT_LIBRARY_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: QT_QTWEBKIT_LIBRARY_RELEASE +QT_QTWEBKIT_LIBRARY_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: QT_QTXMLPATTERNS_INCLUDE_DIR +QT_QTXMLPATTERNS_INCLUDE_DIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: QT_QTXMLPATTERNS_LIBRARY +QT_QTXMLPATTERNS_LIBRARY-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: QT_QTXMLPATTERNS_LIBRARY_DEBUG +QT_QTXMLPATTERNS_LIBRARY_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: QT_QTXMLPATTERNS_LIBRARY_RELEASE +QT_QTXMLPATTERNS_LIBRARY_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: QT_QTXML_INCLUDE_DIR +QT_QTXML_INCLUDE_DIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: QT_QTXML_LIBRARY +QT_QTXML_LIBRARY-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: QT_QTXML_LIBRARY_DEBUG +QT_QTXML_LIBRARY_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: QT_QTXML_LIBRARY_RELEASE +QT_QTXML_LIBRARY_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: QT_QWEBVIEW_PLUGIN_DEBUG +QT_QWEBVIEW_PLUGIN_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: QT_QWEBVIEW_PLUGIN_RELEASE +QT_QWEBVIEW_PLUGIN_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: QT_QWSTSLIBMOUSEHANDLER_PLUGIN_DEBUG +QT_QWSTSLIBMOUSEHANDLER_PLUGIN_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: QT_QWSTSLIBMOUSEHANDLER_PLUGIN_RELEASE +QT_QWSTSLIBMOUSEHANDLER_PLUGIN_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: QT_RCC_EXECUTABLE +QT_RCC_EXECUTABLE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: QT_TASKMENUEXTENSION_PLUGIN_DEBUG +QT_TASKMENUEXTENSION_PLUGIN_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: QT_TASKMENUEXTENSION_PLUGIN_RELEASE +QT_TASKMENUEXTENSION_PLUGIN_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: QT_TRANSLATIONS_DIR +QT_TRANSLATIONS_DIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: QT_UIC3_EXECUTABLE +QT_UIC3_EXECUTABLE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: QT_UIC_EXECUTABLE +QT_UIC_EXECUTABLE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: QT_WORLDTIMECLOCKPLUGIN_PLUGIN_DEBUG +QT_WORLDTIMECLOCKPLUGIN_PLUGIN_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: QT_WORLDTIMECLOCKPLUGIN_PLUGIN_RELEASE +QT_WORLDTIMECLOCKPLUGIN_PLUGIN_RELEASE-ADVANCED:INTERNAL=1 +//Have symbol Q_WS_MAC +Q_WS_MAC:INTERNAL= +//Have symbol Q_WS_QWS +Q_WS_QWS:INTERNAL= +//Have symbol Q_WS_WIN +Q_WS_WIN:INTERNAL=1 +//Have symbol Q_WS_X11 +Q_WS_X11:INTERNAL= + diff --git a/_oldpip/pip_0.4.0_r5/CMakeFiles/2.8.12.2/CMakeCCompiler.cmake b/_oldpip/pip_0.4.0_r5/CMakeFiles/2.8.12.2/CMakeCCompiler.cmake new file mode 100644 index 0000000..547f510 --- /dev/null +++ b/_oldpip/pip_0.4.0_r5/CMakeFiles/2.8.12.2/CMakeCCompiler.cmake @@ -0,0 +1,56 @@ +set(CMAKE_C_COMPILER "C:/mingw/x32/bin/gcc.exe") +set(CMAKE_C_COMPILER_ARG1 "") +set(CMAKE_C_COMPILER_ID "GNU") +set(CMAKE_C_COMPILER_VERSION "4.9.2") +set(CMAKE_C_PLATFORM_ID "MinGW") + +set(CMAKE_AR "C:/mingw/x32/bin/ar.exe") +set(CMAKE_RANLIB "C:/mingw/x32/bin/ranlib.exe") +set(CMAKE_LINKER "C:/mingw/x32/bin/ld.exe") +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 1) +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) +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 "4") +set(CMAKE_C_COMPILER_ABI "") +set(CMAKE_C_LIBRARY_ARCHITECTURE "") + +if(CMAKE_C_SIZEOF_DATA_PTR) + set(CMAKE_SIZEOF_VOID_P "${CMAKE_C_SIZEOF_DATA_PTR}") +endif() + +if(CMAKE_C_COMPILER_ABI) + set(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_C_COMPILER_ABI}") +endif() + +if(CMAKE_C_LIBRARY_ARCHITECTURE) + set(CMAKE_LIBRARY_ARCHITECTURE "") +endif() + + + + +set(CMAKE_C_IMPLICIT_LINK_LIBRARIES "mingw32;moldname;mingwex;msvcrt;advapi32;shell32;user32;kernel32;iconv;mingw32;moldname;mingwex;msvcrt") +set(CMAKE_C_IMPLICIT_LINK_DIRECTORIES "C:/mingw/x32/lib/gcc/i686-w64-mingw32/4.9.2;C:/mingw/x32/lib/gcc;C:/mingw/x32/i686-w64-mingw32/lib;C:/mingw/x32/lib") +set(CMAKE_C_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "") + + + diff --git a/_oldpip/pip_0.4.0_r5/CMakeFiles/2.8.12.2/CMakeCXXCompiler.cmake b/_oldpip/pip_0.4.0_r5/CMakeFiles/2.8.12.2/CMakeCXXCompiler.cmake new file mode 100644 index 0000000..492182e --- /dev/null +++ b/_oldpip/pip_0.4.0_r5/CMakeFiles/2.8.12.2/CMakeCXXCompiler.cmake @@ -0,0 +1,57 @@ +set(CMAKE_CXX_COMPILER "C:/mingw/x32/bin/g++.exe") +set(CMAKE_CXX_COMPILER_ARG1 "") +set(CMAKE_CXX_COMPILER_ID "GNU") +set(CMAKE_CXX_COMPILER_VERSION "4.9.2") +set(CMAKE_CXX_PLATFORM_ID "MinGW") + +set(CMAKE_AR "C:/mingw/x32/bin/ar.exe") +set(CMAKE_RANLIB "C:/mingw/x32/bin/ranlib.exe") +set(CMAKE_LINKER "C:/mingw/x32/bin/ld.exe") +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 1) +set(CMAKE_COMPILER_IS_CYGWIN ) +if(CMAKE_COMPILER_IS_CYGWIN) + set(CYGWIN 1) + set(UNIX 1) +endif() + +set(CMAKE_CXX_COMPILER_ENV_VAR "CXX") + +if(CMAKE_COMPILER_IS_MINGW) + set(MINGW 1) +endif() +set(CMAKE_CXX_COMPILER_ID_RUN 1) +set(CMAKE_CXX_IGNORE_EXTENSIONS inl;h;hpp;HPP;H;o;O;obj;OBJ;def;DEF;rc;RC) +set(CMAKE_CXX_SOURCE_FILE_EXTENSIONS C;M;c++;cc;cpp;cxx;m;mm;CPP) +set(CMAKE_CXX_LINKER_PREFERENCE 30) +set(CMAKE_CXX_LINKER_PREFERENCE_PROPAGATES 1) + +# Save compiler ABI information. +set(CMAKE_CXX_SIZEOF_DATA_PTR "4") +set(CMAKE_CXX_COMPILER_ABI "") +set(CMAKE_CXX_LIBRARY_ARCHITECTURE "") + +if(CMAKE_CXX_SIZEOF_DATA_PTR) + set(CMAKE_SIZEOF_VOID_P "${CMAKE_CXX_SIZEOF_DATA_PTR}") +endif() + +if(CMAKE_CXX_COMPILER_ABI) + set(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_CXX_COMPILER_ABI}") +endif() + +if(CMAKE_CXX_LIBRARY_ARCHITECTURE) + set(CMAKE_LIBRARY_ARCHITECTURE "") +endif() + + + + +set(CMAKE_CXX_IMPLICIT_LINK_LIBRARIES "stdc++;mingw32;moldname;mingwex;msvcrt;advapi32;shell32;user32;kernel32;iconv;mingw32;moldname;mingwex;msvcrt") +set(CMAKE_CXX_IMPLICIT_LINK_DIRECTORIES "C:/mingw/x32/lib/gcc/i686-w64-mingw32/4.9.2;C:/mingw/x32/lib/gcc;C:/mingw/x32/i686-w64-mingw32/lib;C:/mingw/x32/lib") +set(CMAKE_CXX_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "") + + + diff --git a/_oldpip/pip_0.4.0_r5/CMakeFiles/2.8.12.2/CMakeDetermineCompilerABI_C.bin b/_oldpip/pip_0.4.0_r5/CMakeFiles/2.8.12.2/CMakeDetermineCompilerABI_C.bin new file mode 100644 index 0000000..a4cbd25 Binary files /dev/null and b/_oldpip/pip_0.4.0_r5/CMakeFiles/2.8.12.2/CMakeDetermineCompilerABI_C.bin differ diff --git a/_oldpip/pip_0.4.0_r5/CMakeFiles/2.8.12.2/CMakeDetermineCompilerABI_CXX.bin b/_oldpip/pip_0.4.0_r5/CMakeFiles/2.8.12.2/CMakeDetermineCompilerABI_CXX.bin new file mode 100644 index 0000000..96ebda8 Binary files /dev/null and b/_oldpip/pip_0.4.0_r5/CMakeFiles/2.8.12.2/CMakeDetermineCompilerABI_CXX.bin differ diff --git a/_oldpip/pip_0.4.0_r5/CMakeFiles/2.8.12.2/CMakeRCCompiler.cmake b/_oldpip/pip_0.4.0_r5/CMakeFiles/2.8.12.2/CMakeRCCompiler.cmake new file mode 100644 index 0000000..83df677 --- /dev/null +++ b/_oldpip/pip_0.4.0_r5/CMakeFiles/2.8.12.2/CMakeRCCompiler.cmake @@ -0,0 +1,6 @@ +set(CMAKE_RC_COMPILER "C:/mingw/x32/bin/windres.exe") +set(CMAKE_RC_COMPILER_ARG1 "") +set(CMAKE_RC_COMPILER_LOADED 1) +set(CMAKE_RC_SOURCE_FILE_EXTENSIONS rc) +set(CMAKE_RC_OUTPUT_EXTENSION .obj) +set(CMAKE_RC_COMPILER_ENV_VAR "RC") diff --git a/_oldpip/pip_0.4.0_r5/CMakeFiles/2.8.12.2/CMakeSystem.cmake b/_oldpip/pip_0.4.0_r5/CMakeFiles/2.8.12.2/CMakeSystem.cmake new file mode 100644 index 0000000..6bc8356 --- /dev/null +++ b/_oldpip/pip_0.4.0_r5/CMakeFiles/2.8.12.2/CMakeSystem.cmake @@ -0,0 +1,15 @@ +set(CMAKE_HOST_SYSTEM "Windows-6.1") +set(CMAKE_HOST_SYSTEM_NAME "Windows") +set(CMAKE_HOST_SYSTEM_VERSION "6.1") +set(CMAKE_HOST_SYSTEM_PROCESSOR "AMD64") + + + +set(CMAKE_SYSTEM "Windows-6.1") +set(CMAKE_SYSTEM_NAME "Windows") +set(CMAKE_SYSTEM_VERSION "6.1") +set(CMAKE_SYSTEM_PROCESSOR "AMD64") + +set(CMAKE_CROSSCOMPILING "FALSE") + +set(CMAKE_SYSTEM_LOADED 1) diff --git a/_oldpip/pip_0.4.0_r5/CMakeFiles/2.8.12.2/CompilerIdC/CMakeCCompilerId.c b/_oldpip/pip_0.4.0_r5/CMakeFiles/2.8.12.2/CompilerIdC/CMakeCCompilerId.c new file mode 100644 index 0000000..1f4382e --- /dev/null +++ b/_oldpip/pip_0.4.0_r5/CMakeFiles/2.8.12.2/CompilerIdC/CMakeCCompilerId.c @@ -0,0 +1,389 @@ +#ifdef __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(__18CXX) +# define ID_VOID_MAIN +#endif + +#if defined(__INTEL_COMPILER) || defined(__ICC) +# define COMPILER_ID "Intel" + /* __INTEL_COMPILER = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER/100) +# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER % 10) +# if defined(__INTEL_COMPILER_BUILD_DATE) + /* __INTEL_COMPILER_BUILD_DATE = YYYYMMDD */ +# define COMPILER_VERSION_TWEAK DEC(__INTEL_COMPILER_BUILD_DATE) +# 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(__clang__) +# define COMPILER_ID "Clang" +# define COMPILER_VERSION_MAJOR DEC(__clang_major__) +# define COMPILER_VERSION_MINOR DEC(__clang_minor__) +# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) + +#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 HEX(__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__) +# define COMPILER_ID "Watcom" + /* __WATCOMC__ = VVRR */ +# define COMPILER_VERSION_MAJOR DEC(__WATCOMC__ / 100) +# define COMPILER_VERSION_MINOR DEC(__WATCOMC__ % 100) + +#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_C = 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__) +# if defined(__COMPILER_VER__) +# define COMPILER_ID "zOS" +# else +# if __IBMC__ >= 800 +# define COMPILER_ID "XL" +# else +# define COMPILER_ID "VisualAge" +# endif + /* __IBMC__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10) +# endif + +#elif defined(__PGI) +# define COMPILER_ID "PGI" +# define COMPILER_VERSION_MAJOR DEC(__PGIC__) +# define COMPILER_VERSION_MINOR DEC(__PGIC_MINOR__) +# if defined(__PGIC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__PGIC_PATCHLEVEL__) +# endif + +#elif defined(_CRAYC) +# define COMPILER_ID "Cray" +# define COMPILER_VERSION_MAJOR DEC(_RELEASE) +# 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(__TINYC__) +# define COMPILER_ID "TinyCC" + +#elif defined(__SCO_VERSION__) +# define COMPILER_ID "SCO" + +#elif defined(__GNUC__) +# define COMPILER_ID "GNU" +# define COMPILER_VERSION_MAJOR DEC(__GNUC__) +# define COMPILER_VERSION_MINOR DEC(__GNUC_MINOR__) +# 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 + +/* Analog VisualDSP++ >= 4.5.6 */ +#elif defined(__VISUALDSPVERSION__) +# define COMPILER_ID "ADSP" + /* __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) + +/* Analog VisualDSP++ < 4.5.6 */ +#elif defined(__ADSPBLACKFIN__) || defined(__ADSPTS__) || defined(__ADSP21000__) +# define COMPILER_ID "ADSP" + +/* IAR Systems compiler for embedded systems. + http://www.iar.com */ +#elif defined(__IAR_SYSTEMS_ICC__ ) || defined(__IAR_SYSTEMS_ICC) +# define COMPILER_ID "IAR" + +/* sdcc, the small devices C compiler for embedded systems, + http://sdcc.sourceforge.net */ +#elif defined(SDCC) +# define COMPILER_ID "SDCC" + /* SDCC = VRP */ +# define COMPILER_VERSION_MAJOR DEC(SDCC/100) +# define COMPILER_VERSION_MINOR DEC(SDCC/10 % 10) +# define COMPILER_VERSION_PATCH DEC(SDCC % 10) + +#elif defined(_SGI_COMPILER_VERSION) || defined(_COMPILER_VERSION) +# define COMPILER_ID "MIPSpro" +# if defined(_SGI_COMPILER_VERSION) + /* _SGI_COMPILER_VERSION = VRP */ +# define COMPILER_VERSION_MAJOR DEC(_SGI_COMPILER_VERSION/100) +# define COMPILER_VERSION_MINOR DEC(_SGI_COMPILER_VERSION/10 % 10) +# define COMPILER_VERSION_PATCH DEC(_SGI_COMPILER_VERSION % 10) +# else + /* _COMPILER_VERSION = VRP */ +# define COMPILER_VERSION_MAJOR DEC(_COMPILER_VERSION/100) +# define COMPILER_VERSION_MINOR DEC(_COMPILER_VERSION/10 % 10) +# define COMPILER_VERSION_PATCH DEC(_COMPILER_VERSION % 10) +# endif + +/* This compiler is either not known or is too old to define an + identification macro. Try to identify the platform and guess that + it is the native compiler. */ +#elif defined(__sgi) +# define COMPILER_ID "MIPSpro" + +#elif defined(__hpux) || defined(__hpua) +# define COMPILER_ID "HP" + +#else /* unknown compiler */ +# define COMPILER_ID "" + +#endif + +/* Construct the string literal in pieces to prevent the source from + getting matched. Store it in a pointer rather than an array + because some compilers will just produce instructions to fill the + array rather than assigning a pointer to a static array. */ +char const* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]"; + +/* Identify known platforms by name. */ +#if defined(__linux) || defined(__linux__) || defined(linux) +# define PLATFORM_ID "Linux" + +#elif defined(__CYGWIN__) +# define PLATFORM_ID "Cygwin" + +#elif defined(__MINGW32__) +# define PLATFORM_ID "MinGW" + +#elif defined(__APPLE__) +# define PLATFORM_ID "Darwin" + +#elif defined(_WIN32) || defined(__WIN32__) || defined(WIN32) +# define PLATFORM_ID "Windows" + +#elif defined(__FreeBSD__) || defined(__FreeBSD) +# define PLATFORM_ID "FreeBSD" + +#elif defined(__NetBSD__) || defined(__NetBSD) +# define PLATFORM_ID "NetBSD" + +#elif defined(__OpenBSD__) || defined(__OPENBSD) +# define PLATFORM_ID "OpenBSD" + +#elif defined(__sun) || defined(sun) +# define PLATFORM_ID "SunOS" + +#elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__) +# define PLATFORM_ID "AIX" + +#elif defined(__sgi) || defined(__sgi__) || defined(_SGI) +# define PLATFORM_ID "IRIX" + +#elif defined(__hpux) || defined(__hpux__) +# define PLATFORM_ID "HP-UX" + +#elif defined(__HAIKU__) +# define PLATFORM_ID "Haiku" + +#elif defined(__BeOS) || defined(__BEOS__) || defined(_BEOS) +# define PLATFORM_ID "BeOS" + +#elif defined(__QNX__) || defined(__QNXNTO__) +# define PLATFORM_ID "QNX" + +#elif defined(__tru64) || defined(_tru64) || defined(__TRU64__) +# define PLATFORM_ID "Tru64" + +#elif defined(__riscos) || defined(__riscos__) +# define PLATFORM_ID "RISCos" + +#elif defined(__sinix) || defined(__sinix__) || defined(__SINIX__) +# define PLATFORM_ID "SINIX" + +#elif defined(__UNIX_SV__) +# define PLATFORM_ID "UNIX_SV" + +#elif defined(__bsdos__) +# define PLATFORM_ID "BSDOS" + +#elif defined(_MPRAS) || defined(MPRAS) +# define PLATFORM_ID "MP-RAS" + +#elif defined(__osf) || defined(__osf__) +# define PLATFORM_ID "OSF1" + +#elif defined(_SCO_SV) || defined(SCO_SV) || defined(sco_sv) +# define PLATFORM_ID "SCO_SV" + +#elif defined(__ultrix) || defined(__ultrix__) || defined(_ULTRIX) +# define PLATFORM_ID "ULTRIX" + +#elif defined(__XENIX__) || defined(_XENIX) || defined(XENIX) +# define PLATFORM_ID "Xenix" + +#else /* unknown platform */ +# define PLATFORM_ID "" + +#endif + +/* For windows compilers MSVC and Intel we can determine + the architecture of the compiler being used. This is because + the compilers do not have flags that can change the architecture, + but rather depend on which compiler is being used +*/ +#if defined(_WIN32) && defined(_MSC_VER) +# if defined(_M_IA64) +# define ARCHITECTURE_ID "IA64" + +# elif defined(_M_X64) || defined(_M_AMD64) +# define ARCHITECTURE_ID "x64" + +# elif defined(_M_IX86) +# define ARCHITECTURE_ID "X86" + +# elif defined(_M_ARM) +# define ARCHITECTURE_ID "ARM" + +# elif defined(_M_MIPS) +# define ARCHITECTURE_ID "MIPS" + +# elif defined(_M_SH) +# define ARCHITECTURE_ID "SHx" + +# 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 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 "]"; + + + +/*--------------------------------------------------------------------------*/ + +#ifdef ID_VOID_MAIN +void main() {} +#else +int main(int argc, char* argv[]) +{ + int require = 0; + require += info_compiler[argc]; + require += info_platform[argc]; + require += info_arch[argc]; +#ifdef COMPILER_VERSION_MAJOR + require += info_version[argc]; +#endif + (void)argv; + return require; +} +#endif diff --git a/_oldpip/pip_0.4.0_r5/CMakeFiles/2.8.12.2/CompilerIdC/a.exe b/_oldpip/pip_0.4.0_r5/CMakeFiles/2.8.12.2/CompilerIdC/a.exe new file mode 100644 index 0000000..0eb98c8 Binary files /dev/null and b/_oldpip/pip_0.4.0_r5/CMakeFiles/2.8.12.2/CompilerIdC/a.exe differ diff --git a/_oldpip/pip_0.4.0_r5/CMakeFiles/2.8.12.2/CompilerIdCXX/CMakeCXXCompilerId.cpp b/_oldpip/pip_0.4.0_r5/CMakeFiles/2.8.12.2/CompilerIdCXX/CMakeCXXCompilerId.cpp new file mode 100644 index 0000000..37a099a --- /dev/null +++ b/_oldpip/pip_0.4.0_r5/CMakeFiles/2.8.12.2/CompilerIdCXX/CMakeCXXCompilerId.cpp @@ -0,0 +1,377 @@ +/* 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" + /* __INTEL_COMPILER = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER/100) +# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER % 10) +# if defined(__INTEL_COMPILER_BUILD_DATE) + /* __INTEL_COMPILER_BUILD_DATE = YYYYMMDD */ +# define COMPILER_VERSION_TWEAK DEC(__INTEL_COMPILER_BUILD_DATE) +# 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(__clang__) +# define COMPILER_ID "Clang" +# define COMPILER_VERSION_MAJOR DEC(__clang_major__) +# define COMPILER_VERSION_MINOR DEC(__clang_minor__) +# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) + +#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 HEX(__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__) +# define COMPILER_ID "Watcom" + /* __WATCOMC__ = VVRR */ +# define COMPILER_VERSION_MAJOR DEC(__WATCOMC__ / 100) +# define COMPILER_VERSION_MINOR DEC(__WATCOMC__ % 100) + +#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__) +# if defined(__COMPILER_VER__) +# define COMPILER_ID "zOS" +# else +# if __IBMCPP__ >= 800 +# define COMPILER_ID "XL" +# else +# define COMPILER_ID "VisualAge" +# endif + /* __IBMCPP__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) +# endif + +#elif defined(__PGI) +# define COMPILER_ID "PGI" +# define COMPILER_VERSION_MAJOR DEC(__PGIC__) +# define COMPILER_VERSION_MINOR DEC(__PGIC_MINOR__) +# if defined(__PGIC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__PGIC_PATCHLEVEL__) +# endif + +#elif defined(_CRAYC) +# define COMPILER_ID "Cray" +# define COMPILER_VERSION_MAJOR DEC(_RELEASE) +# 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(__SCO_VERSION__) +# define COMPILER_ID "SCO" + +#elif defined(__GNUC__) +# define COMPILER_ID "GNU" +# define COMPILER_VERSION_MAJOR DEC(__GNUC__) +# define COMPILER_VERSION_MINOR DEC(__GNUC_MINOR__) +# 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 + +/* Analog VisualDSP++ >= 4.5.6 */ +#elif defined(__VISUALDSPVERSION__) +# define COMPILER_ID "ADSP" + /* __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) + +/* Analog VisualDSP++ < 4.5.6 */ +#elif defined(__ADSPBLACKFIN__) || defined(__ADSPTS__) || defined(__ADSP21000__) +# define COMPILER_ID "ADSP" + +/* IAR Systems compiler for embedded systems. + http://www.iar.com */ +#elif defined(__IAR_SYSTEMS_ICC__ ) || defined(__IAR_SYSTEMS_ICC) +# define COMPILER_ID "IAR" + +#elif defined(_SGI_COMPILER_VERSION) || defined(_COMPILER_VERSION) +# define COMPILER_ID "MIPSpro" +# if defined(_SGI_COMPILER_VERSION) + /* _SGI_COMPILER_VERSION = VRP */ +# define COMPILER_VERSION_MAJOR DEC(_SGI_COMPILER_VERSION/100) +# define COMPILER_VERSION_MINOR DEC(_SGI_COMPILER_VERSION/10 % 10) +# define COMPILER_VERSION_PATCH DEC(_SGI_COMPILER_VERSION % 10) +# else + /* _COMPILER_VERSION = VRP */ +# define COMPILER_VERSION_MAJOR DEC(_COMPILER_VERSION/100) +# define COMPILER_VERSION_MINOR DEC(_COMPILER_VERSION/10 % 10) +# define COMPILER_VERSION_PATCH DEC(_COMPILER_VERSION % 10) +# endif + +/* This compiler is either not known or is too old to define an + identification macro. Try to identify the platform and guess that + it is the native compiler. */ +#elif defined(__sgi) +# define COMPILER_ID "MIPSpro" + +#elif defined(__hpux) || defined(__hpua) +# define COMPILER_ID "HP" + +#else /* unknown compiler */ +# define COMPILER_ID "" + +#endif + +/* Construct the string literal in pieces to prevent the source from + getting matched. Store it in a pointer rather than an array + because some compilers will just produce instructions to fill the + array rather than assigning a pointer to a static array. */ +char const* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]"; + +/* Identify known platforms by name. */ +#if defined(__linux) || defined(__linux__) || defined(linux) +# define PLATFORM_ID "Linux" + +#elif defined(__CYGWIN__) +# define PLATFORM_ID "Cygwin" + +#elif defined(__MINGW32__) +# define PLATFORM_ID "MinGW" + +#elif defined(__APPLE__) +# define PLATFORM_ID "Darwin" + +#elif defined(_WIN32) || defined(__WIN32__) || defined(WIN32) +# define PLATFORM_ID "Windows" + +#elif defined(__FreeBSD__) || defined(__FreeBSD) +# define PLATFORM_ID "FreeBSD" + +#elif defined(__NetBSD__) || defined(__NetBSD) +# define PLATFORM_ID "NetBSD" + +#elif defined(__OpenBSD__) || defined(__OPENBSD) +# define PLATFORM_ID "OpenBSD" + +#elif defined(__sun) || defined(sun) +# define PLATFORM_ID "SunOS" + +#elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__) +# define PLATFORM_ID "AIX" + +#elif defined(__sgi) || defined(__sgi__) || defined(_SGI) +# define PLATFORM_ID "IRIX" + +#elif defined(__hpux) || defined(__hpux__) +# define PLATFORM_ID "HP-UX" + +#elif defined(__HAIKU__) +# define PLATFORM_ID "Haiku" + +#elif defined(__BeOS) || defined(__BEOS__) || defined(_BEOS) +# define PLATFORM_ID "BeOS" + +#elif defined(__QNX__) || defined(__QNXNTO__) +# define PLATFORM_ID "QNX" + +#elif defined(__tru64) || defined(_tru64) || defined(__TRU64__) +# define PLATFORM_ID "Tru64" + +#elif defined(__riscos) || defined(__riscos__) +# define PLATFORM_ID "RISCos" + +#elif defined(__sinix) || defined(__sinix__) || defined(__SINIX__) +# define PLATFORM_ID "SINIX" + +#elif defined(__UNIX_SV__) +# define PLATFORM_ID "UNIX_SV" + +#elif defined(__bsdos__) +# define PLATFORM_ID "BSDOS" + +#elif defined(_MPRAS) || defined(MPRAS) +# define PLATFORM_ID "MP-RAS" + +#elif defined(__osf) || defined(__osf__) +# define PLATFORM_ID "OSF1" + +#elif defined(_SCO_SV) || defined(SCO_SV) || defined(sco_sv) +# define PLATFORM_ID "SCO_SV" + +#elif defined(__ultrix) || defined(__ultrix__) || defined(_ULTRIX) +# define PLATFORM_ID "ULTRIX" + +#elif defined(__XENIX__) || defined(_XENIX) || defined(XENIX) +# define PLATFORM_ID "Xenix" + +#else /* unknown platform */ +# define PLATFORM_ID "" + +#endif + +/* For windows compilers MSVC and Intel we can determine + the architecture of the compiler being used. This is because + the compilers do not have flags that can change the architecture, + but rather depend on which compiler is being used +*/ +#if defined(_WIN32) && defined(_MSC_VER) +# if defined(_M_IA64) +# define ARCHITECTURE_ID "IA64" + +# elif defined(_M_X64) || defined(_M_AMD64) +# define ARCHITECTURE_ID "x64" + +# elif defined(_M_IX86) +# define ARCHITECTURE_ID "X86" + +# elif defined(_M_ARM) +# define ARCHITECTURE_ID "ARM" + +# elif defined(_M_MIPS) +# define ARCHITECTURE_ID "MIPS" + +# elif defined(_M_SH) +# define ARCHITECTURE_ID "SHx" + +# 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 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 "]"; + + + +/*--------------------------------------------------------------------------*/ + +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 + (void)argv; + return require; +} diff --git a/_oldpip/pip_0.4.0_r5/CMakeFiles/2.8.12.2/CompilerIdCXX/a.exe b/_oldpip/pip_0.4.0_r5/CMakeFiles/2.8.12.2/CompilerIdCXX/a.exe new file mode 100644 index 0000000..7daca6e Binary files /dev/null and b/_oldpip/pip_0.4.0_r5/CMakeFiles/2.8.12.2/CompilerIdCXX/a.exe differ diff --git a/_oldpip/pip_0.4.0_r5/CMakeFiles/CMakeDirectoryInformation.cmake b/_oldpip/pip_0.4.0_r5/CMakeFiles/CMakeDirectoryInformation.cmake new file mode 100644 index 0000000..cbec93f --- /dev/null +++ b/_oldpip/pip_0.4.0_r5/CMakeFiles/CMakeDirectoryInformation.cmake @@ -0,0 +1,16 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "MinGW Makefiles" Generator, CMake Version 2.8 + +# Relative path conversion top directories. +SET(CMAKE_RELATIVE_PATH_TOP_SOURCE "C:/libs/oldpip/pip_0.4.0_r5") +SET(CMAKE_RELATIVE_PATH_TOP_BINARY "C:/libs/oldpip/pip_0.4.0_r5") + +# Force unix paths in dependencies. +SET(CMAKE_FORCE_UNIX_PATHS 1) + + +# The C and CXX include file regular expressions for this directory. +SET(CMAKE_C_INCLUDE_REGEX_SCAN "^.*$") +SET(CMAKE_C_INCLUDE_REGEX_COMPLAIN "^$") +SET(CMAKE_CXX_INCLUDE_REGEX_SCAN ${CMAKE_C_INCLUDE_REGEX_SCAN}) +SET(CMAKE_CXX_INCLUDE_REGEX_COMPLAIN ${CMAKE_C_INCLUDE_REGEX_COMPLAIN}) diff --git a/_oldpip/pip_0.4.0_r5/CMakeFiles/CMakeError.log b/_oldpip/pip_0.4.0_r5/CMakeFiles/CMakeError.log new file mode 100644 index 0000000..d3a4e9a --- /dev/null +++ b/_oldpip/pip_0.4.0_r5/CMakeFiles/CMakeError.log @@ -0,0 +1,108 @@ +Determining if the Q_WS_X11 exist failed with the following output: +Change Dir: C:/libs/oldpip/pip_0.4.0_r5/CMakeFiles/CMakeTmp + +Run Build Command:C:/mingw/x32/bin/mingw32-make.exe "cmTryCompileExec3885744648/fast" +make -f CMakeFiles\cmTryCompileExec3885744648.dir\build.make CMakeFiles/cmTryCompileExec3885744648.dir/build + +C:\libs\oldpip\pip_0.4.0_r5\CMakeFiles\CMakeTmp>mingw32-make -f CMakeFiles\cmTryCompileExec3885744648.dir\build.make CMakeFiles/cmTryCompileExec3885744648.dir/build +mingw32-make[1]: Entering directory 'C:/libs/oldpip/pip_0.4.0_r5/CMakeFiles/CMakeTmp' +"C:\Program Files (x86)\CMake 2.8\bin\cmake.exe" -E cmake_progress_report C:\libs\oldpip\pip_0.4.0_r5\CMakeFiles\CMakeTmp\CMakeFiles 1 +Building CXX object CMakeFiles/cmTryCompileExec3885744648.dir/CheckSymbolExists.cxx.obj +C:\mingw\x32\bin\g++.exe @CMakeFiles/cmTryCompileExec3885744648.dir/includes_CXX.rsp -o CMakeFiles\cmTryCompileExec3885744648.dir\CheckSymbolExists.cxx.obj -c C:\libs\oldpip\pip_0.4.0_r5\CMakeFiles\CMakeTmp\CheckSymbolExists.cxx +C:\libs\oldpip\pip_0.4.0_r5\CMakeFiles\CMakeTmp\CheckSymbolExists.cxx: In function 'int main(int, char**)': +C:\libs\oldpip\pip_0.4.0_r5\CMakeFiles\CMakeTmp\CheckSymbolExists.cxx:8:19: error: 'Q_WS_X11' was not declared in this scope + return ((int*)(&Q_WS_X11))[argc]; + ^ +CMakeFiles\cmTryCompileExec3885744648.dir\build.make:60: recipe for target 'CMakeFiles/cmTryCompileExec3885744648.dir/CheckSymbolExists.cxx.obj' failed +mingw32-make[1]: *** [CMakeFiles/cmTryCompileExec3885744648.dir/CheckSymbolExists.cxx.obj] Error 1 +mingw32-make[1]: Leaving directory 'C:/libs/oldpip/pip_0.4.0_r5/CMakeFiles/CMakeTmp' +mingw32-make.exe: *** [cmTryCompileExec3885744648/fast] Error 2 +makefile:116: recipe for target 'cmTryCompileExec3885744648/fast' failed + +File C:/libs/oldpip/pip_0.4.0_r5/CMakeFiles/CMakeTmp/CheckSymbolExists.cxx: +/* */ +#include + +int main(int argc, char** argv) +{ + (void)argv; +#ifndef Q_WS_X11 + return ((int*)(&Q_WS_X11))[argc]; +#else + (void)argc; + return 0; +#endif +} + +Determining if the Q_WS_QWS exist failed with the following output: +Change Dir: C:/libs/oldpip/pip_0.4.0_r5/CMakeFiles/CMakeTmp + +Run Build Command:C:/mingw/x32/bin/mingw32-make.exe "cmTryCompileExec2417901677/fast" +make -f CMakeFiles\cmTryCompileExec2417901677.dir\build.make CMakeFiles/cmTryCompileExec2417901677.dir/build + +C:\libs\oldpip\pip_0.4.0_r5\CMakeFiles\CMakeTmp>mingw32-make -f CMakeFiles\cmTryCompileExec2417901677.dir\build.make CMakeFiles/cmTryCompileExec2417901677.dir/build +mingw32-make[1]: Entering directory 'C:/libs/oldpip/pip_0.4.0_r5/CMakeFiles/CMakeTmp' +"C:\Program Files (x86)\CMake 2.8\bin\cmake.exe" -E cmake_progress_report C:\libs\oldpip\pip_0.4.0_r5\CMakeFiles\CMakeTmp\CMakeFiles 1 +Building CXX object CMakeFiles/cmTryCompileExec2417901677.dir/CheckSymbolExists.cxx.obj +C:\mingw\x32\bin\g++.exe @CMakeFiles/cmTryCompileExec2417901677.dir/includes_CXX.rsp -o CMakeFiles\cmTryCompileExec2417901677.dir\CheckSymbolExists.cxx.obj -c C:\libs\oldpip\pip_0.4.0_r5\CMakeFiles\CMakeTmp\CheckSymbolExists.cxx +C:\libs\oldpip\pip_0.4.0_r5\CMakeFiles\CMakeTmp\CheckSymbolExists.cxx: In function 'int main(int, char**)': +C:\libs\oldpip\pip_0.4.0_r5\CMakeFiles\CMakeTmp\CheckSymbolExists.cxx:8:19: error: 'Q_WS_QWS' was not declared in this scope + return ((int*)(&Q_WS_QWS))[argc]; + ^ +CMakeFiles\cmTryCompileExec2417901677.dir\build.make:60: recipe for target 'CMakeFiles/cmTryCompileExec2417901677.dir/CheckSymbolExists.cxx.obj' failed +mingw32-make[1]: *** [CMakeFiles/cmTryCompileExec2417901677.dir/CheckSymbolExists.cxx.obj] Error 1 +mingw32-make[1]: Leaving directory 'C:/libs/oldpip/pip_0.4.0_r5/CMakeFiles/CMakeTmp' +mingw32-make.exe: *** [cmTryCompileExec2417901677/fast] Error 2 +makefile:116: recipe for target 'cmTryCompileExec2417901677/fast' failed + +File C:/libs/oldpip/pip_0.4.0_r5/CMakeFiles/CMakeTmp/CheckSymbolExists.cxx: +/* */ +#include + +int main(int argc, char** argv) +{ + (void)argv; +#ifndef Q_WS_QWS + return ((int*)(&Q_WS_QWS))[argc]; +#else + (void)argc; + return 0; +#endif +} + +Determining if the Q_WS_MAC exist failed with the following output: +Change Dir: C:/libs/oldpip/pip_0.4.0_r5/CMakeFiles/CMakeTmp + +Run Build Command:C:/mingw/x32/bin/mingw32-make.exe "cmTryCompileExec2522107080/fast" +make -f CMakeFiles\cmTryCompileExec2522107080.dir\build.make CMakeFiles/cmTryCompileExec2522107080.dir/build + +C:\libs\oldpip\pip_0.4.0_r5\CMakeFiles\CMakeTmp>mingw32-make -f CMakeFiles\cmTryCompileExec2522107080.dir\build.make CMakeFiles/cmTryCompileExec2522107080.dir/build +mingw32-make[1]: Entering directory 'C:/libs/oldpip/pip_0.4.0_r5/CMakeFiles/CMakeTmp' +"C:\Program Files (x86)\CMake 2.8\bin\cmake.exe" -E cmake_progress_report C:\libs\oldpip\pip_0.4.0_r5\CMakeFiles\CMakeTmp\CMakeFiles 1 +Building CXX object CMakeFiles/cmTryCompileExec2522107080.dir/CheckSymbolExists.cxx.obj +C:\mingw\x32\bin\g++.exe @CMakeFiles/cmTryCompileExec2522107080.dir/includes_CXX.rsp -o CMakeFiles\cmTryCompileExec2522107080.dir\CheckSymbolExists.cxx.obj -c C:\libs\oldpip\pip_0.4.0_r5\CMakeFiles\CMakeTmp\CheckSymbolExists.cxx +C:\libs\oldpip\pip_0.4.0_r5\CMakeFiles\CMakeTmp\CheckSymbolExists.cxx: In function 'int main(int, char**)': +C:\libs\oldpip\pip_0.4.0_r5\CMakeFiles\CMakeTmp\CheckSymbolExists.cxx:8:19: error: 'Q_WS_MAC' was not declared in this scope + return ((int*)(&Q_WS_MAC))[argc]; + ^ +CMakeFiles\cmTryCompileExec2522107080.dir\build.make:60: recipe for target 'CMakeFiles/cmTryCompileExec2522107080.dir/CheckSymbolExists.cxx.obj' failed +mingw32-make[1]: *** [CMakeFiles/cmTryCompileExec2522107080.dir/CheckSymbolExists.cxx.obj] Error 1 +mingw32-make[1]: Leaving directory 'C:/libs/oldpip/pip_0.4.0_r5/CMakeFiles/CMakeTmp' +makefile:116: recipe for target 'cmTryCompileExec2522107080/fast' failed +mingw32-make.exe: *** [cmTryCompileExec2522107080/fast] Error 2 + +File C:/libs/oldpip/pip_0.4.0_r5/CMakeFiles/CMakeTmp/CheckSymbolExists.cxx: +/* */ +#include + +int main(int argc, char** argv) +{ + (void)argv; +#ifndef Q_WS_MAC + return ((int*)(&Q_WS_MAC))[argc]; +#else + (void)argc; + return 0; +#endif +} + diff --git a/_oldpip/pip_0.4.0_r5/CMakeFiles/CMakeOutput.log b/_oldpip/pip_0.4.0_r5/CMakeFiles/CMakeOutput.log new file mode 100644 index 0000000..fc88a59 --- /dev/null +++ b/_oldpip/pip_0.4.0_r5/CMakeFiles/CMakeOutput.log @@ -0,0 +1,527 @@ +The system is: Windows - 6.1 - AMD64 +Compiling the C compiler identification source file "CMakeCCompilerId.c" succeeded. +Compiler: C:/mingw/x32/bin/gcc.exe +Build flags: +Id flags: + +The output was: +0 + + +Compilation of the C compiler identification source "CMakeCCompilerId.c" produced "a.exe" + +The C compiler identification is GNU, found in "C:/libs/oldpip/pip_0.4.0_r5/CMakeFiles/2.8.12.2/CompilerIdC/a.exe" + +Compiling the CXX compiler identification source file "CMakeCXXCompilerId.cpp" succeeded. +Compiler: C:/mingw/x32/bin/g++.exe +Build flags: +Id flags: + +The output was: +0 + + +Compilation of the CXX compiler identification source "CMakeCXXCompilerId.cpp" produced "a.exe" + +The CXX compiler identification is GNU, found in "C:/libs/oldpip/pip_0.4.0_r5/CMakeFiles/2.8.12.2/CompilerIdCXX/a.exe" + +Determining if the C compiler works passed with the following output: +Change Dir: C:/libs/oldpip/pip_0.4.0_r5/CMakeFiles/CMakeTmp + +Run Build Command:C:/mingw/x32/bin/mingw32-make.exe "cmTryCompileExec3426415067/fast" +make -f CMakeFiles\cmTryCompileExec3426415067.dir\build.make CMakeFiles/cmTryCompileExec3426415067.dir/build + +C:\libs\oldpip\pip_0.4.0_r5\CMakeFiles\CMakeTmp>mingw32-make -f CMakeFiles\cmTryCompileExec3426415067.dir\build.make CMakeFiles/cmTryCompileExec3426415067.dir/build +mingw32-make[1]: Entering directory 'C:/libs/oldpip/pip_0.4.0_r5/CMakeFiles/CMakeTmp' +"C:\Program Files (x86)\CMake 2.8\bin\cmake.exe" -E cmake_progress_report C:\libs\oldpip\pip_0.4.0_r5\CMakeFiles\CMakeTmp\CMakeFiles 1 +Building C object CMakeFiles/cmTryCompileExec3426415067.dir/testCCompiler.c.obj +C:\mingw\x32\bin\gcc.exe -o CMakeFiles\cmTryCompileExec3426415067.dir\testCCompiler.c.obj -c C:\libs\oldpip\pip_0.4.0_r5\CMakeFiles\CMakeTmp\testCCompiler.c +Linking C executable cmTryCompileExec3426415067.exe +"C:\Program Files (x86)\CMake 2.8\bin\cmake.exe" -E cmake_link_script CMakeFiles\cmTryCompileExec3426415067.dir\link.txt --verbose=1 +"C:\Program Files (x86)\CMake 2.8\bin\cmake.exe" -E remove -f CMakeFiles\cmTryCompileExec3426415067.dir/objects.a +C:\mingw\x32\bin\ar.exe cr CMakeFiles\cmTryCompileExec3426415067.dir/objects.a @CMakeFiles\cmTryCompileExec3426415067.dir\objects1.rsp +C:\mingw\x32\bin\gcc.exe -Wl,--whole-archive CMakeFiles\cmTryCompileExec3426415067.dir/objects.a -Wl,--no-whole-archive -o cmTryCompileExec3426415067.exe -Wl,--out-implib,libcmTryCompileExec3426415067.dll.a -Wl,--major-image-version,0,--minor-image-version,0 -lkernel32 -luser32 -lgdi32 -lwinspool -lshell32 -lole32 -loleaut32 -luuid -lcomdlg32 -ladvapi32 +mingw32-make[1]: Leaving directory 'C:/libs/oldpip/pip_0.4.0_r5/CMakeFiles/CMakeTmp' + + +Detecting C compiler ABI info compiled with the following output: +Change Dir: C:/libs/oldpip/pip_0.4.0_r5/CMakeFiles/CMakeTmp + +Run Build Command:C:/mingw/x32/bin/mingw32-make.exe "cmTryCompileExec686806269/fast" +make -f CMakeFiles\cmTryCompileExec686806269.dir\build.make CMakeFiles/cmTryCompileExec686806269.dir/build + +C:\libs\oldpip\pip_0.4.0_r5\CMakeFiles\CMakeTmp>mingw32-make -f CMakeFiles\cmTryCompileExec686806269.dir\build.make CMakeFiles/cmTryCompileExec686806269.dir/build +mingw32-make[1]: Entering directory 'C:/libs/oldpip/pip_0.4.0_r5/CMakeFiles/CMakeTmp' +"C:\Program Files (x86)\CMake 2.8\bin\cmake.exe" -E cmake_progress_report C:\libs\oldpip\pip_0.4.0_r5\CMakeFiles\CMakeTmp\CMakeFiles 1 +Building C object CMakeFiles/cmTryCompileExec686806269.dir/CMakeCCompilerABI.c.obj +C:\mingw\x32\bin\gcc.exe -o CMakeFiles\cmTryCompileExec686806269.dir\CMakeCCompilerABI.c.obj -c "C:\Program Files (x86)\CMake 2.8\share\cmake-2.8\Modules\CMakeCCompilerABI.c" +Linking C executable cmTryCompileExec686806269.exe +"C:\Program Files (x86)\CMake 2.8\bin\cmake.exe" -E cmake_link_script CMakeFiles\cmTryCompileExec686806269.dir\link.txt --verbose=1 +"C:\Program Files (x86)\CMake 2.8\bin\cmake.exe" -E remove -f CMakeFiles\cmTryCompileExec686806269.dir/objects.a +C:\mingw\x32\bin\ar.exe cr CMakeFiles\cmTryCompileExec686806269.dir/objects.a @CMakeFiles\cmTryCompileExec686806269.dir\objects1.rsp +C:\mingw\x32\bin\gcc.exe -v -Wl,--whole-archive CMakeFiles\cmTryCompileExec686806269.dir/objects.a -Wl,--no-whole-archive -o cmTryCompileExec686806269.exe -Wl,--out-implib,libcmTryCompileExec686806269.dll.a -Wl,--major-image-version,0,--minor-image-version,0 +Using built-in specs. +COLLECT_GCC=C:\mingw\x32\bin\gcc.exe +COLLECT_LTO_WRAPPER=C:/mingw/x32/bin/../libexec/gcc/i686-w64-mingw32/4.9.2/lto-wrapper.exe +Target: i686-w64-mingw32 +Configured with: ../../../src/gcc-4.9.2/configure --host=i686-w64-mingw32 --build=i686-w64-mingw32 --target=i686-w64-mingw32 --prefix=/mingw32 --with-sysroot=/c/mingw492/i686-492-win32-dwarf-rt_v3-rev0/mingw32 --with-gxx-include-dir=/mingw32/i686-w64-mingw32/include/c++ --enable-shared --enable-static --disable-multilib --enable-languages=ada,c,c++,fortran,objc,obj-c++,lto --enable-libstdcxx-time=yes --enable-threads=win32 --enable-libgomp --enable-libatomic --enable-lto --enable-graphite --enable-checking=release --enable-fully-dynamic-string --enable-version-specific-runtime-libs --disable-sjlj-exceptions --with-dwarf2 --disable-isl-version-check --disable-cloog-version-check --disable-libstdcxx-pch --disable-libstdcxx-debug --enable-bootstrap --disable-rpath --disable-win32-registry --disable-nls --disable-werror --disable-symvers --with-gnu-as --with-gnu-ld --with-arch=i686 --with-tune=generic --with-libiconv --with-system-zlib --with-gmp=/c/mingw492/prerequisites/i686-w64-mingw32-static --with-mpfr=/c/mingw492/prerequisites/i686-w64-mingw32-static --with-mpc=/c/mingw492/prerequisites/i686-w64-mingw32-static --with-isl=/c/mingw492/prerequisites/i686-w64-mingw32-static --with-cloog=/c/mingw492/prerequisites/i686-w64-mingw32-static --enable-cloog-backend=isl --with-pkgversion='i686-win32-dwarf-rev0, Built by MinGW-W64 project' --with-bugurl=http://sourceforge.net/projects/mingw-w64 CFLAGS='-O2 -pipe -I/c/mingw492/i686-492-win32-dwarf-rt_v3-rev0/mingw32/opt/include -I/c/mingw492/prerequisites/i686-zlib-static/include -I/c/mingw492/prerequisites/i686-w64-mingw32-static/include' CXXFLAGS='-O2 -pipe -I/c/mingw492/i686-492-win32-dwarf-rt_v3-rev0/mingw32/opt/include -I/c/mingw492/prerequisites/i686-zlib-static/include -I/c/mingw492/prerequisites/i686-w64-mingw32-static/include' CPPFLAGS= LDFLAGS='-pipe -L/c/mingw492/i686-492-win32-dwarf-rt_v3-rev0/mingw32/opt/lib -L/c/mingw492/prerequisites/i686-zlib-static/lib -L/c/mingw492/prerequisites/i686-w64-mingw32-static/lib -Wl,--large-address-aware' +Thread model: win32 +gcc version 4.9.2 (i686-win32-dwarf-rev0, Built by MinGW-W64 project) +COMPILER_PATH=C:/mingw/x32/bin/../libexec/gcc/i686-w64-mingw32/4.9.2/;C:/mingw/x32/bin/../libexec/gcc/;C:/mingw/x32/bin/../lib/gcc/i686-w64-mingw32/4.9.2/../../../../i686-w64-mingw32/bin/ +LIBRARY_PATH=C:/mingw/x32/bin/../lib/gcc/i686-w64-mingw32/4.9.2/;C:/mingw/x32/bin/../lib/gcc/;C:/mingw/x32/bin/../lib/gcc/i686-w64-mingw32/4.9.2/../../../../i686-w64-mingw32/lib/../lib/;C:/mingw/x32/bin/../lib/gcc/i686-w64-mingw32/4.9.2/../../../../lib/;C:/mingw/x32/bin/../lib/gcc/i686-w64-mingw32/4.9.2/../../../../i686-w64-mingw32/lib/;C:/mingw/x32/bin/../lib/gcc/i686-w64-mingw32/4.9.2/../../../ +COLLECT_GCC_OPTIONS='-v' '-o' 'cmTryCompileExec686806269.exe' '-mtune=generic' '-march=i686' + C:/mingw/x32/bin/../libexec/gcc/i686-w64-mingw32/4.9.2/collect2.exe -plugin C:/mingw/x32/bin/../libexec/gcc/i686-w64-mingw32/4.9.2/liblto_plugin-0.dll -plugin-opt=C:/mingw/x32/bin/../libexec/gcc/i686-w64-mingw32/4.9.2/lto-wrapper.exe -plugin-opt=-fresolution=C:\Users\Andrey\AppData\Local\Temp\cceObk9f.res -plugin-opt=-pass-through=-lmingw32 -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_eh -plugin-opt=-pass-through=-lmoldname -plugin-opt=-pass-through=-lmingwex -plugin-opt=-pass-through=-lmsvcrt -plugin-opt=-pass-through=-ladvapi32 -plugin-opt=-pass-through=-lshell32 -plugin-opt=-pass-through=-luser32 -plugin-opt=-pass-through=-lkernel32 -plugin-opt=-pass-through=-liconv -plugin-opt=-pass-through=-lmingw32 -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_eh -plugin-opt=-pass-through=-lmoldname -plugin-opt=-pass-through=-lmingwex -plugin-opt=-pass-through=-lmsvcrt --sysroot=C:/mingw492/i686-492-win32-dwarf-rt_v3-rev0/mingw32 -m i386pe -Bdynamic -o cmTryCompileExec686806269.exe C:/mingw/x32/bin/../lib/gcc/i686-w64-mingw32/4.9.2/../../../../i686-w64-mingw32/lib/../lib/crt2.o C:/mingw/x32/bin/../lib/gcc/i686-w64-mingw32/4.9.2/crtbegin.o -LC:/mingw/x32/bin/../lib/gcc/i686-w64-mingw32/4.9.2 -LC:/mingw/x32/bin/../lib/gcc -LC:/mingw/x32/bin/../lib/gcc/i686-w64-mingw32/4.9.2/../../../../i686-w64-mingw32/lib/../lib -LC:/mingw/x32/bin/../lib/gcc/i686-w64-mingw32/4.9.2/../../../../lib -LC:/mingw/x32/bin/../lib/gcc/i686-w64-mingw32/4.9.2/../../../../i686-w64-mingw32/lib -LC:/mingw/x32/bin/../lib/gcc/i686-w64-mingw32/4.9.2/../../.. --whole-archive CMakeFiles\cmTryCompileExec686806269.dir/objects.a --no-whole-archive --out-implib libcmTryCompileExec686806269.dll.a --major-image-version 0 --minor-image-version 0 -lmingw32 -lgcc -lgcc_eh -lmoldname -lmingwex -lmsvcrt -ladvapi32 -lshell32 -luser32 -lkernel32 -liconv -lmingw32 -lgcc -lgcc_eh -lmoldname -lmingwex -lmsvcrt C:/mingw/x32/bin/../lib/gcc/i686-w64-mingw32/4.9.2/crtend.o +mingw32-make[1]: Leaving directory 'C:/libs/oldpip/pip_0.4.0_r5/CMakeFiles/CMakeTmp' + + +Parsed C implicit link information from above output: + link line regex: [^( *|.*[/\])(ld\.exe|([^/\]+-)?ld|collect2)[^/\]*( |$)] + ignore line: [Change Dir: C:/libs/oldpip/pip_0.4.0_r5/CMakeFiles/CMakeTmp] + ignore line: [] + ignore line: [Run Build Command:C:/mingw/x32/bin/mingw32-make.exe "cmTryCompileExec686806269/fast"] + ignore line: [make -f CMakeFiles\cmTryCompileExec686806269.dir\build.make CMakeFiles/cmTryCompileExec686806269.dir/build] + ignore line: [] + ignore line: [C:\libs\oldpip\pip_0.4.0_r5\CMakeFiles\CMakeTmp>mingw32-make -f CMakeFiles\cmTryCompileExec686806269.dir\build.make CMakeFiles/cmTryCompileExec686806269.dir/build ] + ignore line: [mingw32-make[1]: Entering directory 'C:/libs/oldpip/pip_0.4.0_r5/CMakeFiles/CMakeTmp'] + ignore line: ["C:\Program Files (x86)\CMake 2.8\bin\cmake.exe" -E cmake_progress_report C:\libs\oldpip\pip_0.4.0_r5\CMakeFiles\CMakeTmp\CMakeFiles 1] + ignore line: [Building C object CMakeFiles/cmTryCompileExec686806269.dir/CMakeCCompilerABI.c.obj] + ignore line: [C:\mingw\x32\bin\gcc.exe -o CMakeFiles\cmTryCompileExec686806269.dir\CMakeCCompilerABI.c.obj -c "C:\Program Files (x86)\CMake 2.8\share\cmake-2.8\Modules\CMakeCCompilerABI.c"] + ignore line: [Linking C executable cmTryCompileExec686806269.exe] + ignore line: ["C:\Program Files (x86)\CMake 2.8\bin\cmake.exe" -E cmake_link_script CMakeFiles\cmTryCompileExec686806269.dir\link.txt --verbose=1] + ignore line: ["C:\Program Files (x86)\CMake 2.8\bin\cmake.exe" -E remove -f CMakeFiles\cmTryCompileExec686806269.dir/objects.a] + ignore line: [C:\mingw\x32\bin\ar.exe cr CMakeFiles\cmTryCompileExec686806269.dir/objects.a @CMakeFiles\cmTryCompileExec686806269.dir\objects1.rsp] + ignore line: [C:\mingw\x32\bin\gcc.exe -v -Wl,--whole-archive CMakeFiles\cmTryCompileExec686806269.dir/objects.a -Wl,--no-whole-archive -o cmTryCompileExec686806269.exe -Wl,--out-implib,libcmTryCompileExec686806269.dll.a -Wl,--major-image-version,0,--minor-image-version,0 ] + ignore line: [Using built-in specs.] + ignore line: [COLLECT_GCC=C:\mingw\x32\bin\gcc.exe] + ignore line: [COLLECT_LTO_WRAPPER=C:/mingw/x32/bin/../libexec/gcc/i686-w64-mingw32/4.9.2/lto-wrapper.exe] + ignore line: [Target: i686-w64-mingw32] + ignore line: [Configured with: ../../../src/gcc-4.9.2/configure --host=i686-w64-mingw32 --build=i686-w64-mingw32 --target=i686-w64-mingw32 --prefix=/mingw32 --with-sysroot=/c/mingw492/i686-492-win32-dwarf-rt_v3-rev0/mingw32 --with-gxx-include-dir=/mingw32/i686-w64-mingw32/include/c++ --enable-shared --enable-static --disable-multilib --enable-languages=ada,c,c++,fortran,objc,obj-c++,lto --enable-libstdcxx-time=yes --enable-threads=win32 --enable-libgomp --enable-libatomic --enable-lto --enable-graphite --enable-checking=release --enable-fully-dynamic-string --enable-version-specific-runtime-libs --disable-sjlj-exceptions --with-dwarf2 --disable-isl-version-check --disable-cloog-version-check --disable-libstdcxx-pch --disable-libstdcxx-debug --enable-bootstrap --disable-rpath --disable-win32-registry --disable-nls --disable-werror --disable-symvers --with-gnu-as --with-gnu-ld --with-arch=i686 --with-tune=generic --with-libiconv --with-system-zlib --with-gmp=/c/mingw492/prerequisites/i686-w64-mingw32-static --with-mpfr=/c/mingw492/prerequisites/i686-w64-mingw32-static --with-mpc=/c/mingw492/prerequisites/i686-w64-mingw32-static --with-isl=/c/mingw492/prerequisites/i686-w64-mingw32-static --with-cloog=/c/mingw492/prerequisites/i686-w64-mingw32-static --enable-cloog-backend=isl --with-pkgversion='i686-win32-dwarf-rev0, Built by MinGW-W64 project' --with-bugurl=http://sourceforge.net/projects/mingw-w64 CFLAGS='-O2 -pipe -I/c/mingw492/i686-492-win32-dwarf-rt_v3-rev0/mingw32/opt/include -I/c/mingw492/prerequisites/i686-zlib-static/include -I/c/mingw492/prerequisites/i686-w64-mingw32-static/include' CXXFLAGS='-O2 -pipe -I/c/mingw492/i686-492-win32-dwarf-rt_v3-rev0/mingw32/opt/include -I/c/mingw492/prerequisites/i686-zlib-static/include -I/c/mingw492/prerequisites/i686-w64-mingw32-static/include' CPPFLAGS= LDFLAGS='-pipe -L/c/mingw492/i686-492-win32-dwarf-rt_v3-rev0/mingw32/opt/lib -L/c/mingw492/prerequisites/i686-zlib-static/lib -L/c/mingw492/prerequisites/i686-w64-mingw32-static/lib -Wl,--large-address-aware'] + ignore line: [Thread model: win32] + ignore line: [gcc version 4.9.2 (i686-win32-dwarf-rev0, Built by MinGW-W64 project) ] + ignore line: [COMPILER_PATH=C:/mingw/x32/bin/../libexec/gcc/i686-w64-mingw32/4.9.2/] + ignore line: [C:/mingw/x32/bin/../libexec/gcc/] + ignore line: [C:/mingw/x32/bin/../lib/gcc/i686-w64-mingw32/4.9.2/../../../../i686-w64-mingw32/bin/] + ignore line: [LIBRARY_PATH=C:/mingw/x32/bin/../lib/gcc/i686-w64-mingw32/4.9.2/] + ignore line: [C:/mingw/x32/bin/../lib/gcc/] + ignore line: [C:/mingw/x32/bin/../lib/gcc/i686-w64-mingw32/4.9.2/../../../../i686-w64-mingw32/lib/../lib/] + ignore line: [C:/mingw/x32/bin/../lib/gcc/i686-w64-mingw32/4.9.2/../../../../lib/] + ignore line: [C:/mingw/x32/bin/../lib/gcc/i686-w64-mingw32/4.9.2/../../../../i686-w64-mingw32/lib/] + ignore line: [C:/mingw/x32/bin/../lib/gcc/i686-w64-mingw32/4.9.2/../../../] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'cmTryCompileExec686806269.exe' '-mtune=generic' '-march=i686'] + link line: [ C:/mingw/x32/bin/../libexec/gcc/i686-w64-mingw32/4.9.2/collect2.exe -plugin C:/mingw/x32/bin/../libexec/gcc/i686-w64-mingw32/4.9.2/liblto_plugin-0.dll -plugin-opt=C:/mingw/x32/bin/../libexec/gcc/i686-w64-mingw32/4.9.2/lto-wrapper.exe -plugin-opt=-fresolution=C:\Users\Andrey\AppData\Local\Temp\cceObk9f.res -plugin-opt=-pass-through=-lmingw32 -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_eh -plugin-opt=-pass-through=-lmoldname -plugin-opt=-pass-through=-lmingwex -plugin-opt=-pass-through=-lmsvcrt -plugin-opt=-pass-through=-ladvapi32 -plugin-opt=-pass-through=-lshell32 -plugin-opt=-pass-through=-luser32 -plugin-opt=-pass-through=-lkernel32 -plugin-opt=-pass-through=-liconv -plugin-opt=-pass-through=-lmingw32 -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_eh -plugin-opt=-pass-through=-lmoldname -plugin-opt=-pass-through=-lmingwex -plugin-opt=-pass-through=-lmsvcrt --sysroot=C:/mingw492/i686-492-win32-dwarf-rt_v3-rev0/mingw32 -m i386pe -Bdynamic -o cmTryCompileExec686806269.exe C:/mingw/x32/bin/../lib/gcc/i686-w64-mingw32/4.9.2/../../../../i686-w64-mingw32/lib/../lib/crt2.o C:/mingw/x32/bin/../lib/gcc/i686-w64-mingw32/4.9.2/crtbegin.o -LC:/mingw/x32/bin/../lib/gcc/i686-w64-mingw32/4.9.2 -LC:/mingw/x32/bin/../lib/gcc -LC:/mingw/x32/bin/../lib/gcc/i686-w64-mingw32/4.9.2/../../../../i686-w64-mingw32/lib/../lib -LC:/mingw/x32/bin/../lib/gcc/i686-w64-mingw32/4.9.2/../../../../lib -LC:/mingw/x32/bin/../lib/gcc/i686-w64-mingw32/4.9.2/../../../../i686-w64-mingw32/lib -LC:/mingw/x32/bin/../lib/gcc/i686-w64-mingw32/4.9.2/../../.. --whole-archive CMakeFiles\cmTryCompileExec686806269.dir/objects.a --no-whole-archive --out-implib libcmTryCompileExec686806269.dll.a --major-image-version 0 --minor-image-version 0 -lmingw32 -lgcc -lgcc_eh -lmoldname -lmingwex -lmsvcrt -ladvapi32 -lshell32 -luser32 -lkernel32 -liconv -lmingw32 -lgcc -lgcc_eh -lmoldname -lmingwex -lmsvcrt C:/mingw/x32/bin/../lib/gcc/i686-w64-mingw32/4.9.2/crtend.o] + arg [C:/mingw/x32/bin/../libexec/gcc/i686-w64-mingw32/4.9.2/collect2.exe] ==> ignore + arg [-plugin] ==> ignore + arg [C:/mingw/x32/bin/../libexec/gcc/i686-w64-mingw32/4.9.2/liblto_plugin-0.dll] ==> ignore + arg [-plugin-opt=C:/mingw/x32/bin/../libexec/gcc/i686-w64-mingw32/4.9.2/lto-wrapper.exe] ==> ignore + arg [-plugin-opt=-fresolution=C:\Users\Andrey\AppData\Local\Temp\cceObk9f.res] ==> ignore + arg [-plugin-opt=-pass-through=-lmingw32] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc_eh] ==> ignore + arg [-plugin-opt=-pass-through=-lmoldname] ==> ignore + arg [-plugin-opt=-pass-through=-lmingwex] ==> ignore + arg [-plugin-opt=-pass-through=-lmsvcrt] ==> ignore + arg [-plugin-opt=-pass-through=-ladvapi32] ==> ignore + arg [-plugin-opt=-pass-through=-lshell32] ==> ignore + arg [-plugin-opt=-pass-through=-luser32] ==> ignore + arg [-plugin-opt=-pass-through=-lkernel32] ==> ignore + arg [-plugin-opt=-pass-through=-liconv] ==> ignore + arg [-plugin-opt=-pass-through=-lmingw32] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc_eh] ==> ignore + arg [-plugin-opt=-pass-through=-lmoldname] ==> ignore + arg [-plugin-opt=-pass-through=-lmingwex] ==> ignore + arg [-plugin-opt=-pass-through=-lmsvcrt] ==> ignore + arg [--sysroot=C:/mingw492/i686-492-win32-dwarf-rt_v3-rev0/mingw32] ==> ignore + arg [-m] ==> ignore + arg [i386pe] ==> ignore + arg [-Bdynamic] ==> ignore + arg [-o] ==> ignore + arg [cmTryCompileExec686806269.exe] ==> ignore + arg [C:/mingw/x32/bin/../lib/gcc/i686-w64-mingw32/4.9.2/../../../../i686-w64-mingw32/lib/../lib/crt2.o] ==> ignore + arg [C:/mingw/x32/bin/../lib/gcc/i686-w64-mingw32/4.9.2/crtbegin.o] ==> ignore + arg [-LC:/mingw/x32/bin/../lib/gcc/i686-w64-mingw32/4.9.2] ==> dir [C:/mingw/x32/bin/../lib/gcc/i686-w64-mingw32/4.9.2] + arg [-LC:/mingw/x32/bin/../lib/gcc] ==> dir [C:/mingw/x32/bin/../lib/gcc] + arg [-LC:/mingw/x32/bin/../lib/gcc/i686-w64-mingw32/4.9.2/../../../../i686-w64-mingw32/lib/../lib] ==> dir [C:/mingw/x32/bin/../lib/gcc/i686-w64-mingw32/4.9.2/../../../../i686-w64-mingw32/lib/../lib] + arg [-LC:/mingw/x32/bin/../lib/gcc/i686-w64-mingw32/4.9.2/../../../../lib] ==> dir [C:/mingw/x32/bin/../lib/gcc/i686-w64-mingw32/4.9.2/../../../../lib] + arg [-LC:/mingw/x32/bin/../lib/gcc/i686-w64-mingw32/4.9.2/../../../../i686-w64-mingw32/lib] ==> dir [C:/mingw/x32/bin/../lib/gcc/i686-w64-mingw32/4.9.2/../../../../i686-w64-mingw32/lib] + arg [-LC:/mingw/x32/bin/../lib/gcc/i686-w64-mingw32/4.9.2/../../..] ==> dir [C:/mingw/x32/bin/../lib/gcc/i686-w64-mingw32/4.9.2/../../..] + arg [--whole-archive] ==> ignore + arg [CMakeFiles\cmTryCompileExec686806269.dir/objects.a] ==> ignore + arg [--no-whole-archive] ==> ignore + arg [--out-implib] ==> ignore + arg [libcmTryCompileExec686806269.dll.a] ==> ignore + arg [--major-image-version] ==> ignore + arg [0] ==> ignore + arg [--minor-image-version] ==> ignore + arg [0] ==> ignore + arg [-lmingw32] ==> lib [mingw32] + arg [-lgcc] ==> lib [gcc] + arg [-lgcc_eh] ==> lib [gcc_eh] + arg [-lmoldname] ==> lib [moldname] + arg [-lmingwex] ==> lib [mingwex] + arg [-lmsvcrt] ==> lib [msvcrt] + arg [-ladvapi32] ==> lib [advapi32] + arg [-lshell32] ==> lib [shell32] + arg [-luser32] ==> lib [user32] + arg [-lkernel32] ==> lib [kernel32] + arg [-liconv] ==> lib [iconv] + arg [-lmingw32] ==> lib [mingw32] + arg [-lgcc] ==> lib [gcc] + arg [-lgcc_eh] ==> lib [gcc_eh] + arg [-lmoldname] ==> lib [moldname] + arg [-lmingwex] ==> lib [mingwex] + arg [-lmsvcrt] ==> lib [msvcrt] + arg [C:/mingw/x32/bin/../lib/gcc/i686-w64-mingw32/4.9.2/crtend.o] ==> ignore + remove lib [gcc] + remove lib [gcc_eh] + remove lib [gcc] + remove lib [gcc_eh] + collapse library dir [C:/mingw/x32/bin/../lib/gcc/i686-w64-mingw32/4.9.2] ==> [C:/mingw/x32/lib/gcc/i686-w64-mingw32/4.9.2] + collapse library dir [C:/mingw/x32/bin/../lib/gcc] ==> [C:/mingw/x32/lib/gcc] + collapse library dir [C:/mingw/x32/bin/../lib/gcc/i686-w64-mingw32/4.9.2/../../../../i686-w64-mingw32/lib/../lib] ==> [C:/mingw/x32/i686-w64-mingw32/lib] + collapse library dir [C:/mingw/x32/bin/../lib/gcc/i686-w64-mingw32/4.9.2/../../../../lib] ==> [C:/mingw/x32/lib] + collapse library dir [C:/mingw/x32/bin/../lib/gcc/i686-w64-mingw32/4.9.2/../../../../i686-w64-mingw32/lib] ==> [C:/mingw/x32/i686-w64-mingw32/lib] + collapse library dir [C:/mingw/x32/bin/../lib/gcc/i686-w64-mingw32/4.9.2/../../..] ==> [C:/mingw/x32/lib] + implicit libs: [mingw32;moldname;mingwex;msvcrt;advapi32;shell32;user32;kernel32;iconv;mingw32;moldname;mingwex;msvcrt] + implicit dirs: [C:/mingw/x32/lib/gcc/i686-w64-mingw32/4.9.2;C:/mingw/x32/lib/gcc;C:/mingw/x32/i686-w64-mingw32/lib;C:/mingw/x32/lib] + implicit fwks: [] + + +Determining if the CXX compiler works passed with the following output: +Change Dir: C:/libs/oldpip/pip_0.4.0_r5/CMakeFiles/CMakeTmp + +Run Build Command:C:/mingw/x32/bin/mingw32-make.exe "cmTryCompileExec2395778600/fast" +make -f CMakeFiles\cmTryCompileExec2395778600.dir\build.make CMakeFiles/cmTryCompileExec2395778600.dir/build + +C:\libs\oldpip\pip_0.4.0_r5\CMakeFiles\CMakeTmp>mingw32-make -f CMakeFiles\cmTryCompileExec2395778600.dir\build.make CMakeFiles/cmTryCompileExec2395778600.dir/build +mingw32-make[1]: Entering directory 'C:/libs/oldpip/pip_0.4.0_r5/CMakeFiles/CMakeTmp' +"C:\Program Files (x86)\CMake 2.8\bin\cmake.exe" -E cmake_progress_report C:\libs\oldpip\pip_0.4.0_r5\CMakeFiles\CMakeTmp\CMakeFiles 1 +Building CXX object CMakeFiles/cmTryCompileExec2395778600.dir/testCXXCompiler.cxx.obj +C:\mingw\x32\bin\g++.exe -o CMakeFiles\cmTryCompileExec2395778600.dir\testCXXCompiler.cxx.obj -c C:\libs\oldpip\pip_0.4.0_r5\CMakeFiles\CMakeTmp\testCXXCompiler.cxx +Linking CXX executable cmTryCompileExec2395778600.exe +"C:\Program Files (x86)\CMake 2.8\bin\cmake.exe" -E cmake_link_script CMakeFiles\cmTryCompileExec2395778600.dir\link.txt --verbose=1 +"C:\Program Files (x86)\CMake 2.8\bin\cmake.exe" -E remove -f CMakeFiles\cmTryCompileExec2395778600.dir/objects.a +C:\mingw\x32\bin\ar.exe cr CMakeFiles\cmTryCompileExec2395778600.dir/objects.a @CMakeFiles\cmTryCompileExec2395778600.dir\objects1.rsp +C:\mingw\x32\bin\g++.exe -Wl,--whole-archive CMakeFiles\cmTryCompileExec2395778600.dir/objects.a -Wl,--no-whole-archive -o cmTryCompileExec2395778600.exe -Wl,--out-implib,libcmTryCompileExec2395778600.dll.a -Wl,--major-image-version,0,--minor-image-version,0 -lkernel32 -luser32 -lgdi32 -lwinspool -lshell32 -lole32 -loleaut32 -luuid -lcomdlg32 -ladvapi32 +mingw32-make[1]: Leaving directory 'C:/libs/oldpip/pip_0.4.0_r5/CMakeFiles/CMakeTmp' + + +Detecting CXX compiler ABI info compiled with the following output: +Change Dir: C:/libs/oldpip/pip_0.4.0_r5/CMakeFiles/CMakeTmp + +Run Build Command:C:/mingw/x32/bin/mingw32-make.exe "cmTryCompileExec3073170174/fast" +make -f CMakeFiles\cmTryCompileExec3073170174.dir\build.make CMakeFiles/cmTryCompileExec3073170174.dir/build + +C:\libs\oldpip\pip_0.4.0_r5\CMakeFiles\CMakeTmp>mingw32-make -f CMakeFiles\cmTryCompileExec3073170174.dir\build.make CMakeFiles/cmTryCompileExec3073170174.dir/build +mingw32-make[1]: Entering directory 'C:/libs/oldpip/pip_0.4.0_r5/CMakeFiles/CMakeTmp' +"C:\Program Files (x86)\CMake 2.8\bin\cmake.exe" -E cmake_progress_report C:\libs\oldpip\pip_0.4.0_r5\CMakeFiles\CMakeTmp\CMakeFiles 1 +Building CXX object CMakeFiles/cmTryCompileExec3073170174.dir/CMakeCXXCompilerABI.cpp.obj +C:\mingw\x32\bin\g++.exe -o CMakeFiles\cmTryCompileExec3073170174.dir\CMakeCXXCompilerABI.cpp.obj -c "C:\Program Files (x86)\CMake 2.8\share\cmake-2.8\Modules\CMakeCXXCompilerABI.cpp" +Linking CXX executable cmTryCompileExec3073170174.exe +"C:\Program Files (x86)\CMake 2.8\bin\cmake.exe" -E cmake_link_script CMakeFiles\cmTryCompileExec3073170174.dir\link.txt --verbose=1 +"C:\Program Files (x86)\CMake 2.8\bin\cmake.exe" -E remove -f CMakeFiles\cmTryCompileExec3073170174.dir/objects.a +C:\mingw\x32\bin\ar.exe cr CMakeFiles\cmTryCompileExec3073170174.dir/objects.a @CMakeFiles\cmTryCompileExec3073170174.dir\objects1.rsp +C:\mingw\x32\bin\g++.exe -v -Wl,--whole-archive CMakeFiles\cmTryCompileExec3073170174.dir/objects.a -Wl,--no-whole-archive -o cmTryCompileExec3073170174.exe -Wl,--out-implib,libcmTryCompileExec3073170174.dll.a -Wl,--major-image-version,0,--minor-image-version,0 +Using built-in specs. +COLLECT_GCC=C:\mingw\x32\bin\g++.exe +COLLECT_LTO_WRAPPER=C:/mingw/x32/bin/../libexec/gcc/i686-w64-mingw32/4.9.2/lto-wrapper.exe +Target: i686-w64-mingw32 +Configured with: ../../../src/gcc-4.9.2/configure --host=i686-w64-mingw32 --build=i686-w64-mingw32 --target=i686-w64-mingw32 --prefix=/mingw32 --with-sysroot=/c/mingw492/i686-492-win32-dwarf-rt_v3-rev0/mingw32 --with-gxx-include-dir=/mingw32/i686-w64-mingw32/include/c++ --enable-shared --enable-static --disable-multilib --enable-languages=ada,c,c++,fortran,objc,obj-c++,lto --enable-libstdcxx-time=yes --enable-threads=win32 --enable-libgomp --enable-libatomic --enable-lto --enable-graphite --enable-checking=release --enable-fully-dynamic-string --enable-version-specific-runtime-libs --disable-sjlj-exceptions --with-dwarf2 --disable-isl-version-check --disable-cloog-version-check --disable-libstdcxx-pch --disable-libstdcxx-debug --enable-bootstrap --disable-rpath --disable-win32-registry --disable-nls --disable-werror --disable-symvers --with-gnu-as --with-gnu-ld --with-arch=i686 --with-tune=generic --with-libiconv --with-system-zlib --with-gmp=/c/mingw492/prerequisites/i686-w64-mingw32-static --with-mpfr=/c/mingw492/prerequisites/i686-w64-mingw32-static --with-mpc=/c/mingw492/prerequisites/i686-w64-mingw32-static --with-isl=/c/mingw492/prerequisites/i686-w64-mingw32-static --with-cloog=/c/mingw492/prerequisites/i686-w64-mingw32-static --enable-cloog-backend=isl --with-pkgversion='i686-win32-dwarf-rev0, Built by MinGW-W64 project' --with-bugurl=http://sourceforge.net/projects/mingw-w64 CFLAGS='-O2 -pipe -I/c/mingw492/i686-492-win32-dwarf-rt_v3-rev0/mingw32/opt/include -I/c/mingw492/prerequisites/i686-zlib-static/include -I/c/mingw492/prerequisites/i686-w64-mingw32-static/include' CXXFLAGS='-O2 -pipe -I/c/mingw492/i686-492-win32-dwarf-rt_v3-rev0/mingw32/opt/include -I/c/mingw492/prerequisites/i686-zlib-static/include -I/c/mingw492/prerequisites/i686-w64-mingw32-static/include' CPPFLAGS= LDFLAGS='-pipe -L/c/mingw492/i686-492-win32-dwarf-rt_v3-rev0/mingw32/opt/lib -L/c/mingw492/prerequisites/i686-zlib-static/lib -L/c/mingw492/prerequisites/i686-w64-mingw32-static/lib -Wl,--large-address-aware' +Thread model: win32 +gcc version 4.9.2 (i686-win32-dwarf-rev0, Built by MinGW-W64 project) +COMPILER_PATH=C:/mingw/x32/bin/../libexec/gcc/i686-w64-mingw32/4.9.2/;C:/mingw/x32/bin/../libexec/gcc/;C:/mingw/x32/bin/../lib/gcc/i686-w64-mingw32/4.9.2/../../../../i686-w64-mingw32/bin/ +LIBRARY_PATH=C:/mingw/x32/bin/../lib/gcc/i686-w64-mingw32/4.9.2/;C:/mingw/x32/bin/../lib/gcc/;C:/mingw/x32/bin/../lib/gcc/i686-w64-mingw32/4.9.2/../../../../i686-w64-mingw32/lib/../lib/;C:/mingw/x32/bin/../lib/gcc/i686-w64-mingw32/4.9.2/../../../../lib/;C:/mingw/x32/bin/../lib/gcc/i686-w64-mingw32/4.9.2/../../../../i686-w64-mingw32/lib/;C:/mingw/x32/bin/../lib/gcc/i686-w64-mingw32/4.9.2/../../../ +COLLECT_GCC_OPTIONS='-v' '-o' 'cmTryCompileExec3073170174.exe' '-shared-libgcc' '-mtune=generic' '-march=i686' + C:/mingw/x32/bin/../libexec/gcc/i686-w64-mingw32/4.9.2/collect2.exe -plugin C:/mingw/x32/bin/../libexec/gcc/i686-w64-mingw32/4.9.2/liblto_plugin-0.dll -plugin-opt=C:/mingw/x32/bin/../libexec/gcc/i686-w64-mingw32/4.9.2/lto-wrapper.exe -plugin-opt=-fresolution=C:\Users\Andrey\AppData\Local\Temp\ccV5GDaY.res -plugin-opt=-pass-through=-lmingw32 -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lmoldname -plugin-opt=-pass-through=-lmingwex -plugin-opt=-pass-through=-lmsvcrt -plugin-opt=-pass-through=-ladvapi32 -plugin-opt=-pass-through=-lshell32 -plugin-opt=-pass-through=-luser32 -plugin-opt=-pass-through=-lkernel32 -plugin-opt=-pass-through=-liconv -plugin-opt=-pass-through=-lmingw32 -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lmoldname -plugin-opt=-pass-through=-lmingwex -plugin-opt=-pass-through=-lmsvcrt --sysroot=C:/mingw492/i686-492-win32-dwarf-rt_v3-rev0/mingw32 -m i386pe -Bdynamic -u ___register_frame_info -u ___deregister_frame_info -o cmTryCompileExec3073170174.exe C:/mingw/x32/bin/../lib/gcc/i686-w64-mingw32/4.9.2/../../../../i686-w64-mingw32/lib/../lib/crt2.o C:/mingw/x32/bin/../lib/gcc/i686-w64-mingw32/4.9.2/crtbegin.o -LC:/mingw/x32/bin/../lib/gcc/i686-w64-mingw32/4.9.2 -LC:/mingw/x32/bin/../lib/gcc -LC:/mingw/x32/bin/../lib/gcc/i686-w64-mingw32/4.9.2/../../../../i686-w64-mingw32/lib/../lib -LC:/mingw/x32/bin/../lib/gcc/i686-w64-mingw32/4.9.2/../../../../lib -LC:/mingw/x32/bin/../lib/gcc/i686-w64-mingw32/4.9.2/../../../../i686-w64-mingw32/lib -LC:/mingw/x32/bin/../lib/gcc/i686-w64-mingw32/4.9.2/../../.. --whole-archive CMakeFiles\cmTryCompileExec3073170174.dir/objects.a --no-whole-archive --out-implib libcmTryCompileExec3073170174.dll.a --major-image-version 0 --minor-image-version 0 -lstdc++ -lmingw32 -lgcc_s -lgcc -lmoldname -lmingwex -lmsvcrt -ladvapi32 -lshell32 -luser32 -lkernel32 -liconv -lmingw32 -lgcc_s -lgcc -lmoldname -lmingwex -lmsvcrt C:/mingw/x32/bin/../lib/gcc/i686-w64-mingw32/4.9.2/crtend.o +mingw32-make[1]: Leaving directory 'C:/libs/oldpip/pip_0.4.0_r5/CMakeFiles/CMakeTmp' + + +Parsed CXX implicit link information from above output: + link line regex: [^( *|.*[/\])(ld\.exe|([^/\]+-)?ld|collect2)[^/\]*( |$)] + ignore line: [Change Dir: C:/libs/oldpip/pip_0.4.0_r5/CMakeFiles/CMakeTmp] + ignore line: [] + ignore line: [Run Build Command:C:/mingw/x32/bin/mingw32-make.exe "cmTryCompileExec3073170174/fast"] + ignore line: [make -f CMakeFiles\cmTryCompileExec3073170174.dir\build.make CMakeFiles/cmTryCompileExec3073170174.dir/build] + ignore line: [] + ignore line: [C:\libs\oldpip\pip_0.4.0_r5\CMakeFiles\CMakeTmp>mingw32-make -f CMakeFiles\cmTryCompileExec3073170174.dir\build.make CMakeFiles/cmTryCompileExec3073170174.dir/build ] + ignore line: [mingw32-make[1]: Entering directory 'C:/libs/oldpip/pip_0.4.0_r5/CMakeFiles/CMakeTmp'] + ignore line: ["C:\Program Files (x86)\CMake 2.8\bin\cmake.exe" -E cmake_progress_report C:\libs\oldpip\pip_0.4.0_r5\CMakeFiles\CMakeTmp\CMakeFiles 1] + ignore line: [Building CXX object CMakeFiles/cmTryCompileExec3073170174.dir/CMakeCXXCompilerABI.cpp.obj] + ignore line: [C:\mingw\x32\bin\g++.exe -o CMakeFiles\cmTryCompileExec3073170174.dir\CMakeCXXCompilerABI.cpp.obj -c "C:\Program Files (x86)\CMake 2.8\share\cmake-2.8\Modules\CMakeCXXCompilerABI.cpp"] + ignore line: [Linking CXX executable cmTryCompileExec3073170174.exe] + ignore line: ["C:\Program Files (x86)\CMake 2.8\bin\cmake.exe" -E cmake_link_script CMakeFiles\cmTryCompileExec3073170174.dir\link.txt --verbose=1] + ignore line: ["C:\Program Files (x86)\CMake 2.8\bin\cmake.exe" -E remove -f CMakeFiles\cmTryCompileExec3073170174.dir/objects.a] + ignore line: [C:\mingw\x32\bin\ar.exe cr CMakeFiles\cmTryCompileExec3073170174.dir/objects.a @CMakeFiles\cmTryCompileExec3073170174.dir\objects1.rsp] + ignore line: [C:\mingw\x32\bin\g++.exe -v -Wl,--whole-archive CMakeFiles\cmTryCompileExec3073170174.dir/objects.a -Wl,--no-whole-archive -o cmTryCompileExec3073170174.exe -Wl,--out-implib,libcmTryCompileExec3073170174.dll.a -Wl,--major-image-version,0,--minor-image-version,0 ] + ignore line: [Using built-in specs.] + ignore line: [COLLECT_GCC=C:\mingw\x32\bin\g++.exe] + ignore line: [COLLECT_LTO_WRAPPER=C:/mingw/x32/bin/../libexec/gcc/i686-w64-mingw32/4.9.2/lto-wrapper.exe] + ignore line: [Target: i686-w64-mingw32] + ignore line: [Configured with: ../../../src/gcc-4.9.2/configure --host=i686-w64-mingw32 --build=i686-w64-mingw32 --target=i686-w64-mingw32 --prefix=/mingw32 --with-sysroot=/c/mingw492/i686-492-win32-dwarf-rt_v3-rev0/mingw32 --with-gxx-include-dir=/mingw32/i686-w64-mingw32/include/c++ --enable-shared --enable-static --disable-multilib --enable-languages=ada,c,c++,fortran,objc,obj-c++,lto --enable-libstdcxx-time=yes --enable-threads=win32 --enable-libgomp --enable-libatomic --enable-lto --enable-graphite --enable-checking=release --enable-fully-dynamic-string --enable-version-specific-runtime-libs --disable-sjlj-exceptions --with-dwarf2 --disable-isl-version-check --disable-cloog-version-check --disable-libstdcxx-pch --disable-libstdcxx-debug --enable-bootstrap --disable-rpath --disable-win32-registry --disable-nls --disable-werror --disable-symvers --with-gnu-as --with-gnu-ld --with-arch=i686 --with-tune=generic --with-libiconv --with-system-zlib --with-gmp=/c/mingw492/prerequisites/i686-w64-mingw32-static --with-mpfr=/c/mingw492/prerequisites/i686-w64-mingw32-static --with-mpc=/c/mingw492/prerequisites/i686-w64-mingw32-static --with-isl=/c/mingw492/prerequisites/i686-w64-mingw32-static --with-cloog=/c/mingw492/prerequisites/i686-w64-mingw32-static --enable-cloog-backend=isl --with-pkgversion='i686-win32-dwarf-rev0, Built by MinGW-W64 project' --with-bugurl=http://sourceforge.net/projects/mingw-w64 CFLAGS='-O2 -pipe -I/c/mingw492/i686-492-win32-dwarf-rt_v3-rev0/mingw32/opt/include -I/c/mingw492/prerequisites/i686-zlib-static/include -I/c/mingw492/prerequisites/i686-w64-mingw32-static/include' CXXFLAGS='-O2 -pipe -I/c/mingw492/i686-492-win32-dwarf-rt_v3-rev0/mingw32/opt/include -I/c/mingw492/prerequisites/i686-zlib-static/include -I/c/mingw492/prerequisites/i686-w64-mingw32-static/include' CPPFLAGS= LDFLAGS='-pipe -L/c/mingw492/i686-492-win32-dwarf-rt_v3-rev0/mingw32/opt/lib -L/c/mingw492/prerequisites/i686-zlib-static/lib -L/c/mingw492/prerequisites/i686-w64-mingw32-static/lib -Wl,--large-address-aware'] + ignore line: [Thread model: win32] + ignore line: [gcc version 4.9.2 (i686-win32-dwarf-rev0, Built by MinGW-W64 project) ] + ignore line: [COMPILER_PATH=C:/mingw/x32/bin/../libexec/gcc/i686-w64-mingw32/4.9.2/] + ignore line: [C:/mingw/x32/bin/../libexec/gcc/] + ignore line: [C:/mingw/x32/bin/../lib/gcc/i686-w64-mingw32/4.9.2/../../../../i686-w64-mingw32/bin/] + ignore line: [LIBRARY_PATH=C:/mingw/x32/bin/../lib/gcc/i686-w64-mingw32/4.9.2/] + ignore line: [C:/mingw/x32/bin/../lib/gcc/] + ignore line: [C:/mingw/x32/bin/../lib/gcc/i686-w64-mingw32/4.9.2/../../../../i686-w64-mingw32/lib/../lib/] + ignore line: [C:/mingw/x32/bin/../lib/gcc/i686-w64-mingw32/4.9.2/../../../../lib/] + ignore line: [C:/mingw/x32/bin/../lib/gcc/i686-w64-mingw32/4.9.2/../../../../i686-w64-mingw32/lib/] + ignore line: [C:/mingw/x32/bin/../lib/gcc/i686-w64-mingw32/4.9.2/../../../] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'cmTryCompileExec3073170174.exe' '-shared-libgcc' '-mtune=generic' '-march=i686'] + link line: [ C:/mingw/x32/bin/../libexec/gcc/i686-w64-mingw32/4.9.2/collect2.exe -plugin C:/mingw/x32/bin/../libexec/gcc/i686-w64-mingw32/4.9.2/liblto_plugin-0.dll -plugin-opt=C:/mingw/x32/bin/../libexec/gcc/i686-w64-mingw32/4.9.2/lto-wrapper.exe -plugin-opt=-fresolution=C:\Users\Andrey\AppData\Local\Temp\ccV5GDaY.res -plugin-opt=-pass-through=-lmingw32 -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lmoldname -plugin-opt=-pass-through=-lmingwex -plugin-opt=-pass-through=-lmsvcrt -plugin-opt=-pass-through=-ladvapi32 -plugin-opt=-pass-through=-lshell32 -plugin-opt=-pass-through=-luser32 -plugin-opt=-pass-through=-lkernel32 -plugin-opt=-pass-through=-liconv -plugin-opt=-pass-through=-lmingw32 -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lmoldname -plugin-opt=-pass-through=-lmingwex -plugin-opt=-pass-through=-lmsvcrt --sysroot=C:/mingw492/i686-492-win32-dwarf-rt_v3-rev0/mingw32 -m i386pe -Bdynamic -u ___register_frame_info -u ___deregister_frame_info -o cmTryCompileExec3073170174.exe C:/mingw/x32/bin/../lib/gcc/i686-w64-mingw32/4.9.2/../../../../i686-w64-mingw32/lib/../lib/crt2.o C:/mingw/x32/bin/../lib/gcc/i686-w64-mingw32/4.9.2/crtbegin.o -LC:/mingw/x32/bin/../lib/gcc/i686-w64-mingw32/4.9.2 -LC:/mingw/x32/bin/../lib/gcc -LC:/mingw/x32/bin/../lib/gcc/i686-w64-mingw32/4.9.2/../../../../i686-w64-mingw32/lib/../lib -LC:/mingw/x32/bin/../lib/gcc/i686-w64-mingw32/4.9.2/../../../../lib -LC:/mingw/x32/bin/../lib/gcc/i686-w64-mingw32/4.9.2/../../../../i686-w64-mingw32/lib -LC:/mingw/x32/bin/../lib/gcc/i686-w64-mingw32/4.9.2/../../.. --whole-archive CMakeFiles\cmTryCompileExec3073170174.dir/objects.a --no-whole-archive --out-implib libcmTryCompileExec3073170174.dll.a --major-image-version 0 --minor-image-version 0 -lstdc++ -lmingw32 -lgcc_s -lgcc -lmoldname -lmingwex -lmsvcrt -ladvapi32 -lshell32 -luser32 -lkernel32 -liconv -lmingw32 -lgcc_s -lgcc -lmoldname -lmingwex -lmsvcrt C:/mingw/x32/bin/../lib/gcc/i686-w64-mingw32/4.9.2/crtend.o] + arg [C:/mingw/x32/bin/../libexec/gcc/i686-w64-mingw32/4.9.2/collect2.exe] ==> ignore + arg [-plugin] ==> ignore + arg [C:/mingw/x32/bin/../libexec/gcc/i686-w64-mingw32/4.9.2/liblto_plugin-0.dll] ==> ignore + arg [-plugin-opt=C:/mingw/x32/bin/../libexec/gcc/i686-w64-mingw32/4.9.2/lto-wrapper.exe] ==> ignore + arg [-plugin-opt=-fresolution=C:\Users\Andrey\AppData\Local\Temp\ccV5GDaY.res] ==> ignore + arg [-plugin-opt=-pass-through=-lmingw32] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc] ==> ignore + arg [-plugin-opt=-pass-through=-lmoldname] ==> ignore + arg [-plugin-opt=-pass-through=-lmingwex] ==> ignore + arg [-plugin-opt=-pass-through=-lmsvcrt] ==> ignore + arg [-plugin-opt=-pass-through=-ladvapi32] ==> ignore + arg [-plugin-opt=-pass-through=-lshell32] ==> ignore + arg [-plugin-opt=-pass-through=-luser32] ==> ignore + arg [-plugin-opt=-pass-through=-lkernel32] ==> ignore + arg [-plugin-opt=-pass-through=-liconv] ==> ignore + arg [-plugin-opt=-pass-through=-lmingw32] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc] ==> ignore + arg [-plugin-opt=-pass-through=-lmoldname] ==> ignore + arg [-plugin-opt=-pass-through=-lmingwex] ==> ignore + arg [-plugin-opt=-pass-through=-lmsvcrt] ==> ignore + arg [--sysroot=C:/mingw492/i686-492-win32-dwarf-rt_v3-rev0/mingw32] ==> ignore + arg [-m] ==> ignore + arg [i386pe] ==> ignore + arg [-Bdynamic] ==> ignore + arg [-u] ==> ignore + arg [___register_frame_info] ==> ignore + arg [-u] ==> ignore + arg [___deregister_frame_info] ==> ignore + arg [-o] ==> ignore + arg [cmTryCompileExec3073170174.exe] ==> ignore + arg [C:/mingw/x32/bin/../lib/gcc/i686-w64-mingw32/4.9.2/../../../../i686-w64-mingw32/lib/../lib/crt2.o] ==> ignore + arg [C:/mingw/x32/bin/../lib/gcc/i686-w64-mingw32/4.9.2/crtbegin.o] ==> ignore + arg [-LC:/mingw/x32/bin/../lib/gcc/i686-w64-mingw32/4.9.2] ==> dir [C:/mingw/x32/bin/../lib/gcc/i686-w64-mingw32/4.9.2] + arg [-LC:/mingw/x32/bin/../lib/gcc] ==> dir [C:/mingw/x32/bin/../lib/gcc] + arg [-LC:/mingw/x32/bin/../lib/gcc/i686-w64-mingw32/4.9.2/../../../../i686-w64-mingw32/lib/../lib] ==> dir [C:/mingw/x32/bin/../lib/gcc/i686-w64-mingw32/4.9.2/../../../../i686-w64-mingw32/lib/../lib] + arg [-LC:/mingw/x32/bin/../lib/gcc/i686-w64-mingw32/4.9.2/../../../../lib] ==> dir [C:/mingw/x32/bin/../lib/gcc/i686-w64-mingw32/4.9.2/../../../../lib] + arg [-LC:/mingw/x32/bin/../lib/gcc/i686-w64-mingw32/4.9.2/../../../../i686-w64-mingw32/lib] ==> dir [C:/mingw/x32/bin/../lib/gcc/i686-w64-mingw32/4.9.2/../../../../i686-w64-mingw32/lib] + arg [-LC:/mingw/x32/bin/../lib/gcc/i686-w64-mingw32/4.9.2/../../..] ==> dir [C:/mingw/x32/bin/../lib/gcc/i686-w64-mingw32/4.9.2/../../..] + arg [--whole-archive] ==> ignore + arg [CMakeFiles\cmTryCompileExec3073170174.dir/objects.a] ==> ignore + arg [--no-whole-archive] ==> ignore + arg [--out-implib] ==> ignore + arg [libcmTryCompileExec3073170174.dll.a] ==> ignore + arg [--major-image-version] ==> ignore + arg [0] ==> ignore + arg [--minor-image-version] ==> ignore + arg [0] ==> ignore + arg [-lstdc++] ==> lib [stdc++] + arg [-lmingw32] ==> lib [mingw32] + arg [-lgcc_s] ==> lib [gcc_s] + arg [-lgcc] ==> lib [gcc] + arg [-lmoldname] ==> lib [moldname] + arg [-lmingwex] ==> lib [mingwex] + arg [-lmsvcrt] ==> lib [msvcrt] + arg [-ladvapi32] ==> lib [advapi32] + arg [-lshell32] ==> lib [shell32] + arg [-luser32] ==> lib [user32] + arg [-lkernel32] ==> lib [kernel32] + arg [-liconv] ==> lib [iconv] + arg [-lmingw32] ==> lib [mingw32] + arg [-lgcc_s] ==> lib [gcc_s] + arg [-lgcc] ==> lib [gcc] + arg [-lmoldname] ==> lib [moldname] + arg [-lmingwex] ==> lib [mingwex] + arg [-lmsvcrt] ==> lib [msvcrt] + arg [C:/mingw/x32/bin/../lib/gcc/i686-w64-mingw32/4.9.2/crtend.o] ==> ignore + remove lib [gcc_s] + remove lib [gcc] + remove lib [gcc_s] + remove lib [gcc] + collapse library dir [C:/mingw/x32/bin/../lib/gcc/i686-w64-mingw32/4.9.2] ==> [C:/mingw/x32/lib/gcc/i686-w64-mingw32/4.9.2] + collapse library dir [C:/mingw/x32/bin/../lib/gcc] ==> [C:/mingw/x32/lib/gcc] + collapse library dir [C:/mingw/x32/bin/../lib/gcc/i686-w64-mingw32/4.9.2/../../../../i686-w64-mingw32/lib/../lib] ==> [C:/mingw/x32/i686-w64-mingw32/lib] + collapse library dir [C:/mingw/x32/bin/../lib/gcc/i686-w64-mingw32/4.9.2/../../../../lib] ==> [C:/mingw/x32/lib] + collapse library dir [C:/mingw/x32/bin/../lib/gcc/i686-w64-mingw32/4.9.2/../../../../i686-w64-mingw32/lib] ==> [C:/mingw/x32/i686-w64-mingw32/lib] + collapse library dir [C:/mingw/x32/bin/../lib/gcc/i686-w64-mingw32/4.9.2/../../..] ==> [C:/mingw/x32/lib] + implicit libs: [stdc++;mingw32;moldname;mingwex;msvcrt;advapi32;shell32;user32;kernel32;iconv;mingw32;moldname;mingwex;msvcrt] + implicit dirs: [C:/mingw/x32/lib/gcc/i686-w64-mingw32/4.9.2;C:/mingw/x32/lib/gcc;C:/mingw/x32/i686-w64-mingw32/lib;C:/mingw/x32/lib] + implicit fwks: [] + + +Determining if the function j0 exists passed with the following output: +Change Dir: C:/libs/oldpip/pip_0.4.0_r5/CMakeFiles/CMakeTmp + +Run Build Command:C:/mingw/x32/bin/mingw32-make.exe "cmTryCompileExec2874319340/fast" +make -f CMakeFiles\cmTryCompileExec2874319340.dir\build.make CMakeFiles/cmTryCompileExec2874319340.dir/build + +C:\libs\oldpip\pip_0.4.0_r5\CMakeFiles\CMakeTmp>mingw32-make -f CMakeFiles\cmTryCompileExec2874319340.dir\build.make CMakeFiles/cmTryCompileExec2874319340.dir/build +mingw32-make[1]: Entering directory 'C:/libs/oldpip/pip_0.4.0_r5/CMakeFiles/CMakeTmp' +"C:\Program Files (x86)\CMake 2.8\bin\cmake.exe" -E cmake_progress_report C:\libs\oldpip\pip_0.4.0_r5\CMakeFiles\CMakeTmp\CMakeFiles 1 +Building C object CMakeFiles/cmTryCompileExec2874319340.dir/CheckFunctionExists.c.obj +C:\mingw\x32\bin\gcc.exe -DCHECK_FUNCTION_EXISTS=j0 @CMakeFiles/cmTryCompileExec2874319340.dir/includes_C.rsp -o CMakeFiles\cmTryCompileExec2874319340.dir\CheckFunctionExists.c.obj -c "C:\Program Files (x86)\CMake 2.8\share\cmake-2.8\Modules\CheckFunctionExists.c" +:0:23: warning: conflicting types for built-in function 'j0' +C:\Program Files (x86)\CMake 2.8\share\cmake-2.8\Modules\CheckFunctionExists.c:3:6: note: in expansion of macro 'CHECK_FUNCTION_EXISTS' + char CHECK_FUNCTION_EXISTS(); + ^ +Linking C executable cmTryCompileExec2874319340.exe +"C:\Program Files (x86)\CMake 2.8\bin\cmake.exe" -E cmake_link_script CMakeFiles\cmTryCompileExec2874319340.dir\link.txt --verbose=1 +"C:\Program Files (x86)\CMake 2.8\bin\cmake.exe" -E remove -f CMakeFiles\cmTryCompileExec2874319340.dir/objects.a +C:\mingw\x32\bin\ar.exe cr CMakeFiles\cmTryCompileExec2874319340.dir/objects.a @CMakeFiles\cmTryCompileExec2874319340.dir\objects1.rsp +C:\mingw\x32\bin\gcc.exe -DCHECK_FUNCTION_EXISTS=j0 -Wl,--whole-archive CMakeFiles\cmTryCompileExec2874319340.dir/objects.a -Wl,--no-whole-archive -o cmTryCompileExec2874319340.exe -Wl,--out-implib,libcmTryCompileExec2874319340.dll.a -Wl,--major-image-version,0,--minor-image-version,0 -lm -lkernel32 -luser32 -lgdi32 -lwinspool -lshell32 -lole32 -loleaut32 -luuid -lcomdlg32 -ladvapi32 +mingw32-make[1]: Leaving directory 'C:/libs/oldpip/pip_0.4.0_r5/CMakeFiles/CMakeTmp' + + +Determining if the function j1 exists passed with the following output: +Change Dir: C:/libs/oldpip/pip_0.4.0_r5/CMakeFiles/CMakeTmp + +Run Build Command:C:/mingw/x32/bin/mingw32-make.exe "cmTryCompileExec3903790330/fast" +make -f CMakeFiles\cmTryCompileExec3903790330.dir\build.make CMakeFiles/cmTryCompileExec3903790330.dir/build + +C:\libs\oldpip\pip_0.4.0_r5\CMakeFiles\CMakeTmp>mingw32-make -f CMakeFiles\cmTryCompileExec3903790330.dir\build.make CMakeFiles/cmTryCompileExec3903790330.dir/build +mingw32-make[1]: Entering directory 'C:/libs/oldpip/pip_0.4.0_r5/CMakeFiles/CMakeTmp' +"C:\Program Files (x86)\CMake 2.8\bin\cmake.exe" -E cmake_progress_report C:\libs\oldpip\pip_0.4.0_r5\CMakeFiles\CMakeTmp\CMakeFiles 1 +Building C object CMakeFiles/cmTryCompileExec3903790330.dir/CheckFunctionExists.c.obj +C:\mingw\x32\bin\gcc.exe -DCHECK_FUNCTION_EXISTS=j1 @CMakeFiles/cmTryCompileExec3903790330.dir/includes_C.rsp -o CMakeFiles\cmTryCompileExec3903790330.dir\CheckFunctionExists.c.obj -c "C:\Program Files (x86)\CMake 2.8\share\cmake-2.8\Modules\CheckFunctionExists.c" +:0:23: warning: conflicting types for built-in function 'j1' +C:\Program Files (x86)\CMake 2.8\share\cmake-2.8\Modules\CheckFunctionExists.c:3:6: note: in expansion of macro 'CHECK_FUNCTION_EXISTS' + char CHECK_FUNCTION_EXISTS(); + ^ +Linking C executable cmTryCompileExec3903790330.exe +"C:\Program Files (x86)\CMake 2.8\bin\cmake.exe" -E cmake_link_script CMakeFiles\cmTryCompileExec3903790330.dir\link.txt --verbose=1 +"C:\Program Files (x86)\CMake 2.8\bin\cmake.exe" -E remove -f CMakeFiles\cmTryCompileExec3903790330.dir/objects.a +C:\mingw\x32\bin\ar.exe cr CMakeFiles\cmTryCompileExec3903790330.dir/objects.a @CMakeFiles\cmTryCompileExec3903790330.dir\objects1.rsp +C:\mingw\x32\bin\gcc.exe -DCHECK_FUNCTION_EXISTS=j1 -Wl,--whole-archive CMakeFiles\cmTryCompileExec3903790330.dir/objects.a -Wl,--no-whole-archive -o cmTryCompileExec3903790330.exe -Wl,--out-implib,libcmTryCompileExec3903790330.dll.a -Wl,--major-image-version,0,--minor-image-version,0 -lm -lkernel32 -luser32 -lgdi32 -lwinspool -lshell32 -lole32 -loleaut32 -luuid -lcomdlg32 -ladvapi32 +mingw32-make[1]: Leaving directory 'C:/libs/oldpip/pip_0.4.0_r5/CMakeFiles/CMakeTmp' + + +Determining if the function jn exists passed with the following output: +Change Dir: C:/libs/oldpip/pip_0.4.0_r5/CMakeFiles/CMakeTmp + +Run Build Command:C:/mingw/x32/bin/mingw32-make.exe "cmTryCompileExec1533190313/fast" +make -f CMakeFiles\cmTryCompileExec1533190313.dir\build.make CMakeFiles/cmTryCompileExec1533190313.dir/build + +C:\libs\oldpip\pip_0.4.0_r5\CMakeFiles\CMakeTmp>mingw32-make -f CMakeFiles\cmTryCompileExec1533190313.dir\build.make CMakeFiles/cmTryCompileExec1533190313.dir/build +mingw32-make[1]: Entering directory 'C:/libs/oldpip/pip_0.4.0_r5/CMakeFiles/CMakeTmp' +"C:\Program Files (x86)\CMake 2.8\bin\cmake.exe" -E cmake_progress_report C:\libs\oldpip\pip_0.4.0_r5\CMakeFiles\CMakeTmp\CMakeFiles 1 +Building C object CMakeFiles/cmTryCompileExec1533190313.dir/CheckFunctionExists.c.obj +C:\mingw\x32\bin\gcc.exe -DCHECK_FUNCTION_EXISTS=jn @CMakeFiles/cmTryCompileExec1533190313.dir/includes_C.rsp -o CMakeFiles\cmTryCompileExec1533190313.dir\CheckFunctionExists.c.obj -c "C:\Program Files (x86)\CMake 2.8\share\cmake-2.8\Modules\CheckFunctionExists.c" +:0:23: warning: conflicting types for built-in function 'jn' +C:\Program Files (x86)\CMake 2.8\share\cmake-2.8\Modules\CheckFunctionExists.c:3:6: note: in expansion of macro 'CHECK_FUNCTION_EXISTS' + char CHECK_FUNCTION_EXISTS(); + ^ +Linking C executable cmTryCompileExec1533190313.exe +"C:\Program Files (x86)\CMake 2.8\bin\cmake.exe" -E cmake_link_script CMakeFiles\cmTryCompileExec1533190313.dir\link.txt --verbose=1 +"C:\Program Files (x86)\CMake 2.8\bin\cmake.exe" -E remove -f CMakeFiles\cmTryCompileExec1533190313.dir/objects.a +C:\mingw\x32\bin\ar.exe cr CMakeFiles\cmTryCompileExec1533190313.dir/objects.a @CMakeFiles\cmTryCompileExec1533190313.dir\objects1.rsp +C:\mingw\x32\bin\gcc.exe -DCHECK_FUNCTION_EXISTS=jn -Wl,--whole-archive CMakeFiles\cmTryCompileExec1533190313.dir/objects.a -Wl,--no-whole-archive -o cmTryCompileExec1533190313.exe -Wl,--out-implib,libcmTryCompileExec1533190313.dll.a -Wl,--major-image-version,0,--minor-image-version,0 -lm -lkernel32 -luser32 -lgdi32 -lwinspool -lshell32 -lole32 -loleaut32 -luuid -lcomdlg32 -ladvapi32 +mingw32-make[1]: Leaving directory 'C:/libs/oldpip/pip_0.4.0_r5/CMakeFiles/CMakeTmp' + + +Determining if the function y0 exists passed with the following output: +Change Dir: C:/libs/oldpip/pip_0.4.0_r5/CMakeFiles/CMakeTmp + +Run Build Command:C:/mingw/x32/bin/mingw32-make.exe "cmTryCompileExec1045482109/fast" +make -f CMakeFiles\cmTryCompileExec1045482109.dir\build.make CMakeFiles/cmTryCompileExec1045482109.dir/build + +C:\libs\oldpip\pip_0.4.0_r5\CMakeFiles\CMakeTmp>mingw32-make -f CMakeFiles\cmTryCompileExec1045482109.dir\build.make CMakeFiles/cmTryCompileExec1045482109.dir/build +mingw32-make[1]: Entering directory 'C:/libs/oldpip/pip_0.4.0_r5/CMakeFiles/CMakeTmp' +"C:\Program Files (x86)\CMake 2.8\bin\cmake.exe" -E cmake_progress_report C:\libs\oldpip\pip_0.4.0_r5\CMakeFiles\CMakeTmp\CMakeFiles 1 +Building C object CMakeFiles/cmTryCompileExec1045482109.dir/CheckFunctionExists.c.obj +C:\mingw\x32\bin\gcc.exe -DCHECK_FUNCTION_EXISTS=y0 @CMakeFiles/cmTryCompileExec1045482109.dir/includes_C.rsp -o CMakeFiles\cmTryCompileExec1045482109.dir\CheckFunctionExists.c.obj -c "C:\Program Files (x86)\CMake 2.8\share\cmake-2.8\Modules\CheckFunctionExists.c" +:0:23: warning: conflicting types for built-in function 'y0' +C:\Program Files (x86)\CMake 2.8\share\cmake-2.8\Modules\CheckFunctionExists.c:3:6: note: in expansion of macro 'CHECK_FUNCTION_EXISTS' + char CHECK_FUNCTION_EXISTS(); + ^ +Linking C executable cmTryCompileExec1045482109.exe +"C:\Program Files (x86)\CMake 2.8\bin\cmake.exe" -E cmake_link_script CMakeFiles\cmTryCompileExec1045482109.dir\link.txt --verbose=1 +"C:\Program Files (x86)\CMake 2.8\bin\cmake.exe" -E remove -f CMakeFiles\cmTryCompileExec1045482109.dir/objects.a +C:\mingw\x32\bin\ar.exe cr CMakeFiles\cmTryCompileExec1045482109.dir/objects.a @CMakeFiles\cmTryCompileExec1045482109.dir\objects1.rsp +C:\mingw\x32\bin\gcc.exe -DCHECK_FUNCTION_EXISTS=y0 -Wl,--whole-archive CMakeFiles\cmTryCompileExec1045482109.dir/objects.a -Wl,--no-whole-archive -o cmTryCompileExec1045482109.exe -Wl,--out-implib,libcmTryCompileExec1045482109.dll.a -Wl,--major-image-version,0,--minor-image-version,0 -lm -lkernel32 -luser32 -lgdi32 -lwinspool -lshell32 -lole32 -loleaut32 -luuid -lcomdlg32 -ladvapi32 +mingw32-make[1]: Leaving directory 'C:/libs/oldpip/pip_0.4.0_r5/CMakeFiles/CMakeTmp' + + +Determining if the function y1 exists passed with the following output: +Change Dir: C:/libs/oldpip/pip_0.4.0_r5/CMakeFiles/CMakeTmp + +Run Build Command:C:/mingw/x32/bin/mingw32-make.exe "cmTryCompileExec2017568678/fast" +make -f CMakeFiles\cmTryCompileExec2017568678.dir\build.make CMakeFiles/cmTryCompileExec2017568678.dir/build + +C:\libs\oldpip\pip_0.4.0_r5\CMakeFiles\CMakeTmp>mingw32-make -f CMakeFiles\cmTryCompileExec2017568678.dir\build.make CMakeFiles/cmTryCompileExec2017568678.dir/build +mingw32-make[1]: Entering directory 'C:/libs/oldpip/pip_0.4.0_r5/CMakeFiles/CMakeTmp' +"C:\Program Files (x86)\CMake 2.8\bin\cmake.exe" -E cmake_progress_report C:\libs\oldpip\pip_0.4.0_r5\CMakeFiles\CMakeTmp\CMakeFiles 1 +Building C object CMakeFiles/cmTryCompileExec2017568678.dir/CheckFunctionExists.c.obj +C:\mingw\x32\bin\gcc.exe -DCHECK_FUNCTION_EXISTS=y1 @CMakeFiles/cmTryCompileExec2017568678.dir/includes_C.rsp -o CMakeFiles\cmTryCompileExec2017568678.dir\CheckFunctionExists.c.obj -c "C:\Program Files (x86)\CMake 2.8\share\cmake-2.8\Modules\CheckFunctionExists.c" +:0:23: warning: conflicting types for built-in function 'y1' +C:\Program Files (x86)\CMake 2.8\share\cmake-2.8\Modules\CheckFunctionExists.c:3:6: note: in expansion of macro 'CHECK_FUNCTION_EXISTS' + char CHECK_FUNCTION_EXISTS(); + ^ +Linking C executable cmTryCompileExec2017568678.exe +"C:\Program Files (x86)\CMake 2.8\bin\cmake.exe" -E cmake_link_script CMakeFiles\cmTryCompileExec2017568678.dir\link.txt --verbose=1 +"C:\Program Files (x86)\CMake 2.8\bin\cmake.exe" -E remove -f CMakeFiles\cmTryCompileExec2017568678.dir/objects.a +C:\mingw\x32\bin\ar.exe cr CMakeFiles\cmTryCompileExec2017568678.dir/objects.a @CMakeFiles\cmTryCompileExec2017568678.dir\objects1.rsp +C:\mingw\x32\bin\gcc.exe -DCHECK_FUNCTION_EXISTS=y1 -Wl,--whole-archive CMakeFiles\cmTryCompileExec2017568678.dir/objects.a -Wl,--no-whole-archive -o cmTryCompileExec2017568678.exe -Wl,--out-implib,libcmTryCompileExec2017568678.dll.a -Wl,--major-image-version,0,--minor-image-version,0 -lm -lkernel32 -luser32 -lgdi32 -lwinspool -lshell32 -lole32 -loleaut32 -luuid -lcomdlg32 -ladvapi32 +mingw32-make[1]: Leaving directory 'C:/libs/oldpip/pip_0.4.0_r5/CMakeFiles/CMakeTmp' + + +Determining if the function yn exists passed with the following output: +Change Dir: C:/libs/oldpip/pip_0.4.0_r5/CMakeFiles/CMakeTmp + +Run Build Command:C:/mingw/x32/bin/mingw32-make.exe "cmTryCompileExec488209033/fast" +make -f CMakeFiles\cmTryCompileExec488209033.dir\build.make CMakeFiles/cmTryCompileExec488209033.dir/build + +C:\libs\oldpip\pip_0.4.0_r5\CMakeFiles\CMakeTmp>mingw32-make -f CMakeFiles\cmTryCompileExec488209033.dir\build.make CMakeFiles/cmTryCompileExec488209033.dir/build +mingw32-make[1]: Entering directory 'C:/libs/oldpip/pip_0.4.0_r5/CMakeFiles/CMakeTmp' +"C:\Program Files (x86)\CMake 2.8\bin\cmake.exe" -E cmake_progress_report C:\libs\oldpip\pip_0.4.0_r5\CMakeFiles\CMakeTmp\CMakeFiles 1 +Building C object CMakeFiles/cmTryCompileExec488209033.dir/CheckFunctionExists.c.obj +C:\mingw\x32\bin\gcc.exe -DCHECK_FUNCTION_EXISTS=yn @CMakeFiles/cmTryCompileExec488209033.dir/includes_C.rsp -o CMakeFiles\cmTryCompileExec488209033.dir\CheckFunctionExists.c.obj -c "C:\Program Files (x86)\CMake 2.8\share\cmake-2.8\Modules\CheckFunctionExists.c" +:0:23: warning: conflicting types for built-in function 'yn' +C:\Program Files (x86)\CMake 2.8\share\cmake-2.8\Modules\CheckFunctionExists.c:3:6: note: in expansion of macro 'CHECK_FUNCTION_EXISTS' + char CHECK_FUNCTION_EXISTS(); + ^ +Linking C executable cmTryCompileExec488209033.exe +"C:\Program Files (x86)\CMake 2.8\bin\cmake.exe" -E cmake_link_script CMakeFiles\cmTryCompileExec488209033.dir\link.txt --verbose=1 +"C:\Program Files (x86)\CMake 2.8\bin\cmake.exe" -E remove -f CMakeFiles\cmTryCompileExec488209033.dir/objects.a +C:\mingw\x32\bin\ar.exe cr CMakeFiles\cmTryCompileExec488209033.dir/objects.a @CMakeFiles\cmTryCompileExec488209033.dir\objects1.rsp +C:\mingw\x32\bin\gcc.exe -DCHECK_FUNCTION_EXISTS=yn -Wl,--whole-archive CMakeFiles\cmTryCompileExec488209033.dir/objects.a -Wl,--no-whole-archive -o cmTryCompileExec488209033.exe -Wl,--out-implib,libcmTryCompileExec488209033.dll.a -Wl,--major-image-version,0,--minor-image-version,0 -lm -lkernel32 -luser32 -lgdi32 -lwinspool -lshell32 -lole32 -loleaut32 -luuid -lcomdlg32 -ladvapi32 +mingw32-make[1]: Leaving directory 'C:/libs/oldpip/pip_0.4.0_r5/CMakeFiles/CMakeTmp' + + +Determining if the Q_WS_WIN exist passed with the following output: +Change Dir: C:/libs/oldpip/pip_0.4.0_r5/CMakeFiles/CMakeTmp + +Run Build Command:C:/mingw/x32/bin/mingw32-make.exe "cmTryCompileExec2767957938/fast" +make -f CMakeFiles\cmTryCompileExec2767957938.dir\build.make CMakeFiles/cmTryCompileExec2767957938.dir/build + +C:\libs\oldpip\pip_0.4.0_r5\CMakeFiles\CMakeTmp>mingw32-make -f CMakeFiles\cmTryCompileExec2767957938.dir\build.make CMakeFiles/cmTryCompileExec2767957938.dir/build +mingw32-make[1]: Entering directory 'C:/libs/oldpip/pip_0.4.0_r5/CMakeFiles/CMakeTmp' +"C:\Program Files (x86)\CMake 2.8\bin\cmake.exe" -E cmake_progress_report C:\libs\oldpip\pip_0.4.0_r5\CMakeFiles\CMakeTmp\CMakeFiles 1 +Building CXX object CMakeFiles/cmTryCompileExec2767957938.dir/CheckSymbolExists.cxx.obj +C:\mingw\x32\bin\g++.exe @CMakeFiles/cmTryCompileExec2767957938.dir/includes_CXX.rsp -o CMakeFiles\cmTryCompileExec2767957938.dir\CheckSymbolExists.cxx.obj -c C:\libs\oldpip\pip_0.4.0_r5\CMakeFiles\CMakeTmp\CheckSymbolExists.cxx +Linking CXX executable cmTryCompileExec2767957938.exe +"C:\Program Files (x86)\CMake 2.8\bin\cmake.exe" -E cmake_link_script CMakeFiles\cmTryCompileExec2767957938.dir\link.txt --verbose=1 +"C:\Program Files (x86)\CMake 2.8\bin\cmake.exe" -E remove -f CMakeFiles\cmTryCompileExec2767957938.dir/objects.a +C:\mingw\x32\bin\ar.exe cr CMakeFiles\cmTryCompileExec2767957938.dir/objects.a @CMakeFiles\cmTryCompileExec2767957938.dir\objects1.rsp +C:\mingw\x32\bin\g++.exe -Wl,--whole-archive CMakeFiles\cmTryCompileExec2767957938.dir/objects.a -Wl,--no-whole-archive -o cmTryCompileExec2767957938.exe -Wl,--out-implib,libcmTryCompileExec2767957938.dll.a -Wl,--major-image-version,0,--minor-image-version,0 -lm -lkernel32 -luser32 -lgdi32 -lwinspool -lshell32 -lole32 -loleaut32 -luuid -lcomdlg32 -ladvapi32 +mingw32-make[1]: Leaving directory 'C:/libs/oldpip/pip_0.4.0_r5/CMakeFiles/CMakeTmp' + +File C:/libs/oldpip/pip_0.4.0_r5/CMakeFiles/CMakeTmp/CheckSymbolExists.cxx: +/* */ +#include + +int main(int argc, char** argv) +{ + (void)argv; +#ifndef Q_WS_WIN + return ((int*)(&Q_WS_WIN))[argc]; +#else + (void)argc; + return 0; +#endif +} + diff --git a/_oldpip/pip_0.4.0_r5/CMakeFiles/Makefile.cmake b/_oldpip/pip_0.4.0_r5/CMakeFiles/Makefile.cmake new file mode 100644 index 0000000..886e811 --- /dev/null +++ b/_oldpip/pip_0.4.0_r5/CMakeFiles/Makefile.cmake @@ -0,0 +1,68 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "MinGW Makefiles" Generator, CMake Version 2.8 + +# The generator used is: +SET(CMAKE_DEPENDS_GENERATOR "MinGW Makefiles") + +# The top level Makefile was generated from the following files: +SET(CMAKE_MAKEFILE_DEPENDS + "CMakeCache.txt" + "C:/Program Files (x86)/CMake 2.8/share/cmake-2.8/Modules/CMakeCInformation.cmake" + "C:/Program Files (x86)/CMake 2.8/share/cmake-2.8/Modules/CMakeCXXInformation.cmake" + "C:/Program Files (x86)/CMake 2.8/share/cmake-2.8/Modules/CMakeCommonLanguageInclude.cmake" + "C:/Program Files (x86)/CMake 2.8/share/cmake-2.8/Modules/CMakeGenericSystem.cmake" + "C:/Program Files (x86)/CMake 2.8/share/cmake-2.8/Modules/CMakeParseArguments.cmake" + "C:/Program Files (x86)/CMake 2.8/share/cmake-2.8/Modules/CMakeRCInformation.cmake" + "C:/Program Files (x86)/CMake 2.8/share/cmake-2.8/Modules/CMakeSystemSpecificInformation.cmake" + "C:/Program Files (x86)/CMake 2.8/share/cmake-2.8/Modules/CheckCXXSymbolExists.cmake" + "C:/Program Files (x86)/CMake 2.8/share/cmake-2.8/Modules/CheckFunctionExists.cmake" + "C:/Program Files (x86)/CMake 2.8/share/cmake-2.8/Modules/CheckSymbolExists.cmake" + "C:/Program Files (x86)/CMake 2.8/share/cmake-2.8/Modules/Compiler/GNU-C.cmake" + "C:/Program Files (x86)/CMake 2.8/share/cmake-2.8/Modules/Compiler/GNU-CXX.cmake" + "C:/Program Files (x86)/CMake 2.8/share/cmake-2.8/Modules/Compiler/GNU.cmake" + "C:/Program Files (x86)/CMake 2.8/share/cmake-2.8/Modules/FindPackageHandleStandardArgs.cmake" + "C:/Program Files (x86)/CMake 2.8/share/cmake-2.8/Modules/FindPackageMessage.cmake" + "C:/Program Files (x86)/CMake 2.8/share/cmake-2.8/Modules/FindQt4.cmake" + "C:/Program Files (x86)/CMake 2.8/share/cmake-2.8/Modules/MacroAddFileDependencies.cmake" + "C:/Program Files (x86)/CMake 2.8/share/cmake-2.8/Modules/Platform/Windows-GNU-C-ABI.cmake" + "C:/Program Files (x86)/CMake 2.8/share/cmake-2.8/Modules/Platform/Windows-GNU-C.cmake" + "C:/Program Files (x86)/CMake 2.8/share/cmake-2.8/Modules/Platform/Windows-GNU-CXX-ABI.cmake" + "C:/Program Files (x86)/CMake 2.8/share/cmake-2.8/Modules/Platform/Windows-GNU-CXX.cmake" + "C:/Program Files (x86)/CMake 2.8/share/cmake-2.8/Modules/Platform/Windows-GNU.cmake" + "C:/Program Files (x86)/CMake 2.8/share/cmake-2.8/Modules/Platform/Windows-windres.cmake" + "C:/Program Files (x86)/CMake 2.8/share/cmake-2.8/Modules/Platform/Windows.cmake" + "C:/Program Files (x86)/CMake 2.8/share/cmake-2.8/Modules/Platform/WindowsPaths.cmake" + "C:/Program Files (x86)/CMake 2.8/share/cmake-2.8/Modules/Qt4ConfigDependentSettings.cmake" + "C:/Program Files (x86)/CMake 2.8/share/cmake-2.8/Modules/Qt4Macros.cmake" + "CMakeFiles/2.8.12.2/CMakeCCompiler.cmake" + "CMakeFiles/2.8.12.2/CMakeCXXCompiler.cmake" + "CMakeFiles/2.8.12.2/CMakeRCCompiler.cmake" + "CMakeFiles/2.8.12.2/CMakeSystem.cmake" + "CMakeLists.txt" + "code_model_generator/CMakeLists.txt" + "remote_console/CMakeLists.txt" + "system_test/CMakeLists.txt" + ) + +# The corresponding makefile is: +SET(CMAKE_MAKEFILE_OUTPUTS + "Makefile" + "CMakeFiles/cmake.check_cache" + ) + +# Byproducts of CMake generate step: +SET(CMAKE_MAKEFILE_PRODUCTS + "CMakeFiles/CMakeDirectoryInformation.cmake" + "system_test/CMakeFiles/CMakeDirectoryInformation.cmake" + "remote_console/CMakeFiles/CMakeDirectoryInformation.cmake" + "code_model_generator/CMakeFiles/CMakeDirectoryInformation.cmake" + ) + +# Dependency information for all targets: +SET(CMAKE_DEPEND_INFO_FILES + "CMakeFiles/pip.dir/DependInfo.cmake" + "CMakeFiles/pip_test.dir/DependInfo.cmake" + "system_test/CMakeFiles/pip_sys_test.dir/DependInfo.cmake" + "remote_console/CMakeFiles/pip_remote_console.dir/DependInfo.cmake" + "code_model_generator/CMakeFiles/pip_cmg.dir/DependInfo.cmake" + ) diff --git a/_oldpip/pip_0.4.0_r5/CMakeFiles/Makefile2 b/_oldpip/pip_0.4.0_r5/CMakeFiles/Makefile2 new file mode 100644 index 0000000..cf7a671 --- /dev/null +++ b/_oldpip/pip_0.4.0_r5/CMakeFiles/Makefile2 @@ -0,0 +1,286 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "MinGW Makefiles" Generator, CMake Version 2.8 + +# Default target executed when no arguments are given to make. +default_target: all +.PHONY : default_target + +# The main recursive all target +all: +.PHONY : all + +# The main recursive preinstall target +preinstall: +.PHONY : preinstall + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Remove some rules from gmake that .SUFFIXES does not remove. +SUFFIXES = + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +SHELL = cmd.exe + +# The CMake executable. +CMAKE_COMMAND = "C:\Program Files (x86)\CMake 2.8\bin\cmake.exe" + +# The command to remove a file. +RM = "C:\Program Files (x86)\CMake 2.8\bin\cmake.exe" -E remove -f + +# Escaping for special characters. +EQUALS = = + +# The program to use to edit the cache. +CMAKE_EDIT_COMMAND = "C:\Program Files (x86)\CMake 2.8\bin\cmake-gui.exe" + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = C:\libs\oldpip\pip_0.4.0_r5 + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = C:\libs\oldpip\pip_0.4.0_r5 + +#============================================================================= +# Target rules for target CMakeFiles/pip.dir + +# All Build rule for target. +CMakeFiles/pip.dir/all: + $(MAKE) -f CMakeFiles\pip.dir\build.make CMakeFiles/pip.dir/depend + $(MAKE) -f CMakeFiles\pip.dir\build.make CMakeFiles/pip.dir/build + $(CMAKE_COMMAND) -E cmake_progress_report C:\libs\oldpip\pip_0.4.0_r5\CMakeFiles 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 + @echo Built target pip +.PHONY : CMakeFiles/pip.dir/all + +# Include target in all. +all: CMakeFiles/pip.dir/all +.PHONY : all + +# Build rule for subdir invocation for target. +CMakeFiles/pip.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start C:\libs\oldpip\pip_0.4.0_r5\CMakeFiles 39 + $(MAKE) -f CMakeFiles\Makefile2 CMakeFiles/pip.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start C:\libs\oldpip\pip_0.4.0_r5\CMakeFiles 0 +.PHONY : CMakeFiles/pip.dir/rule + +# Convenience name for target. +pip: CMakeFiles/pip.dir/rule +.PHONY : pip + +# clean rule for target. +CMakeFiles/pip.dir/clean: + $(MAKE) -f CMakeFiles\pip.dir\build.make CMakeFiles/pip.dir/clean +.PHONY : CMakeFiles/pip.dir/clean + +# clean rule for target. +clean: CMakeFiles/pip.dir/clean +.PHONY : clean + +#============================================================================= +# Target rules for target CMakeFiles/pip_test.dir + +# All Build rule for target. +CMakeFiles/pip_test.dir/all: CMakeFiles/pip.dir/all + $(MAKE) -f CMakeFiles\pip_test.dir\build.make CMakeFiles/pip_test.dir/depend + $(MAKE) -f CMakeFiles\pip_test.dir\build.make CMakeFiles/pip_test.dir/build + $(CMAKE_COMMAND) -E cmake_progress_report C:\libs\oldpip\pip_0.4.0_r5\CMakeFiles 43 + @echo Built target pip_test +.PHONY : CMakeFiles/pip_test.dir/all + +# Include target in all. +all: CMakeFiles/pip_test.dir/all +.PHONY : all + +# Build rule for subdir invocation for target. +CMakeFiles/pip_test.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start C:\libs\oldpip\pip_0.4.0_r5\CMakeFiles 40 + $(MAKE) -f CMakeFiles\Makefile2 CMakeFiles/pip_test.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start C:\libs\oldpip\pip_0.4.0_r5\CMakeFiles 0 +.PHONY : CMakeFiles/pip_test.dir/rule + +# Convenience name for target. +pip_test: CMakeFiles/pip_test.dir/rule +.PHONY : pip_test + +# clean rule for target. +CMakeFiles/pip_test.dir/clean: + $(MAKE) -f CMakeFiles\pip_test.dir\build.make CMakeFiles/pip_test.dir/clean +.PHONY : CMakeFiles/pip_test.dir/clean + +# clean rule for target. +clean: CMakeFiles/pip_test.dir/clean +.PHONY : clean + +#============================================================================= +# Directory level rules for directory system_test + +# Convenience name for "all" pass in the directory. +system_test/all: system_test/CMakeFiles/pip_sys_test.dir/all +.PHONY : system_test/all + +# Convenience name for "clean" pass in the directory. +system_test/clean: system_test/CMakeFiles/pip_sys_test.dir/clean +.PHONY : system_test/clean + +# Convenience name for "preinstall" pass in the directory. +system_test/preinstall: +.PHONY : system_test/preinstall + +#============================================================================= +# Target rules for target system_test/CMakeFiles/pip_sys_test.dir + +# All Build rule for target. +system_test/CMakeFiles/pip_sys_test.dir/all: CMakeFiles/pip.dir/all + $(MAKE) -f system_test\CMakeFiles\pip_sys_test.dir\build.make system_test/CMakeFiles/pip_sys_test.dir/depend + $(MAKE) -f system_test\CMakeFiles\pip_sys_test.dir\build.make system_test/CMakeFiles/pip_sys_test.dir/build + $(CMAKE_COMMAND) -E cmake_progress_report C:\libs\oldpip\pip_0.4.0_r5\CMakeFiles 42 + @echo Built target pip_sys_test +.PHONY : system_test/CMakeFiles/pip_sys_test.dir/all + +# Include target in all. +all: system_test/CMakeFiles/pip_sys_test.dir/all +.PHONY : all + +# Build rule for subdir invocation for target. +system_test/CMakeFiles/pip_sys_test.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start C:\libs\oldpip\pip_0.4.0_r5\CMakeFiles 40 + $(MAKE) -f CMakeFiles\Makefile2 system_test/CMakeFiles/pip_sys_test.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start C:\libs\oldpip\pip_0.4.0_r5\CMakeFiles 0 +.PHONY : system_test/CMakeFiles/pip_sys_test.dir/rule + +# Convenience name for target. +pip_sys_test: system_test/CMakeFiles/pip_sys_test.dir/rule +.PHONY : pip_sys_test + +# clean rule for target. +system_test/CMakeFiles/pip_sys_test.dir/clean: + $(MAKE) -f system_test\CMakeFiles\pip_sys_test.dir\build.make system_test/CMakeFiles/pip_sys_test.dir/clean +.PHONY : system_test/CMakeFiles/pip_sys_test.dir/clean + +# clean rule for target. +clean: system_test/CMakeFiles/pip_sys_test.dir/clean +.PHONY : clean + +#============================================================================= +# Directory level rules for directory remote_console + +# Convenience name for "all" pass in the directory. +remote_console/all: remote_console/CMakeFiles/pip_remote_console.dir/all +.PHONY : remote_console/all + +# Convenience name for "clean" pass in the directory. +remote_console/clean: remote_console/CMakeFiles/pip_remote_console.dir/clean +.PHONY : remote_console/clean + +# Convenience name for "preinstall" pass in the directory. +remote_console/preinstall: +.PHONY : remote_console/preinstall + +#============================================================================= +# Target rules for target remote_console/CMakeFiles/pip_remote_console.dir + +# All Build rule for target. +remote_console/CMakeFiles/pip_remote_console.dir/all: CMakeFiles/pip.dir/all + $(MAKE) -f remote_console\CMakeFiles\pip_remote_console.dir\build.make remote_console/CMakeFiles/pip_remote_console.dir/depend + $(MAKE) -f remote_console\CMakeFiles\pip_remote_console.dir\build.make remote_console/CMakeFiles/pip_remote_console.dir/build + $(CMAKE_COMMAND) -E cmake_progress_report C:\libs\oldpip\pip_0.4.0_r5\CMakeFiles 41 + @echo Built target pip_remote_console +.PHONY : remote_console/CMakeFiles/pip_remote_console.dir/all + +# Include target in all. +all: remote_console/CMakeFiles/pip_remote_console.dir/all +.PHONY : all + +# Build rule for subdir invocation for target. +remote_console/CMakeFiles/pip_remote_console.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start C:\libs\oldpip\pip_0.4.0_r5\CMakeFiles 40 + $(MAKE) -f CMakeFiles\Makefile2 remote_console/CMakeFiles/pip_remote_console.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start C:\libs\oldpip\pip_0.4.0_r5\CMakeFiles 0 +.PHONY : remote_console/CMakeFiles/pip_remote_console.dir/rule + +# Convenience name for target. +pip_remote_console: remote_console/CMakeFiles/pip_remote_console.dir/rule +.PHONY : pip_remote_console + +# clean rule for target. +remote_console/CMakeFiles/pip_remote_console.dir/clean: + $(MAKE) -f remote_console\CMakeFiles\pip_remote_console.dir\build.make remote_console/CMakeFiles/pip_remote_console.dir/clean +.PHONY : remote_console/CMakeFiles/pip_remote_console.dir/clean + +# clean rule for target. +clean: remote_console/CMakeFiles/pip_remote_console.dir/clean +.PHONY : clean + +#============================================================================= +# Directory level rules for directory code_model_generator + +# Convenience name for "all" pass in the directory. +code_model_generator/all: code_model_generator/CMakeFiles/pip_cmg.dir/all +.PHONY : code_model_generator/all + +# Convenience name for "clean" pass in the directory. +code_model_generator/clean: code_model_generator/CMakeFiles/pip_cmg.dir/clean +.PHONY : code_model_generator/clean + +# Convenience name for "preinstall" pass in the directory. +code_model_generator/preinstall: +.PHONY : code_model_generator/preinstall + +#============================================================================= +# Target rules for target code_model_generator/CMakeFiles/pip_cmg.dir + +# All Build rule for target. +code_model_generator/CMakeFiles/pip_cmg.dir/all: CMakeFiles/pip.dir/all + $(MAKE) -f code_model_generator\CMakeFiles\pip_cmg.dir\build.make code_model_generator/CMakeFiles/pip_cmg.dir/depend + $(MAKE) -f code_model_generator\CMakeFiles\pip_cmg.dir\build.make code_model_generator/CMakeFiles/pip_cmg.dir/build + $(CMAKE_COMMAND) -E cmake_progress_report C:\libs\oldpip\pip_0.4.0_r5\CMakeFiles 40 + @echo Built target pip_cmg +.PHONY : code_model_generator/CMakeFiles/pip_cmg.dir/all + +# Include target in all. +all: code_model_generator/CMakeFiles/pip_cmg.dir/all +.PHONY : all + +# Build rule for subdir invocation for target. +code_model_generator/CMakeFiles/pip_cmg.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start C:\libs\oldpip\pip_0.4.0_r5\CMakeFiles 40 + $(MAKE) -f CMakeFiles\Makefile2 code_model_generator/CMakeFiles/pip_cmg.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start C:\libs\oldpip\pip_0.4.0_r5\CMakeFiles 0 +.PHONY : code_model_generator/CMakeFiles/pip_cmg.dir/rule + +# Convenience name for target. +pip_cmg: code_model_generator/CMakeFiles/pip_cmg.dir/rule +.PHONY : pip_cmg + +# clean rule for target. +code_model_generator/CMakeFiles/pip_cmg.dir/clean: + $(MAKE) -f code_model_generator\CMakeFiles\pip_cmg.dir\build.make code_model_generator/CMakeFiles/pip_cmg.dir/clean +.PHONY : code_model_generator/CMakeFiles/pip_cmg.dir/clean + +# clean rule for target. +clean: code_model_generator/CMakeFiles/pip_cmg.dir/clean +.PHONY : clean + +#============================================================================= +# Special targets to cleanup operation of make. + +# Special rule to run CMake to check the build system integrity. +# No rule that depends on this can have commands that come from listfiles +# because they might be regenerated. +cmake_check_build_system: + $(CMAKE_COMMAND) -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles\Makefile.cmake 0 +.PHONY : cmake_check_build_system + diff --git a/_oldpip/pip_0.4.0_r5/CMakeFiles/TargetDirectories.txt b/_oldpip/pip_0.4.0_r5/CMakeFiles/TargetDirectories.txt new file mode 100644 index 0000000..26de301 --- /dev/null +++ b/_oldpip/pip_0.4.0_r5/CMakeFiles/TargetDirectories.txt @@ -0,0 +1,5 @@ +C:/libs/oldpip/pip_0.4.0_r5/CMakeFiles/pip.dir +C:/libs/oldpip/pip_0.4.0_r5/code_model_generator/CMakeFiles/pip_cmg.dir +C:/libs/oldpip/pip_0.4.0_r5/remote_console/CMakeFiles/pip_remote_console.dir +C:/libs/oldpip/pip_0.4.0_r5/system_test/CMakeFiles/pip_sys_test.dir +C:/libs/oldpip/pip_0.4.0_r5/CMakeFiles/pip_test.dir diff --git a/_oldpip/pip_0.4.0_r5/CMakeFiles/cmake.check_cache b/_oldpip/pip_0.4.0_r5/CMakeFiles/cmake.check_cache new file mode 100644 index 0000000..56c437b --- /dev/null +++ b/_oldpip/pip_0.4.0_r5/CMakeFiles/cmake.check_cache @@ -0,0 +1 @@ +# This file is generated by cmake for dependency checking of the CMakeCache.txt file diff --git a/_oldpip/pip_0.4.0_r5/CMakeFiles/pip.dir/CXX.includecache b/_oldpip/pip_0.4.0_r5/CMakeFiles/pip.dir/CXX.includecache new file mode 100644 index 0000000..888b968 --- /dev/null +++ b/_oldpip/pip_0.4.0_r5/CMakeFiles/pip.dir/CXX.includecache @@ -0,0 +1,798 @@ +#IncludeRegexLine: ^[ ]*#[ ]*(include|import)[ ]*[<"]([^">]+)([">]) + +#IncludeRegexScan: ^.*$ + +#IncludeRegexComplain: ^$ + +#IncludeRegexTransform: + +C:/libs/oldpip/pip_0.4.0_r5/pibinarylog.cpp +pibinarylog.h +C:/libs/oldpip/pip_0.4.0_r5/pibinarylog.h + +C:/libs/oldpip/pip_0.4.0_r5/pibinarylog.h +pifile.h +C:/libs/oldpip/pip_0.4.0_r5/pifile.h + +C:/libs/oldpip/pip_0.4.0_r5/pibitarray.h +picontainers.h +C:/libs/oldpip/pip_0.4.0_r5/picontainers.h + +C:/libs/oldpip/pip_0.4.0_r5/pibytearray.cpp +pibytearray.h +C:/libs/oldpip/pip_0.4.0_r5/pibytearray.h +pistring.h +C:/libs/oldpip/pip_0.4.0_r5/pistring.h + +C:/libs/oldpip/pip_0.4.0_r5/pibytearray.h +pibitarray.h +C:/libs/oldpip/pip_0.4.0_r5/pibitarray.h + +C:/libs/oldpip/pip_0.4.0_r5/pichar.h +pibytearray.h +C:/libs/oldpip/pip_0.4.0_r5/pibytearray.h + +C:/libs/oldpip/pip_0.4.0_r5/picli.cpp +picli.h +C:/libs/oldpip/pip_0.4.0_r5/picli.h + +C:/libs/oldpip/pip_0.4.0_r5/picli.h +piobject.h +C:/libs/oldpip/pip_0.4.0_r5/piobject.h + +C:/libs/oldpip/pip_0.4.0_r5/picodec.cpp +picodec.h +C:/libs/oldpip/pip_0.4.0_r5/picodec.h + +C:/libs/oldpip/pip_0.4.0_r5/picodec.h +piprocess.h +C:/libs/oldpip/pip_0.4.0_r5/piprocess.h + +C:/libs/oldpip/pip_0.4.0_r5/picodeinfo.cpp +picodeinfo.h +C:/libs/oldpip/pip_0.4.0_r5/picodeinfo.h + +C:/libs/oldpip/pip_0.4.0_r5/picodeinfo.h +pistring.h +C:/libs/oldpip/pip_0.4.0_r5/pistring.h + +C:/libs/oldpip/pip_0.4.0_r5/picodeparser.cpp +picodeparser.h +C:/libs/oldpip/pip_0.4.0_r5/picodeparser.h + +C:/libs/oldpip/pip_0.4.0_r5/picodeparser.h +pifile.h +C:/libs/oldpip/pip_0.4.0_r5/pifile.h +pievaluator.h +C:/libs/oldpip/pip_0.4.0_r5/pievaluator.h + +C:/libs/oldpip/pip_0.4.0_r5/picollection.cpp +picollection.h +C:/libs/oldpip/pip_0.4.0_r5/picollection.h + +C:/libs/oldpip/pip_0.4.0_r5/picollection.h +piobject.h +C:/libs/oldpip/pip_0.4.0_r5/piobject.h + +C:/libs/oldpip/pip_0.4.0_r5/piconfig.cpp +piconfig.h +C:/libs/oldpip/pip_0.4.0_r5/piconfig.h + +C:/libs/oldpip/pip_0.4.0_r5/piconfig.h +pifile.h +C:/libs/oldpip/pip_0.4.0_r5/pifile.h + +C:/libs/oldpip/pip_0.4.0_r5/piconnection.cpp +piconnection.h +C:/libs/oldpip/pip_0.4.0_r5/piconnection.h +piconfig.h +C:/libs/oldpip/pip_0.4.0_r5/piconfig.h + +C:/libs/oldpip/pip_0.4.0_r5/piconnection.h +pipacketextractor.h +C:/libs/oldpip/pip_0.4.0_r5/pipacketextractor.h + +C:/libs/oldpip/pip_0.4.0_r5/piconsole.cpp +piconsole.h +C:/libs/oldpip/pip_0.4.0_r5/piconsole.h +pipeer.h +C:/libs/oldpip/pip_0.4.0_r5/pipeer.h + +C:/libs/oldpip/pip_0.4.0_r5/piconsole.h +pikbdlistener.h +C:/libs/oldpip/pip_0.4.0_r5/pikbdlistener.h +piprotocol.h +C:/libs/oldpip/pip_0.4.0_r5/piprotocol.h +pidiagnostics.h +C:/libs/oldpip/pip_0.4.0_r5/pidiagnostics.h +pisystemmonitor.h +C:/libs/oldpip/pip_0.4.0_r5/pisystemmonitor.h +sys/ioctl.h +- +fcntl.h +- + +C:/libs/oldpip/pip_0.4.0_r5/picontainers.cpp +pivector.h +C:/libs/oldpip/pip_0.4.0_r5/pivector.h + +C:/libs/oldpip/pip_0.4.0_r5/picontainers.h +piincludes.h +C:/libs/oldpip/pip_0.4.0_r5/piincludes.h +pivector.h +C:/libs/oldpip/pip_0.4.0_r5/pivector.h +pistack.h +C:/libs/oldpip/pip_0.4.0_r5/pistack.h +piqueue.h +C:/libs/oldpip/pip_0.4.0_r5/piqueue.h +pideque.h +C:/libs/oldpip/pip_0.4.0_r5/pideque.h +pimap.h +C:/libs/oldpip/pip_0.4.0_r5/pimap.h + +C:/libs/oldpip/pip_0.4.0_r5/pideque.h +piincludes.h +C:/libs/oldpip/pip_0.4.0_r5/piincludes.h + +C:/libs/oldpip/pip_0.4.0_r5/pidevicepool.cpp +pidevicepool.h +C:/libs/oldpip/pip_0.4.0_r5/pidevicepool.h + +C:/libs/oldpip/pip_0.4.0_r5/pidevicepool.h +piiodevice.h +C:/libs/oldpip/pip_0.4.0_r5/piiodevice.h + +C:/libs/oldpip/pip_0.4.0_r5/pidiagnostics.cpp +pidiagnostics.h +C:/libs/oldpip/pip_0.4.0_r5/pidiagnostics.h + +C:/libs/oldpip/pip_0.4.0_r5/pidiagnostics.h +pitimer.h +C:/libs/oldpip/pip_0.4.0_r5/pitimer.h + +C:/libs/oldpip/pip_0.4.0_r5/pidir.cpp +pidir.h +C:/libs/oldpip/pip_0.4.0_r5/pidir.h + +C:/libs/oldpip/pip_0.4.0_r5/pidir.h +pifile.h +C:/libs/oldpip/pip_0.4.0_r5/pifile.h +sys/dirent.h +- +sys/dir.h +- +sys/stat.h +- + +C:/libs/oldpip/pip_0.4.0_r5/piethernet.cpp +piethernet.h +C:/libs/oldpip/pip_0.4.0_r5/piethernet.h +piconfig.h +C:/libs/oldpip/pip_0.4.0_r5/piconfig.h +net/if_dl.h +- +hw/nicinfo.h +- +sys/dcmd_io-net.h +- + +C:/libs/oldpip/pip_0.4.0_r5/piethernet.h +pitimer.h +C:/libs/oldpip/pip_0.4.0_r5/pitimer.h +piiodevice.h +C:/libs/oldpip/pip_0.4.0_r5/piiodevice.h +piprocess.h +C:/libs/oldpip/pip_0.4.0_r5/piprocess.h + +C:/libs/oldpip/pip_0.4.0_r5/pievaluator.cpp +pievaluator.h +C:/libs/oldpip/pip_0.4.0_r5/pievaluator.h + +C:/libs/oldpip/pip_0.4.0_r5/pievaluator.h +pistring.h +C:/libs/oldpip/pip_0.4.0_r5/pistring.h +pimath.h +C:/libs/oldpip/pip_0.4.0_r5/pimath.h + +C:/libs/oldpip/pip_0.4.0_r5/pifile.cpp +pifile.h +C:/libs/oldpip/pip_0.4.0_r5/pifile.h + +C:/libs/oldpip/pip_0.4.0_r5/pifile.h +piiodevice.h +C:/libs/oldpip/pip_0.4.0_r5/piiodevice.h +cstdio +- + +C:/libs/oldpip/pip_0.4.0_r5/piincludes.cpp +piincludes.h +C:/libs/oldpip/pip_0.4.0_r5/piincludes.h +piconsole.h +C:/libs/oldpip/pip_0.4.0_r5/piconsole.h +pip.h +- + +C:/libs/oldpip/pip_0.4.0_r5/piincludes.h +pip_export.h +C:/libs/oldpip/pip_0.4.0_r5/pip_export.h +iostream +- +unistd.h +- +stdarg.h +- +stddef.h +- +cstdio +- +cstdlib +- +clocale +- +stdio.h +- +locale.h +- +stdlib.h +- +sys/stat.h +- +sys/types.h +- +errno.h +- +cctype +- +ctime +- +csignal +- +cassert +- +cmath +- +typeinfo +- +algorithm +- +string.h +- +string +- +vector +- +list +- +queue +- +deque +- +stack +- +set +- +map +- +conio.h +- +io.h +- +winsock2.h +- +windows.h +- +wincon.h +- +iphlpapi.h +- +netinet/in.h +- +arpa/inet.h +- +sys/socket.h +- +fcntl.h +- +sys/ioctl.h +- +net/if.h +- +pthread.h +- +ifaddrs.h +- +mach/mach_traps.h +- +mach/mach.h +- +mach/clock.h +- +crt_externs.h +- +pimonitor.h +C:/libs/oldpip/pip_0.4.0_r5/pimonitor.h + +C:/libs/oldpip/pip_0.4.0_r5/piiodevice.cpp +piiodevice.h +C:/libs/oldpip/pip_0.4.0_r5/piiodevice.h +piconfig.h +C:/libs/oldpip/pip_0.4.0_r5/piconfig.h + +C:/libs/oldpip/pip_0.4.0_r5/piiodevice.h +picollection.h +C:/libs/oldpip/pip_0.4.0_r5/picollection.h +pivariant.h +C:/libs/oldpip/pip_0.4.0_r5/pivariant.h +pitimer.h +C:/libs/oldpip/pip_0.4.0_r5/pitimer.h + +C:/libs/oldpip/pip_0.4.0_r5/pikbdlistener.cpp +pikbdlistener.h +C:/libs/oldpip/pip_0.4.0_r5/pikbdlistener.h + +C:/libs/oldpip/pip_0.4.0_r5/pikbdlistener.h +pithread.h +C:/libs/oldpip/pip_0.4.0_r5/pithread.h +termios.h +- + +C:/libs/oldpip/pip_0.4.0_r5/pimap.h +pivector.h +C:/libs/oldpip/pip_0.4.0_r5/pivector.h +pideque.h +C:/libs/oldpip/pip_0.4.0_r5/pideque.h + +C:/libs/oldpip/pip_0.4.0_r5/pimath.cpp +pimath.h +C:/libs/oldpip/pip_0.4.0_r5/pimath.h + +C:/libs/oldpip/pip_0.4.0_r5/pimath.h +pibytearray.h +C:/libs/oldpip/pip_0.4.0_r5/pibytearray.h +complex +- +cmath +- +complex.h +- +math.h +- + +C:/libs/oldpip/pip_0.4.0_r5/pimonitor.cpp +pimonitor.h +C:/libs/oldpip/pip_0.4.0_r5/pimonitor.h + +C:/libs/oldpip/pip_0.4.0_r5/pimonitor.h +pip_export.h +C:/libs/oldpip/pip_0.4.0_r5/pip_export.h + +C:/libs/oldpip/pip_0.4.0_r5/pimultiprotocol.cpp +pimultiprotocol.h +C:/libs/oldpip/pip_0.4.0_r5/pimultiprotocol.h + +C:/libs/oldpip/pip_0.4.0_r5/pimultiprotocol.h +piprotocol.h +C:/libs/oldpip/pip_0.4.0_r5/piprotocol.h + +C:/libs/oldpip/pip_0.4.0_r5/pimutex.cpp +pimutex.h +C:/libs/oldpip/pip_0.4.0_r5/pimutex.h + +C:/libs/oldpip/pip_0.4.0_r5/pimutex.h +piincludes.h +C:/libs/oldpip/pip_0.4.0_r5/piincludes.h + +C:/libs/oldpip/pip_0.4.0_r5/piobject.cpp +piobject.h +C:/libs/oldpip/pip_0.4.0_r5/piobject.h + +C:/libs/oldpip/pip_0.4.0_r5/piobject.h +pivariant.h +C:/libs/oldpip/pip_0.4.0_r5/pivariant.h +pimutex.h +C:/libs/oldpip/pip_0.4.0_r5/pimutex.h + +C:/libs/oldpip/pip_0.4.0_r5/pip_export.h + +C:/libs/oldpip/pip_0.4.0_r5/pipacketextractor.cpp +pipacketextractor.h +C:/libs/oldpip/pip_0.4.0_r5/pipacketextractor.h + +C:/libs/oldpip/pip_0.4.0_r5/pipacketextractor.h +piiodevice.h +C:/libs/oldpip/pip_0.4.0_r5/piiodevice.h + +C:/libs/oldpip/pip_0.4.0_r5/pipeer.cpp +pipeer.h +C:/libs/oldpip/pip_0.4.0_r5/pipeer.h + +C:/libs/oldpip/pip_0.4.0_r5/pipeer.h +piethernet.h +C:/libs/oldpip/pip_0.4.0_r5/piethernet.h +pidiagnostics.h +C:/libs/oldpip/pip_0.4.0_r5/pidiagnostics.h + +C:/libs/oldpip/pip_0.4.0_r5/piprocess.cpp +piprocess.h +C:/libs/oldpip/pip_0.4.0_r5/piprocess.h + +C:/libs/oldpip/pip_0.4.0_r5/piprocess.h +pithread.h +C:/libs/oldpip/pip_0.4.0_r5/pithread.h +pifile.h +C:/libs/oldpip/pip_0.4.0_r5/pifile.h +sys/wait.h +- + +C:/libs/oldpip/pip_0.4.0_r5/piprotocol.cpp +piprotocol.h +C:/libs/oldpip/pip_0.4.0_r5/piprotocol.h + +C:/libs/oldpip/pip_0.4.0_r5/piprotocol.h +piserial.h +C:/libs/oldpip/pip_0.4.0_r5/piserial.h +piethernet.h +C:/libs/oldpip/pip_0.4.0_r5/piethernet.h +pipacketextractor.h +C:/libs/oldpip/pip_0.4.0_r5/pipacketextractor.h +pitimer.h +C:/libs/oldpip/pip_0.4.0_r5/pitimer.h +piconfig.h +C:/libs/oldpip/pip_0.4.0_r5/piconfig.h +math.h +C:/libs/oldpip/pip_0.4.0_r5/math.h + +C:/libs/oldpip/pip_0.4.0_r5/piqueue.h +pivector.h +C:/libs/oldpip/pip_0.4.0_r5/pivector.h + +C:/libs/oldpip/pip_0.4.0_r5/piserial.cpp +piserial.h +C:/libs/oldpip/pip_0.4.0_r5/piserial.h +piconfig.h +C:/libs/oldpip/pip_0.4.0_r5/piconfig.h +pidir.h +C:/libs/oldpip/pip_0.4.0_r5/pidir.h + +C:/libs/oldpip/pip_0.4.0_r5/piserial.h +pitimer.h +C:/libs/oldpip/pip_0.4.0_r5/pitimer.h +piiodevice.h +C:/libs/oldpip/pip_0.4.0_r5/piiodevice.h +termios.h +- +fcntl.h +- +sys/ioctl.h +- + +C:/libs/oldpip/pip_0.4.0_r5/pisignals.cpp +pisignals.h +C:/libs/oldpip/pip_0.4.0_r5/pisignals.h + +C:/libs/oldpip/pip_0.4.0_r5/pisignals.h +picontainers.h +C:/libs/oldpip/pip_0.4.0_r5/picontainers.h +csignal +- + +C:/libs/oldpip/pip_0.4.0_r5/pistack.h +pivector.h +C:/libs/oldpip/pip_0.4.0_r5/pivector.h + +C:/libs/oldpip/pip_0.4.0_r5/pistring.cpp +pistring.h +C:/libs/oldpip/pip_0.4.0_r5/pistring.h + +C:/libs/oldpip/pip_0.4.0_r5/pistring.h +pibytearray.h +C:/libs/oldpip/pip_0.4.0_r5/pibytearray.h +pichar.h +C:/libs/oldpip/pip_0.4.0_r5/pichar.h +math.h +C:/libs/oldpip/pip_0.4.0_r5/math.h + +C:/libs/oldpip/pip_0.4.0_r5/pisystemmonitor.cpp +pisystemmonitor.h +C:/libs/oldpip/pip_0.4.0_r5/pisystemmonitor.h + +C:/libs/oldpip/pip_0.4.0_r5/pisystemmonitor.h +pithread.h +C:/libs/oldpip/pip_0.4.0_r5/pithread.h +piprocess.h +C:/libs/oldpip/pip_0.4.0_r5/piprocess.h + +C:/libs/oldpip/pip_0.4.0_r5/pisystemtests.cpp +pisystemtests.h +C:/libs/oldpip/pip_0.4.0_r5/pisystemtests.h + +C:/libs/oldpip/pip_0.4.0_r5/pisystemtests.h +piconfig.h +C:/libs/oldpip/pip_0.4.0_r5/piconfig.h + +C:/libs/oldpip/pip_0.4.0_r5/pithread.cpp +pithread.h +C:/libs/oldpip/pip_0.4.0_r5/pithread.h +pisystemtests.h +C:/libs/oldpip/pip_0.4.0_r5/pisystemtests.h + +C:/libs/oldpip/pip_0.4.0_r5/pithread.h +signal.h +- +pimutex.h +C:/libs/oldpip/pip_0.4.0_r5/pimutex.h +piobject.h +C:/libs/oldpip/pip_0.4.0_r5/piobject.h + +C:/libs/oldpip/pip_0.4.0_r5/pitime.cpp +pitime.h +C:/libs/oldpip/pip_0.4.0_r5/pitime.h +pisystemtests.h +C:/libs/oldpip/pip_0.4.0_r5/pisystemtests.h + +C:/libs/oldpip/pip_0.4.0_r5/pitime.h +ctime +- +csignal +- +pistring.h +C:/libs/oldpip/pip_0.4.0_r5/pistring.h + +C:/libs/oldpip/pip_0.4.0_r5/pitimer.cpp +pitimer.h +C:/libs/oldpip/pip_0.4.0_r5/pitimer.h +pisystemtests.h +C:/libs/oldpip/pip_0.4.0_r5/pisystemtests.h + +C:/libs/oldpip/pip_0.4.0_r5/pitimer.h +pithread.h +C:/libs/oldpip/pip_0.4.0_r5/pithread.h +pitime.h +C:/libs/oldpip/pip_0.4.0_r5/pitime.h + +C:/libs/oldpip/pip_0.4.0_r5/piusb.cpp +piusb.h +C:/libs/oldpip/pip_0.4.0_r5/piusb.h +piconfig.h +C:/libs/oldpip/pip_0.4.0_r5/piconfig.h +lusb0_usb.h +- +usb.h +- + +C:/libs/oldpip/pip_0.4.0_r5/piusb.h +piiodevice.h +C:/libs/oldpip/pip_0.4.0_r5/piiodevice.h + +C:/libs/oldpip/pip_0.4.0_r5/pivariant.cpp +pivariant.h +C:/libs/oldpip/pip_0.4.0_r5/pivariant.h + +C:/libs/oldpip/pip_0.4.0_r5/pivariant.h +pistring.h +C:/libs/oldpip/pip_0.4.0_r5/pistring.h +pibitarray.h +C:/libs/oldpip/pip_0.4.0_r5/pibitarray.h +pitime.h +C:/libs/oldpip/pip_0.4.0_r5/pitime.h +pimath.h +C:/libs/oldpip/pip_0.4.0_r5/pimath.h + +C:/libs/oldpip/pip_0.4.0_r5/pivector.h +piincludes.h +C:/libs/oldpip/pip_0.4.0_r5/piincludes.h + +pibinarylog.h +pifile.h +pifile.h + +pibitarray.h +picontainers.h +picontainers.h + +pibytearray.h +pibitarray.h +pibitarray.h + +pichar.h +pibytearray.h +pibytearray.h + +picli.h +piobject.h +piobject.h + +picodec.h +piprocess.h +piprocess.h + +picollection.h +piobject.h +piobject.h + +picontainers.h +piincludes.h +piincludes.h +pivector.h +pivector.h +pistack.h +pistack.h +piqueue.h +piqueue.h +pideque.h +pideque.h +pimap.h +pimap.h + +picrc.h +pistring.h +pistring.h + +pideque.h +piincludes.h +piincludes.h + +pievaluator.h +pistring.h +pistring.h +pimath.h +pimath.h + +pifile.h +piiodevice.h +piiodevice.h +cstdio +- + +piiodevice.h +picollection.h +picollection.h +pivariant.h +pivariant.h +pitimer.h +pitimer.h + +pimap.h +pivector.h +pivector.h +pideque.h +pideque.h + +pimath.h +pibytearray.h +pibytearray.h +complex +- +cmath +- +complex.h +- +math.h +- + +pimultiprotocol.h +piprotocol.h +piprotocol.h + +pimutex.h +piincludes.h +piincludes.h + +piobject.h +pivariant.h +pivariant.h +pimutex.h +pimutex.h + +pip.h +pitimer.h +pitimer.h +pivariant.h +pivariant.h +piconsole.h +piconsole.h +picli.h +picli.h +pievaluator.h +pievaluator.h +pimultiprotocol.h +pimultiprotocol.h +picodec.h +picodec.h +pisignals.h +pisignals.h +piobject.h +piobject.h +pisystemmonitor.h +pisystemmonitor.h +pipeer.h +pipeer.h +picrc.h +picrc.h +pistatemachine.h +pistatemachine.h +picollection.h +picollection.h +piserial.h +piserial.h +pibinarylog.h +pibinarylog.h +piusb.h +piusb.h + +pipeer.h +piethernet.h +piethernet.h +pidiagnostics.h +pidiagnostics.h + +piqueue.h +pivector.h +pivector.h + +piserial.h +pitimer.h +pitimer.h +piiodevice.h +piiodevice.h +termios.h +- +fcntl.h +- +sys/ioctl.h +- + +pisignals.h +picontainers.h +picontainers.h +csignal +- + +pistack.h +pivector.h +pivector.h + +pistatemachine.h +piobject.h +piobject.h + +pistring.h +pibytearray.h +pibytearray.h +pichar.h +pichar.h +math.h +math.h + +pitime.h +ctime +- +csignal +- +pistring.h +pistring.h + +pitimer.h +pithread.h +pithread.h +pitime.h +pitime.h + +piusb.h +piiodevice.h +piiodevice.h + +pivariant.h +pistring.h +pistring.h +pibitarray.h +pibitarray.h +pitime.h +pitime.h +pimath.h +pimath.h + +pivector.h +piincludes.h +piincludes.h + diff --git a/_oldpip/pip_0.4.0_r5/CMakeFiles/pip.dir/DependInfo.cmake b/_oldpip/pip_0.4.0_r5/CMakeFiles/pip.dir/DependInfo.cmake new file mode 100644 index 0000000..b8f7b9b --- /dev/null +++ b/_oldpip/pip_0.4.0_r5/CMakeFiles/pip.dir/DependInfo.cmake @@ -0,0 +1,93 @@ +# 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 + "C:/libs/oldpip/pip_0.4.0_r5/pibinarylog.cpp" "C:/libs/oldpip/pip_0.4.0_r5/CMakeFiles/pip.dir/pibinarylog.cpp.obj" + "C:/libs/oldpip/pip_0.4.0_r5/pibytearray.cpp" "C:/libs/oldpip/pip_0.4.0_r5/CMakeFiles/pip.dir/pibytearray.cpp.obj" + "C:/libs/oldpip/pip_0.4.0_r5/picli.cpp" "C:/libs/oldpip/pip_0.4.0_r5/CMakeFiles/pip.dir/picli.cpp.obj" + "C:/libs/oldpip/pip_0.4.0_r5/picodec.cpp" "C:/libs/oldpip/pip_0.4.0_r5/CMakeFiles/pip.dir/picodec.cpp.obj" + "C:/libs/oldpip/pip_0.4.0_r5/picodeinfo.cpp" "C:/libs/oldpip/pip_0.4.0_r5/CMakeFiles/pip.dir/picodeinfo.cpp.obj" + "C:/libs/oldpip/pip_0.4.0_r5/picodeparser.cpp" "C:/libs/oldpip/pip_0.4.0_r5/CMakeFiles/pip.dir/picodeparser.cpp.obj" + "C:/libs/oldpip/pip_0.4.0_r5/picollection.cpp" "C:/libs/oldpip/pip_0.4.0_r5/CMakeFiles/pip.dir/picollection.cpp.obj" + "C:/libs/oldpip/pip_0.4.0_r5/piconfig.cpp" "C:/libs/oldpip/pip_0.4.0_r5/CMakeFiles/pip.dir/piconfig.cpp.obj" + "C:/libs/oldpip/pip_0.4.0_r5/piconnection.cpp" "C:/libs/oldpip/pip_0.4.0_r5/CMakeFiles/pip.dir/piconnection.cpp.obj" + "C:/libs/oldpip/pip_0.4.0_r5/piconsole.cpp" "C:/libs/oldpip/pip_0.4.0_r5/CMakeFiles/pip.dir/piconsole.cpp.obj" + "C:/libs/oldpip/pip_0.4.0_r5/picontainers.cpp" "C:/libs/oldpip/pip_0.4.0_r5/CMakeFiles/pip.dir/picontainers.cpp.obj" + "C:/libs/oldpip/pip_0.4.0_r5/pidevicepool.cpp" "C:/libs/oldpip/pip_0.4.0_r5/CMakeFiles/pip.dir/pidevicepool.cpp.obj" + "C:/libs/oldpip/pip_0.4.0_r5/pidiagnostics.cpp" "C:/libs/oldpip/pip_0.4.0_r5/CMakeFiles/pip.dir/pidiagnostics.cpp.obj" + "C:/libs/oldpip/pip_0.4.0_r5/pidir.cpp" "C:/libs/oldpip/pip_0.4.0_r5/CMakeFiles/pip.dir/pidir.cpp.obj" + "C:/libs/oldpip/pip_0.4.0_r5/piethernet.cpp" "C:/libs/oldpip/pip_0.4.0_r5/CMakeFiles/pip.dir/piethernet.cpp.obj" + "C:/libs/oldpip/pip_0.4.0_r5/pievaluator.cpp" "C:/libs/oldpip/pip_0.4.0_r5/CMakeFiles/pip.dir/pievaluator.cpp.obj" + "C:/libs/oldpip/pip_0.4.0_r5/pifile.cpp" "C:/libs/oldpip/pip_0.4.0_r5/CMakeFiles/pip.dir/pifile.cpp.obj" + "C:/libs/oldpip/pip_0.4.0_r5/piincludes.cpp" "C:/libs/oldpip/pip_0.4.0_r5/CMakeFiles/pip.dir/piincludes.cpp.obj" + "C:/libs/oldpip/pip_0.4.0_r5/piiodevice.cpp" "C:/libs/oldpip/pip_0.4.0_r5/CMakeFiles/pip.dir/piiodevice.cpp.obj" + "C:/libs/oldpip/pip_0.4.0_r5/pikbdlistener.cpp" "C:/libs/oldpip/pip_0.4.0_r5/CMakeFiles/pip.dir/pikbdlistener.cpp.obj" + "C:/libs/oldpip/pip_0.4.0_r5/pimath.cpp" "C:/libs/oldpip/pip_0.4.0_r5/CMakeFiles/pip.dir/pimath.cpp.obj" + "C:/libs/oldpip/pip_0.4.0_r5/pimonitor.cpp" "C:/libs/oldpip/pip_0.4.0_r5/CMakeFiles/pip.dir/pimonitor.cpp.obj" + "C:/libs/oldpip/pip_0.4.0_r5/pimultiprotocol.cpp" "C:/libs/oldpip/pip_0.4.0_r5/CMakeFiles/pip.dir/pimultiprotocol.cpp.obj" + "C:/libs/oldpip/pip_0.4.0_r5/pimutex.cpp" "C:/libs/oldpip/pip_0.4.0_r5/CMakeFiles/pip.dir/pimutex.cpp.obj" + "C:/libs/oldpip/pip_0.4.0_r5/piobject.cpp" "C:/libs/oldpip/pip_0.4.0_r5/CMakeFiles/pip.dir/piobject.cpp.obj" + "C:/libs/oldpip/pip_0.4.0_r5/pipacketextractor.cpp" "C:/libs/oldpip/pip_0.4.0_r5/CMakeFiles/pip.dir/pipacketextractor.cpp.obj" + "C:/libs/oldpip/pip_0.4.0_r5/pipeer.cpp" "C:/libs/oldpip/pip_0.4.0_r5/CMakeFiles/pip.dir/pipeer.cpp.obj" + "C:/libs/oldpip/pip_0.4.0_r5/piprocess.cpp" "C:/libs/oldpip/pip_0.4.0_r5/CMakeFiles/pip.dir/piprocess.cpp.obj" + "C:/libs/oldpip/pip_0.4.0_r5/piprotocol.cpp" "C:/libs/oldpip/pip_0.4.0_r5/CMakeFiles/pip.dir/piprotocol.cpp.obj" + "C:/libs/oldpip/pip_0.4.0_r5/piserial.cpp" "C:/libs/oldpip/pip_0.4.0_r5/CMakeFiles/pip.dir/piserial.cpp.obj" + "C:/libs/oldpip/pip_0.4.0_r5/pisignals.cpp" "C:/libs/oldpip/pip_0.4.0_r5/CMakeFiles/pip.dir/pisignals.cpp.obj" + "C:/libs/oldpip/pip_0.4.0_r5/pistring.cpp" "C:/libs/oldpip/pip_0.4.0_r5/CMakeFiles/pip.dir/pistring.cpp.obj" + "C:/libs/oldpip/pip_0.4.0_r5/pisystemmonitor.cpp" "C:/libs/oldpip/pip_0.4.0_r5/CMakeFiles/pip.dir/pisystemmonitor.cpp.obj" + "C:/libs/oldpip/pip_0.4.0_r5/pisystemtests.cpp" "C:/libs/oldpip/pip_0.4.0_r5/CMakeFiles/pip.dir/pisystemtests.cpp.obj" + "C:/libs/oldpip/pip_0.4.0_r5/pithread.cpp" "C:/libs/oldpip/pip_0.4.0_r5/CMakeFiles/pip.dir/pithread.cpp.obj" + "C:/libs/oldpip/pip_0.4.0_r5/pitime.cpp" "C:/libs/oldpip/pip_0.4.0_r5/CMakeFiles/pip.dir/pitime.cpp.obj" + "C:/libs/oldpip/pip_0.4.0_r5/pitimer.cpp" "C:/libs/oldpip/pip_0.4.0_r5/CMakeFiles/pip.dir/pitimer.cpp.obj" + "C:/libs/oldpip/pip_0.4.0_r5/piusb.cpp" "C:/libs/oldpip/pip_0.4.0_r5/CMakeFiles/pip.dir/piusb.cpp.obj" + "C:/libs/oldpip/pip_0.4.0_r5/pivariant.cpp" "C:/libs/oldpip/pip_0.4.0_r5/CMakeFiles/pip.dir/pivariant.cpp.obj" + ) +SET(CMAKE_CXX_COMPILER_ID "GNU") + +# Preprocessor definitions for this target. +SET(CMAKE_TARGET_DEFINITIONS + "PIP_MATH_J0" + "PIP_MATH_J1" + "PIP_MATH_JN" + "PIP_MATH_Y0" + "PIP_MATH_Y1" + "PIP_MATH_YN" + ) + +# Targets to which this target links. +SET(CMAKE_TARGET_LINKED_INFO_FILES + ) + +# The include file search paths: +SET(CMAKE_C_TARGET_INCLUDE_PATH + "." + "." + "C:/Qt/4.8.6/include/ActiveQt" + "C:/Qt/4.8.6/include/QtDesigner" + "C:/Qt/4.8.6/include/QtDeclarative" + "C:/Qt/4.8.6/include/QtScriptTools" + "C:/Qt/4.8.6/include/QtDBus" + "C:/Qt/4.8.6/include/QtXml" + "C:/Qt/4.8.6/include/QtSql" + "C:/Qt/4.8.6/include/QtOpenGL" + "C:/Qt/4.8.6/include/QtMultimedia" + "C:/Qt/4.8.6/include/QtNetwork" + "C:/Qt/4.8.6/include/phonon" + "C:/Qt/4.8.6/include/QtXmlPatterns" + "C:/Qt/4.8.6/include/QtWebKit" + "C:/Qt/4.8.6/include/QtHelp" + "C:/Qt/4.8.6/include/QtUiTools" + "C:/Qt/4.8.6/include/QtTest" + "C:/Qt/4.8.6/include/QtScript" + "C:/Qt/4.8.6/include/QtSvg" + "C:/Qt/4.8.6/include/Qt3Support" + "C:/Qt/4.8.6/include/QtGui" + "C:/Qt/4.8.6/include/QtCore" + "C:/Qt/4.8.6/mkspecs/default" + "C:/Qt/4.8.6/include" + ) +SET(CMAKE_CXX_TARGET_INCLUDE_PATH ${CMAKE_C_TARGET_INCLUDE_PATH}) +SET(CMAKE_Fortran_TARGET_INCLUDE_PATH ${CMAKE_C_TARGET_INCLUDE_PATH}) +SET(CMAKE_ASM_TARGET_INCLUDE_PATH ${CMAKE_C_TARGET_INCLUDE_PATH}) diff --git a/_oldpip/pip_0.4.0_r5/CMakeFiles/pip.dir/build.make b/_oldpip/pip_0.4.0_r5/CMakeFiles/pip.dir/build.make new file mode 100644 index 0000000..4eccf36 --- /dev/null +++ b/_oldpip/pip_0.4.0_r5/CMakeFiles/pip.dir/build.make @@ -0,0 +1,1134 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "MinGW Makefiles" Generator, CMake Version 2.8 + +#============================================================================= +# 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. + +SHELL = cmd.exe + +# The CMake executable. +CMAKE_COMMAND = "C:\Program Files (x86)\CMake 2.8\bin\cmake.exe" + +# The command to remove a file. +RM = "C:\Program Files (x86)\CMake 2.8\bin\cmake.exe" -E remove -f + +# Escaping for special characters. +EQUALS = = + +# The program to use to edit the cache. +CMAKE_EDIT_COMMAND = "C:\Program Files (x86)\CMake 2.8\bin\cmake-gui.exe" + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = C:\libs\oldpip\pip_0.4.0_r5 + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = C:\libs\oldpip\pip_0.4.0_r5 + +# Include any dependencies generated for this target. +include CMakeFiles/pip.dir/depend.make + +# Include the progress variables for this target. +include CMakeFiles/pip.dir/progress.make + +# Include the compile flags for this target's objects. +include CMakeFiles/pip.dir/flags.make + +CMakeFiles/pip.dir/pibinarylog.cpp.obj: CMakeFiles/pip.dir/flags.make +CMakeFiles/pip.dir/pibinarylog.cpp.obj: CMakeFiles/pip.dir/includes_CXX.rsp +CMakeFiles/pip.dir/pibinarylog.cpp.obj: pibinarylog.cpp + $(CMAKE_COMMAND) -E cmake_progress_report C:\libs\oldpip\pip_0.4.0_r5\CMakeFiles $(CMAKE_PROGRESS_1) + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Building CXX object CMakeFiles/pip.dir/pibinarylog.cpp.obj" + C:\mingw\x32\bin\g++.exe $(CXX_DEFINES) $(CXX_FLAGS) -o CMakeFiles\pip.dir\pibinarylog.cpp.obj -c C:\libs\oldpip\pip_0.4.0_r5\pibinarylog.cpp + +CMakeFiles/pip.dir/pibinarylog.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/pip.dir/pibinarylog.cpp.i" + C:\mingw\x32\bin\g++.exe $(CXX_DEFINES) $(CXX_FLAGS) -E C:\libs\oldpip\pip_0.4.0_r5\pibinarylog.cpp > CMakeFiles\pip.dir\pibinarylog.cpp.i + +CMakeFiles/pip.dir/pibinarylog.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/pip.dir/pibinarylog.cpp.s" + C:\mingw\x32\bin\g++.exe $(CXX_DEFINES) $(CXX_FLAGS) -S C:\libs\oldpip\pip_0.4.0_r5\pibinarylog.cpp -o CMakeFiles\pip.dir\pibinarylog.cpp.s + +CMakeFiles/pip.dir/pibinarylog.cpp.obj.requires: +.PHONY : CMakeFiles/pip.dir/pibinarylog.cpp.obj.requires + +CMakeFiles/pip.dir/pibinarylog.cpp.obj.provides: CMakeFiles/pip.dir/pibinarylog.cpp.obj.requires + $(MAKE) -f CMakeFiles\pip.dir\build.make CMakeFiles/pip.dir/pibinarylog.cpp.obj.provides.build +.PHONY : CMakeFiles/pip.dir/pibinarylog.cpp.obj.provides + +CMakeFiles/pip.dir/pibinarylog.cpp.obj.provides.build: CMakeFiles/pip.dir/pibinarylog.cpp.obj + +CMakeFiles/pip.dir/pibytearray.cpp.obj: CMakeFiles/pip.dir/flags.make +CMakeFiles/pip.dir/pibytearray.cpp.obj: CMakeFiles/pip.dir/includes_CXX.rsp +CMakeFiles/pip.dir/pibytearray.cpp.obj: pibytearray.cpp + $(CMAKE_COMMAND) -E cmake_progress_report C:\libs\oldpip\pip_0.4.0_r5\CMakeFiles $(CMAKE_PROGRESS_2) + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Building CXX object CMakeFiles/pip.dir/pibytearray.cpp.obj" + C:\mingw\x32\bin\g++.exe $(CXX_DEFINES) $(CXX_FLAGS) -o CMakeFiles\pip.dir\pibytearray.cpp.obj -c C:\libs\oldpip\pip_0.4.0_r5\pibytearray.cpp + +CMakeFiles/pip.dir/pibytearray.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/pip.dir/pibytearray.cpp.i" + C:\mingw\x32\bin\g++.exe $(CXX_DEFINES) $(CXX_FLAGS) -E C:\libs\oldpip\pip_0.4.0_r5\pibytearray.cpp > CMakeFiles\pip.dir\pibytearray.cpp.i + +CMakeFiles/pip.dir/pibytearray.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/pip.dir/pibytearray.cpp.s" + C:\mingw\x32\bin\g++.exe $(CXX_DEFINES) $(CXX_FLAGS) -S C:\libs\oldpip\pip_0.4.0_r5\pibytearray.cpp -o CMakeFiles\pip.dir\pibytearray.cpp.s + +CMakeFiles/pip.dir/pibytearray.cpp.obj.requires: +.PHONY : CMakeFiles/pip.dir/pibytearray.cpp.obj.requires + +CMakeFiles/pip.dir/pibytearray.cpp.obj.provides: CMakeFiles/pip.dir/pibytearray.cpp.obj.requires + $(MAKE) -f CMakeFiles\pip.dir\build.make CMakeFiles/pip.dir/pibytearray.cpp.obj.provides.build +.PHONY : CMakeFiles/pip.dir/pibytearray.cpp.obj.provides + +CMakeFiles/pip.dir/pibytearray.cpp.obj.provides.build: CMakeFiles/pip.dir/pibytearray.cpp.obj + +CMakeFiles/pip.dir/picli.cpp.obj: CMakeFiles/pip.dir/flags.make +CMakeFiles/pip.dir/picli.cpp.obj: CMakeFiles/pip.dir/includes_CXX.rsp +CMakeFiles/pip.dir/picli.cpp.obj: picli.cpp + $(CMAKE_COMMAND) -E cmake_progress_report C:\libs\oldpip\pip_0.4.0_r5\CMakeFiles $(CMAKE_PROGRESS_3) + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Building CXX object CMakeFiles/pip.dir/picli.cpp.obj" + C:\mingw\x32\bin\g++.exe $(CXX_DEFINES) $(CXX_FLAGS) -o CMakeFiles\pip.dir\picli.cpp.obj -c C:\libs\oldpip\pip_0.4.0_r5\picli.cpp + +CMakeFiles/pip.dir/picli.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/pip.dir/picli.cpp.i" + C:\mingw\x32\bin\g++.exe $(CXX_DEFINES) $(CXX_FLAGS) -E C:\libs\oldpip\pip_0.4.0_r5\picli.cpp > CMakeFiles\pip.dir\picli.cpp.i + +CMakeFiles/pip.dir/picli.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/pip.dir/picli.cpp.s" + C:\mingw\x32\bin\g++.exe $(CXX_DEFINES) $(CXX_FLAGS) -S C:\libs\oldpip\pip_0.4.0_r5\picli.cpp -o CMakeFiles\pip.dir\picli.cpp.s + +CMakeFiles/pip.dir/picli.cpp.obj.requires: +.PHONY : CMakeFiles/pip.dir/picli.cpp.obj.requires + +CMakeFiles/pip.dir/picli.cpp.obj.provides: CMakeFiles/pip.dir/picli.cpp.obj.requires + $(MAKE) -f CMakeFiles\pip.dir\build.make CMakeFiles/pip.dir/picli.cpp.obj.provides.build +.PHONY : CMakeFiles/pip.dir/picli.cpp.obj.provides + +CMakeFiles/pip.dir/picli.cpp.obj.provides.build: CMakeFiles/pip.dir/picli.cpp.obj + +CMakeFiles/pip.dir/picodec.cpp.obj: CMakeFiles/pip.dir/flags.make +CMakeFiles/pip.dir/picodec.cpp.obj: CMakeFiles/pip.dir/includes_CXX.rsp +CMakeFiles/pip.dir/picodec.cpp.obj: picodec.cpp + $(CMAKE_COMMAND) -E cmake_progress_report C:\libs\oldpip\pip_0.4.0_r5\CMakeFiles $(CMAKE_PROGRESS_4) + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Building CXX object CMakeFiles/pip.dir/picodec.cpp.obj" + C:\mingw\x32\bin\g++.exe $(CXX_DEFINES) $(CXX_FLAGS) -o CMakeFiles\pip.dir\picodec.cpp.obj -c C:\libs\oldpip\pip_0.4.0_r5\picodec.cpp + +CMakeFiles/pip.dir/picodec.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/pip.dir/picodec.cpp.i" + C:\mingw\x32\bin\g++.exe $(CXX_DEFINES) $(CXX_FLAGS) -E C:\libs\oldpip\pip_0.4.0_r5\picodec.cpp > CMakeFiles\pip.dir\picodec.cpp.i + +CMakeFiles/pip.dir/picodec.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/pip.dir/picodec.cpp.s" + C:\mingw\x32\bin\g++.exe $(CXX_DEFINES) $(CXX_FLAGS) -S C:\libs\oldpip\pip_0.4.0_r5\picodec.cpp -o CMakeFiles\pip.dir\picodec.cpp.s + +CMakeFiles/pip.dir/picodec.cpp.obj.requires: +.PHONY : CMakeFiles/pip.dir/picodec.cpp.obj.requires + +CMakeFiles/pip.dir/picodec.cpp.obj.provides: CMakeFiles/pip.dir/picodec.cpp.obj.requires + $(MAKE) -f CMakeFiles\pip.dir\build.make CMakeFiles/pip.dir/picodec.cpp.obj.provides.build +.PHONY : CMakeFiles/pip.dir/picodec.cpp.obj.provides + +CMakeFiles/pip.dir/picodec.cpp.obj.provides.build: CMakeFiles/pip.dir/picodec.cpp.obj + +CMakeFiles/pip.dir/picodeinfo.cpp.obj: CMakeFiles/pip.dir/flags.make +CMakeFiles/pip.dir/picodeinfo.cpp.obj: CMakeFiles/pip.dir/includes_CXX.rsp +CMakeFiles/pip.dir/picodeinfo.cpp.obj: picodeinfo.cpp + $(CMAKE_COMMAND) -E cmake_progress_report C:\libs\oldpip\pip_0.4.0_r5\CMakeFiles $(CMAKE_PROGRESS_5) + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Building CXX object CMakeFiles/pip.dir/picodeinfo.cpp.obj" + C:\mingw\x32\bin\g++.exe $(CXX_DEFINES) $(CXX_FLAGS) -o CMakeFiles\pip.dir\picodeinfo.cpp.obj -c C:\libs\oldpip\pip_0.4.0_r5\picodeinfo.cpp + +CMakeFiles/pip.dir/picodeinfo.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/pip.dir/picodeinfo.cpp.i" + C:\mingw\x32\bin\g++.exe $(CXX_DEFINES) $(CXX_FLAGS) -E C:\libs\oldpip\pip_0.4.0_r5\picodeinfo.cpp > CMakeFiles\pip.dir\picodeinfo.cpp.i + +CMakeFiles/pip.dir/picodeinfo.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/pip.dir/picodeinfo.cpp.s" + C:\mingw\x32\bin\g++.exe $(CXX_DEFINES) $(CXX_FLAGS) -S C:\libs\oldpip\pip_0.4.0_r5\picodeinfo.cpp -o CMakeFiles\pip.dir\picodeinfo.cpp.s + +CMakeFiles/pip.dir/picodeinfo.cpp.obj.requires: +.PHONY : CMakeFiles/pip.dir/picodeinfo.cpp.obj.requires + +CMakeFiles/pip.dir/picodeinfo.cpp.obj.provides: CMakeFiles/pip.dir/picodeinfo.cpp.obj.requires + $(MAKE) -f CMakeFiles\pip.dir\build.make CMakeFiles/pip.dir/picodeinfo.cpp.obj.provides.build +.PHONY : CMakeFiles/pip.dir/picodeinfo.cpp.obj.provides + +CMakeFiles/pip.dir/picodeinfo.cpp.obj.provides.build: CMakeFiles/pip.dir/picodeinfo.cpp.obj + +CMakeFiles/pip.dir/picodeparser.cpp.obj: CMakeFiles/pip.dir/flags.make +CMakeFiles/pip.dir/picodeparser.cpp.obj: CMakeFiles/pip.dir/includes_CXX.rsp +CMakeFiles/pip.dir/picodeparser.cpp.obj: picodeparser.cpp + $(CMAKE_COMMAND) -E cmake_progress_report C:\libs\oldpip\pip_0.4.0_r5\CMakeFiles $(CMAKE_PROGRESS_6) + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Building CXX object CMakeFiles/pip.dir/picodeparser.cpp.obj" + C:\mingw\x32\bin\g++.exe $(CXX_DEFINES) $(CXX_FLAGS) -o CMakeFiles\pip.dir\picodeparser.cpp.obj -c C:\libs\oldpip\pip_0.4.0_r5\picodeparser.cpp + +CMakeFiles/pip.dir/picodeparser.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/pip.dir/picodeparser.cpp.i" + C:\mingw\x32\bin\g++.exe $(CXX_DEFINES) $(CXX_FLAGS) -E C:\libs\oldpip\pip_0.4.0_r5\picodeparser.cpp > CMakeFiles\pip.dir\picodeparser.cpp.i + +CMakeFiles/pip.dir/picodeparser.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/pip.dir/picodeparser.cpp.s" + C:\mingw\x32\bin\g++.exe $(CXX_DEFINES) $(CXX_FLAGS) -S C:\libs\oldpip\pip_0.4.0_r5\picodeparser.cpp -o CMakeFiles\pip.dir\picodeparser.cpp.s + +CMakeFiles/pip.dir/picodeparser.cpp.obj.requires: +.PHONY : CMakeFiles/pip.dir/picodeparser.cpp.obj.requires + +CMakeFiles/pip.dir/picodeparser.cpp.obj.provides: CMakeFiles/pip.dir/picodeparser.cpp.obj.requires + $(MAKE) -f CMakeFiles\pip.dir\build.make CMakeFiles/pip.dir/picodeparser.cpp.obj.provides.build +.PHONY : CMakeFiles/pip.dir/picodeparser.cpp.obj.provides + +CMakeFiles/pip.dir/picodeparser.cpp.obj.provides.build: CMakeFiles/pip.dir/picodeparser.cpp.obj + +CMakeFiles/pip.dir/picollection.cpp.obj: CMakeFiles/pip.dir/flags.make +CMakeFiles/pip.dir/picollection.cpp.obj: CMakeFiles/pip.dir/includes_CXX.rsp +CMakeFiles/pip.dir/picollection.cpp.obj: picollection.cpp + $(CMAKE_COMMAND) -E cmake_progress_report C:\libs\oldpip\pip_0.4.0_r5\CMakeFiles $(CMAKE_PROGRESS_7) + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Building CXX object CMakeFiles/pip.dir/picollection.cpp.obj" + C:\mingw\x32\bin\g++.exe $(CXX_DEFINES) $(CXX_FLAGS) -o CMakeFiles\pip.dir\picollection.cpp.obj -c C:\libs\oldpip\pip_0.4.0_r5\picollection.cpp + +CMakeFiles/pip.dir/picollection.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/pip.dir/picollection.cpp.i" + C:\mingw\x32\bin\g++.exe $(CXX_DEFINES) $(CXX_FLAGS) -E C:\libs\oldpip\pip_0.4.0_r5\picollection.cpp > CMakeFiles\pip.dir\picollection.cpp.i + +CMakeFiles/pip.dir/picollection.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/pip.dir/picollection.cpp.s" + C:\mingw\x32\bin\g++.exe $(CXX_DEFINES) $(CXX_FLAGS) -S C:\libs\oldpip\pip_0.4.0_r5\picollection.cpp -o CMakeFiles\pip.dir\picollection.cpp.s + +CMakeFiles/pip.dir/picollection.cpp.obj.requires: +.PHONY : CMakeFiles/pip.dir/picollection.cpp.obj.requires + +CMakeFiles/pip.dir/picollection.cpp.obj.provides: CMakeFiles/pip.dir/picollection.cpp.obj.requires + $(MAKE) -f CMakeFiles\pip.dir\build.make CMakeFiles/pip.dir/picollection.cpp.obj.provides.build +.PHONY : CMakeFiles/pip.dir/picollection.cpp.obj.provides + +CMakeFiles/pip.dir/picollection.cpp.obj.provides.build: CMakeFiles/pip.dir/picollection.cpp.obj + +CMakeFiles/pip.dir/piconfig.cpp.obj: CMakeFiles/pip.dir/flags.make +CMakeFiles/pip.dir/piconfig.cpp.obj: CMakeFiles/pip.dir/includes_CXX.rsp +CMakeFiles/pip.dir/piconfig.cpp.obj: piconfig.cpp + $(CMAKE_COMMAND) -E cmake_progress_report C:\libs\oldpip\pip_0.4.0_r5\CMakeFiles $(CMAKE_PROGRESS_8) + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Building CXX object CMakeFiles/pip.dir/piconfig.cpp.obj" + C:\mingw\x32\bin\g++.exe $(CXX_DEFINES) $(CXX_FLAGS) -o CMakeFiles\pip.dir\piconfig.cpp.obj -c C:\libs\oldpip\pip_0.4.0_r5\piconfig.cpp + +CMakeFiles/pip.dir/piconfig.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/pip.dir/piconfig.cpp.i" + C:\mingw\x32\bin\g++.exe $(CXX_DEFINES) $(CXX_FLAGS) -E C:\libs\oldpip\pip_0.4.0_r5\piconfig.cpp > CMakeFiles\pip.dir\piconfig.cpp.i + +CMakeFiles/pip.dir/piconfig.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/pip.dir/piconfig.cpp.s" + C:\mingw\x32\bin\g++.exe $(CXX_DEFINES) $(CXX_FLAGS) -S C:\libs\oldpip\pip_0.4.0_r5\piconfig.cpp -o CMakeFiles\pip.dir\piconfig.cpp.s + +CMakeFiles/pip.dir/piconfig.cpp.obj.requires: +.PHONY : CMakeFiles/pip.dir/piconfig.cpp.obj.requires + +CMakeFiles/pip.dir/piconfig.cpp.obj.provides: CMakeFiles/pip.dir/piconfig.cpp.obj.requires + $(MAKE) -f CMakeFiles\pip.dir\build.make CMakeFiles/pip.dir/piconfig.cpp.obj.provides.build +.PHONY : CMakeFiles/pip.dir/piconfig.cpp.obj.provides + +CMakeFiles/pip.dir/piconfig.cpp.obj.provides.build: CMakeFiles/pip.dir/piconfig.cpp.obj + +CMakeFiles/pip.dir/piconnection.cpp.obj: CMakeFiles/pip.dir/flags.make +CMakeFiles/pip.dir/piconnection.cpp.obj: CMakeFiles/pip.dir/includes_CXX.rsp +CMakeFiles/pip.dir/piconnection.cpp.obj: piconnection.cpp + $(CMAKE_COMMAND) -E cmake_progress_report C:\libs\oldpip\pip_0.4.0_r5\CMakeFiles $(CMAKE_PROGRESS_9) + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Building CXX object CMakeFiles/pip.dir/piconnection.cpp.obj" + C:\mingw\x32\bin\g++.exe $(CXX_DEFINES) $(CXX_FLAGS) -o CMakeFiles\pip.dir\piconnection.cpp.obj -c C:\libs\oldpip\pip_0.4.0_r5\piconnection.cpp + +CMakeFiles/pip.dir/piconnection.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/pip.dir/piconnection.cpp.i" + C:\mingw\x32\bin\g++.exe $(CXX_DEFINES) $(CXX_FLAGS) -E C:\libs\oldpip\pip_0.4.0_r5\piconnection.cpp > CMakeFiles\pip.dir\piconnection.cpp.i + +CMakeFiles/pip.dir/piconnection.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/pip.dir/piconnection.cpp.s" + C:\mingw\x32\bin\g++.exe $(CXX_DEFINES) $(CXX_FLAGS) -S C:\libs\oldpip\pip_0.4.0_r5\piconnection.cpp -o CMakeFiles\pip.dir\piconnection.cpp.s + +CMakeFiles/pip.dir/piconnection.cpp.obj.requires: +.PHONY : CMakeFiles/pip.dir/piconnection.cpp.obj.requires + +CMakeFiles/pip.dir/piconnection.cpp.obj.provides: CMakeFiles/pip.dir/piconnection.cpp.obj.requires + $(MAKE) -f CMakeFiles\pip.dir\build.make CMakeFiles/pip.dir/piconnection.cpp.obj.provides.build +.PHONY : CMakeFiles/pip.dir/piconnection.cpp.obj.provides + +CMakeFiles/pip.dir/piconnection.cpp.obj.provides.build: CMakeFiles/pip.dir/piconnection.cpp.obj + +CMakeFiles/pip.dir/piconsole.cpp.obj: CMakeFiles/pip.dir/flags.make +CMakeFiles/pip.dir/piconsole.cpp.obj: CMakeFiles/pip.dir/includes_CXX.rsp +CMakeFiles/pip.dir/piconsole.cpp.obj: piconsole.cpp + $(CMAKE_COMMAND) -E cmake_progress_report C:\libs\oldpip\pip_0.4.0_r5\CMakeFiles $(CMAKE_PROGRESS_10) + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Building CXX object CMakeFiles/pip.dir/piconsole.cpp.obj" + C:\mingw\x32\bin\g++.exe $(CXX_DEFINES) $(CXX_FLAGS) -o CMakeFiles\pip.dir\piconsole.cpp.obj -c C:\libs\oldpip\pip_0.4.0_r5\piconsole.cpp + +CMakeFiles/pip.dir/piconsole.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/pip.dir/piconsole.cpp.i" + C:\mingw\x32\bin\g++.exe $(CXX_DEFINES) $(CXX_FLAGS) -E C:\libs\oldpip\pip_0.4.0_r5\piconsole.cpp > CMakeFiles\pip.dir\piconsole.cpp.i + +CMakeFiles/pip.dir/piconsole.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/pip.dir/piconsole.cpp.s" + C:\mingw\x32\bin\g++.exe $(CXX_DEFINES) $(CXX_FLAGS) -S C:\libs\oldpip\pip_0.4.0_r5\piconsole.cpp -o CMakeFiles\pip.dir\piconsole.cpp.s + +CMakeFiles/pip.dir/piconsole.cpp.obj.requires: +.PHONY : CMakeFiles/pip.dir/piconsole.cpp.obj.requires + +CMakeFiles/pip.dir/piconsole.cpp.obj.provides: CMakeFiles/pip.dir/piconsole.cpp.obj.requires + $(MAKE) -f CMakeFiles\pip.dir\build.make CMakeFiles/pip.dir/piconsole.cpp.obj.provides.build +.PHONY : CMakeFiles/pip.dir/piconsole.cpp.obj.provides + +CMakeFiles/pip.dir/piconsole.cpp.obj.provides.build: CMakeFiles/pip.dir/piconsole.cpp.obj + +CMakeFiles/pip.dir/picontainers.cpp.obj: CMakeFiles/pip.dir/flags.make +CMakeFiles/pip.dir/picontainers.cpp.obj: CMakeFiles/pip.dir/includes_CXX.rsp +CMakeFiles/pip.dir/picontainers.cpp.obj: picontainers.cpp + $(CMAKE_COMMAND) -E cmake_progress_report C:\libs\oldpip\pip_0.4.0_r5\CMakeFiles $(CMAKE_PROGRESS_11) + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Building CXX object CMakeFiles/pip.dir/picontainers.cpp.obj" + C:\mingw\x32\bin\g++.exe $(CXX_DEFINES) $(CXX_FLAGS) -o CMakeFiles\pip.dir\picontainers.cpp.obj -c C:\libs\oldpip\pip_0.4.0_r5\picontainers.cpp + +CMakeFiles/pip.dir/picontainers.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/pip.dir/picontainers.cpp.i" + C:\mingw\x32\bin\g++.exe $(CXX_DEFINES) $(CXX_FLAGS) -E C:\libs\oldpip\pip_0.4.0_r5\picontainers.cpp > CMakeFiles\pip.dir\picontainers.cpp.i + +CMakeFiles/pip.dir/picontainers.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/pip.dir/picontainers.cpp.s" + C:\mingw\x32\bin\g++.exe $(CXX_DEFINES) $(CXX_FLAGS) -S C:\libs\oldpip\pip_0.4.0_r5\picontainers.cpp -o CMakeFiles\pip.dir\picontainers.cpp.s + +CMakeFiles/pip.dir/picontainers.cpp.obj.requires: +.PHONY : CMakeFiles/pip.dir/picontainers.cpp.obj.requires + +CMakeFiles/pip.dir/picontainers.cpp.obj.provides: CMakeFiles/pip.dir/picontainers.cpp.obj.requires + $(MAKE) -f CMakeFiles\pip.dir\build.make CMakeFiles/pip.dir/picontainers.cpp.obj.provides.build +.PHONY : CMakeFiles/pip.dir/picontainers.cpp.obj.provides + +CMakeFiles/pip.dir/picontainers.cpp.obj.provides.build: CMakeFiles/pip.dir/picontainers.cpp.obj + +CMakeFiles/pip.dir/pidevicepool.cpp.obj: CMakeFiles/pip.dir/flags.make +CMakeFiles/pip.dir/pidevicepool.cpp.obj: CMakeFiles/pip.dir/includes_CXX.rsp +CMakeFiles/pip.dir/pidevicepool.cpp.obj: pidevicepool.cpp + $(CMAKE_COMMAND) -E cmake_progress_report C:\libs\oldpip\pip_0.4.0_r5\CMakeFiles $(CMAKE_PROGRESS_12) + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Building CXX object CMakeFiles/pip.dir/pidevicepool.cpp.obj" + C:\mingw\x32\bin\g++.exe $(CXX_DEFINES) $(CXX_FLAGS) -o CMakeFiles\pip.dir\pidevicepool.cpp.obj -c C:\libs\oldpip\pip_0.4.0_r5\pidevicepool.cpp + +CMakeFiles/pip.dir/pidevicepool.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/pip.dir/pidevicepool.cpp.i" + C:\mingw\x32\bin\g++.exe $(CXX_DEFINES) $(CXX_FLAGS) -E C:\libs\oldpip\pip_0.4.0_r5\pidevicepool.cpp > CMakeFiles\pip.dir\pidevicepool.cpp.i + +CMakeFiles/pip.dir/pidevicepool.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/pip.dir/pidevicepool.cpp.s" + C:\mingw\x32\bin\g++.exe $(CXX_DEFINES) $(CXX_FLAGS) -S C:\libs\oldpip\pip_0.4.0_r5\pidevicepool.cpp -o CMakeFiles\pip.dir\pidevicepool.cpp.s + +CMakeFiles/pip.dir/pidevicepool.cpp.obj.requires: +.PHONY : CMakeFiles/pip.dir/pidevicepool.cpp.obj.requires + +CMakeFiles/pip.dir/pidevicepool.cpp.obj.provides: CMakeFiles/pip.dir/pidevicepool.cpp.obj.requires + $(MAKE) -f CMakeFiles\pip.dir\build.make CMakeFiles/pip.dir/pidevicepool.cpp.obj.provides.build +.PHONY : CMakeFiles/pip.dir/pidevicepool.cpp.obj.provides + +CMakeFiles/pip.dir/pidevicepool.cpp.obj.provides.build: CMakeFiles/pip.dir/pidevicepool.cpp.obj + +CMakeFiles/pip.dir/pidiagnostics.cpp.obj: CMakeFiles/pip.dir/flags.make +CMakeFiles/pip.dir/pidiagnostics.cpp.obj: CMakeFiles/pip.dir/includes_CXX.rsp +CMakeFiles/pip.dir/pidiagnostics.cpp.obj: pidiagnostics.cpp + $(CMAKE_COMMAND) -E cmake_progress_report C:\libs\oldpip\pip_0.4.0_r5\CMakeFiles $(CMAKE_PROGRESS_13) + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Building CXX object CMakeFiles/pip.dir/pidiagnostics.cpp.obj" + C:\mingw\x32\bin\g++.exe $(CXX_DEFINES) $(CXX_FLAGS) -o CMakeFiles\pip.dir\pidiagnostics.cpp.obj -c C:\libs\oldpip\pip_0.4.0_r5\pidiagnostics.cpp + +CMakeFiles/pip.dir/pidiagnostics.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/pip.dir/pidiagnostics.cpp.i" + C:\mingw\x32\bin\g++.exe $(CXX_DEFINES) $(CXX_FLAGS) -E C:\libs\oldpip\pip_0.4.0_r5\pidiagnostics.cpp > CMakeFiles\pip.dir\pidiagnostics.cpp.i + +CMakeFiles/pip.dir/pidiagnostics.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/pip.dir/pidiagnostics.cpp.s" + C:\mingw\x32\bin\g++.exe $(CXX_DEFINES) $(CXX_FLAGS) -S C:\libs\oldpip\pip_0.4.0_r5\pidiagnostics.cpp -o CMakeFiles\pip.dir\pidiagnostics.cpp.s + +CMakeFiles/pip.dir/pidiagnostics.cpp.obj.requires: +.PHONY : CMakeFiles/pip.dir/pidiagnostics.cpp.obj.requires + +CMakeFiles/pip.dir/pidiagnostics.cpp.obj.provides: CMakeFiles/pip.dir/pidiagnostics.cpp.obj.requires + $(MAKE) -f CMakeFiles\pip.dir\build.make CMakeFiles/pip.dir/pidiagnostics.cpp.obj.provides.build +.PHONY : CMakeFiles/pip.dir/pidiagnostics.cpp.obj.provides + +CMakeFiles/pip.dir/pidiagnostics.cpp.obj.provides.build: CMakeFiles/pip.dir/pidiagnostics.cpp.obj + +CMakeFiles/pip.dir/pidir.cpp.obj: CMakeFiles/pip.dir/flags.make +CMakeFiles/pip.dir/pidir.cpp.obj: CMakeFiles/pip.dir/includes_CXX.rsp +CMakeFiles/pip.dir/pidir.cpp.obj: pidir.cpp + $(CMAKE_COMMAND) -E cmake_progress_report C:\libs\oldpip\pip_0.4.0_r5\CMakeFiles $(CMAKE_PROGRESS_14) + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Building CXX object CMakeFiles/pip.dir/pidir.cpp.obj" + C:\mingw\x32\bin\g++.exe $(CXX_DEFINES) $(CXX_FLAGS) -o CMakeFiles\pip.dir\pidir.cpp.obj -c C:\libs\oldpip\pip_0.4.0_r5\pidir.cpp + +CMakeFiles/pip.dir/pidir.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/pip.dir/pidir.cpp.i" + C:\mingw\x32\bin\g++.exe $(CXX_DEFINES) $(CXX_FLAGS) -E C:\libs\oldpip\pip_0.4.0_r5\pidir.cpp > CMakeFiles\pip.dir\pidir.cpp.i + +CMakeFiles/pip.dir/pidir.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/pip.dir/pidir.cpp.s" + C:\mingw\x32\bin\g++.exe $(CXX_DEFINES) $(CXX_FLAGS) -S C:\libs\oldpip\pip_0.4.0_r5\pidir.cpp -o CMakeFiles\pip.dir\pidir.cpp.s + +CMakeFiles/pip.dir/pidir.cpp.obj.requires: +.PHONY : CMakeFiles/pip.dir/pidir.cpp.obj.requires + +CMakeFiles/pip.dir/pidir.cpp.obj.provides: CMakeFiles/pip.dir/pidir.cpp.obj.requires + $(MAKE) -f CMakeFiles\pip.dir\build.make CMakeFiles/pip.dir/pidir.cpp.obj.provides.build +.PHONY : CMakeFiles/pip.dir/pidir.cpp.obj.provides + +CMakeFiles/pip.dir/pidir.cpp.obj.provides.build: CMakeFiles/pip.dir/pidir.cpp.obj + +CMakeFiles/pip.dir/piethernet.cpp.obj: CMakeFiles/pip.dir/flags.make +CMakeFiles/pip.dir/piethernet.cpp.obj: CMakeFiles/pip.dir/includes_CXX.rsp +CMakeFiles/pip.dir/piethernet.cpp.obj: piethernet.cpp + $(CMAKE_COMMAND) -E cmake_progress_report C:\libs\oldpip\pip_0.4.0_r5\CMakeFiles $(CMAKE_PROGRESS_15) + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Building CXX object CMakeFiles/pip.dir/piethernet.cpp.obj" + C:\mingw\x32\bin\g++.exe $(CXX_DEFINES) $(CXX_FLAGS) -o CMakeFiles\pip.dir\piethernet.cpp.obj -c C:\libs\oldpip\pip_0.4.0_r5\piethernet.cpp + +CMakeFiles/pip.dir/piethernet.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/pip.dir/piethernet.cpp.i" + C:\mingw\x32\bin\g++.exe $(CXX_DEFINES) $(CXX_FLAGS) -E C:\libs\oldpip\pip_0.4.0_r5\piethernet.cpp > CMakeFiles\pip.dir\piethernet.cpp.i + +CMakeFiles/pip.dir/piethernet.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/pip.dir/piethernet.cpp.s" + C:\mingw\x32\bin\g++.exe $(CXX_DEFINES) $(CXX_FLAGS) -S C:\libs\oldpip\pip_0.4.0_r5\piethernet.cpp -o CMakeFiles\pip.dir\piethernet.cpp.s + +CMakeFiles/pip.dir/piethernet.cpp.obj.requires: +.PHONY : CMakeFiles/pip.dir/piethernet.cpp.obj.requires + +CMakeFiles/pip.dir/piethernet.cpp.obj.provides: CMakeFiles/pip.dir/piethernet.cpp.obj.requires + $(MAKE) -f CMakeFiles\pip.dir\build.make CMakeFiles/pip.dir/piethernet.cpp.obj.provides.build +.PHONY : CMakeFiles/pip.dir/piethernet.cpp.obj.provides + +CMakeFiles/pip.dir/piethernet.cpp.obj.provides.build: CMakeFiles/pip.dir/piethernet.cpp.obj + +CMakeFiles/pip.dir/pievaluator.cpp.obj: CMakeFiles/pip.dir/flags.make +CMakeFiles/pip.dir/pievaluator.cpp.obj: CMakeFiles/pip.dir/includes_CXX.rsp +CMakeFiles/pip.dir/pievaluator.cpp.obj: pievaluator.cpp + $(CMAKE_COMMAND) -E cmake_progress_report C:\libs\oldpip\pip_0.4.0_r5\CMakeFiles $(CMAKE_PROGRESS_16) + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Building CXX object CMakeFiles/pip.dir/pievaluator.cpp.obj" + C:\mingw\x32\bin\g++.exe $(CXX_DEFINES) $(CXX_FLAGS) -o CMakeFiles\pip.dir\pievaluator.cpp.obj -c C:\libs\oldpip\pip_0.4.0_r5\pievaluator.cpp + +CMakeFiles/pip.dir/pievaluator.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/pip.dir/pievaluator.cpp.i" + C:\mingw\x32\bin\g++.exe $(CXX_DEFINES) $(CXX_FLAGS) -E C:\libs\oldpip\pip_0.4.0_r5\pievaluator.cpp > CMakeFiles\pip.dir\pievaluator.cpp.i + +CMakeFiles/pip.dir/pievaluator.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/pip.dir/pievaluator.cpp.s" + C:\mingw\x32\bin\g++.exe $(CXX_DEFINES) $(CXX_FLAGS) -S C:\libs\oldpip\pip_0.4.0_r5\pievaluator.cpp -o CMakeFiles\pip.dir\pievaluator.cpp.s + +CMakeFiles/pip.dir/pievaluator.cpp.obj.requires: +.PHONY : CMakeFiles/pip.dir/pievaluator.cpp.obj.requires + +CMakeFiles/pip.dir/pievaluator.cpp.obj.provides: CMakeFiles/pip.dir/pievaluator.cpp.obj.requires + $(MAKE) -f CMakeFiles\pip.dir\build.make CMakeFiles/pip.dir/pievaluator.cpp.obj.provides.build +.PHONY : CMakeFiles/pip.dir/pievaluator.cpp.obj.provides + +CMakeFiles/pip.dir/pievaluator.cpp.obj.provides.build: CMakeFiles/pip.dir/pievaluator.cpp.obj + +CMakeFiles/pip.dir/pifile.cpp.obj: CMakeFiles/pip.dir/flags.make +CMakeFiles/pip.dir/pifile.cpp.obj: CMakeFiles/pip.dir/includes_CXX.rsp +CMakeFiles/pip.dir/pifile.cpp.obj: pifile.cpp + $(CMAKE_COMMAND) -E cmake_progress_report C:\libs\oldpip\pip_0.4.0_r5\CMakeFiles $(CMAKE_PROGRESS_17) + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Building CXX object CMakeFiles/pip.dir/pifile.cpp.obj" + C:\mingw\x32\bin\g++.exe $(CXX_DEFINES) $(CXX_FLAGS) -o CMakeFiles\pip.dir\pifile.cpp.obj -c C:\libs\oldpip\pip_0.4.0_r5\pifile.cpp + +CMakeFiles/pip.dir/pifile.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/pip.dir/pifile.cpp.i" + C:\mingw\x32\bin\g++.exe $(CXX_DEFINES) $(CXX_FLAGS) -E C:\libs\oldpip\pip_0.4.0_r5\pifile.cpp > CMakeFiles\pip.dir\pifile.cpp.i + +CMakeFiles/pip.dir/pifile.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/pip.dir/pifile.cpp.s" + C:\mingw\x32\bin\g++.exe $(CXX_DEFINES) $(CXX_FLAGS) -S C:\libs\oldpip\pip_0.4.0_r5\pifile.cpp -o CMakeFiles\pip.dir\pifile.cpp.s + +CMakeFiles/pip.dir/pifile.cpp.obj.requires: +.PHONY : CMakeFiles/pip.dir/pifile.cpp.obj.requires + +CMakeFiles/pip.dir/pifile.cpp.obj.provides: CMakeFiles/pip.dir/pifile.cpp.obj.requires + $(MAKE) -f CMakeFiles\pip.dir\build.make CMakeFiles/pip.dir/pifile.cpp.obj.provides.build +.PHONY : CMakeFiles/pip.dir/pifile.cpp.obj.provides + +CMakeFiles/pip.dir/pifile.cpp.obj.provides.build: CMakeFiles/pip.dir/pifile.cpp.obj + +CMakeFiles/pip.dir/piincludes.cpp.obj: CMakeFiles/pip.dir/flags.make +CMakeFiles/pip.dir/piincludes.cpp.obj: CMakeFiles/pip.dir/includes_CXX.rsp +CMakeFiles/pip.dir/piincludes.cpp.obj: piincludes.cpp + $(CMAKE_COMMAND) -E cmake_progress_report C:\libs\oldpip\pip_0.4.0_r5\CMakeFiles $(CMAKE_PROGRESS_18) + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Building CXX object CMakeFiles/pip.dir/piincludes.cpp.obj" + C:\mingw\x32\bin\g++.exe $(CXX_DEFINES) $(CXX_FLAGS) -o CMakeFiles\pip.dir\piincludes.cpp.obj -c C:\libs\oldpip\pip_0.4.0_r5\piincludes.cpp + +CMakeFiles/pip.dir/piincludes.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/pip.dir/piincludes.cpp.i" + C:\mingw\x32\bin\g++.exe $(CXX_DEFINES) $(CXX_FLAGS) -E C:\libs\oldpip\pip_0.4.0_r5\piincludes.cpp > CMakeFiles\pip.dir\piincludes.cpp.i + +CMakeFiles/pip.dir/piincludes.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/pip.dir/piincludes.cpp.s" + C:\mingw\x32\bin\g++.exe $(CXX_DEFINES) $(CXX_FLAGS) -S C:\libs\oldpip\pip_0.4.0_r5\piincludes.cpp -o CMakeFiles\pip.dir\piincludes.cpp.s + +CMakeFiles/pip.dir/piincludes.cpp.obj.requires: +.PHONY : CMakeFiles/pip.dir/piincludes.cpp.obj.requires + +CMakeFiles/pip.dir/piincludes.cpp.obj.provides: CMakeFiles/pip.dir/piincludes.cpp.obj.requires + $(MAKE) -f CMakeFiles\pip.dir\build.make CMakeFiles/pip.dir/piincludes.cpp.obj.provides.build +.PHONY : CMakeFiles/pip.dir/piincludes.cpp.obj.provides + +CMakeFiles/pip.dir/piincludes.cpp.obj.provides.build: CMakeFiles/pip.dir/piincludes.cpp.obj + +CMakeFiles/pip.dir/piiodevice.cpp.obj: CMakeFiles/pip.dir/flags.make +CMakeFiles/pip.dir/piiodevice.cpp.obj: CMakeFiles/pip.dir/includes_CXX.rsp +CMakeFiles/pip.dir/piiodevice.cpp.obj: piiodevice.cpp + $(CMAKE_COMMAND) -E cmake_progress_report C:\libs\oldpip\pip_0.4.0_r5\CMakeFiles $(CMAKE_PROGRESS_19) + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Building CXX object CMakeFiles/pip.dir/piiodevice.cpp.obj" + C:\mingw\x32\bin\g++.exe $(CXX_DEFINES) $(CXX_FLAGS) -o CMakeFiles\pip.dir\piiodevice.cpp.obj -c C:\libs\oldpip\pip_0.4.0_r5\piiodevice.cpp + +CMakeFiles/pip.dir/piiodevice.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/pip.dir/piiodevice.cpp.i" + C:\mingw\x32\bin\g++.exe $(CXX_DEFINES) $(CXX_FLAGS) -E C:\libs\oldpip\pip_0.4.0_r5\piiodevice.cpp > CMakeFiles\pip.dir\piiodevice.cpp.i + +CMakeFiles/pip.dir/piiodevice.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/pip.dir/piiodevice.cpp.s" + C:\mingw\x32\bin\g++.exe $(CXX_DEFINES) $(CXX_FLAGS) -S C:\libs\oldpip\pip_0.4.0_r5\piiodevice.cpp -o CMakeFiles\pip.dir\piiodevice.cpp.s + +CMakeFiles/pip.dir/piiodevice.cpp.obj.requires: +.PHONY : CMakeFiles/pip.dir/piiodevice.cpp.obj.requires + +CMakeFiles/pip.dir/piiodevice.cpp.obj.provides: CMakeFiles/pip.dir/piiodevice.cpp.obj.requires + $(MAKE) -f CMakeFiles\pip.dir\build.make CMakeFiles/pip.dir/piiodevice.cpp.obj.provides.build +.PHONY : CMakeFiles/pip.dir/piiodevice.cpp.obj.provides + +CMakeFiles/pip.dir/piiodevice.cpp.obj.provides.build: CMakeFiles/pip.dir/piiodevice.cpp.obj + +CMakeFiles/pip.dir/pikbdlistener.cpp.obj: CMakeFiles/pip.dir/flags.make +CMakeFiles/pip.dir/pikbdlistener.cpp.obj: CMakeFiles/pip.dir/includes_CXX.rsp +CMakeFiles/pip.dir/pikbdlistener.cpp.obj: pikbdlistener.cpp + $(CMAKE_COMMAND) -E cmake_progress_report C:\libs\oldpip\pip_0.4.0_r5\CMakeFiles $(CMAKE_PROGRESS_20) + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Building CXX object CMakeFiles/pip.dir/pikbdlistener.cpp.obj" + C:\mingw\x32\bin\g++.exe $(CXX_DEFINES) $(CXX_FLAGS) -o CMakeFiles\pip.dir\pikbdlistener.cpp.obj -c C:\libs\oldpip\pip_0.4.0_r5\pikbdlistener.cpp + +CMakeFiles/pip.dir/pikbdlistener.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/pip.dir/pikbdlistener.cpp.i" + C:\mingw\x32\bin\g++.exe $(CXX_DEFINES) $(CXX_FLAGS) -E C:\libs\oldpip\pip_0.4.0_r5\pikbdlistener.cpp > CMakeFiles\pip.dir\pikbdlistener.cpp.i + +CMakeFiles/pip.dir/pikbdlistener.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/pip.dir/pikbdlistener.cpp.s" + C:\mingw\x32\bin\g++.exe $(CXX_DEFINES) $(CXX_FLAGS) -S C:\libs\oldpip\pip_0.4.0_r5\pikbdlistener.cpp -o CMakeFiles\pip.dir\pikbdlistener.cpp.s + +CMakeFiles/pip.dir/pikbdlistener.cpp.obj.requires: +.PHONY : CMakeFiles/pip.dir/pikbdlistener.cpp.obj.requires + +CMakeFiles/pip.dir/pikbdlistener.cpp.obj.provides: CMakeFiles/pip.dir/pikbdlistener.cpp.obj.requires + $(MAKE) -f CMakeFiles\pip.dir\build.make CMakeFiles/pip.dir/pikbdlistener.cpp.obj.provides.build +.PHONY : CMakeFiles/pip.dir/pikbdlistener.cpp.obj.provides + +CMakeFiles/pip.dir/pikbdlistener.cpp.obj.provides.build: CMakeFiles/pip.dir/pikbdlistener.cpp.obj + +CMakeFiles/pip.dir/pimath.cpp.obj: CMakeFiles/pip.dir/flags.make +CMakeFiles/pip.dir/pimath.cpp.obj: CMakeFiles/pip.dir/includes_CXX.rsp +CMakeFiles/pip.dir/pimath.cpp.obj: pimath.cpp + $(CMAKE_COMMAND) -E cmake_progress_report C:\libs\oldpip\pip_0.4.0_r5\CMakeFiles $(CMAKE_PROGRESS_21) + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Building CXX object CMakeFiles/pip.dir/pimath.cpp.obj" + C:\mingw\x32\bin\g++.exe $(CXX_DEFINES) $(CXX_FLAGS) -o CMakeFiles\pip.dir\pimath.cpp.obj -c C:\libs\oldpip\pip_0.4.0_r5\pimath.cpp + +CMakeFiles/pip.dir/pimath.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/pip.dir/pimath.cpp.i" + C:\mingw\x32\bin\g++.exe $(CXX_DEFINES) $(CXX_FLAGS) -E C:\libs\oldpip\pip_0.4.0_r5\pimath.cpp > CMakeFiles\pip.dir\pimath.cpp.i + +CMakeFiles/pip.dir/pimath.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/pip.dir/pimath.cpp.s" + C:\mingw\x32\bin\g++.exe $(CXX_DEFINES) $(CXX_FLAGS) -S C:\libs\oldpip\pip_0.4.0_r5\pimath.cpp -o CMakeFiles\pip.dir\pimath.cpp.s + +CMakeFiles/pip.dir/pimath.cpp.obj.requires: +.PHONY : CMakeFiles/pip.dir/pimath.cpp.obj.requires + +CMakeFiles/pip.dir/pimath.cpp.obj.provides: CMakeFiles/pip.dir/pimath.cpp.obj.requires + $(MAKE) -f CMakeFiles\pip.dir\build.make CMakeFiles/pip.dir/pimath.cpp.obj.provides.build +.PHONY : CMakeFiles/pip.dir/pimath.cpp.obj.provides + +CMakeFiles/pip.dir/pimath.cpp.obj.provides.build: CMakeFiles/pip.dir/pimath.cpp.obj + +CMakeFiles/pip.dir/pimonitor.cpp.obj: CMakeFiles/pip.dir/flags.make +CMakeFiles/pip.dir/pimonitor.cpp.obj: CMakeFiles/pip.dir/includes_CXX.rsp +CMakeFiles/pip.dir/pimonitor.cpp.obj: pimonitor.cpp + $(CMAKE_COMMAND) -E cmake_progress_report C:\libs\oldpip\pip_0.4.0_r5\CMakeFiles $(CMAKE_PROGRESS_22) + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Building CXX object CMakeFiles/pip.dir/pimonitor.cpp.obj" + C:\mingw\x32\bin\g++.exe $(CXX_DEFINES) $(CXX_FLAGS) -o CMakeFiles\pip.dir\pimonitor.cpp.obj -c C:\libs\oldpip\pip_0.4.0_r5\pimonitor.cpp + +CMakeFiles/pip.dir/pimonitor.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/pip.dir/pimonitor.cpp.i" + C:\mingw\x32\bin\g++.exe $(CXX_DEFINES) $(CXX_FLAGS) -E C:\libs\oldpip\pip_0.4.0_r5\pimonitor.cpp > CMakeFiles\pip.dir\pimonitor.cpp.i + +CMakeFiles/pip.dir/pimonitor.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/pip.dir/pimonitor.cpp.s" + C:\mingw\x32\bin\g++.exe $(CXX_DEFINES) $(CXX_FLAGS) -S C:\libs\oldpip\pip_0.4.0_r5\pimonitor.cpp -o CMakeFiles\pip.dir\pimonitor.cpp.s + +CMakeFiles/pip.dir/pimonitor.cpp.obj.requires: +.PHONY : CMakeFiles/pip.dir/pimonitor.cpp.obj.requires + +CMakeFiles/pip.dir/pimonitor.cpp.obj.provides: CMakeFiles/pip.dir/pimonitor.cpp.obj.requires + $(MAKE) -f CMakeFiles\pip.dir\build.make CMakeFiles/pip.dir/pimonitor.cpp.obj.provides.build +.PHONY : CMakeFiles/pip.dir/pimonitor.cpp.obj.provides + +CMakeFiles/pip.dir/pimonitor.cpp.obj.provides.build: CMakeFiles/pip.dir/pimonitor.cpp.obj + +CMakeFiles/pip.dir/pimultiprotocol.cpp.obj: CMakeFiles/pip.dir/flags.make +CMakeFiles/pip.dir/pimultiprotocol.cpp.obj: CMakeFiles/pip.dir/includes_CXX.rsp +CMakeFiles/pip.dir/pimultiprotocol.cpp.obj: pimultiprotocol.cpp + $(CMAKE_COMMAND) -E cmake_progress_report C:\libs\oldpip\pip_0.4.0_r5\CMakeFiles $(CMAKE_PROGRESS_23) + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Building CXX object CMakeFiles/pip.dir/pimultiprotocol.cpp.obj" + C:\mingw\x32\bin\g++.exe $(CXX_DEFINES) $(CXX_FLAGS) -o CMakeFiles\pip.dir\pimultiprotocol.cpp.obj -c C:\libs\oldpip\pip_0.4.0_r5\pimultiprotocol.cpp + +CMakeFiles/pip.dir/pimultiprotocol.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/pip.dir/pimultiprotocol.cpp.i" + C:\mingw\x32\bin\g++.exe $(CXX_DEFINES) $(CXX_FLAGS) -E C:\libs\oldpip\pip_0.4.0_r5\pimultiprotocol.cpp > CMakeFiles\pip.dir\pimultiprotocol.cpp.i + +CMakeFiles/pip.dir/pimultiprotocol.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/pip.dir/pimultiprotocol.cpp.s" + C:\mingw\x32\bin\g++.exe $(CXX_DEFINES) $(CXX_FLAGS) -S C:\libs\oldpip\pip_0.4.0_r5\pimultiprotocol.cpp -o CMakeFiles\pip.dir\pimultiprotocol.cpp.s + +CMakeFiles/pip.dir/pimultiprotocol.cpp.obj.requires: +.PHONY : CMakeFiles/pip.dir/pimultiprotocol.cpp.obj.requires + +CMakeFiles/pip.dir/pimultiprotocol.cpp.obj.provides: CMakeFiles/pip.dir/pimultiprotocol.cpp.obj.requires + $(MAKE) -f CMakeFiles\pip.dir\build.make CMakeFiles/pip.dir/pimultiprotocol.cpp.obj.provides.build +.PHONY : CMakeFiles/pip.dir/pimultiprotocol.cpp.obj.provides + +CMakeFiles/pip.dir/pimultiprotocol.cpp.obj.provides.build: CMakeFiles/pip.dir/pimultiprotocol.cpp.obj + +CMakeFiles/pip.dir/pimutex.cpp.obj: CMakeFiles/pip.dir/flags.make +CMakeFiles/pip.dir/pimutex.cpp.obj: CMakeFiles/pip.dir/includes_CXX.rsp +CMakeFiles/pip.dir/pimutex.cpp.obj: pimutex.cpp + $(CMAKE_COMMAND) -E cmake_progress_report C:\libs\oldpip\pip_0.4.0_r5\CMakeFiles $(CMAKE_PROGRESS_24) + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Building CXX object CMakeFiles/pip.dir/pimutex.cpp.obj" + C:\mingw\x32\bin\g++.exe $(CXX_DEFINES) $(CXX_FLAGS) -o CMakeFiles\pip.dir\pimutex.cpp.obj -c C:\libs\oldpip\pip_0.4.0_r5\pimutex.cpp + +CMakeFiles/pip.dir/pimutex.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/pip.dir/pimutex.cpp.i" + C:\mingw\x32\bin\g++.exe $(CXX_DEFINES) $(CXX_FLAGS) -E C:\libs\oldpip\pip_0.4.0_r5\pimutex.cpp > CMakeFiles\pip.dir\pimutex.cpp.i + +CMakeFiles/pip.dir/pimutex.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/pip.dir/pimutex.cpp.s" + C:\mingw\x32\bin\g++.exe $(CXX_DEFINES) $(CXX_FLAGS) -S C:\libs\oldpip\pip_0.4.0_r5\pimutex.cpp -o CMakeFiles\pip.dir\pimutex.cpp.s + +CMakeFiles/pip.dir/pimutex.cpp.obj.requires: +.PHONY : CMakeFiles/pip.dir/pimutex.cpp.obj.requires + +CMakeFiles/pip.dir/pimutex.cpp.obj.provides: CMakeFiles/pip.dir/pimutex.cpp.obj.requires + $(MAKE) -f CMakeFiles\pip.dir\build.make CMakeFiles/pip.dir/pimutex.cpp.obj.provides.build +.PHONY : CMakeFiles/pip.dir/pimutex.cpp.obj.provides + +CMakeFiles/pip.dir/pimutex.cpp.obj.provides.build: CMakeFiles/pip.dir/pimutex.cpp.obj + +CMakeFiles/pip.dir/piobject.cpp.obj: CMakeFiles/pip.dir/flags.make +CMakeFiles/pip.dir/piobject.cpp.obj: CMakeFiles/pip.dir/includes_CXX.rsp +CMakeFiles/pip.dir/piobject.cpp.obj: piobject.cpp + $(CMAKE_COMMAND) -E cmake_progress_report C:\libs\oldpip\pip_0.4.0_r5\CMakeFiles $(CMAKE_PROGRESS_25) + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Building CXX object CMakeFiles/pip.dir/piobject.cpp.obj" + C:\mingw\x32\bin\g++.exe $(CXX_DEFINES) $(CXX_FLAGS) -o CMakeFiles\pip.dir\piobject.cpp.obj -c C:\libs\oldpip\pip_0.4.0_r5\piobject.cpp + +CMakeFiles/pip.dir/piobject.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/pip.dir/piobject.cpp.i" + C:\mingw\x32\bin\g++.exe $(CXX_DEFINES) $(CXX_FLAGS) -E C:\libs\oldpip\pip_0.4.0_r5\piobject.cpp > CMakeFiles\pip.dir\piobject.cpp.i + +CMakeFiles/pip.dir/piobject.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/pip.dir/piobject.cpp.s" + C:\mingw\x32\bin\g++.exe $(CXX_DEFINES) $(CXX_FLAGS) -S C:\libs\oldpip\pip_0.4.0_r5\piobject.cpp -o CMakeFiles\pip.dir\piobject.cpp.s + +CMakeFiles/pip.dir/piobject.cpp.obj.requires: +.PHONY : CMakeFiles/pip.dir/piobject.cpp.obj.requires + +CMakeFiles/pip.dir/piobject.cpp.obj.provides: CMakeFiles/pip.dir/piobject.cpp.obj.requires + $(MAKE) -f CMakeFiles\pip.dir\build.make CMakeFiles/pip.dir/piobject.cpp.obj.provides.build +.PHONY : CMakeFiles/pip.dir/piobject.cpp.obj.provides + +CMakeFiles/pip.dir/piobject.cpp.obj.provides.build: CMakeFiles/pip.dir/piobject.cpp.obj + +CMakeFiles/pip.dir/pipacketextractor.cpp.obj: CMakeFiles/pip.dir/flags.make +CMakeFiles/pip.dir/pipacketextractor.cpp.obj: CMakeFiles/pip.dir/includes_CXX.rsp +CMakeFiles/pip.dir/pipacketextractor.cpp.obj: pipacketextractor.cpp + $(CMAKE_COMMAND) -E cmake_progress_report C:\libs\oldpip\pip_0.4.0_r5\CMakeFiles $(CMAKE_PROGRESS_26) + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Building CXX object CMakeFiles/pip.dir/pipacketextractor.cpp.obj" + C:\mingw\x32\bin\g++.exe $(CXX_DEFINES) $(CXX_FLAGS) -o CMakeFiles\pip.dir\pipacketextractor.cpp.obj -c C:\libs\oldpip\pip_0.4.0_r5\pipacketextractor.cpp + +CMakeFiles/pip.dir/pipacketextractor.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/pip.dir/pipacketextractor.cpp.i" + C:\mingw\x32\bin\g++.exe $(CXX_DEFINES) $(CXX_FLAGS) -E C:\libs\oldpip\pip_0.4.0_r5\pipacketextractor.cpp > CMakeFiles\pip.dir\pipacketextractor.cpp.i + +CMakeFiles/pip.dir/pipacketextractor.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/pip.dir/pipacketextractor.cpp.s" + C:\mingw\x32\bin\g++.exe $(CXX_DEFINES) $(CXX_FLAGS) -S C:\libs\oldpip\pip_0.4.0_r5\pipacketextractor.cpp -o CMakeFiles\pip.dir\pipacketextractor.cpp.s + +CMakeFiles/pip.dir/pipacketextractor.cpp.obj.requires: +.PHONY : CMakeFiles/pip.dir/pipacketextractor.cpp.obj.requires + +CMakeFiles/pip.dir/pipacketextractor.cpp.obj.provides: CMakeFiles/pip.dir/pipacketextractor.cpp.obj.requires + $(MAKE) -f CMakeFiles\pip.dir\build.make CMakeFiles/pip.dir/pipacketextractor.cpp.obj.provides.build +.PHONY : CMakeFiles/pip.dir/pipacketextractor.cpp.obj.provides + +CMakeFiles/pip.dir/pipacketextractor.cpp.obj.provides.build: CMakeFiles/pip.dir/pipacketextractor.cpp.obj + +CMakeFiles/pip.dir/pipeer.cpp.obj: CMakeFiles/pip.dir/flags.make +CMakeFiles/pip.dir/pipeer.cpp.obj: CMakeFiles/pip.dir/includes_CXX.rsp +CMakeFiles/pip.dir/pipeer.cpp.obj: pipeer.cpp + $(CMAKE_COMMAND) -E cmake_progress_report C:\libs\oldpip\pip_0.4.0_r5\CMakeFiles $(CMAKE_PROGRESS_27) + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Building CXX object CMakeFiles/pip.dir/pipeer.cpp.obj" + C:\mingw\x32\bin\g++.exe $(CXX_DEFINES) $(CXX_FLAGS) -o CMakeFiles\pip.dir\pipeer.cpp.obj -c C:\libs\oldpip\pip_0.4.0_r5\pipeer.cpp + +CMakeFiles/pip.dir/pipeer.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/pip.dir/pipeer.cpp.i" + C:\mingw\x32\bin\g++.exe $(CXX_DEFINES) $(CXX_FLAGS) -E C:\libs\oldpip\pip_0.4.0_r5\pipeer.cpp > CMakeFiles\pip.dir\pipeer.cpp.i + +CMakeFiles/pip.dir/pipeer.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/pip.dir/pipeer.cpp.s" + C:\mingw\x32\bin\g++.exe $(CXX_DEFINES) $(CXX_FLAGS) -S C:\libs\oldpip\pip_0.4.0_r5\pipeer.cpp -o CMakeFiles\pip.dir\pipeer.cpp.s + +CMakeFiles/pip.dir/pipeer.cpp.obj.requires: +.PHONY : CMakeFiles/pip.dir/pipeer.cpp.obj.requires + +CMakeFiles/pip.dir/pipeer.cpp.obj.provides: CMakeFiles/pip.dir/pipeer.cpp.obj.requires + $(MAKE) -f CMakeFiles\pip.dir\build.make CMakeFiles/pip.dir/pipeer.cpp.obj.provides.build +.PHONY : CMakeFiles/pip.dir/pipeer.cpp.obj.provides + +CMakeFiles/pip.dir/pipeer.cpp.obj.provides.build: CMakeFiles/pip.dir/pipeer.cpp.obj + +CMakeFiles/pip.dir/piprocess.cpp.obj: CMakeFiles/pip.dir/flags.make +CMakeFiles/pip.dir/piprocess.cpp.obj: CMakeFiles/pip.dir/includes_CXX.rsp +CMakeFiles/pip.dir/piprocess.cpp.obj: piprocess.cpp + $(CMAKE_COMMAND) -E cmake_progress_report C:\libs\oldpip\pip_0.4.0_r5\CMakeFiles $(CMAKE_PROGRESS_28) + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Building CXX object CMakeFiles/pip.dir/piprocess.cpp.obj" + C:\mingw\x32\bin\g++.exe $(CXX_DEFINES) $(CXX_FLAGS) -o CMakeFiles\pip.dir\piprocess.cpp.obj -c C:\libs\oldpip\pip_0.4.0_r5\piprocess.cpp + +CMakeFiles/pip.dir/piprocess.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/pip.dir/piprocess.cpp.i" + C:\mingw\x32\bin\g++.exe $(CXX_DEFINES) $(CXX_FLAGS) -E C:\libs\oldpip\pip_0.4.0_r5\piprocess.cpp > CMakeFiles\pip.dir\piprocess.cpp.i + +CMakeFiles/pip.dir/piprocess.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/pip.dir/piprocess.cpp.s" + C:\mingw\x32\bin\g++.exe $(CXX_DEFINES) $(CXX_FLAGS) -S C:\libs\oldpip\pip_0.4.0_r5\piprocess.cpp -o CMakeFiles\pip.dir\piprocess.cpp.s + +CMakeFiles/pip.dir/piprocess.cpp.obj.requires: +.PHONY : CMakeFiles/pip.dir/piprocess.cpp.obj.requires + +CMakeFiles/pip.dir/piprocess.cpp.obj.provides: CMakeFiles/pip.dir/piprocess.cpp.obj.requires + $(MAKE) -f CMakeFiles\pip.dir\build.make CMakeFiles/pip.dir/piprocess.cpp.obj.provides.build +.PHONY : CMakeFiles/pip.dir/piprocess.cpp.obj.provides + +CMakeFiles/pip.dir/piprocess.cpp.obj.provides.build: CMakeFiles/pip.dir/piprocess.cpp.obj + +CMakeFiles/pip.dir/piprotocol.cpp.obj: CMakeFiles/pip.dir/flags.make +CMakeFiles/pip.dir/piprotocol.cpp.obj: CMakeFiles/pip.dir/includes_CXX.rsp +CMakeFiles/pip.dir/piprotocol.cpp.obj: piprotocol.cpp + $(CMAKE_COMMAND) -E cmake_progress_report C:\libs\oldpip\pip_0.4.0_r5\CMakeFiles $(CMAKE_PROGRESS_29) + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Building CXX object CMakeFiles/pip.dir/piprotocol.cpp.obj" + C:\mingw\x32\bin\g++.exe $(CXX_DEFINES) $(CXX_FLAGS) -o CMakeFiles\pip.dir\piprotocol.cpp.obj -c C:\libs\oldpip\pip_0.4.0_r5\piprotocol.cpp + +CMakeFiles/pip.dir/piprotocol.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/pip.dir/piprotocol.cpp.i" + C:\mingw\x32\bin\g++.exe $(CXX_DEFINES) $(CXX_FLAGS) -E C:\libs\oldpip\pip_0.4.0_r5\piprotocol.cpp > CMakeFiles\pip.dir\piprotocol.cpp.i + +CMakeFiles/pip.dir/piprotocol.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/pip.dir/piprotocol.cpp.s" + C:\mingw\x32\bin\g++.exe $(CXX_DEFINES) $(CXX_FLAGS) -S C:\libs\oldpip\pip_0.4.0_r5\piprotocol.cpp -o CMakeFiles\pip.dir\piprotocol.cpp.s + +CMakeFiles/pip.dir/piprotocol.cpp.obj.requires: +.PHONY : CMakeFiles/pip.dir/piprotocol.cpp.obj.requires + +CMakeFiles/pip.dir/piprotocol.cpp.obj.provides: CMakeFiles/pip.dir/piprotocol.cpp.obj.requires + $(MAKE) -f CMakeFiles\pip.dir\build.make CMakeFiles/pip.dir/piprotocol.cpp.obj.provides.build +.PHONY : CMakeFiles/pip.dir/piprotocol.cpp.obj.provides + +CMakeFiles/pip.dir/piprotocol.cpp.obj.provides.build: CMakeFiles/pip.dir/piprotocol.cpp.obj + +CMakeFiles/pip.dir/piserial.cpp.obj: CMakeFiles/pip.dir/flags.make +CMakeFiles/pip.dir/piserial.cpp.obj: CMakeFiles/pip.dir/includes_CXX.rsp +CMakeFiles/pip.dir/piserial.cpp.obj: piserial.cpp + $(CMAKE_COMMAND) -E cmake_progress_report C:\libs\oldpip\pip_0.4.0_r5\CMakeFiles $(CMAKE_PROGRESS_30) + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Building CXX object CMakeFiles/pip.dir/piserial.cpp.obj" + C:\mingw\x32\bin\g++.exe $(CXX_DEFINES) $(CXX_FLAGS) -o CMakeFiles\pip.dir\piserial.cpp.obj -c C:\libs\oldpip\pip_0.4.0_r5\piserial.cpp + +CMakeFiles/pip.dir/piserial.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/pip.dir/piserial.cpp.i" + C:\mingw\x32\bin\g++.exe $(CXX_DEFINES) $(CXX_FLAGS) -E C:\libs\oldpip\pip_0.4.0_r5\piserial.cpp > CMakeFiles\pip.dir\piserial.cpp.i + +CMakeFiles/pip.dir/piserial.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/pip.dir/piserial.cpp.s" + C:\mingw\x32\bin\g++.exe $(CXX_DEFINES) $(CXX_FLAGS) -S C:\libs\oldpip\pip_0.4.0_r5\piserial.cpp -o CMakeFiles\pip.dir\piserial.cpp.s + +CMakeFiles/pip.dir/piserial.cpp.obj.requires: +.PHONY : CMakeFiles/pip.dir/piserial.cpp.obj.requires + +CMakeFiles/pip.dir/piserial.cpp.obj.provides: CMakeFiles/pip.dir/piserial.cpp.obj.requires + $(MAKE) -f CMakeFiles\pip.dir\build.make CMakeFiles/pip.dir/piserial.cpp.obj.provides.build +.PHONY : CMakeFiles/pip.dir/piserial.cpp.obj.provides + +CMakeFiles/pip.dir/piserial.cpp.obj.provides.build: CMakeFiles/pip.dir/piserial.cpp.obj + +CMakeFiles/pip.dir/pisignals.cpp.obj: CMakeFiles/pip.dir/flags.make +CMakeFiles/pip.dir/pisignals.cpp.obj: CMakeFiles/pip.dir/includes_CXX.rsp +CMakeFiles/pip.dir/pisignals.cpp.obj: pisignals.cpp + $(CMAKE_COMMAND) -E cmake_progress_report C:\libs\oldpip\pip_0.4.0_r5\CMakeFiles $(CMAKE_PROGRESS_31) + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Building CXX object CMakeFiles/pip.dir/pisignals.cpp.obj" + C:\mingw\x32\bin\g++.exe $(CXX_DEFINES) $(CXX_FLAGS) -o CMakeFiles\pip.dir\pisignals.cpp.obj -c C:\libs\oldpip\pip_0.4.0_r5\pisignals.cpp + +CMakeFiles/pip.dir/pisignals.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/pip.dir/pisignals.cpp.i" + C:\mingw\x32\bin\g++.exe $(CXX_DEFINES) $(CXX_FLAGS) -E C:\libs\oldpip\pip_0.4.0_r5\pisignals.cpp > CMakeFiles\pip.dir\pisignals.cpp.i + +CMakeFiles/pip.dir/pisignals.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/pip.dir/pisignals.cpp.s" + C:\mingw\x32\bin\g++.exe $(CXX_DEFINES) $(CXX_FLAGS) -S C:\libs\oldpip\pip_0.4.0_r5\pisignals.cpp -o CMakeFiles\pip.dir\pisignals.cpp.s + +CMakeFiles/pip.dir/pisignals.cpp.obj.requires: +.PHONY : CMakeFiles/pip.dir/pisignals.cpp.obj.requires + +CMakeFiles/pip.dir/pisignals.cpp.obj.provides: CMakeFiles/pip.dir/pisignals.cpp.obj.requires + $(MAKE) -f CMakeFiles\pip.dir\build.make CMakeFiles/pip.dir/pisignals.cpp.obj.provides.build +.PHONY : CMakeFiles/pip.dir/pisignals.cpp.obj.provides + +CMakeFiles/pip.dir/pisignals.cpp.obj.provides.build: CMakeFiles/pip.dir/pisignals.cpp.obj + +CMakeFiles/pip.dir/pistring.cpp.obj: CMakeFiles/pip.dir/flags.make +CMakeFiles/pip.dir/pistring.cpp.obj: CMakeFiles/pip.dir/includes_CXX.rsp +CMakeFiles/pip.dir/pistring.cpp.obj: pistring.cpp + $(CMAKE_COMMAND) -E cmake_progress_report C:\libs\oldpip\pip_0.4.0_r5\CMakeFiles $(CMAKE_PROGRESS_32) + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Building CXX object CMakeFiles/pip.dir/pistring.cpp.obj" + C:\mingw\x32\bin\g++.exe $(CXX_DEFINES) $(CXX_FLAGS) -o CMakeFiles\pip.dir\pistring.cpp.obj -c C:\libs\oldpip\pip_0.4.0_r5\pistring.cpp + +CMakeFiles/pip.dir/pistring.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/pip.dir/pistring.cpp.i" + C:\mingw\x32\bin\g++.exe $(CXX_DEFINES) $(CXX_FLAGS) -E C:\libs\oldpip\pip_0.4.0_r5\pistring.cpp > CMakeFiles\pip.dir\pistring.cpp.i + +CMakeFiles/pip.dir/pistring.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/pip.dir/pistring.cpp.s" + C:\mingw\x32\bin\g++.exe $(CXX_DEFINES) $(CXX_FLAGS) -S C:\libs\oldpip\pip_0.4.0_r5\pistring.cpp -o CMakeFiles\pip.dir\pistring.cpp.s + +CMakeFiles/pip.dir/pistring.cpp.obj.requires: +.PHONY : CMakeFiles/pip.dir/pistring.cpp.obj.requires + +CMakeFiles/pip.dir/pistring.cpp.obj.provides: CMakeFiles/pip.dir/pistring.cpp.obj.requires + $(MAKE) -f CMakeFiles\pip.dir\build.make CMakeFiles/pip.dir/pistring.cpp.obj.provides.build +.PHONY : CMakeFiles/pip.dir/pistring.cpp.obj.provides + +CMakeFiles/pip.dir/pistring.cpp.obj.provides.build: CMakeFiles/pip.dir/pistring.cpp.obj + +CMakeFiles/pip.dir/pisystemmonitor.cpp.obj: CMakeFiles/pip.dir/flags.make +CMakeFiles/pip.dir/pisystemmonitor.cpp.obj: CMakeFiles/pip.dir/includes_CXX.rsp +CMakeFiles/pip.dir/pisystemmonitor.cpp.obj: pisystemmonitor.cpp + $(CMAKE_COMMAND) -E cmake_progress_report C:\libs\oldpip\pip_0.4.0_r5\CMakeFiles $(CMAKE_PROGRESS_33) + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Building CXX object CMakeFiles/pip.dir/pisystemmonitor.cpp.obj" + C:\mingw\x32\bin\g++.exe $(CXX_DEFINES) $(CXX_FLAGS) -o CMakeFiles\pip.dir\pisystemmonitor.cpp.obj -c C:\libs\oldpip\pip_0.4.0_r5\pisystemmonitor.cpp + +CMakeFiles/pip.dir/pisystemmonitor.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/pip.dir/pisystemmonitor.cpp.i" + C:\mingw\x32\bin\g++.exe $(CXX_DEFINES) $(CXX_FLAGS) -E C:\libs\oldpip\pip_0.4.0_r5\pisystemmonitor.cpp > CMakeFiles\pip.dir\pisystemmonitor.cpp.i + +CMakeFiles/pip.dir/pisystemmonitor.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/pip.dir/pisystemmonitor.cpp.s" + C:\mingw\x32\bin\g++.exe $(CXX_DEFINES) $(CXX_FLAGS) -S C:\libs\oldpip\pip_0.4.0_r5\pisystemmonitor.cpp -o CMakeFiles\pip.dir\pisystemmonitor.cpp.s + +CMakeFiles/pip.dir/pisystemmonitor.cpp.obj.requires: +.PHONY : CMakeFiles/pip.dir/pisystemmonitor.cpp.obj.requires + +CMakeFiles/pip.dir/pisystemmonitor.cpp.obj.provides: CMakeFiles/pip.dir/pisystemmonitor.cpp.obj.requires + $(MAKE) -f CMakeFiles\pip.dir\build.make CMakeFiles/pip.dir/pisystemmonitor.cpp.obj.provides.build +.PHONY : CMakeFiles/pip.dir/pisystemmonitor.cpp.obj.provides + +CMakeFiles/pip.dir/pisystemmonitor.cpp.obj.provides.build: CMakeFiles/pip.dir/pisystemmonitor.cpp.obj + +CMakeFiles/pip.dir/pisystemtests.cpp.obj: CMakeFiles/pip.dir/flags.make +CMakeFiles/pip.dir/pisystemtests.cpp.obj: CMakeFiles/pip.dir/includes_CXX.rsp +CMakeFiles/pip.dir/pisystemtests.cpp.obj: pisystemtests.cpp + $(CMAKE_COMMAND) -E cmake_progress_report C:\libs\oldpip\pip_0.4.0_r5\CMakeFiles $(CMAKE_PROGRESS_34) + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Building CXX object CMakeFiles/pip.dir/pisystemtests.cpp.obj" + C:\mingw\x32\bin\g++.exe $(CXX_DEFINES) $(CXX_FLAGS) -o CMakeFiles\pip.dir\pisystemtests.cpp.obj -c C:\libs\oldpip\pip_0.4.0_r5\pisystemtests.cpp + +CMakeFiles/pip.dir/pisystemtests.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/pip.dir/pisystemtests.cpp.i" + C:\mingw\x32\bin\g++.exe $(CXX_DEFINES) $(CXX_FLAGS) -E C:\libs\oldpip\pip_0.4.0_r5\pisystemtests.cpp > CMakeFiles\pip.dir\pisystemtests.cpp.i + +CMakeFiles/pip.dir/pisystemtests.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/pip.dir/pisystemtests.cpp.s" + C:\mingw\x32\bin\g++.exe $(CXX_DEFINES) $(CXX_FLAGS) -S C:\libs\oldpip\pip_0.4.0_r5\pisystemtests.cpp -o CMakeFiles\pip.dir\pisystemtests.cpp.s + +CMakeFiles/pip.dir/pisystemtests.cpp.obj.requires: +.PHONY : CMakeFiles/pip.dir/pisystemtests.cpp.obj.requires + +CMakeFiles/pip.dir/pisystemtests.cpp.obj.provides: CMakeFiles/pip.dir/pisystemtests.cpp.obj.requires + $(MAKE) -f CMakeFiles\pip.dir\build.make CMakeFiles/pip.dir/pisystemtests.cpp.obj.provides.build +.PHONY : CMakeFiles/pip.dir/pisystemtests.cpp.obj.provides + +CMakeFiles/pip.dir/pisystemtests.cpp.obj.provides.build: CMakeFiles/pip.dir/pisystemtests.cpp.obj + +CMakeFiles/pip.dir/pithread.cpp.obj: CMakeFiles/pip.dir/flags.make +CMakeFiles/pip.dir/pithread.cpp.obj: CMakeFiles/pip.dir/includes_CXX.rsp +CMakeFiles/pip.dir/pithread.cpp.obj: pithread.cpp + $(CMAKE_COMMAND) -E cmake_progress_report C:\libs\oldpip\pip_0.4.0_r5\CMakeFiles $(CMAKE_PROGRESS_35) + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Building CXX object CMakeFiles/pip.dir/pithread.cpp.obj" + C:\mingw\x32\bin\g++.exe $(CXX_DEFINES) $(CXX_FLAGS) -o CMakeFiles\pip.dir\pithread.cpp.obj -c C:\libs\oldpip\pip_0.4.0_r5\pithread.cpp + +CMakeFiles/pip.dir/pithread.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/pip.dir/pithread.cpp.i" + C:\mingw\x32\bin\g++.exe $(CXX_DEFINES) $(CXX_FLAGS) -E C:\libs\oldpip\pip_0.4.0_r5\pithread.cpp > CMakeFiles\pip.dir\pithread.cpp.i + +CMakeFiles/pip.dir/pithread.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/pip.dir/pithread.cpp.s" + C:\mingw\x32\bin\g++.exe $(CXX_DEFINES) $(CXX_FLAGS) -S C:\libs\oldpip\pip_0.4.0_r5\pithread.cpp -o CMakeFiles\pip.dir\pithread.cpp.s + +CMakeFiles/pip.dir/pithread.cpp.obj.requires: +.PHONY : CMakeFiles/pip.dir/pithread.cpp.obj.requires + +CMakeFiles/pip.dir/pithread.cpp.obj.provides: CMakeFiles/pip.dir/pithread.cpp.obj.requires + $(MAKE) -f CMakeFiles\pip.dir\build.make CMakeFiles/pip.dir/pithread.cpp.obj.provides.build +.PHONY : CMakeFiles/pip.dir/pithread.cpp.obj.provides + +CMakeFiles/pip.dir/pithread.cpp.obj.provides.build: CMakeFiles/pip.dir/pithread.cpp.obj + +CMakeFiles/pip.dir/pitime.cpp.obj: CMakeFiles/pip.dir/flags.make +CMakeFiles/pip.dir/pitime.cpp.obj: CMakeFiles/pip.dir/includes_CXX.rsp +CMakeFiles/pip.dir/pitime.cpp.obj: pitime.cpp + $(CMAKE_COMMAND) -E cmake_progress_report C:\libs\oldpip\pip_0.4.0_r5\CMakeFiles $(CMAKE_PROGRESS_36) + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Building CXX object CMakeFiles/pip.dir/pitime.cpp.obj" + C:\mingw\x32\bin\g++.exe $(CXX_DEFINES) $(CXX_FLAGS) -o CMakeFiles\pip.dir\pitime.cpp.obj -c C:\libs\oldpip\pip_0.4.0_r5\pitime.cpp + +CMakeFiles/pip.dir/pitime.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/pip.dir/pitime.cpp.i" + C:\mingw\x32\bin\g++.exe $(CXX_DEFINES) $(CXX_FLAGS) -E C:\libs\oldpip\pip_0.4.0_r5\pitime.cpp > CMakeFiles\pip.dir\pitime.cpp.i + +CMakeFiles/pip.dir/pitime.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/pip.dir/pitime.cpp.s" + C:\mingw\x32\bin\g++.exe $(CXX_DEFINES) $(CXX_FLAGS) -S C:\libs\oldpip\pip_0.4.0_r5\pitime.cpp -o CMakeFiles\pip.dir\pitime.cpp.s + +CMakeFiles/pip.dir/pitime.cpp.obj.requires: +.PHONY : CMakeFiles/pip.dir/pitime.cpp.obj.requires + +CMakeFiles/pip.dir/pitime.cpp.obj.provides: CMakeFiles/pip.dir/pitime.cpp.obj.requires + $(MAKE) -f CMakeFiles\pip.dir\build.make CMakeFiles/pip.dir/pitime.cpp.obj.provides.build +.PHONY : CMakeFiles/pip.dir/pitime.cpp.obj.provides + +CMakeFiles/pip.dir/pitime.cpp.obj.provides.build: CMakeFiles/pip.dir/pitime.cpp.obj + +CMakeFiles/pip.dir/pitimer.cpp.obj: CMakeFiles/pip.dir/flags.make +CMakeFiles/pip.dir/pitimer.cpp.obj: CMakeFiles/pip.dir/includes_CXX.rsp +CMakeFiles/pip.dir/pitimer.cpp.obj: pitimer.cpp + $(CMAKE_COMMAND) -E cmake_progress_report C:\libs\oldpip\pip_0.4.0_r5\CMakeFiles $(CMAKE_PROGRESS_37) + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Building CXX object CMakeFiles/pip.dir/pitimer.cpp.obj" + C:\mingw\x32\bin\g++.exe $(CXX_DEFINES) $(CXX_FLAGS) -o CMakeFiles\pip.dir\pitimer.cpp.obj -c C:\libs\oldpip\pip_0.4.0_r5\pitimer.cpp + +CMakeFiles/pip.dir/pitimer.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/pip.dir/pitimer.cpp.i" + C:\mingw\x32\bin\g++.exe $(CXX_DEFINES) $(CXX_FLAGS) -E C:\libs\oldpip\pip_0.4.0_r5\pitimer.cpp > CMakeFiles\pip.dir\pitimer.cpp.i + +CMakeFiles/pip.dir/pitimer.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/pip.dir/pitimer.cpp.s" + C:\mingw\x32\bin\g++.exe $(CXX_DEFINES) $(CXX_FLAGS) -S C:\libs\oldpip\pip_0.4.0_r5\pitimer.cpp -o CMakeFiles\pip.dir\pitimer.cpp.s + +CMakeFiles/pip.dir/pitimer.cpp.obj.requires: +.PHONY : CMakeFiles/pip.dir/pitimer.cpp.obj.requires + +CMakeFiles/pip.dir/pitimer.cpp.obj.provides: CMakeFiles/pip.dir/pitimer.cpp.obj.requires + $(MAKE) -f CMakeFiles\pip.dir\build.make CMakeFiles/pip.dir/pitimer.cpp.obj.provides.build +.PHONY : CMakeFiles/pip.dir/pitimer.cpp.obj.provides + +CMakeFiles/pip.dir/pitimer.cpp.obj.provides.build: CMakeFiles/pip.dir/pitimer.cpp.obj + +CMakeFiles/pip.dir/piusb.cpp.obj: CMakeFiles/pip.dir/flags.make +CMakeFiles/pip.dir/piusb.cpp.obj: CMakeFiles/pip.dir/includes_CXX.rsp +CMakeFiles/pip.dir/piusb.cpp.obj: piusb.cpp + $(CMAKE_COMMAND) -E cmake_progress_report C:\libs\oldpip\pip_0.4.0_r5\CMakeFiles $(CMAKE_PROGRESS_38) + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Building CXX object CMakeFiles/pip.dir/piusb.cpp.obj" + C:\mingw\x32\bin\g++.exe $(CXX_DEFINES) $(CXX_FLAGS) -o CMakeFiles\pip.dir\piusb.cpp.obj -c C:\libs\oldpip\pip_0.4.0_r5\piusb.cpp + +CMakeFiles/pip.dir/piusb.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/pip.dir/piusb.cpp.i" + C:\mingw\x32\bin\g++.exe $(CXX_DEFINES) $(CXX_FLAGS) -E C:\libs\oldpip\pip_0.4.0_r5\piusb.cpp > CMakeFiles\pip.dir\piusb.cpp.i + +CMakeFiles/pip.dir/piusb.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/pip.dir/piusb.cpp.s" + C:\mingw\x32\bin\g++.exe $(CXX_DEFINES) $(CXX_FLAGS) -S C:\libs\oldpip\pip_0.4.0_r5\piusb.cpp -o CMakeFiles\pip.dir\piusb.cpp.s + +CMakeFiles/pip.dir/piusb.cpp.obj.requires: +.PHONY : CMakeFiles/pip.dir/piusb.cpp.obj.requires + +CMakeFiles/pip.dir/piusb.cpp.obj.provides: CMakeFiles/pip.dir/piusb.cpp.obj.requires + $(MAKE) -f CMakeFiles\pip.dir\build.make CMakeFiles/pip.dir/piusb.cpp.obj.provides.build +.PHONY : CMakeFiles/pip.dir/piusb.cpp.obj.provides + +CMakeFiles/pip.dir/piusb.cpp.obj.provides.build: CMakeFiles/pip.dir/piusb.cpp.obj + +CMakeFiles/pip.dir/pivariant.cpp.obj: CMakeFiles/pip.dir/flags.make +CMakeFiles/pip.dir/pivariant.cpp.obj: CMakeFiles/pip.dir/includes_CXX.rsp +CMakeFiles/pip.dir/pivariant.cpp.obj: pivariant.cpp + $(CMAKE_COMMAND) -E cmake_progress_report C:\libs\oldpip\pip_0.4.0_r5\CMakeFiles $(CMAKE_PROGRESS_39) + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Building CXX object CMakeFiles/pip.dir/pivariant.cpp.obj" + C:\mingw\x32\bin\g++.exe $(CXX_DEFINES) $(CXX_FLAGS) -o CMakeFiles\pip.dir\pivariant.cpp.obj -c C:\libs\oldpip\pip_0.4.0_r5\pivariant.cpp + +CMakeFiles/pip.dir/pivariant.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/pip.dir/pivariant.cpp.i" + C:\mingw\x32\bin\g++.exe $(CXX_DEFINES) $(CXX_FLAGS) -E C:\libs\oldpip\pip_0.4.0_r5\pivariant.cpp > CMakeFiles\pip.dir\pivariant.cpp.i + +CMakeFiles/pip.dir/pivariant.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/pip.dir/pivariant.cpp.s" + C:\mingw\x32\bin\g++.exe $(CXX_DEFINES) $(CXX_FLAGS) -S C:\libs\oldpip\pip_0.4.0_r5\pivariant.cpp -o CMakeFiles\pip.dir\pivariant.cpp.s + +CMakeFiles/pip.dir/pivariant.cpp.obj.requires: +.PHONY : CMakeFiles/pip.dir/pivariant.cpp.obj.requires + +CMakeFiles/pip.dir/pivariant.cpp.obj.provides: CMakeFiles/pip.dir/pivariant.cpp.obj.requires + $(MAKE) -f CMakeFiles\pip.dir\build.make CMakeFiles/pip.dir/pivariant.cpp.obj.provides.build +.PHONY : CMakeFiles/pip.dir/pivariant.cpp.obj.provides + +CMakeFiles/pip.dir/pivariant.cpp.obj.provides.build: CMakeFiles/pip.dir/pivariant.cpp.obj + +# Object files for target pip +pip_OBJECTS = \ +"CMakeFiles/pip.dir/pibinarylog.cpp.obj" \ +"CMakeFiles/pip.dir/pibytearray.cpp.obj" \ +"CMakeFiles/pip.dir/picli.cpp.obj" \ +"CMakeFiles/pip.dir/picodec.cpp.obj" \ +"CMakeFiles/pip.dir/picodeinfo.cpp.obj" \ +"CMakeFiles/pip.dir/picodeparser.cpp.obj" \ +"CMakeFiles/pip.dir/picollection.cpp.obj" \ +"CMakeFiles/pip.dir/piconfig.cpp.obj" \ +"CMakeFiles/pip.dir/piconnection.cpp.obj" \ +"CMakeFiles/pip.dir/piconsole.cpp.obj" \ +"CMakeFiles/pip.dir/picontainers.cpp.obj" \ +"CMakeFiles/pip.dir/pidevicepool.cpp.obj" \ +"CMakeFiles/pip.dir/pidiagnostics.cpp.obj" \ +"CMakeFiles/pip.dir/pidir.cpp.obj" \ +"CMakeFiles/pip.dir/piethernet.cpp.obj" \ +"CMakeFiles/pip.dir/pievaluator.cpp.obj" \ +"CMakeFiles/pip.dir/pifile.cpp.obj" \ +"CMakeFiles/pip.dir/piincludes.cpp.obj" \ +"CMakeFiles/pip.dir/piiodevice.cpp.obj" \ +"CMakeFiles/pip.dir/pikbdlistener.cpp.obj" \ +"CMakeFiles/pip.dir/pimath.cpp.obj" \ +"CMakeFiles/pip.dir/pimonitor.cpp.obj" \ +"CMakeFiles/pip.dir/pimultiprotocol.cpp.obj" \ +"CMakeFiles/pip.dir/pimutex.cpp.obj" \ +"CMakeFiles/pip.dir/piobject.cpp.obj" \ +"CMakeFiles/pip.dir/pipacketextractor.cpp.obj" \ +"CMakeFiles/pip.dir/pipeer.cpp.obj" \ +"CMakeFiles/pip.dir/piprocess.cpp.obj" \ +"CMakeFiles/pip.dir/piprotocol.cpp.obj" \ +"CMakeFiles/pip.dir/piserial.cpp.obj" \ +"CMakeFiles/pip.dir/pisignals.cpp.obj" \ +"CMakeFiles/pip.dir/pistring.cpp.obj" \ +"CMakeFiles/pip.dir/pisystemmonitor.cpp.obj" \ +"CMakeFiles/pip.dir/pisystemtests.cpp.obj" \ +"CMakeFiles/pip.dir/pithread.cpp.obj" \ +"CMakeFiles/pip.dir/pitime.cpp.obj" \ +"CMakeFiles/pip.dir/pitimer.cpp.obj" \ +"CMakeFiles/pip.dir/piusb.cpp.obj" \ +"CMakeFiles/pip.dir/pivariant.cpp.obj" + +# External object files for target pip +pip_EXTERNAL_OBJECTS = \ +"C:/libs/oldpip/pip_0.4.0_r5/pip_resource_win.o" + +libpip.dll: CMakeFiles/pip.dir/pibinarylog.cpp.obj +libpip.dll: CMakeFiles/pip.dir/pibytearray.cpp.obj +libpip.dll: CMakeFiles/pip.dir/picli.cpp.obj +libpip.dll: CMakeFiles/pip.dir/picodec.cpp.obj +libpip.dll: CMakeFiles/pip.dir/picodeinfo.cpp.obj +libpip.dll: CMakeFiles/pip.dir/picodeparser.cpp.obj +libpip.dll: CMakeFiles/pip.dir/picollection.cpp.obj +libpip.dll: CMakeFiles/pip.dir/piconfig.cpp.obj +libpip.dll: CMakeFiles/pip.dir/piconnection.cpp.obj +libpip.dll: CMakeFiles/pip.dir/piconsole.cpp.obj +libpip.dll: CMakeFiles/pip.dir/picontainers.cpp.obj +libpip.dll: CMakeFiles/pip.dir/pidevicepool.cpp.obj +libpip.dll: CMakeFiles/pip.dir/pidiagnostics.cpp.obj +libpip.dll: CMakeFiles/pip.dir/pidir.cpp.obj +libpip.dll: CMakeFiles/pip.dir/piethernet.cpp.obj +libpip.dll: CMakeFiles/pip.dir/pievaluator.cpp.obj +libpip.dll: CMakeFiles/pip.dir/pifile.cpp.obj +libpip.dll: CMakeFiles/pip.dir/piincludes.cpp.obj +libpip.dll: CMakeFiles/pip.dir/piiodevice.cpp.obj +libpip.dll: CMakeFiles/pip.dir/pikbdlistener.cpp.obj +libpip.dll: CMakeFiles/pip.dir/pimath.cpp.obj +libpip.dll: CMakeFiles/pip.dir/pimonitor.cpp.obj +libpip.dll: CMakeFiles/pip.dir/pimultiprotocol.cpp.obj +libpip.dll: CMakeFiles/pip.dir/pimutex.cpp.obj +libpip.dll: CMakeFiles/pip.dir/piobject.cpp.obj +libpip.dll: CMakeFiles/pip.dir/pipacketextractor.cpp.obj +libpip.dll: CMakeFiles/pip.dir/pipeer.cpp.obj +libpip.dll: CMakeFiles/pip.dir/piprocess.cpp.obj +libpip.dll: CMakeFiles/pip.dir/piprotocol.cpp.obj +libpip.dll: CMakeFiles/pip.dir/piserial.cpp.obj +libpip.dll: CMakeFiles/pip.dir/pisignals.cpp.obj +libpip.dll: CMakeFiles/pip.dir/pistring.cpp.obj +libpip.dll: CMakeFiles/pip.dir/pisystemmonitor.cpp.obj +libpip.dll: CMakeFiles/pip.dir/pisystemtests.cpp.obj +libpip.dll: CMakeFiles/pip.dir/pithread.cpp.obj +libpip.dll: CMakeFiles/pip.dir/pitime.cpp.obj +libpip.dll: CMakeFiles/pip.dir/pitimer.cpp.obj +libpip.dll: CMakeFiles/pip.dir/piusb.cpp.obj +libpip.dll: CMakeFiles/pip.dir/pivariant.cpp.obj +libpip.dll: pip_resource_win.o +libpip.dll: CMakeFiles/pip.dir/build.make +libpip.dll: CMakeFiles/pip.dir/objects1.rsp +libpip.dll: CMakeFiles/pip.dir/link.txt + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --red --bold "Linking CXX shared library libpip.dll" + $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles\pip.dir\link.txt --verbose=$(VERBOSE) + +# Rule to build all files generated by this target. +CMakeFiles/pip.dir/build: libpip.dll +.PHONY : CMakeFiles/pip.dir/build + +CMakeFiles/pip.dir/requires: CMakeFiles/pip.dir/pibinarylog.cpp.obj.requires +CMakeFiles/pip.dir/requires: CMakeFiles/pip.dir/pibytearray.cpp.obj.requires +CMakeFiles/pip.dir/requires: CMakeFiles/pip.dir/picli.cpp.obj.requires +CMakeFiles/pip.dir/requires: CMakeFiles/pip.dir/picodec.cpp.obj.requires +CMakeFiles/pip.dir/requires: CMakeFiles/pip.dir/picodeinfo.cpp.obj.requires +CMakeFiles/pip.dir/requires: CMakeFiles/pip.dir/picodeparser.cpp.obj.requires +CMakeFiles/pip.dir/requires: CMakeFiles/pip.dir/picollection.cpp.obj.requires +CMakeFiles/pip.dir/requires: CMakeFiles/pip.dir/piconfig.cpp.obj.requires +CMakeFiles/pip.dir/requires: CMakeFiles/pip.dir/piconnection.cpp.obj.requires +CMakeFiles/pip.dir/requires: CMakeFiles/pip.dir/piconsole.cpp.obj.requires +CMakeFiles/pip.dir/requires: CMakeFiles/pip.dir/picontainers.cpp.obj.requires +CMakeFiles/pip.dir/requires: CMakeFiles/pip.dir/pidevicepool.cpp.obj.requires +CMakeFiles/pip.dir/requires: CMakeFiles/pip.dir/pidiagnostics.cpp.obj.requires +CMakeFiles/pip.dir/requires: CMakeFiles/pip.dir/pidir.cpp.obj.requires +CMakeFiles/pip.dir/requires: CMakeFiles/pip.dir/piethernet.cpp.obj.requires +CMakeFiles/pip.dir/requires: CMakeFiles/pip.dir/pievaluator.cpp.obj.requires +CMakeFiles/pip.dir/requires: CMakeFiles/pip.dir/pifile.cpp.obj.requires +CMakeFiles/pip.dir/requires: CMakeFiles/pip.dir/piincludes.cpp.obj.requires +CMakeFiles/pip.dir/requires: CMakeFiles/pip.dir/piiodevice.cpp.obj.requires +CMakeFiles/pip.dir/requires: CMakeFiles/pip.dir/pikbdlistener.cpp.obj.requires +CMakeFiles/pip.dir/requires: CMakeFiles/pip.dir/pimath.cpp.obj.requires +CMakeFiles/pip.dir/requires: CMakeFiles/pip.dir/pimonitor.cpp.obj.requires +CMakeFiles/pip.dir/requires: CMakeFiles/pip.dir/pimultiprotocol.cpp.obj.requires +CMakeFiles/pip.dir/requires: CMakeFiles/pip.dir/pimutex.cpp.obj.requires +CMakeFiles/pip.dir/requires: CMakeFiles/pip.dir/piobject.cpp.obj.requires +CMakeFiles/pip.dir/requires: CMakeFiles/pip.dir/pipacketextractor.cpp.obj.requires +CMakeFiles/pip.dir/requires: CMakeFiles/pip.dir/pipeer.cpp.obj.requires +CMakeFiles/pip.dir/requires: CMakeFiles/pip.dir/piprocess.cpp.obj.requires +CMakeFiles/pip.dir/requires: CMakeFiles/pip.dir/piprotocol.cpp.obj.requires +CMakeFiles/pip.dir/requires: CMakeFiles/pip.dir/piserial.cpp.obj.requires +CMakeFiles/pip.dir/requires: CMakeFiles/pip.dir/pisignals.cpp.obj.requires +CMakeFiles/pip.dir/requires: CMakeFiles/pip.dir/pistring.cpp.obj.requires +CMakeFiles/pip.dir/requires: CMakeFiles/pip.dir/pisystemmonitor.cpp.obj.requires +CMakeFiles/pip.dir/requires: CMakeFiles/pip.dir/pisystemtests.cpp.obj.requires +CMakeFiles/pip.dir/requires: CMakeFiles/pip.dir/pithread.cpp.obj.requires +CMakeFiles/pip.dir/requires: CMakeFiles/pip.dir/pitime.cpp.obj.requires +CMakeFiles/pip.dir/requires: CMakeFiles/pip.dir/pitimer.cpp.obj.requires +CMakeFiles/pip.dir/requires: CMakeFiles/pip.dir/piusb.cpp.obj.requires +CMakeFiles/pip.dir/requires: CMakeFiles/pip.dir/pivariant.cpp.obj.requires +.PHONY : CMakeFiles/pip.dir/requires + +CMakeFiles/pip.dir/clean: + $(CMAKE_COMMAND) -P CMakeFiles\pip.dir\cmake_clean.cmake +.PHONY : CMakeFiles/pip.dir/clean + +CMakeFiles/pip.dir/depend: + $(CMAKE_COMMAND) -E cmake_depends "MinGW Makefiles" C:\libs\oldpip\pip_0.4.0_r5 C:\libs\oldpip\pip_0.4.0_r5 C:\libs\oldpip\pip_0.4.0_r5 C:\libs\oldpip\pip_0.4.0_r5 C:\libs\oldpip\pip_0.4.0_r5\CMakeFiles\pip.dir\DependInfo.cmake --color=$(COLOR) +.PHONY : CMakeFiles/pip.dir/depend + diff --git a/_oldpip/pip_0.4.0_r5/CMakeFiles/pip.dir/cmake_clean.cmake b/_oldpip/pip_0.4.0_r5/CMakeFiles/pip.dir/cmake_clean.cmake new file mode 100644 index 0000000..448667a --- /dev/null +++ b/_oldpip/pip_0.4.0_r5/CMakeFiles/pip.dir/cmake_clean.cmake @@ -0,0 +1,50 @@ +FILE(REMOVE_RECURSE + "CMakeFiles/pip.dir/pibinarylog.cpp.obj" + "CMakeFiles/pip.dir/pibytearray.cpp.obj" + "CMakeFiles/pip.dir/picli.cpp.obj" + "CMakeFiles/pip.dir/picodec.cpp.obj" + "CMakeFiles/pip.dir/picodeinfo.cpp.obj" + "CMakeFiles/pip.dir/picodeparser.cpp.obj" + "CMakeFiles/pip.dir/picollection.cpp.obj" + "CMakeFiles/pip.dir/piconfig.cpp.obj" + "CMakeFiles/pip.dir/piconnection.cpp.obj" + "CMakeFiles/pip.dir/piconsole.cpp.obj" + "CMakeFiles/pip.dir/picontainers.cpp.obj" + "CMakeFiles/pip.dir/pidevicepool.cpp.obj" + "CMakeFiles/pip.dir/pidiagnostics.cpp.obj" + "CMakeFiles/pip.dir/pidir.cpp.obj" + "CMakeFiles/pip.dir/piethernet.cpp.obj" + "CMakeFiles/pip.dir/pievaluator.cpp.obj" + "CMakeFiles/pip.dir/pifile.cpp.obj" + "CMakeFiles/pip.dir/piincludes.cpp.obj" + "CMakeFiles/pip.dir/piiodevice.cpp.obj" + "CMakeFiles/pip.dir/pikbdlistener.cpp.obj" + "CMakeFiles/pip.dir/pimath.cpp.obj" + "CMakeFiles/pip.dir/pimonitor.cpp.obj" + "CMakeFiles/pip.dir/pimultiprotocol.cpp.obj" + "CMakeFiles/pip.dir/pimutex.cpp.obj" + "CMakeFiles/pip.dir/piobject.cpp.obj" + "CMakeFiles/pip.dir/pipacketextractor.cpp.obj" + "CMakeFiles/pip.dir/pipeer.cpp.obj" + "CMakeFiles/pip.dir/piprocess.cpp.obj" + "CMakeFiles/pip.dir/piprotocol.cpp.obj" + "CMakeFiles/pip.dir/piserial.cpp.obj" + "CMakeFiles/pip.dir/pisignals.cpp.obj" + "CMakeFiles/pip.dir/pistring.cpp.obj" + "CMakeFiles/pip.dir/pisystemmonitor.cpp.obj" + "CMakeFiles/pip.dir/pisystemtests.cpp.obj" + "CMakeFiles/pip.dir/pithread.cpp.obj" + "CMakeFiles/pip.dir/pitime.cpp.obj" + "CMakeFiles/pip.dir/pitimer.cpp.obj" + "CMakeFiles/pip.dir/piusb.cpp.obj" + "CMakeFiles/pip.dir/pivariant.cpp.obj" + "libpip.pdb" + "libpip.dll" + "libpip.dll.a" + "libpip.dll.manifest" +) + +# Per-language clean rules from dependency scanning. +FOREACH(lang CXX) + INCLUDE(CMakeFiles/pip.dir/cmake_clean_${lang}.cmake OPTIONAL) +ENDFOREACH(lang) diff --git a/_oldpip/pip_0.4.0_r5/CMakeFiles/pip.dir/depend.internal b/_oldpip/pip_0.4.0_r5/CMakeFiles/pip.dir/depend.internal new file mode 100644 index 0000000..bbdaef5 --- /dev/null +++ b/_oldpip/pip_0.4.0_r5/CMakeFiles/pip.dir/depend.internal @@ -0,0 +1,912 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "MinGW Makefiles" Generator, CMake Version 2.8 + +CMakeFiles/pip.dir/pibinarylog.cpp.obj + C:/libs/oldpip/pip_0.4.0_r5/pibinarylog.cpp + C:/libs/oldpip/pip_0.4.0_r5/pibinarylog.h + C:/libs/oldpip/pip_0.4.0_r5/pibitarray.h + C:/libs/oldpip/pip_0.4.0_r5/pibytearray.h + C:/libs/oldpip/pip_0.4.0_r5/pichar.h + C:/libs/oldpip/pip_0.4.0_r5/picollection.h + C:/libs/oldpip/pip_0.4.0_r5/picontainers.h + C:/libs/oldpip/pip_0.4.0_r5/pideque.h + C:/libs/oldpip/pip_0.4.0_r5/pifile.h + C:/libs/oldpip/pip_0.4.0_r5/piincludes.h + C:/libs/oldpip/pip_0.4.0_r5/piiodevice.h + C:/libs/oldpip/pip_0.4.0_r5/pimap.h + C:/libs/oldpip/pip_0.4.0_r5/pimath.h + C:/libs/oldpip/pip_0.4.0_r5/pimonitor.h + C:/libs/oldpip/pip_0.4.0_r5/pimutex.h + C:/libs/oldpip/pip_0.4.0_r5/piobject.h + C:/libs/oldpip/pip_0.4.0_r5/pip_export.h + C:/libs/oldpip/pip_0.4.0_r5/piqueue.h + C:/libs/oldpip/pip_0.4.0_r5/pistack.h + C:/libs/oldpip/pip_0.4.0_r5/pistring.h + C:/libs/oldpip/pip_0.4.0_r5/pithread.h + C:/libs/oldpip/pip_0.4.0_r5/pitime.h + C:/libs/oldpip/pip_0.4.0_r5/pitimer.h + C:/libs/oldpip/pip_0.4.0_r5/pivariant.h + C:/libs/oldpip/pip_0.4.0_r5/pivector.h +CMakeFiles/pip.dir/pibytearray.cpp.obj + C:/libs/oldpip/pip_0.4.0_r5/pibitarray.h + C:/libs/oldpip/pip_0.4.0_r5/pibytearray.cpp + C:/libs/oldpip/pip_0.4.0_r5/pibytearray.h + C:/libs/oldpip/pip_0.4.0_r5/pichar.h + C:/libs/oldpip/pip_0.4.0_r5/picontainers.h + C:/libs/oldpip/pip_0.4.0_r5/pideque.h + C:/libs/oldpip/pip_0.4.0_r5/piincludes.h + C:/libs/oldpip/pip_0.4.0_r5/pimap.h + C:/libs/oldpip/pip_0.4.0_r5/pimonitor.h + C:/libs/oldpip/pip_0.4.0_r5/pip_export.h + C:/libs/oldpip/pip_0.4.0_r5/piqueue.h + C:/libs/oldpip/pip_0.4.0_r5/pistack.h + C:/libs/oldpip/pip_0.4.0_r5/pistring.h + C:/libs/oldpip/pip_0.4.0_r5/pivector.h +CMakeFiles/pip.dir/picli.cpp.obj + C:/libs/oldpip/pip_0.4.0_r5/pibitarray.h + C:/libs/oldpip/pip_0.4.0_r5/pibytearray.h + C:/libs/oldpip/pip_0.4.0_r5/pichar.h + C:/libs/oldpip/pip_0.4.0_r5/picli.cpp + C:/libs/oldpip/pip_0.4.0_r5/picli.h + C:/libs/oldpip/pip_0.4.0_r5/picontainers.h + C:/libs/oldpip/pip_0.4.0_r5/pideque.h + C:/libs/oldpip/pip_0.4.0_r5/piincludes.h + C:/libs/oldpip/pip_0.4.0_r5/pimap.h + C:/libs/oldpip/pip_0.4.0_r5/pimath.h + C:/libs/oldpip/pip_0.4.0_r5/pimonitor.h + C:/libs/oldpip/pip_0.4.0_r5/pimutex.h + C:/libs/oldpip/pip_0.4.0_r5/piobject.h + C:/libs/oldpip/pip_0.4.0_r5/pip_export.h + C:/libs/oldpip/pip_0.4.0_r5/piqueue.h + C:/libs/oldpip/pip_0.4.0_r5/pistack.h + C:/libs/oldpip/pip_0.4.0_r5/pistring.h + C:/libs/oldpip/pip_0.4.0_r5/pitime.h + C:/libs/oldpip/pip_0.4.0_r5/pivariant.h + C:/libs/oldpip/pip_0.4.0_r5/pivector.h +CMakeFiles/pip.dir/picodec.cpp.obj + C:/libs/oldpip/pip_0.4.0_r5/pibitarray.h + C:/libs/oldpip/pip_0.4.0_r5/pibytearray.h + C:/libs/oldpip/pip_0.4.0_r5/pichar.h + C:/libs/oldpip/pip_0.4.0_r5/picodec.cpp + C:/libs/oldpip/pip_0.4.0_r5/picodec.h + C:/libs/oldpip/pip_0.4.0_r5/picollection.h + C:/libs/oldpip/pip_0.4.0_r5/picontainers.h + C:/libs/oldpip/pip_0.4.0_r5/pideque.h + C:/libs/oldpip/pip_0.4.0_r5/pifile.h + C:/libs/oldpip/pip_0.4.0_r5/piincludes.h + C:/libs/oldpip/pip_0.4.0_r5/piiodevice.h + C:/libs/oldpip/pip_0.4.0_r5/pimap.h + C:/libs/oldpip/pip_0.4.0_r5/pimath.h + C:/libs/oldpip/pip_0.4.0_r5/pimonitor.h + C:/libs/oldpip/pip_0.4.0_r5/pimutex.h + C:/libs/oldpip/pip_0.4.0_r5/piobject.h + C:/libs/oldpip/pip_0.4.0_r5/pip_export.h + C:/libs/oldpip/pip_0.4.0_r5/piprocess.h + C:/libs/oldpip/pip_0.4.0_r5/piqueue.h + C:/libs/oldpip/pip_0.4.0_r5/pistack.h + C:/libs/oldpip/pip_0.4.0_r5/pistring.h + C:/libs/oldpip/pip_0.4.0_r5/pithread.h + C:/libs/oldpip/pip_0.4.0_r5/pitime.h + C:/libs/oldpip/pip_0.4.0_r5/pitimer.h + C:/libs/oldpip/pip_0.4.0_r5/pivariant.h + C:/libs/oldpip/pip_0.4.0_r5/pivector.h +CMakeFiles/pip.dir/picodeinfo.cpp.obj + C:/libs/oldpip/pip_0.4.0_r5/pibitarray.h + C:/libs/oldpip/pip_0.4.0_r5/pibytearray.h + C:/libs/oldpip/pip_0.4.0_r5/pichar.h + C:/libs/oldpip/pip_0.4.0_r5/picodeinfo.cpp + C:/libs/oldpip/pip_0.4.0_r5/picodeinfo.h + C:/libs/oldpip/pip_0.4.0_r5/picontainers.h + C:/libs/oldpip/pip_0.4.0_r5/pideque.h + C:/libs/oldpip/pip_0.4.0_r5/piincludes.h + C:/libs/oldpip/pip_0.4.0_r5/pimap.h + C:/libs/oldpip/pip_0.4.0_r5/pimonitor.h + C:/libs/oldpip/pip_0.4.0_r5/pip_export.h + C:/libs/oldpip/pip_0.4.0_r5/piqueue.h + C:/libs/oldpip/pip_0.4.0_r5/pistack.h + C:/libs/oldpip/pip_0.4.0_r5/pistring.h + C:/libs/oldpip/pip_0.4.0_r5/pivector.h +CMakeFiles/pip.dir/picodeparser.cpp.obj + C:/libs/oldpip/pip_0.4.0_r5/pibitarray.h + C:/libs/oldpip/pip_0.4.0_r5/pibytearray.h + C:/libs/oldpip/pip_0.4.0_r5/pichar.h + C:/libs/oldpip/pip_0.4.0_r5/picodeparser.cpp + C:/libs/oldpip/pip_0.4.0_r5/picodeparser.h + C:/libs/oldpip/pip_0.4.0_r5/picollection.h + C:/libs/oldpip/pip_0.4.0_r5/picontainers.h + C:/libs/oldpip/pip_0.4.0_r5/pideque.h + C:/libs/oldpip/pip_0.4.0_r5/pievaluator.h + C:/libs/oldpip/pip_0.4.0_r5/pifile.h + C:/libs/oldpip/pip_0.4.0_r5/piincludes.h + C:/libs/oldpip/pip_0.4.0_r5/piiodevice.h + C:/libs/oldpip/pip_0.4.0_r5/pimap.h + C:/libs/oldpip/pip_0.4.0_r5/pimath.h + C:/libs/oldpip/pip_0.4.0_r5/pimonitor.h + C:/libs/oldpip/pip_0.4.0_r5/pimutex.h + C:/libs/oldpip/pip_0.4.0_r5/piobject.h + C:/libs/oldpip/pip_0.4.0_r5/pip_export.h + C:/libs/oldpip/pip_0.4.0_r5/piqueue.h + C:/libs/oldpip/pip_0.4.0_r5/pistack.h + C:/libs/oldpip/pip_0.4.0_r5/pistring.h + C:/libs/oldpip/pip_0.4.0_r5/pithread.h + C:/libs/oldpip/pip_0.4.0_r5/pitime.h + C:/libs/oldpip/pip_0.4.0_r5/pitimer.h + C:/libs/oldpip/pip_0.4.0_r5/pivariant.h + C:/libs/oldpip/pip_0.4.0_r5/pivector.h +CMakeFiles/pip.dir/picollection.cpp.obj + C:/libs/oldpip/pip_0.4.0_r5/pibitarray.h + C:/libs/oldpip/pip_0.4.0_r5/pibytearray.h + C:/libs/oldpip/pip_0.4.0_r5/pichar.h + C:/libs/oldpip/pip_0.4.0_r5/picollection.cpp + C:/libs/oldpip/pip_0.4.0_r5/picollection.h + C:/libs/oldpip/pip_0.4.0_r5/picontainers.h + C:/libs/oldpip/pip_0.4.0_r5/pideque.h + C:/libs/oldpip/pip_0.4.0_r5/piincludes.h + C:/libs/oldpip/pip_0.4.0_r5/pimap.h + C:/libs/oldpip/pip_0.4.0_r5/pimath.h + C:/libs/oldpip/pip_0.4.0_r5/pimonitor.h + C:/libs/oldpip/pip_0.4.0_r5/pimutex.h + C:/libs/oldpip/pip_0.4.0_r5/piobject.h + C:/libs/oldpip/pip_0.4.0_r5/pip_export.h + C:/libs/oldpip/pip_0.4.0_r5/piqueue.h + C:/libs/oldpip/pip_0.4.0_r5/pistack.h + C:/libs/oldpip/pip_0.4.0_r5/pistring.h + C:/libs/oldpip/pip_0.4.0_r5/pitime.h + C:/libs/oldpip/pip_0.4.0_r5/pivariant.h + C:/libs/oldpip/pip_0.4.0_r5/pivector.h +CMakeFiles/pip.dir/piconfig.cpp.obj + C:/libs/oldpip/pip_0.4.0_r5/pibitarray.h + C:/libs/oldpip/pip_0.4.0_r5/pibytearray.h + C:/libs/oldpip/pip_0.4.0_r5/pichar.h + C:/libs/oldpip/pip_0.4.0_r5/picollection.h + C:/libs/oldpip/pip_0.4.0_r5/piconfig.cpp + C:/libs/oldpip/pip_0.4.0_r5/piconfig.h + C:/libs/oldpip/pip_0.4.0_r5/picontainers.h + C:/libs/oldpip/pip_0.4.0_r5/pideque.h + C:/libs/oldpip/pip_0.4.0_r5/pifile.h + C:/libs/oldpip/pip_0.4.0_r5/piincludes.h + C:/libs/oldpip/pip_0.4.0_r5/piiodevice.h + C:/libs/oldpip/pip_0.4.0_r5/pimap.h + C:/libs/oldpip/pip_0.4.0_r5/pimath.h + C:/libs/oldpip/pip_0.4.0_r5/pimonitor.h + C:/libs/oldpip/pip_0.4.0_r5/pimutex.h + C:/libs/oldpip/pip_0.4.0_r5/piobject.h + C:/libs/oldpip/pip_0.4.0_r5/pip_export.h + C:/libs/oldpip/pip_0.4.0_r5/piqueue.h + C:/libs/oldpip/pip_0.4.0_r5/pistack.h + C:/libs/oldpip/pip_0.4.0_r5/pistring.h + C:/libs/oldpip/pip_0.4.0_r5/pithread.h + C:/libs/oldpip/pip_0.4.0_r5/pitime.h + C:/libs/oldpip/pip_0.4.0_r5/pitimer.h + C:/libs/oldpip/pip_0.4.0_r5/pivariant.h + C:/libs/oldpip/pip_0.4.0_r5/pivector.h +CMakeFiles/pip.dir/piconnection.cpp.obj + C:/libs/oldpip/pip_0.4.0_r5/pibitarray.h + C:/libs/oldpip/pip_0.4.0_r5/pibytearray.h + C:/libs/oldpip/pip_0.4.0_r5/pichar.h + C:/libs/oldpip/pip_0.4.0_r5/picollection.h + C:/libs/oldpip/pip_0.4.0_r5/piconfig.h + C:/libs/oldpip/pip_0.4.0_r5/piconnection.cpp + C:/libs/oldpip/pip_0.4.0_r5/piconnection.h + C:/libs/oldpip/pip_0.4.0_r5/picontainers.h + C:/libs/oldpip/pip_0.4.0_r5/pideque.h + C:/libs/oldpip/pip_0.4.0_r5/pifile.h + C:/libs/oldpip/pip_0.4.0_r5/piincludes.h + C:/libs/oldpip/pip_0.4.0_r5/piiodevice.h + C:/libs/oldpip/pip_0.4.0_r5/pimap.h + C:/libs/oldpip/pip_0.4.0_r5/pimath.h + C:/libs/oldpip/pip_0.4.0_r5/pimonitor.h + C:/libs/oldpip/pip_0.4.0_r5/pimutex.h + C:/libs/oldpip/pip_0.4.0_r5/piobject.h + C:/libs/oldpip/pip_0.4.0_r5/pip_export.h + C:/libs/oldpip/pip_0.4.0_r5/pipacketextractor.h + C:/libs/oldpip/pip_0.4.0_r5/piqueue.h + C:/libs/oldpip/pip_0.4.0_r5/pistack.h + C:/libs/oldpip/pip_0.4.0_r5/pistring.h + C:/libs/oldpip/pip_0.4.0_r5/pithread.h + C:/libs/oldpip/pip_0.4.0_r5/pitime.h + C:/libs/oldpip/pip_0.4.0_r5/pitimer.h + C:/libs/oldpip/pip_0.4.0_r5/pivariant.h + C:/libs/oldpip/pip_0.4.0_r5/pivector.h +CMakeFiles/pip.dir/piconsole.cpp.obj + C:/libs/oldpip/pip_0.4.0_r5/pibitarray.h + C:/libs/oldpip/pip_0.4.0_r5/pibytearray.h + C:/libs/oldpip/pip_0.4.0_r5/pichar.h + C:/libs/oldpip/pip_0.4.0_r5/picollection.h + C:/libs/oldpip/pip_0.4.0_r5/piconfig.h + C:/libs/oldpip/pip_0.4.0_r5/piconsole.cpp + C:/libs/oldpip/pip_0.4.0_r5/piconsole.h + C:/libs/oldpip/pip_0.4.0_r5/picontainers.h + C:/libs/oldpip/pip_0.4.0_r5/pideque.h + C:/libs/oldpip/pip_0.4.0_r5/pidiagnostics.h + C:/libs/oldpip/pip_0.4.0_r5/piethernet.h + C:/libs/oldpip/pip_0.4.0_r5/pifile.h + C:/libs/oldpip/pip_0.4.0_r5/piincludes.h + C:/libs/oldpip/pip_0.4.0_r5/piiodevice.h + C:/libs/oldpip/pip_0.4.0_r5/pikbdlistener.h + C:/libs/oldpip/pip_0.4.0_r5/pimap.h + C:/libs/oldpip/pip_0.4.0_r5/pimath.h + C:/libs/oldpip/pip_0.4.0_r5/pimonitor.h + C:/libs/oldpip/pip_0.4.0_r5/pimutex.h + C:/libs/oldpip/pip_0.4.0_r5/piobject.h + C:/libs/oldpip/pip_0.4.0_r5/pip_export.h + C:/libs/oldpip/pip_0.4.0_r5/pipacketextractor.h + C:/libs/oldpip/pip_0.4.0_r5/pipeer.h + C:/libs/oldpip/pip_0.4.0_r5/piprocess.h + C:/libs/oldpip/pip_0.4.0_r5/piprotocol.h + C:/libs/oldpip/pip_0.4.0_r5/piqueue.h + C:/libs/oldpip/pip_0.4.0_r5/piserial.h + C:/libs/oldpip/pip_0.4.0_r5/pistack.h + C:/libs/oldpip/pip_0.4.0_r5/pistring.h + C:/libs/oldpip/pip_0.4.0_r5/pisystemmonitor.h + C:/libs/oldpip/pip_0.4.0_r5/pithread.h + C:/libs/oldpip/pip_0.4.0_r5/pitime.h + C:/libs/oldpip/pip_0.4.0_r5/pitimer.h + C:/libs/oldpip/pip_0.4.0_r5/pivariant.h + C:/libs/oldpip/pip_0.4.0_r5/pivector.h +CMakeFiles/pip.dir/picontainers.cpp.obj + C:/libs/oldpip/pip_0.4.0_r5/picontainers.cpp + C:/libs/oldpip/pip_0.4.0_r5/piincludes.h + C:/libs/oldpip/pip_0.4.0_r5/pimonitor.h + C:/libs/oldpip/pip_0.4.0_r5/pip_export.h + C:/libs/oldpip/pip_0.4.0_r5/pivector.h +CMakeFiles/pip.dir/pidevicepool.cpp.obj + C:/libs/oldpip/pip_0.4.0_r5/pibitarray.h + C:/libs/oldpip/pip_0.4.0_r5/pibytearray.h + C:/libs/oldpip/pip_0.4.0_r5/pichar.h + C:/libs/oldpip/pip_0.4.0_r5/picollection.h + C:/libs/oldpip/pip_0.4.0_r5/picontainers.h + C:/libs/oldpip/pip_0.4.0_r5/pideque.h + C:/libs/oldpip/pip_0.4.0_r5/pidevicepool.cpp + C:/libs/oldpip/pip_0.4.0_r5/pidevicepool.h + C:/libs/oldpip/pip_0.4.0_r5/piincludes.h + C:/libs/oldpip/pip_0.4.0_r5/piiodevice.h + C:/libs/oldpip/pip_0.4.0_r5/pimap.h + C:/libs/oldpip/pip_0.4.0_r5/pimath.h + C:/libs/oldpip/pip_0.4.0_r5/pimonitor.h + C:/libs/oldpip/pip_0.4.0_r5/pimutex.h + C:/libs/oldpip/pip_0.4.0_r5/piobject.h + C:/libs/oldpip/pip_0.4.0_r5/pip_export.h + C:/libs/oldpip/pip_0.4.0_r5/piqueue.h + C:/libs/oldpip/pip_0.4.0_r5/pistack.h + C:/libs/oldpip/pip_0.4.0_r5/pistring.h + C:/libs/oldpip/pip_0.4.0_r5/pithread.h + C:/libs/oldpip/pip_0.4.0_r5/pitime.h + C:/libs/oldpip/pip_0.4.0_r5/pitimer.h + C:/libs/oldpip/pip_0.4.0_r5/pivariant.h + C:/libs/oldpip/pip_0.4.0_r5/pivector.h +CMakeFiles/pip.dir/pidiagnostics.cpp.obj + C:/libs/oldpip/pip_0.4.0_r5/pibitarray.h + C:/libs/oldpip/pip_0.4.0_r5/pibytearray.h + C:/libs/oldpip/pip_0.4.0_r5/pichar.h + C:/libs/oldpip/pip_0.4.0_r5/picontainers.h + C:/libs/oldpip/pip_0.4.0_r5/pideque.h + C:/libs/oldpip/pip_0.4.0_r5/pidiagnostics.cpp + C:/libs/oldpip/pip_0.4.0_r5/pidiagnostics.h + C:/libs/oldpip/pip_0.4.0_r5/piincludes.h + C:/libs/oldpip/pip_0.4.0_r5/pimap.h + C:/libs/oldpip/pip_0.4.0_r5/pimath.h + C:/libs/oldpip/pip_0.4.0_r5/pimonitor.h + C:/libs/oldpip/pip_0.4.0_r5/pimutex.h + C:/libs/oldpip/pip_0.4.0_r5/piobject.h + C:/libs/oldpip/pip_0.4.0_r5/pip_export.h + C:/libs/oldpip/pip_0.4.0_r5/piqueue.h + C:/libs/oldpip/pip_0.4.0_r5/pistack.h + C:/libs/oldpip/pip_0.4.0_r5/pistring.h + C:/libs/oldpip/pip_0.4.0_r5/pithread.h + C:/libs/oldpip/pip_0.4.0_r5/pitime.h + C:/libs/oldpip/pip_0.4.0_r5/pitimer.h + C:/libs/oldpip/pip_0.4.0_r5/pivariant.h + C:/libs/oldpip/pip_0.4.0_r5/pivector.h +CMakeFiles/pip.dir/pidir.cpp.obj + C:/libs/oldpip/pip_0.4.0_r5/pibitarray.h + C:/libs/oldpip/pip_0.4.0_r5/pibytearray.h + C:/libs/oldpip/pip_0.4.0_r5/pichar.h + C:/libs/oldpip/pip_0.4.0_r5/picollection.h + C:/libs/oldpip/pip_0.4.0_r5/picontainers.h + C:/libs/oldpip/pip_0.4.0_r5/pideque.h + C:/libs/oldpip/pip_0.4.0_r5/pidir.cpp + C:/libs/oldpip/pip_0.4.0_r5/pidir.h + C:/libs/oldpip/pip_0.4.0_r5/pifile.h + C:/libs/oldpip/pip_0.4.0_r5/piincludes.h + C:/libs/oldpip/pip_0.4.0_r5/piiodevice.h + C:/libs/oldpip/pip_0.4.0_r5/pimap.h + C:/libs/oldpip/pip_0.4.0_r5/pimath.h + C:/libs/oldpip/pip_0.4.0_r5/pimonitor.h + C:/libs/oldpip/pip_0.4.0_r5/pimutex.h + C:/libs/oldpip/pip_0.4.0_r5/piobject.h + C:/libs/oldpip/pip_0.4.0_r5/pip_export.h + C:/libs/oldpip/pip_0.4.0_r5/piqueue.h + C:/libs/oldpip/pip_0.4.0_r5/pistack.h + C:/libs/oldpip/pip_0.4.0_r5/pistring.h + C:/libs/oldpip/pip_0.4.0_r5/pithread.h + C:/libs/oldpip/pip_0.4.0_r5/pitime.h + C:/libs/oldpip/pip_0.4.0_r5/pitimer.h + C:/libs/oldpip/pip_0.4.0_r5/pivariant.h + C:/libs/oldpip/pip_0.4.0_r5/pivector.h +CMakeFiles/pip.dir/piethernet.cpp.obj + C:/libs/oldpip/pip_0.4.0_r5/pibitarray.h + C:/libs/oldpip/pip_0.4.0_r5/pibytearray.h + C:/libs/oldpip/pip_0.4.0_r5/pichar.h + C:/libs/oldpip/pip_0.4.0_r5/picollection.h + C:/libs/oldpip/pip_0.4.0_r5/piconfig.h + C:/libs/oldpip/pip_0.4.0_r5/picontainers.h + C:/libs/oldpip/pip_0.4.0_r5/pideque.h + C:/libs/oldpip/pip_0.4.0_r5/piethernet.cpp + C:/libs/oldpip/pip_0.4.0_r5/piethernet.h + C:/libs/oldpip/pip_0.4.0_r5/pifile.h + C:/libs/oldpip/pip_0.4.0_r5/piincludes.h + C:/libs/oldpip/pip_0.4.0_r5/piiodevice.h + C:/libs/oldpip/pip_0.4.0_r5/pimap.h + C:/libs/oldpip/pip_0.4.0_r5/pimath.h + C:/libs/oldpip/pip_0.4.0_r5/pimonitor.h + C:/libs/oldpip/pip_0.4.0_r5/pimutex.h + C:/libs/oldpip/pip_0.4.0_r5/piobject.h + C:/libs/oldpip/pip_0.4.0_r5/pip_export.h + C:/libs/oldpip/pip_0.4.0_r5/piprocess.h + C:/libs/oldpip/pip_0.4.0_r5/piqueue.h + C:/libs/oldpip/pip_0.4.0_r5/pistack.h + C:/libs/oldpip/pip_0.4.0_r5/pistring.h + C:/libs/oldpip/pip_0.4.0_r5/pithread.h + C:/libs/oldpip/pip_0.4.0_r5/pitime.h + C:/libs/oldpip/pip_0.4.0_r5/pitimer.h + C:/libs/oldpip/pip_0.4.0_r5/pivariant.h + C:/libs/oldpip/pip_0.4.0_r5/pivector.h +CMakeFiles/pip.dir/pievaluator.cpp.obj + C:/libs/oldpip/pip_0.4.0_r5/pibitarray.h + C:/libs/oldpip/pip_0.4.0_r5/pibytearray.h + C:/libs/oldpip/pip_0.4.0_r5/pichar.h + C:/libs/oldpip/pip_0.4.0_r5/picontainers.h + C:/libs/oldpip/pip_0.4.0_r5/pideque.h + C:/libs/oldpip/pip_0.4.0_r5/pievaluator.cpp + C:/libs/oldpip/pip_0.4.0_r5/pievaluator.h + C:/libs/oldpip/pip_0.4.0_r5/piincludes.h + C:/libs/oldpip/pip_0.4.0_r5/pimap.h + C:/libs/oldpip/pip_0.4.0_r5/pimath.h + C:/libs/oldpip/pip_0.4.0_r5/pimonitor.h + C:/libs/oldpip/pip_0.4.0_r5/pip_export.h + C:/libs/oldpip/pip_0.4.0_r5/piqueue.h + C:/libs/oldpip/pip_0.4.0_r5/pistack.h + C:/libs/oldpip/pip_0.4.0_r5/pistring.h + C:/libs/oldpip/pip_0.4.0_r5/pivector.h +CMakeFiles/pip.dir/pifile.cpp.obj + C:/libs/oldpip/pip_0.4.0_r5/pibitarray.h + C:/libs/oldpip/pip_0.4.0_r5/pibytearray.h + C:/libs/oldpip/pip_0.4.0_r5/pichar.h + C:/libs/oldpip/pip_0.4.0_r5/picollection.h + C:/libs/oldpip/pip_0.4.0_r5/picontainers.h + C:/libs/oldpip/pip_0.4.0_r5/pideque.h + C:/libs/oldpip/pip_0.4.0_r5/pifile.cpp + C:/libs/oldpip/pip_0.4.0_r5/pifile.h + C:/libs/oldpip/pip_0.4.0_r5/piincludes.h + C:/libs/oldpip/pip_0.4.0_r5/piiodevice.h + C:/libs/oldpip/pip_0.4.0_r5/pimap.h + C:/libs/oldpip/pip_0.4.0_r5/pimath.h + C:/libs/oldpip/pip_0.4.0_r5/pimonitor.h + C:/libs/oldpip/pip_0.4.0_r5/pimutex.h + C:/libs/oldpip/pip_0.4.0_r5/piobject.h + C:/libs/oldpip/pip_0.4.0_r5/pip_export.h + C:/libs/oldpip/pip_0.4.0_r5/piqueue.h + C:/libs/oldpip/pip_0.4.0_r5/pistack.h + C:/libs/oldpip/pip_0.4.0_r5/pistring.h + C:/libs/oldpip/pip_0.4.0_r5/pithread.h + C:/libs/oldpip/pip_0.4.0_r5/pitime.h + C:/libs/oldpip/pip_0.4.0_r5/pitimer.h + C:/libs/oldpip/pip_0.4.0_r5/pivariant.h + C:/libs/oldpip/pip_0.4.0_r5/pivector.h +CMakeFiles/pip.dir/piincludes.cpp.obj + C:/libs/oldpip/pip_0.4.0_r5/piconfig.h + C:/libs/oldpip/pip_0.4.0_r5/piconsole.h + C:/libs/oldpip/pip_0.4.0_r5/pidiagnostics.h + C:/libs/oldpip/pip_0.4.0_r5/piethernet.h + C:/libs/oldpip/pip_0.4.0_r5/piincludes.cpp + C:/libs/oldpip/pip_0.4.0_r5/piincludes.h + C:/libs/oldpip/pip_0.4.0_r5/pikbdlistener.h + C:/libs/oldpip/pip_0.4.0_r5/pimonitor.h + C:/libs/oldpip/pip_0.4.0_r5/pip_export.h + C:/libs/oldpip/pip_0.4.0_r5/pipacketextractor.h + C:/libs/oldpip/pip_0.4.0_r5/piprocess.h + C:/libs/oldpip/pip_0.4.0_r5/piprotocol.h + C:/libs/oldpip/pip_0.4.0_r5/pisystemmonitor.h + C:/libs/oldpip/pip_0.4.0_r5/pithread.h + pibinarylog.h + pibitarray.h + pibytearray.h + pichar.h + picli.h + picodec.h + picollection.h + picontainers.h + picrc.h + pideque.h + pievaluator.h + pifile.h + piiodevice.h + pimap.h + pimath.h + pimultiprotocol.h + pimutex.h + piobject.h + pip.h + pipeer.h + piqueue.h + piserial.h + pisignals.h + pistack.h + pistatemachine.h + pistring.h + pitime.h + pitimer.h + piusb.h + pivariant.h + pivector.h +CMakeFiles/pip.dir/piiodevice.cpp.obj + C:/libs/oldpip/pip_0.4.0_r5/pibitarray.h + C:/libs/oldpip/pip_0.4.0_r5/pibytearray.h + C:/libs/oldpip/pip_0.4.0_r5/pichar.h + C:/libs/oldpip/pip_0.4.0_r5/picollection.h + C:/libs/oldpip/pip_0.4.0_r5/piconfig.h + C:/libs/oldpip/pip_0.4.0_r5/picontainers.h + C:/libs/oldpip/pip_0.4.0_r5/pideque.h + C:/libs/oldpip/pip_0.4.0_r5/pifile.h + C:/libs/oldpip/pip_0.4.0_r5/piincludes.h + C:/libs/oldpip/pip_0.4.0_r5/piiodevice.cpp + C:/libs/oldpip/pip_0.4.0_r5/piiodevice.h + C:/libs/oldpip/pip_0.4.0_r5/pimap.h + C:/libs/oldpip/pip_0.4.0_r5/pimath.h + C:/libs/oldpip/pip_0.4.0_r5/pimonitor.h + C:/libs/oldpip/pip_0.4.0_r5/pimutex.h + C:/libs/oldpip/pip_0.4.0_r5/piobject.h + C:/libs/oldpip/pip_0.4.0_r5/pip_export.h + C:/libs/oldpip/pip_0.4.0_r5/piqueue.h + C:/libs/oldpip/pip_0.4.0_r5/pistack.h + C:/libs/oldpip/pip_0.4.0_r5/pistring.h + C:/libs/oldpip/pip_0.4.0_r5/pithread.h + C:/libs/oldpip/pip_0.4.0_r5/pitime.h + C:/libs/oldpip/pip_0.4.0_r5/pitimer.h + C:/libs/oldpip/pip_0.4.0_r5/pivariant.h + C:/libs/oldpip/pip_0.4.0_r5/pivector.h +CMakeFiles/pip.dir/pikbdlistener.cpp.obj + C:/libs/oldpip/pip_0.4.0_r5/pibitarray.h + C:/libs/oldpip/pip_0.4.0_r5/pibytearray.h + C:/libs/oldpip/pip_0.4.0_r5/pichar.h + C:/libs/oldpip/pip_0.4.0_r5/picontainers.h + C:/libs/oldpip/pip_0.4.0_r5/pideque.h + C:/libs/oldpip/pip_0.4.0_r5/piincludes.h + C:/libs/oldpip/pip_0.4.0_r5/pikbdlistener.cpp + C:/libs/oldpip/pip_0.4.0_r5/pikbdlistener.h + C:/libs/oldpip/pip_0.4.0_r5/pimap.h + C:/libs/oldpip/pip_0.4.0_r5/pimath.h + C:/libs/oldpip/pip_0.4.0_r5/pimonitor.h + C:/libs/oldpip/pip_0.4.0_r5/pimutex.h + C:/libs/oldpip/pip_0.4.0_r5/piobject.h + C:/libs/oldpip/pip_0.4.0_r5/pip_export.h + C:/libs/oldpip/pip_0.4.0_r5/piqueue.h + C:/libs/oldpip/pip_0.4.0_r5/pistack.h + C:/libs/oldpip/pip_0.4.0_r5/pistring.h + C:/libs/oldpip/pip_0.4.0_r5/pithread.h + C:/libs/oldpip/pip_0.4.0_r5/pitime.h + C:/libs/oldpip/pip_0.4.0_r5/pivariant.h + C:/libs/oldpip/pip_0.4.0_r5/pivector.h +CMakeFiles/pip.dir/pimath.cpp.obj + C:/libs/oldpip/pip_0.4.0_r5/pibitarray.h + C:/libs/oldpip/pip_0.4.0_r5/pibytearray.h + C:/libs/oldpip/pip_0.4.0_r5/picontainers.h + C:/libs/oldpip/pip_0.4.0_r5/pideque.h + C:/libs/oldpip/pip_0.4.0_r5/piincludes.h + C:/libs/oldpip/pip_0.4.0_r5/pimap.h + C:/libs/oldpip/pip_0.4.0_r5/pimath.cpp + C:/libs/oldpip/pip_0.4.0_r5/pimath.h + C:/libs/oldpip/pip_0.4.0_r5/pimonitor.h + C:/libs/oldpip/pip_0.4.0_r5/pip_export.h + C:/libs/oldpip/pip_0.4.0_r5/piqueue.h + C:/libs/oldpip/pip_0.4.0_r5/pistack.h + C:/libs/oldpip/pip_0.4.0_r5/pivector.h +CMakeFiles/pip.dir/pimonitor.cpp.obj + C:/libs/oldpip/pip_0.4.0_r5/pimonitor.cpp + C:/libs/oldpip/pip_0.4.0_r5/pimonitor.h + C:/libs/oldpip/pip_0.4.0_r5/pip_export.h +CMakeFiles/pip.dir/pimultiprotocol.cpp.obj + C:/libs/oldpip/pip_0.4.0_r5/pibitarray.h + C:/libs/oldpip/pip_0.4.0_r5/pibytearray.h + C:/libs/oldpip/pip_0.4.0_r5/pichar.h + C:/libs/oldpip/pip_0.4.0_r5/picollection.h + C:/libs/oldpip/pip_0.4.0_r5/piconfig.h + C:/libs/oldpip/pip_0.4.0_r5/picontainers.h + C:/libs/oldpip/pip_0.4.0_r5/pideque.h + C:/libs/oldpip/pip_0.4.0_r5/piethernet.h + C:/libs/oldpip/pip_0.4.0_r5/pifile.h + C:/libs/oldpip/pip_0.4.0_r5/piincludes.h + C:/libs/oldpip/pip_0.4.0_r5/piiodevice.h + C:/libs/oldpip/pip_0.4.0_r5/pimap.h + C:/libs/oldpip/pip_0.4.0_r5/pimath.h + C:/libs/oldpip/pip_0.4.0_r5/pimonitor.h + C:/libs/oldpip/pip_0.4.0_r5/pimultiprotocol.cpp + C:/libs/oldpip/pip_0.4.0_r5/pimultiprotocol.h + C:/libs/oldpip/pip_0.4.0_r5/pimutex.h + C:/libs/oldpip/pip_0.4.0_r5/piobject.h + C:/libs/oldpip/pip_0.4.0_r5/pip_export.h + C:/libs/oldpip/pip_0.4.0_r5/pipacketextractor.h + C:/libs/oldpip/pip_0.4.0_r5/piprocess.h + C:/libs/oldpip/pip_0.4.0_r5/piprotocol.h + C:/libs/oldpip/pip_0.4.0_r5/piqueue.h + C:/libs/oldpip/pip_0.4.0_r5/piserial.h + C:/libs/oldpip/pip_0.4.0_r5/pistack.h + C:/libs/oldpip/pip_0.4.0_r5/pistring.h + C:/libs/oldpip/pip_0.4.0_r5/pithread.h + C:/libs/oldpip/pip_0.4.0_r5/pitime.h + C:/libs/oldpip/pip_0.4.0_r5/pitimer.h + C:/libs/oldpip/pip_0.4.0_r5/pivariant.h + C:/libs/oldpip/pip_0.4.0_r5/pivector.h +CMakeFiles/pip.dir/pimutex.cpp.obj + C:/libs/oldpip/pip_0.4.0_r5/piincludes.h + C:/libs/oldpip/pip_0.4.0_r5/pimonitor.h + C:/libs/oldpip/pip_0.4.0_r5/pimutex.cpp + C:/libs/oldpip/pip_0.4.0_r5/pimutex.h + C:/libs/oldpip/pip_0.4.0_r5/pip_export.h +CMakeFiles/pip.dir/piobject.cpp.obj + C:/libs/oldpip/pip_0.4.0_r5/pibitarray.h + C:/libs/oldpip/pip_0.4.0_r5/pibytearray.h + C:/libs/oldpip/pip_0.4.0_r5/pichar.h + C:/libs/oldpip/pip_0.4.0_r5/picontainers.h + C:/libs/oldpip/pip_0.4.0_r5/pideque.h + C:/libs/oldpip/pip_0.4.0_r5/piincludes.h + C:/libs/oldpip/pip_0.4.0_r5/pimap.h + C:/libs/oldpip/pip_0.4.0_r5/pimath.h + C:/libs/oldpip/pip_0.4.0_r5/pimonitor.h + C:/libs/oldpip/pip_0.4.0_r5/pimutex.h + C:/libs/oldpip/pip_0.4.0_r5/piobject.cpp + C:/libs/oldpip/pip_0.4.0_r5/piobject.h + C:/libs/oldpip/pip_0.4.0_r5/pip_export.h + C:/libs/oldpip/pip_0.4.0_r5/piqueue.h + C:/libs/oldpip/pip_0.4.0_r5/pistack.h + C:/libs/oldpip/pip_0.4.0_r5/pistring.h + C:/libs/oldpip/pip_0.4.0_r5/pitime.h + C:/libs/oldpip/pip_0.4.0_r5/pivariant.h + C:/libs/oldpip/pip_0.4.0_r5/pivector.h +CMakeFiles/pip.dir/pipacketextractor.cpp.obj + C:/libs/oldpip/pip_0.4.0_r5/pibitarray.h + C:/libs/oldpip/pip_0.4.0_r5/pibytearray.h + C:/libs/oldpip/pip_0.4.0_r5/pichar.h + C:/libs/oldpip/pip_0.4.0_r5/picollection.h + C:/libs/oldpip/pip_0.4.0_r5/picontainers.h + C:/libs/oldpip/pip_0.4.0_r5/pideque.h + C:/libs/oldpip/pip_0.4.0_r5/piincludes.h + C:/libs/oldpip/pip_0.4.0_r5/piiodevice.h + C:/libs/oldpip/pip_0.4.0_r5/pimap.h + C:/libs/oldpip/pip_0.4.0_r5/pimath.h + C:/libs/oldpip/pip_0.4.0_r5/pimonitor.h + C:/libs/oldpip/pip_0.4.0_r5/pimutex.h + C:/libs/oldpip/pip_0.4.0_r5/piobject.h + C:/libs/oldpip/pip_0.4.0_r5/pip_export.h + C:/libs/oldpip/pip_0.4.0_r5/pipacketextractor.cpp + C:/libs/oldpip/pip_0.4.0_r5/pipacketextractor.h + C:/libs/oldpip/pip_0.4.0_r5/piqueue.h + C:/libs/oldpip/pip_0.4.0_r5/pistack.h + C:/libs/oldpip/pip_0.4.0_r5/pistring.h + C:/libs/oldpip/pip_0.4.0_r5/pithread.h + C:/libs/oldpip/pip_0.4.0_r5/pitime.h + C:/libs/oldpip/pip_0.4.0_r5/pitimer.h + C:/libs/oldpip/pip_0.4.0_r5/pivariant.h + C:/libs/oldpip/pip_0.4.0_r5/pivector.h +CMakeFiles/pip.dir/pipeer.cpp.obj + C:/libs/oldpip/pip_0.4.0_r5/pibitarray.h + C:/libs/oldpip/pip_0.4.0_r5/pibytearray.h + C:/libs/oldpip/pip_0.4.0_r5/pichar.h + C:/libs/oldpip/pip_0.4.0_r5/picollection.h + C:/libs/oldpip/pip_0.4.0_r5/picontainers.h + C:/libs/oldpip/pip_0.4.0_r5/pideque.h + C:/libs/oldpip/pip_0.4.0_r5/pidiagnostics.h + C:/libs/oldpip/pip_0.4.0_r5/piethernet.h + C:/libs/oldpip/pip_0.4.0_r5/pifile.h + C:/libs/oldpip/pip_0.4.0_r5/piincludes.h + C:/libs/oldpip/pip_0.4.0_r5/piiodevice.h + C:/libs/oldpip/pip_0.4.0_r5/pimap.h + C:/libs/oldpip/pip_0.4.0_r5/pimath.h + C:/libs/oldpip/pip_0.4.0_r5/pimonitor.h + C:/libs/oldpip/pip_0.4.0_r5/pimutex.h + C:/libs/oldpip/pip_0.4.0_r5/piobject.h + C:/libs/oldpip/pip_0.4.0_r5/pip_export.h + C:/libs/oldpip/pip_0.4.0_r5/pipeer.cpp + C:/libs/oldpip/pip_0.4.0_r5/pipeer.h + C:/libs/oldpip/pip_0.4.0_r5/piprocess.h + C:/libs/oldpip/pip_0.4.0_r5/piqueue.h + C:/libs/oldpip/pip_0.4.0_r5/pistack.h + C:/libs/oldpip/pip_0.4.0_r5/pistring.h + C:/libs/oldpip/pip_0.4.0_r5/pithread.h + C:/libs/oldpip/pip_0.4.0_r5/pitime.h + C:/libs/oldpip/pip_0.4.0_r5/pitimer.h + C:/libs/oldpip/pip_0.4.0_r5/pivariant.h + C:/libs/oldpip/pip_0.4.0_r5/pivector.h +CMakeFiles/pip.dir/piprocess.cpp.obj + C:/libs/oldpip/pip_0.4.0_r5/pibitarray.h + C:/libs/oldpip/pip_0.4.0_r5/pibytearray.h + C:/libs/oldpip/pip_0.4.0_r5/pichar.h + C:/libs/oldpip/pip_0.4.0_r5/picollection.h + C:/libs/oldpip/pip_0.4.0_r5/picontainers.h + C:/libs/oldpip/pip_0.4.0_r5/pideque.h + C:/libs/oldpip/pip_0.4.0_r5/pifile.h + C:/libs/oldpip/pip_0.4.0_r5/piincludes.h + C:/libs/oldpip/pip_0.4.0_r5/piiodevice.h + C:/libs/oldpip/pip_0.4.0_r5/pimap.h + C:/libs/oldpip/pip_0.4.0_r5/pimath.h + C:/libs/oldpip/pip_0.4.0_r5/pimonitor.h + C:/libs/oldpip/pip_0.4.0_r5/pimutex.h + C:/libs/oldpip/pip_0.4.0_r5/piobject.h + C:/libs/oldpip/pip_0.4.0_r5/pip_export.h + C:/libs/oldpip/pip_0.4.0_r5/piprocess.cpp + C:/libs/oldpip/pip_0.4.0_r5/piprocess.h + C:/libs/oldpip/pip_0.4.0_r5/piqueue.h + C:/libs/oldpip/pip_0.4.0_r5/pistack.h + C:/libs/oldpip/pip_0.4.0_r5/pistring.h + C:/libs/oldpip/pip_0.4.0_r5/pithread.h + C:/libs/oldpip/pip_0.4.0_r5/pitime.h + C:/libs/oldpip/pip_0.4.0_r5/pitimer.h + C:/libs/oldpip/pip_0.4.0_r5/pivariant.h + C:/libs/oldpip/pip_0.4.0_r5/pivector.h +CMakeFiles/pip.dir/piprotocol.cpp.obj + C:/libs/oldpip/pip_0.4.0_r5/pibitarray.h + C:/libs/oldpip/pip_0.4.0_r5/pibytearray.h + C:/libs/oldpip/pip_0.4.0_r5/pichar.h + C:/libs/oldpip/pip_0.4.0_r5/picollection.h + C:/libs/oldpip/pip_0.4.0_r5/piconfig.h + C:/libs/oldpip/pip_0.4.0_r5/picontainers.h + C:/libs/oldpip/pip_0.4.0_r5/pideque.h + C:/libs/oldpip/pip_0.4.0_r5/piethernet.h + C:/libs/oldpip/pip_0.4.0_r5/pifile.h + C:/libs/oldpip/pip_0.4.0_r5/piincludes.h + C:/libs/oldpip/pip_0.4.0_r5/piiodevice.h + C:/libs/oldpip/pip_0.4.0_r5/pimap.h + C:/libs/oldpip/pip_0.4.0_r5/pimath.h + C:/libs/oldpip/pip_0.4.0_r5/pimonitor.h + C:/libs/oldpip/pip_0.4.0_r5/pimutex.h + C:/libs/oldpip/pip_0.4.0_r5/piobject.h + C:/libs/oldpip/pip_0.4.0_r5/pip_export.h + C:/libs/oldpip/pip_0.4.0_r5/pipacketextractor.h + C:/libs/oldpip/pip_0.4.0_r5/piprocess.h + C:/libs/oldpip/pip_0.4.0_r5/piprotocol.cpp + C:/libs/oldpip/pip_0.4.0_r5/piprotocol.h + C:/libs/oldpip/pip_0.4.0_r5/piqueue.h + C:/libs/oldpip/pip_0.4.0_r5/piserial.h + C:/libs/oldpip/pip_0.4.0_r5/pistack.h + C:/libs/oldpip/pip_0.4.0_r5/pistring.h + C:/libs/oldpip/pip_0.4.0_r5/pithread.h + C:/libs/oldpip/pip_0.4.0_r5/pitime.h + C:/libs/oldpip/pip_0.4.0_r5/pitimer.h + C:/libs/oldpip/pip_0.4.0_r5/pivariant.h + C:/libs/oldpip/pip_0.4.0_r5/pivector.h +CMakeFiles/pip.dir/piserial.cpp.obj + C:/libs/oldpip/pip_0.4.0_r5/pibitarray.h + C:/libs/oldpip/pip_0.4.0_r5/pibytearray.h + C:/libs/oldpip/pip_0.4.0_r5/pichar.h + C:/libs/oldpip/pip_0.4.0_r5/picollection.h + C:/libs/oldpip/pip_0.4.0_r5/piconfig.h + C:/libs/oldpip/pip_0.4.0_r5/picontainers.h + C:/libs/oldpip/pip_0.4.0_r5/pideque.h + C:/libs/oldpip/pip_0.4.0_r5/pidir.h + C:/libs/oldpip/pip_0.4.0_r5/pifile.h + C:/libs/oldpip/pip_0.4.0_r5/piincludes.h + C:/libs/oldpip/pip_0.4.0_r5/piiodevice.h + C:/libs/oldpip/pip_0.4.0_r5/pimap.h + C:/libs/oldpip/pip_0.4.0_r5/pimath.h + C:/libs/oldpip/pip_0.4.0_r5/pimonitor.h + C:/libs/oldpip/pip_0.4.0_r5/pimutex.h + C:/libs/oldpip/pip_0.4.0_r5/piobject.h + C:/libs/oldpip/pip_0.4.0_r5/pip_export.h + C:/libs/oldpip/pip_0.4.0_r5/piqueue.h + C:/libs/oldpip/pip_0.4.0_r5/piserial.cpp + C:/libs/oldpip/pip_0.4.0_r5/piserial.h + C:/libs/oldpip/pip_0.4.0_r5/pistack.h + C:/libs/oldpip/pip_0.4.0_r5/pistring.h + C:/libs/oldpip/pip_0.4.0_r5/pithread.h + C:/libs/oldpip/pip_0.4.0_r5/pitime.h + C:/libs/oldpip/pip_0.4.0_r5/pitimer.h + C:/libs/oldpip/pip_0.4.0_r5/pivariant.h + C:/libs/oldpip/pip_0.4.0_r5/pivector.h +CMakeFiles/pip.dir/pisignals.cpp.obj + C:/libs/oldpip/pip_0.4.0_r5/picontainers.h + C:/libs/oldpip/pip_0.4.0_r5/pideque.h + C:/libs/oldpip/pip_0.4.0_r5/piincludes.h + C:/libs/oldpip/pip_0.4.0_r5/pimap.h + C:/libs/oldpip/pip_0.4.0_r5/pimonitor.h + C:/libs/oldpip/pip_0.4.0_r5/pip_export.h + C:/libs/oldpip/pip_0.4.0_r5/piqueue.h + C:/libs/oldpip/pip_0.4.0_r5/pisignals.cpp + C:/libs/oldpip/pip_0.4.0_r5/pisignals.h + C:/libs/oldpip/pip_0.4.0_r5/pistack.h + C:/libs/oldpip/pip_0.4.0_r5/pivector.h +CMakeFiles/pip.dir/pistring.cpp.obj + C:/libs/oldpip/pip_0.4.0_r5/pibitarray.h + C:/libs/oldpip/pip_0.4.0_r5/pibytearray.h + C:/libs/oldpip/pip_0.4.0_r5/pichar.h + C:/libs/oldpip/pip_0.4.0_r5/picontainers.h + C:/libs/oldpip/pip_0.4.0_r5/pideque.h + C:/libs/oldpip/pip_0.4.0_r5/piincludes.h + C:/libs/oldpip/pip_0.4.0_r5/pimap.h + C:/libs/oldpip/pip_0.4.0_r5/pimonitor.h + C:/libs/oldpip/pip_0.4.0_r5/pip_export.h + C:/libs/oldpip/pip_0.4.0_r5/piqueue.h + C:/libs/oldpip/pip_0.4.0_r5/pistack.h + C:/libs/oldpip/pip_0.4.0_r5/pistring.cpp + C:/libs/oldpip/pip_0.4.0_r5/pistring.h + C:/libs/oldpip/pip_0.4.0_r5/pivector.h +CMakeFiles/pip.dir/pisystemmonitor.cpp.obj + C:/libs/oldpip/pip_0.4.0_r5/pibitarray.h + C:/libs/oldpip/pip_0.4.0_r5/pibytearray.h + C:/libs/oldpip/pip_0.4.0_r5/pichar.h + C:/libs/oldpip/pip_0.4.0_r5/picollection.h + C:/libs/oldpip/pip_0.4.0_r5/picontainers.h + C:/libs/oldpip/pip_0.4.0_r5/pideque.h + C:/libs/oldpip/pip_0.4.0_r5/pifile.h + C:/libs/oldpip/pip_0.4.0_r5/piincludes.h + C:/libs/oldpip/pip_0.4.0_r5/piiodevice.h + C:/libs/oldpip/pip_0.4.0_r5/pimap.h + C:/libs/oldpip/pip_0.4.0_r5/pimath.h + C:/libs/oldpip/pip_0.4.0_r5/pimonitor.h + C:/libs/oldpip/pip_0.4.0_r5/pimutex.h + C:/libs/oldpip/pip_0.4.0_r5/piobject.h + C:/libs/oldpip/pip_0.4.0_r5/pip_export.h + C:/libs/oldpip/pip_0.4.0_r5/piprocess.h + C:/libs/oldpip/pip_0.4.0_r5/piqueue.h + C:/libs/oldpip/pip_0.4.0_r5/pistack.h + C:/libs/oldpip/pip_0.4.0_r5/pistring.h + C:/libs/oldpip/pip_0.4.0_r5/pisystemmonitor.cpp + C:/libs/oldpip/pip_0.4.0_r5/pisystemmonitor.h + C:/libs/oldpip/pip_0.4.0_r5/pithread.h + C:/libs/oldpip/pip_0.4.0_r5/pitime.h + C:/libs/oldpip/pip_0.4.0_r5/pitimer.h + C:/libs/oldpip/pip_0.4.0_r5/pivariant.h + C:/libs/oldpip/pip_0.4.0_r5/pivector.h +CMakeFiles/pip.dir/pisystemtests.cpp.obj + C:/libs/oldpip/pip_0.4.0_r5/pibitarray.h + C:/libs/oldpip/pip_0.4.0_r5/pibytearray.h + C:/libs/oldpip/pip_0.4.0_r5/pichar.h + C:/libs/oldpip/pip_0.4.0_r5/picollection.h + C:/libs/oldpip/pip_0.4.0_r5/piconfig.h + C:/libs/oldpip/pip_0.4.0_r5/picontainers.h + C:/libs/oldpip/pip_0.4.0_r5/pideque.h + C:/libs/oldpip/pip_0.4.0_r5/pifile.h + C:/libs/oldpip/pip_0.4.0_r5/piincludes.h + C:/libs/oldpip/pip_0.4.0_r5/piiodevice.h + C:/libs/oldpip/pip_0.4.0_r5/pimap.h + C:/libs/oldpip/pip_0.4.0_r5/pimath.h + C:/libs/oldpip/pip_0.4.0_r5/pimonitor.h + C:/libs/oldpip/pip_0.4.0_r5/pimutex.h + C:/libs/oldpip/pip_0.4.0_r5/piobject.h + C:/libs/oldpip/pip_0.4.0_r5/pip_export.h + C:/libs/oldpip/pip_0.4.0_r5/piqueue.h + C:/libs/oldpip/pip_0.4.0_r5/pistack.h + C:/libs/oldpip/pip_0.4.0_r5/pistring.h + C:/libs/oldpip/pip_0.4.0_r5/pisystemtests.cpp + C:/libs/oldpip/pip_0.4.0_r5/pisystemtests.h + C:/libs/oldpip/pip_0.4.0_r5/pithread.h + C:/libs/oldpip/pip_0.4.0_r5/pitime.h + C:/libs/oldpip/pip_0.4.0_r5/pitimer.h + C:/libs/oldpip/pip_0.4.0_r5/pivariant.h + C:/libs/oldpip/pip_0.4.0_r5/pivector.h +CMakeFiles/pip.dir/pithread.cpp.obj + C:/libs/oldpip/pip_0.4.0_r5/pibitarray.h + C:/libs/oldpip/pip_0.4.0_r5/pibytearray.h + C:/libs/oldpip/pip_0.4.0_r5/pichar.h + C:/libs/oldpip/pip_0.4.0_r5/picollection.h + C:/libs/oldpip/pip_0.4.0_r5/piconfig.h + C:/libs/oldpip/pip_0.4.0_r5/picontainers.h + C:/libs/oldpip/pip_0.4.0_r5/pideque.h + C:/libs/oldpip/pip_0.4.0_r5/pifile.h + C:/libs/oldpip/pip_0.4.0_r5/piincludes.h + C:/libs/oldpip/pip_0.4.0_r5/piiodevice.h + C:/libs/oldpip/pip_0.4.0_r5/pimap.h + C:/libs/oldpip/pip_0.4.0_r5/pimath.h + C:/libs/oldpip/pip_0.4.0_r5/pimonitor.h + C:/libs/oldpip/pip_0.4.0_r5/pimutex.h + C:/libs/oldpip/pip_0.4.0_r5/piobject.h + C:/libs/oldpip/pip_0.4.0_r5/pip_export.h + C:/libs/oldpip/pip_0.4.0_r5/piqueue.h + C:/libs/oldpip/pip_0.4.0_r5/pistack.h + C:/libs/oldpip/pip_0.4.0_r5/pistring.h + C:/libs/oldpip/pip_0.4.0_r5/pisystemtests.h + C:/libs/oldpip/pip_0.4.0_r5/pithread.cpp + C:/libs/oldpip/pip_0.4.0_r5/pithread.h + C:/libs/oldpip/pip_0.4.0_r5/pitime.h + C:/libs/oldpip/pip_0.4.0_r5/pitimer.h + C:/libs/oldpip/pip_0.4.0_r5/pivariant.h + C:/libs/oldpip/pip_0.4.0_r5/pivector.h +CMakeFiles/pip.dir/pitime.cpp.obj + C:/libs/oldpip/pip_0.4.0_r5/pibitarray.h + C:/libs/oldpip/pip_0.4.0_r5/pibytearray.h + C:/libs/oldpip/pip_0.4.0_r5/pichar.h + C:/libs/oldpip/pip_0.4.0_r5/picollection.h + C:/libs/oldpip/pip_0.4.0_r5/piconfig.h + C:/libs/oldpip/pip_0.4.0_r5/picontainers.h + C:/libs/oldpip/pip_0.4.0_r5/pideque.h + C:/libs/oldpip/pip_0.4.0_r5/pifile.h + C:/libs/oldpip/pip_0.4.0_r5/piincludes.h + C:/libs/oldpip/pip_0.4.0_r5/piiodevice.h + C:/libs/oldpip/pip_0.4.0_r5/pimap.h + C:/libs/oldpip/pip_0.4.0_r5/pimath.h + C:/libs/oldpip/pip_0.4.0_r5/pimonitor.h + C:/libs/oldpip/pip_0.4.0_r5/pimutex.h + C:/libs/oldpip/pip_0.4.0_r5/piobject.h + C:/libs/oldpip/pip_0.4.0_r5/pip_export.h + C:/libs/oldpip/pip_0.4.0_r5/piqueue.h + C:/libs/oldpip/pip_0.4.0_r5/pistack.h + C:/libs/oldpip/pip_0.4.0_r5/pistring.h + C:/libs/oldpip/pip_0.4.0_r5/pisystemtests.h + C:/libs/oldpip/pip_0.4.0_r5/pithread.h + C:/libs/oldpip/pip_0.4.0_r5/pitime.cpp + C:/libs/oldpip/pip_0.4.0_r5/pitime.h + C:/libs/oldpip/pip_0.4.0_r5/pitimer.h + C:/libs/oldpip/pip_0.4.0_r5/pivariant.h + C:/libs/oldpip/pip_0.4.0_r5/pivector.h +CMakeFiles/pip.dir/pitimer.cpp.obj + C:/libs/oldpip/pip_0.4.0_r5/pibitarray.h + C:/libs/oldpip/pip_0.4.0_r5/pibytearray.h + C:/libs/oldpip/pip_0.4.0_r5/pichar.h + C:/libs/oldpip/pip_0.4.0_r5/picollection.h + C:/libs/oldpip/pip_0.4.0_r5/piconfig.h + C:/libs/oldpip/pip_0.4.0_r5/picontainers.h + C:/libs/oldpip/pip_0.4.0_r5/pideque.h + C:/libs/oldpip/pip_0.4.0_r5/pifile.h + C:/libs/oldpip/pip_0.4.0_r5/piincludes.h + C:/libs/oldpip/pip_0.4.0_r5/piiodevice.h + C:/libs/oldpip/pip_0.4.0_r5/pimap.h + C:/libs/oldpip/pip_0.4.0_r5/pimath.h + C:/libs/oldpip/pip_0.4.0_r5/pimonitor.h + C:/libs/oldpip/pip_0.4.0_r5/pimutex.h + C:/libs/oldpip/pip_0.4.0_r5/piobject.h + C:/libs/oldpip/pip_0.4.0_r5/pip_export.h + C:/libs/oldpip/pip_0.4.0_r5/piqueue.h + C:/libs/oldpip/pip_0.4.0_r5/pistack.h + C:/libs/oldpip/pip_0.4.0_r5/pistring.h + C:/libs/oldpip/pip_0.4.0_r5/pisystemtests.h + C:/libs/oldpip/pip_0.4.0_r5/pithread.h + C:/libs/oldpip/pip_0.4.0_r5/pitime.h + C:/libs/oldpip/pip_0.4.0_r5/pitimer.cpp + C:/libs/oldpip/pip_0.4.0_r5/pitimer.h + C:/libs/oldpip/pip_0.4.0_r5/pivariant.h + C:/libs/oldpip/pip_0.4.0_r5/pivector.h +CMakeFiles/pip.dir/piusb.cpp.obj + C:/libs/oldpip/pip_0.4.0_r5/pibitarray.h + C:/libs/oldpip/pip_0.4.0_r5/pibytearray.h + C:/libs/oldpip/pip_0.4.0_r5/pichar.h + C:/libs/oldpip/pip_0.4.0_r5/picollection.h + C:/libs/oldpip/pip_0.4.0_r5/piconfig.h + C:/libs/oldpip/pip_0.4.0_r5/picontainers.h + C:/libs/oldpip/pip_0.4.0_r5/pideque.h + C:/libs/oldpip/pip_0.4.0_r5/pifile.h + C:/libs/oldpip/pip_0.4.0_r5/piincludes.h + C:/libs/oldpip/pip_0.4.0_r5/piiodevice.h + C:/libs/oldpip/pip_0.4.0_r5/pimap.h + C:/libs/oldpip/pip_0.4.0_r5/pimath.h + C:/libs/oldpip/pip_0.4.0_r5/pimonitor.h + C:/libs/oldpip/pip_0.4.0_r5/pimutex.h + C:/libs/oldpip/pip_0.4.0_r5/piobject.h + C:/libs/oldpip/pip_0.4.0_r5/pip_export.h + C:/libs/oldpip/pip_0.4.0_r5/piqueue.h + C:/libs/oldpip/pip_0.4.0_r5/pistack.h + C:/libs/oldpip/pip_0.4.0_r5/pistring.h + C:/libs/oldpip/pip_0.4.0_r5/pithread.h + C:/libs/oldpip/pip_0.4.0_r5/pitime.h + C:/libs/oldpip/pip_0.4.0_r5/pitimer.h + C:/libs/oldpip/pip_0.4.0_r5/piusb.cpp + C:/libs/oldpip/pip_0.4.0_r5/piusb.h + C:/libs/oldpip/pip_0.4.0_r5/pivariant.h + C:/libs/oldpip/pip_0.4.0_r5/pivector.h +CMakeFiles/pip.dir/pivariant.cpp.obj + C:/libs/oldpip/pip_0.4.0_r5/pibitarray.h + C:/libs/oldpip/pip_0.4.0_r5/pibytearray.h + C:/libs/oldpip/pip_0.4.0_r5/pichar.h + C:/libs/oldpip/pip_0.4.0_r5/picontainers.h + C:/libs/oldpip/pip_0.4.0_r5/pideque.h + C:/libs/oldpip/pip_0.4.0_r5/piincludes.h + C:/libs/oldpip/pip_0.4.0_r5/pimap.h + C:/libs/oldpip/pip_0.4.0_r5/pimath.h + C:/libs/oldpip/pip_0.4.0_r5/pimonitor.h + C:/libs/oldpip/pip_0.4.0_r5/pip_export.h + C:/libs/oldpip/pip_0.4.0_r5/piqueue.h + C:/libs/oldpip/pip_0.4.0_r5/pistack.h + C:/libs/oldpip/pip_0.4.0_r5/pistring.h + C:/libs/oldpip/pip_0.4.0_r5/pitime.h + C:/libs/oldpip/pip_0.4.0_r5/pivariant.cpp + C:/libs/oldpip/pip_0.4.0_r5/pivariant.h + C:/libs/oldpip/pip_0.4.0_r5/pivector.h diff --git a/_oldpip/pip_0.4.0_r5/CMakeFiles/pip.dir/depend.make b/_oldpip/pip_0.4.0_r5/CMakeFiles/pip.dir/depend.make new file mode 100644 index 0000000..cf98df7 --- /dev/null +++ b/_oldpip/pip_0.4.0_r5/CMakeFiles/pip.dir/depend.make @@ -0,0 +1,912 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "MinGW Makefiles" Generator, CMake Version 2.8 + +CMakeFiles/pip.dir/pibinarylog.cpp.obj: pibinarylog.cpp +CMakeFiles/pip.dir/pibinarylog.cpp.obj: pibinarylog.h +CMakeFiles/pip.dir/pibinarylog.cpp.obj: pibitarray.h +CMakeFiles/pip.dir/pibinarylog.cpp.obj: pibytearray.h +CMakeFiles/pip.dir/pibinarylog.cpp.obj: pichar.h +CMakeFiles/pip.dir/pibinarylog.cpp.obj: picollection.h +CMakeFiles/pip.dir/pibinarylog.cpp.obj: picontainers.h +CMakeFiles/pip.dir/pibinarylog.cpp.obj: pideque.h +CMakeFiles/pip.dir/pibinarylog.cpp.obj: pifile.h +CMakeFiles/pip.dir/pibinarylog.cpp.obj: piincludes.h +CMakeFiles/pip.dir/pibinarylog.cpp.obj: piiodevice.h +CMakeFiles/pip.dir/pibinarylog.cpp.obj: pimap.h +CMakeFiles/pip.dir/pibinarylog.cpp.obj: pimath.h +CMakeFiles/pip.dir/pibinarylog.cpp.obj: pimonitor.h +CMakeFiles/pip.dir/pibinarylog.cpp.obj: pimutex.h +CMakeFiles/pip.dir/pibinarylog.cpp.obj: piobject.h +CMakeFiles/pip.dir/pibinarylog.cpp.obj: pip_export.h +CMakeFiles/pip.dir/pibinarylog.cpp.obj: piqueue.h +CMakeFiles/pip.dir/pibinarylog.cpp.obj: pistack.h +CMakeFiles/pip.dir/pibinarylog.cpp.obj: pistring.h +CMakeFiles/pip.dir/pibinarylog.cpp.obj: pithread.h +CMakeFiles/pip.dir/pibinarylog.cpp.obj: pitime.h +CMakeFiles/pip.dir/pibinarylog.cpp.obj: pitimer.h +CMakeFiles/pip.dir/pibinarylog.cpp.obj: pivariant.h +CMakeFiles/pip.dir/pibinarylog.cpp.obj: pivector.h + +CMakeFiles/pip.dir/pibytearray.cpp.obj: pibitarray.h +CMakeFiles/pip.dir/pibytearray.cpp.obj: pibytearray.cpp +CMakeFiles/pip.dir/pibytearray.cpp.obj: pibytearray.h +CMakeFiles/pip.dir/pibytearray.cpp.obj: pichar.h +CMakeFiles/pip.dir/pibytearray.cpp.obj: picontainers.h +CMakeFiles/pip.dir/pibytearray.cpp.obj: pideque.h +CMakeFiles/pip.dir/pibytearray.cpp.obj: piincludes.h +CMakeFiles/pip.dir/pibytearray.cpp.obj: pimap.h +CMakeFiles/pip.dir/pibytearray.cpp.obj: pimonitor.h +CMakeFiles/pip.dir/pibytearray.cpp.obj: pip_export.h +CMakeFiles/pip.dir/pibytearray.cpp.obj: piqueue.h +CMakeFiles/pip.dir/pibytearray.cpp.obj: pistack.h +CMakeFiles/pip.dir/pibytearray.cpp.obj: pistring.h +CMakeFiles/pip.dir/pibytearray.cpp.obj: pivector.h + +CMakeFiles/pip.dir/picli.cpp.obj: pibitarray.h +CMakeFiles/pip.dir/picli.cpp.obj: pibytearray.h +CMakeFiles/pip.dir/picli.cpp.obj: pichar.h +CMakeFiles/pip.dir/picli.cpp.obj: picli.cpp +CMakeFiles/pip.dir/picli.cpp.obj: picli.h +CMakeFiles/pip.dir/picli.cpp.obj: picontainers.h +CMakeFiles/pip.dir/picli.cpp.obj: pideque.h +CMakeFiles/pip.dir/picli.cpp.obj: piincludes.h +CMakeFiles/pip.dir/picli.cpp.obj: pimap.h +CMakeFiles/pip.dir/picli.cpp.obj: pimath.h +CMakeFiles/pip.dir/picli.cpp.obj: pimonitor.h +CMakeFiles/pip.dir/picli.cpp.obj: pimutex.h +CMakeFiles/pip.dir/picli.cpp.obj: piobject.h +CMakeFiles/pip.dir/picli.cpp.obj: pip_export.h +CMakeFiles/pip.dir/picli.cpp.obj: piqueue.h +CMakeFiles/pip.dir/picli.cpp.obj: pistack.h +CMakeFiles/pip.dir/picli.cpp.obj: pistring.h +CMakeFiles/pip.dir/picli.cpp.obj: pitime.h +CMakeFiles/pip.dir/picli.cpp.obj: pivariant.h +CMakeFiles/pip.dir/picli.cpp.obj: pivector.h + +CMakeFiles/pip.dir/picodec.cpp.obj: pibitarray.h +CMakeFiles/pip.dir/picodec.cpp.obj: pibytearray.h +CMakeFiles/pip.dir/picodec.cpp.obj: pichar.h +CMakeFiles/pip.dir/picodec.cpp.obj: picodec.cpp +CMakeFiles/pip.dir/picodec.cpp.obj: picodec.h +CMakeFiles/pip.dir/picodec.cpp.obj: picollection.h +CMakeFiles/pip.dir/picodec.cpp.obj: picontainers.h +CMakeFiles/pip.dir/picodec.cpp.obj: pideque.h +CMakeFiles/pip.dir/picodec.cpp.obj: pifile.h +CMakeFiles/pip.dir/picodec.cpp.obj: piincludes.h +CMakeFiles/pip.dir/picodec.cpp.obj: piiodevice.h +CMakeFiles/pip.dir/picodec.cpp.obj: pimap.h +CMakeFiles/pip.dir/picodec.cpp.obj: pimath.h +CMakeFiles/pip.dir/picodec.cpp.obj: pimonitor.h +CMakeFiles/pip.dir/picodec.cpp.obj: pimutex.h +CMakeFiles/pip.dir/picodec.cpp.obj: piobject.h +CMakeFiles/pip.dir/picodec.cpp.obj: pip_export.h +CMakeFiles/pip.dir/picodec.cpp.obj: piprocess.h +CMakeFiles/pip.dir/picodec.cpp.obj: piqueue.h +CMakeFiles/pip.dir/picodec.cpp.obj: pistack.h +CMakeFiles/pip.dir/picodec.cpp.obj: pistring.h +CMakeFiles/pip.dir/picodec.cpp.obj: pithread.h +CMakeFiles/pip.dir/picodec.cpp.obj: pitime.h +CMakeFiles/pip.dir/picodec.cpp.obj: pitimer.h +CMakeFiles/pip.dir/picodec.cpp.obj: pivariant.h +CMakeFiles/pip.dir/picodec.cpp.obj: pivector.h + +CMakeFiles/pip.dir/picodeinfo.cpp.obj: pibitarray.h +CMakeFiles/pip.dir/picodeinfo.cpp.obj: pibytearray.h +CMakeFiles/pip.dir/picodeinfo.cpp.obj: pichar.h +CMakeFiles/pip.dir/picodeinfo.cpp.obj: picodeinfo.cpp +CMakeFiles/pip.dir/picodeinfo.cpp.obj: picodeinfo.h +CMakeFiles/pip.dir/picodeinfo.cpp.obj: picontainers.h +CMakeFiles/pip.dir/picodeinfo.cpp.obj: pideque.h +CMakeFiles/pip.dir/picodeinfo.cpp.obj: piincludes.h +CMakeFiles/pip.dir/picodeinfo.cpp.obj: pimap.h +CMakeFiles/pip.dir/picodeinfo.cpp.obj: pimonitor.h +CMakeFiles/pip.dir/picodeinfo.cpp.obj: pip_export.h +CMakeFiles/pip.dir/picodeinfo.cpp.obj: piqueue.h +CMakeFiles/pip.dir/picodeinfo.cpp.obj: pistack.h +CMakeFiles/pip.dir/picodeinfo.cpp.obj: pistring.h +CMakeFiles/pip.dir/picodeinfo.cpp.obj: pivector.h + +CMakeFiles/pip.dir/picodeparser.cpp.obj: pibitarray.h +CMakeFiles/pip.dir/picodeparser.cpp.obj: pibytearray.h +CMakeFiles/pip.dir/picodeparser.cpp.obj: pichar.h +CMakeFiles/pip.dir/picodeparser.cpp.obj: picodeparser.cpp +CMakeFiles/pip.dir/picodeparser.cpp.obj: picodeparser.h +CMakeFiles/pip.dir/picodeparser.cpp.obj: picollection.h +CMakeFiles/pip.dir/picodeparser.cpp.obj: picontainers.h +CMakeFiles/pip.dir/picodeparser.cpp.obj: pideque.h +CMakeFiles/pip.dir/picodeparser.cpp.obj: pievaluator.h +CMakeFiles/pip.dir/picodeparser.cpp.obj: pifile.h +CMakeFiles/pip.dir/picodeparser.cpp.obj: piincludes.h +CMakeFiles/pip.dir/picodeparser.cpp.obj: piiodevice.h +CMakeFiles/pip.dir/picodeparser.cpp.obj: pimap.h +CMakeFiles/pip.dir/picodeparser.cpp.obj: pimath.h +CMakeFiles/pip.dir/picodeparser.cpp.obj: pimonitor.h +CMakeFiles/pip.dir/picodeparser.cpp.obj: pimutex.h +CMakeFiles/pip.dir/picodeparser.cpp.obj: piobject.h +CMakeFiles/pip.dir/picodeparser.cpp.obj: pip_export.h +CMakeFiles/pip.dir/picodeparser.cpp.obj: piqueue.h +CMakeFiles/pip.dir/picodeparser.cpp.obj: pistack.h +CMakeFiles/pip.dir/picodeparser.cpp.obj: pistring.h +CMakeFiles/pip.dir/picodeparser.cpp.obj: pithread.h +CMakeFiles/pip.dir/picodeparser.cpp.obj: pitime.h +CMakeFiles/pip.dir/picodeparser.cpp.obj: pitimer.h +CMakeFiles/pip.dir/picodeparser.cpp.obj: pivariant.h +CMakeFiles/pip.dir/picodeparser.cpp.obj: pivector.h + +CMakeFiles/pip.dir/picollection.cpp.obj: pibitarray.h +CMakeFiles/pip.dir/picollection.cpp.obj: pibytearray.h +CMakeFiles/pip.dir/picollection.cpp.obj: pichar.h +CMakeFiles/pip.dir/picollection.cpp.obj: picollection.cpp +CMakeFiles/pip.dir/picollection.cpp.obj: picollection.h +CMakeFiles/pip.dir/picollection.cpp.obj: picontainers.h +CMakeFiles/pip.dir/picollection.cpp.obj: pideque.h +CMakeFiles/pip.dir/picollection.cpp.obj: piincludes.h +CMakeFiles/pip.dir/picollection.cpp.obj: pimap.h +CMakeFiles/pip.dir/picollection.cpp.obj: pimath.h +CMakeFiles/pip.dir/picollection.cpp.obj: pimonitor.h +CMakeFiles/pip.dir/picollection.cpp.obj: pimutex.h +CMakeFiles/pip.dir/picollection.cpp.obj: piobject.h +CMakeFiles/pip.dir/picollection.cpp.obj: pip_export.h +CMakeFiles/pip.dir/picollection.cpp.obj: piqueue.h +CMakeFiles/pip.dir/picollection.cpp.obj: pistack.h +CMakeFiles/pip.dir/picollection.cpp.obj: pistring.h +CMakeFiles/pip.dir/picollection.cpp.obj: pitime.h +CMakeFiles/pip.dir/picollection.cpp.obj: pivariant.h +CMakeFiles/pip.dir/picollection.cpp.obj: pivector.h + +CMakeFiles/pip.dir/piconfig.cpp.obj: pibitarray.h +CMakeFiles/pip.dir/piconfig.cpp.obj: pibytearray.h +CMakeFiles/pip.dir/piconfig.cpp.obj: pichar.h +CMakeFiles/pip.dir/piconfig.cpp.obj: picollection.h +CMakeFiles/pip.dir/piconfig.cpp.obj: piconfig.cpp +CMakeFiles/pip.dir/piconfig.cpp.obj: piconfig.h +CMakeFiles/pip.dir/piconfig.cpp.obj: picontainers.h +CMakeFiles/pip.dir/piconfig.cpp.obj: pideque.h +CMakeFiles/pip.dir/piconfig.cpp.obj: pifile.h +CMakeFiles/pip.dir/piconfig.cpp.obj: piincludes.h +CMakeFiles/pip.dir/piconfig.cpp.obj: piiodevice.h +CMakeFiles/pip.dir/piconfig.cpp.obj: pimap.h +CMakeFiles/pip.dir/piconfig.cpp.obj: pimath.h +CMakeFiles/pip.dir/piconfig.cpp.obj: pimonitor.h +CMakeFiles/pip.dir/piconfig.cpp.obj: pimutex.h +CMakeFiles/pip.dir/piconfig.cpp.obj: piobject.h +CMakeFiles/pip.dir/piconfig.cpp.obj: pip_export.h +CMakeFiles/pip.dir/piconfig.cpp.obj: piqueue.h +CMakeFiles/pip.dir/piconfig.cpp.obj: pistack.h +CMakeFiles/pip.dir/piconfig.cpp.obj: pistring.h +CMakeFiles/pip.dir/piconfig.cpp.obj: pithread.h +CMakeFiles/pip.dir/piconfig.cpp.obj: pitime.h +CMakeFiles/pip.dir/piconfig.cpp.obj: pitimer.h +CMakeFiles/pip.dir/piconfig.cpp.obj: pivariant.h +CMakeFiles/pip.dir/piconfig.cpp.obj: pivector.h + +CMakeFiles/pip.dir/piconnection.cpp.obj: pibitarray.h +CMakeFiles/pip.dir/piconnection.cpp.obj: pibytearray.h +CMakeFiles/pip.dir/piconnection.cpp.obj: pichar.h +CMakeFiles/pip.dir/piconnection.cpp.obj: picollection.h +CMakeFiles/pip.dir/piconnection.cpp.obj: piconfig.h +CMakeFiles/pip.dir/piconnection.cpp.obj: piconnection.cpp +CMakeFiles/pip.dir/piconnection.cpp.obj: piconnection.h +CMakeFiles/pip.dir/piconnection.cpp.obj: picontainers.h +CMakeFiles/pip.dir/piconnection.cpp.obj: pideque.h +CMakeFiles/pip.dir/piconnection.cpp.obj: pifile.h +CMakeFiles/pip.dir/piconnection.cpp.obj: piincludes.h +CMakeFiles/pip.dir/piconnection.cpp.obj: piiodevice.h +CMakeFiles/pip.dir/piconnection.cpp.obj: pimap.h +CMakeFiles/pip.dir/piconnection.cpp.obj: pimath.h +CMakeFiles/pip.dir/piconnection.cpp.obj: pimonitor.h +CMakeFiles/pip.dir/piconnection.cpp.obj: pimutex.h +CMakeFiles/pip.dir/piconnection.cpp.obj: piobject.h +CMakeFiles/pip.dir/piconnection.cpp.obj: pip_export.h +CMakeFiles/pip.dir/piconnection.cpp.obj: pipacketextractor.h +CMakeFiles/pip.dir/piconnection.cpp.obj: piqueue.h +CMakeFiles/pip.dir/piconnection.cpp.obj: pistack.h +CMakeFiles/pip.dir/piconnection.cpp.obj: pistring.h +CMakeFiles/pip.dir/piconnection.cpp.obj: pithread.h +CMakeFiles/pip.dir/piconnection.cpp.obj: pitime.h +CMakeFiles/pip.dir/piconnection.cpp.obj: pitimer.h +CMakeFiles/pip.dir/piconnection.cpp.obj: pivariant.h +CMakeFiles/pip.dir/piconnection.cpp.obj: pivector.h + +CMakeFiles/pip.dir/piconsole.cpp.obj: pibitarray.h +CMakeFiles/pip.dir/piconsole.cpp.obj: pibytearray.h +CMakeFiles/pip.dir/piconsole.cpp.obj: pichar.h +CMakeFiles/pip.dir/piconsole.cpp.obj: picollection.h +CMakeFiles/pip.dir/piconsole.cpp.obj: piconfig.h +CMakeFiles/pip.dir/piconsole.cpp.obj: piconsole.cpp +CMakeFiles/pip.dir/piconsole.cpp.obj: piconsole.h +CMakeFiles/pip.dir/piconsole.cpp.obj: picontainers.h +CMakeFiles/pip.dir/piconsole.cpp.obj: pideque.h +CMakeFiles/pip.dir/piconsole.cpp.obj: pidiagnostics.h +CMakeFiles/pip.dir/piconsole.cpp.obj: piethernet.h +CMakeFiles/pip.dir/piconsole.cpp.obj: pifile.h +CMakeFiles/pip.dir/piconsole.cpp.obj: piincludes.h +CMakeFiles/pip.dir/piconsole.cpp.obj: piiodevice.h +CMakeFiles/pip.dir/piconsole.cpp.obj: pikbdlistener.h +CMakeFiles/pip.dir/piconsole.cpp.obj: pimap.h +CMakeFiles/pip.dir/piconsole.cpp.obj: pimath.h +CMakeFiles/pip.dir/piconsole.cpp.obj: pimonitor.h +CMakeFiles/pip.dir/piconsole.cpp.obj: pimutex.h +CMakeFiles/pip.dir/piconsole.cpp.obj: piobject.h +CMakeFiles/pip.dir/piconsole.cpp.obj: pip_export.h +CMakeFiles/pip.dir/piconsole.cpp.obj: pipacketextractor.h +CMakeFiles/pip.dir/piconsole.cpp.obj: pipeer.h +CMakeFiles/pip.dir/piconsole.cpp.obj: piprocess.h +CMakeFiles/pip.dir/piconsole.cpp.obj: piprotocol.h +CMakeFiles/pip.dir/piconsole.cpp.obj: piqueue.h +CMakeFiles/pip.dir/piconsole.cpp.obj: piserial.h +CMakeFiles/pip.dir/piconsole.cpp.obj: pistack.h +CMakeFiles/pip.dir/piconsole.cpp.obj: pistring.h +CMakeFiles/pip.dir/piconsole.cpp.obj: pisystemmonitor.h +CMakeFiles/pip.dir/piconsole.cpp.obj: pithread.h +CMakeFiles/pip.dir/piconsole.cpp.obj: pitime.h +CMakeFiles/pip.dir/piconsole.cpp.obj: pitimer.h +CMakeFiles/pip.dir/piconsole.cpp.obj: pivariant.h +CMakeFiles/pip.dir/piconsole.cpp.obj: pivector.h + +CMakeFiles/pip.dir/picontainers.cpp.obj: picontainers.cpp +CMakeFiles/pip.dir/picontainers.cpp.obj: piincludes.h +CMakeFiles/pip.dir/picontainers.cpp.obj: pimonitor.h +CMakeFiles/pip.dir/picontainers.cpp.obj: pip_export.h +CMakeFiles/pip.dir/picontainers.cpp.obj: pivector.h + +CMakeFiles/pip.dir/pidevicepool.cpp.obj: pibitarray.h +CMakeFiles/pip.dir/pidevicepool.cpp.obj: pibytearray.h +CMakeFiles/pip.dir/pidevicepool.cpp.obj: pichar.h +CMakeFiles/pip.dir/pidevicepool.cpp.obj: picollection.h +CMakeFiles/pip.dir/pidevicepool.cpp.obj: picontainers.h +CMakeFiles/pip.dir/pidevicepool.cpp.obj: pideque.h +CMakeFiles/pip.dir/pidevicepool.cpp.obj: pidevicepool.cpp +CMakeFiles/pip.dir/pidevicepool.cpp.obj: pidevicepool.h +CMakeFiles/pip.dir/pidevicepool.cpp.obj: piincludes.h +CMakeFiles/pip.dir/pidevicepool.cpp.obj: piiodevice.h +CMakeFiles/pip.dir/pidevicepool.cpp.obj: pimap.h +CMakeFiles/pip.dir/pidevicepool.cpp.obj: pimath.h +CMakeFiles/pip.dir/pidevicepool.cpp.obj: pimonitor.h +CMakeFiles/pip.dir/pidevicepool.cpp.obj: pimutex.h +CMakeFiles/pip.dir/pidevicepool.cpp.obj: piobject.h +CMakeFiles/pip.dir/pidevicepool.cpp.obj: pip_export.h +CMakeFiles/pip.dir/pidevicepool.cpp.obj: piqueue.h +CMakeFiles/pip.dir/pidevicepool.cpp.obj: pistack.h +CMakeFiles/pip.dir/pidevicepool.cpp.obj: pistring.h +CMakeFiles/pip.dir/pidevicepool.cpp.obj: pithread.h +CMakeFiles/pip.dir/pidevicepool.cpp.obj: pitime.h +CMakeFiles/pip.dir/pidevicepool.cpp.obj: pitimer.h +CMakeFiles/pip.dir/pidevicepool.cpp.obj: pivariant.h +CMakeFiles/pip.dir/pidevicepool.cpp.obj: pivector.h + +CMakeFiles/pip.dir/pidiagnostics.cpp.obj: pibitarray.h +CMakeFiles/pip.dir/pidiagnostics.cpp.obj: pibytearray.h +CMakeFiles/pip.dir/pidiagnostics.cpp.obj: pichar.h +CMakeFiles/pip.dir/pidiagnostics.cpp.obj: picontainers.h +CMakeFiles/pip.dir/pidiagnostics.cpp.obj: pideque.h +CMakeFiles/pip.dir/pidiagnostics.cpp.obj: pidiagnostics.cpp +CMakeFiles/pip.dir/pidiagnostics.cpp.obj: pidiagnostics.h +CMakeFiles/pip.dir/pidiagnostics.cpp.obj: piincludes.h +CMakeFiles/pip.dir/pidiagnostics.cpp.obj: pimap.h +CMakeFiles/pip.dir/pidiagnostics.cpp.obj: pimath.h +CMakeFiles/pip.dir/pidiagnostics.cpp.obj: pimonitor.h +CMakeFiles/pip.dir/pidiagnostics.cpp.obj: pimutex.h +CMakeFiles/pip.dir/pidiagnostics.cpp.obj: piobject.h +CMakeFiles/pip.dir/pidiagnostics.cpp.obj: pip_export.h +CMakeFiles/pip.dir/pidiagnostics.cpp.obj: piqueue.h +CMakeFiles/pip.dir/pidiagnostics.cpp.obj: pistack.h +CMakeFiles/pip.dir/pidiagnostics.cpp.obj: pistring.h +CMakeFiles/pip.dir/pidiagnostics.cpp.obj: pithread.h +CMakeFiles/pip.dir/pidiagnostics.cpp.obj: pitime.h +CMakeFiles/pip.dir/pidiagnostics.cpp.obj: pitimer.h +CMakeFiles/pip.dir/pidiagnostics.cpp.obj: pivariant.h +CMakeFiles/pip.dir/pidiagnostics.cpp.obj: pivector.h + +CMakeFiles/pip.dir/pidir.cpp.obj: pibitarray.h +CMakeFiles/pip.dir/pidir.cpp.obj: pibytearray.h +CMakeFiles/pip.dir/pidir.cpp.obj: pichar.h +CMakeFiles/pip.dir/pidir.cpp.obj: picollection.h +CMakeFiles/pip.dir/pidir.cpp.obj: picontainers.h +CMakeFiles/pip.dir/pidir.cpp.obj: pideque.h +CMakeFiles/pip.dir/pidir.cpp.obj: pidir.cpp +CMakeFiles/pip.dir/pidir.cpp.obj: pidir.h +CMakeFiles/pip.dir/pidir.cpp.obj: pifile.h +CMakeFiles/pip.dir/pidir.cpp.obj: piincludes.h +CMakeFiles/pip.dir/pidir.cpp.obj: piiodevice.h +CMakeFiles/pip.dir/pidir.cpp.obj: pimap.h +CMakeFiles/pip.dir/pidir.cpp.obj: pimath.h +CMakeFiles/pip.dir/pidir.cpp.obj: pimonitor.h +CMakeFiles/pip.dir/pidir.cpp.obj: pimutex.h +CMakeFiles/pip.dir/pidir.cpp.obj: piobject.h +CMakeFiles/pip.dir/pidir.cpp.obj: pip_export.h +CMakeFiles/pip.dir/pidir.cpp.obj: piqueue.h +CMakeFiles/pip.dir/pidir.cpp.obj: pistack.h +CMakeFiles/pip.dir/pidir.cpp.obj: pistring.h +CMakeFiles/pip.dir/pidir.cpp.obj: pithread.h +CMakeFiles/pip.dir/pidir.cpp.obj: pitime.h +CMakeFiles/pip.dir/pidir.cpp.obj: pitimer.h +CMakeFiles/pip.dir/pidir.cpp.obj: pivariant.h +CMakeFiles/pip.dir/pidir.cpp.obj: pivector.h + +CMakeFiles/pip.dir/piethernet.cpp.obj: pibitarray.h +CMakeFiles/pip.dir/piethernet.cpp.obj: pibytearray.h +CMakeFiles/pip.dir/piethernet.cpp.obj: pichar.h +CMakeFiles/pip.dir/piethernet.cpp.obj: picollection.h +CMakeFiles/pip.dir/piethernet.cpp.obj: piconfig.h +CMakeFiles/pip.dir/piethernet.cpp.obj: picontainers.h +CMakeFiles/pip.dir/piethernet.cpp.obj: pideque.h +CMakeFiles/pip.dir/piethernet.cpp.obj: piethernet.cpp +CMakeFiles/pip.dir/piethernet.cpp.obj: piethernet.h +CMakeFiles/pip.dir/piethernet.cpp.obj: pifile.h +CMakeFiles/pip.dir/piethernet.cpp.obj: piincludes.h +CMakeFiles/pip.dir/piethernet.cpp.obj: piiodevice.h +CMakeFiles/pip.dir/piethernet.cpp.obj: pimap.h +CMakeFiles/pip.dir/piethernet.cpp.obj: pimath.h +CMakeFiles/pip.dir/piethernet.cpp.obj: pimonitor.h +CMakeFiles/pip.dir/piethernet.cpp.obj: pimutex.h +CMakeFiles/pip.dir/piethernet.cpp.obj: piobject.h +CMakeFiles/pip.dir/piethernet.cpp.obj: pip_export.h +CMakeFiles/pip.dir/piethernet.cpp.obj: piprocess.h +CMakeFiles/pip.dir/piethernet.cpp.obj: piqueue.h +CMakeFiles/pip.dir/piethernet.cpp.obj: pistack.h +CMakeFiles/pip.dir/piethernet.cpp.obj: pistring.h +CMakeFiles/pip.dir/piethernet.cpp.obj: pithread.h +CMakeFiles/pip.dir/piethernet.cpp.obj: pitime.h +CMakeFiles/pip.dir/piethernet.cpp.obj: pitimer.h +CMakeFiles/pip.dir/piethernet.cpp.obj: pivariant.h +CMakeFiles/pip.dir/piethernet.cpp.obj: pivector.h + +CMakeFiles/pip.dir/pievaluator.cpp.obj: pibitarray.h +CMakeFiles/pip.dir/pievaluator.cpp.obj: pibytearray.h +CMakeFiles/pip.dir/pievaluator.cpp.obj: pichar.h +CMakeFiles/pip.dir/pievaluator.cpp.obj: picontainers.h +CMakeFiles/pip.dir/pievaluator.cpp.obj: pideque.h +CMakeFiles/pip.dir/pievaluator.cpp.obj: pievaluator.cpp +CMakeFiles/pip.dir/pievaluator.cpp.obj: pievaluator.h +CMakeFiles/pip.dir/pievaluator.cpp.obj: piincludes.h +CMakeFiles/pip.dir/pievaluator.cpp.obj: pimap.h +CMakeFiles/pip.dir/pievaluator.cpp.obj: pimath.h +CMakeFiles/pip.dir/pievaluator.cpp.obj: pimonitor.h +CMakeFiles/pip.dir/pievaluator.cpp.obj: pip_export.h +CMakeFiles/pip.dir/pievaluator.cpp.obj: piqueue.h +CMakeFiles/pip.dir/pievaluator.cpp.obj: pistack.h +CMakeFiles/pip.dir/pievaluator.cpp.obj: pistring.h +CMakeFiles/pip.dir/pievaluator.cpp.obj: pivector.h + +CMakeFiles/pip.dir/pifile.cpp.obj: pibitarray.h +CMakeFiles/pip.dir/pifile.cpp.obj: pibytearray.h +CMakeFiles/pip.dir/pifile.cpp.obj: pichar.h +CMakeFiles/pip.dir/pifile.cpp.obj: picollection.h +CMakeFiles/pip.dir/pifile.cpp.obj: picontainers.h +CMakeFiles/pip.dir/pifile.cpp.obj: pideque.h +CMakeFiles/pip.dir/pifile.cpp.obj: pifile.cpp +CMakeFiles/pip.dir/pifile.cpp.obj: pifile.h +CMakeFiles/pip.dir/pifile.cpp.obj: piincludes.h +CMakeFiles/pip.dir/pifile.cpp.obj: piiodevice.h +CMakeFiles/pip.dir/pifile.cpp.obj: pimap.h +CMakeFiles/pip.dir/pifile.cpp.obj: pimath.h +CMakeFiles/pip.dir/pifile.cpp.obj: pimonitor.h +CMakeFiles/pip.dir/pifile.cpp.obj: pimutex.h +CMakeFiles/pip.dir/pifile.cpp.obj: piobject.h +CMakeFiles/pip.dir/pifile.cpp.obj: pip_export.h +CMakeFiles/pip.dir/pifile.cpp.obj: piqueue.h +CMakeFiles/pip.dir/pifile.cpp.obj: pistack.h +CMakeFiles/pip.dir/pifile.cpp.obj: pistring.h +CMakeFiles/pip.dir/pifile.cpp.obj: pithread.h +CMakeFiles/pip.dir/pifile.cpp.obj: pitime.h +CMakeFiles/pip.dir/pifile.cpp.obj: pitimer.h +CMakeFiles/pip.dir/pifile.cpp.obj: pivariant.h +CMakeFiles/pip.dir/pifile.cpp.obj: pivector.h + +CMakeFiles/pip.dir/piincludes.cpp.obj: piconfig.h +CMakeFiles/pip.dir/piincludes.cpp.obj: piconsole.h +CMakeFiles/pip.dir/piincludes.cpp.obj: pidiagnostics.h +CMakeFiles/pip.dir/piincludes.cpp.obj: piethernet.h +CMakeFiles/pip.dir/piincludes.cpp.obj: piincludes.cpp +CMakeFiles/pip.dir/piincludes.cpp.obj: piincludes.h +CMakeFiles/pip.dir/piincludes.cpp.obj: pikbdlistener.h +CMakeFiles/pip.dir/piincludes.cpp.obj: pimonitor.h +CMakeFiles/pip.dir/piincludes.cpp.obj: pip_export.h +CMakeFiles/pip.dir/piincludes.cpp.obj: pipacketextractor.h +CMakeFiles/pip.dir/piincludes.cpp.obj: piprocess.h +CMakeFiles/pip.dir/piincludes.cpp.obj: piprotocol.h +CMakeFiles/pip.dir/piincludes.cpp.obj: pisystemmonitor.h +CMakeFiles/pip.dir/piincludes.cpp.obj: pithread.h +CMakeFiles/pip.dir/piincludes.cpp.obj: pibinarylog.h +CMakeFiles/pip.dir/piincludes.cpp.obj: pibitarray.h +CMakeFiles/pip.dir/piincludes.cpp.obj: pibytearray.h +CMakeFiles/pip.dir/piincludes.cpp.obj: pichar.h +CMakeFiles/pip.dir/piincludes.cpp.obj: picli.h +CMakeFiles/pip.dir/piincludes.cpp.obj: picodec.h +CMakeFiles/pip.dir/piincludes.cpp.obj: picollection.h +CMakeFiles/pip.dir/piincludes.cpp.obj: picontainers.h +CMakeFiles/pip.dir/piincludes.cpp.obj: picrc.h +CMakeFiles/pip.dir/piincludes.cpp.obj: pideque.h +CMakeFiles/pip.dir/piincludes.cpp.obj: pievaluator.h +CMakeFiles/pip.dir/piincludes.cpp.obj: pifile.h +CMakeFiles/pip.dir/piincludes.cpp.obj: piiodevice.h +CMakeFiles/pip.dir/piincludes.cpp.obj: pimap.h +CMakeFiles/pip.dir/piincludes.cpp.obj: pimath.h +CMakeFiles/pip.dir/piincludes.cpp.obj: pimultiprotocol.h +CMakeFiles/pip.dir/piincludes.cpp.obj: pimutex.h +CMakeFiles/pip.dir/piincludes.cpp.obj: piobject.h +CMakeFiles/pip.dir/piincludes.cpp.obj: pip.h +CMakeFiles/pip.dir/piincludes.cpp.obj: pipeer.h +CMakeFiles/pip.dir/piincludes.cpp.obj: piqueue.h +CMakeFiles/pip.dir/piincludes.cpp.obj: piserial.h +CMakeFiles/pip.dir/piincludes.cpp.obj: pisignals.h +CMakeFiles/pip.dir/piincludes.cpp.obj: pistack.h +CMakeFiles/pip.dir/piincludes.cpp.obj: pistatemachine.h +CMakeFiles/pip.dir/piincludes.cpp.obj: pistring.h +CMakeFiles/pip.dir/piincludes.cpp.obj: pitime.h +CMakeFiles/pip.dir/piincludes.cpp.obj: pitimer.h +CMakeFiles/pip.dir/piincludes.cpp.obj: piusb.h +CMakeFiles/pip.dir/piincludes.cpp.obj: pivariant.h +CMakeFiles/pip.dir/piincludes.cpp.obj: pivector.h + +CMakeFiles/pip.dir/piiodevice.cpp.obj: pibitarray.h +CMakeFiles/pip.dir/piiodevice.cpp.obj: pibytearray.h +CMakeFiles/pip.dir/piiodevice.cpp.obj: pichar.h +CMakeFiles/pip.dir/piiodevice.cpp.obj: picollection.h +CMakeFiles/pip.dir/piiodevice.cpp.obj: piconfig.h +CMakeFiles/pip.dir/piiodevice.cpp.obj: picontainers.h +CMakeFiles/pip.dir/piiodevice.cpp.obj: pideque.h +CMakeFiles/pip.dir/piiodevice.cpp.obj: pifile.h +CMakeFiles/pip.dir/piiodevice.cpp.obj: piincludes.h +CMakeFiles/pip.dir/piiodevice.cpp.obj: piiodevice.cpp +CMakeFiles/pip.dir/piiodevice.cpp.obj: piiodevice.h +CMakeFiles/pip.dir/piiodevice.cpp.obj: pimap.h +CMakeFiles/pip.dir/piiodevice.cpp.obj: pimath.h +CMakeFiles/pip.dir/piiodevice.cpp.obj: pimonitor.h +CMakeFiles/pip.dir/piiodevice.cpp.obj: pimutex.h +CMakeFiles/pip.dir/piiodevice.cpp.obj: piobject.h +CMakeFiles/pip.dir/piiodevice.cpp.obj: pip_export.h +CMakeFiles/pip.dir/piiodevice.cpp.obj: piqueue.h +CMakeFiles/pip.dir/piiodevice.cpp.obj: pistack.h +CMakeFiles/pip.dir/piiodevice.cpp.obj: pistring.h +CMakeFiles/pip.dir/piiodevice.cpp.obj: pithread.h +CMakeFiles/pip.dir/piiodevice.cpp.obj: pitime.h +CMakeFiles/pip.dir/piiodevice.cpp.obj: pitimer.h +CMakeFiles/pip.dir/piiodevice.cpp.obj: pivariant.h +CMakeFiles/pip.dir/piiodevice.cpp.obj: pivector.h + +CMakeFiles/pip.dir/pikbdlistener.cpp.obj: pibitarray.h +CMakeFiles/pip.dir/pikbdlistener.cpp.obj: pibytearray.h +CMakeFiles/pip.dir/pikbdlistener.cpp.obj: pichar.h +CMakeFiles/pip.dir/pikbdlistener.cpp.obj: picontainers.h +CMakeFiles/pip.dir/pikbdlistener.cpp.obj: pideque.h +CMakeFiles/pip.dir/pikbdlistener.cpp.obj: piincludes.h +CMakeFiles/pip.dir/pikbdlistener.cpp.obj: pikbdlistener.cpp +CMakeFiles/pip.dir/pikbdlistener.cpp.obj: pikbdlistener.h +CMakeFiles/pip.dir/pikbdlistener.cpp.obj: pimap.h +CMakeFiles/pip.dir/pikbdlistener.cpp.obj: pimath.h +CMakeFiles/pip.dir/pikbdlistener.cpp.obj: pimonitor.h +CMakeFiles/pip.dir/pikbdlistener.cpp.obj: pimutex.h +CMakeFiles/pip.dir/pikbdlistener.cpp.obj: piobject.h +CMakeFiles/pip.dir/pikbdlistener.cpp.obj: pip_export.h +CMakeFiles/pip.dir/pikbdlistener.cpp.obj: piqueue.h +CMakeFiles/pip.dir/pikbdlistener.cpp.obj: pistack.h +CMakeFiles/pip.dir/pikbdlistener.cpp.obj: pistring.h +CMakeFiles/pip.dir/pikbdlistener.cpp.obj: pithread.h +CMakeFiles/pip.dir/pikbdlistener.cpp.obj: pitime.h +CMakeFiles/pip.dir/pikbdlistener.cpp.obj: pivariant.h +CMakeFiles/pip.dir/pikbdlistener.cpp.obj: pivector.h + +CMakeFiles/pip.dir/pimath.cpp.obj: pibitarray.h +CMakeFiles/pip.dir/pimath.cpp.obj: pibytearray.h +CMakeFiles/pip.dir/pimath.cpp.obj: picontainers.h +CMakeFiles/pip.dir/pimath.cpp.obj: pideque.h +CMakeFiles/pip.dir/pimath.cpp.obj: piincludes.h +CMakeFiles/pip.dir/pimath.cpp.obj: pimap.h +CMakeFiles/pip.dir/pimath.cpp.obj: pimath.cpp +CMakeFiles/pip.dir/pimath.cpp.obj: pimath.h +CMakeFiles/pip.dir/pimath.cpp.obj: pimonitor.h +CMakeFiles/pip.dir/pimath.cpp.obj: pip_export.h +CMakeFiles/pip.dir/pimath.cpp.obj: piqueue.h +CMakeFiles/pip.dir/pimath.cpp.obj: pistack.h +CMakeFiles/pip.dir/pimath.cpp.obj: pivector.h + +CMakeFiles/pip.dir/pimonitor.cpp.obj: pimonitor.cpp +CMakeFiles/pip.dir/pimonitor.cpp.obj: pimonitor.h +CMakeFiles/pip.dir/pimonitor.cpp.obj: pip_export.h + +CMakeFiles/pip.dir/pimultiprotocol.cpp.obj: pibitarray.h +CMakeFiles/pip.dir/pimultiprotocol.cpp.obj: pibytearray.h +CMakeFiles/pip.dir/pimultiprotocol.cpp.obj: pichar.h +CMakeFiles/pip.dir/pimultiprotocol.cpp.obj: picollection.h +CMakeFiles/pip.dir/pimultiprotocol.cpp.obj: piconfig.h +CMakeFiles/pip.dir/pimultiprotocol.cpp.obj: picontainers.h +CMakeFiles/pip.dir/pimultiprotocol.cpp.obj: pideque.h +CMakeFiles/pip.dir/pimultiprotocol.cpp.obj: piethernet.h +CMakeFiles/pip.dir/pimultiprotocol.cpp.obj: pifile.h +CMakeFiles/pip.dir/pimultiprotocol.cpp.obj: piincludes.h +CMakeFiles/pip.dir/pimultiprotocol.cpp.obj: piiodevice.h +CMakeFiles/pip.dir/pimultiprotocol.cpp.obj: pimap.h +CMakeFiles/pip.dir/pimultiprotocol.cpp.obj: pimath.h +CMakeFiles/pip.dir/pimultiprotocol.cpp.obj: pimonitor.h +CMakeFiles/pip.dir/pimultiprotocol.cpp.obj: pimultiprotocol.cpp +CMakeFiles/pip.dir/pimultiprotocol.cpp.obj: pimultiprotocol.h +CMakeFiles/pip.dir/pimultiprotocol.cpp.obj: pimutex.h +CMakeFiles/pip.dir/pimultiprotocol.cpp.obj: piobject.h +CMakeFiles/pip.dir/pimultiprotocol.cpp.obj: pip_export.h +CMakeFiles/pip.dir/pimultiprotocol.cpp.obj: pipacketextractor.h +CMakeFiles/pip.dir/pimultiprotocol.cpp.obj: piprocess.h +CMakeFiles/pip.dir/pimultiprotocol.cpp.obj: piprotocol.h +CMakeFiles/pip.dir/pimultiprotocol.cpp.obj: piqueue.h +CMakeFiles/pip.dir/pimultiprotocol.cpp.obj: piserial.h +CMakeFiles/pip.dir/pimultiprotocol.cpp.obj: pistack.h +CMakeFiles/pip.dir/pimultiprotocol.cpp.obj: pistring.h +CMakeFiles/pip.dir/pimultiprotocol.cpp.obj: pithread.h +CMakeFiles/pip.dir/pimultiprotocol.cpp.obj: pitime.h +CMakeFiles/pip.dir/pimultiprotocol.cpp.obj: pitimer.h +CMakeFiles/pip.dir/pimultiprotocol.cpp.obj: pivariant.h +CMakeFiles/pip.dir/pimultiprotocol.cpp.obj: pivector.h + +CMakeFiles/pip.dir/pimutex.cpp.obj: piincludes.h +CMakeFiles/pip.dir/pimutex.cpp.obj: pimonitor.h +CMakeFiles/pip.dir/pimutex.cpp.obj: pimutex.cpp +CMakeFiles/pip.dir/pimutex.cpp.obj: pimutex.h +CMakeFiles/pip.dir/pimutex.cpp.obj: pip_export.h + +CMakeFiles/pip.dir/piobject.cpp.obj: pibitarray.h +CMakeFiles/pip.dir/piobject.cpp.obj: pibytearray.h +CMakeFiles/pip.dir/piobject.cpp.obj: pichar.h +CMakeFiles/pip.dir/piobject.cpp.obj: picontainers.h +CMakeFiles/pip.dir/piobject.cpp.obj: pideque.h +CMakeFiles/pip.dir/piobject.cpp.obj: piincludes.h +CMakeFiles/pip.dir/piobject.cpp.obj: pimap.h +CMakeFiles/pip.dir/piobject.cpp.obj: pimath.h +CMakeFiles/pip.dir/piobject.cpp.obj: pimonitor.h +CMakeFiles/pip.dir/piobject.cpp.obj: pimutex.h +CMakeFiles/pip.dir/piobject.cpp.obj: piobject.cpp +CMakeFiles/pip.dir/piobject.cpp.obj: piobject.h +CMakeFiles/pip.dir/piobject.cpp.obj: pip_export.h +CMakeFiles/pip.dir/piobject.cpp.obj: piqueue.h +CMakeFiles/pip.dir/piobject.cpp.obj: pistack.h +CMakeFiles/pip.dir/piobject.cpp.obj: pistring.h +CMakeFiles/pip.dir/piobject.cpp.obj: pitime.h +CMakeFiles/pip.dir/piobject.cpp.obj: pivariant.h +CMakeFiles/pip.dir/piobject.cpp.obj: pivector.h + +CMakeFiles/pip.dir/pipacketextractor.cpp.obj: pibitarray.h +CMakeFiles/pip.dir/pipacketextractor.cpp.obj: pibytearray.h +CMakeFiles/pip.dir/pipacketextractor.cpp.obj: pichar.h +CMakeFiles/pip.dir/pipacketextractor.cpp.obj: picollection.h +CMakeFiles/pip.dir/pipacketextractor.cpp.obj: picontainers.h +CMakeFiles/pip.dir/pipacketextractor.cpp.obj: pideque.h +CMakeFiles/pip.dir/pipacketextractor.cpp.obj: piincludes.h +CMakeFiles/pip.dir/pipacketextractor.cpp.obj: piiodevice.h +CMakeFiles/pip.dir/pipacketextractor.cpp.obj: pimap.h +CMakeFiles/pip.dir/pipacketextractor.cpp.obj: pimath.h +CMakeFiles/pip.dir/pipacketextractor.cpp.obj: pimonitor.h +CMakeFiles/pip.dir/pipacketextractor.cpp.obj: pimutex.h +CMakeFiles/pip.dir/pipacketextractor.cpp.obj: piobject.h +CMakeFiles/pip.dir/pipacketextractor.cpp.obj: pip_export.h +CMakeFiles/pip.dir/pipacketextractor.cpp.obj: pipacketextractor.cpp +CMakeFiles/pip.dir/pipacketextractor.cpp.obj: pipacketextractor.h +CMakeFiles/pip.dir/pipacketextractor.cpp.obj: piqueue.h +CMakeFiles/pip.dir/pipacketextractor.cpp.obj: pistack.h +CMakeFiles/pip.dir/pipacketextractor.cpp.obj: pistring.h +CMakeFiles/pip.dir/pipacketextractor.cpp.obj: pithread.h +CMakeFiles/pip.dir/pipacketextractor.cpp.obj: pitime.h +CMakeFiles/pip.dir/pipacketextractor.cpp.obj: pitimer.h +CMakeFiles/pip.dir/pipacketextractor.cpp.obj: pivariant.h +CMakeFiles/pip.dir/pipacketextractor.cpp.obj: pivector.h + +CMakeFiles/pip.dir/pipeer.cpp.obj: pibitarray.h +CMakeFiles/pip.dir/pipeer.cpp.obj: pibytearray.h +CMakeFiles/pip.dir/pipeer.cpp.obj: pichar.h +CMakeFiles/pip.dir/pipeer.cpp.obj: picollection.h +CMakeFiles/pip.dir/pipeer.cpp.obj: picontainers.h +CMakeFiles/pip.dir/pipeer.cpp.obj: pideque.h +CMakeFiles/pip.dir/pipeer.cpp.obj: pidiagnostics.h +CMakeFiles/pip.dir/pipeer.cpp.obj: piethernet.h +CMakeFiles/pip.dir/pipeer.cpp.obj: pifile.h +CMakeFiles/pip.dir/pipeer.cpp.obj: piincludes.h +CMakeFiles/pip.dir/pipeer.cpp.obj: piiodevice.h +CMakeFiles/pip.dir/pipeer.cpp.obj: pimap.h +CMakeFiles/pip.dir/pipeer.cpp.obj: pimath.h +CMakeFiles/pip.dir/pipeer.cpp.obj: pimonitor.h +CMakeFiles/pip.dir/pipeer.cpp.obj: pimutex.h +CMakeFiles/pip.dir/pipeer.cpp.obj: piobject.h +CMakeFiles/pip.dir/pipeer.cpp.obj: pip_export.h +CMakeFiles/pip.dir/pipeer.cpp.obj: pipeer.cpp +CMakeFiles/pip.dir/pipeer.cpp.obj: pipeer.h +CMakeFiles/pip.dir/pipeer.cpp.obj: piprocess.h +CMakeFiles/pip.dir/pipeer.cpp.obj: piqueue.h +CMakeFiles/pip.dir/pipeer.cpp.obj: pistack.h +CMakeFiles/pip.dir/pipeer.cpp.obj: pistring.h +CMakeFiles/pip.dir/pipeer.cpp.obj: pithread.h +CMakeFiles/pip.dir/pipeer.cpp.obj: pitime.h +CMakeFiles/pip.dir/pipeer.cpp.obj: pitimer.h +CMakeFiles/pip.dir/pipeer.cpp.obj: pivariant.h +CMakeFiles/pip.dir/pipeer.cpp.obj: pivector.h + +CMakeFiles/pip.dir/piprocess.cpp.obj: pibitarray.h +CMakeFiles/pip.dir/piprocess.cpp.obj: pibytearray.h +CMakeFiles/pip.dir/piprocess.cpp.obj: pichar.h +CMakeFiles/pip.dir/piprocess.cpp.obj: picollection.h +CMakeFiles/pip.dir/piprocess.cpp.obj: picontainers.h +CMakeFiles/pip.dir/piprocess.cpp.obj: pideque.h +CMakeFiles/pip.dir/piprocess.cpp.obj: pifile.h +CMakeFiles/pip.dir/piprocess.cpp.obj: piincludes.h +CMakeFiles/pip.dir/piprocess.cpp.obj: piiodevice.h +CMakeFiles/pip.dir/piprocess.cpp.obj: pimap.h +CMakeFiles/pip.dir/piprocess.cpp.obj: pimath.h +CMakeFiles/pip.dir/piprocess.cpp.obj: pimonitor.h +CMakeFiles/pip.dir/piprocess.cpp.obj: pimutex.h +CMakeFiles/pip.dir/piprocess.cpp.obj: piobject.h +CMakeFiles/pip.dir/piprocess.cpp.obj: pip_export.h +CMakeFiles/pip.dir/piprocess.cpp.obj: piprocess.cpp +CMakeFiles/pip.dir/piprocess.cpp.obj: piprocess.h +CMakeFiles/pip.dir/piprocess.cpp.obj: piqueue.h +CMakeFiles/pip.dir/piprocess.cpp.obj: pistack.h +CMakeFiles/pip.dir/piprocess.cpp.obj: pistring.h +CMakeFiles/pip.dir/piprocess.cpp.obj: pithread.h +CMakeFiles/pip.dir/piprocess.cpp.obj: pitime.h +CMakeFiles/pip.dir/piprocess.cpp.obj: pitimer.h +CMakeFiles/pip.dir/piprocess.cpp.obj: pivariant.h +CMakeFiles/pip.dir/piprocess.cpp.obj: pivector.h + +CMakeFiles/pip.dir/piprotocol.cpp.obj: pibitarray.h +CMakeFiles/pip.dir/piprotocol.cpp.obj: pibytearray.h +CMakeFiles/pip.dir/piprotocol.cpp.obj: pichar.h +CMakeFiles/pip.dir/piprotocol.cpp.obj: picollection.h +CMakeFiles/pip.dir/piprotocol.cpp.obj: piconfig.h +CMakeFiles/pip.dir/piprotocol.cpp.obj: picontainers.h +CMakeFiles/pip.dir/piprotocol.cpp.obj: pideque.h +CMakeFiles/pip.dir/piprotocol.cpp.obj: piethernet.h +CMakeFiles/pip.dir/piprotocol.cpp.obj: pifile.h +CMakeFiles/pip.dir/piprotocol.cpp.obj: piincludes.h +CMakeFiles/pip.dir/piprotocol.cpp.obj: piiodevice.h +CMakeFiles/pip.dir/piprotocol.cpp.obj: pimap.h +CMakeFiles/pip.dir/piprotocol.cpp.obj: pimath.h +CMakeFiles/pip.dir/piprotocol.cpp.obj: pimonitor.h +CMakeFiles/pip.dir/piprotocol.cpp.obj: pimutex.h +CMakeFiles/pip.dir/piprotocol.cpp.obj: piobject.h +CMakeFiles/pip.dir/piprotocol.cpp.obj: pip_export.h +CMakeFiles/pip.dir/piprotocol.cpp.obj: pipacketextractor.h +CMakeFiles/pip.dir/piprotocol.cpp.obj: piprocess.h +CMakeFiles/pip.dir/piprotocol.cpp.obj: piprotocol.cpp +CMakeFiles/pip.dir/piprotocol.cpp.obj: piprotocol.h +CMakeFiles/pip.dir/piprotocol.cpp.obj: piqueue.h +CMakeFiles/pip.dir/piprotocol.cpp.obj: piserial.h +CMakeFiles/pip.dir/piprotocol.cpp.obj: pistack.h +CMakeFiles/pip.dir/piprotocol.cpp.obj: pistring.h +CMakeFiles/pip.dir/piprotocol.cpp.obj: pithread.h +CMakeFiles/pip.dir/piprotocol.cpp.obj: pitime.h +CMakeFiles/pip.dir/piprotocol.cpp.obj: pitimer.h +CMakeFiles/pip.dir/piprotocol.cpp.obj: pivariant.h +CMakeFiles/pip.dir/piprotocol.cpp.obj: pivector.h + +CMakeFiles/pip.dir/piserial.cpp.obj: pibitarray.h +CMakeFiles/pip.dir/piserial.cpp.obj: pibytearray.h +CMakeFiles/pip.dir/piserial.cpp.obj: pichar.h +CMakeFiles/pip.dir/piserial.cpp.obj: picollection.h +CMakeFiles/pip.dir/piserial.cpp.obj: piconfig.h +CMakeFiles/pip.dir/piserial.cpp.obj: picontainers.h +CMakeFiles/pip.dir/piserial.cpp.obj: pideque.h +CMakeFiles/pip.dir/piserial.cpp.obj: pidir.h +CMakeFiles/pip.dir/piserial.cpp.obj: pifile.h +CMakeFiles/pip.dir/piserial.cpp.obj: piincludes.h +CMakeFiles/pip.dir/piserial.cpp.obj: piiodevice.h +CMakeFiles/pip.dir/piserial.cpp.obj: pimap.h +CMakeFiles/pip.dir/piserial.cpp.obj: pimath.h +CMakeFiles/pip.dir/piserial.cpp.obj: pimonitor.h +CMakeFiles/pip.dir/piserial.cpp.obj: pimutex.h +CMakeFiles/pip.dir/piserial.cpp.obj: piobject.h +CMakeFiles/pip.dir/piserial.cpp.obj: pip_export.h +CMakeFiles/pip.dir/piserial.cpp.obj: piqueue.h +CMakeFiles/pip.dir/piserial.cpp.obj: piserial.cpp +CMakeFiles/pip.dir/piserial.cpp.obj: piserial.h +CMakeFiles/pip.dir/piserial.cpp.obj: pistack.h +CMakeFiles/pip.dir/piserial.cpp.obj: pistring.h +CMakeFiles/pip.dir/piserial.cpp.obj: pithread.h +CMakeFiles/pip.dir/piserial.cpp.obj: pitime.h +CMakeFiles/pip.dir/piserial.cpp.obj: pitimer.h +CMakeFiles/pip.dir/piserial.cpp.obj: pivariant.h +CMakeFiles/pip.dir/piserial.cpp.obj: pivector.h + +CMakeFiles/pip.dir/pisignals.cpp.obj: picontainers.h +CMakeFiles/pip.dir/pisignals.cpp.obj: pideque.h +CMakeFiles/pip.dir/pisignals.cpp.obj: piincludes.h +CMakeFiles/pip.dir/pisignals.cpp.obj: pimap.h +CMakeFiles/pip.dir/pisignals.cpp.obj: pimonitor.h +CMakeFiles/pip.dir/pisignals.cpp.obj: pip_export.h +CMakeFiles/pip.dir/pisignals.cpp.obj: piqueue.h +CMakeFiles/pip.dir/pisignals.cpp.obj: pisignals.cpp +CMakeFiles/pip.dir/pisignals.cpp.obj: pisignals.h +CMakeFiles/pip.dir/pisignals.cpp.obj: pistack.h +CMakeFiles/pip.dir/pisignals.cpp.obj: pivector.h + +CMakeFiles/pip.dir/pistring.cpp.obj: pibitarray.h +CMakeFiles/pip.dir/pistring.cpp.obj: pibytearray.h +CMakeFiles/pip.dir/pistring.cpp.obj: pichar.h +CMakeFiles/pip.dir/pistring.cpp.obj: picontainers.h +CMakeFiles/pip.dir/pistring.cpp.obj: pideque.h +CMakeFiles/pip.dir/pistring.cpp.obj: piincludes.h +CMakeFiles/pip.dir/pistring.cpp.obj: pimap.h +CMakeFiles/pip.dir/pistring.cpp.obj: pimonitor.h +CMakeFiles/pip.dir/pistring.cpp.obj: pip_export.h +CMakeFiles/pip.dir/pistring.cpp.obj: piqueue.h +CMakeFiles/pip.dir/pistring.cpp.obj: pistack.h +CMakeFiles/pip.dir/pistring.cpp.obj: pistring.cpp +CMakeFiles/pip.dir/pistring.cpp.obj: pistring.h +CMakeFiles/pip.dir/pistring.cpp.obj: pivector.h + +CMakeFiles/pip.dir/pisystemmonitor.cpp.obj: pibitarray.h +CMakeFiles/pip.dir/pisystemmonitor.cpp.obj: pibytearray.h +CMakeFiles/pip.dir/pisystemmonitor.cpp.obj: pichar.h +CMakeFiles/pip.dir/pisystemmonitor.cpp.obj: picollection.h +CMakeFiles/pip.dir/pisystemmonitor.cpp.obj: picontainers.h +CMakeFiles/pip.dir/pisystemmonitor.cpp.obj: pideque.h +CMakeFiles/pip.dir/pisystemmonitor.cpp.obj: pifile.h +CMakeFiles/pip.dir/pisystemmonitor.cpp.obj: piincludes.h +CMakeFiles/pip.dir/pisystemmonitor.cpp.obj: piiodevice.h +CMakeFiles/pip.dir/pisystemmonitor.cpp.obj: pimap.h +CMakeFiles/pip.dir/pisystemmonitor.cpp.obj: pimath.h +CMakeFiles/pip.dir/pisystemmonitor.cpp.obj: pimonitor.h +CMakeFiles/pip.dir/pisystemmonitor.cpp.obj: pimutex.h +CMakeFiles/pip.dir/pisystemmonitor.cpp.obj: piobject.h +CMakeFiles/pip.dir/pisystemmonitor.cpp.obj: pip_export.h +CMakeFiles/pip.dir/pisystemmonitor.cpp.obj: piprocess.h +CMakeFiles/pip.dir/pisystemmonitor.cpp.obj: piqueue.h +CMakeFiles/pip.dir/pisystemmonitor.cpp.obj: pistack.h +CMakeFiles/pip.dir/pisystemmonitor.cpp.obj: pistring.h +CMakeFiles/pip.dir/pisystemmonitor.cpp.obj: pisystemmonitor.cpp +CMakeFiles/pip.dir/pisystemmonitor.cpp.obj: pisystemmonitor.h +CMakeFiles/pip.dir/pisystemmonitor.cpp.obj: pithread.h +CMakeFiles/pip.dir/pisystemmonitor.cpp.obj: pitime.h +CMakeFiles/pip.dir/pisystemmonitor.cpp.obj: pitimer.h +CMakeFiles/pip.dir/pisystemmonitor.cpp.obj: pivariant.h +CMakeFiles/pip.dir/pisystemmonitor.cpp.obj: pivector.h + +CMakeFiles/pip.dir/pisystemtests.cpp.obj: pibitarray.h +CMakeFiles/pip.dir/pisystemtests.cpp.obj: pibytearray.h +CMakeFiles/pip.dir/pisystemtests.cpp.obj: pichar.h +CMakeFiles/pip.dir/pisystemtests.cpp.obj: picollection.h +CMakeFiles/pip.dir/pisystemtests.cpp.obj: piconfig.h +CMakeFiles/pip.dir/pisystemtests.cpp.obj: picontainers.h +CMakeFiles/pip.dir/pisystemtests.cpp.obj: pideque.h +CMakeFiles/pip.dir/pisystemtests.cpp.obj: pifile.h +CMakeFiles/pip.dir/pisystemtests.cpp.obj: piincludes.h +CMakeFiles/pip.dir/pisystemtests.cpp.obj: piiodevice.h +CMakeFiles/pip.dir/pisystemtests.cpp.obj: pimap.h +CMakeFiles/pip.dir/pisystemtests.cpp.obj: pimath.h +CMakeFiles/pip.dir/pisystemtests.cpp.obj: pimonitor.h +CMakeFiles/pip.dir/pisystemtests.cpp.obj: pimutex.h +CMakeFiles/pip.dir/pisystemtests.cpp.obj: piobject.h +CMakeFiles/pip.dir/pisystemtests.cpp.obj: pip_export.h +CMakeFiles/pip.dir/pisystemtests.cpp.obj: piqueue.h +CMakeFiles/pip.dir/pisystemtests.cpp.obj: pistack.h +CMakeFiles/pip.dir/pisystemtests.cpp.obj: pistring.h +CMakeFiles/pip.dir/pisystemtests.cpp.obj: pisystemtests.cpp +CMakeFiles/pip.dir/pisystemtests.cpp.obj: pisystemtests.h +CMakeFiles/pip.dir/pisystemtests.cpp.obj: pithread.h +CMakeFiles/pip.dir/pisystemtests.cpp.obj: pitime.h +CMakeFiles/pip.dir/pisystemtests.cpp.obj: pitimer.h +CMakeFiles/pip.dir/pisystemtests.cpp.obj: pivariant.h +CMakeFiles/pip.dir/pisystemtests.cpp.obj: pivector.h + +CMakeFiles/pip.dir/pithread.cpp.obj: pibitarray.h +CMakeFiles/pip.dir/pithread.cpp.obj: pibytearray.h +CMakeFiles/pip.dir/pithread.cpp.obj: pichar.h +CMakeFiles/pip.dir/pithread.cpp.obj: picollection.h +CMakeFiles/pip.dir/pithread.cpp.obj: piconfig.h +CMakeFiles/pip.dir/pithread.cpp.obj: picontainers.h +CMakeFiles/pip.dir/pithread.cpp.obj: pideque.h +CMakeFiles/pip.dir/pithread.cpp.obj: pifile.h +CMakeFiles/pip.dir/pithread.cpp.obj: piincludes.h +CMakeFiles/pip.dir/pithread.cpp.obj: piiodevice.h +CMakeFiles/pip.dir/pithread.cpp.obj: pimap.h +CMakeFiles/pip.dir/pithread.cpp.obj: pimath.h +CMakeFiles/pip.dir/pithread.cpp.obj: pimonitor.h +CMakeFiles/pip.dir/pithread.cpp.obj: pimutex.h +CMakeFiles/pip.dir/pithread.cpp.obj: piobject.h +CMakeFiles/pip.dir/pithread.cpp.obj: pip_export.h +CMakeFiles/pip.dir/pithread.cpp.obj: piqueue.h +CMakeFiles/pip.dir/pithread.cpp.obj: pistack.h +CMakeFiles/pip.dir/pithread.cpp.obj: pistring.h +CMakeFiles/pip.dir/pithread.cpp.obj: pisystemtests.h +CMakeFiles/pip.dir/pithread.cpp.obj: pithread.cpp +CMakeFiles/pip.dir/pithread.cpp.obj: pithread.h +CMakeFiles/pip.dir/pithread.cpp.obj: pitime.h +CMakeFiles/pip.dir/pithread.cpp.obj: pitimer.h +CMakeFiles/pip.dir/pithread.cpp.obj: pivariant.h +CMakeFiles/pip.dir/pithread.cpp.obj: pivector.h + +CMakeFiles/pip.dir/pitime.cpp.obj: pibitarray.h +CMakeFiles/pip.dir/pitime.cpp.obj: pibytearray.h +CMakeFiles/pip.dir/pitime.cpp.obj: pichar.h +CMakeFiles/pip.dir/pitime.cpp.obj: picollection.h +CMakeFiles/pip.dir/pitime.cpp.obj: piconfig.h +CMakeFiles/pip.dir/pitime.cpp.obj: picontainers.h +CMakeFiles/pip.dir/pitime.cpp.obj: pideque.h +CMakeFiles/pip.dir/pitime.cpp.obj: pifile.h +CMakeFiles/pip.dir/pitime.cpp.obj: piincludes.h +CMakeFiles/pip.dir/pitime.cpp.obj: piiodevice.h +CMakeFiles/pip.dir/pitime.cpp.obj: pimap.h +CMakeFiles/pip.dir/pitime.cpp.obj: pimath.h +CMakeFiles/pip.dir/pitime.cpp.obj: pimonitor.h +CMakeFiles/pip.dir/pitime.cpp.obj: pimutex.h +CMakeFiles/pip.dir/pitime.cpp.obj: piobject.h +CMakeFiles/pip.dir/pitime.cpp.obj: pip_export.h +CMakeFiles/pip.dir/pitime.cpp.obj: piqueue.h +CMakeFiles/pip.dir/pitime.cpp.obj: pistack.h +CMakeFiles/pip.dir/pitime.cpp.obj: pistring.h +CMakeFiles/pip.dir/pitime.cpp.obj: pisystemtests.h +CMakeFiles/pip.dir/pitime.cpp.obj: pithread.h +CMakeFiles/pip.dir/pitime.cpp.obj: pitime.cpp +CMakeFiles/pip.dir/pitime.cpp.obj: pitime.h +CMakeFiles/pip.dir/pitime.cpp.obj: pitimer.h +CMakeFiles/pip.dir/pitime.cpp.obj: pivariant.h +CMakeFiles/pip.dir/pitime.cpp.obj: pivector.h + +CMakeFiles/pip.dir/pitimer.cpp.obj: pibitarray.h +CMakeFiles/pip.dir/pitimer.cpp.obj: pibytearray.h +CMakeFiles/pip.dir/pitimer.cpp.obj: pichar.h +CMakeFiles/pip.dir/pitimer.cpp.obj: picollection.h +CMakeFiles/pip.dir/pitimer.cpp.obj: piconfig.h +CMakeFiles/pip.dir/pitimer.cpp.obj: picontainers.h +CMakeFiles/pip.dir/pitimer.cpp.obj: pideque.h +CMakeFiles/pip.dir/pitimer.cpp.obj: pifile.h +CMakeFiles/pip.dir/pitimer.cpp.obj: piincludes.h +CMakeFiles/pip.dir/pitimer.cpp.obj: piiodevice.h +CMakeFiles/pip.dir/pitimer.cpp.obj: pimap.h +CMakeFiles/pip.dir/pitimer.cpp.obj: pimath.h +CMakeFiles/pip.dir/pitimer.cpp.obj: pimonitor.h +CMakeFiles/pip.dir/pitimer.cpp.obj: pimutex.h +CMakeFiles/pip.dir/pitimer.cpp.obj: piobject.h +CMakeFiles/pip.dir/pitimer.cpp.obj: pip_export.h +CMakeFiles/pip.dir/pitimer.cpp.obj: piqueue.h +CMakeFiles/pip.dir/pitimer.cpp.obj: pistack.h +CMakeFiles/pip.dir/pitimer.cpp.obj: pistring.h +CMakeFiles/pip.dir/pitimer.cpp.obj: pisystemtests.h +CMakeFiles/pip.dir/pitimer.cpp.obj: pithread.h +CMakeFiles/pip.dir/pitimer.cpp.obj: pitime.h +CMakeFiles/pip.dir/pitimer.cpp.obj: pitimer.cpp +CMakeFiles/pip.dir/pitimer.cpp.obj: pitimer.h +CMakeFiles/pip.dir/pitimer.cpp.obj: pivariant.h +CMakeFiles/pip.dir/pitimer.cpp.obj: pivector.h + +CMakeFiles/pip.dir/piusb.cpp.obj: pibitarray.h +CMakeFiles/pip.dir/piusb.cpp.obj: pibytearray.h +CMakeFiles/pip.dir/piusb.cpp.obj: pichar.h +CMakeFiles/pip.dir/piusb.cpp.obj: picollection.h +CMakeFiles/pip.dir/piusb.cpp.obj: piconfig.h +CMakeFiles/pip.dir/piusb.cpp.obj: picontainers.h +CMakeFiles/pip.dir/piusb.cpp.obj: pideque.h +CMakeFiles/pip.dir/piusb.cpp.obj: pifile.h +CMakeFiles/pip.dir/piusb.cpp.obj: piincludes.h +CMakeFiles/pip.dir/piusb.cpp.obj: piiodevice.h +CMakeFiles/pip.dir/piusb.cpp.obj: pimap.h +CMakeFiles/pip.dir/piusb.cpp.obj: pimath.h +CMakeFiles/pip.dir/piusb.cpp.obj: pimonitor.h +CMakeFiles/pip.dir/piusb.cpp.obj: pimutex.h +CMakeFiles/pip.dir/piusb.cpp.obj: piobject.h +CMakeFiles/pip.dir/piusb.cpp.obj: pip_export.h +CMakeFiles/pip.dir/piusb.cpp.obj: piqueue.h +CMakeFiles/pip.dir/piusb.cpp.obj: pistack.h +CMakeFiles/pip.dir/piusb.cpp.obj: pistring.h +CMakeFiles/pip.dir/piusb.cpp.obj: pithread.h +CMakeFiles/pip.dir/piusb.cpp.obj: pitime.h +CMakeFiles/pip.dir/piusb.cpp.obj: pitimer.h +CMakeFiles/pip.dir/piusb.cpp.obj: piusb.cpp +CMakeFiles/pip.dir/piusb.cpp.obj: piusb.h +CMakeFiles/pip.dir/piusb.cpp.obj: pivariant.h +CMakeFiles/pip.dir/piusb.cpp.obj: pivector.h + +CMakeFiles/pip.dir/pivariant.cpp.obj: pibitarray.h +CMakeFiles/pip.dir/pivariant.cpp.obj: pibytearray.h +CMakeFiles/pip.dir/pivariant.cpp.obj: pichar.h +CMakeFiles/pip.dir/pivariant.cpp.obj: picontainers.h +CMakeFiles/pip.dir/pivariant.cpp.obj: pideque.h +CMakeFiles/pip.dir/pivariant.cpp.obj: piincludes.h +CMakeFiles/pip.dir/pivariant.cpp.obj: pimap.h +CMakeFiles/pip.dir/pivariant.cpp.obj: pimath.h +CMakeFiles/pip.dir/pivariant.cpp.obj: pimonitor.h +CMakeFiles/pip.dir/pivariant.cpp.obj: pip_export.h +CMakeFiles/pip.dir/pivariant.cpp.obj: piqueue.h +CMakeFiles/pip.dir/pivariant.cpp.obj: pistack.h +CMakeFiles/pip.dir/pivariant.cpp.obj: pistring.h +CMakeFiles/pip.dir/pivariant.cpp.obj: pitime.h +CMakeFiles/pip.dir/pivariant.cpp.obj: pivariant.cpp +CMakeFiles/pip.dir/pivariant.cpp.obj: pivariant.h +CMakeFiles/pip.dir/pivariant.cpp.obj: pivector.h + diff --git a/_oldpip/pip_0.4.0_r5/CMakeFiles/pip.dir/flags.make b/_oldpip/pip_0.4.0_r5/CMakeFiles/pip.dir/flags.make new file mode 100644 index 0000000..66dcdad --- /dev/null +++ b/_oldpip/pip_0.4.0_r5/CMakeFiles/pip.dir/flags.make @@ -0,0 +1,8 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "MinGW Makefiles" Generator, CMake Version 2.8 + +# compile CXX with C:/mingw/x32/bin/g++.exe +CXX_FLAGS = -O3 -DNDEBUG @CMakeFiles/pip.dir/includes_CXX.rsp -O2 + +CXX_DEFINES = -DPIP_MATH_J0 -DPIP_MATH_J1 -DPIP_MATH_JN -DPIP_MATH_Y0 -DPIP_MATH_Y1 -DPIP_MATH_YN -Dpip_EXPORTS + diff --git a/_oldpip/pip_0.4.0_r5/CMakeFiles/pip.dir/includes_CXX.rsp b/_oldpip/pip_0.4.0_r5/CMakeFiles/pip.dir/includes_CXX.rsp new file mode 100644 index 0000000..f7bb099 --- /dev/null +++ b/_oldpip/pip_0.4.0_r5/CMakeFiles/pip.dir/includes_CXX.rsp @@ -0,0 +1 @@ +-IC:/libs/oldpip/pip_0.4.0_r5 -IC:/libs/oldpip/pip_0.4.0_r5/. -IC:/Qt/4.8.6/include/ActiveQt -IC:/Qt/4.8.6/include/QtDesigner -IC:/Qt/4.8.6/include/QtDeclarative -IC:/Qt/4.8.6/include/QtScriptTools -IC:/Qt/4.8.6/include/QtDBus -IC:/Qt/4.8.6/include/QtXml -IC:/Qt/4.8.6/include/QtSql -IC:/Qt/4.8.6/include/QtOpenGL -IC:/Qt/4.8.6/include/QtMultimedia -IC:/Qt/4.8.6/include/QtNetwork -IC:/Qt/4.8.6/include/phonon -IC:/Qt/4.8.6/include/QtXmlPatterns -IC:/Qt/4.8.6/include/QtWebKit -IC:/Qt/4.8.6/include/QtHelp -IC:/Qt/4.8.6/include/QtUiTools -IC:/Qt/4.8.6/include/QtTest -IC:/Qt/4.8.6/include/QtScript -IC:/Qt/4.8.6/include/QtSvg -IC:/Qt/4.8.6/include/Qt3Support -IC:/Qt/4.8.6/include/QtGui -IC:/Qt/4.8.6/include/QtCore -IC:/Qt/4.8.6/mkspecs/default -IC:/Qt/4.8.6/include diff --git a/_oldpip/pip_0.4.0_r5/CMakeFiles/pip.dir/link.txt b/_oldpip/pip_0.4.0_r5/CMakeFiles/pip.dir/link.txt new file mode 100644 index 0000000..3183d66 --- /dev/null +++ b/_oldpip/pip_0.4.0_r5/CMakeFiles/pip.dir/link.txt @@ -0,0 +1,3 @@ +"C:\Program Files (x86)\CMake 2.8\bin\cmake.exe" -E remove -f CMakeFiles\pip.dir/objects.a +C:\mingw\x32\bin\ar.exe cr CMakeFiles\pip.dir/objects.a @CMakeFiles\pip.dir\objects1.rsp +C:\mingw\x32\bin\g++.exe -shared -o libpip.dll -Wl,--out-implib,libpip.dll.a -Wl,--major-image-version,0,--minor-image-version,0 -Wl,--whole-archive CMakeFiles\pip.dir/objects.a -Wl,--no-whole-archive -lws2_32 -lIphlpapi -lkernel32 -luser32 -lgdi32 -lwinspool -lshell32 -lole32 -loleaut32 -luuid -lcomdlg32 -ladvapi32 diff --git a/_oldpip/pip_0.4.0_r5/CMakeFiles/pip.dir/objects1.rsp b/_oldpip/pip_0.4.0_r5/CMakeFiles/pip.dir/objects1.rsp new file mode 100644 index 0000000..3a8a56d --- /dev/null +++ b/_oldpip/pip_0.4.0_r5/CMakeFiles/pip.dir/objects1.rsp @@ -0,0 +1 @@ +CMakeFiles/pip.dir/pibinarylog.cpp.obj CMakeFiles/pip.dir/pibytearray.cpp.obj CMakeFiles/pip.dir/picli.cpp.obj CMakeFiles/pip.dir/picodec.cpp.obj CMakeFiles/pip.dir/picodeinfo.cpp.obj CMakeFiles/pip.dir/picodeparser.cpp.obj CMakeFiles/pip.dir/picollection.cpp.obj CMakeFiles/pip.dir/piconfig.cpp.obj CMakeFiles/pip.dir/piconnection.cpp.obj CMakeFiles/pip.dir/piconsole.cpp.obj CMakeFiles/pip.dir/picontainers.cpp.obj CMakeFiles/pip.dir/pidevicepool.cpp.obj CMakeFiles/pip.dir/pidiagnostics.cpp.obj CMakeFiles/pip.dir/pidir.cpp.obj CMakeFiles/pip.dir/piethernet.cpp.obj CMakeFiles/pip.dir/pievaluator.cpp.obj CMakeFiles/pip.dir/pifile.cpp.obj CMakeFiles/pip.dir/piincludes.cpp.obj CMakeFiles/pip.dir/piiodevice.cpp.obj CMakeFiles/pip.dir/pikbdlistener.cpp.obj CMakeFiles/pip.dir/pimath.cpp.obj CMakeFiles/pip.dir/pimonitor.cpp.obj CMakeFiles/pip.dir/pimultiprotocol.cpp.obj CMakeFiles/pip.dir/pimutex.cpp.obj CMakeFiles/pip.dir/piobject.cpp.obj CMakeFiles/pip.dir/pipacketextractor.cpp.obj CMakeFiles/pip.dir/pipeer.cpp.obj CMakeFiles/pip.dir/piprocess.cpp.obj CMakeFiles/pip.dir/piprotocol.cpp.obj CMakeFiles/pip.dir/piserial.cpp.obj CMakeFiles/pip.dir/pisignals.cpp.obj CMakeFiles/pip.dir/pistring.cpp.obj CMakeFiles/pip.dir/pisystemmonitor.cpp.obj CMakeFiles/pip.dir/pisystemtests.cpp.obj CMakeFiles/pip.dir/pithread.cpp.obj CMakeFiles/pip.dir/pitime.cpp.obj CMakeFiles/pip.dir/pitimer.cpp.obj CMakeFiles/pip.dir/piusb.cpp.obj CMakeFiles/pip.dir/pivariant.cpp.obj pip_resource_win.o diff --git a/_oldpip/pip_0.4.0_r5/CMakeFiles/pip.dir/pibinarylog.cpp.obj b/_oldpip/pip_0.4.0_r5/CMakeFiles/pip.dir/pibinarylog.cpp.obj new file mode 100644 index 0000000..be91349 Binary files /dev/null and b/_oldpip/pip_0.4.0_r5/CMakeFiles/pip.dir/pibinarylog.cpp.obj differ diff --git a/_oldpip/pip_0.4.0_r5/CMakeFiles/pip.dir/pibytearray.cpp.obj b/_oldpip/pip_0.4.0_r5/CMakeFiles/pip.dir/pibytearray.cpp.obj new file mode 100644 index 0000000..2f97636 Binary files /dev/null and b/_oldpip/pip_0.4.0_r5/CMakeFiles/pip.dir/pibytearray.cpp.obj differ diff --git a/_oldpip/pip_0.4.0_r5/CMakeFiles/pip.dir/picli.cpp.obj b/_oldpip/pip_0.4.0_r5/CMakeFiles/pip.dir/picli.cpp.obj new file mode 100644 index 0000000..c8b6f17 Binary files /dev/null and b/_oldpip/pip_0.4.0_r5/CMakeFiles/pip.dir/picli.cpp.obj differ diff --git a/_oldpip/pip_0.4.0_r5/CMakeFiles/pip.dir/picodec.cpp.obj b/_oldpip/pip_0.4.0_r5/CMakeFiles/pip.dir/picodec.cpp.obj new file mode 100644 index 0000000..9ea79ea Binary files /dev/null and b/_oldpip/pip_0.4.0_r5/CMakeFiles/pip.dir/picodec.cpp.obj differ diff --git a/_oldpip/pip_0.4.0_r5/CMakeFiles/pip.dir/picodeinfo.cpp.obj b/_oldpip/pip_0.4.0_r5/CMakeFiles/pip.dir/picodeinfo.cpp.obj new file mode 100644 index 0000000..a13c0d8 Binary files /dev/null and b/_oldpip/pip_0.4.0_r5/CMakeFiles/pip.dir/picodeinfo.cpp.obj differ diff --git a/_oldpip/pip_0.4.0_r5/CMakeFiles/pip.dir/picodeparser.cpp.obj b/_oldpip/pip_0.4.0_r5/CMakeFiles/pip.dir/picodeparser.cpp.obj new file mode 100644 index 0000000..83992cc Binary files /dev/null and b/_oldpip/pip_0.4.0_r5/CMakeFiles/pip.dir/picodeparser.cpp.obj differ diff --git a/_oldpip/pip_0.4.0_r5/CMakeFiles/pip.dir/picollection.cpp.obj b/_oldpip/pip_0.4.0_r5/CMakeFiles/pip.dir/picollection.cpp.obj new file mode 100644 index 0000000..d9852d3 Binary files /dev/null and b/_oldpip/pip_0.4.0_r5/CMakeFiles/pip.dir/picollection.cpp.obj differ diff --git a/_oldpip/pip_0.4.0_r5/CMakeFiles/pip.dir/piconfig.cpp.obj b/_oldpip/pip_0.4.0_r5/CMakeFiles/pip.dir/piconfig.cpp.obj new file mode 100644 index 0000000..494e18a Binary files /dev/null and b/_oldpip/pip_0.4.0_r5/CMakeFiles/pip.dir/piconfig.cpp.obj differ diff --git a/_oldpip/pip_0.4.0_r5/CMakeFiles/pip.dir/piconnection.cpp.obj b/_oldpip/pip_0.4.0_r5/CMakeFiles/pip.dir/piconnection.cpp.obj new file mode 100644 index 0000000..233dfdd Binary files /dev/null and b/_oldpip/pip_0.4.0_r5/CMakeFiles/pip.dir/piconnection.cpp.obj differ diff --git a/_oldpip/pip_0.4.0_r5/CMakeFiles/pip.dir/piconsole.cpp.obj b/_oldpip/pip_0.4.0_r5/CMakeFiles/pip.dir/piconsole.cpp.obj new file mode 100644 index 0000000..7f5a426 Binary files /dev/null and b/_oldpip/pip_0.4.0_r5/CMakeFiles/pip.dir/piconsole.cpp.obj differ diff --git a/_oldpip/pip_0.4.0_r5/CMakeFiles/pip.dir/picontainers.cpp.obj b/_oldpip/pip_0.4.0_r5/CMakeFiles/pip.dir/picontainers.cpp.obj new file mode 100644 index 0000000..803c458 Binary files /dev/null and b/_oldpip/pip_0.4.0_r5/CMakeFiles/pip.dir/picontainers.cpp.obj differ diff --git a/_oldpip/pip_0.4.0_r5/CMakeFiles/pip.dir/pidevicepool.cpp.obj b/_oldpip/pip_0.4.0_r5/CMakeFiles/pip.dir/pidevicepool.cpp.obj new file mode 100644 index 0000000..32e065e Binary files /dev/null and b/_oldpip/pip_0.4.0_r5/CMakeFiles/pip.dir/pidevicepool.cpp.obj differ diff --git a/_oldpip/pip_0.4.0_r5/CMakeFiles/pip.dir/pidiagnostics.cpp.obj b/_oldpip/pip_0.4.0_r5/CMakeFiles/pip.dir/pidiagnostics.cpp.obj new file mode 100644 index 0000000..a822ba4 Binary files /dev/null and b/_oldpip/pip_0.4.0_r5/CMakeFiles/pip.dir/pidiagnostics.cpp.obj differ diff --git a/_oldpip/pip_0.4.0_r5/CMakeFiles/pip.dir/pidir.cpp.obj b/_oldpip/pip_0.4.0_r5/CMakeFiles/pip.dir/pidir.cpp.obj new file mode 100644 index 0000000..3c31eb4 Binary files /dev/null and b/_oldpip/pip_0.4.0_r5/CMakeFiles/pip.dir/pidir.cpp.obj differ diff --git a/_oldpip/pip_0.4.0_r5/CMakeFiles/pip.dir/piethernet.cpp.obj b/_oldpip/pip_0.4.0_r5/CMakeFiles/pip.dir/piethernet.cpp.obj new file mode 100644 index 0000000..b5e1789 Binary files /dev/null and b/_oldpip/pip_0.4.0_r5/CMakeFiles/pip.dir/piethernet.cpp.obj differ diff --git a/_oldpip/pip_0.4.0_r5/CMakeFiles/pip.dir/pievaluator.cpp.obj b/_oldpip/pip_0.4.0_r5/CMakeFiles/pip.dir/pievaluator.cpp.obj new file mode 100644 index 0000000..a60a0fb Binary files /dev/null and b/_oldpip/pip_0.4.0_r5/CMakeFiles/pip.dir/pievaluator.cpp.obj differ diff --git a/_oldpip/pip_0.4.0_r5/CMakeFiles/pip.dir/pifile.cpp.obj b/_oldpip/pip_0.4.0_r5/CMakeFiles/pip.dir/pifile.cpp.obj new file mode 100644 index 0000000..62c396c Binary files /dev/null and b/_oldpip/pip_0.4.0_r5/CMakeFiles/pip.dir/pifile.cpp.obj differ diff --git a/_oldpip/pip_0.4.0_r5/CMakeFiles/pip.dir/piincludes.cpp.obj b/_oldpip/pip_0.4.0_r5/CMakeFiles/pip.dir/piincludes.cpp.obj new file mode 100644 index 0000000..3d89c32 Binary files /dev/null and b/_oldpip/pip_0.4.0_r5/CMakeFiles/pip.dir/piincludes.cpp.obj differ diff --git a/_oldpip/pip_0.4.0_r5/CMakeFiles/pip.dir/piiodevice.cpp.obj b/_oldpip/pip_0.4.0_r5/CMakeFiles/pip.dir/piiodevice.cpp.obj new file mode 100644 index 0000000..cd8b5a6 Binary files /dev/null and b/_oldpip/pip_0.4.0_r5/CMakeFiles/pip.dir/piiodevice.cpp.obj differ diff --git a/_oldpip/pip_0.4.0_r5/CMakeFiles/pip.dir/pikbdlistener.cpp.obj b/_oldpip/pip_0.4.0_r5/CMakeFiles/pip.dir/pikbdlistener.cpp.obj new file mode 100644 index 0000000..2544b48 Binary files /dev/null and b/_oldpip/pip_0.4.0_r5/CMakeFiles/pip.dir/pikbdlistener.cpp.obj differ diff --git a/_oldpip/pip_0.4.0_r5/CMakeFiles/pip.dir/pimath.cpp.obj b/_oldpip/pip_0.4.0_r5/CMakeFiles/pip.dir/pimath.cpp.obj new file mode 100644 index 0000000..e06c6f9 Binary files /dev/null and b/_oldpip/pip_0.4.0_r5/CMakeFiles/pip.dir/pimath.cpp.obj differ diff --git a/_oldpip/pip_0.4.0_r5/CMakeFiles/pip.dir/pimonitor.cpp.obj b/_oldpip/pip_0.4.0_r5/CMakeFiles/pip.dir/pimonitor.cpp.obj new file mode 100644 index 0000000..55234ee Binary files /dev/null and b/_oldpip/pip_0.4.0_r5/CMakeFiles/pip.dir/pimonitor.cpp.obj differ diff --git a/_oldpip/pip_0.4.0_r5/CMakeFiles/pip.dir/pimultiprotocol.cpp.obj b/_oldpip/pip_0.4.0_r5/CMakeFiles/pip.dir/pimultiprotocol.cpp.obj new file mode 100644 index 0000000..3adf5d7 Binary files /dev/null and b/_oldpip/pip_0.4.0_r5/CMakeFiles/pip.dir/pimultiprotocol.cpp.obj differ diff --git a/_oldpip/pip_0.4.0_r5/CMakeFiles/pip.dir/pimutex.cpp.obj b/_oldpip/pip_0.4.0_r5/CMakeFiles/pip.dir/pimutex.cpp.obj new file mode 100644 index 0000000..b56fc98 Binary files /dev/null and b/_oldpip/pip_0.4.0_r5/CMakeFiles/pip.dir/pimutex.cpp.obj differ diff --git a/_oldpip/pip_0.4.0_r5/CMakeFiles/pip.dir/piobject.cpp.obj b/_oldpip/pip_0.4.0_r5/CMakeFiles/pip.dir/piobject.cpp.obj new file mode 100644 index 0000000..252eb95 Binary files /dev/null and b/_oldpip/pip_0.4.0_r5/CMakeFiles/pip.dir/piobject.cpp.obj differ diff --git a/_oldpip/pip_0.4.0_r5/CMakeFiles/pip.dir/pipacketextractor.cpp.obj b/_oldpip/pip_0.4.0_r5/CMakeFiles/pip.dir/pipacketextractor.cpp.obj new file mode 100644 index 0000000..553c298 Binary files /dev/null and b/_oldpip/pip_0.4.0_r5/CMakeFiles/pip.dir/pipacketextractor.cpp.obj differ diff --git a/_oldpip/pip_0.4.0_r5/CMakeFiles/pip.dir/pipeer.cpp.obj b/_oldpip/pip_0.4.0_r5/CMakeFiles/pip.dir/pipeer.cpp.obj new file mode 100644 index 0000000..c34097f Binary files /dev/null and b/_oldpip/pip_0.4.0_r5/CMakeFiles/pip.dir/pipeer.cpp.obj differ diff --git a/_oldpip/pip_0.4.0_r5/CMakeFiles/pip.dir/piprocess.cpp.obj b/_oldpip/pip_0.4.0_r5/CMakeFiles/pip.dir/piprocess.cpp.obj new file mode 100644 index 0000000..5220b83 Binary files /dev/null and b/_oldpip/pip_0.4.0_r5/CMakeFiles/pip.dir/piprocess.cpp.obj differ diff --git a/_oldpip/pip_0.4.0_r5/CMakeFiles/pip.dir/piprotocol.cpp.obj b/_oldpip/pip_0.4.0_r5/CMakeFiles/pip.dir/piprotocol.cpp.obj new file mode 100644 index 0000000..5310a0e Binary files /dev/null and b/_oldpip/pip_0.4.0_r5/CMakeFiles/pip.dir/piprotocol.cpp.obj differ diff --git a/_oldpip/pip_0.4.0_r5/CMakeFiles/pip.dir/piserial.cpp.obj b/_oldpip/pip_0.4.0_r5/CMakeFiles/pip.dir/piserial.cpp.obj new file mode 100644 index 0000000..55c42d5 Binary files /dev/null and b/_oldpip/pip_0.4.0_r5/CMakeFiles/pip.dir/piserial.cpp.obj differ diff --git a/_oldpip/pip_0.4.0_r5/CMakeFiles/pip.dir/pisignals.cpp.obj b/_oldpip/pip_0.4.0_r5/CMakeFiles/pip.dir/pisignals.cpp.obj new file mode 100644 index 0000000..2de0601 Binary files /dev/null and b/_oldpip/pip_0.4.0_r5/CMakeFiles/pip.dir/pisignals.cpp.obj differ diff --git a/_oldpip/pip_0.4.0_r5/CMakeFiles/pip.dir/pistring.cpp.obj b/_oldpip/pip_0.4.0_r5/CMakeFiles/pip.dir/pistring.cpp.obj new file mode 100644 index 0000000..61ca23e Binary files /dev/null and b/_oldpip/pip_0.4.0_r5/CMakeFiles/pip.dir/pistring.cpp.obj differ diff --git a/_oldpip/pip_0.4.0_r5/CMakeFiles/pip.dir/pisystemmonitor.cpp.obj b/_oldpip/pip_0.4.0_r5/CMakeFiles/pip.dir/pisystemmonitor.cpp.obj new file mode 100644 index 0000000..6409c24 Binary files /dev/null and b/_oldpip/pip_0.4.0_r5/CMakeFiles/pip.dir/pisystemmonitor.cpp.obj differ diff --git a/_oldpip/pip_0.4.0_r5/CMakeFiles/pip.dir/pisystemtests.cpp.obj b/_oldpip/pip_0.4.0_r5/CMakeFiles/pip.dir/pisystemtests.cpp.obj new file mode 100644 index 0000000..83f285f Binary files /dev/null and b/_oldpip/pip_0.4.0_r5/CMakeFiles/pip.dir/pisystemtests.cpp.obj differ diff --git a/_oldpip/pip_0.4.0_r5/CMakeFiles/pip.dir/pithread.cpp.obj b/_oldpip/pip_0.4.0_r5/CMakeFiles/pip.dir/pithread.cpp.obj new file mode 100644 index 0000000..80dffcd Binary files /dev/null and b/_oldpip/pip_0.4.0_r5/CMakeFiles/pip.dir/pithread.cpp.obj differ diff --git a/_oldpip/pip_0.4.0_r5/CMakeFiles/pip.dir/pitime.cpp.obj b/_oldpip/pip_0.4.0_r5/CMakeFiles/pip.dir/pitime.cpp.obj new file mode 100644 index 0000000..70fccdd Binary files /dev/null and b/_oldpip/pip_0.4.0_r5/CMakeFiles/pip.dir/pitime.cpp.obj differ diff --git a/_oldpip/pip_0.4.0_r5/CMakeFiles/pip.dir/pitimer.cpp.obj b/_oldpip/pip_0.4.0_r5/CMakeFiles/pip.dir/pitimer.cpp.obj new file mode 100644 index 0000000..e5385de Binary files /dev/null and b/_oldpip/pip_0.4.0_r5/CMakeFiles/pip.dir/pitimer.cpp.obj differ diff --git a/_oldpip/pip_0.4.0_r5/CMakeFiles/pip.dir/piusb.cpp.obj b/_oldpip/pip_0.4.0_r5/CMakeFiles/pip.dir/piusb.cpp.obj new file mode 100644 index 0000000..0cd8c08 Binary files /dev/null and b/_oldpip/pip_0.4.0_r5/CMakeFiles/pip.dir/piusb.cpp.obj differ diff --git a/_oldpip/pip_0.4.0_r5/CMakeFiles/pip.dir/pivariant.cpp.obj b/_oldpip/pip_0.4.0_r5/CMakeFiles/pip.dir/pivariant.cpp.obj new file mode 100644 index 0000000..30ab3e5 Binary files /dev/null and b/_oldpip/pip_0.4.0_r5/CMakeFiles/pip.dir/pivariant.cpp.obj differ diff --git a/_oldpip/pip_0.4.0_r5/CMakeFiles/pip.dir/progress.make b/_oldpip/pip_0.4.0_r5/CMakeFiles/pip.dir/progress.make new file mode 100644 index 0000000..46dc81f --- /dev/null +++ b/_oldpip/pip_0.4.0_r5/CMakeFiles/pip.dir/progress.make @@ -0,0 +1,40 @@ +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 +CMAKE_PROGRESS_12 = 12 +CMAKE_PROGRESS_13 = 13 +CMAKE_PROGRESS_14 = 14 +CMAKE_PROGRESS_15 = 15 +CMAKE_PROGRESS_16 = 16 +CMAKE_PROGRESS_17 = 17 +CMAKE_PROGRESS_18 = 18 +CMAKE_PROGRESS_19 = 19 +CMAKE_PROGRESS_20 = 20 +CMAKE_PROGRESS_21 = 21 +CMAKE_PROGRESS_22 = 22 +CMAKE_PROGRESS_23 = 23 +CMAKE_PROGRESS_24 = 24 +CMAKE_PROGRESS_25 = 25 +CMAKE_PROGRESS_26 = 26 +CMAKE_PROGRESS_27 = 27 +CMAKE_PROGRESS_28 = 28 +CMAKE_PROGRESS_29 = 29 +CMAKE_PROGRESS_30 = 30 +CMAKE_PROGRESS_31 = 31 +CMAKE_PROGRESS_32 = 32 +CMAKE_PROGRESS_33 = 33 +CMAKE_PROGRESS_34 = 34 +CMAKE_PROGRESS_35 = 35 +CMAKE_PROGRESS_36 = 36 +CMAKE_PROGRESS_37 = 37 +CMAKE_PROGRESS_38 = 38 +CMAKE_PROGRESS_39 = 39 + diff --git a/_oldpip/pip_0.4.0_r5/CMakeFiles/pip_test.dir/CXX.includecache b/_oldpip/pip_0.4.0_r5/CMakeFiles/pip_test.dir/CXX.includecache new file mode 100644 index 0000000..f9c7dc5 --- /dev/null +++ b/_oldpip/pip_0.4.0_r5/CMakeFiles/pip_test.dir/CXX.includecache @@ -0,0 +1,794 @@ +#IncludeRegexLine: ^[ ]*#[ ]*(include|import)[ ]*[<"]([^">]+)([">]) + +#IncludeRegexScan: ^.*$ + +#IncludeRegexComplain: ^$ + +#IncludeRegexTransform: + +C:/Qt/4.8.6/include/QtCore/QList +qlist.h +C:/Qt/4.8.6/include/QtCore/qlist.h + +C:/Qt/4.8.6/include/QtCore/qalgorithms.h +../../src/corelib/tools/qalgorithms.h +C:/Qt/4.8.6/src/corelib/tools/qalgorithms.h + +C:/Qt/4.8.6/include/QtCore/qatomic.h +../../src/corelib/thread/qatomic.h +C:/Qt/4.8.6/src/corelib/thread/qatomic.h + +C:/Qt/4.8.6/include/QtCore/qatomic_alpha.h +../../src/corelib/arch/qatomic_alpha.h +C:/Qt/4.8.6/src/corelib/arch/qatomic_alpha.h + +C:/Qt/4.8.6/include/QtCore/qatomic_arch.h +../../src/corelib/arch/qatomic_arch.h +C:/Qt/4.8.6/src/corelib/arch/qatomic_arch.h + +C:/Qt/4.8.6/include/QtCore/qatomic_arm.h +../../src/corelib/arch/qatomic_arm.h +C:/Qt/4.8.6/src/corelib/arch/qatomic_arm.h + +C:/Qt/4.8.6/include/QtCore/qatomic_armv5.h +../../src/corelib/arch/qatomic_armv5.h +C:/Qt/4.8.6/src/corelib/arch/qatomic_armv5.h + +C:/Qt/4.8.6/include/QtCore/qatomic_armv6.h +../../src/corelib/arch/qatomic_armv6.h +C:/Qt/4.8.6/src/corelib/arch/qatomic_armv6.h + +C:/Qt/4.8.6/include/QtCore/qatomic_armv7.h +../../src/corelib/arch/qatomic_armv7.h +C:/Qt/4.8.6/src/corelib/arch/qatomic_armv7.h + +C:/Qt/4.8.6/include/QtCore/qatomic_avr32.h +../../src/corelib/arch/qatomic_avr32.h +C:/Qt/4.8.6/src/corelib/arch/qatomic_avr32.h + +C:/Qt/4.8.6/include/QtCore/qatomic_bfin.h +../../src/corelib/arch/qatomic_bfin.h +C:/Qt/4.8.6/src/corelib/arch/qatomic_bfin.h + +C:/Qt/4.8.6/include/QtCore/qatomic_bootstrap.h +../../src/corelib/arch/qatomic_bootstrap.h +C:/Qt/4.8.6/src/corelib/arch/qatomic_bootstrap.h + +C:/Qt/4.8.6/include/QtCore/qatomic_generic.h +../../src/corelib/arch/qatomic_generic.h +C:/Qt/4.8.6/src/corelib/arch/qatomic_generic.h + +C:/Qt/4.8.6/include/QtCore/qatomic_i386.h +../../src/corelib/arch/qatomic_i386.h +C:/Qt/4.8.6/src/corelib/arch/qatomic_i386.h + +C:/Qt/4.8.6/include/QtCore/qatomic_ia64.h +../../src/corelib/arch/qatomic_ia64.h +C:/Qt/4.8.6/src/corelib/arch/qatomic_ia64.h + +C:/Qt/4.8.6/include/QtCore/qatomic_integrity.h +../../src/corelib/arch/qatomic_integrity.h +C:/Qt/4.8.6/src/corelib/arch/qatomic_integrity.h + +C:/Qt/4.8.6/include/QtCore/qatomic_m68k.h +../../src/corelib/arch/qatomic_m68k.h +C:/Qt/4.8.6/src/corelib/arch/qatomic_m68k.h + +C:/Qt/4.8.6/include/QtCore/qatomic_macosx.h +../../src/corelib/arch/qatomic_macosx.h +C:/Qt/4.8.6/src/corelib/arch/qatomic_macosx.h + +C:/Qt/4.8.6/include/QtCore/qatomic_mips.h +../../src/corelib/arch/qatomic_mips.h +C:/Qt/4.8.6/src/corelib/arch/qatomic_mips.h + +C:/Qt/4.8.6/include/QtCore/qatomic_parisc.h +../../src/corelib/arch/qatomic_parisc.h +C:/Qt/4.8.6/src/corelib/arch/qatomic_parisc.h + +C:/Qt/4.8.6/include/QtCore/qatomic_powerpc.h +../../src/corelib/arch/qatomic_powerpc.h +C:/Qt/4.8.6/src/corelib/arch/qatomic_powerpc.h + +C:/Qt/4.8.6/include/QtCore/qatomic_s390.h +../../src/corelib/arch/qatomic_s390.h +C:/Qt/4.8.6/src/corelib/arch/qatomic_s390.h + +C:/Qt/4.8.6/include/QtCore/qatomic_sh.h +../../src/corelib/arch/qatomic_sh.h +C:/Qt/4.8.6/src/corelib/arch/qatomic_sh.h + +C:/Qt/4.8.6/include/QtCore/qatomic_sh4a.h +../../src/corelib/arch/qatomic_sh4a.h +C:/Qt/4.8.6/src/corelib/arch/qatomic_sh4a.h + +C:/Qt/4.8.6/include/QtCore/qatomic_sparc.h +../../src/corelib/arch/qatomic_sparc.h +C:/Qt/4.8.6/src/corelib/arch/qatomic_sparc.h + +C:/Qt/4.8.6/include/QtCore/qatomic_symbian.h +../../src/corelib/arch/qatomic_symbian.h +C:/Qt/4.8.6/src/corelib/arch/qatomic_symbian.h + +C:/Qt/4.8.6/include/QtCore/qatomic_vxworks.h +../../src/corelib/arch/qatomic_vxworks.h +C:/Qt/4.8.6/src/corelib/arch/qatomic_vxworks.h + +C:/Qt/4.8.6/include/QtCore/qatomic_windows.h +../../src/corelib/arch/qatomic_windows.h +C:/Qt/4.8.6/src/corelib/arch/qatomic_windows.h + +C:/Qt/4.8.6/include/QtCore/qatomic_windowsce.h +../../src/corelib/arch/qatomic_windowsce.h +C:/Qt/4.8.6/src/corelib/arch/qatomic_windowsce.h + +C:/Qt/4.8.6/include/QtCore/qatomic_x86_64.h +../../src/corelib/arch/qatomic_x86_64.h +C:/Qt/4.8.6/src/corelib/arch/qatomic_x86_64.h + +C:/Qt/4.8.6/include/QtCore/qbasicatomic.h +../../src/corelib/thread/qbasicatomic.h +C:/Qt/4.8.6/src/corelib/thread/qbasicatomic.h + +C:/Qt/4.8.6/include/QtCore/qconfig.h +../../src/corelib/global/qconfig.h +C:/Qt/4.8.6/src/corelib/global/qconfig.h + +C:/Qt/4.8.6/include/QtCore/qfeatures.h +../../src/corelib/global/qfeatures.h +C:/Qt/4.8.6/src/corelib/global/qfeatures.h + +C:/Qt/4.8.6/include/QtCore/qglobal.h +../../src/corelib/global/qglobal.h +C:/Qt/4.8.6/src/corelib/global/qglobal.h + +C:/Qt/4.8.6/include/QtCore/qiterator.h +../../src/corelib/tools/qiterator.h +C:/Qt/4.8.6/src/corelib/tools/qiterator.h + +C:/Qt/4.8.6/include/QtCore/qlist.h +../../src/corelib/tools/qlist.h +C:/Qt/4.8.6/src/corelib/tools/qlist.h + +C:/Qt/4.8.6/src/corelib/arch/qatomic_alpha.h + +C:/Qt/4.8.6/src/corelib/arch/qatomic_arch.h +QtCore/qglobal.h +C:/Qt/4.8.6/src/corelib/arch/QtCore/qglobal.h +QtCore/qatomic_integrity.h +C:/Qt/4.8.6/src/corelib/arch/QtCore/qatomic_integrity.h +QtCore/qatomic_vxworks.h +C:/Qt/4.8.6/src/corelib/arch/QtCore/qatomic_vxworks.h +QtCore/qatomic_alpha.h +C:/Qt/4.8.6/src/corelib/arch/QtCore/qatomic_alpha.h +QtCore/qatomic_arm.h +C:/Qt/4.8.6/src/corelib/arch/QtCore/qatomic_arm.h +QtCore/qatomic_armv6.h +C:/Qt/4.8.6/src/corelib/arch/QtCore/qatomic_armv6.h +QtCore/qatomic_avr32.h +C:/Qt/4.8.6/src/corelib/arch/QtCore/qatomic_avr32.h +QtCore/qatomic_bfin.h +C:/Qt/4.8.6/src/corelib/arch/QtCore/qatomic_bfin.h +QtCore/qatomic_generic.h +C:/Qt/4.8.6/src/corelib/arch/QtCore/qatomic_generic.h +QtCore/qatomic_i386.h +C:/Qt/4.8.6/src/corelib/arch/QtCore/qatomic_i386.h +QtCore/qatomic_ia64.h +C:/Qt/4.8.6/src/corelib/arch/QtCore/qatomic_ia64.h +QtCore/qatomic_m68k.h +C:/Qt/4.8.6/src/corelib/arch/QtCore/qatomic_m68k.h +QtCore/qatomic_macosx.h +C:/Qt/4.8.6/src/corelib/arch/QtCore/qatomic_macosx.h +QtCore/qatomic_mips.h +C:/Qt/4.8.6/src/corelib/arch/QtCore/qatomic_mips.h +QtCore/qatomic_parisc.h +C:/Qt/4.8.6/src/corelib/arch/QtCore/qatomic_parisc.h +QtCore/qatomic_powerpc.h +C:/Qt/4.8.6/src/corelib/arch/QtCore/qatomic_powerpc.h +QtCore/qatomic_s390.h +C:/Qt/4.8.6/src/corelib/arch/QtCore/qatomic_s390.h +QtCore/qatomic_sparc.h +C:/Qt/4.8.6/src/corelib/arch/QtCore/qatomic_sparc.h +QtCore/qatomic_windows.h +C:/Qt/4.8.6/src/corelib/arch/QtCore/qatomic_windows.h +QtCore/qatomic_windowsce.h +C:/Qt/4.8.6/src/corelib/arch/QtCore/qatomic_windowsce.h +QtCore/qatomic_x86_64.h +C:/Qt/4.8.6/src/corelib/arch/QtCore/qatomic_x86_64.h +QtCore/qatomic_symbian.h +C:/Qt/4.8.6/src/corelib/arch/QtCore/qatomic_symbian.h +QtCore/qatomic_sh.h +C:/Qt/4.8.6/src/corelib/arch/QtCore/qatomic_sh.h +QtCore/qatomic_sh4a.h +C:/Qt/4.8.6/src/corelib/arch/QtCore/qatomic_sh4a.h +QtCore/qatomic_generic.h +C:/Qt/4.8.6/src/corelib/arch/QtCore/qatomic_generic.h + +C:/Qt/4.8.6/src/corelib/arch/qatomic_arm.h +QtCore/qatomic_armv7.h +C:/Qt/4.8.6/src/corelib/arch/QtCore/qatomic_armv7.h +QtCore/qatomic_armv6.h +C:/Qt/4.8.6/src/corelib/arch/QtCore/qatomic_armv6.h +QtCore/qatomic_armv5.h +C:/Qt/4.8.6/src/corelib/arch/QtCore/qatomic_armv5.h + +C:/Qt/4.8.6/src/corelib/arch/qatomic_armv5.h + +C:/Qt/4.8.6/src/corelib/arch/qatomic_armv6.h + +C:/Qt/4.8.6/src/corelib/arch/qatomic_armv7.h +QtCore/qatomic_armv6.h +C:/Qt/4.8.6/src/corelib/arch/QtCore/qatomic_armv6.h + +C:/Qt/4.8.6/src/corelib/arch/qatomic_avr32.h + +C:/Qt/4.8.6/src/corelib/arch/qatomic_bfin.h +asm/fixed_code.h +- + +C:/Qt/4.8.6/src/corelib/arch/qatomic_bootstrap.h + +C:/Qt/4.8.6/src/corelib/arch/qatomic_generic.h + +C:/Qt/4.8.6/src/corelib/arch/qatomic_i386.h + +C:/Qt/4.8.6/src/corelib/arch/qatomic_ia64.h +ia64intrin.h +- +ia64/sys/inline.h +- + +C:/Qt/4.8.6/src/corelib/arch/qatomic_integrity.h +INTEGRITY.h +- + +C:/Qt/4.8.6/src/corelib/arch/qatomic_m68k.h + +C:/Qt/4.8.6/src/corelib/arch/qatomic_macosx.h +QtCore/qatomic_x86_64.h +- +QtCore/qatomic_i386.h +- +QtCore/qatomic_powerpc.h +- + +C:/Qt/4.8.6/src/corelib/arch/qatomic_mips.h + +C:/Qt/4.8.6/src/corelib/arch/qatomic_parisc.h + +C:/Qt/4.8.6/src/corelib/arch/qatomic_powerpc.h + +C:/Qt/4.8.6/src/corelib/arch/qatomic_s390.h + +C:/Qt/4.8.6/src/corelib/arch/qatomic_sh.h + +C:/Qt/4.8.6/src/corelib/arch/qatomic_sh4a.h + +C:/Qt/4.8.6/src/corelib/arch/qatomic_sparc.h + +C:/Qt/4.8.6/src/corelib/arch/qatomic_symbian.h +QtCore/qglobal.h +- +e32std.h +- + +C:/Qt/4.8.6/src/corelib/arch/qatomic_vxworks.h +QtCore/qatomic_powerpc.h +- +vxWorksCommon.h +- +taskLib.h +- + +C:/Qt/4.8.6/src/corelib/arch/qatomic_windows.h +QtCore/qatomic_i386.h +C:/Qt/4.8.6/src/corelib/arch/QtCore/qatomic_i386.h +QtCore/qatomic_x86_64.h +C:/Qt/4.8.6/src/corelib/arch/QtCore/qatomic_x86_64.h +winbase.h +- + +C:/Qt/4.8.6/src/corelib/arch/qatomic_windowsce.h +QtCore/qglobal.h +- +QtCore/qatomic_windows.h +C:/Qt/4.8.6/src/corelib/arch/QtCore/qatomic_windows.h + +C:/Qt/4.8.6/src/corelib/arch/qatomic_x86_64.h + +C:/Qt/4.8.6/src/corelib/global/qconfig.h + +C:/Qt/4.8.6/src/corelib/global/qfeatures.h + +C:/Qt/4.8.6/src/corelib/global/qglobal.h +stddef.h +- +QtCore/qconfig.h +- +algorithm +- +AvailabilityMacros.h +- +utility +- +e32def.h +- +QtCore/qfeatures.h +- + +C:/Qt/4.8.6/src/corelib/thread/qatomic.h +QtCore/qglobal.h +- +QtCore/qbasicatomic.h +- + +C:/Qt/4.8.6/src/corelib/thread/qbasicatomic.h +QtCore/qglobal.h +- +QtCore/qatomic_bootstrap.h +- +QtCore/qatomic_arch.h +- + +C:/Qt/4.8.6/src/corelib/tools/qalgorithms.h +QtCore/qglobal.h +- + +C:/Qt/4.8.6/src/corelib/tools/qiterator.h +QtCore/qglobal.h +- +new +- + +C:/Qt/4.8.6/src/corelib/tools/qlist.h +QtCore/qiterator.h +- +QtCore/qatomic.h +- +QtCore/qalgorithms.h +- +iterator +- +list +- +iterator +- +initializer_list +- +new +- +limits.h +- +string.h +- + +C:/libs/oldpip/pip_0.4.0_r5/main.cpp +pip.h +C:/libs/oldpip/pip_0.4.0_r5/pip.h +pivariant.h +C:/libs/oldpip/pip_0.4.0_r5/pivariant.h +picodeparser.h +C:/libs/oldpip/pip_0.4.0_r5/picodeparser.h +pidir.h +C:/libs/oldpip/pip_0.4.0_r5/pidir.h +piconnection.h +C:/libs/oldpip/pip_0.4.0_r5/piconnection.h +QList +- + +C:/libs/oldpip/pip_0.4.0_r5/pibinarylog.h +pifile.h +C:/libs/oldpip/pip_0.4.0_r5/pifile.h + +C:/libs/oldpip/pip_0.4.0_r5/pibitarray.h +picontainers.h +C:/libs/oldpip/pip_0.4.0_r5/picontainers.h + +C:/libs/oldpip/pip_0.4.0_r5/pibytearray.h +pibitarray.h +C:/libs/oldpip/pip_0.4.0_r5/pibitarray.h + +C:/libs/oldpip/pip_0.4.0_r5/pichar.h +pibytearray.h +C:/libs/oldpip/pip_0.4.0_r5/pibytearray.h + +C:/libs/oldpip/pip_0.4.0_r5/picli.h +piobject.h +C:/libs/oldpip/pip_0.4.0_r5/piobject.h + +C:/libs/oldpip/pip_0.4.0_r5/picodec.h +piprocess.h +C:/libs/oldpip/pip_0.4.0_r5/piprocess.h + +C:/libs/oldpip/pip_0.4.0_r5/picodeparser.h +pifile.h +C:/libs/oldpip/pip_0.4.0_r5/pifile.h +pievaluator.h +C:/libs/oldpip/pip_0.4.0_r5/pievaluator.h + +C:/libs/oldpip/pip_0.4.0_r5/picollection.h +piobject.h +C:/libs/oldpip/pip_0.4.0_r5/piobject.h + +C:/libs/oldpip/pip_0.4.0_r5/piconfig.h +pifile.h +C:/libs/oldpip/pip_0.4.0_r5/pifile.h + +C:/libs/oldpip/pip_0.4.0_r5/piconnection.h +pipacketextractor.h +C:/libs/oldpip/pip_0.4.0_r5/pipacketextractor.h + +C:/libs/oldpip/pip_0.4.0_r5/piconsole.h +pikbdlistener.h +C:/libs/oldpip/pip_0.4.0_r5/pikbdlistener.h +piprotocol.h +C:/libs/oldpip/pip_0.4.0_r5/piprotocol.h +pidiagnostics.h +C:/libs/oldpip/pip_0.4.0_r5/pidiagnostics.h +pisystemmonitor.h +C:/libs/oldpip/pip_0.4.0_r5/pisystemmonitor.h +sys/ioctl.h +- +fcntl.h +- + +C:/libs/oldpip/pip_0.4.0_r5/picontainers.h +piincludes.h +C:/libs/oldpip/pip_0.4.0_r5/piincludes.h +pivector.h +C:/libs/oldpip/pip_0.4.0_r5/pivector.h +pistack.h +C:/libs/oldpip/pip_0.4.0_r5/pistack.h +piqueue.h +C:/libs/oldpip/pip_0.4.0_r5/piqueue.h +pideque.h +C:/libs/oldpip/pip_0.4.0_r5/pideque.h +pimap.h +C:/libs/oldpip/pip_0.4.0_r5/pimap.h + +C:/libs/oldpip/pip_0.4.0_r5/picrc.h +pistring.h +C:/libs/oldpip/pip_0.4.0_r5/pistring.h + +C:/libs/oldpip/pip_0.4.0_r5/pideque.h +piincludes.h +C:/libs/oldpip/pip_0.4.0_r5/piincludes.h + +C:/libs/oldpip/pip_0.4.0_r5/pidiagnostics.h +pitimer.h +C:/libs/oldpip/pip_0.4.0_r5/pitimer.h + +C:/libs/oldpip/pip_0.4.0_r5/pidir.h +pifile.h +C:/libs/oldpip/pip_0.4.0_r5/pifile.h +sys/dirent.h +- +sys/dir.h +- +sys/stat.h +- + +C:/libs/oldpip/pip_0.4.0_r5/piethernet.h +pitimer.h +C:/libs/oldpip/pip_0.4.0_r5/pitimer.h +piiodevice.h +C:/libs/oldpip/pip_0.4.0_r5/piiodevice.h +piprocess.h +C:/libs/oldpip/pip_0.4.0_r5/piprocess.h + +C:/libs/oldpip/pip_0.4.0_r5/pievaluator.h +pistring.h +C:/libs/oldpip/pip_0.4.0_r5/pistring.h +pimath.h +C:/libs/oldpip/pip_0.4.0_r5/pimath.h + +C:/libs/oldpip/pip_0.4.0_r5/pifile.h +piiodevice.h +C:/libs/oldpip/pip_0.4.0_r5/piiodevice.h +cstdio +- + +C:/libs/oldpip/pip_0.4.0_r5/piincludes.h +pip_export.h +C:/libs/oldpip/pip_0.4.0_r5/pip_export.h +iostream +- +unistd.h +- +stdarg.h +- +stddef.h +- +cstdio +- +cstdlib +- +clocale +- +stdio.h +- +locale.h +- +stdlib.h +- +sys/stat.h +- +sys/types.h +- +errno.h +- +cctype +- +ctime +- +csignal +- +cassert +- +cmath +- +typeinfo +- +algorithm +- +string.h +- +string +- +vector +- +list +- +queue +- +deque +- +stack +- +set +- +map +- +conio.h +- +io.h +- +winsock2.h +- +windows.h +- +wincon.h +- +iphlpapi.h +- +netinet/in.h +- +arpa/inet.h +- +sys/socket.h +- +fcntl.h +- +sys/ioctl.h +- +net/if.h +- +pthread.h +- +ifaddrs.h +- +mach/mach_traps.h +- +mach/mach.h +- +mach/clock.h +- +crt_externs.h +- +pimonitor.h +C:/libs/oldpip/pip_0.4.0_r5/pimonitor.h + +C:/libs/oldpip/pip_0.4.0_r5/piiodevice.h +picollection.h +C:/libs/oldpip/pip_0.4.0_r5/picollection.h +pivariant.h +C:/libs/oldpip/pip_0.4.0_r5/pivariant.h +pitimer.h +C:/libs/oldpip/pip_0.4.0_r5/pitimer.h + +C:/libs/oldpip/pip_0.4.0_r5/pikbdlistener.h +pithread.h +C:/libs/oldpip/pip_0.4.0_r5/pithread.h +termios.h +- + +C:/libs/oldpip/pip_0.4.0_r5/pimap.h +pivector.h +C:/libs/oldpip/pip_0.4.0_r5/pivector.h +pideque.h +C:/libs/oldpip/pip_0.4.0_r5/pideque.h + +C:/libs/oldpip/pip_0.4.0_r5/pimath.h +pibytearray.h +C:/libs/oldpip/pip_0.4.0_r5/pibytearray.h +complex +- +cmath +- +complex.h +- +math.h +- + +C:/libs/oldpip/pip_0.4.0_r5/pimonitor.h +pip_export.h +C:/libs/oldpip/pip_0.4.0_r5/pip_export.h + +C:/libs/oldpip/pip_0.4.0_r5/pimultiprotocol.h +piprotocol.h +C:/libs/oldpip/pip_0.4.0_r5/piprotocol.h + +C:/libs/oldpip/pip_0.4.0_r5/pimutex.h +piincludes.h +C:/libs/oldpip/pip_0.4.0_r5/piincludes.h + +C:/libs/oldpip/pip_0.4.0_r5/piobject.h +pivariant.h +C:/libs/oldpip/pip_0.4.0_r5/pivariant.h +pimutex.h +C:/libs/oldpip/pip_0.4.0_r5/pimutex.h + +C:/libs/oldpip/pip_0.4.0_r5/pip.h +pitimer.h +C:/libs/oldpip/pip_0.4.0_r5/pitimer.h +pivariant.h +C:/libs/oldpip/pip_0.4.0_r5/pivariant.h +piconsole.h +C:/libs/oldpip/pip_0.4.0_r5/piconsole.h +picli.h +C:/libs/oldpip/pip_0.4.0_r5/picli.h +pievaluator.h +C:/libs/oldpip/pip_0.4.0_r5/pievaluator.h +pimultiprotocol.h +C:/libs/oldpip/pip_0.4.0_r5/pimultiprotocol.h +picodec.h +C:/libs/oldpip/pip_0.4.0_r5/picodec.h +pisignals.h +C:/libs/oldpip/pip_0.4.0_r5/pisignals.h +piobject.h +C:/libs/oldpip/pip_0.4.0_r5/piobject.h +pisystemmonitor.h +C:/libs/oldpip/pip_0.4.0_r5/pisystemmonitor.h +pipeer.h +C:/libs/oldpip/pip_0.4.0_r5/pipeer.h +picrc.h +C:/libs/oldpip/pip_0.4.0_r5/picrc.h +pistatemachine.h +C:/libs/oldpip/pip_0.4.0_r5/pistatemachine.h +picollection.h +C:/libs/oldpip/pip_0.4.0_r5/picollection.h +piserial.h +C:/libs/oldpip/pip_0.4.0_r5/piserial.h +pibinarylog.h +C:/libs/oldpip/pip_0.4.0_r5/pibinarylog.h +piusb.h +C:/libs/oldpip/pip_0.4.0_r5/piusb.h + +C:/libs/oldpip/pip_0.4.0_r5/pip_export.h + +C:/libs/oldpip/pip_0.4.0_r5/pipacketextractor.h +piiodevice.h +C:/libs/oldpip/pip_0.4.0_r5/piiodevice.h + +C:/libs/oldpip/pip_0.4.0_r5/pipeer.h +piethernet.h +C:/libs/oldpip/pip_0.4.0_r5/piethernet.h +pidiagnostics.h +C:/libs/oldpip/pip_0.4.0_r5/pidiagnostics.h + +C:/libs/oldpip/pip_0.4.0_r5/piprocess.h +pithread.h +C:/libs/oldpip/pip_0.4.0_r5/pithread.h +pifile.h +C:/libs/oldpip/pip_0.4.0_r5/pifile.h +sys/wait.h +- + +C:/libs/oldpip/pip_0.4.0_r5/piprotocol.h +piserial.h +C:/libs/oldpip/pip_0.4.0_r5/piserial.h +piethernet.h +C:/libs/oldpip/pip_0.4.0_r5/piethernet.h +pipacketextractor.h +C:/libs/oldpip/pip_0.4.0_r5/pipacketextractor.h +pitimer.h +C:/libs/oldpip/pip_0.4.0_r5/pitimer.h +piconfig.h +C:/libs/oldpip/pip_0.4.0_r5/piconfig.h +math.h +C:/libs/oldpip/pip_0.4.0_r5/math.h + +C:/libs/oldpip/pip_0.4.0_r5/piqueue.h +pivector.h +C:/libs/oldpip/pip_0.4.0_r5/pivector.h + +C:/libs/oldpip/pip_0.4.0_r5/piserial.h +pitimer.h +C:/libs/oldpip/pip_0.4.0_r5/pitimer.h +piiodevice.h +C:/libs/oldpip/pip_0.4.0_r5/piiodevice.h +termios.h +- +fcntl.h +- +sys/ioctl.h +- + +C:/libs/oldpip/pip_0.4.0_r5/pisignals.h +picontainers.h +C:/libs/oldpip/pip_0.4.0_r5/picontainers.h +csignal +- + +C:/libs/oldpip/pip_0.4.0_r5/pistack.h +pivector.h +C:/libs/oldpip/pip_0.4.0_r5/pivector.h + +C:/libs/oldpip/pip_0.4.0_r5/pistatemachine.h +piobject.h +C:/libs/oldpip/pip_0.4.0_r5/piobject.h + +C:/libs/oldpip/pip_0.4.0_r5/pistring.h +pibytearray.h +C:/libs/oldpip/pip_0.4.0_r5/pibytearray.h +pichar.h +C:/libs/oldpip/pip_0.4.0_r5/pichar.h +math.h +C:/libs/oldpip/pip_0.4.0_r5/math.h + +C:/libs/oldpip/pip_0.4.0_r5/pisystemmonitor.h +pithread.h +C:/libs/oldpip/pip_0.4.0_r5/pithread.h +piprocess.h +C:/libs/oldpip/pip_0.4.0_r5/piprocess.h + +C:/libs/oldpip/pip_0.4.0_r5/pithread.h +signal.h +- +pimutex.h +C:/libs/oldpip/pip_0.4.0_r5/pimutex.h +piobject.h +C:/libs/oldpip/pip_0.4.0_r5/piobject.h + +C:/libs/oldpip/pip_0.4.0_r5/pitime.h +ctime +- +csignal +- +pistring.h +C:/libs/oldpip/pip_0.4.0_r5/pistring.h + +C:/libs/oldpip/pip_0.4.0_r5/pitimer.h +pithread.h +C:/libs/oldpip/pip_0.4.0_r5/pithread.h +pitime.h +C:/libs/oldpip/pip_0.4.0_r5/pitime.h + +C:/libs/oldpip/pip_0.4.0_r5/piusb.h +piiodevice.h +C:/libs/oldpip/pip_0.4.0_r5/piiodevice.h + +C:/libs/oldpip/pip_0.4.0_r5/pivariant.h +pistring.h +C:/libs/oldpip/pip_0.4.0_r5/pistring.h +pibitarray.h +C:/libs/oldpip/pip_0.4.0_r5/pibitarray.h +pitime.h +C:/libs/oldpip/pip_0.4.0_r5/pitime.h +pimath.h +C:/libs/oldpip/pip_0.4.0_r5/pimath.h + +C:/libs/oldpip/pip_0.4.0_r5/pivector.h +piincludes.h +C:/libs/oldpip/pip_0.4.0_r5/piincludes.h + diff --git a/_oldpip/pip_0.4.0_r5/CMakeFiles/pip_test.dir/DependInfo.cmake b/_oldpip/pip_0.4.0_r5/CMakeFiles/pip_test.dir/DependInfo.cmake new file mode 100644 index 0000000..bcd8a49 --- /dev/null +++ b/_oldpip/pip_0.4.0_r5/CMakeFiles/pip_test.dir/DependInfo.cmake @@ -0,0 +1,56 @@ +# 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 + "C:/libs/oldpip/pip_0.4.0_r5/main.cpp" "C:/libs/oldpip/pip_0.4.0_r5/CMakeFiles/pip_test.dir/main.cpp.obj" + ) +SET(CMAKE_CXX_COMPILER_ID "GNU") + +# Preprocessor definitions for this target. +SET(CMAKE_TARGET_DEFINITIONS + "PIP_MATH_J0" + "PIP_MATH_J1" + "PIP_MATH_JN" + "PIP_MATH_Y0" + "PIP_MATH_Y1" + "PIP_MATH_YN" + ) + +# Targets to which this target links. +SET(CMAKE_TARGET_LINKED_INFO_FILES + "C:/libs/oldpip/pip_0.4.0_r5/CMakeFiles/pip.dir/DependInfo.cmake" + ) + +# The include file search paths: +SET(CMAKE_C_TARGET_INCLUDE_PATH + "." + "." + "C:/Qt/4.8.6/include/ActiveQt" + "C:/Qt/4.8.6/include/QtDesigner" + "C:/Qt/4.8.6/include/QtDeclarative" + "C:/Qt/4.8.6/include/QtScriptTools" + "C:/Qt/4.8.6/include/QtDBus" + "C:/Qt/4.8.6/include/QtXml" + "C:/Qt/4.8.6/include/QtSql" + "C:/Qt/4.8.6/include/QtOpenGL" + "C:/Qt/4.8.6/include/QtMultimedia" + "C:/Qt/4.8.6/include/QtNetwork" + "C:/Qt/4.8.6/include/phonon" + "C:/Qt/4.8.6/include/QtXmlPatterns" + "C:/Qt/4.8.6/include/QtWebKit" + "C:/Qt/4.8.6/include/QtHelp" + "C:/Qt/4.8.6/include/QtUiTools" + "C:/Qt/4.8.6/include/QtTest" + "C:/Qt/4.8.6/include/QtScript" + "C:/Qt/4.8.6/include/QtSvg" + "C:/Qt/4.8.6/include/Qt3Support" + "C:/Qt/4.8.6/include/QtGui" + "C:/Qt/4.8.6/include/QtCore" + "C:/Qt/4.8.6/mkspecs/default" + "C:/Qt/4.8.6/include" + ) +SET(CMAKE_CXX_TARGET_INCLUDE_PATH ${CMAKE_C_TARGET_INCLUDE_PATH}) +SET(CMAKE_Fortran_TARGET_INCLUDE_PATH ${CMAKE_C_TARGET_INCLUDE_PATH}) +SET(CMAKE_ASM_TARGET_INCLUDE_PATH ${CMAKE_C_TARGET_INCLUDE_PATH}) diff --git a/_oldpip/pip_0.4.0_r5/CMakeFiles/pip_test.dir/build.make b/_oldpip/pip_0.4.0_r5/CMakeFiles/pip_test.dir/build.make new file mode 100644 index 0000000..d73d58d --- /dev/null +++ b/_oldpip/pip_0.4.0_r5/CMakeFiles/pip_test.dir/build.make @@ -0,0 +1,108 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "MinGW Makefiles" Generator, CMake Version 2.8 + +#============================================================================= +# 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. + +SHELL = cmd.exe + +# The CMake executable. +CMAKE_COMMAND = "C:\Program Files (x86)\CMake 2.8\bin\cmake.exe" + +# The command to remove a file. +RM = "C:\Program Files (x86)\CMake 2.8\bin\cmake.exe" -E remove -f + +# Escaping for special characters. +EQUALS = = + +# The program to use to edit the cache. +CMAKE_EDIT_COMMAND = "C:\Program Files (x86)\CMake 2.8\bin\cmake-gui.exe" + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = C:\libs\oldpip\pip_0.4.0_r5 + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = C:\libs\oldpip\pip_0.4.0_r5 + +# Include any dependencies generated for this target. +include CMakeFiles/pip_test.dir/depend.make + +# Include the progress variables for this target. +include CMakeFiles/pip_test.dir/progress.make + +# Include the compile flags for this target's objects. +include CMakeFiles/pip_test.dir/flags.make + +CMakeFiles/pip_test.dir/main.cpp.obj: CMakeFiles/pip_test.dir/flags.make +CMakeFiles/pip_test.dir/main.cpp.obj: CMakeFiles/pip_test.dir/includes_CXX.rsp +CMakeFiles/pip_test.dir/main.cpp.obj: main.cpp + $(CMAKE_COMMAND) -E cmake_progress_report C:\libs\oldpip\pip_0.4.0_r5\CMakeFiles $(CMAKE_PROGRESS_1) + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Building CXX object CMakeFiles/pip_test.dir/main.cpp.obj" + C:\mingw\x32\bin\g++.exe $(CXX_DEFINES) $(CXX_FLAGS) -o CMakeFiles\pip_test.dir\main.cpp.obj -c C:\libs\oldpip\pip_0.4.0_r5\main.cpp + +CMakeFiles/pip_test.dir/main.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/pip_test.dir/main.cpp.i" + C:\mingw\x32\bin\g++.exe $(CXX_DEFINES) $(CXX_FLAGS) -E C:\libs\oldpip\pip_0.4.0_r5\main.cpp > CMakeFiles\pip_test.dir\main.cpp.i + +CMakeFiles/pip_test.dir/main.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/pip_test.dir/main.cpp.s" + C:\mingw\x32\bin\g++.exe $(CXX_DEFINES) $(CXX_FLAGS) -S C:\libs\oldpip\pip_0.4.0_r5\main.cpp -o CMakeFiles\pip_test.dir\main.cpp.s + +CMakeFiles/pip_test.dir/main.cpp.obj.requires: +.PHONY : CMakeFiles/pip_test.dir/main.cpp.obj.requires + +CMakeFiles/pip_test.dir/main.cpp.obj.provides: CMakeFiles/pip_test.dir/main.cpp.obj.requires + $(MAKE) -f CMakeFiles\pip_test.dir\build.make CMakeFiles/pip_test.dir/main.cpp.obj.provides.build +.PHONY : CMakeFiles/pip_test.dir/main.cpp.obj.provides + +CMakeFiles/pip_test.dir/main.cpp.obj.provides.build: CMakeFiles/pip_test.dir/main.cpp.obj + +# Object files for target pip_test +pip_test_OBJECTS = \ +"CMakeFiles/pip_test.dir/main.cpp.obj" + +# External object files for target pip_test +pip_test_EXTERNAL_OBJECTS = + +pip_test.exe: CMakeFiles/pip_test.dir/main.cpp.obj +pip_test.exe: CMakeFiles/pip_test.dir/build.make +pip_test.exe: libpip.dll.a +pip_test.exe: C:/Qt/4.8.6/lib/libQtCore4.a +pip_test.exe: CMakeFiles/pip_test.dir/objects1.rsp +pip_test.exe: CMakeFiles/pip_test.dir/link.txt + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --red --bold "Linking CXX executable pip_test.exe" + $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles\pip_test.dir\link.txt --verbose=$(VERBOSE) + +# Rule to build all files generated by this target. +CMakeFiles/pip_test.dir/build: pip_test.exe +.PHONY : CMakeFiles/pip_test.dir/build + +CMakeFiles/pip_test.dir/requires: CMakeFiles/pip_test.dir/main.cpp.obj.requires +.PHONY : CMakeFiles/pip_test.dir/requires + +CMakeFiles/pip_test.dir/clean: + $(CMAKE_COMMAND) -P CMakeFiles\pip_test.dir\cmake_clean.cmake +.PHONY : CMakeFiles/pip_test.dir/clean + +CMakeFiles/pip_test.dir/depend: + $(CMAKE_COMMAND) -E cmake_depends "MinGW Makefiles" C:\libs\oldpip\pip_0.4.0_r5 C:\libs\oldpip\pip_0.4.0_r5 C:\libs\oldpip\pip_0.4.0_r5 C:\libs\oldpip\pip_0.4.0_r5 C:\libs\oldpip\pip_0.4.0_r5\CMakeFiles\pip_test.dir\DependInfo.cmake --color=$(COLOR) +.PHONY : CMakeFiles/pip_test.dir/depend + diff --git a/_oldpip/pip_0.4.0_r5/CMakeFiles/pip_test.dir/cmake_clean.cmake b/_oldpip/pip_0.4.0_r5/CMakeFiles/pip_test.dir/cmake_clean.cmake new file mode 100644 index 0000000..fc6a41b --- /dev/null +++ b/_oldpip/pip_0.4.0_r5/CMakeFiles/pip_test.dir/cmake_clean.cmake @@ -0,0 +1,12 @@ +FILE(REMOVE_RECURSE + "CMakeFiles/pip_test.dir/main.cpp.obj" + "pip_test.pdb" + "pip_test.exe" + "pip_test.exe.manifest" + "libpip_test.dll.a" +) + +# Per-language clean rules from dependency scanning. +FOREACH(lang CXX) + INCLUDE(CMakeFiles/pip_test.dir/cmake_clean_${lang}.cmake OPTIONAL) +ENDFOREACH(lang) diff --git a/_oldpip/pip_0.4.0_r5/CMakeFiles/pip_test.dir/depend.internal b/_oldpip/pip_0.4.0_r5/CMakeFiles/pip_test.dir/depend.internal new file mode 100644 index 0000000..46e9914 --- /dev/null +++ b/_oldpip/pip_0.4.0_r5/CMakeFiles/pip_test.dir/depend.internal @@ -0,0 +1,123 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "MinGW Makefiles" Generator, CMake Version 2.8 + +CMakeFiles/pip_test.dir/main.cpp.obj + C:/Qt/4.8.6/include/QtCore/QList + C:/Qt/4.8.6/include/QtCore/qalgorithms.h + C:/Qt/4.8.6/include/QtCore/qatomic.h + C:/Qt/4.8.6/include/QtCore/qatomic_alpha.h + C:/Qt/4.8.6/include/QtCore/qatomic_arch.h + C:/Qt/4.8.6/include/QtCore/qatomic_arm.h + C:/Qt/4.8.6/include/QtCore/qatomic_armv5.h + C:/Qt/4.8.6/include/QtCore/qatomic_armv6.h + C:/Qt/4.8.6/include/QtCore/qatomic_armv7.h + C:/Qt/4.8.6/include/QtCore/qatomic_avr32.h + C:/Qt/4.8.6/include/QtCore/qatomic_bfin.h + C:/Qt/4.8.6/include/QtCore/qatomic_bootstrap.h + C:/Qt/4.8.6/include/QtCore/qatomic_generic.h + C:/Qt/4.8.6/include/QtCore/qatomic_i386.h + C:/Qt/4.8.6/include/QtCore/qatomic_ia64.h + C:/Qt/4.8.6/include/QtCore/qatomic_integrity.h + C:/Qt/4.8.6/include/QtCore/qatomic_m68k.h + C:/Qt/4.8.6/include/QtCore/qatomic_macosx.h + C:/Qt/4.8.6/include/QtCore/qatomic_mips.h + C:/Qt/4.8.6/include/QtCore/qatomic_parisc.h + C:/Qt/4.8.6/include/QtCore/qatomic_powerpc.h + C:/Qt/4.8.6/include/QtCore/qatomic_s390.h + C:/Qt/4.8.6/include/QtCore/qatomic_sh.h + C:/Qt/4.8.6/include/QtCore/qatomic_sh4a.h + C:/Qt/4.8.6/include/QtCore/qatomic_sparc.h + C:/Qt/4.8.6/include/QtCore/qatomic_symbian.h + C:/Qt/4.8.6/include/QtCore/qatomic_vxworks.h + C:/Qt/4.8.6/include/QtCore/qatomic_windows.h + C:/Qt/4.8.6/include/QtCore/qatomic_windowsce.h + C:/Qt/4.8.6/include/QtCore/qatomic_x86_64.h + C:/Qt/4.8.6/include/QtCore/qbasicatomic.h + C:/Qt/4.8.6/include/QtCore/qconfig.h + C:/Qt/4.8.6/include/QtCore/qfeatures.h + C:/Qt/4.8.6/include/QtCore/qglobal.h + C:/Qt/4.8.6/include/QtCore/qiterator.h + C:/Qt/4.8.6/include/QtCore/qlist.h + C:/Qt/4.8.6/src/corelib/arch/qatomic_alpha.h + C:/Qt/4.8.6/src/corelib/arch/qatomic_arch.h + C:/Qt/4.8.6/src/corelib/arch/qatomic_arm.h + C:/Qt/4.8.6/src/corelib/arch/qatomic_armv5.h + C:/Qt/4.8.6/src/corelib/arch/qatomic_armv6.h + C:/Qt/4.8.6/src/corelib/arch/qatomic_armv7.h + C:/Qt/4.8.6/src/corelib/arch/qatomic_avr32.h + C:/Qt/4.8.6/src/corelib/arch/qatomic_bfin.h + C:/Qt/4.8.6/src/corelib/arch/qatomic_bootstrap.h + C:/Qt/4.8.6/src/corelib/arch/qatomic_generic.h + C:/Qt/4.8.6/src/corelib/arch/qatomic_i386.h + C:/Qt/4.8.6/src/corelib/arch/qatomic_ia64.h + C:/Qt/4.8.6/src/corelib/arch/qatomic_integrity.h + C:/Qt/4.8.6/src/corelib/arch/qatomic_m68k.h + C:/Qt/4.8.6/src/corelib/arch/qatomic_macosx.h + C:/Qt/4.8.6/src/corelib/arch/qatomic_mips.h + C:/Qt/4.8.6/src/corelib/arch/qatomic_parisc.h + C:/Qt/4.8.6/src/corelib/arch/qatomic_powerpc.h + C:/Qt/4.8.6/src/corelib/arch/qatomic_s390.h + C:/Qt/4.8.6/src/corelib/arch/qatomic_sh.h + C:/Qt/4.8.6/src/corelib/arch/qatomic_sh4a.h + C:/Qt/4.8.6/src/corelib/arch/qatomic_sparc.h + C:/Qt/4.8.6/src/corelib/arch/qatomic_symbian.h + C:/Qt/4.8.6/src/corelib/arch/qatomic_vxworks.h + C:/Qt/4.8.6/src/corelib/arch/qatomic_windows.h + C:/Qt/4.8.6/src/corelib/arch/qatomic_windowsce.h + C:/Qt/4.8.6/src/corelib/arch/qatomic_x86_64.h + C:/Qt/4.8.6/src/corelib/global/qconfig.h + C:/Qt/4.8.6/src/corelib/global/qfeatures.h + C:/Qt/4.8.6/src/corelib/global/qglobal.h + C:/Qt/4.8.6/src/corelib/thread/qatomic.h + C:/Qt/4.8.6/src/corelib/thread/qbasicatomic.h + C:/Qt/4.8.6/src/corelib/tools/qalgorithms.h + C:/Qt/4.8.6/src/corelib/tools/qiterator.h + C:/Qt/4.8.6/src/corelib/tools/qlist.h + C:/libs/oldpip/pip_0.4.0_r5/main.cpp + C:/libs/oldpip/pip_0.4.0_r5/pibinarylog.h + C:/libs/oldpip/pip_0.4.0_r5/pibitarray.h + C:/libs/oldpip/pip_0.4.0_r5/pibytearray.h + C:/libs/oldpip/pip_0.4.0_r5/pichar.h + C:/libs/oldpip/pip_0.4.0_r5/picli.h + C:/libs/oldpip/pip_0.4.0_r5/picodec.h + C:/libs/oldpip/pip_0.4.0_r5/picodeparser.h + C:/libs/oldpip/pip_0.4.0_r5/picollection.h + C:/libs/oldpip/pip_0.4.0_r5/piconfig.h + C:/libs/oldpip/pip_0.4.0_r5/piconnection.h + C:/libs/oldpip/pip_0.4.0_r5/piconsole.h + C:/libs/oldpip/pip_0.4.0_r5/picontainers.h + C:/libs/oldpip/pip_0.4.0_r5/picrc.h + C:/libs/oldpip/pip_0.4.0_r5/pideque.h + C:/libs/oldpip/pip_0.4.0_r5/pidiagnostics.h + C:/libs/oldpip/pip_0.4.0_r5/pidir.h + C:/libs/oldpip/pip_0.4.0_r5/piethernet.h + C:/libs/oldpip/pip_0.4.0_r5/pievaluator.h + C:/libs/oldpip/pip_0.4.0_r5/pifile.h + C:/libs/oldpip/pip_0.4.0_r5/piincludes.h + C:/libs/oldpip/pip_0.4.0_r5/piiodevice.h + C:/libs/oldpip/pip_0.4.0_r5/pikbdlistener.h + C:/libs/oldpip/pip_0.4.0_r5/pimap.h + C:/libs/oldpip/pip_0.4.0_r5/pimath.h + C:/libs/oldpip/pip_0.4.0_r5/pimonitor.h + C:/libs/oldpip/pip_0.4.0_r5/pimultiprotocol.h + C:/libs/oldpip/pip_0.4.0_r5/pimutex.h + C:/libs/oldpip/pip_0.4.0_r5/piobject.h + C:/libs/oldpip/pip_0.4.0_r5/pip.h + C:/libs/oldpip/pip_0.4.0_r5/pip_export.h + C:/libs/oldpip/pip_0.4.0_r5/pipacketextractor.h + C:/libs/oldpip/pip_0.4.0_r5/pipeer.h + C:/libs/oldpip/pip_0.4.0_r5/piprocess.h + C:/libs/oldpip/pip_0.4.0_r5/piprotocol.h + C:/libs/oldpip/pip_0.4.0_r5/piqueue.h + C:/libs/oldpip/pip_0.4.0_r5/piserial.h + C:/libs/oldpip/pip_0.4.0_r5/pisignals.h + C:/libs/oldpip/pip_0.4.0_r5/pistack.h + C:/libs/oldpip/pip_0.4.0_r5/pistatemachine.h + C:/libs/oldpip/pip_0.4.0_r5/pistring.h + C:/libs/oldpip/pip_0.4.0_r5/pisystemmonitor.h + C:/libs/oldpip/pip_0.4.0_r5/pithread.h + C:/libs/oldpip/pip_0.4.0_r5/pitime.h + C:/libs/oldpip/pip_0.4.0_r5/pitimer.h + C:/libs/oldpip/pip_0.4.0_r5/piusb.h + C:/libs/oldpip/pip_0.4.0_r5/pivariant.h + C:/libs/oldpip/pip_0.4.0_r5/pivector.h diff --git a/_oldpip/pip_0.4.0_r5/CMakeFiles/pip_test.dir/depend.make b/_oldpip/pip_0.4.0_r5/CMakeFiles/pip_test.dir/depend.make new file mode 100644 index 0000000..eb60a3e --- /dev/null +++ b/_oldpip/pip_0.4.0_r5/CMakeFiles/pip_test.dir/depend.make @@ -0,0 +1,123 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "MinGW Makefiles" Generator, CMake Version 2.8 + +CMakeFiles/pip_test.dir/main.cpp.obj: C:/Qt/4.8.6/include/QtCore/QList +CMakeFiles/pip_test.dir/main.cpp.obj: C:/Qt/4.8.6/include/QtCore/qalgorithms.h +CMakeFiles/pip_test.dir/main.cpp.obj: C:/Qt/4.8.6/include/QtCore/qatomic.h +CMakeFiles/pip_test.dir/main.cpp.obj: C:/Qt/4.8.6/include/QtCore/qatomic_alpha.h +CMakeFiles/pip_test.dir/main.cpp.obj: C:/Qt/4.8.6/include/QtCore/qatomic_arch.h +CMakeFiles/pip_test.dir/main.cpp.obj: C:/Qt/4.8.6/include/QtCore/qatomic_arm.h +CMakeFiles/pip_test.dir/main.cpp.obj: C:/Qt/4.8.6/include/QtCore/qatomic_armv5.h +CMakeFiles/pip_test.dir/main.cpp.obj: C:/Qt/4.8.6/include/QtCore/qatomic_armv6.h +CMakeFiles/pip_test.dir/main.cpp.obj: C:/Qt/4.8.6/include/QtCore/qatomic_armv7.h +CMakeFiles/pip_test.dir/main.cpp.obj: C:/Qt/4.8.6/include/QtCore/qatomic_avr32.h +CMakeFiles/pip_test.dir/main.cpp.obj: C:/Qt/4.8.6/include/QtCore/qatomic_bfin.h +CMakeFiles/pip_test.dir/main.cpp.obj: C:/Qt/4.8.6/include/QtCore/qatomic_bootstrap.h +CMakeFiles/pip_test.dir/main.cpp.obj: C:/Qt/4.8.6/include/QtCore/qatomic_generic.h +CMakeFiles/pip_test.dir/main.cpp.obj: C:/Qt/4.8.6/include/QtCore/qatomic_i386.h +CMakeFiles/pip_test.dir/main.cpp.obj: C:/Qt/4.8.6/include/QtCore/qatomic_ia64.h +CMakeFiles/pip_test.dir/main.cpp.obj: C:/Qt/4.8.6/include/QtCore/qatomic_integrity.h +CMakeFiles/pip_test.dir/main.cpp.obj: C:/Qt/4.8.6/include/QtCore/qatomic_m68k.h +CMakeFiles/pip_test.dir/main.cpp.obj: C:/Qt/4.8.6/include/QtCore/qatomic_macosx.h +CMakeFiles/pip_test.dir/main.cpp.obj: C:/Qt/4.8.6/include/QtCore/qatomic_mips.h +CMakeFiles/pip_test.dir/main.cpp.obj: C:/Qt/4.8.6/include/QtCore/qatomic_parisc.h +CMakeFiles/pip_test.dir/main.cpp.obj: C:/Qt/4.8.6/include/QtCore/qatomic_powerpc.h +CMakeFiles/pip_test.dir/main.cpp.obj: C:/Qt/4.8.6/include/QtCore/qatomic_s390.h +CMakeFiles/pip_test.dir/main.cpp.obj: C:/Qt/4.8.6/include/QtCore/qatomic_sh.h +CMakeFiles/pip_test.dir/main.cpp.obj: C:/Qt/4.8.6/include/QtCore/qatomic_sh4a.h +CMakeFiles/pip_test.dir/main.cpp.obj: C:/Qt/4.8.6/include/QtCore/qatomic_sparc.h +CMakeFiles/pip_test.dir/main.cpp.obj: C:/Qt/4.8.6/include/QtCore/qatomic_symbian.h +CMakeFiles/pip_test.dir/main.cpp.obj: C:/Qt/4.8.6/include/QtCore/qatomic_vxworks.h +CMakeFiles/pip_test.dir/main.cpp.obj: C:/Qt/4.8.6/include/QtCore/qatomic_windows.h +CMakeFiles/pip_test.dir/main.cpp.obj: C:/Qt/4.8.6/include/QtCore/qatomic_windowsce.h +CMakeFiles/pip_test.dir/main.cpp.obj: C:/Qt/4.8.6/include/QtCore/qatomic_x86_64.h +CMakeFiles/pip_test.dir/main.cpp.obj: C:/Qt/4.8.6/include/QtCore/qbasicatomic.h +CMakeFiles/pip_test.dir/main.cpp.obj: C:/Qt/4.8.6/include/QtCore/qconfig.h +CMakeFiles/pip_test.dir/main.cpp.obj: C:/Qt/4.8.6/include/QtCore/qfeatures.h +CMakeFiles/pip_test.dir/main.cpp.obj: C:/Qt/4.8.6/include/QtCore/qglobal.h +CMakeFiles/pip_test.dir/main.cpp.obj: C:/Qt/4.8.6/include/QtCore/qiterator.h +CMakeFiles/pip_test.dir/main.cpp.obj: C:/Qt/4.8.6/include/QtCore/qlist.h +CMakeFiles/pip_test.dir/main.cpp.obj: C:/Qt/4.8.6/src/corelib/arch/qatomic_alpha.h +CMakeFiles/pip_test.dir/main.cpp.obj: C:/Qt/4.8.6/src/corelib/arch/qatomic_arch.h +CMakeFiles/pip_test.dir/main.cpp.obj: C:/Qt/4.8.6/src/corelib/arch/qatomic_arm.h +CMakeFiles/pip_test.dir/main.cpp.obj: C:/Qt/4.8.6/src/corelib/arch/qatomic_armv5.h +CMakeFiles/pip_test.dir/main.cpp.obj: C:/Qt/4.8.6/src/corelib/arch/qatomic_armv6.h +CMakeFiles/pip_test.dir/main.cpp.obj: C:/Qt/4.8.6/src/corelib/arch/qatomic_armv7.h +CMakeFiles/pip_test.dir/main.cpp.obj: C:/Qt/4.8.6/src/corelib/arch/qatomic_avr32.h +CMakeFiles/pip_test.dir/main.cpp.obj: C:/Qt/4.8.6/src/corelib/arch/qatomic_bfin.h +CMakeFiles/pip_test.dir/main.cpp.obj: C:/Qt/4.8.6/src/corelib/arch/qatomic_bootstrap.h +CMakeFiles/pip_test.dir/main.cpp.obj: C:/Qt/4.8.6/src/corelib/arch/qatomic_generic.h +CMakeFiles/pip_test.dir/main.cpp.obj: C:/Qt/4.8.6/src/corelib/arch/qatomic_i386.h +CMakeFiles/pip_test.dir/main.cpp.obj: C:/Qt/4.8.6/src/corelib/arch/qatomic_ia64.h +CMakeFiles/pip_test.dir/main.cpp.obj: C:/Qt/4.8.6/src/corelib/arch/qatomic_integrity.h +CMakeFiles/pip_test.dir/main.cpp.obj: C:/Qt/4.8.6/src/corelib/arch/qatomic_m68k.h +CMakeFiles/pip_test.dir/main.cpp.obj: C:/Qt/4.8.6/src/corelib/arch/qatomic_macosx.h +CMakeFiles/pip_test.dir/main.cpp.obj: C:/Qt/4.8.6/src/corelib/arch/qatomic_mips.h +CMakeFiles/pip_test.dir/main.cpp.obj: C:/Qt/4.8.6/src/corelib/arch/qatomic_parisc.h +CMakeFiles/pip_test.dir/main.cpp.obj: C:/Qt/4.8.6/src/corelib/arch/qatomic_powerpc.h +CMakeFiles/pip_test.dir/main.cpp.obj: C:/Qt/4.8.6/src/corelib/arch/qatomic_s390.h +CMakeFiles/pip_test.dir/main.cpp.obj: C:/Qt/4.8.6/src/corelib/arch/qatomic_sh.h +CMakeFiles/pip_test.dir/main.cpp.obj: C:/Qt/4.8.6/src/corelib/arch/qatomic_sh4a.h +CMakeFiles/pip_test.dir/main.cpp.obj: C:/Qt/4.8.6/src/corelib/arch/qatomic_sparc.h +CMakeFiles/pip_test.dir/main.cpp.obj: C:/Qt/4.8.6/src/corelib/arch/qatomic_symbian.h +CMakeFiles/pip_test.dir/main.cpp.obj: C:/Qt/4.8.6/src/corelib/arch/qatomic_vxworks.h +CMakeFiles/pip_test.dir/main.cpp.obj: C:/Qt/4.8.6/src/corelib/arch/qatomic_windows.h +CMakeFiles/pip_test.dir/main.cpp.obj: C:/Qt/4.8.6/src/corelib/arch/qatomic_windowsce.h +CMakeFiles/pip_test.dir/main.cpp.obj: C:/Qt/4.8.6/src/corelib/arch/qatomic_x86_64.h +CMakeFiles/pip_test.dir/main.cpp.obj: C:/Qt/4.8.6/src/corelib/global/qconfig.h +CMakeFiles/pip_test.dir/main.cpp.obj: C:/Qt/4.8.6/src/corelib/global/qfeatures.h +CMakeFiles/pip_test.dir/main.cpp.obj: C:/Qt/4.8.6/src/corelib/global/qglobal.h +CMakeFiles/pip_test.dir/main.cpp.obj: C:/Qt/4.8.6/src/corelib/thread/qatomic.h +CMakeFiles/pip_test.dir/main.cpp.obj: C:/Qt/4.8.6/src/corelib/thread/qbasicatomic.h +CMakeFiles/pip_test.dir/main.cpp.obj: C:/Qt/4.8.6/src/corelib/tools/qalgorithms.h +CMakeFiles/pip_test.dir/main.cpp.obj: C:/Qt/4.8.6/src/corelib/tools/qiterator.h +CMakeFiles/pip_test.dir/main.cpp.obj: C:/Qt/4.8.6/src/corelib/tools/qlist.h +CMakeFiles/pip_test.dir/main.cpp.obj: main.cpp +CMakeFiles/pip_test.dir/main.cpp.obj: pibinarylog.h +CMakeFiles/pip_test.dir/main.cpp.obj: pibitarray.h +CMakeFiles/pip_test.dir/main.cpp.obj: pibytearray.h +CMakeFiles/pip_test.dir/main.cpp.obj: pichar.h +CMakeFiles/pip_test.dir/main.cpp.obj: picli.h +CMakeFiles/pip_test.dir/main.cpp.obj: picodec.h +CMakeFiles/pip_test.dir/main.cpp.obj: picodeparser.h +CMakeFiles/pip_test.dir/main.cpp.obj: picollection.h +CMakeFiles/pip_test.dir/main.cpp.obj: piconfig.h +CMakeFiles/pip_test.dir/main.cpp.obj: piconnection.h +CMakeFiles/pip_test.dir/main.cpp.obj: piconsole.h +CMakeFiles/pip_test.dir/main.cpp.obj: picontainers.h +CMakeFiles/pip_test.dir/main.cpp.obj: picrc.h +CMakeFiles/pip_test.dir/main.cpp.obj: pideque.h +CMakeFiles/pip_test.dir/main.cpp.obj: pidiagnostics.h +CMakeFiles/pip_test.dir/main.cpp.obj: pidir.h +CMakeFiles/pip_test.dir/main.cpp.obj: piethernet.h +CMakeFiles/pip_test.dir/main.cpp.obj: pievaluator.h +CMakeFiles/pip_test.dir/main.cpp.obj: pifile.h +CMakeFiles/pip_test.dir/main.cpp.obj: piincludes.h +CMakeFiles/pip_test.dir/main.cpp.obj: piiodevice.h +CMakeFiles/pip_test.dir/main.cpp.obj: pikbdlistener.h +CMakeFiles/pip_test.dir/main.cpp.obj: pimap.h +CMakeFiles/pip_test.dir/main.cpp.obj: pimath.h +CMakeFiles/pip_test.dir/main.cpp.obj: pimonitor.h +CMakeFiles/pip_test.dir/main.cpp.obj: pimultiprotocol.h +CMakeFiles/pip_test.dir/main.cpp.obj: pimutex.h +CMakeFiles/pip_test.dir/main.cpp.obj: piobject.h +CMakeFiles/pip_test.dir/main.cpp.obj: pip.h +CMakeFiles/pip_test.dir/main.cpp.obj: pip_export.h +CMakeFiles/pip_test.dir/main.cpp.obj: pipacketextractor.h +CMakeFiles/pip_test.dir/main.cpp.obj: pipeer.h +CMakeFiles/pip_test.dir/main.cpp.obj: piprocess.h +CMakeFiles/pip_test.dir/main.cpp.obj: piprotocol.h +CMakeFiles/pip_test.dir/main.cpp.obj: piqueue.h +CMakeFiles/pip_test.dir/main.cpp.obj: piserial.h +CMakeFiles/pip_test.dir/main.cpp.obj: pisignals.h +CMakeFiles/pip_test.dir/main.cpp.obj: pistack.h +CMakeFiles/pip_test.dir/main.cpp.obj: pistatemachine.h +CMakeFiles/pip_test.dir/main.cpp.obj: pistring.h +CMakeFiles/pip_test.dir/main.cpp.obj: pisystemmonitor.h +CMakeFiles/pip_test.dir/main.cpp.obj: pithread.h +CMakeFiles/pip_test.dir/main.cpp.obj: pitime.h +CMakeFiles/pip_test.dir/main.cpp.obj: pitimer.h +CMakeFiles/pip_test.dir/main.cpp.obj: piusb.h +CMakeFiles/pip_test.dir/main.cpp.obj: pivariant.h +CMakeFiles/pip_test.dir/main.cpp.obj: pivector.h + diff --git a/_oldpip/pip_0.4.0_r5/CMakeFiles/pip_test.dir/flags.make b/_oldpip/pip_0.4.0_r5/CMakeFiles/pip_test.dir/flags.make new file mode 100644 index 0000000..660a87e --- /dev/null +++ b/_oldpip/pip_0.4.0_r5/CMakeFiles/pip_test.dir/flags.make @@ -0,0 +1,8 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "MinGW Makefiles" Generator, CMake Version 2.8 + +# compile CXX with C:/mingw/x32/bin/g++.exe +CXX_FLAGS = -O3 -DNDEBUG @CMakeFiles/pip_test.dir/includes_CXX.rsp -O2 + +CXX_DEFINES = -DPIP_MATH_J0 -DPIP_MATH_J1 -DPIP_MATH_JN -DPIP_MATH_Y0 -DPIP_MATH_Y1 -DPIP_MATH_YN + diff --git a/_oldpip/pip_0.4.0_r5/CMakeFiles/pip_test.dir/includes_CXX.rsp b/_oldpip/pip_0.4.0_r5/CMakeFiles/pip_test.dir/includes_CXX.rsp new file mode 100644 index 0000000..f7bb099 --- /dev/null +++ b/_oldpip/pip_0.4.0_r5/CMakeFiles/pip_test.dir/includes_CXX.rsp @@ -0,0 +1 @@ +-IC:/libs/oldpip/pip_0.4.0_r5 -IC:/libs/oldpip/pip_0.4.0_r5/. -IC:/Qt/4.8.6/include/ActiveQt -IC:/Qt/4.8.6/include/QtDesigner -IC:/Qt/4.8.6/include/QtDeclarative -IC:/Qt/4.8.6/include/QtScriptTools -IC:/Qt/4.8.6/include/QtDBus -IC:/Qt/4.8.6/include/QtXml -IC:/Qt/4.8.6/include/QtSql -IC:/Qt/4.8.6/include/QtOpenGL -IC:/Qt/4.8.6/include/QtMultimedia -IC:/Qt/4.8.6/include/QtNetwork -IC:/Qt/4.8.6/include/phonon -IC:/Qt/4.8.6/include/QtXmlPatterns -IC:/Qt/4.8.6/include/QtWebKit -IC:/Qt/4.8.6/include/QtHelp -IC:/Qt/4.8.6/include/QtUiTools -IC:/Qt/4.8.6/include/QtTest -IC:/Qt/4.8.6/include/QtScript -IC:/Qt/4.8.6/include/QtSvg -IC:/Qt/4.8.6/include/Qt3Support -IC:/Qt/4.8.6/include/QtGui -IC:/Qt/4.8.6/include/QtCore -IC:/Qt/4.8.6/mkspecs/default -IC:/Qt/4.8.6/include diff --git a/_oldpip/pip_0.4.0_r5/CMakeFiles/pip_test.dir/link.txt b/_oldpip/pip_0.4.0_r5/CMakeFiles/pip_test.dir/link.txt new file mode 100644 index 0000000..7600067 --- /dev/null +++ b/_oldpip/pip_0.4.0_r5/CMakeFiles/pip_test.dir/link.txt @@ -0,0 +1,3 @@ +"C:\Program Files (x86)\CMake 2.8\bin\cmake.exe" -E remove -f CMakeFiles\pip_test.dir/objects.a +C:\mingw\x32\bin\ar.exe cr CMakeFiles\pip_test.dir/objects.a @CMakeFiles\pip_test.dir\objects1.rsp +C:\mingw\x32\bin\g++.exe -O3 -DNDEBUG -Wl,--whole-archive CMakeFiles\pip_test.dir/objects.a -Wl,--no-whole-archive -o pip_test.exe -Wl,--out-implib,libpip_test.dll.a -Wl,--major-image-version,0,--minor-image-version,0 libpip.dll.a C:\Qt\4.8.6\lib\libQtCore4.a -lws2_32 -lIphlpapi -lkernel32 -luser32 -lgdi32 -lwinspool -lshell32 -lole32 -loleaut32 -luuid -lcomdlg32 -ladvapi32 diff --git a/_oldpip/pip_0.4.0_r5/CMakeFiles/pip_test.dir/main.cpp.obj b/_oldpip/pip_0.4.0_r5/CMakeFiles/pip_test.dir/main.cpp.obj new file mode 100644 index 0000000..f356d5d Binary files /dev/null and b/_oldpip/pip_0.4.0_r5/CMakeFiles/pip_test.dir/main.cpp.obj differ diff --git a/_oldpip/pip_0.4.0_r5/CMakeFiles/pip_test.dir/objects1.rsp b/_oldpip/pip_0.4.0_r5/CMakeFiles/pip_test.dir/objects1.rsp new file mode 100644 index 0000000..bc52c8d --- /dev/null +++ b/_oldpip/pip_0.4.0_r5/CMakeFiles/pip_test.dir/objects1.rsp @@ -0,0 +1 @@ +CMakeFiles/pip_test.dir/main.cpp.obj diff --git a/_oldpip/pip_0.4.0_r5/CMakeFiles/pip_test.dir/progress.make b/_oldpip/pip_0.4.0_r5/CMakeFiles/pip_test.dir/progress.make new file mode 100644 index 0000000..c17bd70 --- /dev/null +++ b/_oldpip/pip_0.4.0_r5/CMakeFiles/pip_test.dir/progress.make @@ -0,0 +1,2 @@ +CMAKE_PROGRESS_1 = 43 + diff --git a/_oldpip/pip_0.4.0_r5/CMakeFiles/progress.marks b/_oldpip/pip_0.4.0_r5/CMakeFiles/progress.marks new file mode 100644 index 0000000..fbc941d --- /dev/null +++ b/_oldpip/pip_0.4.0_r5/CMakeFiles/progress.marks @@ -0,0 +1 @@ +43 diff --git a/_oldpip/pip_0.4.0_r5/CMakeLists.txt b/_oldpip/pip_0.4.0_r5/CMakeLists.txt new file mode 100644 index 0000000..af00dda --- /dev/null +++ b/_oldpip/pip_0.4.0_r5/CMakeLists.txt @@ -0,0 +1,127 @@ +project(pip) +cmake_minimum_required(VERSION 2.6) +include_directories(${CMAKE_CURRENT_SOURCE_DIR} .) +include(CheckFunctionExists) +set(VERSION "0.0400") +set(SOVERSION ${VERSION}) +set(CMAKE_BUILD_TYPE "Release") +set(LIBS) +file(GLOB HDRS "pi*.h") +file(GLOB CPPS "pi*.cpp") + + +# Check Bessel functions +set(CMAKE_REQUIRED_INCLUDES math.h) +set(CMAKE_REQUIRED_LIBRARIES m) +CHECK_FUNCTION_EXISTS(j0 PIP_MATH_J0) +CHECK_FUNCTION_EXISTS(j1 PIP_MATH_J1) +CHECK_FUNCTION_EXISTS(jn PIP_MATH_JN) +CHECK_FUNCTION_EXISTS(y0 PIP_MATH_Y0) +CHECK_FUNCTION_EXISTS(y1 PIP_MATH_Y1) +CHECK_FUNCTION_EXISTS(yn PIP_MATH_YN) +if (DEFINED PIP_MATH_J0) + add_definitions("-DPIP_MATH_J0") +endif () +if (DEFINED PIP_MATH_J1) + add_definitions("-DPIP_MATH_J1") +endif () +if (DEFINED PIP_MATH_JN) + add_definitions("-DPIP_MATH_JN") +endif () +if (DEFINED PIP_MATH_Y0) + add_definitions("-DPIP_MATH_Y0") +endif () +if (DEFINED PIP_MATH_Y1) + add_definitions("-DPIP_MATH_Y1") +endif () +if (DEFINED PIP_MATH_YN) + add_definitions("-DPIP_MATH_YN") +endif () + + +# Check if USB is on (to enable use "-DUSB=" argument of cmake) +if (DEFINED USB) + message(STATUS "Building with USB support") + unset(USB) + add_definitions("-DPIP_USB") + list(APPEND LIBS usb) +else () + message(STATUS "Building without USB support") +endif () + + +# Check if STL containers is on (to enable use "-DPIP_CONTAINERS_STL=" argument of cmake) +if (DEFINED PIP_CONTAINERS_STL) + message(STATUS "Building with STL containers") + unset(PIP_CONTAINERS_STL) + add_definitions("-DPIP_CONTAINERS_STL") +else () + message(STATUS "Building with PIP containers") +endif () + + +if (${WIN32}) + list(APPEND LIBS ws2_32 Iphlpapi) + execute_process(COMMAND "make_rc_win.bat" WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}) + list(APPEND CPPS "pip_resource_win.o") + add_library(pip SHARED ${CPPS}) + if (${CMAKE_C_COMPILER} STREQUAL "cl") + include(GenerateExportHeader) + generate_export_header(pip) + add_definitions("/O2 /Ob2 /Ot") + else () + add_definitions("-O2") + endif () +else () + add_definitions("-O2") + if (DEFINED ENV{QNX_HOST}) + list(APPEND LIBS socket) + add_definitions("-ftemplate-depth-32") + add_library(pip STATIC ${CPPS}) + else () + list(APPEND LIBS pthread) + if (NOT APPLE) + list(APPEND LIBS rt) + endif() + add_definitions("-Wall") + add_definitions("-g3") + add_library(pip SHARED ${CPPS}) + endif () +endif () +target_link_libraries(pip ${LIBS}) +#install(TARGETS pip DESTINATION bin) + + +# Test program +find_package(Qt4 REQUIRED) +include_directories(${QT_INCLUDES}) +add_executable(pip_test "main.cpp") +target_link_libraries(pip_test pip ${QT_QTCORE_LIBRARY}) +#target_link_libraries(pip_test pip) + + +add_subdirectory(system_test) +add_subdirectory(remote_console) +add_subdirectory(code_model_generator) + +if (DEFINED LIB) + unset(LIB) + if (${WIN32}) + get_filename_component(MGWDIR ${CMAKE_C_COMPILER} PATH) + find_path(MGWINCLUDE windows.h HINTS ${MGWDIR}/include) + file(RELATIVE_PATH MGWINCLUDE "${MGWDIR}" ${MGWINCLUDE}) + get_filename_component(MGWINCLUDE ${MGWINCLUDE} PATH) + string(SUBSTRING ${MGWINCLUDE} 1 -1 MGWINCLUDE) + message(STATUS "MGWINCLUDE = ${MGWINCLUDE}/include") + set(CMAKE_INSTALL_PREFIX ${MGWDIR}/..) + install(FILES ${HDRS} DESTINATION ${MGWINCLUDE}/include/pip) + install(TARGETS pip DESTINATION ${MGWINCLUDE}/lib) + else () + set(CMAKE_INSTALL_PREFIX /usr) + install(TARGETS pip DESTINATION lib) + install(FILES ${HDRS} DESTINATION include/pip) + endif () + install(FILES "FindPIP.cmake" DESTINATION ${CMAKE_ROOT}/Modules) +else () + install(TARGETS pip DESTINATION bin) +endif () diff --git a/_oldpip/pip_0.4.0_r5/Doxyfile b/_oldpip/pip_0.4.0_r5/Doxyfile new file mode 100644 index 0000000..baaafba --- /dev/null +++ b/_oldpip/pip_0.4.0_r5/Doxyfile @@ -0,0 +1,2350 @@ +# Doxyfile 1.8.6 + +# This file describes the settings to be used by the documentation system +# doxygen (www.doxygen.org) for a project. +# +# All text after a double hash (##) is considered a comment and is placed in +# front of the TAG it is preceding. +# +# All text after a single hash (#) is considered a comment and will be ignored. +# The format is: +# TAG = value [value, ...] +# For lists, items can also be appended using: +# TAG += value [value, ...] +# Values that contain spaces should be placed between quotes (\" \"). + +#--------------------------------------------------------------------------- +# Project related configuration options +#--------------------------------------------------------------------------- + +# This tag specifies the encoding used for all characters in the config file +# that follow. The default is UTF-8 which is also the encoding used for all text +# before the first occurrence of this tag. Doxygen uses libiconv (or the iconv +# built into libc) for the transcoding. See http://www.gnu.org/software/libiconv +# for the list of possible encodings. +# The default value is: UTF-8. + +DOXYFILE_ENCODING = UTF-8 + +# The PROJECT_NAME tag is a single word (or a sequence of words surrounded by +# double-quotes, unless you are using Doxywizard) that should identify the +# project for which the documentation is generated. This name is used in the +# title of most generated pages and in a few other places. +# The default value is: My Project. + +PROJECT_NAME = PIP + +# The PROJECT_NUMBER tag can be used to enter a project or revision number. This +# could be handy for archiving the generated documentation or if some version +# control system is used. + +PROJECT_NUMBER = 0.4.0 + +# Using the PROJECT_BRIEF tag one can provide an optional one line description +# for a project that appears at the top of each page and should give viewer a +# quick idea about the purpose of the project. Keep the description short. + +PROJECT_BRIEF = "Platform-Independent Primitives" + +# With the PROJECT_LOGO tag one can specify an logo or icon that is included in +# the documentation. The maximum height of the logo should not exceed 55 pixels +# and the maximum width should not exceed 200 pixels. Doxygen will copy the logo +# to the output directory. + +PROJECT_LOGO = + +# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) path +# into which the generated documentation will be written. If a relative path is +# entered, it will be relative to the location where doxygen was started. If +# left blank the current directory will be used. + +OUTPUT_DIRECTORY = doc + +# If the CREATE_SUBDIRS tag is set to YES, then doxygen will create 4096 sub- +# directories (in 2 levels) under the output directory of each output format and +# will distribute the generated files over these directories. Enabling this +# option can be useful when feeding doxygen a huge amount of source files, where +# putting all generated files in the same directory would otherwise causes +# performance problems for the file system. +# The default value is: NO. + +CREATE_SUBDIRS = NO + +# The OUTPUT_LANGUAGE tag is used to specify the language in which all +# documentation generated by doxygen is written. Doxygen will use this +# information to generate all constant output in the proper language. +# Possible values are: Afrikaans, Arabic, Armenian, Brazilian, Catalan, Chinese, +# Chinese-Traditional, Croatian, Czech, Danish, Dutch, English (United States), +# Esperanto, Farsi (Persian), Finnish, French, German, Greek, Hungarian, +# Indonesian, Italian, Japanese, Japanese-en (Japanese with English messages), +# Korean, Korean-en (Korean with English messages), Latvian, Lithuanian, +# Macedonian, Norwegian, Persian (Farsi), Polish, Portuguese, Romanian, Russian, +# Serbian, Serbian-Cyrillic, Slovak, Slovene, Spanish, Swedish, Turkish, +# Ukrainian and Vietnamese. +# The default value is: English. + +OUTPUT_LANGUAGE = English + +# If the BRIEF_MEMBER_DESC tag is set to YES doxygen will include brief member +# descriptions after the members that are listed in the file and class +# documentation (similar to Javadoc). Set to NO to disable this. +# The default value is: YES. + +BRIEF_MEMBER_DESC = YES + +# If the REPEAT_BRIEF tag is set to YES doxygen will prepend the brief +# description of a member or function before the detailed description +# +# Note: If both HIDE_UNDOC_MEMBERS and BRIEF_MEMBER_DESC are set to NO, the +# brief descriptions will be completely suppressed. +# The default value is: YES. + +REPEAT_BRIEF = YES + +# This tag implements a quasi-intelligent brief description abbreviator that is +# used to form the text in various listings. Each string in this list, if found +# as the leading text of the brief description, will be stripped from the text +# and the result, after processing the whole list, is used as the annotated +# text. Otherwise, the brief description is used as-is. If left blank, the +# following values are used ($name is automatically replaced with the name of +# the entity):The $name class, The $name widget, The $name file, is, provides, +# specifies, contains, represents, a, an and the. + +ABBREVIATE_BRIEF = "The $name class" \ + "The $name widget" \ + "The $name file" \ + is \ + provides \ + specifies \ + contains \ + represents \ + a \ + an \ + the + +# If the ALWAYS_DETAILED_SEC and REPEAT_BRIEF tags are both set to YES then +# doxygen will generate a detailed section even if there is only a brief +# description. +# The default value is: NO. + +ALWAYS_DETAILED_SEC = NO + +# If the INLINE_INHERITED_MEMB tag is set to YES, doxygen will show all +# inherited members of a class in the documentation of that class as if those +# members were ordinary class members. Constructors, destructors and assignment +# operators of the base classes will not be shown. +# The default value is: NO. + +INLINE_INHERITED_MEMB = NO + +# If the FULL_PATH_NAMES tag is set to YES doxygen will prepend the full path +# before files name in the file list and in the header files. If set to NO the +# shortest path that makes the file name unique will be used +# The default value is: YES. + +FULL_PATH_NAMES = YES + +# The STRIP_FROM_PATH tag can be used to strip a user-defined part of the path. +# Stripping is only done if one of the specified strings matches the left-hand +# part of the path. The tag can be used to show relative paths in the file list. +# If left blank the directory from which doxygen is run is used as the path to +# strip. +# +# Note that you can specify absolute paths here, but also relative paths, which +# will be relative from the directory where doxygen is started. +# This tag requires that the tag FULL_PATH_NAMES is set to YES. + +STRIP_FROM_PATH = + +# The STRIP_FROM_INC_PATH tag can be used to strip a user-defined part of the +# path mentioned in the documentation of a class, which tells the reader which +# header file to include in order to use a class. If left blank only the name of +# the header file containing the class definition is used. Otherwise one should +# specify the list of include paths that are normally passed to the compiler +# using the -I flag. + +STRIP_FROM_INC_PATH = + +# If the SHORT_NAMES tag is set to YES, doxygen will generate much shorter (but +# less readable) file names. This can be useful is your file systems doesn't +# support long names like on DOS, Mac, or CD-ROM. +# The default value is: NO. + +SHORT_NAMES = NO + +# If the JAVADOC_AUTOBRIEF tag is set to YES then doxygen will interpret the +# first line (until the first dot) of a Javadoc-style comment as the brief +# description. If set to NO, the Javadoc-style will behave just like regular Qt- +# style comments (thus requiring an explicit @brief command for a brief +# description.) +# The default value is: NO. + +JAVADOC_AUTOBRIEF = NO + +# If the QT_AUTOBRIEF tag is set to YES then doxygen will interpret the first +# line (until the first dot) of a Qt-style comment as the brief description. If +# set to NO, the Qt-style will behave just like regular Qt-style comments (thus +# requiring an explicit \brief command for a brief description.) +# The default value is: NO. + +QT_AUTOBRIEF = NO + +# The MULTILINE_CPP_IS_BRIEF tag can be set to YES to make doxygen treat a +# multi-line C++ special comment block (i.e. a block of //! or /// comments) as +# a brief description. This used to be the default behavior. The new default is +# to treat a multi-line C++ comment block as a detailed description. Set this +# tag to YES if you prefer the old behavior instead. +# +# Note that setting this tag to YES also means that rational rose comments are +# not recognized any more. +# The default value is: NO. + +MULTILINE_CPP_IS_BRIEF = NO + +# If the INHERIT_DOCS tag is set to YES then an undocumented member inherits the +# documentation from any documented member that it re-implements. +# The default value is: YES. + +INHERIT_DOCS = YES + +# If the SEPARATE_MEMBER_PAGES tag is set to YES, then doxygen will produce a +# new page for each member. If set to NO, the documentation of a member will be +# part of the file/class/namespace that contains it. +# The default value is: NO. + +SEPARATE_MEMBER_PAGES = NO + +# The TAB_SIZE tag can be used to set the number of spaces in a tab. Doxygen +# uses this value to replace tabs by spaces in code fragments. +# Minimum value: 1, maximum value: 16, default value: 4. + +TAB_SIZE = 4 + +# This tag can be used to specify a number of aliases that act as commands in +# the documentation. An alias has the form: +# name=value +# For example adding +# "sideeffect=@par Side Effects:\n" +# will allow you to put the command \sideeffect (or @sideeffect) in the +# documentation, which will result in a user-defined paragraph with heading +# "Side Effects:". You can put \n's in the value part of an alias to insert +# newlines. + +ALIASES = "handlers=\name Handlers" \ + "vhandlers=\name Virtual handlers" \ + "events=\name Events" \ + "ioparams=\name Configurable parameters" + +# This tag can be used to specify a number of word-keyword mappings (TCL only). +# A mapping has the form "name=value". For example adding "class=itcl::class" +# will allow you to use the command class in the itcl::class meaning. + +TCL_SUBST = + +# Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C sources +# only. Doxygen will then generate output that is more tailored for C. For +# instance, some of the names that are used will be different. The list of all +# members will be omitted, etc. +# The default value is: NO. + +OPTIMIZE_OUTPUT_FOR_C = NO + +# Set the OPTIMIZE_OUTPUT_JAVA tag to YES if your project consists of Java or +# Python sources only. Doxygen will then generate output that is more tailored +# for that language. For instance, namespaces will be presented as packages, +# qualified scopes will look different, etc. +# The default value is: NO. + +OPTIMIZE_OUTPUT_JAVA = NO + +# Set the OPTIMIZE_FOR_FORTRAN tag to YES if your project consists of Fortran +# sources. Doxygen will then generate output that is tailored for Fortran. +# The default value is: NO. + +OPTIMIZE_FOR_FORTRAN = NO + +# Set the OPTIMIZE_OUTPUT_VHDL tag to YES if your project consists of VHDL +# sources. Doxygen will then generate output that is tailored for VHDL. +# The default value is: NO. + +OPTIMIZE_OUTPUT_VHDL = NO + +# Doxygen selects the parser to use depending on the extension of the files it +# parses. With this tag you can assign which parser to use for a given +# extension. Doxygen has a built-in mapping, but you can override or extend it +# using this tag. The format is ext=language, where ext is a file extension, and +# language is one of the parsers supported by doxygen: IDL, Java, Javascript, +# C#, C, C++, D, PHP, Objective-C, Python, Fortran, VHDL. For instance to make +# doxygen treat .inc files as Fortran files (default is PHP), and .f files as C +# (default is Fortran), use: inc=Fortran f=C. +# +# Note For files without extension you can use no_extension as a placeholder. +# +# Note that for custom extensions you also need to set FILE_PATTERNS otherwise +# the files are not read by doxygen. + +EXTENSION_MAPPING = + +# If the MARKDOWN_SUPPORT tag is enabled then doxygen pre-processes all comments +# according to the Markdown format, which allows for more readable +# documentation. See http://daringfireball.net/projects/markdown/ for details. +# The output of markdown processing is further processed by doxygen, so you can +# mix doxygen, HTML, and XML commands with Markdown formatting. Disable only in +# case of backward compatibilities issues. +# The default value is: YES. + +MARKDOWN_SUPPORT = YES + +# When enabled doxygen tries to link words that correspond to documented +# classes, or namespaces to their corresponding documentation. Such a link can +# be prevented in individual cases by by putting a % sign in front of the word +# or globally by setting AUTOLINK_SUPPORT to NO. +# The default value is: YES. + +AUTOLINK_SUPPORT = YES + +# If you use STL classes (i.e. std::string, std::vector, etc.) but do not want +# to include (a tag file for) the STL sources as input, then you should set this +# tag to YES in order to let doxygen match functions declarations and +# definitions whose arguments contain STL classes (e.g. func(std::string); +# versus func(std::string) {}). This also make the inheritance and collaboration +# diagrams that involve STL classes more complete and accurate. +# The default value is: NO. + +BUILTIN_STL_SUPPORT = NO + +# If you use Microsoft's C++/CLI language, you should set this option to YES to +# enable parsing support. +# The default value is: NO. + +CPP_CLI_SUPPORT = NO + +# Set the SIP_SUPPORT tag to YES if your project consists of sip (see: +# http://www.riverbankcomputing.co.uk/software/sip/intro) sources only. Doxygen +# will parse them like normal C++ but will assume all classes use public instead +# of private inheritance when no explicit protection keyword is present. +# The default value is: NO. + +SIP_SUPPORT = NO + +# For Microsoft's IDL there are propget and propput attributes to indicate +# getter and setter methods for a property. Setting this option to YES will make +# doxygen to replace the get and set methods by a property in the documentation. +# This will only work if the methods are indeed getting or setting a simple +# type. If this is not the case, or you want to show the methods anyway, you +# should set this option to NO. +# The default value is: YES. + +IDL_PROPERTY_SUPPORT = NO + +# If member grouping is used in the documentation and the DISTRIBUTE_GROUP_DOC +# tag is set to YES, then doxygen will reuse the documentation of the first +# member in the group (if any) for the other members of the group. By default +# all members of a group must be documented explicitly. +# The default value is: NO. + +DISTRIBUTE_GROUP_DOC = NO + +# Set the SUBGROUPING tag to YES to allow class member groups of the same type +# (for instance a group of public functions) to be put as a subgroup of that +# type (e.g. under the Public Functions section). Set it to NO to prevent +# subgrouping. Alternatively, this can be done per class using the +# \nosubgrouping command. +# The default value is: YES. + +SUBGROUPING = NO + +# When the INLINE_GROUPED_CLASSES tag is set to YES, classes, structs and unions +# are shown inside the group in which they are included (e.g. using \ingroup) +# instead of on a separate page (for HTML and Man pages) or section (for LaTeX +# and RTF). +# +# Note that this feature does not work in combination with +# SEPARATE_MEMBER_PAGES. +# The default value is: NO. + +INLINE_GROUPED_CLASSES = NO + +# When the INLINE_SIMPLE_STRUCTS tag is set to YES, structs, classes, and unions +# with only public data fields or simple typedef fields will be shown inline in +# the documentation of the scope in which they are defined (i.e. file, +# namespace, or group documentation), provided this scope is documented. If set +# to NO, structs, classes, and unions are shown on a separate page (for HTML and +# Man pages) or section (for LaTeX and RTF). +# The default value is: NO. + +INLINE_SIMPLE_STRUCTS = NO + +# When TYPEDEF_HIDES_STRUCT tag is enabled, a typedef of a struct, union, or +# enum is documented as struct, union, or enum with the name of the typedef. So +# typedef struct TypeS {} TypeT, will appear in the documentation as a struct +# with name TypeT. When disabled the typedef will appear as a member of a file, +# namespace, or class. And the struct will be named TypeS. This can typically be +# useful for C code in case the coding convention dictates that all compound +# types are typedef'ed and only the typedef is referenced, never the tag name. +# The default value is: NO. + +TYPEDEF_HIDES_STRUCT = NO + +# The size of the symbol lookup cache can be set using LOOKUP_CACHE_SIZE. This +# cache is used to resolve symbols given their name and scope. Since this can be +# an expensive process and often the same symbol appears multiple times in the +# code, doxygen keeps a cache of pre-resolved symbols. If the cache is too small +# doxygen will become slower. If the cache is too large, memory is wasted. The +# cache size is given by this formula: 2^(16+LOOKUP_CACHE_SIZE). The valid range +# is 0..9, the default is 0, corresponding to a cache size of 2^16=65536 +# symbols. At the end of a run doxygen will report the cache usage and suggest +# the optimal cache size from a speed point of view. +# Minimum value: 0, maximum value: 9, default value: 0. + +LOOKUP_CACHE_SIZE = 0 + +#--------------------------------------------------------------------------- +# Build related configuration options +#--------------------------------------------------------------------------- + +# If the EXTRACT_ALL tag is set to YES doxygen will assume all entities in +# documentation are documented, even if no documentation was available. Private +# class members and static file members will be hidden unless the +# EXTRACT_PRIVATE respectively EXTRACT_STATIC tags are set to YES. +# Note: This will also disable the warnings about undocumented members that are +# normally produced when WARNINGS is set to YES. +# The default value is: NO. + +EXTRACT_ALL = NO + +# If the EXTRACT_PRIVATE tag is set to YES all private members of a class will +# be included in the documentation. +# The default value is: NO. + +EXTRACT_PRIVATE = NO + +# If the EXTRACT_PACKAGE tag is set to YES all members with package or internal +# scope will be included in the documentation. +# The default value is: NO. + +EXTRACT_PACKAGE = NO + +# If the EXTRACT_STATIC tag is set to YES all static members of a file will be +# included in the documentation. +# The default value is: NO. + +EXTRACT_STATIC = NO + +# If the EXTRACT_LOCAL_CLASSES tag is set to YES classes (and structs) defined +# locally in source files will be included in the documentation. If set to NO +# only classes defined in header files are included. Does not have any effect +# for Java sources. +# The default value is: YES. + +EXTRACT_LOCAL_CLASSES = YES + +# This flag is only useful for Objective-C code. When set to YES local methods, +# which are defined in the implementation section but not in the interface are +# included in the documentation. If set to NO only methods in the interface are +# included. +# The default value is: NO. + +EXTRACT_LOCAL_METHODS = YES + +# If this flag is set to YES, the members of anonymous namespaces will be +# extracted and appear in the documentation as a namespace called +# 'anonymous_namespace{file}', where file will be replaced with the base name of +# the file that contains the anonymous namespace. By default anonymous namespace +# are hidden. +# The default value is: NO. + +EXTRACT_ANON_NSPACES = NO + +# If the HIDE_UNDOC_MEMBERS tag is set to YES, doxygen will hide all +# undocumented members inside documented classes or files. If set to NO these +# members will be included in the various overviews, but no documentation +# section is generated. This option has no effect if EXTRACT_ALL is enabled. +# The default value is: NO. + +HIDE_UNDOC_MEMBERS = YES + +# If the HIDE_UNDOC_CLASSES tag is set to YES, doxygen will hide all +# undocumented classes that are normally visible in the class hierarchy. If set +# to NO these classes will be included in the various overviews. This option has +# no effect if EXTRACT_ALL is enabled. +# The default value is: NO. + +HIDE_UNDOC_CLASSES = YES + +# If the HIDE_FRIEND_COMPOUNDS tag is set to YES, doxygen will hide all friend +# (class|struct|union) declarations. If set to NO these declarations will be +# included in the documentation. +# The default value is: NO. + +HIDE_FRIEND_COMPOUNDS = YES + +# If the HIDE_IN_BODY_DOCS tag is set to YES, doxygen will hide any +# documentation blocks found inside the body of a function. If set to NO these +# blocks will be appended to the function's detailed documentation block. +# The default value is: NO. + +HIDE_IN_BODY_DOCS = NO + +# The INTERNAL_DOCS tag determines if documentation that is typed after a +# \internal command is included. If the tag is set to NO then the documentation +# will be excluded. Set it to YES to include the internal documentation. +# The default value is: NO. + +INTERNAL_DOCS = NO + +# If the CASE_SENSE_NAMES tag is set to NO then doxygen will only generate file +# names in lower-case letters. If set to YES upper-case letters are also +# allowed. This is useful if you have classes or files whose names only differ +# in case and if your file system supports case sensitive file names. Windows +# and Mac users are advised to set this option to NO. +# The default value is: system dependent. + +CASE_SENSE_NAMES = NO + +# If the HIDE_SCOPE_NAMES tag is set to NO then doxygen will show members with +# their full class and namespace scopes in the documentation. If set to YES the +# scope will be hidden. +# The default value is: NO. + +HIDE_SCOPE_NAMES = NO + +# If the SHOW_INCLUDE_FILES tag is set to YES then doxygen will put a list of +# the files that are included by a file in the documentation of that file. +# The default value is: YES. + +SHOW_INCLUDE_FILES = NO + +# If the SHOW_GROUPED_MEMB_INC tag is set to YES then Doxygen will add for each +# grouped member an include statement to the documentation, telling the reader +# which file to include in order to use the member. +# The default value is: NO. + +SHOW_GROUPED_MEMB_INC = NO + +# If the FORCE_LOCAL_INCLUDES tag is set to YES then doxygen will list include +# files with double quotes in the documentation rather than with sharp brackets. +# The default value is: NO. + +FORCE_LOCAL_INCLUDES = NO + +# If the INLINE_INFO tag is set to YES then a tag [inline] is inserted in the +# documentation for inline members. +# The default value is: YES. + +INLINE_INFO = YES + +# If the SORT_MEMBER_DOCS tag is set to YES then doxygen will sort the +# (detailed) documentation of file and class members alphabetically by member +# name. If set to NO the members will appear in declaration order. +# The default value is: YES. + +SORT_MEMBER_DOCS = NO + +# If the SORT_BRIEF_DOCS tag is set to YES then doxygen will sort the brief +# descriptions of file, namespace and class members alphabetically by member +# name. If set to NO the members will appear in declaration order. Note that +# this will also influence the order of the classes in the class list. +# The default value is: NO. + +SORT_BRIEF_DOCS = NO + +# If the SORT_MEMBERS_CTORS_1ST tag is set to YES then doxygen will sort the +# (brief and detailed) documentation of class members so that constructors and +# destructors are listed first. If set to NO the constructors will appear in the +# respective orders defined by SORT_BRIEF_DOCS and SORT_MEMBER_DOCS. +# Note: If SORT_BRIEF_DOCS is set to NO this option is ignored for sorting brief +# member documentation. +# Note: If SORT_MEMBER_DOCS is set to NO this option is ignored for sorting +# detailed member documentation. +# The default value is: NO. + +SORT_MEMBERS_CTORS_1ST = NO + +# If the SORT_GROUP_NAMES tag is set to YES then doxygen will sort the hierarchy +# of group names into alphabetical order. If set to NO the group names will +# appear in their defined order. +# The default value is: NO. + +SORT_GROUP_NAMES = NO + +# If the SORT_BY_SCOPE_NAME tag is set to YES, the class list will be sorted by +# fully-qualified names, including namespaces. If set to NO, the class list will +# be sorted only by class name, not including the namespace part. +# Note: This option is not very useful if HIDE_SCOPE_NAMES is set to YES. +# Note: This option applies only to the class list, not to the alphabetical +# list. +# The default value is: NO. + +SORT_BY_SCOPE_NAME = NO + +# If the STRICT_PROTO_MATCHING option is enabled and doxygen fails to do proper +# type resolution of all parameters of a function it will reject a match between +# the prototype and the implementation of a member function even if there is +# only one candidate or it is obvious which candidate to choose by doing a +# simple string match. By disabling STRICT_PROTO_MATCHING doxygen will still +# accept a match between prototype and implementation in such cases. +# The default value is: NO. + +STRICT_PROTO_MATCHING = NO + +# The GENERATE_TODOLIST tag can be used to enable ( YES) or disable ( NO) the +# todo list. This list is created by putting \todo commands in the +# documentation. +# The default value is: YES. + +GENERATE_TODOLIST = YES + +# The GENERATE_TESTLIST tag can be used to enable ( YES) or disable ( NO) the +# test list. This list is created by putting \test commands in the +# documentation. +# The default value is: YES. + +GENERATE_TESTLIST = YES + +# The GENERATE_BUGLIST tag can be used to enable ( YES) or disable ( NO) the bug +# list. This list is created by putting \bug commands in the documentation. +# The default value is: YES. + +GENERATE_BUGLIST = YES + +# The GENERATE_DEPRECATEDLIST tag can be used to enable ( YES) or disable ( NO) +# the deprecated list. This list is created by putting \deprecated commands in +# the documentation. +# The default value is: YES. + +GENERATE_DEPRECATEDLIST= YES + +# The ENABLED_SECTIONS tag can be used to enable conditional documentation +# sections, marked by \if ... \endif and \cond +# ... \endcond blocks. + +ENABLED_SECTIONS = + +# The MAX_INITIALIZER_LINES tag determines the maximum number of lines that the +# initial value of a variable or macro / define can have for it to appear in the +# documentation. If the initializer consists of more lines than specified here +# it will be hidden. Use a value of 0 to hide initializers completely. The +# appearance of the value of individual variables and macros / defines can be +# controlled using \showinitializer or \hideinitializer command in the +# documentation regardless of this setting. +# Minimum value: 0, maximum value: 10000, default value: 30. + +MAX_INITIALIZER_LINES = 30 + +# Set the SHOW_USED_FILES tag to NO to disable the list of files generated at +# the bottom of the documentation of classes and structs. If set to YES the list +# will mention the files that were used to generate the documentation. +# The default value is: YES. + +SHOW_USED_FILES = NO + +# Set the SHOW_FILES tag to NO to disable the generation of the Files page. This +# will remove the Files entry from the Quick Index and from the Folder Tree View +# (if specified). +# The default value is: YES. + +SHOW_FILES = YES + +# Set the SHOW_NAMESPACES tag to NO to disable the generation of the Namespaces +# page. This will remove the Namespaces entry from the Quick Index and from the +# Folder Tree View (if specified). +# The default value is: YES. + +SHOW_NAMESPACES = YES + +# The FILE_VERSION_FILTER tag can be used to specify a program or script that +# doxygen should invoke to get the current version for each file (typically from +# the version control system). Doxygen will invoke the program by executing (via +# popen()) the command command input-file, where command is the value of the +# FILE_VERSION_FILTER tag, and input-file is the name of an input file provided +# by doxygen. Whatever the program writes to standard output is used as the file +# version. For an example see the documentation. + +FILE_VERSION_FILTER = + +# The LAYOUT_FILE tag can be used to specify a layout file which will be parsed +# by doxygen. The layout file controls the global structure of the generated +# output files in an output format independent way. To create the layout file +# that represents doxygen's defaults, run doxygen with the -l option. You can +# optionally specify a file name after the option, if omitted DoxygenLayout.xml +# will be used as the name of the layout file. +# +# Note that if you run doxygen from a directory containing a file called +# DoxygenLayout.xml, doxygen will parse it automatically even if the LAYOUT_FILE +# tag is left empty. + +LAYOUT_FILE = + +# The CITE_BIB_FILES tag can be used to specify one or more bib files containing +# the reference definitions. This must be a list of .bib files. The .bib +# extension is automatically appended if omitted. This requires the bibtex tool +# to be installed. See also http://en.wikipedia.org/wiki/BibTeX for more info. +# For LaTeX the style of the bibliography can be controlled using +# LATEX_BIB_STYLE. To use this feature you need bibtex and perl available in the +# search path. Do not use file names with spaces, bibtex cannot handle them. See +# also \cite for info how to create references. + +CITE_BIB_FILES = + +#--------------------------------------------------------------------------- +# Configuration options related to warning and progress messages +#--------------------------------------------------------------------------- + +# The QUIET tag can be used to turn on/off the messages that are generated to +# standard output by doxygen. If QUIET is set to YES this implies that the +# messages are off. +# The default value is: NO. + +QUIET = NO + +# The WARNINGS tag can be used to turn on/off the warning messages that are +# generated to standard error ( stderr) by doxygen. If WARNINGS is set to YES +# this implies that the warnings are on. +# +# Tip: Turn warnings on while writing the documentation. +# The default value is: YES. + +WARNINGS = YES + +# If the WARN_IF_UNDOCUMENTED tag is set to YES, then doxygen will generate +# warnings for undocumented members. If EXTRACT_ALL is set to YES then this flag +# will automatically be disabled. +# The default value is: YES. + +WARN_IF_UNDOCUMENTED = YES + +# If the WARN_IF_DOC_ERROR tag is set to YES, doxygen will generate warnings for +# potential errors in the documentation, such as not documenting some parameters +# in a documented function, or documenting parameters that don't exist or using +# markup commands wrongly. +# The default value is: YES. + +WARN_IF_DOC_ERROR = YES + +# This WARN_NO_PARAMDOC option can be enabled to get warnings for functions that +# are documented, but have no documentation for their parameters or return +# value. If set to NO doxygen will only warn about wrong or incomplete parameter +# documentation, but not about the absence of documentation. +# The default value is: NO. + +WARN_NO_PARAMDOC = NO + +# The WARN_FORMAT tag determines the format of the warning messages that doxygen +# can produce. The string should contain the $file, $line, and $text tags, which +# will be replaced by the file and line number from which the warning originated +# and the warning text. Optionally the format may contain $version, which will +# be replaced by the version of the file (if it could be obtained via +# FILE_VERSION_FILTER) +# The default value is: $file:$line: $text. + +WARN_FORMAT = "$file:$line: $text" + +# The WARN_LOGFILE tag can be used to specify a file to which warning and error +# messages should be written. If left blank the output is written to standard +# error (stderr). + +WARN_LOGFILE = + +#--------------------------------------------------------------------------- +# Configuration options related to the input files +#--------------------------------------------------------------------------- + +# The INPUT tag is used to specify the files and/or directories that contain +# documented source files. You may enter file names like myfile.cpp or +# directories like /usr/src/myproject. Separate the files or directories with +# spaces. +# Note: If this tag is empty the current directory is searched. + +INPUT = . + +# This tag can be used to specify the character encoding of the source files +# that doxygen parses. Internally doxygen uses the UTF-8 encoding. Doxygen uses +# libiconv (or the iconv built into libc) for the transcoding. See the libiconv +# documentation (see: http://www.gnu.org/software/libiconv) for the list of +# possible encodings. +# The default value is: UTF-8. + +INPUT_ENCODING = UTF-8 + +# If the value of the INPUT tag contains directories, you can use the +# FILE_PATTERNS tag to specify one or more wildcard patterns (like *.cpp and +# *.h) to filter out the source-files in the directories. If left blank the +# following patterns are tested:*.c, *.cc, *.cxx, *.cpp, *.c++, *.java, *.ii, +# *.ixx, *.ipp, *.i++, *.inl, *.idl, *.ddl, *.odl, *.h, *.hh, *.hxx, *.hpp, +# *.h++, *.cs, *.d, *.php, *.php4, *.php5, *.phtml, *.inc, *.m, *.markdown, +# *.md, *.mm, *.dox, *.py, *.f90, *.f, *.for, *.tcl, *.vhd, *.vhdl, *.ucf, +# *.qsf, *.as and *.js. + +FILE_PATTERNS = *.c \ + *.cc \ + *.cxx \ + *.cpp \ + *.c++ \ + *.d \ + *.java \ + *.ii \ + *.ixx \ + *.ipp \ + *.i++ \ + *.inl \ + *.h \ + *.hh \ + *.hxx \ + *.hpp \ + *.h++ \ + *.idl \ + *.odl \ + *.cs \ + *.php \ + *.php3 \ + *.inc \ + *.m \ + *.markdown \ + *.md \ + *.mm \ + *.dox \ + *.py \ + *.f90 \ + *.f \ + *.for \ + *.vhd \ + *.vhdl + +# The RECURSIVE tag can be used to specify whether or not subdirectories should +# be searched for input files as well. +# The default value is: NO. + +RECURSIVE = NO + +# The EXCLUDE tag can be used to specify files and/or directories that should be +# excluded from the INPUT source files. This way you can easily exclude a +# subdirectory from a directory tree whose root is specified with the INPUT tag. +# +# Note that relative paths are relative to the directory from which doxygen is +# run. + +EXCLUDE = + +# The EXCLUDE_SYMLINKS tag can be used to select whether or not files or +# directories that are symbolic links (a Unix file system feature) are excluded +# from the input. +# The default value is: NO. + +EXCLUDE_SYMLINKS = NO + +# If the value of the INPUT tag contains directories, you can use the +# EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude +# certain files from those directories. +# +# Note that the wildcards are matched against the file with absolute path, so to +# exclude all test directories for example use the pattern */test/* + +EXCLUDE_PATTERNS = + +# The EXCLUDE_SYMBOLS tag can be used to specify one or more symbol names +# (namespaces, classes, functions, etc.) that should be excluded from the +# output. The symbol name can be a fully qualified name, a word, or if the +# wildcard * is used, a substring. Examples: ANamespace, AClass, +# AClass::ANamespace, ANamespace::*Test +# +# Note that the wildcards are matched against the file with absolute path, so to +# exclude all test directories use the pattern */test/* + +EXCLUDE_SYMBOLS = + +# The EXAMPLE_PATH tag can be used to specify one or more files or directories +# that contain example code fragments that are included (see the \include +# command). + +EXAMPLE_PATH = doc/examples + +# If the value of the EXAMPLE_PATH tag contains directories, you can use the +# EXAMPLE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp and +# *.h) to filter out the source-files in the directories. If left blank all +# files are included. + +EXAMPLE_PATTERNS = * + +# If the EXAMPLE_RECURSIVE tag is set to YES then subdirectories will be +# searched for input files to be used with the \include or \dontinclude commands +# irrespective of the value of the RECURSIVE tag. +# The default value is: NO. + +EXAMPLE_RECURSIVE = NO + +# The IMAGE_PATH tag can be used to specify one or more files or directories +# that contain images that are to be included in the documentation (see the +# \image command). + +IMAGE_PATH = doc/images + +# The INPUT_FILTER tag can be used to specify a program that doxygen should +# invoke to filter for each input file. Doxygen will invoke the filter program +# by executing (via popen()) the command: +# +# +# +# where is the value of the INPUT_FILTER tag, and is the +# name of an input file. Doxygen will then use the output that the filter +# program writes to standard output. If FILTER_PATTERNS is specified, this tag +# will be ignored. +# +# Note that the filter must not add or remove lines; it is applied before the +# code is scanned, but not when the output code is generated. If lines are added +# or removed, the anchors will not be placed correctly. + +INPUT_FILTER = + +# The FILTER_PATTERNS tag can be used to specify filters on a per file pattern +# basis. Doxygen will compare the file name with each pattern and apply the +# filter if there is a match. The filters are a list of the form: pattern=filter +# (like *.cpp=my_cpp_filter). See INPUT_FILTER for further information on how +# filters are used. If the FILTER_PATTERNS tag is empty or if none of the +# patterns match the file name, INPUT_FILTER is applied. + +FILTER_PATTERNS = + +# If the FILTER_SOURCE_FILES tag is set to YES, the input filter (if set using +# INPUT_FILTER ) will also be used to filter the input files that are used for +# producing the source files to browse (i.e. when SOURCE_BROWSER is set to YES). +# The default value is: NO. + +FILTER_SOURCE_FILES = NO + +# The FILTER_SOURCE_PATTERNS tag can be used to specify source filters per file +# pattern. A pattern will override the setting for FILTER_PATTERN (if any) and +# it is also possible to disable source filtering for a specific pattern using +# *.ext= (so without naming a filter). +# This tag requires that the tag FILTER_SOURCE_FILES is set to YES. + +FILTER_SOURCE_PATTERNS = + +# If the USE_MDFILE_AS_MAINPAGE tag refers to the name of a markdown file that +# is part of the input, its contents will be placed on the main page +# (index.html). This can be useful if you have a project on for instance GitHub +# and want to reuse the introduction page also for the doxygen output. + +USE_MDFILE_AS_MAINPAGE = + +#--------------------------------------------------------------------------- +# Configuration options related to source browsing +#--------------------------------------------------------------------------- + +# If the SOURCE_BROWSER tag is set to YES then a list of source files will be +# generated. Documented entities will be cross-referenced with these sources. +# +# Note: To get rid of all source code in the generated output, make sure that +# also VERBATIM_HEADERS is set to NO. +# The default value is: NO. + +SOURCE_BROWSER = NO + +# Setting the INLINE_SOURCES tag to YES will include the body of functions, +# classes and enums directly into the documentation. +# The default value is: NO. + +INLINE_SOURCES = NO + +# Setting the STRIP_CODE_COMMENTS tag to YES will instruct doxygen to hide any +# special comment blocks from generated source code fragments. Normal C, C++ and +# Fortran comments will always remain visible. +# The default value is: YES. + +STRIP_CODE_COMMENTS = YES + +# If the REFERENCED_BY_RELATION tag is set to YES then for each documented +# function all documented functions referencing it will be listed. +# The default value is: NO. + +REFERENCED_BY_RELATION = NO + +# If the REFERENCES_RELATION tag is set to YES then for each documented function +# all documented entities called/used by that function will be listed. +# The default value is: NO. + +REFERENCES_RELATION = NO + +# If the REFERENCES_LINK_SOURCE tag is set to YES and SOURCE_BROWSER tag is set +# to YES, then the hyperlinks from functions in REFERENCES_RELATION and +# REFERENCED_BY_RELATION lists will link to the source code. Otherwise they will +# link to the documentation. +# The default value is: YES. + +REFERENCES_LINK_SOURCE = YES + +# If SOURCE_TOOLTIPS is enabled (the default) then hovering a hyperlink in the +# source code will show a tooltip with additional information such as prototype, +# brief description and links to the definition and documentation. Since this +# will make the HTML file larger and loading of large files a bit slower, you +# can opt to disable this feature. +# The default value is: YES. +# This tag requires that the tag SOURCE_BROWSER is set to YES. + +SOURCE_TOOLTIPS = YES + +# If the USE_HTAGS tag is set to YES then the references to source code will +# point to the HTML generated by the htags(1) tool instead of doxygen built-in +# source browser. The htags tool is part of GNU's global source tagging system +# (see http://www.gnu.org/software/global/global.html). You will need version +# 4.8.6 or higher. +# +# To use it do the following: +# - Install the latest version of global +# - Enable SOURCE_BROWSER and USE_HTAGS in the config file +# - Make sure the INPUT points to the root of the source tree +# - Run doxygen as normal +# +# Doxygen will invoke htags (and that will in turn invoke gtags), so these +# tools must be available from the command line (i.e. in the search path). +# +# The result: instead of the source browser generated by doxygen, the links to +# source code will now point to the output of htags. +# The default value is: NO. +# This tag requires that the tag SOURCE_BROWSER is set to YES. + +USE_HTAGS = NO + +# If the VERBATIM_HEADERS tag is set the YES then doxygen will generate a +# verbatim copy of the header file for each class for which an include is +# specified. Set to NO to disable this. +# See also: Section \class. +# The default value is: YES. + +VERBATIM_HEADERS = NO + +#--------------------------------------------------------------------------- +# Configuration options related to the alphabetical class index +#--------------------------------------------------------------------------- + +# If the ALPHABETICAL_INDEX tag is set to YES, an alphabetical index of all +# compounds will be generated. Enable this if the project contains a lot of +# classes, structs, unions or interfaces. +# The default value is: YES. + +ALPHABETICAL_INDEX = YES + +# The COLS_IN_ALPHA_INDEX tag can be used to specify the number of columns in +# which the alphabetical index list will be split. +# Minimum value: 1, maximum value: 20, default value: 5. +# This tag requires that the tag ALPHABETICAL_INDEX is set to YES. + +COLS_IN_ALPHA_INDEX = 5 + +# In case all classes in a project start with a common prefix, all classes will +# be put under the same header in the alphabetical index. The IGNORE_PREFIX tag +# can be used to specify a prefix (or a list of prefixes) that should be ignored +# while generating the index headers. +# This tag requires that the tag ALPHABETICAL_INDEX is set to YES. + +IGNORE_PREFIX = + +#--------------------------------------------------------------------------- +# Configuration options related to the HTML output +#--------------------------------------------------------------------------- + +# If the GENERATE_HTML tag is set to YES doxygen will generate HTML output +# The default value is: YES. + +GENERATE_HTML = YES + +# The HTML_OUTPUT tag is used to specify where the HTML docs will be put. If a +# relative path is entered the value of OUTPUT_DIRECTORY will be put in front of +# it. +# The default directory is: html. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_OUTPUT = html + +# The HTML_FILE_EXTENSION tag can be used to specify the file extension for each +# generated HTML page (for example: .htm, .php, .asp). +# The default value is: .html. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_FILE_EXTENSION = .html + +# The HTML_HEADER tag can be used to specify a user-defined HTML header file for +# each generated HTML page. If the tag is left blank doxygen will generate a +# standard header. +# +# To get valid HTML the header file that includes any scripts and style sheets +# that doxygen needs, which is dependent on the configuration options used (e.g. +# the setting GENERATE_TREEVIEW). It is highly recommended to start with a +# default header using +# doxygen -w html new_header.html new_footer.html new_stylesheet.css +# YourConfigFile +# and then modify the file new_header.html. See also section "Doxygen usage" +# for information on how to generate the default header that doxygen normally +# uses. +# Note: The header is subject to change so you typically have to regenerate the +# default header when upgrading to a newer version of doxygen. For a description +# of the possible markers and block names see the documentation. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_HEADER = + +# The HTML_FOOTER tag can be used to specify a user-defined HTML footer for each +# generated HTML page. If the tag is left blank doxygen will generate a standard +# footer. See HTML_HEADER for more information on how to generate a default +# footer and what special commands can be used inside the footer. See also +# section "Doxygen usage" for information on how to generate the default footer +# that doxygen normally uses. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_FOOTER = + +# The HTML_STYLESHEET tag can be used to specify a user-defined cascading style +# sheet that is used by each HTML page. It can be used to fine-tune the look of +# the HTML output. If left blank doxygen will generate a default style sheet. +# See also section "Doxygen usage" for information on how to generate the style +# sheet that doxygen normally uses. +# Note: It is recommended to use HTML_EXTRA_STYLESHEET instead of this tag, as +# it is more robust and this tag (HTML_STYLESHEET) will in the future become +# obsolete. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_STYLESHEET = + +# The HTML_EXTRA_STYLESHEET tag can be used to specify an additional user- +# defined cascading style sheet that is included after the standard style sheets +# created by doxygen. Using this option one can overrule certain style aspects. +# This is preferred over using HTML_STYLESHEET since it does not replace the +# standard style sheet and is therefor more robust against future updates. +# Doxygen will copy the style sheet file to the output directory. For an example +# see the documentation. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_EXTRA_STYLESHEET = + +# The HTML_EXTRA_FILES tag can be used to specify one or more extra images or +# other source files which should be copied to the HTML output directory. Note +# that these files will be copied to the base HTML output directory. Use the +# $relpath^ marker in the HTML_HEADER and/or HTML_FOOTER files to load these +# files. In the HTML_STYLESHEET file, use the file name only. Also note that the +# files will be copied as-is; there are no commands or markers available. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_EXTRA_FILES = + +# The HTML_COLORSTYLE_HUE tag controls the color of the HTML output. Doxygen +# will adjust the colors in the stylesheet and background images according to +# this color. Hue is specified as an angle on a colorwheel, see +# http://en.wikipedia.org/wiki/Hue for more information. For instance the value +# 0 represents red, 60 is yellow, 120 is green, 180 is cyan, 240 is blue, 300 +# purple, and 360 is red again. +# Minimum value: 0, maximum value: 359, default value: 220. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_COLORSTYLE_HUE = 246 + +# The HTML_COLORSTYLE_SAT tag controls the purity (or saturation) of the colors +# in the HTML output. For a value of 0 the output will use grayscales only. A +# value of 255 will produce the most vivid colors. +# Minimum value: 0, maximum value: 255, default value: 100. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_COLORSTYLE_SAT = 79 + +# The HTML_COLORSTYLE_GAMMA tag controls the gamma correction applied to the +# luminance component of the colors in the HTML output. Values below 100 +# gradually make the output lighter, whereas values above 100 make the output +# darker. The value divided by 100 is the actual gamma applied, so 80 represents +# a gamma of 0.8, The value 220 represents a gamma of 2.2, and 100 does not +# change the gamma. +# Minimum value: 40, maximum value: 240, default value: 80. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_COLORSTYLE_GAMMA = 75 + +# If the HTML_TIMESTAMP tag is set to YES then the footer of each generated HTML +# page will contain the date and time when the page was generated. Setting this +# to NO can help when comparing the output of multiple runs. +# The default value is: YES. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_TIMESTAMP = YES + +# If the HTML_DYNAMIC_SECTIONS tag is set to YES then the generated HTML +# documentation will contain sections that can be hidden and shown after the +# page has loaded. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_DYNAMIC_SECTIONS = YES + +# With HTML_INDEX_NUM_ENTRIES one can control the preferred number of entries +# shown in the various tree structured indices initially; the user can expand +# and collapse entries dynamically later on. Doxygen will expand the tree to +# such a level that at most the specified number of entries are visible (unless +# a fully collapsed tree already exceeds this amount). So setting the number of +# entries 1 will produce a full collapsed tree by default. 0 is a special value +# representing an infinite number of entries and will result in a full expanded +# tree by default. +# Minimum value: 0, maximum value: 9999, default value: 100. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_INDEX_NUM_ENTRIES = 100 + +# If the GENERATE_DOCSET tag is set to YES, additional index files will be +# generated that can be used as input for Apple's Xcode 3 integrated development +# environment (see: http://developer.apple.com/tools/xcode/), introduced with +# OSX 10.5 (Leopard). To create a documentation set, doxygen will generate a +# Makefile in the HTML output directory. Running make will produce the docset in +# that directory and running make install will install the docset in +# ~/Library/Developer/Shared/Documentation/DocSets so that Xcode will find it at +# startup. See http://developer.apple.com/tools/creatingdocsetswithdoxygen.html +# for more information. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +GENERATE_DOCSET = NO + +# This tag determines the name of the docset feed. A documentation feed provides +# an umbrella under which multiple documentation sets from a single provider +# (such as a company or product suite) can be grouped. +# The default value is: Doxygen generated docs. +# This tag requires that the tag GENERATE_DOCSET is set to YES. + +DOCSET_FEEDNAME = "Doxygen generated docs" + +# This tag specifies a string that should uniquely identify the documentation +# set bundle. This should be a reverse domain-name style string, e.g. +# com.mycompany.MyDocSet. Doxygen will append .docset to the name. +# The default value is: org.doxygen.Project. +# This tag requires that the tag GENERATE_DOCSET is set to YES. + +DOCSET_BUNDLE_ID = org.doxygen.Project + +# The DOCSET_PUBLISHER_ID tag specifies a string that should uniquely identify +# the documentation publisher. This should be a reverse domain-name style +# string, e.g. com.mycompany.MyDocSet.documentation. +# The default value is: org.doxygen.Publisher. +# This tag requires that the tag GENERATE_DOCSET is set to YES. + +DOCSET_PUBLISHER_ID = org.doxygen.Publisher + +# The DOCSET_PUBLISHER_NAME tag identifies the documentation publisher. +# The default value is: Publisher. +# This tag requires that the tag GENERATE_DOCSET is set to YES. + +DOCSET_PUBLISHER_NAME = Publisher + +# If the GENERATE_HTMLHELP tag is set to YES then doxygen generates three +# additional HTML index files: index.hhp, index.hhc, and index.hhk. The +# index.hhp is a project file that can be read by Microsoft's HTML Help Workshop +# (see: http://www.microsoft.com/en-us/download/details.aspx?id=21138) on +# Windows. +# +# The HTML Help Workshop contains a compiler that can convert all HTML output +# generated by doxygen into a single compiled HTML file (.chm). Compiled HTML +# files are now used as the Windows 98 help format, and will replace the old +# Windows help format (.hlp) on all Windows platforms in the future. Compressed +# HTML files also contain an index, a table of contents, and you can search for +# words in the documentation. The HTML workshop also contains a viewer for +# compressed HTML files. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +GENERATE_HTMLHELP = NO + +# The CHM_FILE tag can be used to specify the file name of the resulting .chm +# file. You can add a path in front of the file if the result should not be +# written to the html output directory. +# This tag requires that the tag GENERATE_HTMLHELP is set to YES. + +CHM_FILE = + +# The HHC_LOCATION tag can be used to specify the location (absolute path +# including file name) of the HTML help compiler ( hhc.exe). If non-empty +# doxygen will try to run the HTML help compiler on the generated index.hhp. +# The file has to be specified with full path. +# This tag requires that the tag GENERATE_HTMLHELP is set to YES. + +HHC_LOCATION = + +# The GENERATE_CHI flag controls if a separate .chi index file is generated ( +# YES) or that it should be included in the master .chm file ( NO). +# The default value is: NO. +# This tag requires that the tag GENERATE_HTMLHELP is set to YES. + +GENERATE_CHI = NO + +# The CHM_INDEX_ENCODING is used to encode HtmlHelp index ( hhk), content ( hhc) +# and project file content. +# This tag requires that the tag GENERATE_HTMLHELP is set to YES. + +CHM_INDEX_ENCODING = + +# The BINARY_TOC flag controls whether a binary table of contents is generated ( +# YES) or a normal table of contents ( NO) in the .chm file. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTMLHELP is set to YES. + +BINARY_TOC = NO + +# The TOC_EXPAND flag can be set to YES to add extra items for group members to +# the table of contents of the HTML help documentation and to the tree view. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTMLHELP is set to YES. + +TOC_EXPAND = NO + +# If the GENERATE_QHP tag is set to YES and both QHP_NAMESPACE and +# QHP_VIRTUAL_FOLDER are set, an additional index file will be generated that +# can be used as input for Qt's qhelpgenerator to generate a Qt Compressed Help +# (.qch) of the generated HTML documentation. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +GENERATE_QHP = YES + +# If the QHG_LOCATION tag is specified, the QCH_FILE tag can be used to specify +# the file name of the resulting .qch file. The path specified is relative to +# the HTML output folder. +# This tag requires that the tag GENERATE_QHP is set to YES. + +QCH_FILE = pip.qhp + +# The QHP_NAMESPACE tag specifies the namespace to use when generating Qt Help +# Project output. For more information please see Qt Help Project / Namespace +# (see: http://qt-project.org/doc/qt-4.8/qthelpproject.html#namespace). +# The default value is: org.doxygen.Project. +# This tag requires that the tag GENERATE_QHP is set to YES. + +QHP_NAMESPACE = PIP + +# The QHP_VIRTUAL_FOLDER tag specifies the namespace to use when generating Qt +# Help Project output. For more information please see Qt Help Project / Virtual +# Folders (see: http://qt-project.org/doc/qt-4.8/qthelpproject.html#virtual- +# folders). +# The default value is: doc. +# This tag requires that the tag GENERATE_QHP is set to YES. + +QHP_VIRTUAL_FOLDER = doc + +# If the QHP_CUST_FILTER_NAME tag is set, it specifies the name of a custom +# filter to add. For more information please see Qt Help Project / Custom +# Filters (see: http://qt-project.org/doc/qt-4.8/qthelpproject.html#custom- +# filters). +# This tag requires that the tag GENERATE_QHP is set to YES. + +QHP_CUST_FILTER_NAME = + +# The QHP_CUST_FILTER_ATTRS tag specifies the list of the attributes of the +# custom filter to add. For more information please see Qt Help Project / Custom +# Filters (see: http://qt-project.org/doc/qt-4.8/qthelpproject.html#custom- +# filters). +# This tag requires that the tag GENERATE_QHP is set to YES. + +QHP_CUST_FILTER_ATTRS = + +# The QHP_SECT_FILTER_ATTRS tag specifies the list of the attributes this +# project's filter section matches. Qt Help Project / Filter Attributes (see: +# http://qt-project.org/doc/qt-4.8/qthelpproject.html#filter-attributes). +# This tag requires that the tag GENERATE_QHP is set to YES. + +QHP_SECT_FILTER_ATTRS = + +# The QHG_LOCATION tag can be used to specify the location of Qt's +# qhelpgenerator. If non-empty doxygen will try to run qhelpgenerator on the +# generated .qhp file. +# This tag requires that the tag GENERATE_QHP is set to YES. + +QHG_LOCATION = qhelpgenerator + +# If the GENERATE_ECLIPSEHELP tag is set to YES, additional index files will be +# generated, together with the HTML files, they form an Eclipse help plugin. To +# install this plugin and make it available under the help contents menu in +# Eclipse, the contents of the directory containing the HTML and XML files needs +# to be copied into the plugins directory of eclipse. The name of the directory +# within the plugins directory should be the same as the ECLIPSE_DOC_ID value. +# After copying Eclipse needs to be restarted before the help appears. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +GENERATE_ECLIPSEHELP = NO + +# A unique identifier for the Eclipse help plugin. When installing the plugin +# the directory name containing the HTML and XML files should also have this +# name. Each documentation set should have its own identifier. +# The default value is: org.doxygen.Project. +# This tag requires that the tag GENERATE_ECLIPSEHELP is set to YES. + +ECLIPSE_DOC_ID = org.doxygen.Project + +# If you want full control over the layout of the generated HTML pages it might +# be necessary to disable the index and replace it with your own. The +# DISABLE_INDEX tag can be used to turn on/off the condensed index (tabs) at top +# of each HTML page. A value of NO enables the index and the value YES disables +# it. Since the tabs in the index contain the same information as the navigation +# tree, you can set this option to YES if you also set GENERATE_TREEVIEW to YES. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +DISABLE_INDEX = NO + +# The GENERATE_TREEVIEW tag is used to specify whether a tree-like index +# structure should be generated to display hierarchical information. If the tag +# value is set to YES, a side panel will be generated containing a tree-like +# index structure (just like the one that is generated for HTML Help). For this +# to work a browser that supports JavaScript, DHTML, CSS and frames is required +# (i.e. any modern browser). Windows users are probably better off using the +# HTML help feature. Via custom stylesheets (see HTML_EXTRA_STYLESHEET) one can +# further fine-tune the look of the index. As an example, the default style +# sheet generated by doxygen has an example that shows how to put an image at +# the root of the tree instead of the PROJECT_NAME. Since the tree basically has +# the same information as the tab index, you could consider setting +# DISABLE_INDEX to YES when enabling this option. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +GENERATE_TREEVIEW = YES + +# The ENUM_VALUES_PER_LINE tag can be used to set the number of enum values that +# doxygen will group on one line in the generated HTML documentation. +# +# Note that a value of 0 will completely suppress the enum values from appearing +# in the overview section. +# Minimum value: 0, maximum value: 20, default value: 4. +# This tag requires that the tag GENERATE_HTML is set to YES. + +ENUM_VALUES_PER_LINE = 4 + +# If the treeview is enabled (see GENERATE_TREEVIEW) then this tag can be used +# to set the initial width (in pixels) of the frame in which the tree is shown. +# Minimum value: 0, maximum value: 1500, default value: 250. +# This tag requires that the tag GENERATE_HTML is set to YES. + +TREEVIEW_WIDTH = 250 + +# When the EXT_LINKS_IN_WINDOW option is set to YES doxygen will open links to +# external symbols imported via tag files in a separate window. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +EXT_LINKS_IN_WINDOW = NO + +# Use this tag to change the font size of LaTeX formulas included as images in +# the HTML documentation. When you change the font size after a successful +# doxygen run you need to manually remove any form_*.png images from the HTML +# output directory to force them to be regenerated. +# Minimum value: 8, maximum value: 50, default value: 10. +# This tag requires that the tag GENERATE_HTML is set to YES. + +FORMULA_FONTSIZE = 10 + +# Use the FORMULA_TRANPARENT tag to determine whether or not the images +# generated for formulas are transparent PNGs. Transparent PNGs are not +# supported properly for IE 6.0, but are supported on all modern browsers. +# +# Note that when changing this option you need to delete any form_*.png files in +# the HTML output directory before the changes have effect. +# The default value is: YES. +# This tag requires that the tag GENERATE_HTML is set to YES. + +FORMULA_TRANSPARENT = YES + +# Enable the USE_MATHJAX option to render LaTeX formulas using MathJax (see +# http://www.mathjax.org) which uses client side Javascript for the rendering +# instead of using prerendered bitmaps. Use this if you do not have LaTeX +# installed or if you want to formulas look prettier in the HTML output. When +# enabled you may also need to install MathJax separately and configure the path +# to it using the MATHJAX_RELPATH option. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +USE_MATHJAX = NO + +# When MathJax is enabled you can set the default output format to be used for +# the MathJax output. See the MathJax site (see: +# http://docs.mathjax.org/en/latest/output.html) for more details. +# Possible values are: HTML-CSS (which is slower, but has the best +# compatibility), NativeMML (i.e. MathML) and SVG. +# The default value is: HTML-CSS. +# This tag requires that the tag USE_MATHJAX is set to YES. + +MATHJAX_FORMAT = HTML-CSS + +# When MathJax is enabled you need to specify the location relative to the HTML +# output directory using the MATHJAX_RELPATH option. The destination directory +# should contain the MathJax.js script. For instance, if the mathjax directory +# is located at the same level as the HTML output directory, then +# MATHJAX_RELPATH should be ../mathjax. The default value points to the MathJax +# Content Delivery Network so you can quickly see the result without installing +# MathJax. However, it is strongly recommended to install a local copy of +# MathJax from http://www.mathjax.org before deployment. +# The default value is: http://cdn.mathjax.org/mathjax/latest. +# This tag requires that the tag USE_MATHJAX is set to YES. + +MATHJAX_RELPATH = http://cdn.mathjax.org/mathjax/latest + +# The MATHJAX_EXTENSIONS tag can be used to specify one or more MathJax +# extension names that should be enabled during MathJax rendering. For example +# MATHJAX_EXTENSIONS = TeX/AMSmath TeX/AMSsymbols +# This tag requires that the tag USE_MATHJAX is set to YES. + +MATHJAX_EXTENSIONS = + +# The MATHJAX_CODEFILE tag can be used to specify a file with javascript pieces +# of code that will be used on startup of the MathJax code. See the MathJax site +# (see: http://docs.mathjax.org/en/latest/output.html) for more details. For an +# example see the documentation. +# This tag requires that the tag USE_MATHJAX is set to YES. + +MATHJAX_CODEFILE = + +# When the SEARCHENGINE tag is enabled doxygen will generate a search box for +# the HTML output. The underlying search engine uses javascript and DHTML and +# should work on any modern browser. Note that when using HTML help +# (GENERATE_HTMLHELP), Qt help (GENERATE_QHP), or docsets (GENERATE_DOCSET) +# there is already a search function so this one should typically be disabled. +# For large projects the javascript based search engine can be slow, then +# enabling SERVER_BASED_SEARCH may provide a better solution. It is possible to +# search using the keyboard; to jump to the search box use + S +# (what the is depends on the OS and browser, but it is typically +# , /