diff --git a/Frameworks/CVBlob.framework/CVBlob b/Frameworks/CVBlob.framework/CVBlob deleted file mode 120000 index 8afbdd6612..0000000000 --- a/Frameworks/CVBlob.framework/CVBlob +++ /dev/null @@ -1 +0,0 @@ -Versions/A/CVBlob \ No newline at end of file diff --git a/Frameworks/CVBlob.framework/Headers b/Frameworks/CVBlob.framework/Headers deleted file mode 120000 index 0550d8afc8..0000000000 --- a/Frameworks/CVBlob.framework/Headers +++ /dev/null @@ -1 +0,0 @@ -Versions/A/Headers/ \ No newline at end of file diff --git a/Frameworks/CVBlob.framework/Versions/A/CVBlob b/Frameworks/CVBlob.framework/Versions/A/CVBlob deleted file mode 100644 index bef77a12cb..0000000000 Binary files a/Frameworks/CVBlob.framework/Versions/A/CVBlob and /dev/null differ diff --git a/Frameworks/CVBlob.framework/Versions/A/Headers/BlobContour.h b/Frameworks/CVBlob.framework/Versions/A/Headers/BlobContour.h deleted file mode 100644 index b7fbcd7d95..0000000000 --- a/Frameworks/CVBlob.framework/Versions/A/Headers/BlobContour.h +++ /dev/null @@ -1,99 +0,0 @@ -#ifndef BLOBCONTOUR_H_INCLUDED -#define BLOBCONTOUR_H_INCLUDED - - -#include "list" -#include -//#include "cxtypes.h" //AO -#include // - -//! Type of chain codes -typedef unsigned char t_chainCode; -//! Type of list of chain codes -typedef CvSeq* t_chainCodeList; -//! Type of list of points -typedef CvSeq* t_PointList; - - -//! Max order of calculated moments -#define MAX_MOMENTS_ORDER 3 - - -//! Blob contour class (in crack code) -class CBlobContour -{ - friend class CBlob; - friend class CBlobProperties; //AO - -public: - //! Constructors - CBlobContour(); - CBlobContour(CvPoint startPoint, CvMemStorage *storage ); - //! Copy constructor - CBlobContour( CBlobContour *source ); - - ~CBlobContour(); - //! Assigment operator - CBlobContour& operator=( const CBlobContour &source ); - - //! Add chain code to contour - void AddChainCode(t_chainCode code); - - //! Return freeman chain coded contour - t_chainCodeList GetChainCode() - { - return m_contour; - } - - bool IsEmpty() - { - return m_contour == NULL || m_contour->total == 0; - } - - //! Return all contour points - t_chainCodeList GetContourPoints(); - -protected: - - CvPoint GetStartPoint() const - { - return m_startPoint; - } - - //! Clears chain code contour - void ResetChainCode(); - - - - //! Computes area from contour - double GetArea(); - //! Computes perimeter from contour - double GetPerimeter(); - //! Get contour moment (p,q up to MAX_CALCULATED_MOMENTS) - double GetMoment(int p, int q); - - //! Crack code list - t_chainCodeList m_contour; - -private: - //! Starting point of the contour - CvPoint m_startPoint; - //! All points from the contour - t_PointList m_contourPoints; - - - - //! Computed area from contour - double m_area; - //! Computed perimeter from contour - double m_perimeter; - //! Computed moments from contour - CvMoments m_moments; - - //! Pointer to storage - CvMemStorage *m_parentStorage; -}; - -#endif //!BLOBCONTOUR_H_INCLUDED - - diff --git a/Frameworks/CVBlob.framework/Versions/A/Headers/BlobLibraryConfiguration.h b/Frameworks/CVBlob.framework/Versions/A/Headers/BlobLibraryConfiguration.h deleted file mode 100644 index 55fd8a9ff7..0000000000 --- a/Frameworks/CVBlob.framework/Versions/A/Headers/BlobLibraryConfiguration.h +++ /dev/null @@ -1,22 +0,0 @@ -/************************************************************************ - BlobLibraryConfiguration.h - -FUNCIONALITAT: Configuració del comportament global de la llibreria -AUTOR: Inspecta S.L. -MODIFICACIONS (Modificació, Autor, Data): - -FUNCTIONALITY: Global configuration of the library -AUTHOR: Inspecta S.L. -MODIFICATIONS (Modification, Author, Date): - -**************************************************************************/ - -//! Indica si es volen fer servir les MatrixCV o no -//! Use/Not use the MatrixCV class -//#define MATRIXCV_ACTIU - -//! Uses/not use the blob object factory -//#define BLOB_OBJECT_FACTORY - -//! Show/not show blob access errors -//#define _SHOW_ERRORS //AO: Only works for WIN. diff --git a/Frameworks/CVBlob.framework/Versions/A/Headers/BlobOperators.h b/Frameworks/CVBlob.framework/Versions/A/Headers/BlobOperators.h deleted file mode 100644 index 4fbc1c8106..0000000000 --- a/Frameworks/CVBlob.framework/Versions/A/Headers/BlobOperators.h +++ /dev/null @@ -1,754 +0,0 @@ -#ifndef BLOB_OPERATORS_H_INCLUDED -#define BLOB_OPERATORS_H_INCLUDED - -#include "blob.h" - -/************************************************************************** - Definició de les classes per a fer operacions sobre els blobs - - Helper classes to perform operations on blobs -**************************************************************************/ - -//! Factor de conversió de graus a radians -#define DEGREE2RAD (CV_PI / 180.0) - - -//! Classe d'on derivarem totes les operacions sobre els blobs -//! Interface to derive all blob operations -class COperadorBlob -{ -public: - virtual ~COperadorBlob(){}; - - //! Aply operator to blob - virtual double operator()(CBlob &blob) = 0; - //! Get operator name - virtual const char *GetNom() = 0; - - operator COperadorBlob*() - { - return (COperadorBlob*)this; - } -}; - -typedef COperadorBlob funcio_calculBlob; - -#ifdef BLOB_OBJECT_FACTORY - /** - Funció per comparar dos identificadors dins de la fàbrica de COperadorBlobs - */ - struct functorComparacioIdOperador - { - bool operator()(const char* s1, const char* s2) const - { - return strcmp(s1, s2) < 0; - } - }; - - //! Definition of Object factory type for COperadorBlob objects - typedef ObjectFactory t_OperadorBlobFactory; - - //! Funció global per a registrar tots els operadors definits a blob.h - void RegistraTotsOperadors( t_OperadorBlobFactory &fabricaOperadorsBlob ); - -#endif - - -//! Classe per calcular l'etiqueta d'un blob -//! Class to get ID of a blob -class CBlobGetID : public COperadorBlob -{ -public: - double operator()(CBlob &blob) - { - return blob.GetID(); - } - const char *GetNom() - { - return "CBlobGetID"; - } -}; - - -//! Classe per calcular l'àrea d'un blob -//! Class to get the area of a blob -class CBlobGetArea : public COperadorBlob -{ -public: - double operator()(CBlob &blob) - { - return blob.Area(); - } - const char *GetNom() - { - return "CBlobGetArea"; - } -}; - -//! Classe per calcular el perimetre d'un blob -//! Class to get the perimeter of a blob -class CBlobGetPerimeter: public COperadorBlob -{ -public: - double operator()(CBlob &blob) - { - return blob.Perimeter(); - } - const char *GetNom() - { - return "CBlobGetPerimeter"; - } -}; - -//! Classe que diu si un blob és extern o no -//! Class to get the extern flag of a blob -class CBlobGetExterior: public COperadorBlob -{ -public: - CBlobGetExterior() - { - m_mask = NULL; - m_xBorder = false; - m_yBorder = false; - } - CBlobGetExterior(IplImage *mask, bool xBorder = true, bool yBorder = true) - { - m_mask = mask; - m_xBorder = xBorder; - m_yBorder = yBorder; - } - double operator()(CBlob &blob) - { - return blob.Exterior(m_mask, m_xBorder, m_yBorder); - } - const char *GetNom() - { - return "CBlobGetExterior"; - } -private: - IplImage *m_mask; - bool m_xBorder, m_yBorder; -}; - -//! Classe per calcular la mitjana de nivells de gris d'un blob -//! Class to get the mean grey level of a blob -class CBlobGetMean: public COperadorBlob -{ -public: - CBlobGetMean() - { - m_image = NULL; - } - CBlobGetMean( IplImage *image ) - { - m_image = image; - }; - - double operator()(CBlob &blob) - { - return blob.Mean(m_image); - } - const char *GetNom() - { - return "CBlobGetMean"; - } -private: - - IplImage *m_image; -}; - -//! Classe per calcular la desviació estàndard dels nivells de gris d'un blob -//! Class to get the standard deviation of the grey level values of a blob -class CBlobGetStdDev: public COperadorBlob -{ -public: - CBlobGetStdDev() - { - m_image = NULL; - } - CBlobGetStdDev( IplImage *image ) - { - m_image = image; - }; - double operator()(CBlob &blob) - { - return blob.StdDev(m_image); - } - const char *GetNom() - { - return "CBlobGetStdDev"; - } -private: - - IplImage *m_image; - -}; - -//! Classe per calcular la compacitat d'un blob -//! Class to calculate the compactness of a blob -class CBlobGetCompactness: public COperadorBlob -{ -public: - double operator()(CBlob &blob); - const char *GetNom() - { - return "CBlobGetCompactness"; - } -}; - -//! Classe per calcular la longitud d'un blob -//! Class to calculate the length of a blob -class CBlobGetLength: public COperadorBlob -{ -public: - double operator()(CBlob &blob); - const char *GetNom() - { - return "CBlobGetLength"; - } -}; - -//! Classe per calcular l'amplada d'un blob -//! Class to calculate the breadth of a blob -class CBlobGetBreadth: public COperadorBlob -{ -public: - double operator()(CBlob &blob); - const char *GetNom() - { - return "CBlobGetBreadth"; - } -}; - -//! Classe per calcular la diferència en X del blob -class CBlobGetDiffX: public COperadorBlob -{ -public: - double operator()(CBlob &blob) - { - return blob.GetBoundingBox().width; - } - const char *GetNom() - { - return "CBlobGetDiffX"; - } -}; - -//! Classe per calcular la diferència en X del blob -class CBlobGetDiffY: public COperadorBlob -{ -public: - double operator()(CBlob &blob) - { - return blob.GetBoundingBox().height; - } - const char *GetNom() - { - return "CBlobGetDiffY"; - } -}; - -//! Classe per calcular el moment PQ del blob -//! Class to calculate the P,Q moment of a blob -class CBlobGetMoment: public COperadorBlob -{ -public: - //! Constructor estàndard - //! Standard constructor (gets the 00 moment) - CBlobGetMoment() - { - m_p = m_q = 0; - } - //! Constructor: indiquem el moment p,q a calcular - //! Constructor: gets the PQ moment - CBlobGetMoment( int p, int q ) - { - m_p = p; - m_q = q; - }; - double operator()(CBlob &blob); - const char *GetNom() - { - return "CBlobGetMoment"; - } - -private: - //! moment que volem calcular - int m_p, m_q; -}; - -//! Classe per calcular el perimetre del poligon convex d'un blob -//! Class to calculate the convex hull perimeter of a blob -class CBlobGetHullPerimeter: public COperadorBlob -{ -public: - double operator()(CBlob &blob); - const char *GetNom() - { - return "CBlobGetHullPerimeter"; - } -}; - -//! Classe per calcular l'àrea del poligon convex d'un blob -//! Class to calculate the convex hull area of a blob -class CBlobGetHullArea: public COperadorBlob -{ -public: - double operator()(CBlob &blob); - const char *GetNom() - { - return "CBlobGetHullArea"; - } -}; - -//! Classe per calcular la x minima en la y minima -//! Class to calculate the minimum x on the minimum y -class CBlobGetMinXatMinY: public COperadorBlob -{ -public: - double operator()(CBlob &blob); - const char *GetNom() - { - return "CBlobGetMinXatMinY"; - } -}; - -//! Classe per calcular la y minima en la x maxima -//! Class to calculate the minimum y on the maximum x -class CBlobGetMinYatMaxX: public COperadorBlob -{ -public: - double operator()(CBlob &blob); - const char *GetNom() - { - return "CBlobGetMinYatMaxX"; - } -}; - -//! Classe per calcular la x maxima en la y maxima -//! Class to calculate the maximum x on the maximum y -class CBlobGetMaxXatMaxY: public COperadorBlob -{ -public: - double operator()(CBlob &blob); - const char *GetNom() - { - return "CBlobGetMaxXatMaxY"; - } -}; - -//! Classe per calcular la y maxima en la x minima -//! Class to calculate the maximum y on the minimum y -class CBlobGetMaxYatMinX: public COperadorBlob -{ -public: - double operator()(CBlob &blob); - const char *GetNom() - { - return "CBlobGetMaxYatMinX"; - } -}; - -//! Classe per a calcular la x mínima -//! Class to get the minimum x -class CBlobGetMinX: public COperadorBlob -{ -public: - double operator()(CBlob &blob) - { - return blob.MinX(); - } - const char *GetNom() - { - return "CBlobGetMinX"; - } -}; - -//! Classe per a calcular la x màxima -//! Class to get the maximum x -class CBlobGetMaxX: public COperadorBlob -{ -public: - double operator()(CBlob &blob) - { - return blob.MaxX(); - } - const char *GetNom() - { - return "CBlobGetMaxX"; - } -}; - -//! Classe per a calcular la y mínima -//! Class to get the minimum y -class CBlobGetMinY: public COperadorBlob -{ -public: - double operator()(CBlob &blob) - { - return blob.MinY(); - } - const char *GetNom() - { - return "CBlobGetMinY"; - } -}; - -//! Classe per a calcular la y màxima -//! Class to get the maximum y -class CBlobGetMaxY: public COperadorBlob -{ -public: - double operator()(CBlob &blob) - { - return blob.MaxY(); - } - const char *GetNom() - { - return "CBlobGetMaxY"; - } -}; - - -//! Classe per calcular l'elongacio d'un blob -//! Class to calculate the elongation of the blob -class CBlobGetElongation: public COperadorBlob -{ -public: - double operator()(CBlob &blob); - const char *GetNom() - { - return "CBlobGetElongation"; - } -}; - -//! Classe per calcular la rugositat d'un blob -//! Class to calculate the roughness of the blob -class CBlobGetRoughness: public COperadorBlob -{ -public: - double operator()(CBlob &blob); - const char *GetNom() - { - return "CBlobGetRoughness"; - } -}; - -//! Classe per calcular la distància entre el centre del blob i un punt donat -//! Class to calculate the euclidean distance between the center of a blob and a given point -class CBlobGetDistanceFromPoint: public COperadorBlob -{ -public: - //! Standard constructor (distance to point 0,0) - CBlobGetDistanceFromPoint() - { - m_x = m_y = 0.0; - } - //! Constructor (distance to point x,y) - CBlobGetDistanceFromPoint( const double x, const double y ) - { - m_x = x; - m_y = y; - } - - double operator()(CBlob &blob); - const char *GetNom() - { - return "CBlobGetDistanceFromPoint"; - } - -private: - // coordenades del punt on volem calcular la distància - double m_x, m_y; -}; - -//! Classe per calcular el nombre de pixels externs d'un blob -//! Class to get the number of extern pixels of a blob -class CBlobGetExternPerimeter: public COperadorBlob -{ -public: - CBlobGetExternPerimeter() - { - m_mask = NULL; - m_xBorder = false; - m_yBorder = false; - } - CBlobGetExternPerimeter( IplImage *mask, bool xBorder = true, bool yBorder = true ) - { - m_mask = mask; - m_xBorder = xBorder; - m_yBorder = yBorder; - } - double operator()(CBlob &blob) - { - return blob.ExternPerimeter(m_mask, m_xBorder, m_yBorder); - } - const char *GetNom() - { - return "CBlobGetExternPerimeter"; - } -private: - IplImage *m_mask; - bool m_xBorder, m_yBorder; -}; - -//! Classe per calcular el ratio entre el perimetre i nombre pixels externs -//! valors propers a 0 indiquen que la majoria del blob és intern -//! valors propers a 1 indiquen que la majoria del blob és extern -//! Class to calculate the ratio between the perimeter and the number of extern pixels -class CBlobGetExternPerimeterRatio: public COperadorBlob -{ -public: - CBlobGetExternPerimeterRatio() - { - m_mask = NULL; - m_xBorder = false; - m_yBorder = false; - } - CBlobGetExternPerimeterRatio( IplImage *mask, bool xBorder = true, bool yBorder = true ) - { - m_mask = mask; - m_xBorder = xBorder; - m_yBorder = yBorder; - } - double operator()(CBlob &blob) - { - if( blob.Perimeter() != 0 ) - return blob.ExternPerimeter(m_mask, m_xBorder, m_yBorder) / blob.Perimeter(); - else - return blob.ExternPerimeter(m_mask, m_xBorder, m_yBorder); - } - const char *GetNom() - { - return "CBlobGetExternPerimeterRatio"; - } -private: - IplImage *m_mask; - bool m_xBorder, m_yBorder; -}; - -//! Classe per calcular el ratio entre el perimetre convex i nombre pixels externs -//! valors propers a 0 indiquen que la majoria del blob és intern -//! valors propers a 1 indiquen que la majoria del blob és extern -//! Class to calculate the ratio between the perimeter and the number of extern pixels -class CBlobGetExternHullPerimeterRatio: public COperadorBlob -{ -public: - CBlobGetExternHullPerimeterRatio() - { - m_mask = NULL; - m_xBorder = false; - m_yBorder = false; - } - CBlobGetExternHullPerimeterRatio( IplImage *mask, bool xBorder = true, bool yBorder = true ) - { - m_mask = mask; - m_xBorder = xBorder; - m_yBorder = yBorder; - } - double operator()(CBlob &blob) - { - CBlobGetHullPerimeter getHullPerimeter; - double hullPerimeter; - - if( (hullPerimeter = getHullPerimeter( blob ) ) != 0 ) - return blob.ExternPerimeter(m_mask, m_xBorder, m_yBorder) / hullPerimeter; - else - return blob.ExternPerimeter(m_mask, m_xBorder, m_yBorder); - } - const char *GetNom() - { - return "CBlobGetExternHullPerimeterRatio"; - } -private: - IplImage *m_mask; - bool m_xBorder, m_yBorder; - -}; - -//! Classe per calcular el centre en el eix X d'un blob -//! Class to calculate the center in the X direction -class CBlobGetXCenter: public COperadorBlob -{ -public: - double operator()(CBlob &blob) - { - return blob.MinX() + (( blob.MaxX() - blob.MinX() ) / 2.0); - } - const char *GetNom() - { - return "CBlobGetXCenter"; - } -}; - -//! Classe per calcular el centre en el eix Y d'un blob -//! Class to calculate the center in the Y direction -class CBlobGetYCenter: public COperadorBlob -{ -public: - double operator()(CBlob &blob) - { - return blob.MinY() + (( blob.MaxY() - blob.MinY() ) / 2.0); - } - const char *GetNom() - { - return "CBlobGetYCenter"; - } -}; - -//! Classe per calcular la longitud de l'eix major d'un blob -//! Class to calculate the length of the major axis of the ellipse that fits the blob edges -class CBlobGetMajorAxisLength: public COperadorBlob -{ -public: - double operator()(CBlob &blob) - { - CvBox2D elipse = blob.GetEllipse(); - - return elipse.size.width; - } - const char *GetNom() - { - return "CBlobGetMajorAxisLength"; - } -}; - -//! Classe per calcular el ratio entre l'area de la elipse i la de la taca -//! Class -class CBlobGetAreaElipseRatio: public COperadorBlob -{ -public: - double operator()(CBlob &blob) - { - if( blob.Area()==0.0 ) return 0.0; - - CvBox2D elipse = blob.GetEllipse(); - double ratioAreaElipseAreaTaca = ( (elipse.size.width/2.0) - * - (elipse.size.height/2.0) - *CV_PI - ) - / - blob.Area(); - - return ratioAreaElipseAreaTaca; - } - const char *GetNom() - { - return "CBlobGetAreaElipseRatio"; - } -}; - -//! Classe per calcular la longitud de l'eix menor d'un blob -//! Class to calculate the length of the minor axis of the ellipse that fits the blob edges -class CBlobGetMinorAxisLength: public COperadorBlob -{ -public: - double operator()(CBlob &blob) - { - CvBox2D elipse = blob.GetEllipse(); - - return elipse.size.height; - } - const char *GetNom() - { - return "CBlobGetMinorAxisLength"; - } -}; - -//! Classe per calcular l'orientació de l'ellipse del blob en radians -//! Class to calculate the orientation of the ellipse that fits the blob edges in radians -class CBlobGetOrientation: public COperadorBlob -{ -public: - double operator()(CBlob &blob) - { - CvBox2D elipse = blob.GetEllipse(); -/* - if( elipse.angle > 180.0 ) - return (( elipse.angle - 180.0 )* DEGREE2RAD); - else - return ( elipse.angle * DEGREE2RAD); -*/ - return elipse.angle; - } - const char *GetNom() - { - return "CBlobGetOrientation"; - } -}; - -//! Classe per calcular el cosinus de l'orientació de l'ellipse del blob -//! Class to calculate the cosinus of the orientation of the ellipse that fits the blob edges -class CBlobGetOrientationCos: public COperadorBlob -{ -public: - double operator()(CBlob &blob) - { - CBlobGetOrientation getOrientation; - return fabs( cos( getOrientation(blob)*DEGREE2RAD )); - } - const char *GetNom() - { - return "CBlobGetOrientationCos"; - } -}; - - -//! Classe per calcular el ratio entre l'eix major i menor de la el·lipse -//! Class to calculate the ratio between both axes of the ellipse -class CBlobGetAxisRatio: public COperadorBlob -{ -public: - double operator()(CBlob &blob) - { - double major,minor; - CBlobGetMajorAxisLength getMajor; - CBlobGetMinorAxisLength getMinor; - - major = getMajor(blob); - minor = getMinor(blob); - - if( major != 0 ) - return minor / major; - else - return 0; - } - const char *GetNom() - { - return "CBlobGetAxisRatio"; - } -}; - - -//! Classe per calcular si un punt cau dins del blob -//! Class to calculate whether a point is inside a blob -class CBlobGetXYInside: public COperadorBlob -{ -public: - //! Constructor estàndard - //! Standard constructor - CBlobGetXYInside() - { - m_p.x = 0; - m_p.y = 0; - } - //! Constructor: indiquem el punt - //! Constructor: sets the point - CBlobGetXYInside( CvPoint2D32f p ) - { - m_p = p; - }; - double operator()(CBlob &blob); - const char *GetNom() - { - return "CBlobGetXYInside"; - } - -private: - //! punt que considerem - //! point to be considered - CvPoint2D32f m_p; -}; - -#endif //!BLOB_OPERATORS_H_INCLUDED diff --git a/Frameworks/CVBlob.framework/Versions/A/Headers/BlobProperties.h b/Frameworks/CVBlob.framework/Versions/A/Headers/BlobProperties.h deleted file mode 100644 index 51c1017292..0000000000 --- a/Frameworks/CVBlob.framework/Versions/A/Headers/BlobProperties.h +++ /dev/null @@ -1,70 +0,0 @@ - -//! Disable warnings referred to 255 character truncation for the std:map -#pragma warning( disable : 4786 ) - -#ifndef BLOB_PROPERTIES_H_INCLUDED -#define BLOB_PROPERTIES_H_INCLUDED - -#include -#include "BlobLibraryConfiguration.h" -#include "BlobContour.h" - - -#ifdef BLOB_OBJECT_FACTORY - //! Object factory pattern implementation - #include "..\inspecta\DesignPatterns\ObjectFactory.h" -#endif - - -//! Type of labelled images -typedef unsigned int t_labelType; - -//! Max order of calculated moments -#define MAX_MOMENTS_ORDER 3 - - -//! Blob class -class CBlobProperties -{ - typedef std::list t_contourList; - -public: - - CBlobProperties(); - virtual ~CBlobProperties(); - - //! Get blob area - double GetArea(); - - //! Get blob perimeter - double GetPerimeter(); - - //! Get contour moment (p,q up to MAX_CALCULATED_MOMENTS) - double GetMoment(int p, int q); - - - ////////////////////////////////////////////////////////////////////////// - // Blob contours - ////////////////////////////////////////////////////////////////////////// - - - //! Contour storage memory - CvMemStorage *m_storage; - //! External contour of the blob (crack codes) - CBlobContour m_externalContour; - //! Internal contours (crack codes) - t_contourList m_internalContours; - -private: - - //! Computed area from blob - double m_area; - //! Computed perimeter from blob - double m_perimeter; - // Computed moment from the blob - double m_moment[MAX_MOMENTS_ORDER*MAX_MOMENTS_ORDER]; - -}; - -#endif //!BLOB_PROPERTIES_H_INCLUDED - diff --git a/Frameworks/CVBlob.framework/Versions/A/Headers/BlobResult.h b/Frameworks/CVBlob.framework/Versions/A/Headers/BlobResult.h deleted file mode 100644 index a218c8b33d..0000000000 --- a/Frameworks/CVBlob.framework/Versions/A/Headers/BlobResult.h +++ /dev/null @@ -1,171 +0,0 @@ -/************************************************************************ - BlobResult.h - -FUNCIONALITAT: Definició de la classe CBlobResult -AUTOR: Inspecta S.L. -MODIFICACIONS (Modificació, Autor, Data): - -FUNCTIONALITY: Definition of the CBlobResult class -AUTHOR: Inspecta S.L. -MODIFICATIONS (Modification, Author, Date): - -**************************************************************************/ - - -#if !defined(_CLASSE_BLOBRESULT_INCLUDED) -#define _CLASSE_BLOBRESULT_INCLUDED - -#if _MSC_VER > 1000 -#pragma once -#endif // _MSC_VER > 1000 - -#include "BlobLibraryConfiguration.h" -#include -#include - -#ifdef MATRIXCV_ACTIU - #include "matrixCV.h" -#else - // llibreria STL - #include "vector" - //! Vector de doubles - typedef std::vector double_stl_vector; -#endif - -#include // vectors de la STL -#include -#include "blob.h" -#include "BlobOperators.h" -#include "ComponentLabeling.h" -/************************************************************************** - Filtres / Filters -**************************************************************************/ - -//! accions que es poden fer amb els filtres -//! Actions performed by a filter (include or exclude blobs) -#define B_INCLUDE 1L -#define B_EXCLUDE 2L - -//! condicions sobre els filtres -//! Conditions to apply the filters -#define B_EQUAL 3L -#define B_NOT_EQUAL 4L -#define B_GREATER 5L -#define B_LESS 6L -#define B_GREATER_OR_EQUAL 7L -#define B_LESS_OR_EQUAL 8L -#define B_INSIDE 9L -#define B_OUTSIDE 10L - - -/************************************************************************** - Excepcions / Exceptions -**************************************************************************/ - -//! Excepcions llençades per les funcions: -#define EXCEPTION_BLOB_OUT_OF_BOUNDS 1000 -#define EXCEPCIO_CALCUL_BLOBS 1001 - -/** - Classe que conté un conjunt de blobs i permet extreure'n propietats - o filtrar-los segons determinats criteris. - Class to calculate the blobs of an image and calculate some properties - on them. Also, the class provides functions to filter the blobs using - some criteria. -*/ -class CBlobResult -{ -public: - - //! constructor estandard, crea un conjunt buit de blobs - //! Standard constructor, it creates an empty set of blobs - CBlobResult(); - //! constructor a partir d'una imatge - //! Image constructor, it creates an object with the blobs of the image - CBlobResult(IplImage *source, IplImage *mask, uchar backgroundColor); - //! constructor de còpia - //! Copy constructor - CBlobResult( const CBlobResult &source ); - //! Destructor - virtual ~CBlobResult(); - - //! operador = per a fer assignacions entre CBlobResult - //! Assigment operator - CBlobResult& operator=(const CBlobResult& source); - //! operador + per concatenar dos CBlobResult - //! Addition operator to concatenate two sets of blobs - CBlobResult operator+( const CBlobResult& source ) const; - - //! Afegeix un blob al conjunt - //! Adds a blob to the set of blobs - void AddBlob( CBlob *blob ); - -#ifdef MATRIXCV_ACTIU - //! Calcula un valor sobre tots els blobs de la classe retornant una MatrixCV - //! Computes some property on all the blobs of the class - double_vector GetResult( funcio_calculBlob *evaluador ) const; -#endif - //! Calcula un valor sobre tots els blobs de la classe retornant un std::vector - //! Computes some property on all the blobs of the class - double_stl_vector GetSTLResult( funcio_calculBlob *evaluador ) const; - - //! Calcula un valor sobre un blob de la classe - //! Computes some property on one blob of the class - double GetNumber( int indexblob, funcio_calculBlob *evaluador ) const; - - //! Retorna aquells blobs que compleixen les condicions del filtre en el destination - //! Filters the blobs of the class using some property - void Filter(CBlobResult &dst, - int filterAction, funcio_calculBlob *evaluador, - int condition, double lowLimit, double highLimit = 0 ); - void Filter(CBlobResult &dst, - int filterAction, funcio_calculBlob *evaluador, - int condition, double lowLimit, double highLimit = 0 ) const; - - //! Retorna l'enèssim blob segons un determinat criteri - //! Sorts the blobs of the class acording to some criteria and returns the n-th blob - void GetNthBlob( funcio_calculBlob *criteri, int nBlob, CBlob &dst ) const; - - //! Retorna el blob enèssim - //! Gets the n-th blob of the class ( without sorting ) - CBlob GetBlob(int indexblob) const; - CBlob *GetBlob(int indexblob); - - //! Elimina tots els blobs de l'objecte - //! Clears all the blobs of the class - void ClearBlobs(); - - //! Escriu els blobs a un fitxer - //! Prints some features of all the blobs in a file - void PrintBlobs( char *nom_fitxer ) const; - - -//Metodes GET/SET - - //! Retorna el total de blobs - //! Gets the total number of blobs - int GetNumBlobs() const - { - return(m_blobs.size()); - } - - -private: - - //! Funció per gestionar els errors - //! Function to manage the errors - void RaiseError(const int errorCode) const; - - //! Does the Filter method job - void DoFilter(CBlobResult &dst, - int filterAction, funcio_calculBlob *evaluador, - int condition, double lowLimit, double highLimit = 0) const; - -protected: - - //! Vector amb els blobs - //! Vector with all the blobs - Blob_vector m_blobs; -}; - -#endif // !defined(_CLASSE_BLOBRESULT_INCLUDED) diff --git a/Frameworks/CVBlob.framework/Versions/A/Headers/ComponentLabeling.h b/Frameworks/CVBlob.framework/Versions/A/Headers/ComponentLabeling.h deleted file mode 100644 index d6e714e6c8..0000000000 --- a/Frameworks/CVBlob.framework/Versions/A/Headers/ComponentLabeling.h +++ /dev/null @@ -1,30 +0,0 @@ -#if !defined(_COMPONENT_LABELING_H_INCLUDED) -#define _CLASSE_BLOBRESULT_INCLUDED - -#include "vector" -#include "BlobContour.h" -#include "blob.h" - - -//! definició de que es un vector de blobs -typedef std::vector Blob_vector; - - - -bool ComponentLabeling( IplImage* inputImage, - IplImage* maskImage, - unsigned char backgroundColor, - Blob_vector &blobs ); - - -void contourTracing( IplImage *image, IplImage *mask, CvPoint contourStart, t_labelType *labels, - bool *visitedPoints, t_labelType label, - bool internalContour, unsigned char backgroundColor, - CBlobContour *currentBlobContour ); - -CvPoint tracer( IplImage *image, IplImage *mask, CvPoint P, bool *visitedPoints, - short initialMovement, - unsigned char backgroundColor, short &movement ); - - -#endif //!_CLASSE_BLOBRESULT_INCLUDED diff --git a/Frameworks/CVBlob.framework/Versions/A/Headers/blob.h b/Frameworks/CVBlob.framework/Versions/A/Headers/blob.h deleted file mode 100644 index e4c80f8310..0000000000 --- a/Frameworks/CVBlob.framework/Versions/A/Headers/blob.h +++ /dev/null @@ -1,172 +0,0 @@ -/************************************************************************ - Blob.h - -FUNCIONALITAT: Definició de la classe CBlob -AUTOR: Inspecta S.L. -MODIFICACIONS (Modificació, Autor, Data): - -FUNCTIONALITY: Definition of the CBlob class and some helper classes to perform - some calculations on it -AUTHOR: Inspecta S.L. -MODIFICATIONS (Modification, Author, Date): - -**************************************************************************/ - -//! Disable warnings referred to 255 character truncation for the std:map -#pragma warning( disable : 4786 ) - -#ifndef CBLOB_INSPECTA_INCLUDED -#define CBLOB_INSPECTA_INCLUDED - -#include -#include "BlobLibraryConfiguration.h" -#include "BlobContour.h" - - -#ifdef BLOB_OBJECT_FACTORY - //! Object factory pattern implementation - #include "..\inspecta\DesignPatterns\ObjectFactory.h" -#endif - - -//! Type of labelled images -typedef unsigned int t_labelType; - - -//! Blob class -class CBlob -{ - typedef std::list t_contourList; - -public: - CBlob(); - CBlob( t_labelType id, CvPoint startPoint, CvSize originalImageSize ); - ~CBlob(); - - //! Copy constructor - CBlob( const CBlob &src ); - CBlob( const CBlob *src ); - - //! Operador d'assignació - //! Assigment operator - CBlob& operator=(const CBlob &src ); - - //! Adds a new internal contour to the blob - void AddInternalContour( const CBlobContour &newContour ); - - //! Retrieves contour in Freeman's chain code - CBlobContour *GetExternalContour() - { - return &m_externalContour; - } - - //! Retrieves blob storage - CvMemStorage *GetStorage() - { - return m_storage; - } - - //! Get label ID - t_labelType GetID() - { - return m_id; - } - //! > 0 for extern blobs, 0 if not - int Exterior( IplImage *mask, bool xBorder = true, bool yBorder = true ); - //! Compute blob's area - double Area(); - //! Compute blob's perimeter - double Perimeter(); - //! Compute blob's moment (p,q up to MAX_CALCULATED_MOMENTS) - double Moment(int p, int q); - - //! Compute extern perimeter - double ExternPerimeter( IplImage *mask, bool xBorder = true, bool yBorder = true ); - - //! Get mean grey color - double Mean( IplImage *image ); - - //! Get standard deviation grey color - double StdDev( IplImage *image ); - - //! Indica si el blob està buit ( no té cap info associada ) - //! Shows if the blob has associated information - bool IsEmpty(); - - //! Retorna el poligon convex del blob - //! Calculates the convex hull of the blob - t_PointList GetConvexHull(); - - //! Pinta l'interior d'un blob d'un color determinat - //! Paints the blob in an image - void FillBlob( IplImage *imatge, CvScalar color, int offsetX = 0, int offsetY = 0 ); - - //! Join a blob to current one (add's contour - void JoinBlob( CBlob *blob ); - - //! Get bounding box - CvRect GetBoundingBox(); - //! Get bounding ellipse - CvBox2D GetEllipse(); - - //! Minimun X - double MinX() - { - return GetBoundingBox().x; - } - //! Minimun Y - double MinY() - { - return GetBoundingBox().y; - } - //! Maximun X - double MaxX() - { - return GetBoundingBox().x + GetBoundingBox().width; - } - //! Maximun Y - double MaxY() - { - return GetBoundingBox().y + GetBoundingBox().height; - } -private: - - //! Deallocates all contours - void ClearContours(); - ////////////////////////////////////////////////////////////////////////// - // Blob contours - ////////////////////////////////////////////////////////////////////////// - - - //! Contour storage memory - CvMemStorage *m_storage; - //! External contour of the blob (crack codes) - CBlobContour m_externalContour; - //! Internal contours (crack codes) - t_contourList m_internalContours; - - ////////////////////////////////////////////////////////////////////////// - // Blob features - ////////////////////////////////////////////////////////////////////////// - - //! Label number - t_labelType m_id; - //! Area - double m_area; - //! Perimeter - double m_perimeter; - //! Extern perimeter from blob - double m_externPerimeter; - //! Mean gray color - double m_meanGray; - //! Standard deviation from gray color blob distribution - double m_stdDevGray; - //! Bounding box - CvRect m_boundingBox; - //! Bounding ellipse - CvBox2D m_ellipse; - //! Sizes from image where blob is extracted - CvSize m_originalImageSize; -}; - -#endif //CBLOB_INSPECTA_INCLUDED diff --git a/Frameworks/CVBlob.framework/Versions/Current b/Frameworks/CVBlob.framework/Versions/Current deleted file mode 120000 index a0f975209c..0000000000 --- a/Frameworks/CVBlob.framework/Versions/Current +++ /dev/null @@ -1 +0,0 @@ -A/ \ No newline at end of file diff --git a/Makefile b/Makefile deleted file mode 100644 index c69217509d..0000000000 --- a/Makefile +++ /dev/null @@ -1,282 +0,0 @@ -############################################################################# -# -# Generic Makefile for C/C++ Program -# -# License: GPL (General Public License) -# Author: whyglinux -# Date: 2006/03/04 (version 0.1) -# 2007/03/24 (version 0.2) -# 2007/04/09 (version 0.3) -# 2007/06/26 (version 0.4) -# 2008/04/05 (version 0.5) -# -# Description: -# ------------ -# This is an easily customizable makefile template. The purpose is to -# provide an instant building environment for C/C++ programs. -# -# It searches all the C/C++ source files in the specified directories, -# makes dependencies, compiles and links to form an executable. -# -# Besides its default ability to build C/C++ programs which use only -# standard C/C++ libraries, you can customize the Makefile to build -# those using other libraries. Once done, without any changes you can -# then build programs using the same or less libraries, even if source -# files are renamed, added or removed. Therefore, it is particularly -# convenient to use it to build codes for experimental or study use. -# -# GNU make is expected to use the Makefile. Other versions of makes -# may or may not work. -# -# Usage: -# ------ -# 1. Copy the Makefile to your program directory. -# 2. Customize in the "Customizable Section" only if necessary: -# * to use non-standard C/C++ libraries, set pre-processor or compiler -# options to and linker ones to -# (See Makefile.gtk+-2.0 for an example) -# * to search sources in more directories, set to -# * to specify your favorite program name, set to -# 3. Type make to start building your program. -# -# Make Target: -# ------------ -# The Makefile provides the following targets to make: -# $ make compile and link -# $ make NODEP=yes compile and link without generating dependencies -# $ make objs compile only (no linking) -# $ make tags create tags for Emacs editor -# $ make ctags create ctags for VI editor -# $ make clean clean objects and the executable file -# $ make distclean clean objects, the executable and dependencies -# $ make help get the usage of the makefile -# -#=========================================================================== - -## Customizable Section: adapt those variables to suit your program. -##========================================================================== - -# The pre-processor and compiler options. -MY_CFLAGS = -I/usr/X11R6/include/ - -# The linker options. -MY_LIBS = - -# The pre-processor options used by the cpp (man cpp for more). -CPPFLAGS = -Wall - -# The options used in linking as well as in any direct use of ld. -#LDFLAGS = -L/usr/X11R6/lib -lX11 -lXi -lXmu -lglut -lGL -lGLU -lportaudio -LDFLAGS = -L/usr/X11R6/lib -lglut -lGL -lGLU -lportaudio - -# The directories in which source files reside. -# If not specified, only the current directory will be serached. -SRCDIRS = - -# The executable file name. -# If not specified, current directory name or `a.out' will be used. -PROGRAM = demo - -## Implicit Section: change the following only when necessary. -##========================================================================== - -# The source file types (headers excluded). -# .c indicates C source files, and others C++ ones. -SRCEXTS = .c .C .cc .cpp .CPP .c++ .cxx .cp - -# The header file types. -HDREXTS = .h .H .hh .hpp .HPP .h++ .hxx .hp - -# The pre-processor and compiler options. -# Users can override those variables from the command line. -CFLAGS = -g -O2 -CXXFLAGS= -g -O2 - -# The C program compiler. -#CC = gcc - -# The C++ program compiler. -#CXX = g++ - -# Un-comment the following line to compile C programs as C++ ones. -#CC = $(CXX) - -# The command used to delete file. -#RM = rm -f - -ETAGS = etags -ETAGSFLAGS = - -CTAGS = ctags -CTAGSFLAGS = - -## Stable Section: usually no need to be changed. But you can add more. -##========================================================================== -SHELL = /bin/sh -EMPTY = -SPACE = $(EMPTY) $(EMPTY) -ifeq ($(PROGRAM),) - CUR_PATH_NAMES = $(subst /,$(SPACE),$(subst $(SPACE),_,$(CURDIR))) - PROGRAM = $(word $(words $(CUR_PATH_NAMES)),$(CUR_PATH_NAMES)) - ifeq ($(PROGRAM),) - PROGRAM = a.out - endif -endif -ifeq ($(SRCDIRS),) - SRCDIRS = . -endif -SOURCES = $(foreach d,$(SRCDIRS),$(wildcard $(addprefix $(d)/*,$(SRCEXTS)))) -HEADERS = $(foreach d,$(SRCDIRS),$(wildcard $(addprefix $(d)/*,$(HDREXTS)))) -SRC_CXX = $(filter-out %.c,$(SOURCES)) -OBJS = $(addsuffix .o, $(basename $(SOURCES))) -DEPS = $(OBJS:.o=.d) - -## Define some useful variables. -DEP_OPT = $(shell if `$(CC) --version | grep "GCC" >/dev/null`; then \ - echo "-MM -MP"; else echo "-M"; fi ) -DEPEND = $(CC) $(DEP_OPT) $(MY_CFLAGS) $(CFLAGS) $(CPPFLAGS) -DEPEND.d = $(subst -g ,,$(DEPEND)) -COMPILE.c = $(CC) $(MY_CFLAGS) $(CFLAGS) $(CPPFLAGS) -c -COMPILE.cxx = $(CXX) $(MY_CFLAGS) $(CXXFLAGS) $(CPPFLAGS) -c -#LINK.c = $(CC) $(MY_CFLAGS) $(CFLAGS) $(CPPFLAGS) $(LDFLAGS) -#LINK.cxx = $(CXX) $(MY_CFLAGS) $(CXXFLAGS) $(CPPFLAGS) $(LDFLAGS) -LINK.c = $(CC) $(MY_CFLAGS) $(CFLAGS) $(CPPFLAGS) -LINK.cxx = $(CXX) $(MY_CFLAGS) $(CXXFLAGS) $(CPPFLAGS) - -.PHONY: all objs tags ctags clean distclean help show - -# Delete the default suffixes -.SUFFIXES: - -all: $(PROGRAM) - -# Rules for creating dependency files (.d). -#------------------------------------------ - -%.d:%.c - @echo -n $(dir $<) > $@ - @$(DEPEND.d) $< >> $@ - -%.d:%.C - @echo -n $(dir $<) > $@ - @$(DEPEND.d) $< >> $@ - -%.d:%.cc - @echo -n $(dir $<) > $@ - @$(DEPEND.d) $< >> $@ - -%.d:%.cpp - @echo -n $(dir $<) > $@ - @$(DEPEND.d) $< >> $@ - -%.d:%.CPP - @echo -n $(dir $<) > $@ - @$(DEPEND.d) $< >> $@ - -%.d:%.c++ - @echo -n $(dir $<) > $@ - @$(DEPEND.d) $< >> $@ - -%.d:%.cp - @echo -n $(dir $<) > $@ - @$(DEPEND.d) $< >> $@ - -%.d:%.cxx - @echo -n $(dir $<) > $@ - @$(DEPEND.d) $< >> $@ - -# Rules for generating object files (.o). -#---------------------------------------- -objs:$(OBJS) - -%.o:%.c - $(COMPILE.c) $< -o $@ - -%.o:%.C - $(COMPILE.cxx) $< -o $@ - -%.o:%.cc - $(COMPILE.cxx) $< -o $@ - -%.o:%.cpp - $(COMPILE.cxx) $< -o $@ - -%.o:%.CPP - $(COMPILE.cxx) $< -o $@ - -%.o:%.c++ - $(COMPILE.cxx) $< -o $@ - -%.o:%.cp - $(COMPILE.cxx) $< -o $@ - -%.o:%.cxx - $(COMPILE.cxx) $< -o $@ - -# Rules for generating the tags. -#------------------------------------- -tags: $(HEADERS) $(SOURCES) - $(ETAGS) $(ETAGSFLAGS) $(HEADERS) $(SOURCES) - -ctags: $(HEADERS) $(SOURCES) - $(CTAGS) $(CTAGSFLAGS) $(HEADERS) $(SOURCES) - -# Rules for generating the executable. -#------------------------------------- -$(PROGRAM):$(OBJS) -ifeq ($(SRC_CXX),) # C program - $(LINK.c) $(OBJS) $(MY_LIBS) -o $@ $(LDFLAGS) - @echo Type ./$@ to execute the program. -else # C++ program - $(LINK.cxx) $(OBJS) $(MY_LIBS) -o $@ $(LDFLAGS) - @echo Type ./$@ to execute the program. -endif - -ifndef NODEP -ifneq ($(DEPS),) - sinclude $(DEPS) -endif -endif - -clean: - $(RM) $(OBJS) $(PROGRAM) $(PROGRAM).exe - -distclean: clean - $(RM) $(DEPS) TAGS - -# Show help. -help: - @echo 'Generic Makefile for C/C++ Programs (gcmakefile) version 0.5' - @echo 'Copyright (C) 2007, 2008 whyglinux ' - @echo - @echo 'Usage: make [TARGET]' - @echo 'TARGETS:' - @echo ' all (=make) compile and link.' - @echo ' NODEP=yes make without generating dependencies.' - @echo ' objs compile only (no linking).' - @echo ' tags create tags for Emacs editor.' - @echo ' ctags create ctags for VI editor.' - @echo ' clean clean objects and the executable file.' - @echo ' distclean clean objects, the executable and dependencies.' - @echo ' show show variables (for debug use only).' - @echo ' help print this message.' - @echo - @echo 'Report bugs to .' - -# Show variables (for debug use only.) -show: - @echo 'PROGRAM :' $(PROGRAM) - @echo 'SRCDIRS :' $(SRCDIRS) - @echo 'HEADERS :' $(HEADERS) - @echo 'SOURCES :' $(SOURCES) - @echo 'SRC_CXX :' $(SRC_CXX) - @echo 'OBJS :' $(OBJS) - @echo 'DEPS :' $(DEPS) - @echo 'DEPEND :' $(DEPEND) - @echo 'COMPILE.c :' $(COMPILE.c) - @echo 'COMPILE.cxx :' $(COMPILE.cxx) - @echo 'link.c :' $(LINK.c) - @echo 'link.cxx :' $(LINK.cxx) - -## End of the Makefile ## Suggestions are welcome ## All rights reserved ## -############################################################################# diff --git a/README b/README deleted file mode 100644 index a129ab2c3c..0000000000 --- a/README +++ /dev/null @@ -1,7 +0,0 @@ -Boxing balance surface project - -Low latency high FPS display of exact balance point of a standing person, -detected by pressure sensors at corners of a 4' by 4' platform. -Sensors read and processed by Maple ret6 board, sent to MacBook via serial USB. - - diff --git a/Source/hardware/head_hand/head_hand.pde b/hardware/head_hand/head_hand.pde similarity index 100% rename from Source/hardware/head_hand/head_hand.pde rename to hardware/head_hand/head_hand.pde diff --git a/interface.xcodeproj/philip.mode1v3 b/interface.xcodeproj/philip.mode1v3 deleted file mode 100644 index 9886a2c29f..0000000000 --- a/interface.xcodeproj/philip.mode1v3 +++ /dev/null @@ -1,1394 +0,0 @@ - - - - - ActivePerspectiveName - Project - AllowedModules - - - BundleLoadPath - - MaxInstances - n - Module - PBXSmartGroupTreeModule - Name - Groups and Files Outline View - - - BundleLoadPath - - MaxInstances - n - Module - PBXNavigatorGroup - Name - Editor - - - BundleLoadPath - - MaxInstances - n - Module - XCTaskListModule - Name - Task List - - - BundleLoadPath - - MaxInstances - n - Module - XCDetailModule - Name - File and Smart Group Detail Viewer - - - BundleLoadPath - - MaxInstances - 1 - Module - PBXBuildResultsModule - Name - Detailed Build Results Viewer - - - BundleLoadPath - - MaxInstances - 1 - Module - PBXProjectFindModule - Name - Project Batch Find Tool - - - BundleLoadPath - - MaxInstances - n - Module - XCProjectFormatConflictsModule - Name - Project Format Conflicts List - - - BundleLoadPath - - MaxInstances - n - Module - PBXBookmarksModule - Name - Bookmarks Tool - - - BundleLoadPath - - MaxInstances - n - Module - PBXClassBrowserModule - Name - Class Browser - - - BundleLoadPath - - MaxInstances - n - Module - PBXCVSModule - Name - Source Code Control Tool - - - BundleLoadPath - - MaxInstances - n - Module - PBXDebugBreakpointsModule - Name - Debug Breakpoints Tool - - - BundleLoadPath - - MaxInstances - n - Module - XCDockableInspector - Name - Inspector - - - BundleLoadPath - - MaxInstances - n - Module - PBXOpenQuicklyModule - Name - Open Quickly Tool - - - BundleLoadPath - - MaxInstances - 1 - Module - PBXDebugSessionModule - Name - Debugger - - - BundleLoadPath - - MaxInstances - 1 - Module - PBXDebugCLIModule - Name - Debug Console - - - BundleLoadPath - - MaxInstances - n - Module - XCSnapshotModule - Name - Snapshots Tool - - - BundlePath - /Developer/Library/PrivateFrameworks/DevToolsInterface.framework/Resources - Description - DefaultDescriptionKey - DockingSystemVisible - - Extension - mode1v3 - FavBarConfig - - PBXProjectModuleGUID - D40BDF9513403FC900B0BE1F - XCBarModuleItemNames - - XCBarModuleItems - - - FirstTimeWindowDisplayed - - Identifier - com.apple.perspectives.project.mode1v3 - MajorVersion - 33 - MinorVersion - 0 - Name - Default - Notifications - - OpenEditors - - PerspectiveWidths - - -1 - -1 - - Perspectives - - - ChosenToolbarItems - - active-combo-popup - action - NSToolbarFlexibleSpaceItem - debugger-enable-breakpoints - build-and-go - com.apple.ide.PBXToolbarStopButton - get-info - NSToolbarFlexibleSpaceItem - com.apple.pbx.toolbar.searchfield - - ControllerClassBaseName - - IconName - WindowOfProjectWithEditor - Identifier - perspective.project - IsVertical - - Layout - - - ContentConfiguration - - PBXBottomSmartGroupGIDs - - 1C37FBAC04509CD000000102 - 1C37FAAC04509CD000000102 - 1C37FABC05509CD000000102 - 1C37FABC05539CD112110102 - E2644B35053B69B200211256 - 1C37FABC04509CD000100104 - 1CC0EA4004350EF90044410B - 1CC0EA4004350EF90041110B - - PBXProjectModuleGUID - 1CE0B1FE06471DED0097A5F4 - PBXProjectModuleLabel - Files - PBXProjectStructureProvided - yes - PBXSmartGroupTreeModuleColumnData - - PBXSmartGroupTreeModuleColumnWidthsKey - - 186 - - PBXSmartGroupTreeModuleColumnsKey_v4 - - MainColumn - - - PBXSmartGroupTreeModuleOutlineStateKey_v7 - - PBXSmartGroupTreeModuleOutlineStateExpansionKey - - 08FB7794FE84155DC02AAC07 - D40BDFD413404BA300B0BE1F - 08FB7795FE84155DC02AAC07 - 1C37FABC05509CD000000102 - - PBXSmartGroupTreeModuleOutlineStateSelectionKey - - - 5 - 4 - 0 - - - PBXSmartGroupTreeModuleOutlineStateVisibleRectKey - {{0, 0}, {186, 660}} - - PBXTopSmartGroupGIDs - - XCIncludePerspectivesSwitch - - XCSharingToken - com.apple.Xcode.GFSharingToken - - GeometryConfiguration - - Frame - {{0, 0}, {203, 678}} - GroupTreeTableConfiguration - - MainColumn - 186 - - RubberWindowFrame - 0 59 1280 719 0 0 1280 778 - - Module - PBXSmartGroupTreeModule - Proportion - 203pt - - - Dock - - - BecomeActive - - ContentConfiguration - - PBXProjectModuleGUID - 1CE0B20306471E060097A5F4 - PBXProjectModuleLabel - main.cpp - PBXSplitModuleInNavigatorKey - - Split0 - - PBXProjectModuleGUID - 1CE0B20406471E060097A5F4 - PBXProjectModuleLabel - main.cpp - _historyCapacity - 0 - bookmark - D48F925214C54B80007626C8 - history - - D48F923814C54A47007626C8 - - - SplitCount - 1 - - StatusBarVisibility - - - GeometryConfiguration - - Frame - {{0, 0}, {1072, 599}} - RubberWindowFrame - 0 59 1280 719 0 0 1280 778 - - Module - PBXNavigatorGroup - Proportion - 599pt - - - ContentConfiguration - - PBXProjectModuleGUID - 1CE0B20506471E060097A5F4 - PBXProjectModuleLabel - Detail - - GeometryConfiguration - - Frame - {{0, 604}, {1072, 74}} - RubberWindowFrame - 0 59 1280 719 0 0 1280 778 - - Module - XCDetailModule - Proportion - 74pt - - - Proportion - 1072pt - - - Name - Project - ServiceClasses - - XCModuleDock - PBXSmartGroupTreeModule - XCModuleDock - PBXNavigatorGroup - XCDetailModule - - TableOfContents - - D48F925314C54B80007626C8 - 1CE0B1FE06471DED0097A5F4 - D48F925414C54B80007626C8 - 1CE0B20306471E060097A5F4 - 1CE0B20506471E060097A5F4 - - ToolbarConfigUserDefaultsMinorVersion - 2 - ToolbarConfiguration - xcode.toolbar.config.defaultV3 - - - ControllerClassBaseName - - IconName - WindowOfProject - Identifier - perspective.morph - IsVertical - 0 - Layout - - - BecomeActive - 1 - ContentConfiguration - - PBXBottomSmartGroupGIDs - - 1C37FBAC04509CD000000102 - 1C37FAAC04509CD000000102 - 1C08E77C0454961000C914BD - 1C37FABC05509CD000000102 - 1C37FABC05539CD112110102 - E2644B35053B69B200211256 - 1C37FABC04509CD000100104 - 1CC0EA4004350EF90044410B - 1CC0EA4004350EF90041110B - - PBXProjectModuleGUID - 11E0B1FE06471DED0097A5F4 - PBXProjectModuleLabel - Files - PBXProjectStructureProvided - yes - PBXSmartGroupTreeModuleColumnData - - PBXSmartGroupTreeModuleColumnWidthsKey - - 186 - - PBXSmartGroupTreeModuleColumnsKey_v4 - - MainColumn - - - PBXSmartGroupTreeModuleOutlineStateKey_v7 - - PBXSmartGroupTreeModuleOutlineStateExpansionKey - - 29B97314FDCFA39411CA2CEA - 1C37FABC05509CD000000102 - - PBXSmartGroupTreeModuleOutlineStateSelectionKey - - - 0 - - - PBXSmartGroupTreeModuleOutlineStateVisibleRectKey - {{0, 0}, {186, 337}} - - PBXTopSmartGroupGIDs - - XCIncludePerspectivesSwitch - 1 - XCSharingToken - com.apple.Xcode.GFSharingToken - - GeometryConfiguration - - Frame - {{0, 0}, {203, 355}} - GroupTreeTableConfiguration - - MainColumn - 186 - - RubberWindowFrame - 373 269 690 397 0 0 1440 878 - - Module - PBXSmartGroupTreeModule - Proportion - 100% - - - Name - Morph - PreferredWidth - 300 - ServiceClasses - - XCModuleDock - PBXSmartGroupTreeModule - - TableOfContents - - 11E0B1FE06471DED0097A5F4 - - ToolbarConfiguration - xcode.toolbar.config.default.shortV3 - - - PerspectivesBarVisible - - ShelfIsVisible - - SourceDescription - file at '/Developer/Library/PrivateFrameworks/DevToolsInterface.framework/Resources/XCPerspectivesSpecificationMode1.xcperspec' - StatusbarIsVisible - - TimeStamp - 0.0 - ToolbarConfigUserDefaultsMinorVersion - 2 - ToolbarDisplayMode - 1 - ToolbarIsVisible - - ToolbarSizeMode - 1 - Type - Perspectives - UpdateMessage - The Default Workspace in this version of Xcode now includes support to hide and show the detail view (what has been referred to as the "Metro-Morph" feature). You must discard your current Default Workspace settings and update to the latest Default Workspace in order to gain this feature. Do you wish to update to the latest Workspace defaults for project '%@'? - WindowJustification - 5 - WindowOrderList - - 1CD10A99069EF8BA00B06720 - D40BDF9613403FC900B0BE1F - /Users/philip/Desktop/automata/Automata7/automata6.xcodeproj - - WindowString - 0 59 1280 719 0 0 1280 778 - WindowToolsV3 - - - FirstTimeWindowDisplayed - - Identifier - windowTool.build - IsVertical - - Layout - - - Dock - - - ContentConfiguration - - PBXProjectModuleGUID - 1CD0528F0623707200166675 - PBXProjectModuleLabel - - StatusBarVisibility - - - GeometryConfiguration - - Frame - {{0, 0}, {500, 218}} - RubberWindowFrame - 582 171 500 500 0 0 1280 778 - - Module - PBXNavigatorGroup - Proportion - 218pt - - - ContentConfiguration - - PBXProjectModuleGUID - XCMainBuildResultsModuleGUID - PBXProjectModuleLabel - Build Results - XCBuildResultsTrigger_Collapse - 1021 - XCBuildResultsTrigger_Open - 1011 - - GeometryConfiguration - - Frame - {{0, 223}, {500, 236}} - RubberWindowFrame - 582 171 500 500 0 0 1280 778 - - Module - PBXBuildResultsModule - Proportion - 236pt - - - Proportion - 459pt - - - Name - Build Results - ServiceClasses - - PBXBuildResultsModule - - StatusbarIsVisible - - TableOfContents - - D40BDF9613403FC900B0BE1F - D48F925514C54B80007626C8 - 1CD0528F0623707200166675 - XCMainBuildResultsModuleGUID - - ToolbarConfiguration - xcode.toolbar.config.buildV3 - WindowContentMinSize - 486 300 - WindowString - 582 171 500 500 0 0 1280 778 - WindowToolGUID - D40BDF9613403FC900B0BE1F - WindowToolIsVisible - - - - FirstTimeWindowDisplayed - - Identifier - windowTool.debugger - IsVertical - - Layout - - - Dock - - - ContentConfiguration - - Debugger - - HorizontalSplitView - - _collapsingFrameDimension - 0.0 - _indexOfCollapsedView - 0 - _percentageOfCollapsedView - 0.0 - isCollapsed - yes - sizes - - {{0, 0}, {316, 203}} - {{316, 0}, {378, 203}} - - - VerticalSplitView - - _collapsingFrameDimension - 0.0 - _indexOfCollapsedView - 0 - _percentageOfCollapsedView - 0.0 - isCollapsed - yes - sizes - - {{0, 0}, {694, 203}} - {{0, 203}, {694, 178}} - - - - LauncherConfigVersion - 8 - PBXProjectModuleGUID - 1C162984064C10D400B95A72 - PBXProjectModuleLabel - Debug - GLUTExamples (Underwater) - - GeometryConfiguration - - DebugConsoleVisible - None - DebugConsoleWindowFrame - {{200, 200}, {500, 300}} - DebugSTDIOWindowFrame - {{200, 200}, {500, 300}} - Frame - {{0, 0}, {694, 381}} - PBXDebugSessionStackFrameViewKey - - DebugVariablesTableConfiguration - - Name - 120 - Value - 85 - Summary - 148 - - Frame - {{316, 0}, {378, 203}} - RubberWindowFrame - 238 333 694 422 0 0 1280 778 - - RubberWindowFrame - 238 333 694 422 0 0 1280 778 - - Module - PBXDebugSessionModule - Proportion - 381pt - - - Proportion - 381pt - - - Name - Debugger - ServiceClasses - - PBXDebugSessionModule - - StatusbarIsVisible - - TableOfContents - - 1CD10A99069EF8BA00B06720 - D48F925614C54B80007626C8 - 1C162984064C10D400B95A72 - D48F925714C54B80007626C8 - D48F925814C54B80007626C8 - D48F925914C54B80007626C8 - D48F925A14C54B80007626C8 - D48F925B14C54B80007626C8 - - ToolbarConfiguration - xcode.toolbar.config.debugV3 - WindowString - 238 333 694 422 0 0 1280 778 - WindowToolGUID - 1CD10A99069EF8BA00B06720 - WindowToolIsVisible - - - - Identifier - windowTool.find - Layout - - - Dock - - - Dock - - - ContentConfiguration - - PBXProjectModuleGUID - 1CDD528C0622207200134675 - PBXProjectModuleLabel - <No Editor> - PBXSplitModuleInNavigatorKey - - Split0 - - PBXProjectModuleGUID - 1CD0528D0623707200166675 - - SplitCount - 1 - - StatusBarVisibility - 1 - - GeometryConfiguration - - Frame - {{0, 0}, {781, 167}} - RubberWindowFrame - 62 385 781 470 0 0 1440 878 - - Module - PBXNavigatorGroup - Proportion - 781pt - - - Proportion - 50% - - - BecomeActive - 1 - ContentConfiguration - - PBXProjectModuleGUID - 1CD0528E0623707200166675 - PBXProjectModuleLabel - Project Find - - GeometryConfiguration - - Frame - {{8, 0}, {773, 254}} - RubberWindowFrame - 62 385 781 470 0 0 1440 878 - - Module - PBXProjectFindModule - Proportion - 50% - - - Proportion - 428pt - - - Name - Project Find - ServiceClasses - - PBXProjectFindModule - - StatusbarIsVisible - 1 - TableOfContents - - 1C530D57069F1CE1000CFCEE - 1C530D58069F1CE1000CFCEE - 1C530D59069F1CE1000CFCEE - 1CDD528C0622207200134675 - 1C530D5A069F1CE1000CFCEE - 1CE0B1FE06471DED0097A5F4 - 1CD0528E0623707200166675 - - WindowString - 62 385 781 470 0 0 1440 878 - WindowToolGUID - 1C530D57069F1CE1000CFCEE - WindowToolIsVisible - 0 - - - Identifier - MENUSEPARATOR - - - FirstTimeWindowDisplayed - - Identifier - windowTool.debuggerConsole - IsVertical - - Layout - - - Dock - - - ContentConfiguration - - PBXProjectModuleGUID - 1C78EAAC065D492600B07095 - PBXProjectModuleLabel - Debugger Console - - GeometryConfiguration - - Frame - {{0, 0}, {650, 209}} - RubberWindowFrame - 45 499 650 250 0 0 1280 778 - - Module - PBXDebugCLIModule - Proportion - 209pt - - - Proportion - 209pt - - - Name - Debugger Console - ServiceClasses - - PBXDebugCLIModule - - StatusbarIsVisible - - TableOfContents - - 1C78EAAD065D492600B07095 - D48F924214C54A47007626C8 - 1C78EAAC065D492600B07095 - - ToolbarConfiguration - xcode.toolbar.config.consoleV3 - WindowString - 45 499 650 250 0 0 1280 778 - WindowToolGUID - 1C78EAAD065D492600B07095 - WindowToolIsVisible - - - - Identifier - windowTool.snapshots - Layout - - - Dock - - - Module - XCSnapshotModule - Proportion - 100% - - - Proportion - 100% - - - Name - Snapshots - ServiceClasses - - XCSnapshotModule - - StatusbarIsVisible - Yes - ToolbarConfiguration - xcode.toolbar.config.snapshots - WindowString - 315 824 300 550 0 0 1440 878 - WindowToolIsVisible - Yes - - - Identifier - windowTool.scm - Layout - - - Dock - - - ContentConfiguration - - PBXProjectModuleGUID - 1C78EAB2065D492600B07095 - PBXProjectModuleLabel - <No Editor> - PBXSplitModuleInNavigatorKey - - Split0 - - PBXProjectModuleGUID - 1C78EAB3065D492600B07095 - - SplitCount - 1 - - StatusBarVisibility - 1 - - GeometryConfiguration - - Frame - {{0, 0}, {452, 0}} - RubberWindowFrame - 743 379 452 308 0 0 1280 1002 - - Module - PBXNavigatorGroup - Proportion - 0pt - - - BecomeActive - 1 - ContentConfiguration - - PBXProjectModuleGUID - 1CD052920623707200166675 - PBXProjectModuleLabel - SCM - - GeometryConfiguration - - ConsoleFrame - {{0, 259}, {452, 0}} - Frame - {{0, 7}, {452, 259}} - RubberWindowFrame - 743 379 452 308 0 0 1280 1002 - TableConfiguration - - Status - 30 - FileName - 199 - Path - 197.0950012207031 - - TableFrame - {{0, 0}, {452, 250}} - - Module - PBXCVSModule - Proportion - 262pt - - - Proportion - 266pt - - - Name - SCM - ServiceClasses - - PBXCVSModule - - StatusbarIsVisible - 1 - TableOfContents - - 1C78EAB4065D492600B07095 - 1C78EAB5065D492600B07095 - 1C78EAB2065D492600B07095 - 1CD052920623707200166675 - - ToolbarConfiguration - xcode.toolbar.config.scm - WindowString - 743 379 452 308 0 0 1280 1002 - - - Identifier - windowTool.breakpoints - IsVertical - 0 - Layout - - - Dock - - - BecomeActive - 1 - ContentConfiguration - - PBXBottomSmartGroupGIDs - - 1C77FABC04509CD000000102 - - PBXProjectModuleGUID - 1CE0B1FE06471DED0097A5F4 - PBXProjectModuleLabel - Files - PBXProjectStructureProvided - no - PBXSmartGroupTreeModuleColumnData - - PBXSmartGroupTreeModuleColumnWidthsKey - - 168 - - PBXSmartGroupTreeModuleColumnsKey_v4 - - MainColumn - - - PBXSmartGroupTreeModuleOutlineStateKey_v7 - - PBXSmartGroupTreeModuleOutlineStateExpansionKey - - 1C77FABC04509CD000000102 - - PBXSmartGroupTreeModuleOutlineStateSelectionKey - - - 0 - - - PBXSmartGroupTreeModuleOutlineStateVisibleRectKey - {{0, 0}, {168, 350}} - - PBXTopSmartGroupGIDs - - XCIncludePerspectivesSwitch - 0 - - GeometryConfiguration - - Frame - {{0, 0}, {185, 368}} - GroupTreeTableConfiguration - - MainColumn - 168 - - RubberWindowFrame - 315 424 744 409 0 0 1440 878 - - Module - PBXSmartGroupTreeModule - Proportion - 185pt - - - ContentConfiguration - - PBXProjectModuleGUID - 1CA1AED706398EBD00589147 - PBXProjectModuleLabel - Detail - - GeometryConfiguration - - Frame - {{190, 0}, {554, 368}} - RubberWindowFrame - 315 424 744 409 0 0 1440 878 - - Module - XCDetailModule - Proportion - 554pt - - - Proportion - 368pt - - - MajorVersion - 3 - MinorVersion - 0 - Name - Breakpoints - ServiceClasses - - PBXSmartGroupTreeModule - XCDetailModule - - StatusbarIsVisible - 1 - TableOfContents - - 1CDDB66807F98D9800BB5817 - 1CDDB66907F98D9800BB5817 - 1CE0B1FE06471DED0097A5F4 - 1CA1AED706398EBD00589147 - - ToolbarConfiguration - xcode.toolbar.config.breakpointsV3 - WindowString - 315 424 744 409 0 0 1440 878 - WindowToolGUID - 1CDDB66807F98D9800BB5817 - WindowToolIsVisible - 1 - - - Identifier - windowTool.debugAnimator - Layout - - - Dock - - - Module - PBXNavigatorGroup - Proportion - 100% - - - Proportion - 100% - - - Name - Debug Visualizer - ServiceClasses - - PBXNavigatorGroup - - StatusbarIsVisible - 1 - ToolbarConfiguration - xcode.toolbar.config.debugAnimatorV3 - WindowString - 100 100 700 500 0 0 1280 1002 - - - Identifier - windowTool.bookmarks - Layout - - - Dock - - - Module - PBXBookmarksModule - Proportion - 100% - - - Proportion - 100% - - - Name - Bookmarks - ServiceClasses - - PBXBookmarksModule - - StatusbarIsVisible - 0 - WindowString - 538 42 401 187 0 0 1280 1002 - - - Identifier - windowTool.projectFormatConflicts - Layout - - - Dock - - - Module - XCProjectFormatConflictsModule - Proportion - 100% - - - Proportion - 100% - - - Name - Project Format Conflicts - ServiceClasses - - XCProjectFormatConflictsModule - - StatusbarIsVisible - 0 - WindowContentMinSize - 450 300 - WindowString - 50 850 472 307 0 0 1440 877 - - - Identifier - windowTool.classBrowser - Layout - - - Dock - - - BecomeActive - 1 - ContentConfiguration - - OptionsSetName - Hierarchy, all classes - PBXProjectModuleGUID - 1CA6456E063B45B4001379D8 - PBXProjectModuleLabel - Class Browser - NSObject - - GeometryConfiguration - - ClassesFrame - {{0, 0}, {374, 96}} - ClassesTreeTableConfiguration - - PBXClassNameColumnIdentifier - 208 - PBXClassBookColumnIdentifier - 22 - - Frame - {{0, 0}, {630, 331}} - MembersFrame - {{0, 105}, {374, 395}} - MembersTreeTableConfiguration - - PBXMemberTypeIconColumnIdentifier - 22 - PBXMemberNameColumnIdentifier - 216 - PBXMemberTypeColumnIdentifier - 97 - PBXMemberBookColumnIdentifier - 22 - - PBXModuleWindowStatusBarHidden2 - 1 - RubberWindowFrame - 385 179 630 352 0 0 1440 878 - - Module - PBXClassBrowserModule - Proportion - 332pt - - - Proportion - 332pt - - - Name - Class Browser - ServiceClasses - - PBXClassBrowserModule - - StatusbarIsVisible - 0 - TableOfContents - - 1C0AD2AF069F1E9B00FABCE6 - 1C0AD2B0069F1E9B00FABCE6 - 1CA6456E063B45B4001379D8 - - ToolbarConfiguration - xcode.toolbar.config.classbrowser - WindowString - 385 179 630 352 0 0 1440 878 - WindowToolGUID - 1C0AD2AF069F1E9B00FABCE6 - WindowToolIsVisible - 0 - - - Identifier - windowTool.refactoring - IncludeInToolsMenu - 0 - Layout - - - Dock - - - BecomeActive - 1 - GeometryConfiguration - - Frame - {0, 0}, {500, 335} - RubberWindowFrame - {0, 0}, {500, 335} - - Module - XCRefactoringModule - Proportion - 100% - - - Proportion - 100% - - - Name - Refactoring - ServiceClasses - - XCRefactoringModule - - WindowString - 200 200 500 356 0 0 1920 1200 - - - - diff --git a/interface.xcodeproj/philip.pbxuser b/interface.xcodeproj/philip.pbxuser deleted file mode 100644 index cc5a5f75df..0000000000 --- a/interface.xcodeproj/philip.pbxuser +++ /dev/null @@ -1,148 +0,0 @@ -// !$*UTF8*$! -{ - 08FB7793FE84155DC02AAC07 /* Project object */ = { - activeBuildConfigurationName = Release; - activeExecutable = D40BDF8D13403FC300B0BE1F /* automata7 */; - activeTarget = 8DD76F620486A84900D96B5E /* automata7 */; - addToTargets = ( - 8DD76F620486A84900D96B5E /* automata7 */, - ); - codeSenseManager = D40BDF9913403FC900B0BE1F /* Code sense */; - executables = ( - D40BDF8D13403FC300B0BE1F /* automata7 */, - ); - perUserDictionary = { - PBXConfiguration.PBXFileTableDataSource3.PBXFileTableDataSource = { - PBXFileTableDataSourceColumnSortingDirectionKey = "-1"; - PBXFileTableDataSourceColumnSortingKey = PBXFileDataSource_Filename_ColumnID; - PBXFileTableDataSourceColumnWidthsKey = ( - 20, - 833, - 20, - 48, - 43, - 43, - 20, - ); - PBXFileTableDataSourceColumnsKey = ( - PBXFileDataSource_FiletypeID, - PBXFileDataSource_Filename_ColumnID, - PBXFileDataSource_Built_ColumnID, - PBXFileDataSource_ObjectSize_ColumnID, - PBXFileDataSource_Errors_ColumnID, - PBXFileDataSource_Warnings_ColumnID, - PBXFileDataSource_Target_ColumnID, - ); - }; - PBXPerProjectTemplateStateSaveDate = 348474226; - PBXWorkspaceStateSaveDate = 348474226; - }; - perUserProjectItems = { - D48F923814C54A47007626C8 = D48F923814C54A47007626C8 /* PBXTextBookmark */; - D48F925214C54B80007626C8 /* PBXTextBookmark */ = D48F925214C54B80007626C8 /* PBXTextBookmark */; - D4C40DC71492DE0C0098EA8B = D4C40DC71492DE0C0098EA8B /* PBXTextBookmark */; - D4DCA72D144F9BEB00D336A4 = D4DCA72D144F9BEB00D336A4 /* PBXTextBookmark */; - }; - sourceControlManager = D40BDF9813403FC900B0BE1F /* Source Control */; - userBuildSettings = { - }; - }; - 08FB7796FE84155DC02AAC07 /* main.cpp */ = { - uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {1011, 6812}}"; - sepNavSelRange = "{63, 0}"; - sepNavVisRange = "{835, 1307}"; - sepNavWindowFrame = "{{61, 173}, {750, 558}}"; - }; - }; - 8DD76F620486A84900D96B5E /* automata7 */ = { - activeExec = 0; - executables = ( - D40BDF8D13403FC300B0BE1F /* automata7 */, - ); - }; - D40BDF8D13403FC300B0BE1F /* automata7 */ = { - isa = PBXExecutable; - activeArgIndices = ( - ); - argumentStrings = ( - ); - autoAttachOnCrash = 1; - breakpointsEnabled = 0; - configStateDict = { - }; - customDataFormattersEnabled = 1; - dataTipCustomDataFormattersEnabled = 1; - dataTipShowTypeColumn = 1; - dataTipSortType = 0; - debuggerPlugin = GDBDebugging; - disassemblyDisplayState = 0; - dylibVariantSuffix = ""; - enableDebugStr = 1; - environmentEntries = ( - ); - executableSystemSymbolLevel = 0; - executableUserSymbolLevel = 0; - libgmallocEnabled = 0; - name = automata7; - savedGlobals = { - }; - showTypeColumn = 0; - sourceDirectories = ( - ); - }; - D40BDF9813403FC900B0BE1F /* Source Control */ = { - isa = PBXSourceControlManager; - fallbackIsa = XCSourceControlManager; - isSCMEnabled = 0; - scmConfiguration = { - repositoryNamesForRoots = { - "" = ""; - }; - }; - }; - D40BDF9913403FC900B0BE1F /* Code sense */ = { - isa = PBXCodeSenseManager; - indexTemplatePath = ""; - }; - D48F923814C54A47007626C8 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 08FB7796FE84155DC02AAC07 /* main.cpp */; - name = "main.cpp: 3"; - rLen = 0; - rLoc = 63; - rType = 0; - vrLen = 1296; - vrLoc = 845; - }; - D48F925214C54B80007626C8 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 08FB7796FE84155DC02AAC07 /* main.cpp */; - name = "main.cpp: 3"; - rLen = 0; - rLoc = 63; - rType = 0; - vrLen = 1307; - vrLoc = 835; - }; - D4C40DC71492DE0C0098EA8B /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 08FB7796FE84155DC02AAC07 /* main.cpp */; - name = "main.cpp: 3"; - rLen = 0; - rLoc = 63; - rType = 0; - vrLen = 1047; - vrLoc = 0; - }; - D4DCA72D144F9BEB00D336A4 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 08FB7796FE84155DC02AAC07 /* main.cpp */; - name = "main.cpp: 454"; - rLen = 9; - rLoc = 12353; - rType = 0; - vrLen = 1746; - vrLoc = 1573; - }; -} diff --git a/interface.xcodeproj/project.pbxproj b/interface.xcodeproj/project.pbxproj deleted file mode 100644 index 4e3c60e1db..0000000000 --- a/interface.xcodeproj/project.pbxproj +++ /dev/null @@ -1,1008 +0,0 @@ -// !$*UTF8*$! -{ - archiveVersion = 1; - classes = { - }; - objectVersion = 46; - objects = { - -/* Begin PBXBuildFile section */ - 532C7AF216AF298D00B1A969 /* CVBlob.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 532C792A16AF298900B1A969 /* CVBlob.framework */; }; - 532C7CCC16AF301E00B1A969 /* grayson-particle.png in CopyFiles */ = {isa = PBXBuildFile; fileRef = 532C7AC316AF298D00B1A969 /* grayson-particle.png */; }; - 532C7CCD16AF301E00B1A969 /* int-texture256-v2.png in CopyFiles */ = {isa = PBXBuildFile; fileRef = 532C7AC416AF298D00B1A969 /* int-texture256-v2.png */; }; - 532C7CCE16AF301E00B1A969 /* int-texture256-v4.png in CopyFiles */ = {isa = PBXBuildFile; fileRef = 532C7AC516AF298D00B1A969 /* int-texture256-v4.png */; }; - 532C7CCF16AF301E00B1A969 /* int-texture256-v5.png in CopyFiles */ = {isa = PBXBuildFile; fileRef = 532C7AC616AF298D00B1A969 /* int-texture256-v5.png */; }; - 532C7CD016AF301E00B1A969 /* philip-image.png in CopyFiles */ = {isa = PBXBuildFile; fileRef = 532C7AC716AF298D00B1A969 /* philip-image.png */; }; - 532C7CD116AF301E00B1A969 /* pngtest8rgba.png in CopyFiles */ = {isa = PBXBuildFile; fileRef = 532C7AC816AF298D00B1A969 /* pngtest8rgba.png */; }; - 532C7CD216AF301E00B1A969 /* sphere.png in CopyFiles */ = {isa = PBXBuildFile; fileRef = 532C7AC916AF298D00B1A969 /* sphere.png */; }; - 532C803C16AF3B1900B1A969 /* libportaudio.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 532C802816AF3B1900B1A969 /* libportaudio.a */; }; - 533B578716B2160C00FCABF1 /* grayson.raw in CopyFiles */ = {isa = PBXBuildFile; fileRef = 533B578516B2160600FCABF1 /* grayson.raw */; }; - 533BF9D516B31A4700AC31BB /* jeska.raw in CopyFiles */ = {isa = PBXBuildFile; fileRef = 533BF9D316B31A3B00AC31BB /* jeska.raw */; }; - 535B821116B9BED400D18440 /* lodepng.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 535B820F16B9BED400D18440 /* lodepng.cpp */; }; - 538BA8A316B1B71E000BF99C /* love.raw in CopyFiles */ = {isa = PBXBuildFile; fileRef = 538BA8A216B1B719000BF99C /* love.raw */; }; - 53A4EAB216BC770A00F07F4C /* AudioRingBuffer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 53A4EAB016BC770A00F07F4C /* AudioRingBuffer.cpp */; }; - 53ACC39816B9C59500ABD227 /* Oscilloscope.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 53ACC39616B9C59500ABD227 /* Oscilloscope.cpp */; }; - 53CF371716B9C039001FCB05 /* Agent.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 53CF36EC16B9C039001FCB05 /* Agent.cpp */; }; - 53CF371816B9C039001FCB05 /* Audio.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 53CF36EE16B9C039001FCB05 /* Audio.cpp */; }; - 53CF371916B9C039001FCB05 /* AudioData.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 53CF36F016B9C039001FCB05 /* AudioData.cpp */; }; - 53CF371A16B9C039001FCB05 /* AudioSource.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 53CF36F216B9C039001FCB05 /* AudioSource.cpp */; }; - 53CF371B16B9C039001FCB05 /* Cloud.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 53CF36F416B9C039001FCB05 /* Cloud.cpp */; }; - 53CF371C16B9C039001FCB05 /* Cube.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 53CF36F616B9C039001FCB05 /* Cube.cpp */; }; - 53CF371D16B9C039001FCB05 /* Field.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 53CF36F816B9C039001FCB05 /* Field.cpp */; }; - 53CF371E16B9C039001FCB05 /* Finger.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 53CF36FA16B9C039001FCB05 /* Finger.cpp */; }; - 53CF371F16B9C039001FCB05 /* Hand.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 53CF36FC16B9C039001FCB05 /* Hand.cpp */; }; - 53CF372016B9C039001FCB05 /* Head.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 53CF370116B9C039001FCB05 /* Head.cpp */; }; - 53CF372116B9C039001FCB05 /* Lattice.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 53CF370316B9C039001FCB05 /* Lattice.cpp */; }; - 53CF372216B9C039001FCB05 /* main.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 53CF370516B9C039001FCB05 /* main.cpp */; }; - 53CF372516B9C039001FCB05 /* Network.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 53CF370A16B9C039001FCB05 /* Network.cpp */; }; - 53CF372616B9C039001FCB05 /* Particle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 53CF370C16B9C039001FCB05 /* Particle.cpp */; }; - 53CF372716B9C039001FCB05 /* SerialInterface.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 53CF370E16B9C039001FCB05 /* SerialInterface.cpp */; }; - 53CF372816B9C039001FCB05 /* Texture.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 53CF371016B9C039001FCB05 /* Texture.cpp */; }; - 53CF372916B9C039001FCB05 /* UDPSocket.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 53CF371216B9C039001FCB05 /* UDPSocket.cpp */; }; - 53CF372A16B9C039001FCB05 /* Util.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 53CF371416B9C039001FCB05 /* Util.cpp */; }; - B6BDADE115F44A9D002A07DF /* CoreServices.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B6BDADDE15F444DB002A07DF /* CoreServices.framework */; }; - B6BDADE215F44AA5002A07DF /* CoreAudio.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B6BDADD815F444C1002A07DF /* CoreAudio.framework */; }; - B6BDADE315F44AB0002A07DF /* AudioToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B6BDADDA15F444C9002A07DF /* AudioToolbox.framework */; }; - B6BDADE415F44AC7002A07DF /* AudioUnit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B6BDADDC15F444D3002A07DF /* AudioUnit.framework */; }; - D40BDFD513404BA300B0BE1F /* GLUT.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D40BDFD413404BA300B0BE1F /* GLUT.framework */; }; - D40BDFD713404BB300B0BE1F /* OpenGL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D40BDFD613404BB300B0BE1F /* OpenGL.framework */; }; - D4200F7816C0DBA3000F8D6D /* octal.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D4200F7616C0DBA3000F8D6D /* octal.cpp */; }; -/* End PBXBuildFile section */ - -/* Begin PBXCopyFilesBuildPhase section */ - 8DD76F690486A84900D96B5E /* CopyFiles */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 12; - dstPath = ""; - dstSubfolderSpec = 16; - files = ( - 532C7CCC16AF301E00B1A969 /* grayson-particle.png in CopyFiles */, - 532C7CCD16AF301E00B1A969 /* int-texture256-v2.png in CopyFiles */, - 533B578716B2160C00FCABF1 /* grayson.raw in CopyFiles */, - 532C7CCE16AF301E00B1A969 /* int-texture256-v4.png in CopyFiles */, - 538BA8A316B1B71E000BF99C /* love.raw in CopyFiles */, - 533BF9D516B31A4700AC31BB /* jeska.raw in CopyFiles */, - 532C7CCF16AF301E00B1A969 /* int-texture256-v5.png in CopyFiles */, - 532C7CD016AF301E00B1A969 /* philip-image.png in CopyFiles */, - 532C7CD116AF301E00B1A969 /* pngtest8rgba.png in CopyFiles */, - 532C7CD216AF301E00B1A969 /* sphere.png in CopyFiles */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXCopyFilesBuildPhase section */ - -/* Begin PBXFileReference section */ - 532C792A16AF298900B1A969 /* CVBlob.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CVBlob.framework; path = Frameworks/CVBlob.framework; sourceTree = ""; }; - 532C7AC316AF298D00B1A969 /* grayson-particle.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "grayson-particle.png"; sourceTree = ""; }; - 532C7AC416AF298D00B1A969 /* int-texture256-v2.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "int-texture256-v2.png"; sourceTree = ""; }; - 532C7AC516AF298D00B1A969 /* int-texture256-v4.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "int-texture256-v4.png"; sourceTree = ""; }; - 532C7AC616AF298D00B1A969 /* int-texture256-v5.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "int-texture256-v5.png"; sourceTree = ""; }; - 532C7AC716AF298D00B1A969 /* philip-image.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "philip-image.png"; sourceTree = ""; }; - 532C7AC816AF298D00B1A969 /* pngtest8rgba.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = pngtest8rgba.png; sourceTree = ""; }; - 532C7AC916AF298D00B1A969 /* sphere.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sphere.png; sourceTree = ""; }; - 532C7E9616AF3B1500B1A969 /* CMakeLists.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = CMakeLists.txt; sourceTree = ""; }; - 532C7E9816AF3B1500B1A969 /* _detail.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = _detail.hpp; sourceTree = ""; }; - 532C7E9916AF3B1500B1A969 /* _fixes.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = _fixes.hpp; sourceTree = ""; }; - 532C7E9A16AF3B1500B1A969 /* _swizzle.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = _swizzle.hpp; sourceTree = ""; }; - 532C7E9B16AF3B1500B1A969 /* _swizzle_func.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = _swizzle_func.hpp; sourceTree = ""; }; - 532C7E9C16AF3B1500B1A969 /* _vectorize.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = _vectorize.hpp; sourceTree = ""; }; - 532C7E9D16AF3B1500B1A969 /* dummy.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = dummy.cpp; sourceTree = ""; }; - 532C7E9E16AF3B1500B1A969 /* func_common.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = func_common.hpp; sourceTree = ""; }; - 532C7E9F16AF3B1500B1A969 /* func_common.inl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = func_common.inl; sourceTree = ""; }; - 532C7EA016AF3B1500B1A969 /* func_exponential.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = func_exponential.hpp; sourceTree = ""; }; - 532C7EA116AF3B1500B1A969 /* func_exponential.inl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = func_exponential.inl; sourceTree = ""; }; - 532C7EA216AF3B1500B1A969 /* func_geometric.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = func_geometric.hpp; sourceTree = ""; }; - 532C7EA316AF3B1500B1A969 /* func_geometric.inl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = func_geometric.inl; sourceTree = ""; }; - 532C7EA416AF3B1500B1A969 /* func_integer.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = func_integer.hpp; sourceTree = ""; }; - 532C7EA516AF3B1500B1A969 /* func_integer.inl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = func_integer.inl; sourceTree = ""; }; - 532C7EA616AF3B1500B1A969 /* func_matrix.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = func_matrix.hpp; sourceTree = ""; }; - 532C7EA716AF3B1500B1A969 /* func_matrix.inl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = func_matrix.inl; sourceTree = ""; }; - 532C7EA816AF3B1500B1A969 /* func_noise.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = func_noise.hpp; sourceTree = ""; }; - 532C7EA916AF3B1500B1A969 /* func_noise.inl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = func_noise.inl; sourceTree = ""; }; - 532C7EAA16AF3B1500B1A969 /* func_packing.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = func_packing.hpp; sourceTree = ""; }; - 532C7EAB16AF3B1500B1A969 /* func_packing.inl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = func_packing.inl; sourceTree = ""; }; - 532C7EAC16AF3B1500B1A969 /* func_trigonometric.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = func_trigonometric.hpp; sourceTree = ""; }; - 532C7EAD16AF3B1500B1A969 /* func_trigonometric.inl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = func_trigonometric.inl; sourceTree = ""; }; - 532C7EAE16AF3B1500B1A969 /* func_vector_relational.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = func_vector_relational.hpp; sourceTree = ""; }; - 532C7EAF16AF3B1500B1A969 /* func_vector_relational.inl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = func_vector_relational.inl; sourceTree = ""; }; - 532C7EB016AF3B1500B1A969 /* hint.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = hint.hpp; sourceTree = ""; }; - 532C7EB116AF3B1500B1A969 /* intrinsic_common.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = intrinsic_common.hpp; sourceTree = ""; }; - 532C7EB216AF3B1500B1A969 /* intrinsic_common.inl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = intrinsic_common.inl; sourceTree = ""; }; - 532C7EB316AF3B1500B1A969 /* intrinsic_exponential.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = intrinsic_exponential.hpp; sourceTree = ""; }; - 532C7EB416AF3B1500B1A969 /* intrinsic_exponential.inl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = intrinsic_exponential.inl; sourceTree = ""; }; - 532C7EB516AF3B1500B1A969 /* intrinsic_geometric.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = intrinsic_geometric.hpp; sourceTree = ""; }; - 532C7EB616AF3B1500B1A969 /* intrinsic_geometric.inl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = intrinsic_geometric.inl; sourceTree = ""; }; - 532C7EB716AF3B1500B1A969 /* intrinsic_matrix.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = intrinsic_matrix.hpp; sourceTree = ""; }; - 532C7EB816AF3B1500B1A969 /* intrinsic_matrix.inl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = intrinsic_matrix.inl; sourceTree = ""; }; - 532C7EB916AF3B1500B1A969 /* intrinsic_trigonometric.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = intrinsic_trigonometric.hpp; sourceTree = ""; }; - 532C7EBA16AF3B1500B1A969 /* intrinsic_trigonometric.inl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = intrinsic_trigonometric.inl; sourceTree = ""; }; - 532C7EBB16AF3B1500B1A969 /* intrinsic_vector_relational.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = intrinsic_vector_relational.hpp; sourceTree = ""; }; - 532C7EBC16AF3B1500B1A969 /* intrinsic_vector_relational.inl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = intrinsic_vector_relational.inl; sourceTree = ""; }; - 532C7EBD16AF3B1500B1A969 /* setup.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = setup.hpp; sourceTree = ""; }; - 532C7EBE16AF3B1500B1A969 /* type.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = type.hpp; sourceTree = ""; }; - 532C7EBF16AF3B1500B1A969 /* type_float.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = type_float.hpp; sourceTree = ""; }; - 532C7EC016AF3B1500B1A969 /* type_gentype.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = type_gentype.hpp; sourceTree = ""; }; - 532C7EC116AF3B1500B1A969 /* type_gentype.inl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = type_gentype.inl; sourceTree = ""; }; - 532C7EC216AF3B1500B1A969 /* type_half.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = type_half.hpp; sourceTree = ""; }; - 532C7EC316AF3B1500B1A969 /* type_half.inl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = type_half.inl; sourceTree = ""; }; - 532C7EC416AF3B1500B1A969 /* type_int.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = type_int.hpp; sourceTree = ""; }; - 532C7EC516AF3B1500B1A969 /* type_mat.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = type_mat.hpp; sourceTree = ""; }; - 532C7EC616AF3B1500B1A969 /* type_mat.inl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = type_mat.inl; sourceTree = ""; }; - 532C7EC716AF3B1500B1A969 /* type_mat2x2.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = type_mat2x2.hpp; sourceTree = ""; }; - 532C7EC816AF3B1500B1A969 /* type_mat2x2.inl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = type_mat2x2.inl; sourceTree = ""; }; - 532C7EC916AF3B1500B1A969 /* type_mat2x3.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = type_mat2x3.hpp; sourceTree = ""; }; - 532C7ECA16AF3B1500B1A969 /* type_mat2x3.inl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = type_mat2x3.inl; sourceTree = ""; }; - 532C7ECB16AF3B1500B1A969 /* type_mat2x4.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = type_mat2x4.hpp; sourceTree = ""; }; - 532C7ECC16AF3B1600B1A969 /* type_mat2x4.inl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = type_mat2x4.inl; sourceTree = ""; }; - 532C7ECD16AF3B1600B1A969 /* type_mat3x2.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = type_mat3x2.hpp; sourceTree = ""; }; - 532C7ECE16AF3B1600B1A969 /* type_mat3x2.inl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = type_mat3x2.inl; sourceTree = ""; }; - 532C7ECF16AF3B1600B1A969 /* type_mat3x3.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = type_mat3x3.hpp; sourceTree = ""; }; - 532C7ED016AF3B1600B1A969 /* type_mat3x3.inl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = type_mat3x3.inl; sourceTree = ""; }; - 532C7ED116AF3B1600B1A969 /* type_mat3x4.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = type_mat3x4.hpp; sourceTree = ""; }; - 532C7ED216AF3B1600B1A969 /* type_mat3x4.inl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = type_mat3x4.inl; sourceTree = ""; }; - 532C7ED316AF3B1600B1A969 /* type_mat4x2.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = type_mat4x2.hpp; sourceTree = ""; }; - 532C7ED416AF3B1600B1A969 /* type_mat4x2.inl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = type_mat4x2.inl; sourceTree = ""; }; - 532C7ED516AF3B1600B1A969 /* type_mat4x3.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = type_mat4x3.hpp; sourceTree = ""; }; - 532C7ED616AF3B1600B1A969 /* type_mat4x3.inl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = type_mat4x3.inl; sourceTree = ""; }; - 532C7ED716AF3B1600B1A969 /* type_mat4x4.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = type_mat4x4.hpp; sourceTree = ""; }; - 532C7ED816AF3B1600B1A969 /* type_mat4x4.inl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = type_mat4x4.inl; sourceTree = ""; }; - 532C7ED916AF3B1600B1A969 /* type_size.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = type_size.hpp; sourceTree = ""; }; - 532C7EDA16AF3B1600B1A969 /* type_vec.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = type_vec.hpp; sourceTree = ""; }; - 532C7EDB16AF3B1600B1A969 /* type_vec.inl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = type_vec.inl; sourceTree = ""; }; - 532C7EDC16AF3B1600B1A969 /* type_vec1.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = type_vec1.hpp; sourceTree = ""; }; - 532C7EDD16AF3B1600B1A969 /* type_vec1.inl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = type_vec1.inl; sourceTree = ""; }; - 532C7EDE16AF3B1600B1A969 /* type_vec2.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = type_vec2.hpp; sourceTree = ""; }; - 532C7EDF16AF3B1600B1A969 /* type_vec2.inl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = type_vec2.inl; sourceTree = ""; }; - 532C7EE016AF3B1600B1A969 /* type_vec3.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = type_vec3.hpp; sourceTree = ""; }; - 532C7EE116AF3B1600B1A969 /* type_vec3.inl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = type_vec3.inl; sourceTree = ""; }; - 532C7EE216AF3B1600B1A969 /* type_vec4.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = type_vec4.hpp; sourceTree = ""; }; - 532C7EE316AF3B1600B1A969 /* type_vec4.inl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = type_vec4.inl; sourceTree = ""; }; - 532C7EE416AF3B1600B1A969 /* ext.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = ext.hpp; sourceTree = ""; }; - 532C7EE516AF3B1600B1A969 /* glm.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = glm.hpp; sourceTree = ""; }; - 532C7EE716AF3B1600B1A969 /* half_float.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = half_float.hpp; sourceTree = ""; }; - 532C7EE816AF3B1600B1A969 /* half_float.inl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = half_float.inl; sourceTree = ""; }; - 532C7EE916AF3B1600B1A969 /* matrix_access.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = matrix_access.hpp; sourceTree = ""; }; - 532C7EEA16AF3B1600B1A969 /* matrix_access.inl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = matrix_access.inl; sourceTree = ""; }; - 532C7EEB16AF3B1600B1A969 /* matrix_integer.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = matrix_integer.hpp; sourceTree = ""; }; - 532C7EEC16AF3B1600B1A969 /* matrix_inverse.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = matrix_inverse.hpp; sourceTree = ""; }; - 532C7EED16AF3B1600B1A969 /* matrix_inverse.inl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = matrix_inverse.inl; sourceTree = ""; }; - 532C7EEE16AF3B1600B1A969 /* matrix_transform.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = matrix_transform.hpp; sourceTree = ""; }; - 532C7EEF16AF3B1600B1A969 /* matrix_transform.inl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = matrix_transform.inl; sourceTree = ""; }; - 532C7EF016AF3B1600B1A969 /* noise.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = noise.hpp; sourceTree = ""; }; - 532C7EF116AF3B1600B1A969 /* noise.inl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = noise.inl; sourceTree = ""; }; - 532C7EF216AF3B1600B1A969 /* quaternion.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = quaternion.hpp; sourceTree = ""; }; - 532C7EF316AF3B1600B1A969 /* quaternion.inl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = quaternion.inl; sourceTree = ""; }; - 532C7EF416AF3B1600B1A969 /* random.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = random.hpp; sourceTree = ""; }; - 532C7EF516AF3B1600B1A969 /* random.inl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = random.inl; sourceTree = ""; }; - 532C7EF616AF3B1600B1A969 /* swizzle.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = swizzle.hpp; sourceTree = ""; }; - 532C7EF716AF3B1600B1A969 /* swizzle.inl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = swizzle.inl; sourceTree = ""; }; - 532C7EF816AF3B1600B1A969 /* type_precision.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = type_precision.hpp; sourceTree = ""; }; - 532C7EF916AF3B1600B1A969 /* type_precision.inl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = type_precision.inl; sourceTree = ""; }; - 532C7EFA16AF3B1600B1A969 /* type_ptr.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = type_ptr.hpp; sourceTree = ""; }; - 532C7EFB16AF3B1600B1A969 /* type_ptr.inl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = type_ptr.inl; sourceTree = ""; }; - 532C7EFD16AF3B1600B1A969 /* associated_min_max.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = associated_min_max.hpp; sourceTree = ""; }; - 532C7EFE16AF3B1600B1A969 /* associated_min_max.inl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = associated_min_max.inl; sourceTree = ""; }; - 532C7EFF16AF3B1600B1A969 /* bit.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = bit.hpp; sourceTree = ""; }; - 532C7F0016AF3B1700B1A969 /* bit.inl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = bit.inl; sourceTree = ""; }; - 532C7F0116AF3B1700B1A969 /* closest_point.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = closest_point.hpp; sourceTree = ""; }; - 532C7F0216AF3B1700B1A969 /* closest_point.inl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = closest_point.inl; sourceTree = ""; }; - 532C7F0316AF3B1700B1A969 /* color_cast.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = color_cast.hpp; sourceTree = ""; }; - 532C7F0416AF3B1700B1A969 /* color_cast.inl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = color_cast.inl; sourceTree = ""; }; - 532C7F0516AF3B1700B1A969 /* color_space.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = color_space.hpp; sourceTree = ""; }; - 532C7F0616AF3B1700B1A969 /* color_space.inl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = color_space.inl; sourceTree = ""; }; - 532C7F0716AF3B1700B1A969 /* color_space_YCoCg.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = color_space_YCoCg.hpp; sourceTree = ""; }; - 532C7F0816AF3B1700B1A969 /* color_space_YCoCg.inl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = color_space_YCoCg.inl; sourceTree = ""; }; - 532C7F0916AF3B1700B1A969 /* compatibility.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = compatibility.hpp; sourceTree = ""; }; - 532C7F0A16AF3B1700B1A969 /* compatibility.inl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = compatibility.inl; sourceTree = ""; }; - 532C7F0B16AF3B1700B1A969 /* component_wise.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = component_wise.hpp; sourceTree = ""; }; - 532C7F0C16AF3B1700B1A969 /* component_wise.inl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = component_wise.inl; sourceTree = ""; }; - 532C7F0D16AF3B1700B1A969 /* constants.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = constants.hpp; sourceTree = ""; }; - 532C7F0E16AF3B1700B1A969 /* constants.inl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = constants.inl; sourceTree = ""; }; - 532C7F0F16AF3B1700B1A969 /* epsilon.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = epsilon.hpp; sourceTree = ""; }; - 532C7F1016AF3B1700B1A969 /* epsilon.inl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = epsilon.inl; sourceTree = ""; }; - 532C7F1116AF3B1700B1A969 /* euler_angles.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = euler_angles.hpp; sourceTree = ""; }; - 532C7F1216AF3B1700B1A969 /* euler_angles.inl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = euler_angles.inl; sourceTree = ""; }; - 532C7F1316AF3B1700B1A969 /* extend.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = extend.hpp; sourceTree = ""; }; - 532C7F1416AF3B1700B1A969 /* extend.inl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = extend.inl; sourceTree = ""; }; - 532C7F1516AF3B1700B1A969 /* extented_min_max.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = extented_min_max.hpp; sourceTree = ""; }; - 532C7F1616AF3B1700B1A969 /* extented_min_max.inl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = extented_min_max.inl; sourceTree = ""; }; - 532C7F1716AF3B1700B1A969 /* fast_exponential.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = fast_exponential.hpp; sourceTree = ""; }; - 532C7F1816AF3B1700B1A969 /* fast_exponential.inl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = fast_exponential.inl; sourceTree = ""; }; - 532C7F1916AF3B1700B1A969 /* fast_square_root.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = fast_square_root.hpp; sourceTree = ""; }; - 532C7F1A16AF3B1700B1A969 /* fast_square_root.inl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = fast_square_root.inl; sourceTree = ""; }; - 532C7F1B16AF3B1700B1A969 /* fast_trigonometry.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = fast_trigonometry.hpp; sourceTree = ""; }; - 532C7F1C16AF3B1700B1A969 /* fast_trigonometry.inl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = fast_trigonometry.inl; sourceTree = ""; }; - 532C7F1D16AF3B1700B1A969 /* gradient_paint.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = gradient_paint.hpp; sourceTree = ""; }; - 532C7F1E16AF3B1700B1A969 /* gradient_paint.inl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = gradient_paint.inl; sourceTree = ""; }; - 532C7F1F16AF3B1700B1A969 /* handed_coordinate_space.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = handed_coordinate_space.hpp; sourceTree = ""; }; - 532C7F2016AF3B1700B1A969 /* handed_coordinate_space.inl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = handed_coordinate_space.inl; sourceTree = ""; }; - 532C7F2116AF3B1700B1A969 /* inertia.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = inertia.hpp; sourceTree = ""; }; - 532C7F2216AF3B1700B1A969 /* inertia.inl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = inertia.inl; sourceTree = ""; }; - 532C7F2316AF3B1700B1A969 /* int_10_10_10_2.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = int_10_10_10_2.hpp; sourceTree = ""; }; - 532C7F2416AF3B1700B1A969 /* int_10_10_10_2.inl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = int_10_10_10_2.inl; sourceTree = ""; }; - 532C7F2516AF3B1700B1A969 /* integer.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = integer.hpp; sourceTree = ""; }; - 532C7F2616AF3B1700B1A969 /* integer.inl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = integer.inl; sourceTree = ""; }; - 532C7F2716AF3B1700B1A969 /* intersect.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = intersect.hpp; sourceTree = ""; }; - 532C7F2816AF3B1700B1A969 /* intersect.inl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = intersect.inl; sourceTree = ""; }; - 532C7F2916AF3B1700B1A969 /* log_base.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = log_base.hpp; sourceTree = ""; }; - 532C7F2A16AF3B1700B1A969 /* log_base.inl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = log_base.inl; sourceTree = ""; }; - 532C7F2B16AF3B1700B1A969 /* matrix_cross_product.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = matrix_cross_product.hpp; sourceTree = ""; }; - 532C7F2C16AF3B1800B1A969 /* matrix_cross_product.inl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = matrix_cross_product.inl; sourceTree = ""; }; - 532C7F2D16AF3B1800B1A969 /* matrix_interpolation.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = matrix_interpolation.hpp; sourceTree = ""; }; - 532C7F2E16AF3B1800B1A969 /* matrix_interpolation.inl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = matrix_interpolation.inl; sourceTree = ""; }; - 532C7F2F16AF3B1800B1A969 /* matrix_major_storage.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = matrix_major_storage.hpp; sourceTree = ""; }; - 532C7F3016AF3B1800B1A969 /* matrix_major_storage.inl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = matrix_major_storage.inl; sourceTree = ""; }; - 532C7F3116AF3B1800B1A969 /* matrix_operation.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = matrix_operation.hpp; sourceTree = ""; }; - 532C7F3216AF3B1800B1A969 /* matrix_operation.inl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = matrix_operation.inl; sourceTree = ""; }; - 532C7F3316AF3B1800B1A969 /* matrix_query.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = matrix_query.hpp; sourceTree = ""; }; - 532C7F3416AF3B1800B1A969 /* matrix_query.inl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = matrix_query.inl; sourceTree = ""; }; - 532C7F3516AF3B1800B1A969 /* mixed_product.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = mixed_product.hpp; sourceTree = ""; }; - 532C7F3616AF3B1800B1A969 /* mixed_product.inl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = mixed_product.inl; sourceTree = ""; }; - 532C7F3716AF3B1800B1A969 /* multiple.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = multiple.hpp; sourceTree = ""; }; - 532C7F3816AF3B1800B1A969 /* multiple.inl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = multiple.inl; sourceTree = ""; }; - 532C7F3916AF3B1800B1A969 /* noise.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = noise.hpp; sourceTree = ""; }; - 532C7F3A16AF3B1800B1A969 /* noise.inl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = noise.inl; sourceTree = ""; }; - 532C7F3B16AF3B1800B1A969 /* norm.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = norm.hpp; sourceTree = ""; }; - 532C7F3C16AF3B1800B1A969 /* norm.inl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = norm.inl; sourceTree = ""; }; - 532C7F3D16AF3B1800B1A969 /* normal.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = normal.hpp; sourceTree = ""; }; - 532C7F3E16AF3B1800B1A969 /* normal.inl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = normal.inl; sourceTree = ""; }; - 532C7F3F16AF3B1800B1A969 /* normalize_dot.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = normalize_dot.hpp; sourceTree = ""; }; - 532C7F4016AF3B1800B1A969 /* normalize_dot.inl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = normalize_dot.inl; sourceTree = ""; }; - 532C7F4116AF3B1800B1A969 /* number_precision.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = number_precision.hpp; sourceTree = ""; }; - 532C7F4216AF3B1800B1A969 /* number_precision.inl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = number_precision.inl; sourceTree = ""; }; - 532C7F4316AF3B1800B1A969 /* ocl_type.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = ocl_type.hpp; sourceTree = ""; }; - 532C7F4416AF3B1800B1A969 /* ocl_type.inl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = ocl_type.inl; sourceTree = ""; }; - 532C7F4516AF3B1800B1A969 /* optimum_pow.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = optimum_pow.hpp; sourceTree = ""; }; - 532C7F4616AF3B1800B1A969 /* optimum_pow.inl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = optimum_pow.inl; sourceTree = ""; }; - 532C7F4716AF3B1800B1A969 /* orthonormalize.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = orthonormalize.hpp; sourceTree = ""; }; - 532C7F4816AF3B1800B1A969 /* orthonormalize.inl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = orthonormalize.inl; sourceTree = ""; }; - 532C7F4916AF3B1800B1A969 /* perpendicular.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = perpendicular.hpp; sourceTree = ""; }; - 532C7F4A16AF3B1800B1A969 /* perpendicular.inl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = perpendicular.inl; sourceTree = ""; }; - 532C7F4B16AF3B1800B1A969 /* polar_coordinates.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = polar_coordinates.hpp; sourceTree = ""; }; - 532C7F4C16AF3B1800B1A969 /* polar_coordinates.inl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = polar_coordinates.inl; sourceTree = ""; }; - 532C7F4D16AF3B1800B1A969 /* projection.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = projection.hpp; sourceTree = ""; }; - 532C7F4E16AF3B1800B1A969 /* projection.inl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = projection.inl; sourceTree = ""; }; - 532C7F4F16AF3B1800B1A969 /* quaternion.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = quaternion.hpp; sourceTree = ""; }; - 532C7F5016AF3B1800B1A969 /* quaternion.inl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = quaternion.inl; sourceTree = ""; }; - 532C7F5116AF3B1800B1A969 /* random.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = random.hpp; sourceTree = ""; }; - 532C7F5216AF3B1800B1A969 /* random.inl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = random.inl; sourceTree = ""; }; - 532C7F5316AF3B1800B1A969 /* raw_data.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = raw_data.hpp; sourceTree = ""; }; - 532C7F5416AF3B1800B1A969 /* raw_data.inl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = raw_data.inl; sourceTree = ""; }; - 532C7F5516AF3B1800B1A969 /* reciprocal.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = reciprocal.hpp; sourceTree = ""; }; - 532C7F5616AF3B1800B1A969 /* reciprocal.inl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = reciprocal.inl; sourceTree = ""; }; - 532C7F5716AF3B1800B1A969 /* rotate_vector.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = rotate_vector.hpp; sourceTree = ""; }; - 532C7F5816AF3B1900B1A969 /* rotate_vector.inl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = rotate_vector.inl; sourceTree = ""; }; - 532C7F5916AF3B1900B1A969 /* simd_mat4.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = simd_mat4.hpp; sourceTree = ""; }; - 532C7F5A16AF3B1900B1A969 /* simd_mat4.inl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = simd_mat4.inl; sourceTree = ""; }; - 532C7F5B16AF3B1900B1A969 /* simd_vec4.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = simd_vec4.hpp; sourceTree = ""; }; - 532C7F5C16AF3B1900B1A969 /* simd_vec4.inl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = simd_vec4.inl; sourceTree = ""; }; - 532C7F5D16AF3B1900B1A969 /* spline.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = spline.hpp; sourceTree = ""; }; - 532C7F5E16AF3B1900B1A969 /* spline.inl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = spline.inl; sourceTree = ""; }; - 532C7F5F16AF3B1900B1A969 /* std_based_type.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = std_based_type.hpp; sourceTree = ""; }; - 532C7F6016AF3B1900B1A969 /* std_based_type.inl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = std_based_type.inl; sourceTree = ""; }; - 532C7F6116AF3B1900B1A969 /* string_cast.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = string_cast.hpp; sourceTree = ""; }; - 532C7F6216AF3B1900B1A969 /* string_cast.inl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = string_cast.inl; sourceTree = ""; }; - 532C7F6316AF3B1900B1A969 /* transform.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = transform.hpp; sourceTree = ""; }; - 532C7F6416AF3B1900B1A969 /* transform.inl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = transform.inl; sourceTree = ""; }; - 532C7F6516AF3B1900B1A969 /* transform2.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = transform2.hpp; sourceTree = ""; }; - 532C7F6616AF3B1900B1A969 /* transform2.inl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = transform2.inl; sourceTree = ""; }; - 532C7F6716AF3B1900B1A969 /* ulp.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = ulp.hpp; sourceTree = ""; }; - 532C7F6816AF3B1900B1A969 /* ulp.inl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = ulp.inl; sourceTree = ""; }; - 532C7F6916AF3B1900B1A969 /* unsigned_int.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = unsigned_int.hpp; sourceTree = ""; }; - 532C7F6A16AF3B1900B1A969 /* unsigned_int.inl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = unsigned_int.inl; sourceTree = ""; }; - 532C7F6B16AF3B1900B1A969 /* vec1.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = vec1.hpp; sourceTree = ""; }; - 532C7F6C16AF3B1900B1A969 /* vec1.inl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = vec1.inl; sourceTree = ""; }; - 532C7F6D16AF3B1900B1A969 /* vector_access.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = vector_access.hpp; sourceTree = ""; }; - 532C7F6E16AF3B1900B1A969 /* vector_access.inl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = vector_access.inl; sourceTree = ""; }; - 532C7F6F16AF3B1900B1A969 /* vector_angle.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = vector_angle.hpp; sourceTree = ""; }; - 532C7F7016AF3B1900B1A969 /* vector_angle.inl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = vector_angle.inl; sourceTree = ""; }; - 532C7F7116AF3B1900B1A969 /* vector_query.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = vector_query.hpp; sourceTree = ""; }; - 532C7F7216AF3B1900B1A969 /* vector_query.inl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = vector_query.inl; sourceTree = ""; }; - 532C7F7316AF3B1900B1A969 /* verbose_operator.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = verbose_operator.hpp; sourceTree = ""; }; - 532C7F7416AF3B1900B1A969 /* verbose_operator.inl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = verbose_operator.inl; sourceTree = ""; }; - 532C7F7516AF3B1900B1A969 /* wrap.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = wrap.hpp; sourceTree = ""; }; - 532C7F7616AF3B1900B1A969 /* wrap.inl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = wrap.inl; sourceTree = ""; }; - 532C7F7816AF3B1900B1A969 /* xstream.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = xstream.hpp; sourceTree = ""; }; - 532C802816AF3B1900B1A969 /* libportaudio.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = libportaudio.a; sourceTree = ""; }; - 532C802916AF3B1900B1A969 /* portaudio.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = portaudio.h; sourceTree = ""; }; - 533B578516B2160600FCABF1 /* grayson.raw */ = {isa = PBXFileReference; lastKnownFileType = file; path = grayson.raw; sourceTree = ""; }; - 533BF9D316B31A3B00AC31BB /* jeska.raw */ = {isa = PBXFileReference; lastKnownFileType = file; path = jeska.raw; sourceTree = ""; }; - 535B820F16B9BED400D18440 /* lodepng.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = lodepng.cpp; sourceTree = ""; }; - 535B821016B9BED400D18440 /* lodepng.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = lodepng.h; sourceTree = ""; }; - 538BA8A216B1B719000BF99C /* love.raw */ = {isa = PBXFileReference; lastKnownFileType = file; path = love.raw; sourceTree = ""; }; - 53A4EAB016BC770A00F07F4C /* AudioRingBuffer.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = AudioRingBuffer.cpp; sourceTree = ""; }; - 53A4EAB116BC770A00F07F4C /* AudioRingBuffer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AudioRingBuffer.h; sourceTree = ""; }; - 53ACC39616B9C59500ABD227 /* Oscilloscope.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Oscilloscope.cpp; sourceTree = ""; }; - 53ACC39716B9C59500ABD227 /* Oscilloscope.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Oscilloscope.h; sourceTree = ""; }; - 53CF36EC16B9C039001FCB05 /* Agent.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Agent.cpp; sourceTree = ""; }; - 53CF36ED16B9C039001FCB05 /* Agent.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Agent.h; sourceTree = ""; }; - 53CF36EE16B9C039001FCB05 /* Audio.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Audio.cpp; sourceTree = ""; }; - 53CF36EF16B9C039001FCB05 /* Audio.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Audio.h; sourceTree = ""; }; - 53CF36F016B9C039001FCB05 /* AudioData.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = AudioData.cpp; sourceTree = ""; }; - 53CF36F116B9C039001FCB05 /* AudioData.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AudioData.h; sourceTree = ""; }; - 53CF36F216B9C039001FCB05 /* AudioSource.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = AudioSource.cpp; sourceTree = ""; }; - 53CF36F316B9C039001FCB05 /* AudioSource.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AudioSource.h; sourceTree = ""; }; - 53CF36F416B9C039001FCB05 /* Cloud.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Cloud.cpp; sourceTree = ""; }; - 53CF36F516B9C039001FCB05 /* Cloud.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Cloud.h; sourceTree = ""; }; - 53CF36F616B9C039001FCB05 /* Cube.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Cube.cpp; sourceTree = ""; }; - 53CF36F716B9C039001FCB05 /* Cube.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Cube.h; sourceTree = ""; }; - 53CF36F816B9C039001FCB05 /* Field.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Field.cpp; sourceTree = ""; }; - 53CF36F916B9C039001FCB05 /* Field.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Field.h; sourceTree = ""; }; - 53CF36FA16B9C039001FCB05 /* Finger.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Finger.cpp; sourceTree = ""; }; - 53CF36FB16B9C039001FCB05 /* Finger.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Finger.h; sourceTree = ""; }; - 53CF36FC16B9C039001FCB05 /* Hand.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Hand.cpp; sourceTree = ""; }; - 53CF36FD16B9C039001FCB05 /* Hand.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Hand.h; sourceTree = ""; }; - 53CF370016B9C039001FCB05 /* head_hand.pde */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = head_hand.pde; sourceTree = ""; }; - 53CF370116B9C039001FCB05 /* Head.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Head.cpp; sourceTree = ""; }; - 53CF370216B9C039001FCB05 /* Head.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; lineEnding = 0; path = Head.h; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.objcpp; }; - 53CF370316B9C039001FCB05 /* Lattice.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Lattice.cpp; sourceTree = ""; }; - 53CF370416B9C039001FCB05 /* Lattice.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Lattice.h; sourceTree = ""; }; - 53CF370516B9C039001FCB05 /* main.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = main.cpp; sourceTree = ""; }; - 53CF370A16B9C039001FCB05 /* Network.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Network.cpp; sourceTree = ""; }; - 53CF370B16B9C039001FCB05 /* Network.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; lineEnding = 0; path = Network.h; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.objcpp; }; - 53CF370C16B9C039001FCB05 /* Particle.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Particle.cpp; sourceTree = ""; }; - 53CF370D16B9C039001FCB05 /* Particle.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; lineEnding = 0; path = Particle.h; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.objcpp; }; - 53CF370E16B9C039001FCB05 /* SerialInterface.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = SerialInterface.cpp; sourceTree = ""; }; - 53CF370F16B9C039001FCB05 /* SerialInterface.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; lineEnding = 0; path = SerialInterface.h; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.objcpp; }; - 53CF371016B9C039001FCB05 /* Texture.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Texture.cpp; sourceTree = ""; }; - 53CF371116B9C039001FCB05 /* Texture.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Texture.h; sourceTree = ""; }; - 53CF371216B9C039001FCB05 /* UDPSocket.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = UDPSocket.cpp; sourceTree = ""; }; - 53CF371316B9C039001FCB05 /* UDPSocket.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UDPSocket.h; sourceTree = ""; }; - 53CF371416B9C039001FCB05 /* Util.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Util.cpp; sourceTree = ""; }; - 53CF371516B9C039001FCB05 /* Util.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; lineEnding = 0; path = Util.h; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.objcpp; }; - 53CF371616B9C039001FCB05 /* world.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; lineEnding = 0; path = world.h; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.objcpp; }; - 8DD76F6C0486A84900D96B5E /* interface */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = interface; sourceTree = BUILT_PRODUCTS_DIR; }; - B6BDADD815F444C1002A07DF /* CoreAudio.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreAudio.framework; path = System/Library/Frameworks/CoreAudio.framework; sourceTree = SDKROOT; }; - B6BDADDA15F444C9002A07DF /* AudioToolbox.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AudioToolbox.framework; path = System/Library/Frameworks/AudioToolbox.framework; sourceTree = SDKROOT; }; - B6BDADDC15F444D3002A07DF /* AudioUnit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AudioUnit.framework; path = System/Library/Frameworks/AudioUnit.framework; sourceTree = SDKROOT; }; - B6BDADDE15F444DB002A07DF /* CoreServices.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreServices.framework; path = System/Library/Frameworks/CoreServices.framework; sourceTree = SDKROOT; }; - D40BDFD413404BA300B0BE1F /* GLUT.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = GLUT.framework; path = /System/Library/Frameworks/GLUT.framework; sourceTree = ""; }; - D40BDFD613404BB300B0BE1F /* OpenGL.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = OpenGL.framework; path = /System/Library/Frameworks/OpenGL.framework; sourceTree = ""; }; - D4200F7616C0DBA3000F8D6D /* octal.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = octal.cpp; sourceTree = ""; }; - D4200F7716C0DBA3000F8D6D /* octal.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = octal.h; sourceTree = ""; }; -/* End PBXFileReference section */ - -/* Begin PBXFrameworksBuildPhase section */ - 8DD76F660486A84900D96B5E /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - B6BDADE415F44AC7002A07DF /* AudioUnit.framework in Frameworks */, - B6BDADE315F44AB0002A07DF /* AudioToolbox.framework in Frameworks */, - B6BDADE215F44AA5002A07DF /* CoreAudio.framework in Frameworks */, - B6BDADE115F44A9D002A07DF /* CoreServices.framework in Frameworks */, - D40BDFD513404BA300B0BE1F /* GLUT.framework in Frameworks */, - D40BDFD713404BB300B0BE1F /* OpenGL.framework in Frameworks */, - 532C7AF216AF298D00B1A969 /* CVBlob.framework in Frameworks */, - 532C803C16AF3B1900B1A969 /* libportaudio.a in Frameworks */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXFrameworksBuildPhase section */ - -/* Begin PBXGroup section */ - 08FB7794FE84155DC02AAC07 /* test_c_plus */ = { - isa = PBXGroup; - children = ( - 1E251990167A77E6007C178A /* Frameworks */, - 532C7E9416AF3B1500B1A969 /* Libraries */, - 1AB674ADFE9D54B511CA2CBB /* Products */, - 532C7AC116AF298D00B1A969 /* Resources */, - 5325C22816AF4DBE0051A40B /* Source */, - ); - name = test_c_plus; - sourceTree = ""; - }; - 1AB674ADFE9D54B511CA2CBB /* Products */ = { - isa = PBXGroup; - children = ( - 8DD76F6C0486A84900D96B5E /* interface */, - ); - name = Products; - sourceTree = ""; - }; - 1E251990167A77E6007C178A /* Frameworks */ = { - isa = PBXGroup; - children = ( - 532C792A16AF298900B1A969 /* CVBlob.framework */, - B6BDADDE15F444DB002A07DF /* CoreServices.framework */, - B6BDADDC15F444D3002A07DF /* AudioUnit.framework */, - B6BDADDA15F444C9002A07DF /* AudioToolbox.framework */, - B6BDADD815F444C1002A07DF /* CoreAudio.framework */, - D40BDFD613404BB300B0BE1F /* OpenGL.framework */, - D40BDFD413404BA300B0BE1F /* GLUT.framework */, - ); - name = Frameworks; - sourceTree = ""; - }; - 5325C22816AF4DBE0051A40B /* Source */ = { - isa = PBXGroup; - children = ( - 53CF36EC16B9C039001FCB05 /* Agent.cpp */, - 53CF36ED16B9C039001FCB05 /* Agent.h */, - 53CF36EE16B9C039001FCB05 /* Audio.cpp */, - 53CF36EF16B9C039001FCB05 /* Audio.h */, - 53CF36F016B9C039001FCB05 /* AudioData.cpp */, - 53CF36F116B9C039001FCB05 /* AudioData.h */, - 53CF36F216B9C039001FCB05 /* AudioSource.cpp */, - 53CF36F316B9C039001FCB05 /* AudioSource.h */, - 53CF36F416B9C039001FCB05 /* Cloud.cpp */, - 53CF36F516B9C039001FCB05 /* Cloud.h */, - 53CF36F616B9C039001FCB05 /* Cube.cpp */, - 53CF36F716B9C039001FCB05 /* Cube.h */, - 53CF36F816B9C039001FCB05 /* Field.cpp */, - 53CF36F916B9C039001FCB05 /* Field.h */, - 53CF36FA16B9C039001FCB05 /* Finger.cpp */, - 53CF36FB16B9C039001FCB05 /* Finger.h */, - 53CF36FC16B9C039001FCB05 /* Hand.cpp */, - 53CF36FD16B9C039001FCB05 /* Hand.h */, - 53CF36FE16B9C039001FCB05 /* hardware */, - 53CF370116B9C039001FCB05 /* Head.cpp */, - 53CF370216B9C039001FCB05 /* Head.h */, - 53CF370316B9C039001FCB05 /* Lattice.cpp */, - 53CF370416B9C039001FCB05 /* Lattice.h */, - 53CF370516B9C039001FCB05 /* main.cpp */, - 53CF370A16B9C039001FCB05 /* Network.cpp */, - 53CF370B16B9C039001FCB05 /* Network.h */, - D4200F7616C0DBA3000F8D6D /* octal.cpp */, - D4200F7716C0DBA3000F8D6D /* octal.h */, - 53ACC39616B9C59500ABD227 /* Oscilloscope.cpp */, - 53ACC39716B9C59500ABD227 /* Oscilloscope.h */, - 53CF370C16B9C039001FCB05 /* Particle.cpp */, - 53CF370D16B9C039001FCB05 /* Particle.h */, - 53CF370E16B9C039001FCB05 /* SerialInterface.cpp */, - 53CF370F16B9C039001FCB05 /* SerialInterface.h */, - 53CF371016B9C039001FCB05 /* Texture.cpp */, - 53CF371116B9C039001FCB05 /* Texture.h */, - 53CF371216B9C039001FCB05 /* UDPSocket.cpp */, - 53CF371316B9C039001FCB05 /* UDPSocket.h */, - 53CF371416B9C039001FCB05 /* Util.cpp */, - 53CF371516B9C039001FCB05 /* Util.h */, - 53CF371616B9C039001FCB05 /* world.h */, - 53A4EAB016BC770A00F07F4C /* AudioRingBuffer.cpp */, - 53A4EAB116BC770A00F07F4C /* AudioRingBuffer.h */, - ); - path = Source; - sourceTree = ""; - }; - 532C7AC116AF298D00B1A969 /* Resources */ = { - isa = PBXGroup; - children = ( - 536E784516B0A1C900A2F6F3 /* audio */, - 532C7AC216AF298D00B1A969 /* images */, - ); - path = Resources; - sourceTree = ""; - }; - 532C7AC216AF298D00B1A969 /* images */ = { - isa = PBXGroup; - children = ( - 532C7AC316AF298D00B1A969 /* grayson-particle.png */, - 532C7AC416AF298D00B1A969 /* int-texture256-v2.png */, - 532C7AC516AF298D00B1A969 /* int-texture256-v4.png */, - 532C7AC616AF298D00B1A969 /* int-texture256-v5.png */, - 532C7AC716AF298D00B1A969 /* philip-image.png */, - 532C7AC816AF298D00B1A969 /* pngtest8rgba.png */, - 532C7AC916AF298D00B1A969 /* sphere.png */, - ); - path = images; - sourceTree = ""; - }; - 532C7E9416AF3B1500B1A969 /* Libraries */ = { - isa = PBXGroup; - children = ( - 532C7E9516AF3B1500B1A969 /* glm */, - 535B820E16B9BED400D18440 /* LodePNG */, - 532C802716AF3B1900B1A969 /* PortAudio */, - ); - path = Libraries; - sourceTree = ""; - }; - 532C7E9516AF3B1500B1A969 /* glm */ = { - isa = PBXGroup; - children = ( - 532C7E9616AF3B1500B1A969 /* CMakeLists.txt */, - 532C7E9716AF3B1500B1A969 /* core */, - 532C7EE416AF3B1600B1A969 /* ext.hpp */, - 532C7EE516AF3B1600B1A969 /* glm.hpp */, - 532C7EE616AF3B1600B1A969 /* gtc */, - 532C7EFC16AF3B1600B1A969 /* gtx */, - 532C7F7716AF3B1900B1A969 /* virtrev */, - ); - path = glm; - sourceTree = ""; - }; - 532C7E9716AF3B1500B1A969 /* core */ = { - isa = PBXGroup; - children = ( - 532C7E9816AF3B1500B1A969 /* _detail.hpp */, - 532C7E9916AF3B1500B1A969 /* _fixes.hpp */, - 532C7E9A16AF3B1500B1A969 /* _swizzle.hpp */, - 532C7E9B16AF3B1500B1A969 /* _swizzle_func.hpp */, - 532C7E9C16AF3B1500B1A969 /* _vectorize.hpp */, - 532C7E9D16AF3B1500B1A969 /* dummy.cpp */, - 532C7E9E16AF3B1500B1A969 /* func_common.hpp */, - 532C7E9F16AF3B1500B1A969 /* func_common.inl */, - 532C7EA016AF3B1500B1A969 /* func_exponential.hpp */, - 532C7EA116AF3B1500B1A969 /* func_exponential.inl */, - 532C7EA216AF3B1500B1A969 /* func_geometric.hpp */, - 532C7EA316AF3B1500B1A969 /* func_geometric.inl */, - 532C7EA416AF3B1500B1A969 /* func_integer.hpp */, - 532C7EA516AF3B1500B1A969 /* func_integer.inl */, - 532C7EA616AF3B1500B1A969 /* func_matrix.hpp */, - 532C7EA716AF3B1500B1A969 /* func_matrix.inl */, - 532C7EA816AF3B1500B1A969 /* func_noise.hpp */, - 532C7EA916AF3B1500B1A969 /* func_noise.inl */, - 532C7EAA16AF3B1500B1A969 /* func_packing.hpp */, - 532C7EAB16AF3B1500B1A969 /* func_packing.inl */, - 532C7EAC16AF3B1500B1A969 /* func_trigonometric.hpp */, - 532C7EAD16AF3B1500B1A969 /* func_trigonometric.inl */, - 532C7EAE16AF3B1500B1A969 /* func_vector_relational.hpp */, - 532C7EAF16AF3B1500B1A969 /* func_vector_relational.inl */, - 532C7EB016AF3B1500B1A969 /* hint.hpp */, - 532C7EB116AF3B1500B1A969 /* intrinsic_common.hpp */, - 532C7EB216AF3B1500B1A969 /* intrinsic_common.inl */, - 532C7EB316AF3B1500B1A969 /* intrinsic_exponential.hpp */, - 532C7EB416AF3B1500B1A969 /* intrinsic_exponential.inl */, - 532C7EB516AF3B1500B1A969 /* intrinsic_geometric.hpp */, - 532C7EB616AF3B1500B1A969 /* intrinsic_geometric.inl */, - 532C7EB716AF3B1500B1A969 /* intrinsic_matrix.hpp */, - 532C7EB816AF3B1500B1A969 /* intrinsic_matrix.inl */, - 532C7EB916AF3B1500B1A969 /* intrinsic_trigonometric.hpp */, - 532C7EBA16AF3B1500B1A969 /* intrinsic_trigonometric.inl */, - 532C7EBB16AF3B1500B1A969 /* intrinsic_vector_relational.hpp */, - 532C7EBC16AF3B1500B1A969 /* intrinsic_vector_relational.inl */, - 532C7EBD16AF3B1500B1A969 /* setup.hpp */, - 532C7EBE16AF3B1500B1A969 /* type.hpp */, - 532C7EBF16AF3B1500B1A969 /* type_float.hpp */, - 532C7EC016AF3B1500B1A969 /* type_gentype.hpp */, - 532C7EC116AF3B1500B1A969 /* type_gentype.inl */, - 532C7EC216AF3B1500B1A969 /* type_half.hpp */, - 532C7EC316AF3B1500B1A969 /* type_half.inl */, - 532C7EC416AF3B1500B1A969 /* type_int.hpp */, - 532C7EC516AF3B1500B1A969 /* type_mat.hpp */, - 532C7EC616AF3B1500B1A969 /* type_mat.inl */, - 532C7EC716AF3B1500B1A969 /* type_mat2x2.hpp */, - 532C7EC816AF3B1500B1A969 /* type_mat2x2.inl */, - 532C7EC916AF3B1500B1A969 /* type_mat2x3.hpp */, - 532C7ECA16AF3B1500B1A969 /* type_mat2x3.inl */, - 532C7ECB16AF3B1500B1A969 /* type_mat2x4.hpp */, - 532C7ECC16AF3B1600B1A969 /* type_mat2x4.inl */, - 532C7ECD16AF3B1600B1A969 /* type_mat3x2.hpp */, - 532C7ECE16AF3B1600B1A969 /* type_mat3x2.inl */, - 532C7ECF16AF3B1600B1A969 /* type_mat3x3.hpp */, - 532C7ED016AF3B1600B1A969 /* type_mat3x3.inl */, - 532C7ED116AF3B1600B1A969 /* type_mat3x4.hpp */, - 532C7ED216AF3B1600B1A969 /* type_mat3x4.inl */, - 532C7ED316AF3B1600B1A969 /* type_mat4x2.hpp */, - 532C7ED416AF3B1600B1A969 /* type_mat4x2.inl */, - 532C7ED516AF3B1600B1A969 /* type_mat4x3.hpp */, - 532C7ED616AF3B1600B1A969 /* type_mat4x3.inl */, - 532C7ED716AF3B1600B1A969 /* type_mat4x4.hpp */, - 532C7ED816AF3B1600B1A969 /* type_mat4x4.inl */, - 532C7ED916AF3B1600B1A969 /* type_size.hpp */, - 532C7EDA16AF3B1600B1A969 /* type_vec.hpp */, - 532C7EDB16AF3B1600B1A969 /* type_vec.inl */, - 532C7EDC16AF3B1600B1A969 /* type_vec1.hpp */, - 532C7EDD16AF3B1600B1A969 /* type_vec1.inl */, - 532C7EDE16AF3B1600B1A969 /* type_vec2.hpp */, - 532C7EDF16AF3B1600B1A969 /* type_vec2.inl */, - 532C7EE016AF3B1600B1A969 /* type_vec3.hpp */, - 532C7EE116AF3B1600B1A969 /* type_vec3.inl */, - 532C7EE216AF3B1600B1A969 /* type_vec4.hpp */, - 532C7EE316AF3B1600B1A969 /* type_vec4.inl */, - ); - path = core; - sourceTree = ""; - }; - 532C7EE616AF3B1600B1A969 /* gtc */ = { - isa = PBXGroup; - children = ( - 532C7EE716AF3B1600B1A969 /* half_float.hpp */, - 532C7EE816AF3B1600B1A969 /* half_float.inl */, - 532C7EE916AF3B1600B1A969 /* matrix_access.hpp */, - 532C7EEA16AF3B1600B1A969 /* matrix_access.inl */, - 532C7EEB16AF3B1600B1A969 /* matrix_integer.hpp */, - 532C7EEC16AF3B1600B1A969 /* matrix_inverse.hpp */, - 532C7EED16AF3B1600B1A969 /* matrix_inverse.inl */, - 532C7EEE16AF3B1600B1A969 /* matrix_transform.hpp */, - 532C7EEF16AF3B1600B1A969 /* matrix_transform.inl */, - 532C7EF016AF3B1600B1A969 /* noise.hpp */, - 532C7EF116AF3B1600B1A969 /* noise.inl */, - 532C7EF216AF3B1600B1A969 /* quaternion.hpp */, - 532C7EF316AF3B1600B1A969 /* quaternion.inl */, - 532C7EF416AF3B1600B1A969 /* random.hpp */, - 532C7EF516AF3B1600B1A969 /* random.inl */, - 532C7EF616AF3B1600B1A969 /* swizzle.hpp */, - 532C7EF716AF3B1600B1A969 /* swizzle.inl */, - 532C7EF816AF3B1600B1A969 /* type_precision.hpp */, - 532C7EF916AF3B1600B1A969 /* type_precision.inl */, - 532C7EFA16AF3B1600B1A969 /* type_ptr.hpp */, - 532C7EFB16AF3B1600B1A969 /* type_ptr.inl */, - ); - path = gtc; - sourceTree = ""; - }; - 532C7EFC16AF3B1600B1A969 /* gtx */ = { - isa = PBXGroup; - children = ( - 532C7EFD16AF3B1600B1A969 /* associated_min_max.hpp */, - 532C7EFE16AF3B1600B1A969 /* associated_min_max.inl */, - 532C7EFF16AF3B1600B1A969 /* bit.hpp */, - 532C7F0016AF3B1700B1A969 /* bit.inl */, - 532C7F0116AF3B1700B1A969 /* closest_point.hpp */, - 532C7F0216AF3B1700B1A969 /* closest_point.inl */, - 532C7F0316AF3B1700B1A969 /* color_cast.hpp */, - 532C7F0416AF3B1700B1A969 /* color_cast.inl */, - 532C7F0516AF3B1700B1A969 /* color_space.hpp */, - 532C7F0616AF3B1700B1A969 /* color_space.inl */, - 532C7F0716AF3B1700B1A969 /* color_space_YCoCg.hpp */, - 532C7F0816AF3B1700B1A969 /* color_space_YCoCg.inl */, - 532C7F0916AF3B1700B1A969 /* compatibility.hpp */, - 532C7F0A16AF3B1700B1A969 /* compatibility.inl */, - 532C7F0B16AF3B1700B1A969 /* component_wise.hpp */, - 532C7F0C16AF3B1700B1A969 /* component_wise.inl */, - 532C7F0D16AF3B1700B1A969 /* constants.hpp */, - 532C7F0E16AF3B1700B1A969 /* constants.inl */, - 532C7F0F16AF3B1700B1A969 /* epsilon.hpp */, - 532C7F1016AF3B1700B1A969 /* epsilon.inl */, - 532C7F1116AF3B1700B1A969 /* euler_angles.hpp */, - 532C7F1216AF3B1700B1A969 /* euler_angles.inl */, - 532C7F1316AF3B1700B1A969 /* extend.hpp */, - 532C7F1416AF3B1700B1A969 /* extend.inl */, - 532C7F1516AF3B1700B1A969 /* extented_min_max.hpp */, - 532C7F1616AF3B1700B1A969 /* extented_min_max.inl */, - 532C7F1716AF3B1700B1A969 /* fast_exponential.hpp */, - 532C7F1816AF3B1700B1A969 /* fast_exponential.inl */, - 532C7F1916AF3B1700B1A969 /* fast_square_root.hpp */, - 532C7F1A16AF3B1700B1A969 /* fast_square_root.inl */, - 532C7F1B16AF3B1700B1A969 /* fast_trigonometry.hpp */, - 532C7F1C16AF3B1700B1A969 /* fast_trigonometry.inl */, - 532C7F1D16AF3B1700B1A969 /* gradient_paint.hpp */, - 532C7F1E16AF3B1700B1A969 /* gradient_paint.inl */, - 532C7F1F16AF3B1700B1A969 /* handed_coordinate_space.hpp */, - 532C7F2016AF3B1700B1A969 /* handed_coordinate_space.inl */, - 532C7F2116AF3B1700B1A969 /* inertia.hpp */, - 532C7F2216AF3B1700B1A969 /* inertia.inl */, - 532C7F2316AF3B1700B1A969 /* int_10_10_10_2.hpp */, - 532C7F2416AF3B1700B1A969 /* int_10_10_10_2.inl */, - 532C7F2516AF3B1700B1A969 /* integer.hpp */, - 532C7F2616AF3B1700B1A969 /* integer.inl */, - 532C7F2716AF3B1700B1A969 /* intersect.hpp */, - 532C7F2816AF3B1700B1A969 /* intersect.inl */, - 532C7F2916AF3B1700B1A969 /* log_base.hpp */, - 532C7F2A16AF3B1700B1A969 /* log_base.inl */, - 532C7F2B16AF3B1700B1A969 /* matrix_cross_product.hpp */, - 532C7F2C16AF3B1800B1A969 /* matrix_cross_product.inl */, - 532C7F2D16AF3B1800B1A969 /* matrix_interpolation.hpp */, - 532C7F2E16AF3B1800B1A969 /* matrix_interpolation.inl */, - 532C7F2F16AF3B1800B1A969 /* matrix_major_storage.hpp */, - 532C7F3016AF3B1800B1A969 /* matrix_major_storage.inl */, - 532C7F3116AF3B1800B1A969 /* matrix_operation.hpp */, - 532C7F3216AF3B1800B1A969 /* matrix_operation.inl */, - 532C7F3316AF3B1800B1A969 /* matrix_query.hpp */, - 532C7F3416AF3B1800B1A969 /* matrix_query.inl */, - 532C7F3516AF3B1800B1A969 /* mixed_product.hpp */, - 532C7F3616AF3B1800B1A969 /* mixed_product.inl */, - 532C7F3716AF3B1800B1A969 /* multiple.hpp */, - 532C7F3816AF3B1800B1A969 /* multiple.inl */, - 532C7F3916AF3B1800B1A969 /* noise.hpp */, - 532C7F3A16AF3B1800B1A969 /* noise.inl */, - 532C7F3B16AF3B1800B1A969 /* norm.hpp */, - 532C7F3C16AF3B1800B1A969 /* norm.inl */, - 532C7F3D16AF3B1800B1A969 /* normal.hpp */, - 532C7F3E16AF3B1800B1A969 /* normal.inl */, - 532C7F3F16AF3B1800B1A969 /* normalize_dot.hpp */, - 532C7F4016AF3B1800B1A969 /* normalize_dot.inl */, - 532C7F4116AF3B1800B1A969 /* number_precision.hpp */, - 532C7F4216AF3B1800B1A969 /* number_precision.inl */, - 532C7F4316AF3B1800B1A969 /* ocl_type.hpp */, - 532C7F4416AF3B1800B1A969 /* ocl_type.inl */, - 532C7F4516AF3B1800B1A969 /* optimum_pow.hpp */, - 532C7F4616AF3B1800B1A969 /* optimum_pow.inl */, - 532C7F4716AF3B1800B1A969 /* orthonormalize.hpp */, - 532C7F4816AF3B1800B1A969 /* orthonormalize.inl */, - 532C7F4916AF3B1800B1A969 /* perpendicular.hpp */, - 532C7F4A16AF3B1800B1A969 /* perpendicular.inl */, - 532C7F4B16AF3B1800B1A969 /* polar_coordinates.hpp */, - 532C7F4C16AF3B1800B1A969 /* polar_coordinates.inl */, - 532C7F4D16AF3B1800B1A969 /* projection.hpp */, - 532C7F4E16AF3B1800B1A969 /* projection.inl */, - 532C7F4F16AF3B1800B1A969 /* quaternion.hpp */, - 532C7F5016AF3B1800B1A969 /* quaternion.inl */, - 532C7F5116AF3B1800B1A969 /* random.hpp */, - 532C7F5216AF3B1800B1A969 /* random.inl */, - 532C7F5316AF3B1800B1A969 /* raw_data.hpp */, - 532C7F5416AF3B1800B1A969 /* raw_data.inl */, - 532C7F5516AF3B1800B1A969 /* reciprocal.hpp */, - 532C7F5616AF3B1800B1A969 /* reciprocal.inl */, - 532C7F5716AF3B1800B1A969 /* rotate_vector.hpp */, - 532C7F5816AF3B1900B1A969 /* rotate_vector.inl */, - 532C7F5916AF3B1900B1A969 /* simd_mat4.hpp */, - 532C7F5A16AF3B1900B1A969 /* simd_mat4.inl */, - 532C7F5B16AF3B1900B1A969 /* simd_vec4.hpp */, - 532C7F5C16AF3B1900B1A969 /* simd_vec4.inl */, - 532C7F5D16AF3B1900B1A969 /* spline.hpp */, - 532C7F5E16AF3B1900B1A969 /* spline.inl */, - 532C7F5F16AF3B1900B1A969 /* std_based_type.hpp */, - 532C7F6016AF3B1900B1A969 /* std_based_type.inl */, - 532C7F6116AF3B1900B1A969 /* string_cast.hpp */, - 532C7F6216AF3B1900B1A969 /* string_cast.inl */, - 532C7F6316AF3B1900B1A969 /* transform.hpp */, - 532C7F6416AF3B1900B1A969 /* transform.inl */, - 532C7F6516AF3B1900B1A969 /* transform2.hpp */, - 532C7F6616AF3B1900B1A969 /* transform2.inl */, - 532C7F6716AF3B1900B1A969 /* ulp.hpp */, - 532C7F6816AF3B1900B1A969 /* ulp.inl */, - 532C7F6916AF3B1900B1A969 /* unsigned_int.hpp */, - 532C7F6A16AF3B1900B1A969 /* unsigned_int.inl */, - 532C7F6B16AF3B1900B1A969 /* vec1.hpp */, - 532C7F6C16AF3B1900B1A969 /* vec1.inl */, - 532C7F6D16AF3B1900B1A969 /* vector_access.hpp */, - 532C7F6E16AF3B1900B1A969 /* vector_access.inl */, - 532C7F6F16AF3B1900B1A969 /* vector_angle.hpp */, - 532C7F7016AF3B1900B1A969 /* vector_angle.inl */, - 532C7F7116AF3B1900B1A969 /* vector_query.hpp */, - 532C7F7216AF3B1900B1A969 /* vector_query.inl */, - 532C7F7316AF3B1900B1A969 /* verbose_operator.hpp */, - 532C7F7416AF3B1900B1A969 /* verbose_operator.inl */, - 532C7F7516AF3B1900B1A969 /* wrap.hpp */, - 532C7F7616AF3B1900B1A969 /* wrap.inl */, - ); - path = gtx; - sourceTree = ""; - }; - 532C7F7716AF3B1900B1A969 /* virtrev */ = { - isa = PBXGroup; - children = ( - 532C7F7816AF3B1900B1A969 /* xstream.hpp */, - ); - path = virtrev; - sourceTree = ""; - }; - 532C802716AF3B1900B1A969 /* PortAudio */ = { - isa = PBXGroup; - children = ( - 532C802816AF3B1900B1A969 /* libportaudio.a */, - 532C802916AF3B1900B1A969 /* portaudio.h */, - ); - path = PortAudio; - sourceTree = ""; - }; - 535B820E16B9BED400D18440 /* LodePNG */ = { - isa = PBXGroup; - children = ( - 535B820F16B9BED400D18440 /* lodepng.cpp */, - 535B821016B9BED400D18440 /* lodepng.h */, - ); - path = LodePNG; - sourceTree = ""; - }; - 536E784516B0A1C900A2F6F3 /* audio */ = { - isa = PBXGroup; - children = ( - 533BF9D316B31A3B00AC31BB /* jeska.raw */, - 533B578516B2160600FCABF1 /* grayson.raw */, - 538BA8A216B1B719000BF99C /* love.raw */, - ); - path = audio; - sourceTree = ""; - }; - 53CF36FE16B9C039001FCB05 /* hardware */ = { - isa = PBXGroup; - children = ( - 53CF36FF16B9C039001FCB05 /* head_hand */, - ); - path = hardware; - sourceTree = ""; - }; - 53CF36FF16B9C039001FCB05 /* head_hand */ = { - isa = PBXGroup; - children = ( - 53CF370016B9C039001FCB05 /* head_hand.pde */, - ); - path = head_hand; - sourceTree = ""; - }; -/* End PBXGroup section */ - -/* Begin PBXNativeTarget section */ - 8DD76F620486A84900D96B5E /* interface */ = { - isa = PBXNativeTarget; - buildConfigurationList = 1DEB923108733DC60010E9CD /* Build configuration list for PBXNativeTarget "interface" */; - buildPhases = ( - 8DD76F640486A84900D96B5E /* Sources */, - 8DD76F660486A84900D96B5E /* Frameworks */, - 8DD76F690486A84900D96B5E /* CopyFiles */, - ); - buildRules = ( - ); - dependencies = ( - ); - name = interface; - productInstallPath = "$(HOME)/bin"; - productName = test_c_plus; - productReference = 8DD76F6C0486A84900D96B5E /* interface */; - productType = "com.apple.product-type.tool"; - }; -/* End PBXNativeTarget section */ - -/* Begin PBXProject section */ - 08FB7793FE84155DC02AAC07 /* Project object */ = { - isa = PBXProject; - attributes = { - LastUpgradeCheck = 0450; - ORGANIZATIONNAME = "HighFidelity, Inc."; - }; - buildConfigurationList = 1DEB923508733DC60010E9CD /* Build configuration list for PBXProject "interface" */; - compatibilityVersion = "Xcode 3.2"; - developmentRegion = English; - hasScannedForEncodings = 1; - knownRegions = ( - English, - Japanese, - French, - German, - ); - mainGroup = 08FB7794FE84155DC02AAC07 /* test_c_plus */; - projectDirPath = ""; - projectRoot = ""; - targets = ( - 8DD76F620486A84900D96B5E /* interface */, - ); - }; -/* End PBXProject section */ - -/* Begin PBXSourcesBuildPhase section */ - 8DD76F640486A84900D96B5E /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 535B821116B9BED400D18440 /* lodepng.cpp in Sources */, - 53CF371716B9C039001FCB05 /* Agent.cpp in Sources */, - 53CF371816B9C039001FCB05 /* Audio.cpp in Sources */, - 53CF371916B9C039001FCB05 /* AudioData.cpp in Sources */, - 53CF371A16B9C039001FCB05 /* AudioSource.cpp in Sources */, - 53CF371B16B9C039001FCB05 /* Cloud.cpp in Sources */, - 53CF371C16B9C039001FCB05 /* Cube.cpp in Sources */, - 53CF371D16B9C039001FCB05 /* Field.cpp in Sources */, - 53CF371E16B9C039001FCB05 /* Finger.cpp in Sources */, - 53CF371F16B9C039001FCB05 /* Hand.cpp in Sources */, - 53CF372016B9C039001FCB05 /* Head.cpp in Sources */, - 53CF372116B9C039001FCB05 /* Lattice.cpp in Sources */, - 53CF372216B9C039001FCB05 /* main.cpp in Sources */, - 53CF372516B9C039001FCB05 /* Network.cpp in Sources */, - 53CF372616B9C039001FCB05 /* Particle.cpp in Sources */, - 53CF372716B9C039001FCB05 /* SerialInterface.cpp in Sources */, - 53CF372816B9C039001FCB05 /* Texture.cpp in Sources */, - 53CF372916B9C039001FCB05 /* UDPSocket.cpp in Sources */, - 53CF372A16B9C039001FCB05 /* Util.cpp in Sources */, - 53ACC39816B9C59500ABD227 /* Oscilloscope.cpp in Sources */, - 53A4EAB216BC770A00F07F4C /* AudioRingBuffer.cpp in Sources */, - D4200F7816C0DBA3000F8D6D /* octal.cpp in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXSourcesBuildPhase section */ - -/* Begin XCBuildConfiguration section */ - 1DEB923208733DC60010E9CD /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - ALWAYS_SEARCH_USER_PATHS = NO; - ARCHS = "$(ARCHS_STANDARD_64_BIT)"; - COPY_PHASE_STRIP = NO; - FRAMEWORK_SEARCH_PATHS = ( - "$(inherited)", - "\"$(SRCROOT)\"", - "\"$(SRCROOT)/Frameworks\"", - ); - GCC_DYNAMIC_NO_PIC = NO; - GCC_MODEL_TUNING = G5; - GCC_OPTIMIZATION_LEVEL = 0; - HEADER_SEARCH_PATHS = ( - /usr/local/include, - "/usr/local/Cellar/opencv/2.4.3\n/usr/local/Cellar/opencv/2.4.2/include", - ); - INSTALL_PATH = /usr/local/bin; - LIBRARY_SEARCH_PATHS = ( - "$(inherited)", - "\"$(SRCROOT)\"", - /usr/local/lib, - "\"$(SRCROOT)/Libraries/PortAudio\"", - ); - OTHER_CPLUSPLUSFLAGS = ( - "-O3", - "$(OTHER_CFLAGS)", - ); - PRODUCT_NAME = interface; - SDKROOT = macosx10.7; - USER_HEADER_SEARCH_PATHS = ""; - }; - name = Debug; - }; - 1DEB923308733DC60010E9CD /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - ALWAYS_SEARCH_USER_PATHS = NO; - ARCHS = "$(ARCHS_STANDARD_64_BIT)"; - DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; - FRAMEWORK_SEARCH_PATHS = ( - "$(inherited)", - "\"$(SRCROOT)\"", - "\"$(SRCROOT)/Frameworks\"", - ); - GCC_MODEL_TUNING = G5; - HEADER_SEARCH_PATHS = ( - /usr/local/include, - "/usr/local/Cellar/opencv/2.4.3\n/usr/local/Cellar/opencv/2.4.2/include", - ); - INSTALL_PATH = /usr/local/bin; - LIBRARY_SEARCH_PATHS = ( - "$(inherited)", - "\"$(SRCROOT)\"", - /usr/local/lib, - "\"$(SRCROOT)/Libraries/PortAudio\"", - ); - ONLY_ACTIVE_ARCH = YES; - OTHER_CPLUSPLUSFLAGS = ( - "-O3", - "$(OTHER_CFLAGS)", - ); - PRODUCT_NAME = interface; - SDKROOT = macosx10.7; - USER_HEADER_SEARCH_PATHS = ""; - }; - name = Release; - }; - 1DEB923608733DC60010E9CD /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - ARCHS = "$(ARCHS_STANDARD_32_64_BIT)"; - GCC_C_LANGUAGE_STANDARD = gnu99; - GCC_OPTIMIZATION_LEVEL = 0; - GCC_WARN_ABOUT_RETURN_TYPE = YES; - GCC_WARN_UNUSED_VARIABLE = YES; - MACOSX_DEPLOYMENT_TARGET = 10.7; - ONLY_ACTIVE_ARCH = YES; - SDKROOT = macosx10.7; - }; - name = Debug; - }; - 1DEB923708733DC60010E9CD /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - ARCHS = "$(ARCHS_STANDARD_32_64_BIT)"; - GCC_C_LANGUAGE_STANDARD = gnu99; - GCC_WARN_ABOUT_RETURN_TYPE = YES; - GCC_WARN_UNUSED_VARIABLE = YES; - MACOSX_DEPLOYMENT_TARGET = 10.7; - SDKROOT = macosx10.7; - }; - name = Release; - }; -/* End XCBuildConfiguration section */ - -/* Begin XCConfigurationList section */ - 1DEB923108733DC60010E9CD /* Build configuration list for PBXNativeTarget "interface" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 1DEB923208733DC60010E9CD /* Debug */, - 1DEB923308733DC60010E9CD /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - 1DEB923508733DC60010E9CD /* Build configuration list for PBXProject "interface" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 1DEB923608733DC60010E9CD /* Debug */, - 1DEB923708733DC60010E9CD /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; -/* End XCConfigurationList section */ - }; - rootObject = 08FB7793FE84155DC02AAC07 /* Project object */; -} diff --git a/interface.xcodeproj/xcuserdata/Seiji.xcuserdatad/xcdebugger/Breakpoints.xcbkptlist b/interface.xcodeproj/xcuserdata/Seiji.xcuserdatad/xcdebugger/Breakpoints.xcbkptlist deleted file mode 100644 index 14577d4dbc..0000000000 --- a/interface.xcodeproj/xcuserdata/Seiji.xcuserdatad/xcdebugger/Breakpoints.xcbkptlist +++ /dev/null @@ -1,47 +0,0 @@ - - - - - - - - - - - diff --git a/interface.xcodeproj/xcuserdata/Seiji.xcuserdatad/xcschemes/interface.xcscheme b/interface.xcodeproj/xcuserdata/Seiji.xcuserdatad/xcschemes/interface.xcscheme deleted file mode 100644 index 11df0df584..0000000000 --- a/interface.xcodeproj/xcuserdata/Seiji.xcuserdatad/xcschemes/interface.xcscheme +++ /dev/null @@ -1,84 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/interface.xcodeproj/xcuserdata/Seiji.xcuserdatad/xcschemes/xcschememanagement.plist b/interface.xcodeproj/xcuserdata/Seiji.xcuserdatad/xcschemes/xcschememanagement.plist deleted file mode 100644 index a667359e15..0000000000 --- a/interface.xcodeproj/xcuserdata/Seiji.xcuserdatad/xcschemes/xcschememanagement.plist +++ /dev/null @@ -1,22 +0,0 @@ - - - - - SchemeUserState - - interface.xcscheme - - orderHint - 0 - - - SuppressBuildableAutocreation - - 8DD76F620486A84900D96B5E - - primary - - - - - diff --git a/interface.xcodeproj/xcuserdata/philip.xcuserdatad/xcdebugger/Breakpoints.xcbkptlist b/interface.xcodeproj/xcuserdata/philip.xcuserdatad/xcdebugger/Breakpoints.xcbkptlist deleted file mode 100644 index 7ab1a54fa8..0000000000 --- a/interface.xcodeproj/xcuserdata/philip.xcuserdatad/xcdebugger/Breakpoints.xcbkptlist +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - diff --git a/interface.xcodeproj/xcuserdata/philip.xcuserdatad/xcschemes/automata7.xcscheme b/interface.xcodeproj/xcuserdata/philip.xcuserdatad/xcschemes/automata7.xcscheme deleted file mode 100644 index 64763d12c9..0000000000 --- a/interface.xcodeproj/xcuserdata/philip.xcuserdatad/xcschemes/automata7.xcscheme +++ /dev/null @@ -1,85 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/interface.xcodeproj/xcuserdata/philip.xcuserdatad/xcschemes/xcschememanagement.plist b/interface.xcodeproj/xcuserdata/philip.xcuserdatad/xcschemes/xcschememanagement.plist deleted file mode 100644 index 5b8d256a27..0000000000 --- a/interface.xcodeproj/xcuserdata/philip.xcuserdatad/xcschemes/xcschememanagement.plist +++ /dev/null @@ -1,22 +0,0 @@ - - - - - SchemeUserState - - automata7.xcscheme - - orderHint - 0 - - - SuppressBuildableAutocreation - - 8DD76F620486A84900D96B5E - - primary - - - - - diff --git a/interface/CMakeCache.txt b/interface/CMakeCache.txt new file mode 100644 index 0000000000..3aaddaf972 --- /dev/null +++ b/interface/CMakeCache.txt @@ -0,0 +1,293 @@ +# This is the CMakeCache file. +# For build in directory: /Users/birarda/code/worklist/interface/interface +# It was generated by CMake: /usr/local/Cellar/cmake/2.8.10.2/bin/cmake +# You can edit this file to change values found and used by cmake. +# If you do not want to change any of the values, simply exit the editor. +# If you do want to change a value, simply edit, save, and exit the editor. +# The syntax for the file is as follows: +# KEY:TYPE=VALUE +# KEY is the name of a variable in the cache. +# TYPE is a hint to GUI's 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=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ar + +//Choose the type of build, options are: None(CMAKE_CXX_FLAGS or +// CMAKE_C_FLAGS used) Debug Release RelWithDebInfo MinSizeRel. +CMAKE_BUILD_TYPE:STRING= + +//Semicolon separated list of supported configuration types, only +// supports Debug, Release, MinSizeRel, and RelWithDebInfo, anything +// else will be ignored. +CMAKE_CONFIGURATION_TYPES:STRING=Debug;Release;MinSizeRel;RelWithDebInfo + +//Flags used by the compiler during all build types. +CMAKE_CXX_FLAGS:STRING= + +//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 + +//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 + +//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= + +//Path to a program. +CMAKE_INSTALL_NAME_TOOL:FILEPATH=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/install_name_tool + +//Install path prefix, prepended onto install directories. +CMAKE_INSTALL_PREFIX:PATH=/usr/local + +//Path to a program. +CMAKE_LINKER:FILEPATH=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ld + +//make program +CMAKE_MAKE_PROGRAM:FILEPATH=/usr/local/Cellar/cmake/2.8.10.2/bin/cmakexbuild + +//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=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/nm + +//Path to a program. +CMAKE_OBJCOPY:FILEPATH=CMAKE_OBJCOPY-NOTFOUND + +//Path to a program. +CMAKE_OBJDUMP:FILEPATH=CMAKE_OBJDUMP-NOTFOUND + +//Build architectures for OSX +CMAKE_OSX_ARCHITECTURES:STRING= + +//Minimum OS X version to target for deployment (at runtime); newer +// APIs weak linked. Set to empty string for default value. +CMAKE_OSX_DEPLOYMENT_TARGET:STRING= + +//The product will be built against the headers and libraries located +// inside the indicated SDK. +CMAKE_OSX_SYSROOT:PATH=/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.8.sdk + +//Value Computed by CMake +CMAKE_PROJECT_NAME:STATIC=interface + +//Path to a program. +CMAKE_RANLIB:FILEPATH=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib + +//Flags used by the linker during the creation of dll's. +CMAKE_SHARED_LINKER_FLAGS:STRING=' ' + +//Flags used by the linker during debug builds. +CMAKE_SHARED_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during release minsize builds. +CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during release builds. +CMAKE_SHARED_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during Release with Debug Info builds. +CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//If set, runtime paths are not added when installing shared libraries, +// but are added when building. +CMAKE_SKIP_INSTALL_RPATH:BOOL=NO + +//If set, runtime paths are not added when using shared libraries. +CMAKE_SKIP_RPATH:BOOL=NO + +//Path to a program. +CMAKE_STRIP:FILEPATH=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/strip + +//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 + +//Value Computed by CMake +interface_BINARY_DIR:STATIC=/Users/birarda/code/worklist/interface/interface + +//Value Computed by CMake +interface_SOURCE_DIR:STATIC=/Users/birarda/code/worklist/interface/interface + + +######################## +# INTERNAL cache entries +######################## + +//Stored Xcode object GUID +ALL_BUILD_GUID_CMAKE:INTERNAL=5C516F72EF6A455690636595 +//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=/usr/local/Cellar/cmake/2.8.10.2/bin/cmakexbuild +//This is the directory where this CMakeCache.txt was created +CMAKE_CACHEFILE_DIR:INTERNAL=/Users/birarda/code/worklist/interface/interface +//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=10 +//Path to CMake executable. +CMAKE_COMMAND:INTERNAL=/usr/local/Cellar/cmake/2.8.10.2/bin/cmake +//Path to cpack program executable. +CMAKE_CPACK_COMMAND:INTERNAL=/usr/local/Cellar/cmake/2.8.10.2/bin/cpack +//Path to ctest program executable. +CMAKE_CTEST_COMMAND:INTERNAL=/usr/local/Cellar/cmake/2.8.10.2/bin/ctest +//ADVANCED property for variable: CMAKE_CXX_FLAGS +CMAKE_CXX_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_DEBUG +CMAKE_CXX_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_MINSIZEREL +CMAKE_CXX_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELEASE +CMAKE_CXX_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELWITHDEBINFO +CMAKE_CXX_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_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 +//Path to cache edit program executable. +CMAKE_EDIT_COMMAND:INTERNAL=/usr/local/Cellar/cmake/2.8.10.2/bin/ccmake +//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=Xcode +//Start directory with the top level CMakeLists.txt file for this +// project +CMAKE_HOME_DIRECTORY:INTERNAL=/Users/birarda/code/worklist/interface/interface +//ADVANCED property for variable: CMAKE_INSTALL_NAME_TOOL +CMAKE_INSTALL_NAME_TOOL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_LINKER +CMAKE_LINKER-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MAKE_PROGRAM +CMAKE_MAKE_PROGRAM-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS +CMAKE_MODULE_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_DEBUG +CMAKE_MODULE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL +CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELEASE +CMAKE_MODULE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_NM +CMAKE_NM-ADVANCED:INTERNAL=1 +//number of local generators +CMAKE_NUMBER_OF_LOCAL_GENERATORS:INTERNAL=2 +//ADVANCED property for variable: CMAKE_OBJCOPY +CMAKE_OBJCOPY-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_OBJDUMP +CMAKE_OBJDUMP-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_RANLIB +CMAKE_RANLIB-ADVANCED:INTERNAL=1 +//Path to CMake installation. +CMAKE_ROOT:INTERNAL=/usr/local/Cellar/cmake/2.8.10.2/share/cmake +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS +CMAKE_SHARED_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_DEBUG +CMAKE_SHARED_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL +CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELEASE +CMAKE_SHARED_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SKIP_INSTALL_RPATH +CMAKE_SKIP_INSTALL_RPATH-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SKIP_RPATH +CMAKE_SKIP_RPATH-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STRIP +CMAKE_STRIP-ADVANCED:INTERNAL=1 +//uname command +CMAKE_UNAME:INTERNAL=/usr/bin/uname +//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 +//Stored Xcode object GUID +PROJECT_interface_GUID_CMAKE:INTERNAL=A563974108A04D62A97FF381 +//Stored Xcode object GUID +ZERO_CHECK_GUID_CMAKE:INTERNAL=7F3D93BE172949518ACB78A3 +//Stored Xcode object GUID +interface_GUID_CMAKE:INTERNAL=4FFEF9D3CD1D489C8A7BD1AC + diff --git a/interface/CMakeFiles/2.8.10.2/CMakeCCompiler.cmake b/interface/CMakeFiles/2.8.10.2/CMakeCCompiler.cmake new file mode 100644 index 0000000000..9ff513c38e --- /dev/null +++ b/interface/CMakeFiles/2.8.10.2/CMakeCCompiler.cmake @@ -0,0 +1,55 @@ +set(CMAKE_C_COMPILER "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang") +set(CMAKE_C_COMPILER_ARG1 "") +set(CMAKE_C_COMPILER_ID "Clang") +set(CMAKE_C_COMPILER_VERSION "4.2.0") +set(CMAKE_C_PLATFORM_ID "Darwin") + +set(CMAKE_AR "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ar") +set(CMAKE_RANLIB "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib") +set(CMAKE_LINKER "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ld") +set(CMAKE_COMPILER_IS_GNUCC ) +set(CMAKE_C_COMPILER_LOADED 1) +set(CMAKE_C_COMPILER_WORKS TRUE) +set(CMAKE_C_ABI_COMPILED TRUE) +set(CMAKE_COMPILER_IS_MINGW ) +set(CMAKE_COMPILER_IS_CYGWIN ) +if(CMAKE_COMPILER_IS_CYGWIN) + set(CYGWIN 1) + set(UNIX 1) +endif() + +set(CMAKE_C_COMPILER_ENV_VAR "CC") + +if(CMAKE_COMPILER_IS_MINGW) + set(MINGW 1) +endif() +set(CMAKE_C_COMPILER_ID_RUN 1) +set(CMAKE_C_SOURCE_FILE_EXTENSIONS c) +set(CMAKE_C_IGNORE_EXTENSIONS h;H;o;O;obj;OBJ;def;DEF;rc;RC) +set(CMAKE_C_LINKER_PREFERENCE 10) + +# Save compiler ABI information. +set(CMAKE_C_SIZEOF_DATA_PTR "8") +set(CMAKE_C_COMPILER_ABI "") +set(CMAKE_C_LIBRARY_ARCHITECTURE "") + +if(CMAKE_C_SIZEOF_DATA_PTR) + set(CMAKE_SIZEOF_VOID_P "${CMAKE_C_SIZEOF_DATA_PTR}") +endif() + +if(CMAKE_C_COMPILER_ABI) + set(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_C_COMPILER_ABI}") +endif() + +if(CMAKE_C_LIBRARY_ARCHITECTURE) + set(CMAKE_LIBRARY_ARCHITECTURE "") +endif() + + + + +set(CMAKE_C_IMPLICIT_LINK_LIBRARIES "") +set(CMAKE_C_IMPLICIT_LINK_DIRECTORIES "") + + + diff --git a/interface/CMakeFiles/2.8.10.2/CMakeCXXCompiler.cmake b/interface/CMakeFiles/2.8.10.2/CMakeCXXCompiler.cmake new file mode 100644 index 0000000000..b01f5d4ab1 --- /dev/null +++ b/interface/CMakeFiles/2.8.10.2/CMakeCXXCompiler.cmake @@ -0,0 +1,56 @@ +set(CMAKE_CXX_COMPILER "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang++") +set(CMAKE_CXX_COMPILER_ARG1 "") +set(CMAKE_CXX_COMPILER_ID "Clang") +set(CMAKE_CXX_COMPILER_VERSION "4.2.0") +set(CMAKE_CXX_PLATFORM_ID "Darwin") + +set(CMAKE_AR "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ar") +set(CMAKE_RANLIB "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib") +set(CMAKE_LINKER "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ld") +set(CMAKE_COMPILER_IS_GNUCXX ) +set(CMAKE_CXX_COMPILER_LOADED 1) +set(CMAKE_CXX_COMPILER_WORKS TRUE) +set(CMAKE_CXX_ABI_COMPILED TRUE) +set(CMAKE_COMPILER_IS_MINGW ) +set(CMAKE_COMPILER_IS_CYGWIN ) +if(CMAKE_COMPILER_IS_CYGWIN) + set(CYGWIN 1) + set(UNIX 1) +endif() + +set(CMAKE_CXX_COMPILER_ENV_VAR "CXX") + +if(CMAKE_COMPILER_IS_MINGW) + set(MINGW 1) +endif() +set(CMAKE_CXX_COMPILER_ID_RUN 1) +set(CMAKE_CXX_IGNORE_EXTENSIONS inl;h;hpp;HPP;H;o;O;obj;OBJ;def;DEF;rc;RC) +set(CMAKE_CXX_SOURCE_FILE_EXTENSIONS C;M;c++;cc;cpp;cxx;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 "8") +set(CMAKE_CXX_COMPILER_ABI "") +set(CMAKE_CXX_LIBRARY_ARCHITECTURE "") + +if(CMAKE_CXX_SIZEOF_DATA_PTR) + set(CMAKE_SIZEOF_VOID_P "${CMAKE_CXX_SIZEOF_DATA_PTR}") +endif() + +if(CMAKE_CXX_COMPILER_ABI) + set(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_CXX_COMPILER_ABI}") +endif() + +if(CMAKE_CXX_LIBRARY_ARCHITECTURE) + set(CMAKE_LIBRARY_ARCHITECTURE "") +endif() + + + + +set(CMAKE_CXX_IMPLICIT_LINK_LIBRARIES "") +set(CMAKE_CXX_IMPLICIT_LINK_DIRECTORIES "") + + + diff --git a/interface/CMakeFiles/2.8.10.2/CMakeDetermineCompilerABI_C.bin b/interface/CMakeFiles/2.8.10.2/CMakeDetermineCompilerABI_C.bin new file mode 100755 index 0000000000..df3091a0bc Binary files /dev/null and b/interface/CMakeFiles/2.8.10.2/CMakeDetermineCompilerABI_C.bin differ diff --git a/interface/CMakeFiles/2.8.10.2/CMakeDetermineCompilerABI_CXX.bin b/interface/CMakeFiles/2.8.10.2/CMakeDetermineCompilerABI_CXX.bin new file mode 100755 index 0000000000..fb6c68af4d Binary files /dev/null and b/interface/CMakeFiles/2.8.10.2/CMakeDetermineCompilerABI_CXX.bin differ diff --git a/interface/CMakeFiles/2.8.10.2/CMakeSystem.cmake b/interface/CMakeFiles/2.8.10.2/CMakeSystem.cmake new file mode 100644 index 0000000000..0bfb1e0beb --- /dev/null +++ b/interface/CMakeFiles/2.8.10.2/CMakeSystem.cmake @@ -0,0 +1,15 @@ + + +set(CMAKE_SYSTEM "Darwin-12.2.0") +set(CMAKE_SYSTEM_NAME "Darwin") +set(CMAKE_SYSTEM_VERSION "12.2.0") +set(CMAKE_SYSTEM_PROCESSOR "i386") + +set(CMAKE_HOST_SYSTEM "Darwin-12.2.0") +set(CMAKE_HOST_SYSTEM_NAME "Darwin") +set(CMAKE_HOST_SYSTEM_VERSION "12.2.0") +set(CMAKE_HOST_SYSTEM_PROCESSOR "i386") + +set(CMAKE_CROSSCOMPILING "FALSE") + +set(CMAKE_SYSTEM_LOADED 1) diff --git a/interface/CMakeFiles/2.8.10.2/CompilerIdC/CMakeCCompilerId.c b/interface/CMakeFiles/2.8.10.2/CompilerIdC/CMakeCCompilerId.c new file mode 100644 index 0000000000..699d25dc54 --- /dev/null +++ b/interface/CMakeFiles/2.8.10.2/CompilerIdC/CMakeCCompilerId.c @@ -0,0 +1,393 @@ +#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_DSP" + /* __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 + Not supported yet by CMake +#elif 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) || defined(__HAIKU__) || defined(_HAIKU) +# define PLATFORM_ID "Haiku" +/* Haiku also defines __BEOS__ so we must + put it prior to the check for __BEOS__ +*/ + +#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/interface/CMakeFiles/2.8.10.2/CompilerIdC/CompilerIdC b/interface/CMakeFiles/2.8.10.2/CompilerIdC/CompilerIdC new file mode 100755 index 0000000000..5f6017a299 Binary files /dev/null and b/interface/CMakeFiles/2.8.10.2/CompilerIdC/CompilerIdC differ diff --git a/interface/CMakeFiles/2.8.10.2/CompilerIdC/CompilerIdC.build/Debug/CompilerIdC.build/CompilerIdC.dep b/interface/CMakeFiles/2.8.10.2/CompilerIdC/CompilerIdC.build/Debug/CompilerIdC.build/CompilerIdC.dep new file mode 100644 index 0000000000..82b2b64970 --- /dev/null +++ b/interface/CMakeFiles/2.8.10.2/CompilerIdC/CompilerIdC.build/Debug/CompilerIdC.build/CompilerIdC.dep @@ -0,0 +1,2 @@ +ffffffffffffffffffffffffffffffff 86082258564dbbf23b128af817365021 ffffffffffffffffffffffffffffffff 0 /Users/birarda/code/worklist/interface/interface/CMakeFiles/2.8.10.2/CompilerIdC/CompilerIdC +0000000051130b970000000000002f20 68f909219870b8caa98525c71e46cc68 ffffffffffffffffffffffffffffffff 0 /Users/birarda/code/worklist/interface/interface/CMakeFiles/2.8.10.2/CompilerIdC/CompilerIdC.build/Debug/CompilerIdC.build/Objects-normal/i386/CMakeCCompilerId.o diff --git a/interface/CMakeFiles/2.8.10.2/CompilerIdC/CompilerIdC.build/Debug/CompilerIdC.build/Objects-normal/i386/CMakeCCompilerId.d b/interface/CMakeFiles/2.8.10.2/CompilerIdC/CompilerIdC.build/Debug/CompilerIdC.build/Objects-normal/i386/CMakeCCompilerId.d new file mode 100644 index 0000000000..2a1f24fc0d --- /dev/null +++ b/interface/CMakeFiles/2.8.10.2/CompilerIdC/CompilerIdC.build/Debug/CompilerIdC.build/Objects-normal/i386/CMakeCCompilerId.d @@ -0,0 +1,2 @@ +dependencies: \ + /Users/birarda/code/worklist/interface/interface/CMakeFiles/2.8.10.2/CompilerIdC/CMakeCCompilerId.c diff --git a/interface/CMakeFiles/2.8.10.2/CompilerIdC/CompilerIdC.build/Debug/CompilerIdC.build/Objects-normal/i386/CMakeCCompilerId.dia b/interface/CMakeFiles/2.8.10.2/CompilerIdC/CompilerIdC.build/Debug/CompilerIdC.build/Objects-normal/i386/CMakeCCompilerId.dia new file mode 100644 index 0000000000..bb0ec51b20 Binary files /dev/null and b/interface/CMakeFiles/2.8.10.2/CompilerIdC/CompilerIdC.build/Debug/CompilerIdC.build/Objects-normal/i386/CMakeCCompilerId.dia differ diff --git a/interface/CMakeFiles/2.8.10.2/CompilerIdC/CompilerIdC.build/Debug/CompilerIdC.build/Objects-normal/i386/CMakeCCompilerId.o b/interface/CMakeFiles/2.8.10.2/CompilerIdC/CompilerIdC.build/Debug/CompilerIdC.build/Objects-normal/i386/CMakeCCompilerId.o new file mode 100644 index 0000000000..d7574fd53c Binary files /dev/null and b/interface/CMakeFiles/2.8.10.2/CompilerIdC/CompilerIdC.build/Debug/CompilerIdC.build/Objects-normal/i386/CMakeCCompilerId.o differ diff --git a/interface/CMakeFiles/2.8.10.2/CompilerIdC/CompilerIdC.build/Debug/CompilerIdC.build/Objects-normal/i386/CompilerIdC.LinkFileList b/interface/CMakeFiles/2.8.10.2/CompilerIdC/CompilerIdC.build/Debug/CompilerIdC.build/Objects-normal/i386/CompilerIdC.LinkFileList new file mode 100644 index 0000000000..19ddbf010a --- /dev/null +++ b/interface/CMakeFiles/2.8.10.2/CompilerIdC/CompilerIdC.build/Debug/CompilerIdC.build/Objects-normal/i386/CompilerIdC.LinkFileList @@ -0,0 +1 @@ +/Users/birarda/code/worklist/interface/interface/CMakeFiles/2.8.10.2/CompilerIdC/./CompilerIdC.build/Debug/CompilerIdC.build/Objects-normal/i386/CMakeCCompilerId.o diff --git a/interface/CMakeFiles/2.8.10.2/CompilerIdC/CompilerIdC.build/Debug/CompilerIdC.build/Script-2C8FEB8E15DC1A1A00E56A5D.sh b/interface/CMakeFiles/2.8.10.2/CompilerIdC/CompilerIdC.build/Debug/CompilerIdC.build/Script-2C8FEB8E15DC1A1A00E56A5D.sh new file mode 100755 index 0000000000..7fdbcd1b1c --- /dev/null +++ b/interface/CMakeFiles/2.8.10.2/CompilerIdC/CompilerIdC.build/Debug/CompilerIdC.build/Script-2C8FEB8E15DC1A1A00E56A5D.sh @@ -0,0 +1,2 @@ +#!/bin/sh +echo "GCC_VERSION=$GCC_VERSION" diff --git a/interface/CMakeFiles/2.8.10.2/CompilerIdC/CompilerIdC.build/Debug/CompilerIdC.build/build-state.dat b/interface/CMakeFiles/2.8.10.2/CompilerIdC/CompilerIdC.build/Debug/CompilerIdC.build/build-state.dat new file mode 100644 index 0000000000..22c2ba9ba3 --- /dev/null +++ b/interface/CMakeFiles/2.8.10.2/CompilerIdC/CompilerIdC.build/Debug/CompilerIdC.build/build-state.dat @@ -0,0 +1,68 @@ +TCompilerIdC +v5 +r1 +cCheck dependencies +cCompileC ./CompilerIdC.build/Debug/CompilerIdC.build/Objects-normal/i386/CMakeCCompilerId.o /Users/birarda/code/worklist/interface/interface/CMakeFiles/2.8.10.2/CompilerIdC/CMakeCCompilerId.c normal i386 c com.apple.compilers.llvm.clang.1_0.compiler +cLd /Users/birarda/code/worklist/interface/interface/CMakeFiles/2.8.10.2/CompilerIdC/./CompilerIdC normal i386 +cPhaseScriptExecution "Run Script" /Users/birarda/code/worklist/interface/interface/CMakeFiles/2.8.10.2/CompilerIdC/./CompilerIdC.build/Debug/CompilerIdC.build/Script-2C8FEB8E15DC1A1A00E56A5D.sh + +N/Users/birarda/code/worklist/interface/interface/CMakeFiles/2.8.10.2/CompilerIdC/./CompilerIdC +t2 +s0 + +N/Users/birarda/code/worklist/interface/interface/CMakeFiles/2.8.10.2/CompilerIdC/./CompilerIdC.build/Debug/CompilerIdC.build/Objects-normal/i386/CMakeCCompilerId.o +t2 +s0 + +N/Users/birarda/code/worklist/interface/interface/CMakeFiles/2.8.10.2/CompilerIdC/./CompilerIdC.build/Debug/CompilerIdC.build/Objects-normal/i386/CompilerIdC.LinkFileList +c0000000051130B9700000000000000A4 +t1360202647 +s164 + +N/Users/birarda/code/worklist/interface/interface/CMakeFiles/2.8.10.2/CompilerIdC/./CompilerIdC.build/Debug/CompilerIdC.build/Script-2C8FEB8E15DC1A1A00E56A5D.sh +c0000000051130B97000000000000002A +t1360202647 +s42 + +N/Users/birarda/code/worklist/interface/interface/CMakeFiles/2.8.10.2/CompilerIdC/CMakeCCompilerId.c +c0000000051130B970000000000002F20 +t1360202647 +s12064 + +CCheck dependencies +r0 +lSLF05#21%IDEActivityLogSection1@2#32"com.apple.dt.IDE.BuildLogSection18"Check dependencies5168dd1743c3b641^7363ea1743c3b641^---0#1#0#--18"Check dependencies36"79E1AAE4-72CB-4FFC-A9C8-CD2584FAB57D- + +CCompileC ./CompilerIdC.build/Debug/CompilerIdC.build/Objects-normal/i386/CMakeCCompilerId.o /Users/birarda/code/worklist/interface/interface/CMakeFiles/2.8.10.2/CompilerIdC/CMakeCCompilerId.c normal i386 c com.apple.compilers.llvm.clang.1_0.compiler +s381895447.921380 +e381895447.952498 +r1 +xCompileC +x./CompilerIdC.build/Debug/CompilerIdC.build/Objects-normal/i386/CMakeCCompilerId.o +x/Users/birarda/code/worklist/interface/interface/CMakeFiles/2.8.10.2/CompilerIdC/CMakeCCompilerId.c +xnormal +xi386 +xc +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF05#21%IDEActivityLogSection1@2#32"com.apple.dt.IDE.BuildLogSection107"Compile /Users/birarda/code/worklist/interface/interface/CMakeFiles/2.8.10.2/CompilerIdC/CMakeCCompilerId.c7617ec1743c3b641^be50f41743c3b641^---0#0#0#-19%DVTDocumentLocation2@115"file://localhost/Users/birarda/code/worklist/interface/interface/CMakeFiles/2.8.10.2/CompilerIdC/CMakeCCompilerId.c0000000000000000^2544"CompileC ./CompilerIdC.build/Debug/CompilerIdC.build/Objects-normal/i386/CMakeCCompilerId.o CMakeCCompilerId.c normal i386 c com.apple.compilers.llvm.clang.1_0.compiler cd /Users/birarda/code/worklist/interface/interface/CMakeFiles/2.8.10.2/CompilerIdC setenv LANG en_US.US-ASCII /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x c -arch i386 -fmessage-length=0 -Wno-trigraphs -fpascal-strings -Os -Wno-missing-field-initializers -Wno-missing-prototypes -Wno-return-type -Wformat -Wno-missing-braces -Wparentheses -Wswitch -Wno-unused-function -Wno-unused-label -Wno-unused-parameter -Wno-unused-variable -Wunused-value -Wno-empty-body -Wno-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wno-constant-conversion -Wno-int-conversion -Wno-enum-conversion -Wno-shorten-64-to-32 -Wpointer-sign -Wno-newline-eof -fasm-blocks -fstrict-aliasing -Wdeprecated-declarations -g -fvisibility=hidden -Wno-sign-conversion -I/Users/birarda/code/worklist/interface/interface/CMakeFiles/2.8.10.2/CompilerIdC/./CompilerIdC.build/Debug/CompilerIdC.build/CompilerIdC.hmap -I/Users/birarda/code/worklist/interface/interface/CMakeFiles/2.8.10.2/CompilerIdC/include -I/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include -I/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include -I/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include -I/Users/birarda/code/worklist/interface/interface/CMakeFiles/2.8.10.2/CompilerIdC/./CompilerIdC.build/Debug/CompilerIdC.build/DerivedSources/i386 -I/Users/birarda/code/worklist/interface/interface/CMakeFiles/2.8.10.2/CompilerIdC/./CompilerIdC.build/Debug/CompilerIdC.build/DerivedSources -F/Users/birarda/code/worklist/interface/interface/CMakeFiles/2.8.10.2/CompilerIdC -MMD -MT dependencies -MF /Users/birarda/code/worklist/interface/interface/CMakeFiles/2.8.10.2/CompilerIdC/./CompilerIdC.build/Debug/CompilerIdC.build/Objects-normal/i386/CMakeCCompilerId.d --serialize-diagnostics /Users/birarda/code/worklist/interface/interface/CMakeFiles/2.8.10.2/CompilerIdC/./CompilerIdC.build/Debug/CompilerIdC.build/Objects-normal/i386/CMakeCCompilerId.dia -c /Users/birarda/code/worklist/interface/interface/CMakeFiles/2.8.10.2/CompilerIdC/CMakeCCompilerId.c -o /Users/birarda/code/worklist/interface/interface/CMakeFiles/2.8.10.2/CompilerIdC/./CompilerIdC.build/Debug/CompilerIdC.build/Objects-normal/i386/CMakeCCompilerId.o 36"5DB0DB8B-B486-4408-A283-87D0892099BB- + +CLd /Users/birarda/code/worklist/interface/interface/CMakeFiles/2.8.10.2/CompilerIdC/./CompilerIdC normal i386 +s381895447.959325 +e381895447.982236 +r1 +xLd +x/Users/birarda/code/worklist/interface/interface/CMakeFiles/2.8.10.2/CompilerIdC/./CompilerIdC +xnormal +xi386 +lSLF05#21%IDEActivityLogSection1@2#32"com.apple.dt.IDE.BuildLogSection99"Link /Users/birarda/code/worklist/interface/interface/CMakeFiles/2.8.10.2/CompilerIdC/./CompilerIdC3fc5f51743c3b641^49f7fb1743c3b641^---0#0#0#--669"Ld ./CompilerIdC normal i386 cd /Users/birarda/code/worklist/interface/interface/CMakeFiles/2.8.10.2/CompilerIdC /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -arch i386 -L/Users/birarda/code/worklist/interface/interface/CMakeFiles/2.8.10.2/CompilerIdC -F/Users/birarda/code/worklist/interface/interface/CMakeFiles/2.8.10.2/CompilerIdC -filelist /Users/birarda/code/worklist/interface/interface/CMakeFiles/2.8.10.2/CompilerIdC/./CompilerIdC.build/Debug/CompilerIdC.build/Objects-normal/i386/CompilerIdC.LinkFileList -o /Users/birarda/code/worklist/interface/interface/CMakeFiles/2.8.10.2/CompilerIdC/./CompilerIdC 36"4C4E38B2-B7B3-45B2-8CA8-2DDC71964CCF- + +CPhaseScriptExecution "Run Script" /Users/birarda/code/worklist/interface/interface/CMakeFiles/2.8.10.2/CompilerIdC/./CompilerIdC.build/Debug/CompilerIdC.build/Script-2C8FEB8E15DC1A1A00E56A5D.sh +s381895448.006702 +e381895448.045837 +r1 +xPhaseScriptExecution +xRun Script +x/Users/birarda/code/worklist/interface/interface/CMakeFiles/2.8.10.2/CompilerIdC/./CompilerIdC.build/Debug/CompilerIdC.build/Script-2C8FEB8E15DC1A1A00E56A5D.sh +oGCC_VERSION=com.apple.compilers.llvm.clang.1_0 +lSLF05#21%IDEActivityLogSection1@2#32"com.apple.dt.IDE.BuildLogSection36"Run custom shell script 'Run Script'037d021843c3b641^dcba0b1843c3b641^-47"GCC_VERSION=com.apple.compilers.llvm.clang.1_0 1(21%IDEActivityLogMessage2@47"GCC_VERSION=com.apple.compilers.llvm.clang.1_0 -381895448#0#47#-0#-----0#0#0#--376"PhaseScriptExecution "Run Script" ./CompilerIdC.build/Debug/CompilerIdC.build/Script-2C8FEB8E15DC1A1A00E56A5D.sh cd /Users/birarda/code/worklist/interface/interface/CMakeFiles/2.8.10.2/CompilerIdC /bin/sh -c /Users/birarda/code/worklist/interface/interface/CMakeFiles/2.8.10.2/CompilerIdC/./CompilerIdC.build/Debug/CompilerIdC.build/Script-2C8FEB8E15DC1A1A00E56A5D.sh 36"85DDF0FA-ED2F-4E8D-A4E8-FCDC0E32FB56- + diff --git a/interface/CMakeFiles/2.8.10.2/CompilerIdC/CompilerIdC.xcodeproj/project.pbxproj b/interface/CMakeFiles/2.8.10.2/CompilerIdC/CompilerIdC.xcodeproj/project.pbxproj new file mode 100644 index 0000000000..541ecc5c39 --- /dev/null +++ b/interface/CMakeFiles/2.8.10.2/CompilerIdC/CompilerIdC.xcodeproj/project.pbxproj @@ -0,0 +1,107 @@ +// !$*UTF8*$! +{ + archiveVersion = 1; + classes = { + }; + objectVersion = 45; + objects = { + + 2C18F0B615DC1E0300593670 = {isa = PBXBuildFile; fileRef = 2C18F0B415DC1DC700593670; }; + 2C18F0B415DC1DC700593670 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = CMakeCCompilerId.c; sourceTree = ""; }; + 08FB7794FE84155DC02AAC07 = { + isa = PBXGroup; + children = ( + 2C18F0B415DC1DC700593670, + ); + name = CompilerIdC; + sourceTree = ""; + }; + 8DD76FA90486AB0100D96B5E = { + isa = PBXNativeTarget; + buildConfigurationList = 1DEB928508733DD80010E9CD; + buildPhases = ( + 2C18F0B515DC1DCE00593670, + 2C8FEB8E15DC1A1A00E56A5D, + ); + buildRules = ( + ); + dependencies = ( + ); + name = CompilerIdC; + productName = CompilerIdC; + productType = "com.apple.product-type.tool"; + }; + 08FB7793FE84155DC02AAC07 = { + isa = PBXProject; + buildConfigurationList = 1DEB928908733DD80010E9CD; + compatibilityVersion = "Xcode 3.1"; + developmentRegion = English; + hasScannedForEncodings = 1; + knownRegions = ( + en, + ); + mainGroup = 08FB7794FE84155DC02AAC07; + projectDirPath = ""; + projectRoot = ""; + targets = ( + 8DD76FA90486AB0100D96B5E, + ); + }; + 2C8FEB8E15DC1A1A00E56A5D = { + isa = PBXShellScriptBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + inputPaths = ( + ); + outputPaths = ( + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "echo \"GCC_VERSION=$GCC_VERSION\""; + showEnvVarsInLog = 0; + }; + 2C18F0B515DC1DCE00593670 = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 2C18F0B615DC1E0300593670, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 1DEB928608733DD80010E9CD = { + isa = XCBuildConfiguration; + buildSettings = { + PRODUCT_NAME = CompilerIdC; + }; + name = Debug; + }; + 1DEB928A08733DD80010E9CD = { + isa = XCBuildConfiguration; + buildSettings = { + ARCHS = "$(ARCHS_STANDARD_32_BIT)"; + ONLY_ACTIVE_ARCH = YES; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)"; + SYMROOT = .; + }; + name = Debug; + }; + 1DEB928508733DD80010E9CD = { + isa = XCConfigurationList; + buildConfigurations = ( + 1DEB928608733DD80010E9CD, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Debug; + }; + 1DEB928908733DD80010E9CD = { + isa = XCConfigurationList; + buildConfigurations = ( + 1DEB928A08733DD80010E9CD, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Debug; + }; + }; + rootObject = 08FB7793FE84155DC02AAC07; +} diff --git a/interface/CMakeFiles/2.8.10.2/CompilerIdCXX/CMakeCXXCompilerId.cpp b/interface/CMakeFiles/2.8.10.2/CompilerIdCXX/CMakeCXXCompilerId.cpp new file mode 100644 index 0000000000..0d13d64bde --- /dev/null +++ b/interface/CMakeFiles/2.8.10.2/CompilerIdCXX/CMakeCXXCompilerId.cpp @@ -0,0 +1,375 @@ +/* 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_DSP" + /* __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" + +#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) || defined(__HAIKU__) || defined(_HAIKU) +# define PLATFORM_ID "Haiku" +/* Haiku also defines __BEOS__ so we must + put it prior to the check for __BEOS__ +*/ + +#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/interface/CMakeFiles/2.8.10.2/CompilerIdCXX/CompilerIdCXX b/interface/CMakeFiles/2.8.10.2/CompilerIdCXX/CompilerIdCXX new file mode 100755 index 0000000000..03602100a9 Binary files /dev/null and b/interface/CMakeFiles/2.8.10.2/CompilerIdCXX/CompilerIdCXX differ diff --git a/interface/CMakeFiles/2.8.10.2/CompilerIdCXX/CompilerIdCXX.build/Debug/CompilerIdCXX.build/CompilerIdCXX.dep b/interface/CMakeFiles/2.8.10.2/CompilerIdCXX/CompilerIdCXX.build/Debug/CompilerIdCXX.build/CompilerIdCXX.dep new file mode 100644 index 0000000000..971d1b4856 --- /dev/null +++ b/interface/CMakeFiles/2.8.10.2/CompilerIdCXX/CompilerIdCXX.build/Debug/CompilerIdCXX.build/CompilerIdCXX.dep @@ -0,0 +1,2 @@ +ffffffffffffffffffffffffffffffff 2ce8bfd6e81aed1a34a3c38b8f74f489 ffffffffffffffffffffffffffffffff 0 /Users/birarda/code/worklist/interface/interface/CMakeFiles/2.8.10.2/CompilerIdCXX/CompilerIdCXX +0000000051130b980000000000002e22 309b87420290ebc5727e7484977f9aa8 ffffffffffffffffffffffffffffffff 0 /Users/birarda/code/worklist/interface/interface/CMakeFiles/2.8.10.2/CompilerIdCXX/CompilerIdCXX.build/Debug/CompilerIdCXX.build/Objects-normal/i386/CMakeCXXCompilerId.o diff --git a/interface/CMakeFiles/2.8.10.2/CompilerIdCXX/CompilerIdCXX.build/Debug/CompilerIdCXX.build/Objects-normal/i386/CMakeCXXCompilerId.d b/interface/CMakeFiles/2.8.10.2/CompilerIdCXX/CompilerIdCXX.build/Debug/CompilerIdCXX.build/Objects-normal/i386/CMakeCXXCompilerId.d new file mode 100644 index 0000000000..0cda9cccd4 --- /dev/null +++ b/interface/CMakeFiles/2.8.10.2/CompilerIdCXX/CompilerIdCXX.build/Debug/CompilerIdCXX.build/Objects-normal/i386/CMakeCXXCompilerId.d @@ -0,0 +1,2 @@ +dependencies: \ + /Users/birarda/code/worklist/interface/interface/CMakeFiles/2.8.10.2/CompilerIdCXX/CMakeCXXCompilerId.cpp diff --git a/interface/CMakeFiles/2.8.10.2/CompilerIdCXX/CompilerIdCXX.build/Debug/CompilerIdCXX.build/Objects-normal/i386/CMakeCXXCompilerId.dia b/interface/CMakeFiles/2.8.10.2/CompilerIdCXX/CompilerIdCXX.build/Debug/CompilerIdCXX.build/Objects-normal/i386/CMakeCXXCompilerId.dia new file mode 100644 index 0000000000..bb0ec51b20 Binary files /dev/null and b/interface/CMakeFiles/2.8.10.2/CompilerIdCXX/CompilerIdCXX.build/Debug/CompilerIdCXX.build/Objects-normal/i386/CMakeCXXCompilerId.dia differ diff --git a/interface/CMakeFiles/2.8.10.2/CompilerIdCXX/CompilerIdCXX.build/Debug/CompilerIdCXX.build/Objects-normal/i386/CMakeCXXCompilerId.o b/interface/CMakeFiles/2.8.10.2/CompilerIdCXX/CompilerIdCXX.build/Debug/CompilerIdCXX.build/Objects-normal/i386/CMakeCXXCompilerId.o new file mode 100644 index 0000000000..856af75618 Binary files /dev/null and b/interface/CMakeFiles/2.8.10.2/CompilerIdCXX/CompilerIdCXX.build/Debug/CompilerIdCXX.build/Objects-normal/i386/CMakeCXXCompilerId.o differ diff --git a/interface/CMakeFiles/2.8.10.2/CompilerIdCXX/CompilerIdCXX.build/Debug/CompilerIdCXX.build/Objects-normal/i386/CompilerIdCXX.LinkFileList b/interface/CMakeFiles/2.8.10.2/CompilerIdCXX/CompilerIdCXX.build/Debug/CompilerIdCXX.build/Objects-normal/i386/CompilerIdCXX.LinkFileList new file mode 100644 index 0000000000..b0ab3ef475 --- /dev/null +++ b/interface/CMakeFiles/2.8.10.2/CompilerIdCXX/CompilerIdCXX.build/Debug/CompilerIdCXX.build/Objects-normal/i386/CompilerIdCXX.LinkFileList @@ -0,0 +1 @@ +/Users/birarda/code/worklist/interface/interface/CMakeFiles/2.8.10.2/CompilerIdCXX/./CompilerIdCXX.build/Debug/CompilerIdCXX.build/Objects-normal/i386/CMakeCXXCompilerId.o diff --git a/interface/CMakeFiles/2.8.10.2/CompilerIdCXX/CompilerIdCXX.build/Debug/CompilerIdCXX.build/Script-2C8FEB8E15DC1A1A00E56A5D.sh b/interface/CMakeFiles/2.8.10.2/CompilerIdCXX/CompilerIdCXX.build/Debug/CompilerIdCXX.build/Script-2C8FEB8E15DC1A1A00E56A5D.sh new file mode 100755 index 0000000000..7fdbcd1b1c --- /dev/null +++ b/interface/CMakeFiles/2.8.10.2/CompilerIdCXX/CompilerIdCXX.build/Debug/CompilerIdCXX.build/Script-2C8FEB8E15DC1A1A00E56A5D.sh @@ -0,0 +1,2 @@ +#!/bin/sh +echo "GCC_VERSION=$GCC_VERSION" diff --git a/interface/CMakeFiles/2.8.10.2/CompilerIdCXX/CompilerIdCXX.build/Debug/CompilerIdCXX.build/build-state.dat b/interface/CMakeFiles/2.8.10.2/CompilerIdCXX/CompilerIdCXX.build/Debug/CompilerIdCXX.build/build-state.dat new file mode 100644 index 0000000000..7d6e33da26 --- /dev/null +++ b/interface/CMakeFiles/2.8.10.2/CompilerIdCXX/CompilerIdCXX.build/Debug/CompilerIdCXX.build/build-state.dat @@ -0,0 +1,68 @@ +TCompilerIdCXX +v5 +r1 +cCheck dependencies +cCompileC ./CompilerIdCXX.build/Debug/CompilerIdCXX.build/Objects-normal/i386/CMakeCXXCompilerId.o /Users/birarda/code/worklist/interface/interface/CMakeFiles/2.8.10.2/CompilerIdCXX/CMakeCXXCompilerId.cpp normal i386 c++ com.apple.compilers.llvm.clang.1_0.compiler +cLd /Users/birarda/code/worklist/interface/interface/CMakeFiles/2.8.10.2/CompilerIdCXX/./CompilerIdCXX normal i386 +cPhaseScriptExecution "Run Script" /Users/birarda/code/worklist/interface/interface/CMakeFiles/2.8.10.2/CompilerIdCXX/./CompilerIdCXX.build/Debug/CompilerIdCXX.build/Script-2C8FEB8E15DC1A1A00E56A5D.sh + +N/Users/birarda/code/worklist/interface/interface/CMakeFiles/2.8.10.2/CompilerIdCXX/./CompilerIdCXX +t2 +s0 + +N/Users/birarda/code/worklist/interface/interface/CMakeFiles/2.8.10.2/CompilerIdCXX/./CompilerIdCXX.build/Debug/CompilerIdCXX.build/Objects-normal/i386/CMakeCXXCompilerId.o +t2 +s0 + +N/Users/birarda/code/worklist/interface/interface/CMakeFiles/2.8.10.2/CompilerIdCXX/./CompilerIdCXX.build/Debug/CompilerIdCXX.build/Objects-normal/i386/CompilerIdCXX.LinkFileList +c0000000051130B9800000000000000AC +t1360202648 +s172 + +N/Users/birarda/code/worklist/interface/interface/CMakeFiles/2.8.10.2/CompilerIdCXX/./CompilerIdCXX.build/Debug/CompilerIdCXX.build/Script-2C8FEB8E15DC1A1A00E56A5D.sh +c0000000051130B98000000000000002A +t1360202648 +s42 + +N/Users/birarda/code/worklist/interface/interface/CMakeFiles/2.8.10.2/CompilerIdCXX/CMakeCXXCompilerId.cpp +c0000000051130B980000000000002E22 +t1360202648 +s11810 + +CCheck dependencies +r0 +lSLF05#21%IDEActivityLogSection1@2#32"com.apple.dt.IDE.BuildLogSection18"Check dependencies7617d41843c3b641^4608eb1843c3b641^---0#1#0#--18"Check dependencies36"BB3DB645-6501-4842-AE08-13B1FEC3D98D- + +CCompileC ./CompilerIdCXX.build/Debug/CompilerIdCXX.build/Objects-normal/i386/CMakeCXXCompilerId.o /Users/birarda/code/worklist/interface/interface/CMakeFiles/2.8.10.2/CompilerIdCXX/CMakeCXXCompilerId.cpp normal i386 c++ com.apple.compilers.llvm.clang.1_0.compiler +s381895448.924030 +e381895448.960941 +r1 +xCompileC +x./CompilerIdCXX.build/Debug/CompilerIdCXX.build/Objects-normal/i386/CMakeCXXCompilerId.o +x/Users/birarda/code/worklist/interface/interface/CMakeFiles/2.8.10.2/CompilerIdCXX/CMakeCXXCompilerId.cpp +xnormal +xi386 +xc++ +xcom.apple.compilers.llvm.clang.1_0.compiler +lSLF05#21%IDEActivityLogSection1@2#32"com.apple.dt.IDE.BuildLogSection113"Compile /Users/birarda/code/worklist/interface/interface/CMakeFiles/2.8.10.2/CompilerIdCXX/CMakeCXXCompilerId.cpp74ecec1843c3b641^3447f61843c3b641^---0#0#0#-19%DVTDocumentLocation2@121"file://localhost/Users/birarda/code/worklist/interface/interface/CMakeFiles/2.8.10.2/CompilerIdCXX/CMakeCXXCompilerId.cpp0000000000000000^2741"CompileC ./CompilerIdCXX.build/Debug/CompilerIdCXX.build/Objects-normal/i386/CMakeCXXCompilerId.o CMakeCXXCompilerId.cpp normal i386 c++ com.apple.compilers.llvm.clang.1_0.compiler cd /Users/birarda/code/worklist/interface/interface/CMakeFiles/2.8.10.2/CompilerIdCXX setenv LANG en_US.US-ASCII /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x c++ -arch i386 -fmessage-length=0 -Wno-trigraphs -fpascal-strings -Os -Wno-missing-field-initializers -Wno-missing-prototypes -Wno-return-type -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wformat -Wno-missing-braces -Wparentheses -Wswitch -Wno-unused-function -Wno-unused-label -Wno-unused-parameter -Wno-unused-variable -Wunused-value -Wno-empty-body -Wno-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wno-constant-conversion -Wno-int-conversion -Wno-enum-conversion -Wno-shorten-64-to-32 -Wno-newline-eof -Wno-c++11-extensions -fasm-blocks -fstrict-aliasing -Wdeprecated-declarations -Winvalid-offsetof -g -fvisibility=hidden -fvisibility-inlines-hidden -Wno-sign-conversion -I/Users/birarda/code/worklist/interface/interface/CMakeFiles/2.8.10.2/CompilerIdCXX/./CompilerIdCXX.build/Debug/CompilerIdCXX.build/CompilerIdCXX.hmap -I/Users/birarda/code/worklist/interface/interface/CMakeFiles/2.8.10.2/CompilerIdCXX/include -I/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include -I/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include -I/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include -I/Users/birarda/code/worklist/interface/interface/CMakeFiles/2.8.10.2/CompilerIdCXX/./CompilerIdCXX.build/Debug/CompilerIdCXX.build/DerivedSources/i386 -I/Users/birarda/code/worklist/interface/interface/CMakeFiles/2.8.10.2/CompilerIdCXX/./CompilerIdCXX.build/Debug/CompilerIdCXX.build/DerivedSources -F/Users/birarda/code/worklist/interface/interface/CMakeFiles/2.8.10.2/CompilerIdCXX -MMD -MT dependencies -MF /Users/birarda/code/worklist/interface/interface/CMakeFiles/2.8.10.2/CompilerIdCXX/./CompilerIdCXX.build/Debug/CompilerIdCXX.build/Objects-normal/i386/CMakeCXXCompilerId.d --serialize-diagnostics /Users/birarda/code/worklist/interface/interface/CMakeFiles/2.8.10.2/CompilerIdCXX/./CompilerIdCXX.build/Debug/CompilerIdCXX.build/Objects-normal/i386/CMakeCXXCompilerId.dia -c /Users/birarda/code/worklist/interface/interface/CMakeFiles/2.8.10.2/CompilerIdCXX/CMakeCXXCompilerId.cpp -o /Users/birarda/code/worklist/interface/interface/CMakeFiles/2.8.10.2/CompilerIdCXX/./CompilerIdCXX.build/Debug/CompilerIdCXX.build/Objects-normal/i386/CMakeCXXCompilerId.o 36"CB7EE521-FBFB-4288-A0B6-87FFB8C89AEE- + +CLd /Users/birarda/code/worklist/interface/interface/CMakeFiles/2.8.10.2/CompilerIdCXX/./CompilerIdCXX normal i386 +s381895448.967914 +e381895449.025668 +r1 +xLd +x/Users/birarda/code/worklist/interface/interface/CMakeFiles/2.8.10.2/CompilerIdCXX/./CompilerIdCXX +xnormal +xi386 +lSLF05#21%IDEActivityLogSection1@2#32"com.apple.dt.IDE.BuildLogSection103"Link /Users/birarda/code/worklist/interface/interface/CMakeFiles/2.8.10.2/CompilerIdCXX/./CompilerIdCXXa1f6f71843c3b641^89d1071943c3b641^---0#0#0#--691"Ld ./CompilerIdCXX normal i386 cd /Users/birarda/code/worklist/interface/interface/CMakeFiles/2.8.10.2/CompilerIdCXX /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang++ -arch i386 -L/Users/birarda/code/worklist/interface/interface/CMakeFiles/2.8.10.2/CompilerIdCXX -F/Users/birarda/code/worklist/interface/interface/CMakeFiles/2.8.10.2/CompilerIdCXX -filelist /Users/birarda/code/worklist/interface/interface/CMakeFiles/2.8.10.2/CompilerIdCXX/./CompilerIdCXX.build/Debug/CompilerIdCXX.build/Objects-normal/i386/CompilerIdCXX.LinkFileList -o /Users/birarda/code/worklist/interface/interface/CMakeFiles/2.8.10.2/CompilerIdCXX/./CompilerIdCXX 36"6DD44973-8959-4397-BA93-0BFBCC3736F7- + +CPhaseScriptExecution "Run Script" /Users/birarda/code/worklist/interface/interface/CMakeFiles/2.8.10.2/CompilerIdCXX/./CompilerIdCXX.build/Debug/CompilerIdCXX.build/Script-2C8FEB8E15DC1A1A00E56A5D.sh +s381895449.052983 +e381895449.087056 +r1 +xPhaseScriptExecution +xRun Script +x/Users/birarda/code/worklist/interface/interface/CMakeFiles/2.8.10.2/CompilerIdCXX/./CompilerIdCXX.build/Debug/CompilerIdCXX.build/Script-2C8FEB8E15DC1A1A00E56A5D.sh +oGCC_VERSION=com.apple.compilers.llvm.clang.1_0 +lSLF05#21%IDEActivityLogSection1@2#32"com.apple.dt.IDE.BuildLogSection36"Run custom shell script 'Run Script'2e3d0e1943c3b641^ee5e161943c3b641^-47"GCC_VERSION=com.apple.compilers.llvm.clang.1_0 1(21%IDEActivityLogMessage2@47"GCC_VERSION=com.apple.compilers.llvm.clang.1_0 -381895449#0#47#-0#-----0#0#0#--388"PhaseScriptExecution "Run Script" ./CompilerIdCXX.build/Debug/CompilerIdCXX.build/Script-2C8FEB8E15DC1A1A00E56A5D.sh cd /Users/birarda/code/worklist/interface/interface/CMakeFiles/2.8.10.2/CompilerIdCXX /bin/sh -c /Users/birarda/code/worklist/interface/interface/CMakeFiles/2.8.10.2/CompilerIdCXX/./CompilerIdCXX.build/Debug/CompilerIdCXX.build/Script-2C8FEB8E15DC1A1A00E56A5D.sh 36"0D0067F7-98F5-4BEE-9FF8-024D44649D99- + diff --git a/interface/CMakeFiles/2.8.10.2/CompilerIdCXX/CompilerIdCXX.xcodeproj/project.pbxproj b/interface/CMakeFiles/2.8.10.2/CompilerIdCXX/CompilerIdCXX.xcodeproj/project.pbxproj new file mode 100644 index 0000000000..2353c9bc4f --- /dev/null +++ b/interface/CMakeFiles/2.8.10.2/CompilerIdCXX/CompilerIdCXX.xcodeproj/project.pbxproj @@ -0,0 +1,107 @@ +// !$*UTF8*$! +{ + archiveVersion = 1; + classes = { + }; + objectVersion = 45; + objects = { + + 2C18F0B615DC1E0300593670 = {isa = PBXBuildFile; fileRef = 2C18F0B415DC1DC700593670; }; + 2C18F0B415DC1DC700593670 = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = CMakeCXXCompilerId.cpp; sourceTree = ""; }; + 08FB7794FE84155DC02AAC07 = { + isa = PBXGroup; + children = ( + 2C18F0B415DC1DC700593670, + ); + name = CompilerIdCXX; + sourceTree = ""; + }; + 8DD76FA90486AB0100D96B5E = { + isa = PBXNativeTarget; + buildConfigurationList = 1DEB928508733DD80010E9CD; + buildPhases = ( + 2C18F0B515DC1DCE00593670, + 2C8FEB8E15DC1A1A00E56A5D, + ); + buildRules = ( + ); + dependencies = ( + ); + name = CompilerIdCXX; + productName = CompilerIdCXX; + productType = "com.apple.product-type.tool"; + }; + 08FB7793FE84155DC02AAC07 = { + isa = PBXProject; + buildConfigurationList = 1DEB928908733DD80010E9CD; + compatibilityVersion = "Xcode 3.1"; + developmentRegion = English; + hasScannedForEncodings = 1; + knownRegions = ( + en, + ); + mainGroup = 08FB7794FE84155DC02AAC07; + projectDirPath = ""; + projectRoot = ""; + targets = ( + 8DD76FA90486AB0100D96B5E, + ); + }; + 2C8FEB8E15DC1A1A00E56A5D = { + isa = PBXShellScriptBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + inputPaths = ( + ); + outputPaths = ( + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "echo \"GCC_VERSION=$GCC_VERSION\""; + showEnvVarsInLog = 0; + }; + 2C18F0B515DC1DCE00593670 = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 2C18F0B615DC1E0300593670, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 1DEB928608733DD80010E9CD = { + isa = XCBuildConfiguration; + buildSettings = { + PRODUCT_NAME = CompilerIdCXX; + }; + name = Debug; + }; + 1DEB928A08733DD80010E9CD = { + isa = XCBuildConfiguration; + buildSettings = { + ARCHS = "$(ARCHS_STANDARD_32_BIT)"; + ONLY_ACTIVE_ARCH = YES; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)"; + SYMROOT = .; + }; + name = Debug; + }; + 1DEB928508733DD80010E9CD = { + isa = XCConfigurationList; + buildConfigurations = ( + 1DEB928608733DD80010E9CD, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Debug; + }; + 1DEB928908733DD80010E9CD = { + isa = XCConfigurationList; + buildConfigurations = ( + 1DEB928A08733DD80010E9CD, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Debug; + }; + }; + rootObject = 08FB7793FE84155DC02AAC07; +} diff --git a/interface/CMakeFiles/CMakeOutput.log b/interface/CMakeFiles/CMakeOutput.log new file mode 100644 index 0000000000..f50e1da489 --- /dev/null +++ b/interface/CMakeFiles/CMakeOutput.log @@ -0,0 +1,187 @@ +The system is: Darwin - 12.2.0 - i386 +Compiling the C compiler identification source file "CMakeCCompilerId.c" succeeded. +Compiler: +Build flags: +Id flags: + +The output was: +0 +=== BUILD NATIVE TARGET CompilerIdC OF PROJECT CompilerIdC WITH THE DEFAULT CONFIGURATION (Debug) === +Check dependencies + +CompileC ./CompilerIdC.build/Debug/CompilerIdC.build/Objects-normal/i386/CMakeCCompilerId.o CMakeCCompilerId.c normal i386 c com.apple.compilers.llvm.clang.1_0.compiler + cd /Users/birarda/code/worklist/interface/interface/CMakeFiles/2.8.10.2/CompilerIdC + setenv LANG en_US.US-ASCII + /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x c -arch i386 -fmessage-length=0 -Wno-trigraphs -fpascal-strings -Os -Wno-missing-field-initializers -Wno-missing-prototypes -Wno-return-type -Wformat -Wno-missing-braces -Wparentheses -Wswitch -Wno-unused-function -Wno-unused-label -Wno-unused-parameter -Wno-unused-variable -Wunused-value -Wno-empty-body -Wno-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wno-constant-conversion -Wno-int-conversion -Wno-enum-conversion -Wno-shorten-64-to-32 -Wpointer-sign -Wno-newline-eof -fasm-blocks -fstrict-aliasing -Wdeprecated-declarations -g -fvisibility=hidden -Wno-sign-conversion -I/Users/birarda/code/worklist/interface/interface/CMakeFiles/2.8.10.2/CompilerIdC/./CompilerIdC.build/Debug/CompilerIdC.build/CompilerIdC.hmap -I/Users/birarda/code/worklist/interface/interface/CMakeFiles/2.8.10.2/CompilerIdC/include -I/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include -I/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include -I/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include -I/Users/birarda/code/worklist/interface/interface/CMakeFiles/2.8.10.2/CompilerIdC/./CompilerIdC.build/Debug/CompilerIdC.build/DerivedSources/i386 -I/Users/birarda/code/worklist/interface/interface/CMakeFiles/2.8.10.2/CompilerIdC/./CompilerIdC.build/Debug/CompilerIdC.build/DerivedSources -F/Users/birarda/code/worklist/interface/interface/CMakeFiles/2.8.10.2/CompilerIdC -MMD -MT dependencies -MF /Users/birarda/code/worklist/interface/interface/CMakeFiles/2.8.10.2/CompilerIdC/./CompilerIdC.build/Debug/CompilerIdC.build/Objects-normal/i386/CMakeCCompilerId.d --serialize-diagnostics /Users/birarda/code/worklist/interface/interface/CMakeFiles/2.8.10.2/CompilerIdC/./CompilerIdC.build/Debug/CompilerIdC.build/Objects-normal/i386/CMakeCCompilerId.dia -c /Users/birarda/code/worklist/interface/interface/CMakeFiles/2.8.10.2/CompilerIdC/CMakeCCompilerId.c -o /Users/birarda/code/worklist/interface/interface/CMakeFiles/2.8.10.2/CompilerIdC/./CompilerIdC.build/Debug/CompilerIdC.build/Objects-normal/i386/CMakeCCompilerId.o + +Ld ./CompilerIdC normal i386 + cd /Users/birarda/code/worklist/interface/interface/CMakeFiles/2.8.10.2/CompilerIdC + /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -arch i386 -L/Users/birarda/code/worklist/interface/interface/CMakeFiles/2.8.10.2/CompilerIdC -F/Users/birarda/code/worklist/interface/interface/CMakeFiles/2.8.10.2/CompilerIdC -filelist /Users/birarda/code/worklist/interface/interface/CMakeFiles/2.8.10.2/CompilerIdC/./CompilerIdC.build/Debug/CompilerIdC.build/Objects-normal/i386/CompilerIdC.LinkFileList -o /Users/birarda/code/worklist/interface/interface/CMakeFiles/2.8.10.2/CompilerIdC/./CompilerIdC + +PhaseScriptExecution "Run Script" ./CompilerIdC.build/Debug/CompilerIdC.build/Script-2C8FEB8E15DC1A1A00E56A5D.sh + cd /Users/birarda/code/worklist/interface/interface/CMakeFiles/2.8.10.2/CompilerIdC + /bin/sh -c /Users/birarda/code/worklist/interface/interface/CMakeFiles/2.8.10.2/CompilerIdC/./CompilerIdC.build/Debug/CompilerIdC.build/Script-2C8FEB8E15DC1A1A00E56A5D.sh +GCC_VERSION=com.apple.compilers.llvm.clang.1_0 + + +** BUILD SUCCEEDED ** + + + +Compilation of the C compiler identification source "CMakeCCompilerId.c" produced "CompilerIdC" + +The C compiler identification is Clang, found in "/Users/birarda/code/worklist/interface/interface/CMakeFiles/2.8.10.2/CompilerIdC/CompilerIdC" + +Compiling the CXX compiler identification source file "CMakeCXXCompilerId.cpp" succeeded. +Compiler: +Build flags: +Id flags: + +The output was: +0 +=== BUILD NATIVE TARGET CompilerIdCXX OF PROJECT CompilerIdCXX WITH THE DEFAULT CONFIGURATION (Debug) === +Check dependencies + +CompileC ./CompilerIdCXX.build/Debug/CompilerIdCXX.build/Objects-normal/i386/CMakeCXXCompilerId.o CMakeCXXCompilerId.cpp normal i386 c++ com.apple.compilers.llvm.clang.1_0.compiler + cd /Users/birarda/code/worklist/interface/interface/CMakeFiles/2.8.10.2/CompilerIdCXX + setenv LANG en_US.US-ASCII + /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x c++ -arch i386 -fmessage-length=0 -Wno-trigraphs -fpascal-strings -Os -Wno-missing-field-initializers -Wno-missing-prototypes -Wno-return-type -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wformat -Wno-missing-braces -Wparentheses -Wswitch -Wno-unused-function -Wno-unused-label -Wno-unused-parameter -Wno-unused-variable -Wunused-value -Wno-empty-body -Wno-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wno-constant-conversion -Wno-int-conversion -Wno-enum-conversion -Wno-shorten-64-to-32 -Wno-newline-eof -Wno-c++11-extensions -fasm-blocks -fstrict-aliasing -Wdeprecated-declarations -Winvalid-offsetof -g -fvisibility=hidden -fvisibility-inlines-hidden -Wno-sign-conversion -I/Users/birarda/code/worklist/interface/interface/CMakeFiles/2.8.10.2/CompilerIdCXX/./CompilerIdCXX.build/Debug/CompilerIdCXX.build/CompilerIdCXX.hmap -I/Users/birarda/code/worklist/interface/interface/CMakeFiles/2.8.10.2/CompilerIdCXX/include -I/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include -I/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include -I/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include -I/Users/birarda/code/worklist/interface/interface/CMakeFiles/2.8.10.2/CompilerIdCXX/./CompilerIdCXX.build/Debug/CompilerIdCXX.build/DerivedSources/i386 -I/Users/birarda/code/worklist/interface/interface/CMakeFiles/2.8.10.2/CompilerIdCXX/./CompilerIdCXX.build/Debug/CompilerIdCXX.build/DerivedSources -F/Users/birarda/code/worklist/interface/interface/CMakeFiles/2.8.10.2/CompilerIdCXX -MMD -MT dependencies -MF /Users/birarda/code/worklist/interface/interface/CMakeFiles/2.8.10.2/CompilerIdCXX/./CompilerIdCXX.build/Debug/CompilerIdCXX.build/Objects-normal/i386/CMakeCXXCompilerId.d --serialize-diagnostics /Users/birarda/code/worklist/interface/interface/CMakeFiles/2.8.10.2/CompilerIdCXX/./CompilerIdCXX.build/Debug/CompilerIdCXX.build/Objects-normal/i386/CMakeCXXCompilerId.dia -c /Users/birarda/code/worklist/interface/interface/CMakeFiles/2.8.10.2/CompilerIdCXX/CMakeCXXCompilerId.cpp -o /Users/birarda/code/worklist/interface/interface/CMakeFiles/2.8.10.2/CompilerIdCXX/./CompilerIdCXX.build/Debug/CompilerIdCXX.build/Objects-normal/i386/CMakeCXXCompilerId.o + +Ld ./CompilerIdCXX normal i386 + cd /Users/birarda/code/worklist/interface/interface/CMakeFiles/2.8.10.2/CompilerIdCXX + /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang++ -arch i386 -L/Users/birarda/code/worklist/interface/interface/CMakeFiles/2.8.10.2/CompilerIdCXX -F/Users/birarda/code/worklist/interface/interface/CMakeFiles/2.8.10.2/CompilerIdCXX -filelist /Users/birarda/code/worklist/interface/interface/CMakeFiles/2.8.10.2/CompilerIdCXX/./CompilerIdCXX.build/Debug/CompilerIdCXX.build/Objects-normal/i386/CompilerIdCXX.LinkFileList -o /Users/birarda/code/worklist/interface/interface/CMakeFiles/2.8.10.2/CompilerIdCXX/./CompilerIdCXX + +PhaseScriptExecution "Run Script" ./CompilerIdCXX.build/Debug/CompilerIdCXX.build/Script-2C8FEB8E15DC1A1A00E56A5D.sh + cd /Users/birarda/code/worklist/interface/interface/CMakeFiles/2.8.10.2/CompilerIdCXX + /bin/sh -c /Users/birarda/code/worklist/interface/interface/CMakeFiles/2.8.10.2/CompilerIdCXX/./CompilerIdCXX.build/Debug/CompilerIdCXX.build/Script-2C8FEB8E15DC1A1A00E56A5D.sh +GCC_VERSION=com.apple.compilers.llvm.clang.1_0 + + +** BUILD SUCCEEDED ** + + + +Compilation of the CXX compiler identification source "CMakeCXXCompilerId.cpp" produced "CompilerIdCXX" + +The CXX compiler identification is Clang, found in "/Users/birarda/code/worklist/interface/interface/CMakeFiles/2.8.10.2/CompilerIdCXX/CompilerIdCXX" + +Determining if the C compiler works passed with the following output: +Change Dir: /Users/birarda/code/worklist/interface/interface/CMakeFiles/CMakeTmp + +Run Build Command:/usr/local/Cellar/cmake/2.8.10.2/bin/cmakexbuild -project CMAKE_TRY_COMPILE.xcodeproj build -target cmTryCompileExec279143964 -configuration Debug +=== BUILD NATIVE TARGET cmTryCompileExec279143964 OF PROJECT CMAKE_TRY_COMPILE WITH CONFIGURATION Debug === +Check dependencies + +CompileC CMAKE_TRY_COMPILE.build/Debug/cmTryCompileExec279143964.build/Objects-normal/x86_64/testCCompiler.o testCCompiler.c normal x86_64 c com.apple.compilers.llvm.clang.1_0.compiler + cd /Users/birarda/code/worklist/interface/interface/CMakeFiles/CMakeTmp + /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x c -arch x86_64 -fmessage-length=0 -Wno-trigraphs -fpascal-strings -O0 -Wno-missing-field-initializers -Wno-missing-prototypes -Wno-return-type -Wformat -Wno-missing-braces -Wparentheses -Wswitch -Wno-unused-function -Wno-unused-label -Wno-unused-parameter -Wno-unused-variable -Wunused-value -Wno-empty-body -Wno-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wno-constant-conversion -Wno-int-conversion -Wno-enum-conversion -Wno-shorten-64-to-32 -Wpointer-sign -Wno-newline-eof "-DCMAKE_INTDIR=\"Debug\"" -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.8.sdk -fasm-blocks -fstrict-aliasing -Wdeprecated-declarations -mmacosx-version-min=10.8 -g -Wno-sign-conversion -I/Users/birarda/code/worklist/interface/interface/CMakeFiles/CMakeTmp/Debug/include -I/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include -I/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include -I/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include -I/Users/birarda/code/worklist/interface/interface/CMakeFiles/CMakeTmp/CMAKE_TRY_COMPILE.build/Debug/cmTryCompileExec279143964.build/DerivedSources/x86_64 -I/Users/birarda/code/worklist/interface/interface/CMakeFiles/CMakeTmp/CMAKE_TRY_COMPILE.build/Debug/cmTryCompileExec279143964.build/DerivedSources -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/birarda/code/worklist/interface/interface/CMakeFiles/CMakeTmp/Debug -MMD -MT dependencies -MF /Users/birarda/code/worklist/interface/interface/CMakeFiles/CMakeTmp/CMAKE_TRY_COMPILE.build/Debug/cmTryCompileExec279143964.build/Objects-normal/x86_64/testCCompiler.d --serialize-diagnostics /Users/birarda/code/worklist/interface/interface/CMakeFiles/CMakeTmp/CMAKE_TRY_COMPILE.build/Debug/cmTryCompileExec279143964.build/Objects-normal/x86_64/testCCompiler.dia -c /Users/birarda/code/worklist/interface/interface/CMakeFiles/CMakeTmp/testCCompiler.c -o /Users/birarda/code/worklist/interface/interface/CMakeFiles/CMakeTmp/CMAKE_TRY_COMPILE.build/Debug/cmTryCompileExec279143964.build/Objects-normal/x86_64/testCCompiler.o + +Ld Debug/cmTryCompileExec279143964 normal x86_64 + cd /Users/birarda/code/worklist/interface/interface/CMakeFiles/CMakeTmp + /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -arch x86_64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.8.sdk -L/Users/birarda/code/worklist/interface/interface/CMakeFiles/CMakeTmp/Debug -F/Users/birarda/code/worklist/interface/interface/CMakeFiles/CMakeTmp/Debug -filelist /Users/birarda/code/worklist/interface/interface/CMakeFiles/CMakeTmp/CMAKE_TRY_COMPILE.build/Debug/cmTryCompileExec279143964.build/Objects-normal/x86_64/cmTryCompileExec279143964.LinkFileList -mmacosx-version-min=10.8 -Wl,-search_paths_first -Wl,-headerpad_max_install_names -o /Users/birarda/code/worklist/interface/interface/CMakeFiles/CMakeTmp/Debug/cmTryCompileExec279143964 + +PhaseScriptExecution "CMake PostBuild Rules" CMAKE_TRY_COMPILE.build/Debug/cmTryCompileExec279143964.build/Script-8AC46E92F361491AAC1E1DF5.sh + cd /Users/birarda/code/worklist/interface/interface/CMakeFiles/CMakeTmp + /bin/sh -c /Users/birarda/code/worklist/interface/interface/CMakeFiles/CMakeTmp/CMAKE_TRY_COMPILE.build/Debug/cmTryCompileExec279143964.build/Script-8AC46E92F361491AAC1E1DF5.sh +echo "Depend check for xcode" +Depend check for xcode +cd /Users/birarda/code/worklist/interface/interface/CMakeFiles/CMakeTmp && make -C /Users/birarda/code/worklist/interface/interface/CMakeFiles/CMakeTmp -f /Users/birarda/code/worklist/interface/interface/CMakeFiles/CMakeTmp/CMakeScripts/XCODE_DEPEND_HELPER.make PostBuild.cmTryCompileExec279143964.Debug +make[1]: Nothing to be done for `PostBuild.cmTryCompileExec279143964.Debug'. + + +** BUILD SUCCEEDED ** + + + +Detecting C compiler ABI info compiled with the following output: +Change Dir: /Users/birarda/code/worklist/interface/interface/CMakeFiles/CMakeTmp + +Run Build Command:/usr/local/Cellar/cmake/2.8.10.2/bin/cmakexbuild -project CMAKE_TRY_COMPILE.xcodeproj build -target cmTryCompileExec2994076943 -configuration Debug +=== BUILD NATIVE TARGET cmTryCompileExec2994076943 OF PROJECT CMAKE_TRY_COMPILE WITH CONFIGURATION Debug === +Check dependencies + +CompileC CMAKE_TRY_COMPILE.build/Debug/cmTryCompileExec2994076943.build/Objects-normal/x86_64/CMakeCCompilerABI.o ../../../../../../../../usr/local/Cellar/cmake/2.8.10.2/share/cmake/Modules/CMakeCCompilerABI.c normal x86_64 c com.apple.compilers.llvm.clang.1_0.compiler + cd /Users/birarda/code/worklist/interface/interface/CMakeFiles/CMakeTmp + /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x c -arch x86_64 -fmessage-length=0 -Wno-trigraphs -fpascal-strings -O0 -Wno-missing-field-initializers -Wno-missing-prototypes -Wno-return-type -Wformat -Wno-missing-braces -Wparentheses -Wswitch -Wno-unused-function -Wno-unused-label -Wno-unused-parameter -Wno-unused-variable -Wunused-value -Wno-empty-body -Wno-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wno-constant-conversion -Wno-int-conversion -Wno-enum-conversion -Wno-shorten-64-to-32 -Wpointer-sign -Wno-newline-eof "-DCMAKE_INTDIR=\"Debug\"" -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.8.sdk -fasm-blocks -fstrict-aliasing -Wdeprecated-declarations -mmacosx-version-min=10.8 -g -Wno-sign-conversion -I/Users/birarda/code/worklist/interface/interface/CMakeFiles/CMakeTmp/Debug/include -I/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include -I/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include -I/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include -I/Users/birarda/code/worklist/interface/interface/CMakeFiles/CMakeTmp/CMAKE_TRY_COMPILE.build/Debug/cmTryCompileExec2994076943.build/DerivedSources/x86_64 -I/Users/birarda/code/worklist/interface/interface/CMakeFiles/CMakeTmp/CMAKE_TRY_COMPILE.build/Debug/cmTryCompileExec2994076943.build/DerivedSources -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/birarda/code/worklist/interface/interface/CMakeFiles/CMakeTmp/Debug -MMD -MT dependencies -MF /Users/birarda/code/worklist/interface/interface/CMakeFiles/CMakeTmp/CMAKE_TRY_COMPILE.build/Debug/cmTryCompileExec2994076943.build/Objects-normal/x86_64/CMakeCCompilerABI.d --serialize-diagnostics /Users/birarda/code/worklist/interface/interface/CMakeFiles/CMakeTmp/CMAKE_TRY_COMPILE.build/Debug/cmTryCompileExec2994076943.build/Objects-normal/x86_64/CMakeCCompilerABI.dia -c /Users/birarda/code/worklist/interface/interface/CMakeFiles/CMakeTmp/../../../../../../../../usr/local/Cellar/cmake/2.8.10.2/share/cmake/Modules/CMakeCCompilerABI.c -o /Users/birarda/code/worklist/interface/interface/CMakeFiles/CMakeTmp/CMAKE_TRY_COMPILE.build/Debug/cmTryCompileExec2994076943.build/Objects-normal/x86_64/CMakeCCompilerABI.o + +Ld Debug/cmTryCompileExec2994076943 normal x86_64 + cd /Users/birarda/code/worklist/interface/interface/CMakeFiles/CMakeTmp + /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -arch x86_64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.8.sdk -L/Users/birarda/code/worklist/interface/interface/CMakeFiles/CMakeTmp/Debug -F/Users/birarda/code/worklist/interface/interface/CMakeFiles/CMakeTmp/Debug -filelist /Users/birarda/code/worklist/interface/interface/CMakeFiles/CMakeTmp/CMAKE_TRY_COMPILE.build/Debug/cmTryCompileExec2994076943.build/Objects-normal/x86_64/cmTryCompileExec2994076943.LinkFileList -mmacosx-version-min=10.8 -v -Wl,-search_paths_first -Wl,-headerpad_max_install_names -o /Users/birarda/code/worklist/interface/interface/CMakeFiles/CMakeTmp/Debug/cmTryCompileExec2994076943 +Apple LLVM version 4.2 (clang-425.0.24) (based on LLVM 3.2svn) +Target: x86_64-apple-darwin12.2.0 +Thread model: posix + "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ld" -demangle -dynamic -arch x86_64 -macosx_version_min 10.8.0 -syslibroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.8.sdk -o /Users/birarda/code/worklist/interface/interface/CMakeFiles/CMakeTmp/Debug/cmTryCompileExec2994076943 -L/Users/birarda/code/worklist/interface/interface/CMakeFiles/CMakeTmp/Debug -filelist /Users/birarda/code/worklist/interface/interface/CMakeFiles/CMakeTmp/CMAKE_TRY_COMPILE.build/Debug/cmTryCompileExec2994076943.build/Objects-normal/x86_64/cmTryCompileExec2994076943.LinkFileList -search_paths_first -headerpad_max_install_names -lSystem /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../lib/clang/4.2/lib/darwin/libclang_rt.osx.a -F/Users/birarda/code/worklist/interface/interface/CMakeFiles/CMakeTmp/Debug + +PhaseScriptExecution "CMake PostBuild Rules" CMAKE_TRY_COMPILE.build/Debug/cmTryCompileExec2994076943.build/Script-FE55831503964344B73D3256.sh + cd /Users/birarda/code/worklist/interface/interface/CMakeFiles/CMakeTmp + /bin/sh -c /Users/birarda/code/worklist/interface/interface/CMakeFiles/CMakeTmp/CMAKE_TRY_COMPILE.build/Debug/cmTryCompileExec2994076943.build/Script-FE55831503964344B73D3256.sh +echo "Depend check for xcode" +Depend check for xcode +cd /Users/birarda/code/worklist/interface/interface/CMakeFiles/CMakeTmp && make -C /Users/birarda/code/worklist/interface/interface/CMakeFiles/CMakeTmp -f /Users/birarda/code/worklist/interface/interface/CMakeFiles/CMakeTmp/CMakeScripts/XCODE_DEPEND_HELPER.make PostBuild.cmTryCompileExec2994076943.Debug +make[1]: Nothing to be done for `PostBuild.cmTryCompileExec2994076943.Debug'. + + +** BUILD SUCCEEDED ** + + + +Determining if the CXX compiler works passed with the following output: +Change Dir: /Users/birarda/code/worklist/interface/interface/CMakeFiles/CMakeTmp + +Run Build Command:/usr/local/Cellar/cmake/2.8.10.2/bin/cmakexbuild -project CMAKE_TRY_COMPILE.xcodeproj build -target cmTryCompileExec3072952752 -configuration Debug +=== BUILD NATIVE TARGET cmTryCompileExec3072952752 OF PROJECT CMAKE_TRY_COMPILE WITH CONFIGURATION Debug === +Check dependencies + +CompileC CMAKE_TRY_COMPILE.build/Debug/cmTryCompileExec3072952752.build/Objects-normal/x86_64/testCXXCompiler.o testCXXCompiler.cxx normal x86_64 c++ com.apple.compilers.llvm.clang.1_0.compiler + cd /Users/birarda/code/worklist/interface/interface/CMakeFiles/CMakeTmp + /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x c++ -arch x86_64 -fmessage-length=0 -Wno-trigraphs -fpascal-strings -O0 -Wno-missing-field-initializers -Wno-missing-prototypes -Wno-return-type -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wformat -Wno-missing-braces -Wparentheses -Wswitch -Wno-unused-function -Wno-unused-label -Wno-unused-parameter -Wno-unused-variable -Wunused-value -Wno-empty-body -Wno-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wno-constant-conversion -Wno-int-conversion -Wno-enum-conversion -Wno-shorten-64-to-32 -Wno-newline-eof -Wno-c++11-extensions "-DCMAKE_INTDIR=\"Debug\"" -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.8.sdk -fasm-blocks -fstrict-aliasing -Wdeprecated-declarations -Winvalid-offsetof -mmacosx-version-min=10.8 -Wno-sign-conversion -I/Users/birarda/code/worklist/interface/interface/CMakeFiles/CMakeTmp/Debug/include -I/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include -I/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include -I/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include -I/Users/birarda/code/worklist/interface/interface/CMakeFiles/CMakeTmp/CMAKE_TRY_COMPILE.build/Debug/cmTryCompileExec3072952752.build/DerivedSources/x86_64 -I/Users/birarda/code/worklist/interface/interface/CMakeFiles/CMakeTmp/CMAKE_TRY_COMPILE.build/Debug/cmTryCompileExec3072952752.build/DerivedSources -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/birarda/code/worklist/interface/interface/CMakeFiles/CMakeTmp/Debug -g -MMD -MT dependencies -MF /Users/birarda/code/worklist/interface/interface/CMakeFiles/CMakeTmp/CMAKE_TRY_COMPILE.build/Debug/cmTryCompileExec3072952752.build/Objects-normal/x86_64/testCXXCompiler.d --serialize-diagnostics /Users/birarda/code/worklist/interface/interface/CMakeFiles/CMakeTmp/CMAKE_TRY_COMPILE.build/Debug/cmTryCompileExec3072952752.build/Objects-normal/x86_64/testCXXCompiler.dia -c /Users/birarda/code/worklist/interface/interface/CMakeFiles/CMakeTmp/testCXXCompiler.cxx -o /Users/birarda/code/worklist/interface/interface/CMakeFiles/CMakeTmp/CMAKE_TRY_COMPILE.build/Debug/cmTryCompileExec3072952752.build/Objects-normal/x86_64/testCXXCompiler.o + +Ld Debug/cmTryCompileExec3072952752 normal x86_64 + cd /Users/birarda/code/worklist/interface/interface/CMakeFiles/CMakeTmp + /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang++ -arch x86_64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.8.sdk -L/Users/birarda/code/worklist/interface/interface/CMakeFiles/CMakeTmp/Debug -F/Users/birarda/code/worklist/interface/interface/CMakeFiles/CMakeTmp/Debug -filelist /Users/birarda/code/worklist/interface/interface/CMakeFiles/CMakeTmp/CMAKE_TRY_COMPILE.build/Debug/cmTryCompileExec3072952752.build/Objects-normal/x86_64/cmTryCompileExec3072952752.LinkFileList -mmacosx-version-min=10.8 -Wl,-search_paths_first -Wl,-headerpad_max_install_names -o /Users/birarda/code/worklist/interface/interface/CMakeFiles/CMakeTmp/Debug/cmTryCompileExec3072952752 + +PhaseScriptExecution "CMake PostBuild Rules" CMAKE_TRY_COMPILE.build/Debug/cmTryCompileExec3072952752.build/Script-80BE8AA47DFB4535A29AB4BB.sh + cd /Users/birarda/code/worklist/interface/interface/CMakeFiles/CMakeTmp + /bin/sh -c /Users/birarda/code/worklist/interface/interface/CMakeFiles/CMakeTmp/CMAKE_TRY_COMPILE.build/Debug/cmTryCompileExec3072952752.build/Script-80BE8AA47DFB4535A29AB4BB.sh +echo "Depend check for xcode" +Depend check for xcode +cd /Users/birarda/code/worklist/interface/interface/CMakeFiles/CMakeTmp && make -C /Users/birarda/code/worklist/interface/interface/CMakeFiles/CMakeTmp -f /Users/birarda/code/worklist/interface/interface/CMakeFiles/CMakeTmp/CMakeScripts/XCODE_DEPEND_HELPER.make PostBuild.cmTryCompileExec3072952752.Debug +make[1]: Nothing to be done for `PostBuild.cmTryCompileExec3072952752.Debug'. + + +** BUILD SUCCEEDED ** + + + +Detecting CXX compiler ABI info compiled with the following output: +Change Dir: /Users/birarda/code/worklist/interface/interface/CMakeFiles/CMakeTmp + +Run Build Command:/usr/local/Cellar/cmake/2.8.10.2/bin/cmakexbuild -project CMAKE_TRY_COMPILE.xcodeproj build -target cmTryCompileExec2590001113 -configuration Debug +=== BUILD NATIVE TARGET cmTryCompileExec2590001113 OF PROJECT CMAKE_TRY_COMPILE WITH CONFIGURATION Debug === +Check dependencies + +CompileC CMAKE_TRY_COMPILE.build/Debug/cmTryCompileExec2590001113.build/Objects-normal/x86_64/CMakeCXXCompilerABI.o ../../../../../../../../usr/local/Cellar/cmake/2.8.10.2/share/cmake/Modules/CMakeCXXCompilerABI.cpp normal x86_64 c++ com.apple.compilers.llvm.clang.1_0.compiler + cd /Users/birarda/code/worklist/interface/interface/CMakeFiles/CMakeTmp + /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x c++ -arch x86_64 -fmessage-length=0 -Wno-trigraphs -fpascal-strings -O0 -Wno-missing-field-initializers -Wno-missing-prototypes -Wno-return-type -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wformat -Wno-missing-braces -Wparentheses -Wswitch -Wno-unused-function -Wno-unused-label -Wno-unused-parameter -Wno-unused-variable -Wunused-value -Wno-empty-body -Wno-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wno-constant-conversion -Wno-int-conversion -Wno-enum-conversion -Wno-shorten-64-to-32 -Wno-newline-eof -Wno-c++11-extensions "-DCMAKE_INTDIR=\"Debug\"" -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.8.sdk -fasm-blocks -fstrict-aliasing -Wdeprecated-declarations -Winvalid-offsetof -mmacosx-version-min=10.8 -Wno-sign-conversion -I/Users/birarda/code/worklist/interface/interface/CMakeFiles/CMakeTmp/Debug/include -I/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include -I/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include -I/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include -I/Users/birarda/code/worklist/interface/interface/CMakeFiles/CMakeTmp/CMAKE_TRY_COMPILE.build/Debug/cmTryCompileExec2590001113.build/DerivedSources/x86_64 -I/Users/birarda/code/worklist/interface/interface/CMakeFiles/CMakeTmp/CMAKE_TRY_COMPILE.build/Debug/cmTryCompileExec2590001113.build/DerivedSources -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/birarda/code/worklist/interface/interface/CMakeFiles/CMakeTmp/Debug -g -MMD -MT dependencies -MF /Users/birarda/code/worklist/interface/interface/CMakeFiles/CMakeTmp/CMAKE_TRY_COMPILE.build/Debug/cmTryCompileExec2590001113.build/Objects-normal/x86_64/CMakeCXXCompilerABI.d --serialize-diagnostics /Users/birarda/code/worklist/interface/interface/CMakeFiles/CMakeTmp/CMAKE_TRY_COMPILE.build/Debug/cmTryCompileExec2590001113.build/Objects-normal/x86_64/CMakeCXXCompilerABI.dia -c /Users/birarda/code/worklist/interface/interface/CMakeFiles/CMakeTmp/../../../../../../../../usr/local/Cellar/cmake/2.8.10.2/share/cmake/Modules/CMakeCXXCompilerABI.cpp -o /Users/birarda/code/worklist/interface/interface/CMakeFiles/CMakeTmp/CMAKE_TRY_COMPILE.build/Debug/cmTryCompileExec2590001113.build/Objects-normal/x86_64/CMakeCXXCompilerABI.o + +Ld Debug/cmTryCompileExec2590001113 normal x86_64 + cd /Users/birarda/code/worklist/interface/interface/CMakeFiles/CMakeTmp + /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang++ -arch x86_64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.8.sdk -L/Users/birarda/code/worklist/interface/interface/CMakeFiles/CMakeTmp/Debug -F/Users/birarda/code/worklist/interface/interface/CMakeFiles/CMakeTmp/Debug -filelist /Users/birarda/code/worklist/interface/interface/CMakeFiles/CMakeTmp/CMAKE_TRY_COMPILE.build/Debug/cmTryCompileExec2590001113.build/Objects-normal/x86_64/cmTryCompileExec2590001113.LinkFileList -mmacosx-version-min=10.8 -v -Wl,-search_paths_first -Wl,-headerpad_max_install_names -o /Users/birarda/code/worklist/interface/interface/CMakeFiles/CMakeTmp/Debug/cmTryCompileExec2590001113 +Apple LLVM version 4.2 (clang-425.0.24) (based on LLVM 3.2svn) +Target: x86_64-apple-darwin12.2.0 +Thread model: posix + "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ld" -demangle -dynamic -arch x86_64 -macosx_version_min 10.8.0 -syslibroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.8.sdk -o /Users/birarda/code/worklist/interface/interface/CMakeFiles/CMakeTmp/Debug/cmTryCompileExec2590001113 -L/Users/birarda/code/worklist/interface/interface/CMakeFiles/CMakeTmp/Debug -filelist /Users/birarda/code/worklist/interface/interface/CMakeFiles/CMakeTmp/CMAKE_TRY_COMPILE.build/Debug/cmTryCompileExec2590001113.build/Objects-normal/x86_64/cmTryCompileExec2590001113.LinkFileList -search_paths_first -headerpad_max_install_names -lstdc++ -lSystem /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../lib/clang/4.2/lib/darwin/libclang_rt.osx.a -F/Users/birarda/code/worklist/interface/interface/CMakeFiles/CMakeTmp/Debug + +PhaseScriptExecution "CMake PostBuild Rules" CMAKE_TRY_COMPILE.build/Debug/cmTryCompileExec2590001113.build/Script-FC3A5AEA591F4582A045D8B0.sh + cd /Users/birarda/code/worklist/interface/interface/CMakeFiles/CMakeTmp + /bin/sh -c /Users/birarda/code/worklist/interface/interface/CMakeFiles/CMakeTmp/CMAKE_TRY_COMPILE.build/Debug/cmTryCompileExec2590001113.build/Script-FC3A5AEA591F4582A045D8B0.sh +echo "Depend check for xcode" +Depend check for xcode +cd /Users/birarda/code/worklist/interface/interface/CMakeFiles/CMakeTmp && make -C /Users/birarda/code/worklist/interface/interface/CMakeFiles/CMakeTmp -f /Users/birarda/code/worklist/interface/interface/CMakeFiles/CMakeTmp/CMakeScripts/XCODE_DEPEND_HELPER.make PostBuild.cmTryCompileExec2590001113.Debug +make[1]: Nothing to be done for `PostBuild.cmTryCompileExec2590001113.Debug'. + + +** BUILD SUCCEEDED ** + + + diff --git a/interface/CMakeFiles/TargetDirectories.txt b/interface/CMakeFiles/TargetDirectories.txt new file mode 100644 index 0000000000..3ecad74a16 --- /dev/null +++ b/interface/CMakeFiles/TargetDirectories.txt @@ -0,0 +1,3 @@ +/Users/birarda/code/worklist/interface/interface/CMakeFiles/ALL_BUILD.dir +/Users/birarda/code/worklist/interface/interface/CMakeFiles/ZERO_CHECK.dir +/Users/birarda/code/worklist/interface/interface/src/CMakeFiles/interface.dir diff --git a/interface/CMakeFiles/cmake.check_cache b/interface/CMakeFiles/cmake.check_cache new file mode 100644 index 0000000000..3dccd73172 --- /dev/null +++ b/interface/CMakeFiles/cmake.check_cache @@ -0,0 +1 @@ +# This file is generated by cmake for dependency checking of the CMakeCache.txt file diff --git a/interface/CMakeLists.txt b/interface/CMakeLists.txt new file mode 100644 index 0000000000..f6494281a1 --- /dev/null +++ b/interface/CMakeLists.txt @@ -0,0 +1,3 @@ +cmake_minimum_required(VERSION 2.8) +project(interface) +add_subdirectory(src) \ No newline at end of file diff --git a/interface/CMakeScripts/ALL_BUILD_cmakeRulesBuildPhase.makeDebug b/interface/CMakeScripts/ALL_BUILD_cmakeRulesBuildPhase.makeDebug new file mode 100644 index 0000000000..aa6c86c23c --- /dev/null +++ b/interface/CMakeScripts/ALL_BUILD_cmakeRulesBuildPhase.makeDebug @@ -0,0 +1,10 @@ +# Generated by CMake, DO NOT EDIT +# Custom rules for ALL_BUILD +.SUFFIXES: +all: \ + /Users/birarda/code/worklist/interface/interface/CMakeFiles/ALL_BUILD + + +/Users/birarda/code/worklist/interface/interface/CMakeFiles/ALL_BUILD: + echo "" + echo Build\ all\ projects diff --git a/interface/CMakeScripts/ALL_BUILD_cmakeRulesBuildPhase.makeMinSizeRel b/interface/CMakeScripts/ALL_BUILD_cmakeRulesBuildPhase.makeMinSizeRel new file mode 100644 index 0000000000..aa6c86c23c --- /dev/null +++ b/interface/CMakeScripts/ALL_BUILD_cmakeRulesBuildPhase.makeMinSizeRel @@ -0,0 +1,10 @@ +# Generated by CMake, DO NOT EDIT +# Custom rules for ALL_BUILD +.SUFFIXES: +all: \ + /Users/birarda/code/worklist/interface/interface/CMakeFiles/ALL_BUILD + + +/Users/birarda/code/worklist/interface/interface/CMakeFiles/ALL_BUILD: + echo "" + echo Build\ all\ projects diff --git a/interface/CMakeScripts/ALL_BUILD_cmakeRulesBuildPhase.makeRelWithDebInfo b/interface/CMakeScripts/ALL_BUILD_cmakeRulesBuildPhase.makeRelWithDebInfo new file mode 100644 index 0000000000..aa6c86c23c --- /dev/null +++ b/interface/CMakeScripts/ALL_BUILD_cmakeRulesBuildPhase.makeRelWithDebInfo @@ -0,0 +1,10 @@ +# Generated by CMake, DO NOT EDIT +# Custom rules for ALL_BUILD +.SUFFIXES: +all: \ + /Users/birarda/code/worklist/interface/interface/CMakeFiles/ALL_BUILD + + +/Users/birarda/code/worklist/interface/interface/CMakeFiles/ALL_BUILD: + echo "" + echo Build\ all\ projects diff --git a/interface/CMakeScripts/ALL_BUILD_cmakeRulesBuildPhase.makeRelease b/interface/CMakeScripts/ALL_BUILD_cmakeRulesBuildPhase.makeRelease new file mode 100644 index 0000000000..aa6c86c23c --- /dev/null +++ b/interface/CMakeScripts/ALL_BUILD_cmakeRulesBuildPhase.makeRelease @@ -0,0 +1,10 @@ +# Generated by CMake, DO NOT EDIT +# Custom rules for ALL_BUILD +.SUFFIXES: +all: \ + /Users/birarda/code/worklist/interface/interface/CMakeFiles/ALL_BUILD + + +/Users/birarda/code/worklist/interface/interface/CMakeFiles/ALL_BUILD: + echo "" + echo Build\ all\ projects diff --git a/interface/CMakeScripts/ReRunCMake.make b/interface/CMakeScripts/ReRunCMake.make new file mode 100644 index 0000000000..22bef53cff --- /dev/null +++ b/interface/CMakeScripts/ReRunCMake.make @@ -0,0 +1,22 @@ +# Generated by CMake, DO NOT EDIT +CMakeFiles/cmake.check_cache: \ +/Users/birarda/code/worklist/interface/interface/CMakeFiles/2.8.10.2/CMakeCCompiler.cmake\ +/Users/birarda/code/worklist/interface/interface/CMakeFiles/2.8.10.2/CMakeCXXCompiler.cmake\ +/Users/birarda/code/worklist/interface/interface/CMakeFiles/2.8.10.2/CMakeSystem.cmake\ +/Users/birarda/code/worklist/interface/interface/CMakeLists.txt\ +/Users/birarda/code/worklist/interface/interface/src/CMakeLists.txt\ +/usr/local/Cellar/cmake/2.8.10.2/share/cmake/Modules/CMakeCInformation.cmake\ +/usr/local/Cellar/cmake/2.8.10.2/share/cmake/Modules/CMakeCXXInformation.cmake\ +/usr/local/Cellar/cmake/2.8.10.2/share/cmake/Modules/CMakeCommonLanguageInclude.cmake\ +/usr/local/Cellar/cmake/2.8.10.2/share/cmake/Modules/CMakeGenericSystem.cmake\ +/usr/local/Cellar/cmake/2.8.10.2/share/cmake/Modules/CMakeSystemSpecificInformation.cmake\ +/usr/local/Cellar/cmake/2.8.10.2/share/cmake/Modules/Compiler/Clang-C.cmake\ +/usr/local/Cellar/cmake/2.8.10.2/share/cmake/Modules/Compiler/Clang-CXX.cmake\ +/usr/local/Cellar/cmake/2.8.10.2/share/cmake/Modules/Compiler/Clang.cmake\ +/usr/local/Cellar/cmake/2.8.10.2/share/cmake/Modules/Compiler/GNU.cmake\ +/usr/local/Cellar/cmake/2.8.10.2/share/cmake/Modules/Platform/Darwin-Clang-C.cmake\ +/usr/local/Cellar/cmake/2.8.10.2/share/cmake/Modules/Platform/Darwin-Clang-CXX.cmake\ +/usr/local/Cellar/cmake/2.8.10.2/share/cmake/Modules/Platform/Darwin-Clang.cmake\ +/usr/local/Cellar/cmake/2.8.10.2/share/cmake/Modules/Platform/Darwin.cmake\ +/usr/local/Cellar/cmake/2.8.10.2/share/cmake/Modules/Platform/UnixPaths.cmake + /usr/local/Cellar/cmake/2.8.10.2/bin/cmake -H/Users/birarda/code/worklist/interface/interface -B/Users/birarda/code/worklist/interface/interface diff --git a/interface/CMakeScripts/XCODE_DEPEND_HELPER.make b/interface/CMakeScripts/XCODE_DEPEND_HELPER.make new file mode 100644 index 0000000000..2e08ade40b --- /dev/null +++ b/interface/CMakeScripts/XCODE_DEPEND_HELPER.make @@ -0,0 +1,32 @@ +# DO NOT EDIT +# This makefile makes sure all linkable targets are +# up-to-date with anything they link to +default: + echo "Do not invoke directly" + +# For each target create a dummy rule so the target does not have to exist + + +# Rules to remove targets that are older than anything to which they +# link. This forces Xcode to relink the targets from scratch. It +# does not seem to check these dependencies itself. +PostBuild.interface.Debug: +/Users/birarda/code/worklist/interface/interface/src/Debug/interface: + /bin/rm -f /Users/birarda/code/worklist/interface/interface/src/Debug/interface + + +PostBuild.interface.Release: +/Users/birarda/code/worklist/interface/interface/src/Release/interface: + /bin/rm -f /Users/birarda/code/worklist/interface/interface/src/Release/interface + + +PostBuild.interface.MinSizeRel: +/Users/birarda/code/worklist/interface/interface/src/MinSizeRel/interface: + /bin/rm -f /Users/birarda/code/worklist/interface/interface/src/MinSizeRel/interface + + +PostBuild.interface.RelWithDebInfo: +/Users/birarda/code/worklist/interface/interface/src/RelWithDebInfo/interface: + /bin/rm -f /Users/birarda/code/worklist/interface/interface/src/RelWithDebInfo/interface + + diff --git a/interface/CMakeScripts/ZERO_CHECK_cmakeRulesBuildPhase.makeDebug b/interface/CMakeScripts/ZERO_CHECK_cmakeRulesBuildPhase.makeDebug new file mode 100644 index 0000000000..455c65a29b --- /dev/null +++ b/interface/CMakeScripts/ZERO_CHECK_cmakeRulesBuildPhase.makeDebug @@ -0,0 +1,10 @@ +# Generated by CMake, DO NOT EDIT +# Custom rules for ZERO_CHECK +.SUFFIXES: +all: \ + /Users/birarda/code/worklist/interface/interface/CMakeFiles/ZERO_CHECK + + +/Users/birarda/code/worklist/interface/interface/CMakeFiles/ZERO_CHECK: + echo "" + make -f /Users/birarda/code/worklist/interface/interface/CMakeScripts/ReRunCMake.make diff --git a/interface/CMakeScripts/ZERO_CHECK_cmakeRulesBuildPhase.makeMinSizeRel b/interface/CMakeScripts/ZERO_CHECK_cmakeRulesBuildPhase.makeMinSizeRel new file mode 100644 index 0000000000..455c65a29b --- /dev/null +++ b/interface/CMakeScripts/ZERO_CHECK_cmakeRulesBuildPhase.makeMinSizeRel @@ -0,0 +1,10 @@ +# Generated by CMake, DO NOT EDIT +# Custom rules for ZERO_CHECK +.SUFFIXES: +all: \ + /Users/birarda/code/worklist/interface/interface/CMakeFiles/ZERO_CHECK + + +/Users/birarda/code/worklist/interface/interface/CMakeFiles/ZERO_CHECK: + echo "" + make -f /Users/birarda/code/worklist/interface/interface/CMakeScripts/ReRunCMake.make diff --git a/interface/CMakeScripts/ZERO_CHECK_cmakeRulesBuildPhase.makeRelWithDebInfo b/interface/CMakeScripts/ZERO_CHECK_cmakeRulesBuildPhase.makeRelWithDebInfo new file mode 100644 index 0000000000..455c65a29b --- /dev/null +++ b/interface/CMakeScripts/ZERO_CHECK_cmakeRulesBuildPhase.makeRelWithDebInfo @@ -0,0 +1,10 @@ +# Generated by CMake, DO NOT EDIT +# Custom rules for ZERO_CHECK +.SUFFIXES: +all: \ + /Users/birarda/code/worklist/interface/interface/CMakeFiles/ZERO_CHECK + + +/Users/birarda/code/worklist/interface/interface/CMakeFiles/ZERO_CHECK: + echo "" + make -f /Users/birarda/code/worklist/interface/interface/CMakeScripts/ReRunCMake.make diff --git a/interface/CMakeScripts/ZERO_CHECK_cmakeRulesBuildPhase.makeRelease b/interface/CMakeScripts/ZERO_CHECK_cmakeRulesBuildPhase.makeRelease new file mode 100644 index 0000000000..455c65a29b --- /dev/null +++ b/interface/CMakeScripts/ZERO_CHECK_cmakeRulesBuildPhase.makeRelease @@ -0,0 +1,10 @@ +# Generated by CMake, DO NOT EDIT +# Custom rules for ZERO_CHECK +.SUFFIXES: +all: \ + /Users/birarda/code/worklist/interface/interface/CMakeFiles/ZERO_CHECK + + +/Users/birarda/code/worklist/interface/interface/CMakeFiles/ZERO_CHECK: + echo "" + make -f /Users/birarda/code/worklist/interface/interface/CMakeScripts/ReRunCMake.make diff --git a/interface/cmake_install.cmake b/interface/cmake_install.cmake new file mode 100644 index 0000000000..d9d2aa5a35 --- /dev/null +++ b/interface/cmake_install.cmake @@ -0,0 +1,45 @@ +# Install script for directory: /Users/birarda/code/worklist/interface/interface + +# Set the install prefix +IF(NOT DEFINED CMAKE_INSTALL_PREFIX) + SET(CMAKE_INSTALL_PREFIX "/usr/local") +ENDIF(NOT DEFINED CMAKE_INSTALL_PREFIX) +STRING(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +IF(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + IF(BUILD_TYPE) + STRING(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + ELSE(BUILD_TYPE) + SET(CMAKE_INSTALL_CONFIG_NAME "Release") + ENDIF(BUILD_TYPE) + MESSAGE(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +ENDIF(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + +# Set the component getting installed. +IF(NOT CMAKE_INSTALL_COMPONENT) + IF(COMPONENT) + MESSAGE(STATUS "Install component: \"${COMPONENT}\"") + SET(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + ELSE(COMPONENT) + SET(CMAKE_INSTALL_COMPONENT) + ENDIF(COMPONENT) +ENDIF(NOT CMAKE_INSTALL_COMPONENT) + +IF(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for each subdirectory. + INCLUDE("/Users/birarda/code/worklist/interface/interface/src/cmake_install.cmake") + +ENDIF(NOT CMAKE_INSTALL_LOCAL_ONLY) + +IF(CMAKE_INSTALL_COMPONENT) + SET(CMAKE_INSTALL_MANIFEST "install_manifest_${CMAKE_INSTALL_COMPONENT}.txt") +ELSE(CMAKE_INSTALL_COMPONENT) + SET(CMAKE_INSTALL_MANIFEST "install_manifest.txt") +ENDIF(CMAKE_INSTALL_COMPONENT) + +FILE(WRITE "/Users/birarda/code/worklist/interface/interface/${CMAKE_INSTALL_MANIFEST}" "") +FOREACH(file ${CMAKE_INSTALL_MANIFEST_FILES}) + FILE(APPEND "/Users/birarda/code/worklist/interface/interface/${CMAKE_INSTALL_MANIFEST}" "${file}\n") +ENDFOREACH(file) diff --git a/interface/interface.xcodeproj/project.pbxproj b/interface/interface.xcodeproj/project.pbxproj new file mode 100644 index 0000000000..77c0e9cba8 --- /dev/null +++ b/interface/interface.xcodeproj/project.pbxproj @@ -0,0 +1,821 @@ +// !$*UTF8*$! +{ + archiveVersion = 1; + classes = { + }; + objectVersion = 46; + objects = { + +/* Begin PBXAggregateTarget section */ + 5C516F72EF6A455690636595 /* ALL_BUILD */ = { + isa = PBXAggregateTarget; + buildConfigurationList = D545B54495D546FD90F6CDCD /* Build configuration list for PBXAggregateTarget "ALL_BUILD" */; + buildPhases = ( + 49EBCEB0ADB84F06A4EB7FC5 /* CMake Rules */, + ); + dependencies = ( + 452EBD0B31064E55A3D676A3 /* PBXTargetDependency */, + 7BE6827E205B4C2295D98EDB /* PBXTargetDependency */, + ); + name = ALL_BUILD; + productName = ALL_BUILD; + }; + 7F3D93BE172949518ACB78A3 /* ZERO_CHECK */ = { + isa = PBXAggregateTarget; + buildConfigurationList = 633129251AA84B53B477E48F /* Build configuration list for PBXAggregateTarget "ZERO_CHECK" */; + buildPhases = ( + 49D8A8D4A6C4466A8F2E1AE9 /* CMake Rules */, + ); + dependencies = ( + ); + name = ZERO_CHECK; + productName = ZERO_CHECK; + }; +/* End PBXAggregateTarget section */ + +/* Begin PBXBuildFile section */ +98878D7EBA8547DAB012C1BE /* /Users/birarda/code/worklist/interface/interface/src/Agent.cpp */ = {isa = PBXBuildFile; fileRef = C186444D006648DCA70E9A25 /* /Users/birarda/code/worklist/interface/interface/src/Agent.cpp */; settings = { COMPILER_FLAGS = ""; }; }; +F1984CF56AA84A419906C5E5 /* /Users/birarda/code/worklist/interface/interface/src/Audio.cpp */ = {isa = PBXBuildFile; fileRef = 1B38A6722FDD4847B2754C6B /* /Users/birarda/code/worklist/interface/interface/src/Audio.cpp */; settings = { COMPILER_FLAGS = ""; }; }; +468C5EC5611844BCB7A44A6C /* /Users/birarda/code/worklist/interface/interface/src/AudioData.cpp */ = {isa = PBXBuildFile; fileRef = 86F9E92F13C143BCBCA76C44 /* /Users/birarda/code/worklist/interface/interface/src/AudioData.cpp */; settings = { COMPILER_FLAGS = ""; }; }; +B7A488896E6847B1BC107BFC /* /Users/birarda/code/worklist/interface/interface/src/AudioRingBuffer.cpp */ = {isa = PBXBuildFile; fileRef = DC2E9F75ED864CBBBE7504F4 /* /Users/birarda/code/worklist/interface/interface/src/AudioRingBuffer.cpp */; settings = { COMPILER_FLAGS = ""; }; }; +28996520A87E4DF39E0970A0 /* /Users/birarda/code/worklist/interface/interface/src/AudioSource.cpp */ = {isa = PBXBuildFile; fileRef = FBF3B100B7984B7680AFAA23 /* /Users/birarda/code/worklist/interface/interface/src/AudioSource.cpp */; settings = { COMPILER_FLAGS = ""; }; }; +4D5D086AE2E34F8AB8695C47 /* /Users/birarda/code/worklist/interface/interface/src/Cloud.cpp */ = {isa = PBXBuildFile; fileRef = 317028C953964C0BBFB2C34C /* /Users/birarda/code/worklist/interface/interface/src/Cloud.cpp */; settings = { COMPILER_FLAGS = ""; }; }; +EEBCF290A1CE42299A8CD80B /* /Users/birarda/code/worklist/interface/interface/src/Cube.cpp */ = {isa = PBXBuildFile; fileRef = F3D70FCACA56400DB5A79FA2 /* /Users/birarda/code/worklist/interface/interface/src/Cube.cpp */; settings = { COMPILER_FLAGS = ""; }; }; +85C447CDA7B540D4A3BE5AC6 /* /Users/birarda/code/worklist/interface/interface/src/Field.cpp */ = {isa = PBXBuildFile; fileRef = 009FA68B9FB04573A71FB878 /* /Users/birarda/code/worklist/interface/interface/src/Field.cpp */; settings = { COMPILER_FLAGS = ""; }; }; +5FAD9AEF271342D29F464045 /* /Users/birarda/code/worklist/interface/interface/src/Finger.cpp */ = {isa = PBXBuildFile; fileRef = 53538B4337104D5281169195 /* /Users/birarda/code/worklist/interface/interface/src/Finger.cpp */; settings = { COMPILER_FLAGS = ""; }; }; +602D223296AA49238CA1F19D /* /Users/birarda/code/worklist/interface/interface/src/Hand.cpp */ = {isa = PBXBuildFile; fileRef = 848E61CA207943EE827BB8E6 /* /Users/birarda/code/worklist/interface/interface/src/Hand.cpp */; settings = { COMPILER_FLAGS = ""; }; }; +3ED0802657BD455B8EE1FDFB /* /Users/birarda/code/worklist/interface/interface/src/Head.cpp */ = {isa = PBXBuildFile; fileRef = D3D9D041C2554616891881BB /* /Users/birarda/code/worklist/interface/interface/src/Head.cpp */; settings = { COMPILER_FLAGS = ""; }; }; +010DFD051EA6422A93DE2A0C /* /Users/birarda/code/worklist/interface/interface/src/Lattice.cpp */ = {isa = PBXBuildFile; fileRef = 394BBE08D83E4F6D931C3458 /* /Users/birarda/code/worklist/interface/interface/src/Lattice.cpp */; settings = { COMPILER_FLAGS = ""; }; }; +0317354F78174824A3C890E7 /* /Users/birarda/code/worklist/interface/interface/src/main.cpp */ = {isa = PBXBuildFile; fileRef = DE5A028CD3CB414E9A157D63 /* /Users/birarda/code/worklist/interface/interface/src/main.cpp */; settings = { COMPILER_FLAGS = ""; }; }; +B345AF8FCFD54684A1B62DBF /* /Users/birarda/code/worklist/interface/interface/src/Network.cpp */ = {isa = PBXBuildFile; fileRef = F506920E37D14F518999FF86 /* /Users/birarda/code/worklist/interface/interface/src/Network.cpp */; settings = { COMPILER_FLAGS = ""; }; }; +E161840F14984082B5B046C0 /* /Users/birarda/code/worklist/interface/interface/src/octal.cpp */ = {isa = PBXBuildFile; fileRef = 44107EE7074140399156ABE7 /* /Users/birarda/code/worklist/interface/interface/src/octal.cpp */; settings = { COMPILER_FLAGS = ""; }; }; +1D8F4C107A6848A9B0C28D17 /* /Users/birarda/code/worklist/interface/interface/src/Oscilloscope.cpp */ = {isa = PBXBuildFile; fileRef = AE18802DD8D1419187D327A8 /* /Users/birarda/code/worklist/interface/interface/src/Oscilloscope.cpp */; settings = { COMPILER_FLAGS = ""; }; }; +2EFB749862794A80B5CD2D69 /* /Users/birarda/code/worklist/interface/interface/src/Particle.cpp */ = {isa = PBXBuildFile; fileRef = F18E42130DC5447AABF888D6 /* /Users/birarda/code/worklist/interface/interface/src/Particle.cpp */; settings = { COMPILER_FLAGS = ""; }; }; +783CB61D8656422E85CDC158 /* /Users/birarda/code/worklist/interface/interface/src/SerialInterface.cpp */ = {isa = PBXBuildFile; fileRef = A82125C52C2E46FC9444D1E2 /* /Users/birarda/code/worklist/interface/interface/src/SerialInterface.cpp */; settings = { COMPILER_FLAGS = ""; }; }; +098847A9000743578DA3CB4C /* /Users/birarda/code/worklist/interface/interface/src/Texture.cpp */ = {isa = PBXBuildFile; fileRef = ADCD7EE9D6DC4C059E040041 /* /Users/birarda/code/worklist/interface/interface/src/Texture.cpp */; settings = { COMPILER_FLAGS = ""; }; }; +E425E3EA22CB4918A086057D /* /Users/birarda/code/worklist/interface/interface/src/UDPSocket.cpp */ = {isa = PBXBuildFile; fileRef = 4582CC802FEA4DE7B927E593 /* /Users/birarda/code/worklist/interface/interface/src/UDPSocket.cpp */; settings = { COMPILER_FLAGS = ""; }; }; +8DD5FFE764B044F0B6B27171 /* /Users/birarda/code/worklist/interface/interface/src/Util.cpp */ = {isa = PBXBuildFile; fileRef = F0746BFEF8384498B36763AF /* /Users/birarda/code/worklist/interface/interface/src/Util.cpp */; settings = { COMPILER_FLAGS = ""; }; }; +19A52A13517443B8A6A5DB34 /* /Users/birarda/code/worklist/interface/interface/src/Agent.h */ = {isa = PBXBuildFile; fileRef = C1E2156446944DB3B42E2071 /* /Users/birarda/code/worklist/interface/interface/src/Agent.h */; settings = { COMPILER_FLAGS = ""; }; }; +D4E47C3E794448F29234A4E8 /* /Users/birarda/code/worklist/interface/interface/src/Audio.h */ = {isa = PBXBuildFile; fileRef = 27969B3D10164FFD8149AB6E /* /Users/birarda/code/worklist/interface/interface/src/Audio.h */; settings = { COMPILER_FLAGS = ""; }; }; +BEA66F2FC7A64EA39025936F /* /Users/birarda/code/worklist/interface/interface/src/AudioData.h */ = {isa = PBXBuildFile; fileRef = 64F1CA594E724DB8938F3AC5 /* /Users/birarda/code/worklist/interface/interface/src/AudioData.h */; settings = { COMPILER_FLAGS = ""; }; }; +9D2A8B34CAC04AF5A348BF81 /* /Users/birarda/code/worklist/interface/interface/src/AudioRingBuffer.h */ = {isa = PBXBuildFile; fileRef = 3CCC693D012C473BBC54224D /* /Users/birarda/code/worklist/interface/interface/src/AudioRingBuffer.h */; settings = { COMPILER_FLAGS = ""; }; }; +62A4E9C35EDD4883802DB696 /* /Users/birarda/code/worklist/interface/interface/src/AudioSource.h */ = {isa = PBXBuildFile; fileRef = FBECFB6288004841B4BEDF9D /* /Users/birarda/code/worklist/interface/interface/src/AudioSource.h */; settings = { COMPILER_FLAGS = ""; }; }; +CF70F31422DE49358406B1E6 /* /Users/birarda/code/worklist/interface/interface/src/Cloud.h */ = {isa = PBXBuildFile; fileRef = 5260538CD9EB493987C0476A /* /Users/birarda/code/worklist/interface/interface/src/Cloud.h */; settings = { COMPILER_FLAGS = ""; }; }; +0365FE0A2B904C12904A7A2B /* /Users/birarda/code/worklist/interface/interface/src/Cube.h */ = {isa = PBXBuildFile; fileRef = BD3DD809BA7C4E75BEAD2479 /* /Users/birarda/code/worklist/interface/interface/src/Cube.h */; settings = { COMPILER_FLAGS = ""; }; }; +53A520B2C96A43E596C07DD2 /* /Users/birarda/code/worklist/interface/interface/src/Field.h */ = {isa = PBXBuildFile; fileRef = 0C5806C51DBE4A2183C09050 /* /Users/birarda/code/worklist/interface/interface/src/Field.h */; settings = { COMPILER_FLAGS = ""; }; }; +23944EF68F954B09B6A2B864 /* /Users/birarda/code/worklist/interface/interface/src/Finger.h */ = {isa = PBXBuildFile; fileRef = 5C3C6D86BE264004988A2CB2 /* /Users/birarda/code/worklist/interface/interface/src/Finger.h */; settings = { COMPILER_FLAGS = ""; }; }; +C41EA4EA9652454DBAEE68FE /* /Users/birarda/code/worklist/interface/interface/src/Hand.h */ = {isa = PBXBuildFile; fileRef = BC42A80B49FB4C3AA4FED8F4 /* /Users/birarda/code/worklist/interface/interface/src/Hand.h */; settings = { COMPILER_FLAGS = ""; }; }; +AFA5E10AA5E34A4BAC1031B1 /* /Users/birarda/code/worklist/interface/interface/src/Head.h */ = {isa = PBXBuildFile; fileRef = 2B36F627C2A54C9CB733AC88 /* /Users/birarda/code/worklist/interface/interface/src/Head.h */; settings = { COMPILER_FLAGS = ""; }; }; +061E0886116C4BF9AF7AFABA /* /Users/birarda/code/worklist/interface/interface/src/Lattice.h */ = {isa = PBXBuildFile; fileRef = A492B064CE0F461D875AAD01 /* /Users/birarda/code/worklist/interface/interface/src/Lattice.h */; settings = { COMPILER_FLAGS = ""; }; }; +468BFF47A7ED4E779B07A03F /* /Users/birarda/code/worklist/interface/interface/src/Network.h */ = {isa = PBXBuildFile; fileRef = CFC6B565E3094C699C3E0F8C /* /Users/birarda/code/worklist/interface/interface/src/Network.h */; settings = { COMPILER_FLAGS = ""; }; }; +1D6A6D3107274529B0A7B858 /* /Users/birarda/code/worklist/interface/interface/src/octal.h */ = {isa = PBXBuildFile; fileRef = 9E7DC6DA4E3440BF8E5F6A63 /* /Users/birarda/code/worklist/interface/interface/src/octal.h */; settings = { COMPILER_FLAGS = ""; }; }; +91F63D8AB4DF470FB20F7CA1 /* /Users/birarda/code/worklist/interface/interface/src/Oscilloscope.h */ = {isa = PBXBuildFile; fileRef = 2951F72C2B88481496007CFB /* /Users/birarda/code/worklist/interface/interface/src/Oscilloscope.h */; settings = { COMPILER_FLAGS = ""; }; }; +797C5C8DAD264D4598A7F8EE /* /Users/birarda/code/worklist/interface/interface/src/Particle.h */ = {isa = PBXBuildFile; fileRef = 5515BE3A16D842A2B03A0CB8 /* /Users/birarda/code/worklist/interface/interface/src/Particle.h */; settings = { COMPILER_FLAGS = ""; }; }; +A944D966E786408E9F34D924 /* /Users/birarda/code/worklist/interface/interface/src/SerialInterface.h */ = {isa = PBXBuildFile; fileRef = 38906C190D174958B40F6FE5 /* /Users/birarda/code/worklist/interface/interface/src/SerialInterface.h */; settings = { COMPILER_FLAGS = ""; }; }; +70A170B8613249F2B6F2EC48 /* /Users/birarda/code/worklist/interface/interface/src/Texture.h */ = {isa = PBXBuildFile; fileRef = 63241AB42BD14FDCBEE6838A /* /Users/birarda/code/worklist/interface/interface/src/Texture.h */; settings = { COMPILER_FLAGS = ""; }; }; +724BC7FEB0F0455EB02A84B2 /* /Users/birarda/code/worklist/interface/interface/src/UDPSocket.h */ = {isa = PBXBuildFile; fileRef = 7FE115618B374E5C9DD15524 /* /Users/birarda/code/worklist/interface/interface/src/UDPSocket.h */; settings = { COMPILER_FLAGS = ""; }; }; +C8E0BD9676AF4AA982C21CE7 /* /Users/birarda/code/worklist/interface/interface/src/Util.h */ = {isa = PBXBuildFile; fileRef = A632B571B8E34C5694CD6075 /* /Users/birarda/code/worklist/interface/interface/src/Util.h */; settings = { COMPILER_FLAGS = ""; }; }; +ADA2201158AB474A871DC474 /* /Users/birarda/code/worklist/interface/interface/src/world.h */ = {isa = PBXBuildFile; fileRef = FA62182863EC475A9F0AC006 /* /Users/birarda/code/worklist/interface/interface/src/world.h */; settings = { COMPILER_FLAGS = ""; }; }; +B3B6A260466649BFBA4E5525 /* /Users/birarda/code/worklist/interface/interface/src/CMakeLists.txt */ = {isa = PBXBuildFile; fileRef = B02C8041160442A9A3BFE63D /* /Users/birarda/code/worklist/interface/interface/src/CMakeLists.txt */; settings = { COMPILER_FLAGS = ""; }; }; +/* End PBXBuildFile section */ + +/* Begin PBXBuildStyle section */ + 61D53ADED6FF49069FDD49A9 /* */ = { + isa = PBXBuildStyle; + }; + 836B275F1BB54E7894CB0417 /* Debug */ = { + isa = PBXBuildStyle; + buildSettings = { + COPY_PHASE_STRIP = NO; + }; + name = Debug; + }; + 6852A7EC83FD45BBAF19EF8B /* Release */ = { + isa = PBXBuildStyle; + buildSettings = { + COPY_PHASE_STRIP = NO; + }; + name = Release; + }; + F864489D8A7644A0875E40C8 /* MinSizeRel */ = { + isa = PBXBuildStyle; + buildSettings = { + COPY_PHASE_STRIP = NO; + }; + name = MinSizeRel; + }; + E2BB05A935164B7D9526FFB0 /* RelWithDebInfo */ = { + isa = PBXBuildStyle; + buildSettings = { + COPY_PHASE_STRIP = NO; + }; + name = RelWithDebInfo; + }; +/* End PBXBuildStyle section */ + +/* Begin PBXContainerItemProxy section */ + 910393A4D7394A7C91FE72E4 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = A563974108A04D62A97FF381 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 4FFEF9D3CD1D489C8A7BD1AC; + remoteInfo = interface; + }; + 5C43169986374558A98045B4 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = A563974108A04D62A97FF381 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 7F3D93BE172949518ACB78A3; + remoteInfo = ZERO_CHECK; + }; +/* End PBXContainerItemProxy section */ + +/* Begin PBXFileReference section */ +9C2009C9FD894C47A25D8C30 /* /Users/birarda/code/worklist/interface/interface/CMakeLists.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = "sourcecode.text"; name = "CMakeLists.txt"; path = "CMakeLists.txt"; sourceTree = SOURCE_ROOT; }; +C186444D006648DCA70E9A25 /* /Users/birarda/code/worklist/interface/interface/src/Agent.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = "sourcecode.cpp.cpp"; name = "Agent.cpp"; path = "src/Agent.cpp"; sourceTree = SOURCE_ROOT; }; +1B38A6722FDD4847B2754C6B /* /Users/birarda/code/worklist/interface/interface/src/Audio.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = "sourcecode.cpp.cpp"; name = "Audio.cpp"; path = "src/Audio.cpp"; sourceTree = SOURCE_ROOT; }; +86F9E92F13C143BCBCA76C44 /* /Users/birarda/code/worklist/interface/interface/src/AudioData.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = "sourcecode.cpp.cpp"; name = "AudioData.cpp"; path = "src/AudioData.cpp"; sourceTree = SOURCE_ROOT; }; +DC2E9F75ED864CBBBE7504F4 /* /Users/birarda/code/worklist/interface/interface/src/AudioRingBuffer.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = "sourcecode.cpp.cpp"; name = "AudioRingBuffer.cpp"; path = "src/AudioRingBuffer.cpp"; sourceTree = SOURCE_ROOT; }; +FBF3B100B7984B7680AFAA23 /* /Users/birarda/code/worklist/interface/interface/src/AudioSource.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = "sourcecode.cpp.cpp"; name = "AudioSource.cpp"; path = "src/AudioSource.cpp"; sourceTree = SOURCE_ROOT; }; +317028C953964C0BBFB2C34C /* /Users/birarda/code/worklist/interface/interface/src/Cloud.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = "sourcecode.cpp.cpp"; name = "Cloud.cpp"; path = "src/Cloud.cpp"; sourceTree = SOURCE_ROOT; }; +F3D70FCACA56400DB5A79FA2 /* /Users/birarda/code/worklist/interface/interface/src/Cube.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = "sourcecode.cpp.cpp"; name = "Cube.cpp"; path = "src/Cube.cpp"; sourceTree = SOURCE_ROOT; }; +009FA68B9FB04573A71FB878 /* /Users/birarda/code/worklist/interface/interface/src/Field.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = "sourcecode.cpp.cpp"; name = "Field.cpp"; path = "src/Field.cpp"; sourceTree = SOURCE_ROOT; }; +53538B4337104D5281169195 /* /Users/birarda/code/worklist/interface/interface/src/Finger.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = "sourcecode.cpp.cpp"; name = "Finger.cpp"; path = "src/Finger.cpp"; sourceTree = SOURCE_ROOT; }; +848E61CA207943EE827BB8E6 /* /Users/birarda/code/worklist/interface/interface/src/Hand.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = "sourcecode.cpp.cpp"; name = "Hand.cpp"; path = "src/Hand.cpp"; sourceTree = SOURCE_ROOT; }; +D3D9D041C2554616891881BB /* /Users/birarda/code/worklist/interface/interface/src/Head.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = "sourcecode.cpp.cpp"; name = "Head.cpp"; path = "src/Head.cpp"; sourceTree = SOURCE_ROOT; }; +394BBE08D83E4F6D931C3458 /* /Users/birarda/code/worklist/interface/interface/src/Lattice.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = "sourcecode.cpp.cpp"; name = "Lattice.cpp"; path = "src/Lattice.cpp"; sourceTree = SOURCE_ROOT; }; +DE5A028CD3CB414E9A157D63 /* /Users/birarda/code/worklist/interface/interface/src/main.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = "sourcecode.cpp.cpp"; name = "main.cpp"; path = "src/main.cpp"; sourceTree = SOURCE_ROOT; }; +F506920E37D14F518999FF86 /* /Users/birarda/code/worklist/interface/interface/src/Network.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = "sourcecode.cpp.cpp"; name = "Network.cpp"; path = "src/Network.cpp"; sourceTree = SOURCE_ROOT; }; +44107EE7074140399156ABE7 /* /Users/birarda/code/worklist/interface/interface/src/octal.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = "sourcecode.cpp.cpp"; name = "octal.cpp"; path = "src/octal.cpp"; sourceTree = SOURCE_ROOT; }; +AE18802DD8D1419187D327A8 /* /Users/birarda/code/worklist/interface/interface/src/Oscilloscope.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = "sourcecode.cpp.cpp"; name = "Oscilloscope.cpp"; path = "src/Oscilloscope.cpp"; sourceTree = SOURCE_ROOT; }; +F18E42130DC5447AABF888D6 /* /Users/birarda/code/worklist/interface/interface/src/Particle.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = "sourcecode.cpp.cpp"; name = "Particle.cpp"; path = "src/Particle.cpp"; sourceTree = SOURCE_ROOT; }; +A82125C52C2E46FC9444D1E2 /* /Users/birarda/code/worklist/interface/interface/src/SerialInterface.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = "sourcecode.cpp.cpp"; name = "SerialInterface.cpp"; path = "src/SerialInterface.cpp"; sourceTree = SOURCE_ROOT; }; +ADCD7EE9D6DC4C059E040041 /* /Users/birarda/code/worklist/interface/interface/src/Texture.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = "sourcecode.cpp.cpp"; name = "Texture.cpp"; path = "src/Texture.cpp"; sourceTree = SOURCE_ROOT; }; +4582CC802FEA4DE7B927E593 /* /Users/birarda/code/worklist/interface/interface/src/UDPSocket.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = "sourcecode.cpp.cpp"; name = "UDPSocket.cpp"; path = "src/UDPSocket.cpp"; sourceTree = SOURCE_ROOT; }; +F0746BFEF8384498B36763AF /* /Users/birarda/code/worklist/interface/interface/src/Util.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = "sourcecode.cpp.cpp"; name = "Util.cpp"; path = "src/Util.cpp"; sourceTree = SOURCE_ROOT; }; +C1E2156446944DB3B42E2071 /* /Users/birarda/code/worklist/interface/interface/src/Agent.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = "sourcecode.c.h"; name = "Agent.h"; path = "src/Agent.h"; sourceTree = SOURCE_ROOT; }; +27969B3D10164FFD8149AB6E /* /Users/birarda/code/worklist/interface/interface/src/Audio.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = "sourcecode.c.h"; name = "Audio.h"; path = "src/Audio.h"; sourceTree = SOURCE_ROOT; }; +64F1CA594E724DB8938F3AC5 /* /Users/birarda/code/worklist/interface/interface/src/AudioData.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = "sourcecode.c.h"; name = "AudioData.h"; path = "src/AudioData.h"; sourceTree = SOURCE_ROOT; }; +3CCC693D012C473BBC54224D /* /Users/birarda/code/worklist/interface/interface/src/AudioRingBuffer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = "sourcecode.c.h"; name = "AudioRingBuffer.h"; path = "src/AudioRingBuffer.h"; sourceTree = SOURCE_ROOT; }; +FBECFB6288004841B4BEDF9D /* /Users/birarda/code/worklist/interface/interface/src/AudioSource.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = "sourcecode.c.h"; name = "AudioSource.h"; path = "src/AudioSource.h"; sourceTree = SOURCE_ROOT; }; +5260538CD9EB493987C0476A /* /Users/birarda/code/worklist/interface/interface/src/Cloud.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = "sourcecode.c.h"; name = "Cloud.h"; path = "src/Cloud.h"; sourceTree = SOURCE_ROOT; }; +BD3DD809BA7C4E75BEAD2479 /* /Users/birarda/code/worklist/interface/interface/src/Cube.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = "sourcecode.c.h"; name = "Cube.h"; path = "src/Cube.h"; sourceTree = SOURCE_ROOT; }; +0C5806C51DBE4A2183C09050 /* /Users/birarda/code/worklist/interface/interface/src/Field.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = "sourcecode.c.h"; name = "Field.h"; path = "src/Field.h"; sourceTree = SOURCE_ROOT; }; +5C3C6D86BE264004988A2CB2 /* /Users/birarda/code/worklist/interface/interface/src/Finger.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = "sourcecode.c.h"; name = "Finger.h"; path = "src/Finger.h"; sourceTree = SOURCE_ROOT; }; +BC42A80B49FB4C3AA4FED8F4 /* /Users/birarda/code/worklist/interface/interface/src/Hand.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = "sourcecode.c.h"; name = "Hand.h"; path = "src/Hand.h"; sourceTree = SOURCE_ROOT; }; +2B36F627C2A54C9CB733AC88 /* /Users/birarda/code/worklist/interface/interface/src/Head.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = "sourcecode.c.h"; name = "Head.h"; path = "src/Head.h"; sourceTree = SOURCE_ROOT; }; +A492B064CE0F461D875AAD01 /* /Users/birarda/code/worklist/interface/interface/src/Lattice.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = "sourcecode.c.h"; name = "Lattice.h"; path = "src/Lattice.h"; sourceTree = SOURCE_ROOT; }; +CFC6B565E3094C699C3E0F8C /* /Users/birarda/code/worklist/interface/interface/src/Network.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = "sourcecode.c.h"; name = "Network.h"; path = "src/Network.h"; sourceTree = SOURCE_ROOT; }; +9E7DC6DA4E3440BF8E5F6A63 /* /Users/birarda/code/worklist/interface/interface/src/octal.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = "sourcecode.c.h"; name = "octal.h"; path = "src/octal.h"; sourceTree = SOURCE_ROOT; }; +2951F72C2B88481496007CFB /* /Users/birarda/code/worklist/interface/interface/src/Oscilloscope.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = "sourcecode.c.h"; name = "Oscilloscope.h"; path = "src/Oscilloscope.h"; sourceTree = SOURCE_ROOT; }; +5515BE3A16D842A2B03A0CB8 /* /Users/birarda/code/worklist/interface/interface/src/Particle.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = "sourcecode.c.h"; name = "Particle.h"; path = "src/Particle.h"; sourceTree = SOURCE_ROOT; }; +38906C190D174958B40F6FE5 /* /Users/birarda/code/worklist/interface/interface/src/SerialInterface.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = "sourcecode.c.h"; name = "SerialInterface.h"; path = "src/SerialInterface.h"; sourceTree = SOURCE_ROOT; }; +63241AB42BD14FDCBEE6838A /* /Users/birarda/code/worklist/interface/interface/src/Texture.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = "sourcecode.c.h"; name = "Texture.h"; path = "src/Texture.h"; sourceTree = SOURCE_ROOT; }; +7FE115618B374E5C9DD15524 /* /Users/birarda/code/worklist/interface/interface/src/UDPSocket.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = "sourcecode.c.h"; name = "UDPSocket.h"; path = "src/UDPSocket.h"; sourceTree = SOURCE_ROOT; }; +A632B571B8E34C5694CD6075 /* /Users/birarda/code/worklist/interface/interface/src/Util.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = "sourcecode.c.h"; name = "Util.h"; path = "src/Util.h"; sourceTree = SOURCE_ROOT; }; +FA62182863EC475A9F0AC006 /* /Users/birarda/code/worklist/interface/interface/src/world.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = "sourcecode.c.h"; name = "world.h"; path = "src/world.h"; sourceTree = SOURCE_ROOT; }; +B02C8041160442A9A3BFE63D /* /Users/birarda/code/worklist/interface/interface/src/CMakeLists.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = "sourcecode.text"; name = "CMakeLists.txt"; path = "src/CMakeLists.txt"; sourceTree = SOURCE_ROOT; }; +E0790DACE7CB43E6890D4BEC /* interface */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; path = interface; refType = 0; sourceTree = BUILT_PRODUCTS_DIR; }; +/* End PBXFileReference section */ + +/* Begin PBXGroup section */ + 25D80430F28C481C9A49433B = { + isa = PBXGroup; + children = ( + 682B6B177CC24AC8A25B9A5A /* Sources */, + 6D6ECB79728B47428AD92760 /* Resources */, + ECB823F0564C41B7B0A9D7AE /* Products */, + ); + sourceTree = ""; + }; + 682B6B177CC24AC8A25B9A5A /* Sources */ = { + isa = PBXGroup; + children = ( + 7973360B89644846A52F8CF2 /* ALL_BUILD */, + 0F1620F6D9514799B33F7AB5 /* ZERO_CHECK */, + 59281A4F721E4509BD87C941 /* interface */, + ); + name = Sources; + sourceTree = ""; + }; + 6D6ECB79728B47428AD92760 /* Resources */ = { + isa = PBXGroup; + children = ( + ); + name = Resources; + sourceTree = ""; + }; + 7973360B89644846A52F8CF2 /* ALL_BUILD */ = { + isa = PBXGroup; + children = ( + 3481E6C0C89B4DC394180358 /* CMake Rules */, + 9C2009C9FD894C47A25D8C30 /* /Users/birarda/code/worklist/interface/interface/CMakeLists.txt */, + ); + name = ALL_BUILD; + sourceTree = ""; + }; + 3481E6C0C89B4DC394180358 /* CMake Rules */ = { + isa = PBXGroup; + children = ( + ); + name = "CMake Rules"; + sourceTree = ""; + }; + 0F1620F6D9514799B33F7AB5 /* ZERO_CHECK */ = { + isa = PBXGroup; + children = ( + 190BEABE5D06420B9F6E96B1 /* CMake Rules */, + 9C2009C9FD894C47A25D8C30 /* /Users/birarda/code/worklist/interface/interface/CMakeLists.txt */, + ); + name = ZERO_CHECK; + sourceTree = ""; + }; + 190BEABE5D06420B9F6E96B1 /* CMake Rules */ = { + isa = PBXGroup; + children = ( + ); + name = "CMake Rules"; + sourceTree = ""; + }; + 59281A4F721E4509BD87C941 /* interface */ = { + isa = PBXGroup; + children = ( + F05098812ADE4F96A6408A0E /* Source Files */, + CCACF50D0AC7485D87C94529 /* Header Files */, + B02C8041160442A9A3BFE63D /* /Users/birarda/code/worklist/interface/interface/src/CMakeLists.txt */, + ); + name = interface; + sourceTree = ""; + }; + F05098812ADE4F96A6408A0E /* Source Files */ = { + isa = PBXGroup; + children = ( + C186444D006648DCA70E9A25 /* /Users/birarda/code/worklist/interface/interface/src/Agent.cpp */, + 1B38A6722FDD4847B2754C6B /* /Users/birarda/code/worklist/interface/interface/src/Audio.cpp */, + 86F9E92F13C143BCBCA76C44 /* /Users/birarda/code/worklist/interface/interface/src/AudioData.cpp */, + DC2E9F75ED864CBBBE7504F4 /* /Users/birarda/code/worklist/interface/interface/src/AudioRingBuffer.cpp */, + FBF3B100B7984B7680AFAA23 /* /Users/birarda/code/worklist/interface/interface/src/AudioSource.cpp */, + 317028C953964C0BBFB2C34C /* /Users/birarda/code/worklist/interface/interface/src/Cloud.cpp */, + F3D70FCACA56400DB5A79FA2 /* /Users/birarda/code/worklist/interface/interface/src/Cube.cpp */, + 009FA68B9FB04573A71FB878 /* /Users/birarda/code/worklist/interface/interface/src/Field.cpp */, + 53538B4337104D5281169195 /* /Users/birarda/code/worklist/interface/interface/src/Finger.cpp */, + 848E61CA207943EE827BB8E6 /* /Users/birarda/code/worklist/interface/interface/src/Hand.cpp */, + D3D9D041C2554616891881BB /* /Users/birarda/code/worklist/interface/interface/src/Head.cpp */, + 394BBE08D83E4F6D931C3458 /* /Users/birarda/code/worklist/interface/interface/src/Lattice.cpp */, + DE5A028CD3CB414E9A157D63 /* /Users/birarda/code/worklist/interface/interface/src/main.cpp */, + F506920E37D14F518999FF86 /* /Users/birarda/code/worklist/interface/interface/src/Network.cpp */, + 44107EE7074140399156ABE7 /* /Users/birarda/code/worklist/interface/interface/src/octal.cpp */, + AE18802DD8D1419187D327A8 /* /Users/birarda/code/worklist/interface/interface/src/Oscilloscope.cpp */, + F18E42130DC5447AABF888D6 /* /Users/birarda/code/worklist/interface/interface/src/Particle.cpp */, + A82125C52C2E46FC9444D1E2 /* /Users/birarda/code/worklist/interface/interface/src/SerialInterface.cpp */, + ADCD7EE9D6DC4C059E040041 /* /Users/birarda/code/worklist/interface/interface/src/Texture.cpp */, + 4582CC802FEA4DE7B927E593 /* /Users/birarda/code/worklist/interface/interface/src/UDPSocket.cpp */, + F0746BFEF8384498B36763AF /* /Users/birarda/code/worklist/interface/interface/src/Util.cpp */, + ); + name = "Source Files"; + sourceTree = ""; + }; + CCACF50D0AC7485D87C94529 /* Header Files */ = { + isa = PBXGroup; + children = ( + C1E2156446944DB3B42E2071 /* /Users/birarda/code/worklist/interface/interface/src/Agent.h */, + 27969B3D10164FFD8149AB6E /* /Users/birarda/code/worklist/interface/interface/src/Audio.h */, + 64F1CA594E724DB8938F3AC5 /* /Users/birarda/code/worklist/interface/interface/src/AudioData.h */, + 3CCC693D012C473BBC54224D /* /Users/birarda/code/worklist/interface/interface/src/AudioRingBuffer.h */, + FBECFB6288004841B4BEDF9D /* /Users/birarda/code/worklist/interface/interface/src/AudioSource.h */, + 5260538CD9EB493987C0476A /* /Users/birarda/code/worklist/interface/interface/src/Cloud.h */, + BD3DD809BA7C4E75BEAD2479 /* /Users/birarda/code/worklist/interface/interface/src/Cube.h */, + 0C5806C51DBE4A2183C09050 /* /Users/birarda/code/worklist/interface/interface/src/Field.h */, + 5C3C6D86BE264004988A2CB2 /* /Users/birarda/code/worklist/interface/interface/src/Finger.h */, + BC42A80B49FB4C3AA4FED8F4 /* /Users/birarda/code/worklist/interface/interface/src/Hand.h */, + 2B36F627C2A54C9CB733AC88 /* /Users/birarda/code/worklist/interface/interface/src/Head.h */, + A492B064CE0F461D875AAD01 /* /Users/birarda/code/worklist/interface/interface/src/Lattice.h */, + CFC6B565E3094C699C3E0F8C /* /Users/birarda/code/worklist/interface/interface/src/Network.h */, + 9E7DC6DA4E3440BF8E5F6A63 /* /Users/birarda/code/worklist/interface/interface/src/octal.h */, + 2951F72C2B88481496007CFB /* /Users/birarda/code/worklist/interface/interface/src/Oscilloscope.h */, + 5515BE3A16D842A2B03A0CB8 /* /Users/birarda/code/worklist/interface/interface/src/Particle.h */, + 38906C190D174958B40F6FE5 /* /Users/birarda/code/worklist/interface/interface/src/SerialInterface.h */, + 63241AB42BD14FDCBEE6838A /* /Users/birarda/code/worklist/interface/interface/src/Texture.h */, + 7FE115618B374E5C9DD15524 /* /Users/birarda/code/worklist/interface/interface/src/UDPSocket.h */, + A632B571B8E34C5694CD6075 /* /Users/birarda/code/worklist/interface/interface/src/Util.h */, + FA62182863EC475A9F0AC006 /* /Users/birarda/code/worklist/interface/interface/src/world.h */, + ); + name = "Header Files"; + sourceTree = ""; + }; + ECB823F0564C41B7B0A9D7AE /* Products */ = { + isa = PBXGroup; + children = ( + E0790DACE7CB43E6890D4BEC /* interface */, + ); + name = Products; + sourceTree = ""; + }; +/* End PBXGroup section */ + +/* Begin PBXNativeTarget section */ + 4FFEF9D3CD1D489C8A7BD1AC /* interface */ = { + isa = PBXNativeTarget; + buildConfigurationList = 52022E558DDB4B0E9A0D0ABC /* Build configuration list for PBXNativeTarget "interface" */; + buildPhases = ( + 7175D8A7032B45E4A9EF770B /* Sources */, + A49A24C63A614F139A8B3634 /* CMake PostBuild Rules */, + ); + buildRules = ( + ); + dependencies = ( + 7BE6827E205B4C2295D98EDB /* PBXTargetDependency */, + ); + name = interface; + productName = interface; + productReference = E0790DACE7CB43E6890D4BEC /* interface */; + productType = "com.apple.product-type.tool"; + }; +/* End PBXNativeTarget section */ + +/* Begin PBXProject section */ + A563974108A04D62A97FF381 /* Project object */ = { + isa = PBXProject; + attributes = { + BuildIndependentTargetsInParallel = YES; + }; + buildConfigurationList = 921AA6884B1342C191752832 /* Build configuration list for PBXProject "interface" */; + buildSettings = { + }; + buildStyles = ( + 836B275F1BB54E7894CB0417 /* Debug */, + 6852A7EC83FD45BBAF19EF8B /* Release */, + F864489D8A7644A0875E40C8 /* MinSizeRel */, + E2BB05A935164B7D9526FFB0 /* RelWithDebInfo */, + ); + compatibilityVersion = "Xcode 3.2"; + hasScannedForEncodings = 0; + mainGroup = 25D80430F28C481C9A49433B; + projectDirPath = "."; + projectRoot = ""; + targets = ( + 5C516F72EF6A455690636595 /* ALL_BUILD */, + 7F3D93BE172949518ACB78A3 /* ZERO_CHECK */, + 4FFEF9D3CD1D489C8A7BD1AC /* interface */, + ); + }; +/* End PBXProject section */ + +/* Begin PBXShellScriptBuildPhase section */ + 42746840BB944ABBA5EEB5FC /* */ = { + isa = PBXShellScriptBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + inputPaths = ( + ); + outputPaths = ( + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "# shell script goes here +exit 0"; + showEnvVarsInLog = 0; + }; + 49EBCEB0ADB84F06A4EB7FC5 /* CMake Rules */ = { + isa = PBXShellScriptBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + name = "CMake Rules"; + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "make -C /Users/birarda/code/worklist/interface/interface -f /Users/birarda/code/worklist/interface/interface/CMakeScripts/ALL_BUILD_cmakeRulesBuildPhase.make$CONFIGURATION all"; + showEnvVarsInLog = 0; + }; + BEFF0E86B5A1472AB53BB039 /* */ = { + isa = PBXShellScriptBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + inputPaths = ( + ); + outputPaths = ( + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "# shell script goes here +exit 0"; + showEnvVarsInLog = 0; + }; + 49D8A8D4A6C4466A8F2E1AE9 /* CMake Rules */ = { + isa = PBXShellScriptBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + name = "CMake Rules"; + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "make -C /Users/birarda/code/worklist/interface/interface -f /Users/birarda/code/worklist/interface/interface/CMakeScripts/ZERO_CHECK_cmakeRulesBuildPhase.make$CONFIGURATION all"; + showEnvVarsInLog = 0; + }; + A49A24C63A614F139A8B3634 /* CMake PostBuild Rules */ = { + isa = PBXShellScriptBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + name = "CMake PostBuild Rules"; + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "make -C /Users/birarda/code/worklist/interface/interface/src -f /Users/birarda/code/worklist/interface/interface/src/CMakeScripts/interface_postBuildPhase.make$CONFIGURATION all"; + showEnvVarsInLog = 0; + }; +/* End PBXShellScriptBuildPhase section */ + +/* Begin PBXSourcesBuildPhase section */ + 7175D8A7032B45E4A9EF770B /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 98878D7EBA8547DAB012C1BE /* /Users/birarda/code/worklist/interface/interface/src/Agent.cpp */, + F1984CF56AA84A419906C5E5 /* /Users/birarda/code/worklist/interface/interface/src/Audio.cpp */, + 468C5EC5611844BCB7A44A6C /* /Users/birarda/code/worklist/interface/interface/src/AudioData.cpp */, + B7A488896E6847B1BC107BFC /* /Users/birarda/code/worklist/interface/interface/src/AudioRingBuffer.cpp */, + 28996520A87E4DF39E0970A0 /* /Users/birarda/code/worklist/interface/interface/src/AudioSource.cpp */, + 4D5D086AE2E34F8AB8695C47 /* /Users/birarda/code/worklist/interface/interface/src/Cloud.cpp */, + EEBCF290A1CE42299A8CD80B /* /Users/birarda/code/worklist/interface/interface/src/Cube.cpp */, + 85C447CDA7B540D4A3BE5AC6 /* /Users/birarda/code/worklist/interface/interface/src/Field.cpp */, + 5FAD9AEF271342D29F464045 /* /Users/birarda/code/worklist/interface/interface/src/Finger.cpp */, + 602D223296AA49238CA1F19D /* /Users/birarda/code/worklist/interface/interface/src/Hand.cpp */, + 3ED0802657BD455B8EE1FDFB /* /Users/birarda/code/worklist/interface/interface/src/Head.cpp */, + 010DFD051EA6422A93DE2A0C /* /Users/birarda/code/worklist/interface/interface/src/Lattice.cpp */, + 0317354F78174824A3C890E7 /* /Users/birarda/code/worklist/interface/interface/src/main.cpp */, + B345AF8FCFD54684A1B62DBF /* /Users/birarda/code/worklist/interface/interface/src/Network.cpp */, + E161840F14984082B5B046C0 /* /Users/birarda/code/worklist/interface/interface/src/octal.cpp */, + 1D8F4C107A6848A9B0C28D17 /* /Users/birarda/code/worklist/interface/interface/src/Oscilloscope.cpp */, + 2EFB749862794A80B5CD2D69 /* /Users/birarda/code/worklist/interface/interface/src/Particle.cpp */, + 783CB61D8656422E85CDC158 /* /Users/birarda/code/worklist/interface/interface/src/SerialInterface.cpp */, + 098847A9000743578DA3CB4C /* /Users/birarda/code/worklist/interface/interface/src/Texture.cpp */, + E425E3EA22CB4918A086057D /* /Users/birarda/code/worklist/interface/interface/src/UDPSocket.cpp */, + 8DD5FFE764B044F0B6B27171 /* /Users/birarda/code/worklist/interface/interface/src/Util.cpp */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXSourcesBuildPhase section */ + +/* Begin PBXTargetDependency section */ + 452EBD0B31064E55A3D676A3 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = 4FFEF9D3CD1D489C8A7BD1AC /* interface */; + targetProxy = 910393A4D7394A7C91FE72E4 /* PBXContainerItemProxy */; + }; + 7BE6827E205B4C2295D98EDB /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = 7F3D93BE172949518ACB78A3 /* ZERO_CHECK */; + targetProxy = 5C43169986374558A98045B4 /* PBXContainerItemProxy */; + }; +/* End PBXTargetDependency section */ + +/* Begin XCBuildConfiguration section */ + B1E4602A553049FB97E0DE09 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ARCHS = "$(ARCHS_STANDARD_32_64_BIT)"; + ONLY_ACTIVE_ARCH = YES; + SDKROOT = "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.8.sdk"; + SYMROOT = /Users/birarda/code/worklist/interface/interface/build; + }; + name = Debug; + }; + 8487A5A67C4041FD8C8E75A8 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ARCHS = "$(ARCHS_STANDARD_32_64_BIT)"; + ONLY_ACTIVE_ARCH = YES; + SDKROOT = "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.8.sdk"; + SYMROOT = /Users/birarda/code/worklist/interface/interface/build; + }; + name = Release; + }; + D3D2146093774A329B8766C0 /* MinSizeRel */ = { + isa = XCBuildConfiguration; + buildSettings = { + ARCHS = "$(ARCHS_STANDARD_32_64_BIT)"; + ONLY_ACTIVE_ARCH = YES; + SDKROOT = "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.8.sdk"; + SYMROOT = /Users/birarda/code/worklist/interface/interface/build; + }; + name = MinSizeRel; + }; + 229AC603ADE842278FD0AA78 /* RelWithDebInfo */ = { + isa = XCBuildConfiguration; + buildSettings = { + ARCHS = "$(ARCHS_STANDARD_32_64_BIT)"; + ONLY_ACTIVE_ARCH = YES; + SDKROOT = "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.8.sdk"; + SYMROOT = /Users/birarda/code/worklist/interface/interface/build; + }; + name = RelWithDebInfo; + }; + F9FDEA40CFA14DF996832F89 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_GENERATE_DEBUGGING_SYMBOLS = NO; + GCC_INLINES_ARE_PRIVATE_EXTERN = NO; + GCC_OPTIMIZATION_LEVEL = 0; + GCC_PREPROCESSOR_DEFINITIONS = ("'CMAKE_INTDIR=\"$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)\"'", ); + GCC_SYMBOLS_PRIVATE_EXTERN = NO; + INSTALL_PATH = ""; + OTHER_CFLAGS = " "; + OTHER_LDFLAGS = ""; + OTHER_REZFLAGS = ""; + PRODUCT_NAME = ALL_BUILD; + SECTORDER_FLAGS = ""; + SYMROOT = /Users/birarda/code/worklist/interface/interface; + USE_HEADERMAP = NO; + WARNING_CFLAGS = ("-Wmost", "-Wno-four-char-constants", "-Wno-unknown-pragmas", ); + }; + name = Debug; + }; + 7D4DE0802FE740E2AAC1520F /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_GENERATE_DEBUGGING_SYMBOLS = NO; + GCC_INLINES_ARE_PRIVATE_EXTERN = NO; + GCC_OPTIMIZATION_LEVEL = 0; + GCC_PREPROCESSOR_DEFINITIONS = ("'CMAKE_INTDIR=\"$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)\"'", ); + GCC_SYMBOLS_PRIVATE_EXTERN = NO; + INSTALL_PATH = ""; + OTHER_CFLAGS = " "; + OTHER_LDFLAGS = ""; + OTHER_REZFLAGS = ""; + PRODUCT_NAME = ALL_BUILD; + SECTORDER_FLAGS = ""; + SYMROOT = /Users/birarda/code/worklist/interface/interface; + USE_HEADERMAP = NO; + WARNING_CFLAGS = ("-Wmost", "-Wno-four-char-constants", "-Wno-unknown-pragmas", ); + }; + name = Release; + }; + D062FA2DB4B243A685FD7F37 /* MinSizeRel */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_GENERATE_DEBUGGING_SYMBOLS = NO; + GCC_INLINES_ARE_PRIVATE_EXTERN = NO; + GCC_OPTIMIZATION_LEVEL = 0; + GCC_PREPROCESSOR_DEFINITIONS = ("'CMAKE_INTDIR=\"$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)\"'", ); + GCC_SYMBOLS_PRIVATE_EXTERN = NO; + INSTALL_PATH = ""; + OTHER_CFLAGS = " "; + OTHER_LDFLAGS = ""; + OTHER_REZFLAGS = ""; + PRODUCT_NAME = ALL_BUILD; + SECTORDER_FLAGS = ""; + SYMROOT = /Users/birarda/code/worklist/interface/interface; + USE_HEADERMAP = NO; + WARNING_CFLAGS = ("-Wmost", "-Wno-four-char-constants", "-Wno-unknown-pragmas", ); + }; + name = MinSizeRel; + }; + 5F58DDBBAC764550AC6FE2CE /* RelWithDebInfo */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_GENERATE_DEBUGGING_SYMBOLS = NO; + GCC_INLINES_ARE_PRIVATE_EXTERN = NO; + GCC_OPTIMIZATION_LEVEL = 0; + GCC_PREPROCESSOR_DEFINITIONS = ("'CMAKE_INTDIR=\"$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)\"'", ); + GCC_SYMBOLS_PRIVATE_EXTERN = NO; + INSTALL_PATH = ""; + OTHER_CFLAGS = " "; + OTHER_LDFLAGS = ""; + OTHER_REZFLAGS = ""; + PRODUCT_NAME = ALL_BUILD; + SECTORDER_FLAGS = ""; + SYMROOT = /Users/birarda/code/worklist/interface/interface; + USE_HEADERMAP = NO; + WARNING_CFLAGS = ("-Wmost", "-Wno-four-char-constants", "-Wno-unknown-pragmas", ); + }; + name = RelWithDebInfo; + }; + ED3389E0EBE94FE8A7959A67 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_GENERATE_DEBUGGING_SYMBOLS = NO; + GCC_INLINES_ARE_PRIVATE_EXTERN = NO; + GCC_OPTIMIZATION_LEVEL = 0; + GCC_PREPROCESSOR_DEFINITIONS = ("'CMAKE_INTDIR=\"$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)\"'", ); + GCC_SYMBOLS_PRIVATE_EXTERN = NO; + INSTALL_PATH = ""; + OTHER_CFLAGS = " "; + OTHER_LDFLAGS = ""; + OTHER_REZFLAGS = ""; + PRODUCT_NAME = ZERO_CHECK; + SECTORDER_FLAGS = ""; + SYMROOT = /Users/birarda/code/worklist/interface/interface; + USE_HEADERMAP = NO; + WARNING_CFLAGS = ("-Wmost", "-Wno-four-char-constants", "-Wno-unknown-pragmas", ); + }; + name = Debug; + }; + 24A3709DDE044DC2BF0C6967 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_GENERATE_DEBUGGING_SYMBOLS = NO; + GCC_INLINES_ARE_PRIVATE_EXTERN = NO; + GCC_OPTIMIZATION_LEVEL = 0; + GCC_PREPROCESSOR_DEFINITIONS = ("'CMAKE_INTDIR=\"$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)\"'", ); + GCC_SYMBOLS_PRIVATE_EXTERN = NO; + INSTALL_PATH = ""; + OTHER_CFLAGS = " "; + OTHER_LDFLAGS = ""; + OTHER_REZFLAGS = ""; + PRODUCT_NAME = ZERO_CHECK; + SECTORDER_FLAGS = ""; + SYMROOT = /Users/birarda/code/worklist/interface/interface; + USE_HEADERMAP = NO; + WARNING_CFLAGS = ("-Wmost", "-Wno-four-char-constants", "-Wno-unknown-pragmas", ); + }; + name = Release; + }; + 0EEF210803654D4EAC963AA2 /* MinSizeRel */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_GENERATE_DEBUGGING_SYMBOLS = NO; + GCC_INLINES_ARE_PRIVATE_EXTERN = NO; + GCC_OPTIMIZATION_LEVEL = 0; + GCC_PREPROCESSOR_DEFINITIONS = ("'CMAKE_INTDIR=\"$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)\"'", ); + GCC_SYMBOLS_PRIVATE_EXTERN = NO; + INSTALL_PATH = ""; + OTHER_CFLAGS = " "; + OTHER_LDFLAGS = ""; + OTHER_REZFLAGS = ""; + PRODUCT_NAME = ZERO_CHECK; + SECTORDER_FLAGS = ""; + SYMROOT = /Users/birarda/code/worklist/interface/interface; + USE_HEADERMAP = NO; + WARNING_CFLAGS = ("-Wmost", "-Wno-four-char-constants", "-Wno-unknown-pragmas", ); + }; + name = MinSizeRel; + }; + 0EF735812F56453F90F9A1B7 /* RelWithDebInfo */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_GENERATE_DEBUGGING_SYMBOLS = NO; + GCC_INLINES_ARE_PRIVATE_EXTERN = NO; + GCC_OPTIMIZATION_LEVEL = 0; + GCC_PREPROCESSOR_DEFINITIONS = ("'CMAKE_INTDIR=\"$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)\"'", ); + GCC_SYMBOLS_PRIVATE_EXTERN = NO; + INSTALL_PATH = ""; + OTHER_CFLAGS = " "; + OTHER_LDFLAGS = ""; + OTHER_REZFLAGS = ""; + PRODUCT_NAME = ZERO_CHECK; + SECTORDER_FLAGS = ""; + SYMROOT = /Users/birarda/code/worklist/interface/interface; + USE_HEADERMAP = NO; + WARNING_CFLAGS = ("-Wmost", "-Wno-four-char-constants", "-Wno-unknown-pragmas", ); + }; + name = RelWithDebInfo; + }; + 6EED8935452C45A0BEB49492 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + EXECUTABLE_PREFIX = ""; + EXECUTABLE_SUFFIX = ""; + GCC_GENERATE_DEBUGGING_SYMBOLS = YES; + GCC_INLINES_ARE_PRIVATE_EXTERN = NO; + GCC_OPTIMIZATION_LEVEL = 0; + GCC_PREPROCESSOR_DEFINITIONS = ("'CMAKE_INTDIR=\"$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)\"'", ); + GCC_SYMBOLS_PRIVATE_EXTERN = NO; + INSTALL_PATH = ""; + LIBRARY_SEARCH_PATHS = ""; + OTHER_CFLAGS = " "; + OTHER_CPLUSPLUSFLAGS = " "; + OTHER_LDFLAGS = " -Wl,-search_paths_first -Wl,-headerpad_max_install_names "; + OTHER_REZFLAGS = ""; + PRODUCT_NAME = interface; + SECTORDER_FLAGS = ""; + SYMROOT = /Users/birarda/code/worklist/interface/interface/src; + USE_HEADERMAP = NO; + WARNING_CFLAGS = ("-Wmost", "-Wno-four-char-constants", "-Wno-unknown-pragmas", ); + }; + name = Debug; + }; + 5EAE03C1583C4F5F9C63083B /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + EXECUTABLE_PREFIX = ""; + EXECUTABLE_SUFFIX = ""; + GCC_GENERATE_DEBUGGING_SYMBOLS = NO; + GCC_INLINES_ARE_PRIVATE_EXTERN = NO; + GCC_OPTIMIZATION_LEVEL = 3; + GCC_PREPROCESSOR_DEFINITIONS = ("'CMAKE_INTDIR=\"$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)\"'", ); + GCC_SYMBOLS_PRIVATE_EXTERN = NO; + INSTALL_PATH = ""; + LIBRARY_SEARCH_PATHS = ""; + OTHER_CFLAGS = " -DNDEBUG "; + OTHER_CPLUSPLUSFLAGS = " -DNDEBUG "; + OTHER_LDFLAGS = " -Wl,-search_paths_first -Wl,-headerpad_max_install_names "; + OTHER_REZFLAGS = ""; + PRODUCT_NAME = interface; + SECTORDER_FLAGS = ""; + SYMROOT = /Users/birarda/code/worklist/interface/interface/src; + USE_HEADERMAP = NO; + WARNING_CFLAGS = ("-Wmost", "-Wno-four-char-constants", "-Wno-unknown-pragmas", ); + }; + name = Release; + }; + 2E190570263C467CBEB6E0D6 /* MinSizeRel */ = { + isa = XCBuildConfiguration; + buildSettings = { + EXECUTABLE_PREFIX = ""; + EXECUTABLE_SUFFIX = ""; + GCC_GENERATE_DEBUGGING_SYMBOLS = NO; + GCC_INLINES_ARE_PRIVATE_EXTERN = NO; + GCC_OPTIMIZATION_LEVEL = s; + GCC_PREPROCESSOR_DEFINITIONS = ("'CMAKE_INTDIR=\"$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)\"'", ); + GCC_SYMBOLS_PRIVATE_EXTERN = NO; + INSTALL_PATH = ""; + LIBRARY_SEARCH_PATHS = ""; + OTHER_CFLAGS = " -DNDEBUG "; + OTHER_CPLUSPLUSFLAGS = " -DNDEBUG "; + OTHER_LDFLAGS = " -Wl,-search_paths_first -Wl,-headerpad_max_install_names "; + OTHER_REZFLAGS = ""; + PRODUCT_NAME = interface; + SECTORDER_FLAGS = ""; + SYMROOT = /Users/birarda/code/worklist/interface/interface/src; + USE_HEADERMAP = NO; + WARNING_CFLAGS = ("-Wmost", "-Wno-four-char-constants", "-Wno-unknown-pragmas", ); + }; + name = MinSizeRel; + }; + A3252141971C46489A8A2952 /* RelWithDebInfo */ = { + isa = XCBuildConfiguration; + buildSettings = { + EXECUTABLE_PREFIX = ""; + EXECUTABLE_SUFFIX = ""; + GCC_GENERATE_DEBUGGING_SYMBOLS = YES; + GCC_INLINES_ARE_PRIVATE_EXTERN = NO; + GCC_OPTIMIZATION_LEVEL = 2; + GCC_PREPROCESSOR_DEFINITIONS = ("'CMAKE_INTDIR=\"$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)\"'", ); + GCC_SYMBOLS_PRIVATE_EXTERN = NO; + INSTALL_PATH = ""; + LIBRARY_SEARCH_PATHS = ""; + OTHER_CFLAGS = " -DNDEBUG "; + OTHER_CPLUSPLUSFLAGS = " -DNDEBUG "; + OTHER_LDFLAGS = " -Wl,-search_paths_first -Wl,-headerpad_max_install_names "; + OTHER_REZFLAGS = ""; + PRODUCT_NAME = interface; + SECTORDER_FLAGS = ""; + SYMROOT = /Users/birarda/code/worklist/interface/interface/src; + USE_HEADERMAP = NO; + WARNING_CFLAGS = ("-Wmost", "-Wno-four-char-constants", "-Wno-unknown-pragmas", ); + }; + name = RelWithDebInfo; + }; +/* End XCBuildConfiguration section */ + +/* Begin XCConfigurationList section */ + 921AA6884B1342C191752832 /* Build configuration list for PBXProject "interface" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + B1E4602A553049FB97E0DE09 /* Debug */, + 8487A5A67C4041FD8C8E75A8 /* Release */, + D3D2146093774A329B8766C0 /* MinSizeRel */, + 229AC603ADE842278FD0AA78 /* RelWithDebInfo */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Debug; + }; + D545B54495D546FD90F6CDCD /* Build configuration list for PBXAggregateTarget "ALL_BUILD" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + F9FDEA40CFA14DF996832F89 /* Debug */, + 7D4DE0802FE740E2AAC1520F /* Release */, + D062FA2DB4B243A685FD7F37 /* MinSizeRel */, + 5F58DDBBAC764550AC6FE2CE /* RelWithDebInfo */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Debug; + }; + 633129251AA84B53B477E48F /* Build configuration list for PBXAggregateTarget "ZERO_CHECK" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + ED3389E0EBE94FE8A7959A67 /* Debug */, + 24A3709DDE044DC2BF0C6967 /* Release */, + 0EEF210803654D4EAC963AA2 /* MinSizeRel */, + 0EF735812F56453F90F9A1B7 /* RelWithDebInfo */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Debug; + }; + 52022E558DDB4B0E9A0D0ABC /* Build configuration list for PBXNativeTarget "interface" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 6EED8935452C45A0BEB49492 /* Debug */, + 5EAE03C1583C4F5F9C63083B /* Release */, + 2E190570263C467CBEB6E0D6 /* MinSizeRel */, + A3252141971C46489A8A2952 /* RelWithDebInfo */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Debug; + }; +/* End XCConfigurationList section */ + }; + rootObject = A563974108A04D62A97FF381; +} diff --git a/interface.xcodeproj/project.xcworkspace/contents.xcworkspacedata b/interface/interface.xcodeproj/project.xcworkspace/contents.xcworkspacedata similarity index 100% rename from interface.xcodeproj/project.xcworkspace/contents.xcworkspacedata rename to interface/interface.xcodeproj/project.xcworkspace/contents.xcworkspacedata diff --git a/Resources/audio/grayson.raw b/interface/resources/audio/grayson.raw similarity index 100% rename from Resources/audio/grayson.raw rename to interface/resources/audio/grayson.raw diff --git a/Resources/audio/jeska.raw b/interface/resources/audio/jeska.raw similarity index 100% rename from Resources/audio/jeska.raw rename to interface/resources/audio/jeska.raw diff --git a/Resources/audio/love.raw b/interface/resources/audio/love.raw similarity index 100% rename from Resources/audio/love.raw rename to interface/resources/audio/love.raw diff --git a/Resources/images/grayson-particle.png b/interface/resources/images/grayson-particle.png similarity index 100% rename from Resources/images/grayson-particle.png rename to interface/resources/images/grayson-particle.png diff --git a/Resources/images/int-texture256-v2.png b/interface/resources/images/int-texture256-v2.png similarity index 100% rename from Resources/images/int-texture256-v2.png rename to interface/resources/images/int-texture256-v2.png diff --git a/Resources/images/int-texture256-v4.png b/interface/resources/images/int-texture256-v4.png similarity index 100% rename from Resources/images/int-texture256-v4.png rename to interface/resources/images/int-texture256-v4.png diff --git a/Resources/images/int-texture256-v5.png b/interface/resources/images/int-texture256-v5.png similarity index 100% rename from Resources/images/int-texture256-v5.png rename to interface/resources/images/int-texture256-v5.png diff --git a/Resources/images/philip-image.png b/interface/resources/images/philip-image.png similarity index 100% rename from Resources/images/philip-image.png rename to interface/resources/images/philip-image.png diff --git a/Resources/images/pngtest8rgba.png b/interface/resources/images/pngtest8rgba.png similarity index 100% rename from Resources/images/pngtest8rgba.png rename to interface/resources/images/pngtest8rgba.png diff --git a/Resources/images/sphere.png b/interface/resources/images/sphere.png similarity index 100% rename from Resources/images/sphere.png rename to interface/resources/images/sphere.png diff --git a/Source/Agent.cpp b/interface/src/Agent.cpp similarity index 100% rename from Source/Agent.cpp rename to interface/src/Agent.cpp diff --git a/Source/Agent.h b/interface/src/Agent.h similarity index 100% rename from Source/Agent.h rename to interface/src/Agent.h diff --git a/Source/Audio.cpp b/interface/src/Audio.cpp similarity index 100% rename from Source/Audio.cpp rename to interface/src/Audio.cpp diff --git a/Source/Audio.h b/interface/src/Audio.h similarity index 100% rename from Source/Audio.h rename to interface/src/Audio.h diff --git a/Source/AudioData.cpp b/interface/src/AudioData.cpp similarity index 100% rename from Source/AudioData.cpp rename to interface/src/AudioData.cpp diff --git a/Source/AudioData.h b/interface/src/AudioData.h similarity index 100% rename from Source/AudioData.h rename to interface/src/AudioData.h diff --git a/Source/AudioRingBuffer.cpp b/interface/src/AudioRingBuffer.cpp similarity index 100% rename from Source/AudioRingBuffer.cpp rename to interface/src/AudioRingBuffer.cpp diff --git a/Source/AudioRingBuffer.h b/interface/src/AudioRingBuffer.h similarity index 100% rename from Source/AudioRingBuffer.h rename to interface/src/AudioRingBuffer.h diff --git a/Source/AudioSource.cpp b/interface/src/AudioSource.cpp similarity index 100% rename from Source/AudioSource.cpp rename to interface/src/AudioSource.cpp diff --git a/Source/AudioSource.h b/interface/src/AudioSource.h similarity index 100% rename from Source/AudioSource.h rename to interface/src/AudioSource.h diff --git a/interface/src/CMakeLists.txt b/interface/src/CMakeLists.txt new file mode 100644 index 0000000000..7145c58b12 --- /dev/null +++ b/interface/src/CMakeLists.txt @@ -0,0 +1,2 @@ +file(GLOB INTERFACE_SRCS *.cpp *.h) +add_executable(interface ${INTERFACE_SRCS}) \ No newline at end of file diff --git a/interface/src/CMakeScripts/interface_postBuildPhase.makeDebug b/interface/src/CMakeScripts/interface_postBuildPhase.makeDebug new file mode 100644 index 0000000000..0bfbe38e9e --- /dev/null +++ b/interface/src/CMakeScripts/interface_postBuildPhase.makeDebug @@ -0,0 +1,10 @@ +# Generated by CMake, DO NOT EDIT +# Custom rules for interface +.SUFFIXES: +all: \ + interface_buildpart_0 + + +interface_buildpart_0: + echo "Depend check for xcode" + cd /Users/birarda/code/worklist/interface/interface && make -C /Users/birarda/code/worklist/interface/interface -f /Users/birarda/code/worklist/interface/interface/CMakeScripts/XCODE_DEPEND_HELPER.make PostBuild.interface.$(CONFIGURATION) diff --git a/interface/src/CMakeScripts/interface_postBuildPhase.makeMinSizeRel b/interface/src/CMakeScripts/interface_postBuildPhase.makeMinSizeRel new file mode 100644 index 0000000000..0bfbe38e9e --- /dev/null +++ b/interface/src/CMakeScripts/interface_postBuildPhase.makeMinSizeRel @@ -0,0 +1,10 @@ +# Generated by CMake, DO NOT EDIT +# Custom rules for interface +.SUFFIXES: +all: \ + interface_buildpart_0 + + +interface_buildpart_0: + echo "Depend check for xcode" + cd /Users/birarda/code/worklist/interface/interface && make -C /Users/birarda/code/worklist/interface/interface -f /Users/birarda/code/worklist/interface/interface/CMakeScripts/XCODE_DEPEND_HELPER.make PostBuild.interface.$(CONFIGURATION) diff --git a/interface/src/CMakeScripts/interface_postBuildPhase.makeRelWithDebInfo b/interface/src/CMakeScripts/interface_postBuildPhase.makeRelWithDebInfo new file mode 100644 index 0000000000..0bfbe38e9e --- /dev/null +++ b/interface/src/CMakeScripts/interface_postBuildPhase.makeRelWithDebInfo @@ -0,0 +1,10 @@ +# Generated by CMake, DO NOT EDIT +# Custom rules for interface +.SUFFIXES: +all: \ + interface_buildpart_0 + + +interface_buildpart_0: + echo "Depend check for xcode" + cd /Users/birarda/code/worklist/interface/interface && make -C /Users/birarda/code/worklist/interface/interface -f /Users/birarda/code/worklist/interface/interface/CMakeScripts/XCODE_DEPEND_HELPER.make PostBuild.interface.$(CONFIGURATION) diff --git a/interface/src/CMakeScripts/interface_postBuildPhase.makeRelease b/interface/src/CMakeScripts/interface_postBuildPhase.makeRelease new file mode 100644 index 0000000000..0bfbe38e9e --- /dev/null +++ b/interface/src/CMakeScripts/interface_postBuildPhase.makeRelease @@ -0,0 +1,10 @@ +# Generated by CMake, DO NOT EDIT +# Custom rules for interface +.SUFFIXES: +all: \ + interface_buildpart_0 + + +interface_buildpart_0: + echo "Depend check for xcode" + cd /Users/birarda/code/worklist/interface/interface && make -C /Users/birarda/code/worklist/interface/interface -f /Users/birarda/code/worklist/interface/interface/CMakeScripts/XCODE_DEPEND_HELPER.make PostBuild.interface.$(CONFIGURATION) diff --git a/Source/Cloud.cpp b/interface/src/Cloud.cpp similarity index 100% rename from Source/Cloud.cpp rename to interface/src/Cloud.cpp diff --git a/Source/Cloud.h b/interface/src/Cloud.h similarity index 100% rename from Source/Cloud.h rename to interface/src/Cloud.h diff --git a/Source/Cube.cpp b/interface/src/Cube.cpp similarity index 100% rename from Source/Cube.cpp rename to interface/src/Cube.cpp diff --git a/Source/Cube.h b/interface/src/Cube.h similarity index 100% rename from Source/Cube.h rename to interface/src/Cube.h diff --git a/Source/Field.cpp b/interface/src/Field.cpp similarity index 100% rename from Source/Field.cpp rename to interface/src/Field.cpp diff --git a/Source/Field.h b/interface/src/Field.h similarity index 100% rename from Source/Field.h rename to interface/src/Field.h diff --git a/Source/Finger.cpp b/interface/src/Finger.cpp similarity index 100% rename from Source/Finger.cpp rename to interface/src/Finger.cpp diff --git a/Source/Finger.h b/interface/src/Finger.h similarity index 100% rename from Source/Finger.h rename to interface/src/Finger.h diff --git a/Source/Hand.cpp b/interface/src/Hand.cpp similarity index 100% rename from Source/Hand.cpp rename to interface/src/Hand.cpp diff --git a/Source/Hand.h b/interface/src/Hand.h similarity index 100% rename from Source/Hand.h rename to interface/src/Hand.h diff --git a/Source/Head.cpp b/interface/src/Head.cpp similarity index 100% rename from Source/Head.cpp rename to interface/src/Head.cpp diff --git a/Source/Head.h b/interface/src/Head.h similarity index 100% rename from Source/Head.h rename to interface/src/Head.h diff --git a/Source/Lattice.cpp b/interface/src/Lattice.cpp similarity index 100% rename from Source/Lattice.cpp rename to interface/src/Lattice.cpp diff --git a/Source/Lattice.h b/interface/src/Lattice.h similarity index 100% rename from Source/Lattice.h rename to interface/src/Lattice.h diff --git a/Source/Network.cpp b/interface/src/Network.cpp similarity index 100% rename from Source/Network.cpp rename to interface/src/Network.cpp diff --git a/Source/Network.h b/interface/src/Network.h similarity index 100% rename from Source/Network.h rename to interface/src/Network.h diff --git a/Source/Oscilloscope.cpp b/interface/src/Oscilloscope.cpp similarity index 100% rename from Source/Oscilloscope.cpp rename to interface/src/Oscilloscope.cpp diff --git a/Source/Oscilloscope.h b/interface/src/Oscilloscope.h similarity index 100% rename from Source/Oscilloscope.h rename to interface/src/Oscilloscope.h diff --git a/Source/Particle.cpp b/interface/src/Particle.cpp similarity index 100% rename from Source/Particle.cpp rename to interface/src/Particle.cpp diff --git a/Source/Particle.h b/interface/src/Particle.h similarity index 100% rename from Source/Particle.h rename to interface/src/Particle.h diff --git a/Source/SerialInterface.cpp b/interface/src/SerialInterface.cpp similarity index 100% rename from Source/SerialInterface.cpp rename to interface/src/SerialInterface.cpp diff --git a/Source/SerialInterface.h b/interface/src/SerialInterface.h similarity index 100% rename from Source/SerialInterface.h rename to interface/src/SerialInterface.h diff --git a/Source/Texture.cpp b/interface/src/Texture.cpp similarity index 100% rename from Source/Texture.cpp rename to interface/src/Texture.cpp diff --git a/Source/Texture.h b/interface/src/Texture.h similarity index 100% rename from Source/Texture.h rename to interface/src/Texture.h diff --git a/Source/UDPSocket.cpp b/interface/src/UDPSocket.cpp similarity index 100% rename from Source/UDPSocket.cpp rename to interface/src/UDPSocket.cpp diff --git a/Source/UDPSocket.h b/interface/src/UDPSocket.h similarity index 100% rename from Source/UDPSocket.h rename to interface/src/UDPSocket.h diff --git a/Source/Util.cpp b/interface/src/Util.cpp similarity index 100% rename from Source/Util.cpp rename to interface/src/Util.cpp diff --git a/Source/Util.h b/interface/src/Util.h similarity index 100% rename from Source/Util.h rename to interface/src/Util.h diff --git a/interface/src/cmake_install.cmake b/interface/src/cmake_install.cmake new file mode 100644 index 0000000000..707cee6996 --- /dev/null +++ b/interface/src/cmake_install.cmake @@ -0,0 +1,29 @@ +# Install script for directory: /Users/birarda/code/worklist/interface/interface/src + +# Set the install prefix +IF(NOT DEFINED CMAKE_INSTALL_PREFIX) + SET(CMAKE_INSTALL_PREFIX "/usr/local") +ENDIF(NOT DEFINED CMAKE_INSTALL_PREFIX) +STRING(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +IF(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + IF(BUILD_TYPE) + STRING(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + ELSE(BUILD_TYPE) + SET(CMAKE_INSTALL_CONFIG_NAME "Release") + ENDIF(BUILD_TYPE) + MESSAGE(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +ENDIF(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + +# Set the component getting installed. +IF(NOT CMAKE_INSTALL_COMPONENT) + IF(COMPONENT) + MESSAGE(STATUS "Install component: \"${COMPONENT}\"") + SET(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + ELSE(COMPONENT) + SET(CMAKE_INSTALL_COMPONENT) + ENDIF(COMPONENT) +ENDIF(NOT CMAKE_INSTALL_COMPONENT) + diff --git a/Source/main.cpp b/interface/src/main.cpp similarity index 100% rename from Source/main.cpp rename to interface/src/main.cpp diff --git a/Source/octal.cpp b/interface/src/octal.cpp similarity index 100% rename from Source/octal.cpp rename to interface/src/octal.cpp diff --git a/Source/octal.h b/interface/src/octal.h similarity index 100% rename from Source/octal.h rename to interface/src/octal.h diff --git a/Source/world.h b/interface/src/world.h similarity index 100% rename from Source/world.h rename to interface/src/world.h diff --git a/Libraries/LodePNG/lodepng.cpp b/thirdparty/LodePNG/lodepng.cpp similarity index 100% rename from Libraries/LodePNG/lodepng.cpp rename to thirdparty/LodePNG/lodepng.cpp diff --git a/Libraries/LodePNG/lodepng.h b/thirdparty/LodePNG/lodepng.h similarity index 100% rename from Libraries/LodePNG/lodepng.h rename to thirdparty/LodePNG/lodepng.h diff --git a/Libraries/PortAudio/libportaudio.a b/thirdparty/PortAudio/libportaudio.a similarity index 100% rename from Libraries/PortAudio/libportaudio.a rename to thirdparty/PortAudio/libportaudio.a diff --git a/Libraries/PortAudio/portaudio.h b/thirdparty/PortAudio/portaudio.h similarity index 100% rename from Libraries/PortAudio/portaudio.h rename to thirdparty/PortAudio/portaudio.h diff --git a/Libraries/glm/CMakeLists.txt b/thirdparty/glm/CMakeLists.txt similarity index 100% rename from Libraries/glm/CMakeLists.txt rename to thirdparty/glm/CMakeLists.txt diff --git a/Libraries/glm/core/_detail.hpp b/thirdparty/glm/core/_detail.hpp similarity index 100% rename from Libraries/glm/core/_detail.hpp rename to thirdparty/glm/core/_detail.hpp diff --git a/Libraries/glm/core/_fixes.hpp b/thirdparty/glm/core/_fixes.hpp similarity index 100% rename from Libraries/glm/core/_fixes.hpp rename to thirdparty/glm/core/_fixes.hpp diff --git a/Libraries/glm/core/_swizzle.hpp b/thirdparty/glm/core/_swizzle.hpp similarity index 100% rename from Libraries/glm/core/_swizzle.hpp rename to thirdparty/glm/core/_swizzle.hpp diff --git a/Libraries/glm/core/_swizzle_func.hpp b/thirdparty/glm/core/_swizzle_func.hpp similarity index 100% rename from Libraries/glm/core/_swizzle_func.hpp rename to thirdparty/glm/core/_swizzle_func.hpp diff --git a/Libraries/glm/core/_vectorize.hpp b/thirdparty/glm/core/_vectorize.hpp similarity index 100% rename from Libraries/glm/core/_vectorize.hpp rename to thirdparty/glm/core/_vectorize.hpp diff --git a/Libraries/glm/core/dummy.cpp b/thirdparty/glm/core/dummy.cpp similarity index 100% rename from Libraries/glm/core/dummy.cpp rename to thirdparty/glm/core/dummy.cpp diff --git a/Libraries/glm/core/func_common.hpp b/thirdparty/glm/core/func_common.hpp similarity index 100% rename from Libraries/glm/core/func_common.hpp rename to thirdparty/glm/core/func_common.hpp diff --git a/Libraries/glm/core/func_common.inl b/thirdparty/glm/core/func_common.inl similarity index 100% rename from Libraries/glm/core/func_common.inl rename to thirdparty/glm/core/func_common.inl diff --git a/Libraries/glm/core/func_exponential.hpp b/thirdparty/glm/core/func_exponential.hpp similarity index 100% rename from Libraries/glm/core/func_exponential.hpp rename to thirdparty/glm/core/func_exponential.hpp diff --git a/Libraries/glm/core/func_exponential.inl b/thirdparty/glm/core/func_exponential.inl similarity index 100% rename from Libraries/glm/core/func_exponential.inl rename to thirdparty/glm/core/func_exponential.inl diff --git a/Libraries/glm/core/func_geometric.hpp b/thirdparty/glm/core/func_geometric.hpp similarity index 100% rename from Libraries/glm/core/func_geometric.hpp rename to thirdparty/glm/core/func_geometric.hpp diff --git a/Libraries/glm/core/func_geometric.inl b/thirdparty/glm/core/func_geometric.inl similarity index 100% rename from Libraries/glm/core/func_geometric.inl rename to thirdparty/glm/core/func_geometric.inl diff --git a/Libraries/glm/core/func_integer.hpp b/thirdparty/glm/core/func_integer.hpp similarity index 100% rename from Libraries/glm/core/func_integer.hpp rename to thirdparty/glm/core/func_integer.hpp diff --git a/Libraries/glm/core/func_integer.inl b/thirdparty/glm/core/func_integer.inl similarity index 100% rename from Libraries/glm/core/func_integer.inl rename to thirdparty/glm/core/func_integer.inl diff --git a/Libraries/glm/core/func_matrix.hpp b/thirdparty/glm/core/func_matrix.hpp similarity index 100% rename from Libraries/glm/core/func_matrix.hpp rename to thirdparty/glm/core/func_matrix.hpp diff --git a/Libraries/glm/core/func_matrix.inl b/thirdparty/glm/core/func_matrix.inl similarity index 100% rename from Libraries/glm/core/func_matrix.inl rename to thirdparty/glm/core/func_matrix.inl diff --git a/Libraries/glm/core/func_noise.hpp b/thirdparty/glm/core/func_noise.hpp similarity index 100% rename from Libraries/glm/core/func_noise.hpp rename to thirdparty/glm/core/func_noise.hpp diff --git a/Libraries/glm/core/func_noise.inl b/thirdparty/glm/core/func_noise.inl similarity index 100% rename from Libraries/glm/core/func_noise.inl rename to thirdparty/glm/core/func_noise.inl diff --git a/Libraries/glm/core/func_packing.hpp b/thirdparty/glm/core/func_packing.hpp similarity index 100% rename from Libraries/glm/core/func_packing.hpp rename to thirdparty/glm/core/func_packing.hpp diff --git a/Libraries/glm/core/func_packing.inl b/thirdparty/glm/core/func_packing.inl similarity index 100% rename from Libraries/glm/core/func_packing.inl rename to thirdparty/glm/core/func_packing.inl diff --git a/Libraries/glm/core/func_trigonometric.hpp b/thirdparty/glm/core/func_trigonometric.hpp similarity index 100% rename from Libraries/glm/core/func_trigonometric.hpp rename to thirdparty/glm/core/func_trigonometric.hpp diff --git a/Libraries/glm/core/func_trigonometric.inl b/thirdparty/glm/core/func_trigonometric.inl similarity index 100% rename from Libraries/glm/core/func_trigonometric.inl rename to thirdparty/glm/core/func_trigonometric.inl diff --git a/Libraries/glm/core/func_vector_relational.hpp b/thirdparty/glm/core/func_vector_relational.hpp similarity index 100% rename from Libraries/glm/core/func_vector_relational.hpp rename to thirdparty/glm/core/func_vector_relational.hpp diff --git a/Libraries/glm/core/func_vector_relational.inl b/thirdparty/glm/core/func_vector_relational.inl similarity index 100% rename from Libraries/glm/core/func_vector_relational.inl rename to thirdparty/glm/core/func_vector_relational.inl diff --git a/Libraries/glm/core/hint.hpp b/thirdparty/glm/core/hint.hpp similarity index 100% rename from Libraries/glm/core/hint.hpp rename to thirdparty/glm/core/hint.hpp diff --git a/Libraries/glm/core/intrinsic_common.hpp b/thirdparty/glm/core/intrinsic_common.hpp similarity index 100% rename from Libraries/glm/core/intrinsic_common.hpp rename to thirdparty/glm/core/intrinsic_common.hpp diff --git a/Libraries/glm/core/intrinsic_common.inl b/thirdparty/glm/core/intrinsic_common.inl similarity index 100% rename from Libraries/glm/core/intrinsic_common.inl rename to thirdparty/glm/core/intrinsic_common.inl diff --git a/Libraries/glm/core/intrinsic_exponential.hpp b/thirdparty/glm/core/intrinsic_exponential.hpp similarity index 100% rename from Libraries/glm/core/intrinsic_exponential.hpp rename to thirdparty/glm/core/intrinsic_exponential.hpp diff --git a/Libraries/glm/core/intrinsic_exponential.inl b/thirdparty/glm/core/intrinsic_exponential.inl similarity index 100% rename from Libraries/glm/core/intrinsic_exponential.inl rename to thirdparty/glm/core/intrinsic_exponential.inl diff --git a/Libraries/glm/core/intrinsic_geometric.hpp b/thirdparty/glm/core/intrinsic_geometric.hpp similarity index 100% rename from Libraries/glm/core/intrinsic_geometric.hpp rename to thirdparty/glm/core/intrinsic_geometric.hpp diff --git a/Libraries/glm/core/intrinsic_geometric.inl b/thirdparty/glm/core/intrinsic_geometric.inl similarity index 100% rename from Libraries/glm/core/intrinsic_geometric.inl rename to thirdparty/glm/core/intrinsic_geometric.inl diff --git a/Libraries/glm/core/intrinsic_matrix.hpp b/thirdparty/glm/core/intrinsic_matrix.hpp similarity index 100% rename from Libraries/glm/core/intrinsic_matrix.hpp rename to thirdparty/glm/core/intrinsic_matrix.hpp diff --git a/Libraries/glm/core/intrinsic_matrix.inl b/thirdparty/glm/core/intrinsic_matrix.inl similarity index 100% rename from Libraries/glm/core/intrinsic_matrix.inl rename to thirdparty/glm/core/intrinsic_matrix.inl diff --git a/Libraries/glm/core/intrinsic_trigonometric.hpp b/thirdparty/glm/core/intrinsic_trigonometric.hpp similarity index 100% rename from Libraries/glm/core/intrinsic_trigonometric.hpp rename to thirdparty/glm/core/intrinsic_trigonometric.hpp diff --git a/Libraries/glm/core/intrinsic_trigonometric.inl b/thirdparty/glm/core/intrinsic_trigonometric.inl similarity index 100% rename from Libraries/glm/core/intrinsic_trigonometric.inl rename to thirdparty/glm/core/intrinsic_trigonometric.inl diff --git a/Libraries/glm/core/intrinsic_vector_relational.hpp b/thirdparty/glm/core/intrinsic_vector_relational.hpp similarity index 100% rename from Libraries/glm/core/intrinsic_vector_relational.hpp rename to thirdparty/glm/core/intrinsic_vector_relational.hpp diff --git a/Libraries/glm/core/intrinsic_vector_relational.inl b/thirdparty/glm/core/intrinsic_vector_relational.inl similarity index 100% rename from Libraries/glm/core/intrinsic_vector_relational.inl rename to thirdparty/glm/core/intrinsic_vector_relational.inl diff --git a/Libraries/glm/core/setup.hpp b/thirdparty/glm/core/setup.hpp similarity index 100% rename from Libraries/glm/core/setup.hpp rename to thirdparty/glm/core/setup.hpp diff --git a/Libraries/glm/core/type.hpp b/thirdparty/glm/core/type.hpp similarity index 100% rename from Libraries/glm/core/type.hpp rename to thirdparty/glm/core/type.hpp diff --git a/Libraries/glm/core/type_float.hpp b/thirdparty/glm/core/type_float.hpp similarity index 100% rename from Libraries/glm/core/type_float.hpp rename to thirdparty/glm/core/type_float.hpp diff --git a/Libraries/glm/core/type_gentype.hpp b/thirdparty/glm/core/type_gentype.hpp similarity index 100% rename from Libraries/glm/core/type_gentype.hpp rename to thirdparty/glm/core/type_gentype.hpp diff --git a/Libraries/glm/core/type_gentype.inl b/thirdparty/glm/core/type_gentype.inl similarity index 100% rename from Libraries/glm/core/type_gentype.inl rename to thirdparty/glm/core/type_gentype.inl diff --git a/Libraries/glm/core/type_half.hpp b/thirdparty/glm/core/type_half.hpp similarity index 100% rename from Libraries/glm/core/type_half.hpp rename to thirdparty/glm/core/type_half.hpp diff --git a/Libraries/glm/core/type_half.inl b/thirdparty/glm/core/type_half.inl similarity index 100% rename from Libraries/glm/core/type_half.inl rename to thirdparty/glm/core/type_half.inl diff --git a/Libraries/glm/core/type_int.hpp b/thirdparty/glm/core/type_int.hpp similarity index 100% rename from Libraries/glm/core/type_int.hpp rename to thirdparty/glm/core/type_int.hpp diff --git a/Libraries/glm/core/type_mat.hpp b/thirdparty/glm/core/type_mat.hpp similarity index 100% rename from Libraries/glm/core/type_mat.hpp rename to thirdparty/glm/core/type_mat.hpp diff --git a/Libraries/glm/core/type_mat.inl b/thirdparty/glm/core/type_mat.inl similarity index 100% rename from Libraries/glm/core/type_mat.inl rename to thirdparty/glm/core/type_mat.inl diff --git a/Libraries/glm/core/type_mat2x2.hpp b/thirdparty/glm/core/type_mat2x2.hpp similarity index 100% rename from Libraries/glm/core/type_mat2x2.hpp rename to thirdparty/glm/core/type_mat2x2.hpp diff --git a/Libraries/glm/core/type_mat2x2.inl b/thirdparty/glm/core/type_mat2x2.inl similarity index 100% rename from Libraries/glm/core/type_mat2x2.inl rename to thirdparty/glm/core/type_mat2x2.inl diff --git a/Libraries/glm/core/type_mat2x3.hpp b/thirdparty/glm/core/type_mat2x3.hpp similarity index 100% rename from Libraries/glm/core/type_mat2x3.hpp rename to thirdparty/glm/core/type_mat2x3.hpp diff --git a/Libraries/glm/core/type_mat2x3.inl b/thirdparty/glm/core/type_mat2x3.inl similarity index 100% rename from Libraries/glm/core/type_mat2x3.inl rename to thirdparty/glm/core/type_mat2x3.inl diff --git a/Libraries/glm/core/type_mat2x4.hpp b/thirdparty/glm/core/type_mat2x4.hpp similarity index 100% rename from Libraries/glm/core/type_mat2x4.hpp rename to thirdparty/glm/core/type_mat2x4.hpp diff --git a/Libraries/glm/core/type_mat2x4.inl b/thirdparty/glm/core/type_mat2x4.inl similarity index 100% rename from Libraries/glm/core/type_mat2x4.inl rename to thirdparty/glm/core/type_mat2x4.inl diff --git a/Libraries/glm/core/type_mat3x2.hpp b/thirdparty/glm/core/type_mat3x2.hpp similarity index 100% rename from Libraries/glm/core/type_mat3x2.hpp rename to thirdparty/glm/core/type_mat3x2.hpp diff --git a/Libraries/glm/core/type_mat3x2.inl b/thirdparty/glm/core/type_mat3x2.inl similarity index 100% rename from Libraries/glm/core/type_mat3x2.inl rename to thirdparty/glm/core/type_mat3x2.inl diff --git a/Libraries/glm/core/type_mat3x3.hpp b/thirdparty/glm/core/type_mat3x3.hpp similarity index 100% rename from Libraries/glm/core/type_mat3x3.hpp rename to thirdparty/glm/core/type_mat3x3.hpp diff --git a/Libraries/glm/core/type_mat3x3.inl b/thirdparty/glm/core/type_mat3x3.inl similarity index 100% rename from Libraries/glm/core/type_mat3x3.inl rename to thirdparty/glm/core/type_mat3x3.inl diff --git a/Libraries/glm/core/type_mat3x4.hpp b/thirdparty/glm/core/type_mat3x4.hpp similarity index 100% rename from Libraries/glm/core/type_mat3x4.hpp rename to thirdparty/glm/core/type_mat3x4.hpp diff --git a/Libraries/glm/core/type_mat3x4.inl b/thirdparty/glm/core/type_mat3x4.inl similarity index 100% rename from Libraries/glm/core/type_mat3x4.inl rename to thirdparty/glm/core/type_mat3x4.inl diff --git a/Libraries/glm/core/type_mat4x2.hpp b/thirdparty/glm/core/type_mat4x2.hpp similarity index 100% rename from Libraries/glm/core/type_mat4x2.hpp rename to thirdparty/glm/core/type_mat4x2.hpp diff --git a/Libraries/glm/core/type_mat4x2.inl b/thirdparty/glm/core/type_mat4x2.inl similarity index 100% rename from Libraries/glm/core/type_mat4x2.inl rename to thirdparty/glm/core/type_mat4x2.inl diff --git a/Libraries/glm/core/type_mat4x3.hpp b/thirdparty/glm/core/type_mat4x3.hpp similarity index 100% rename from Libraries/glm/core/type_mat4x3.hpp rename to thirdparty/glm/core/type_mat4x3.hpp diff --git a/Libraries/glm/core/type_mat4x3.inl b/thirdparty/glm/core/type_mat4x3.inl similarity index 100% rename from Libraries/glm/core/type_mat4x3.inl rename to thirdparty/glm/core/type_mat4x3.inl diff --git a/Libraries/glm/core/type_mat4x4.hpp b/thirdparty/glm/core/type_mat4x4.hpp similarity index 100% rename from Libraries/glm/core/type_mat4x4.hpp rename to thirdparty/glm/core/type_mat4x4.hpp diff --git a/Libraries/glm/core/type_mat4x4.inl b/thirdparty/glm/core/type_mat4x4.inl similarity index 100% rename from Libraries/glm/core/type_mat4x4.inl rename to thirdparty/glm/core/type_mat4x4.inl diff --git a/Libraries/glm/core/type_size.hpp b/thirdparty/glm/core/type_size.hpp similarity index 100% rename from Libraries/glm/core/type_size.hpp rename to thirdparty/glm/core/type_size.hpp diff --git a/Libraries/glm/core/type_vec.hpp b/thirdparty/glm/core/type_vec.hpp similarity index 100% rename from Libraries/glm/core/type_vec.hpp rename to thirdparty/glm/core/type_vec.hpp diff --git a/Libraries/glm/core/type_vec.inl b/thirdparty/glm/core/type_vec.inl similarity index 100% rename from Libraries/glm/core/type_vec.inl rename to thirdparty/glm/core/type_vec.inl diff --git a/Libraries/glm/core/type_vec1.hpp b/thirdparty/glm/core/type_vec1.hpp similarity index 100% rename from Libraries/glm/core/type_vec1.hpp rename to thirdparty/glm/core/type_vec1.hpp diff --git a/Libraries/glm/core/type_vec1.inl b/thirdparty/glm/core/type_vec1.inl similarity index 100% rename from Libraries/glm/core/type_vec1.inl rename to thirdparty/glm/core/type_vec1.inl diff --git a/Libraries/glm/core/type_vec2.hpp b/thirdparty/glm/core/type_vec2.hpp similarity index 100% rename from Libraries/glm/core/type_vec2.hpp rename to thirdparty/glm/core/type_vec2.hpp diff --git a/Libraries/glm/core/type_vec2.inl b/thirdparty/glm/core/type_vec2.inl similarity index 100% rename from Libraries/glm/core/type_vec2.inl rename to thirdparty/glm/core/type_vec2.inl diff --git a/Libraries/glm/core/type_vec3.hpp b/thirdparty/glm/core/type_vec3.hpp similarity index 100% rename from Libraries/glm/core/type_vec3.hpp rename to thirdparty/glm/core/type_vec3.hpp diff --git a/Libraries/glm/core/type_vec3.inl b/thirdparty/glm/core/type_vec3.inl similarity index 100% rename from Libraries/glm/core/type_vec3.inl rename to thirdparty/glm/core/type_vec3.inl diff --git a/Libraries/glm/core/type_vec4.hpp b/thirdparty/glm/core/type_vec4.hpp similarity index 100% rename from Libraries/glm/core/type_vec4.hpp rename to thirdparty/glm/core/type_vec4.hpp diff --git a/Libraries/glm/core/type_vec4.inl b/thirdparty/glm/core/type_vec4.inl similarity index 100% rename from Libraries/glm/core/type_vec4.inl rename to thirdparty/glm/core/type_vec4.inl diff --git a/Libraries/glm/ext.hpp b/thirdparty/glm/ext.hpp similarity index 100% rename from Libraries/glm/ext.hpp rename to thirdparty/glm/ext.hpp diff --git a/Libraries/glm/glm.hpp b/thirdparty/glm/glm.hpp similarity index 100% rename from Libraries/glm/glm.hpp rename to thirdparty/glm/glm.hpp diff --git a/Libraries/glm/gtc/half_float.hpp b/thirdparty/glm/gtc/half_float.hpp similarity index 100% rename from Libraries/glm/gtc/half_float.hpp rename to thirdparty/glm/gtc/half_float.hpp diff --git a/Libraries/glm/gtc/half_float.inl b/thirdparty/glm/gtc/half_float.inl similarity index 100% rename from Libraries/glm/gtc/half_float.inl rename to thirdparty/glm/gtc/half_float.inl diff --git a/Libraries/glm/gtc/matrix_access.hpp b/thirdparty/glm/gtc/matrix_access.hpp similarity index 100% rename from Libraries/glm/gtc/matrix_access.hpp rename to thirdparty/glm/gtc/matrix_access.hpp diff --git a/Libraries/glm/gtc/matrix_access.inl b/thirdparty/glm/gtc/matrix_access.inl similarity index 100% rename from Libraries/glm/gtc/matrix_access.inl rename to thirdparty/glm/gtc/matrix_access.inl diff --git a/Libraries/glm/gtc/matrix_integer.hpp b/thirdparty/glm/gtc/matrix_integer.hpp similarity index 100% rename from Libraries/glm/gtc/matrix_integer.hpp rename to thirdparty/glm/gtc/matrix_integer.hpp diff --git a/Libraries/glm/gtc/matrix_inverse.hpp b/thirdparty/glm/gtc/matrix_inverse.hpp similarity index 100% rename from Libraries/glm/gtc/matrix_inverse.hpp rename to thirdparty/glm/gtc/matrix_inverse.hpp diff --git a/Libraries/glm/gtc/matrix_inverse.inl b/thirdparty/glm/gtc/matrix_inverse.inl similarity index 100% rename from Libraries/glm/gtc/matrix_inverse.inl rename to thirdparty/glm/gtc/matrix_inverse.inl diff --git a/Libraries/glm/gtc/matrix_transform.hpp b/thirdparty/glm/gtc/matrix_transform.hpp similarity index 100% rename from Libraries/glm/gtc/matrix_transform.hpp rename to thirdparty/glm/gtc/matrix_transform.hpp diff --git a/Libraries/glm/gtc/matrix_transform.inl b/thirdparty/glm/gtc/matrix_transform.inl similarity index 100% rename from Libraries/glm/gtc/matrix_transform.inl rename to thirdparty/glm/gtc/matrix_transform.inl diff --git a/Libraries/glm/gtc/noise.hpp b/thirdparty/glm/gtc/noise.hpp similarity index 100% rename from Libraries/glm/gtc/noise.hpp rename to thirdparty/glm/gtc/noise.hpp diff --git a/Libraries/glm/gtc/noise.inl b/thirdparty/glm/gtc/noise.inl similarity index 100% rename from Libraries/glm/gtc/noise.inl rename to thirdparty/glm/gtc/noise.inl diff --git a/Libraries/glm/gtc/quaternion.hpp b/thirdparty/glm/gtc/quaternion.hpp similarity index 100% rename from Libraries/glm/gtc/quaternion.hpp rename to thirdparty/glm/gtc/quaternion.hpp diff --git a/Libraries/glm/gtc/quaternion.inl b/thirdparty/glm/gtc/quaternion.inl similarity index 100% rename from Libraries/glm/gtc/quaternion.inl rename to thirdparty/glm/gtc/quaternion.inl diff --git a/Libraries/glm/gtc/random.hpp b/thirdparty/glm/gtc/random.hpp similarity index 100% rename from Libraries/glm/gtc/random.hpp rename to thirdparty/glm/gtc/random.hpp diff --git a/Libraries/glm/gtc/random.inl b/thirdparty/glm/gtc/random.inl similarity index 100% rename from Libraries/glm/gtc/random.inl rename to thirdparty/glm/gtc/random.inl diff --git a/Libraries/glm/gtc/swizzle.hpp b/thirdparty/glm/gtc/swizzle.hpp similarity index 100% rename from Libraries/glm/gtc/swizzle.hpp rename to thirdparty/glm/gtc/swizzle.hpp diff --git a/Libraries/glm/gtc/swizzle.inl b/thirdparty/glm/gtc/swizzle.inl similarity index 100% rename from Libraries/glm/gtc/swizzle.inl rename to thirdparty/glm/gtc/swizzle.inl diff --git a/Libraries/glm/gtc/type_precision.hpp b/thirdparty/glm/gtc/type_precision.hpp similarity index 100% rename from Libraries/glm/gtc/type_precision.hpp rename to thirdparty/glm/gtc/type_precision.hpp diff --git a/Libraries/glm/gtc/type_precision.inl b/thirdparty/glm/gtc/type_precision.inl similarity index 100% rename from Libraries/glm/gtc/type_precision.inl rename to thirdparty/glm/gtc/type_precision.inl diff --git a/Libraries/glm/gtc/type_ptr.hpp b/thirdparty/glm/gtc/type_ptr.hpp similarity index 100% rename from Libraries/glm/gtc/type_ptr.hpp rename to thirdparty/glm/gtc/type_ptr.hpp diff --git a/Libraries/glm/gtc/type_ptr.inl b/thirdparty/glm/gtc/type_ptr.inl similarity index 100% rename from Libraries/glm/gtc/type_ptr.inl rename to thirdparty/glm/gtc/type_ptr.inl diff --git a/Libraries/glm/gtx/associated_min_max.hpp b/thirdparty/glm/gtx/associated_min_max.hpp similarity index 100% rename from Libraries/glm/gtx/associated_min_max.hpp rename to thirdparty/glm/gtx/associated_min_max.hpp diff --git a/Libraries/glm/gtx/associated_min_max.inl b/thirdparty/glm/gtx/associated_min_max.inl similarity index 100% rename from Libraries/glm/gtx/associated_min_max.inl rename to thirdparty/glm/gtx/associated_min_max.inl diff --git a/Libraries/glm/gtx/bit.hpp b/thirdparty/glm/gtx/bit.hpp similarity index 100% rename from Libraries/glm/gtx/bit.hpp rename to thirdparty/glm/gtx/bit.hpp diff --git a/Libraries/glm/gtx/bit.inl b/thirdparty/glm/gtx/bit.inl similarity index 100% rename from Libraries/glm/gtx/bit.inl rename to thirdparty/glm/gtx/bit.inl diff --git a/Libraries/glm/gtx/closest_point.hpp b/thirdparty/glm/gtx/closest_point.hpp similarity index 100% rename from Libraries/glm/gtx/closest_point.hpp rename to thirdparty/glm/gtx/closest_point.hpp diff --git a/Libraries/glm/gtx/closest_point.inl b/thirdparty/glm/gtx/closest_point.inl similarity index 100% rename from Libraries/glm/gtx/closest_point.inl rename to thirdparty/glm/gtx/closest_point.inl diff --git a/Libraries/glm/gtx/color_cast.hpp b/thirdparty/glm/gtx/color_cast.hpp similarity index 100% rename from Libraries/glm/gtx/color_cast.hpp rename to thirdparty/glm/gtx/color_cast.hpp diff --git a/Libraries/glm/gtx/color_cast.inl b/thirdparty/glm/gtx/color_cast.inl similarity index 100% rename from Libraries/glm/gtx/color_cast.inl rename to thirdparty/glm/gtx/color_cast.inl diff --git a/Libraries/glm/gtx/color_space.hpp b/thirdparty/glm/gtx/color_space.hpp similarity index 100% rename from Libraries/glm/gtx/color_space.hpp rename to thirdparty/glm/gtx/color_space.hpp diff --git a/Libraries/glm/gtx/color_space.inl b/thirdparty/glm/gtx/color_space.inl similarity index 100% rename from Libraries/glm/gtx/color_space.inl rename to thirdparty/glm/gtx/color_space.inl diff --git a/Libraries/glm/gtx/color_space_YCoCg.hpp b/thirdparty/glm/gtx/color_space_YCoCg.hpp similarity index 100% rename from Libraries/glm/gtx/color_space_YCoCg.hpp rename to thirdparty/glm/gtx/color_space_YCoCg.hpp diff --git a/Libraries/glm/gtx/color_space_YCoCg.inl b/thirdparty/glm/gtx/color_space_YCoCg.inl similarity index 100% rename from Libraries/glm/gtx/color_space_YCoCg.inl rename to thirdparty/glm/gtx/color_space_YCoCg.inl diff --git a/Libraries/glm/gtx/compatibility.hpp b/thirdparty/glm/gtx/compatibility.hpp similarity index 100% rename from Libraries/glm/gtx/compatibility.hpp rename to thirdparty/glm/gtx/compatibility.hpp diff --git a/Libraries/glm/gtx/compatibility.inl b/thirdparty/glm/gtx/compatibility.inl similarity index 100% rename from Libraries/glm/gtx/compatibility.inl rename to thirdparty/glm/gtx/compatibility.inl diff --git a/Libraries/glm/gtx/component_wise.hpp b/thirdparty/glm/gtx/component_wise.hpp similarity index 100% rename from Libraries/glm/gtx/component_wise.hpp rename to thirdparty/glm/gtx/component_wise.hpp diff --git a/Libraries/glm/gtx/component_wise.inl b/thirdparty/glm/gtx/component_wise.inl similarity index 100% rename from Libraries/glm/gtx/component_wise.inl rename to thirdparty/glm/gtx/component_wise.inl diff --git a/Libraries/glm/gtx/constants.hpp b/thirdparty/glm/gtx/constants.hpp similarity index 100% rename from Libraries/glm/gtx/constants.hpp rename to thirdparty/glm/gtx/constants.hpp diff --git a/Libraries/glm/gtx/constants.inl b/thirdparty/glm/gtx/constants.inl similarity index 100% rename from Libraries/glm/gtx/constants.inl rename to thirdparty/glm/gtx/constants.inl diff --git a/Libraries/glm/gtx/epsilon.hpp b/thirdparty/glm/gtx/epsilon.hpp similarity index 100% rename from Libraries/glm/gtx/epsilon.hpp rename to thirdparty/glm/gtx/epsilon.hpp diff --git a/Libraries/glm/gtx/epsilon.inl b/thirdparty/glm/gtx/epsilon.inl similarity index 100% rename from Libraries/glm/gtx/epsilon.inl rename to thirdparty/glm/gtx/epsilon.inl diff --git a/Libraries/glm/gtx/euler_angles.hpp b/thirdparty/glm/gtx/euler_angles.hpp similarity index 100% rename from Libraries/glm/gtx/euler_angles.hpp rename to thirdparty/glm/gtx/euler_angles.hpp diff --git a/Libraries/glm/gtx/euler_angles.inl b/thirdparty/glm/gtx/euler_angles.inl similarity index 100% rename from Libraries/glm/gtx/euler_angles.inl rename to thirdparty/glm/gtx/euler_angles.inl diff --git a/Libraries/glm/gtx/extend.hpp b/thirdparty/glm/gtx/extend.hpp similarity index 100% rename from Libraries/glm/gtx/extend.hpp rename to thirdparty/glm/gtx/extend.hpp diff --git a/Libraries/glm/gtx/extend.inl b/thirdparty/glm/gtx/extend.inl similarity index 100% rename from Libraries/glm/gtx/extend.inl rename to thirdparty/glm/gtx/extend.inl diff --git a/Libraries/glm/gtx/extented_min_max.hpp b/thirdparty/glm/gtx/extented_min_max.hpp similarity index 100% rename from Libraries/glm/gtx/extented_min_max.hpp rename to thirdparty/glm/gtx/extented_min_max.hpp diff --git a/Libraries/glm/gtx/extented_min_max.inl b/thirdparty/glm/gtx/extented_min_max.inl similarity index 100% rename from Libraries/glm/gtx/extented_min_max.inl rename to thirdparty/glm/gtx/extented_min_max.inl diff --git a/Libraries/glm/gtx/fast_exponential.hpp b/thirdparty/glm/gtx/fast_exponential.hpp similarity index 100% rename from Libraries/glm/gtx/fast_exponential.hpp rename to thirdparty/glm/gtx/fast_exponential.hpp diff --git a/Libraries/glm/gtx/fast_exponential.inl b/thirdparty/glm/gtx/fast_exponential.inl similarity index 100% rename from Libraries/glm/gtx/fast_exponential.inl rename to thirdparty/glm/gtx/fast_exponential.inl diff --git a/Libraries/glm/gtx/fast_square_root.hpp b/thirdparty/glm/gtx/fast_square_root.hpp similarity index 100% rename from Libraries/glm/gtx/fast_square_root.hpp rename to thirdparty/glm/gtx/fast_square_root.hpp diff --git a/Libraries/glm/gtx/fast_square_root.inl b/thirdparty/glm/gtx/fast_square_root.inl similarity index 100% rename from Libraries/glm/gtx/fast_square_root.inl rename to thirdparty/glm/gtx/fast_square_root.inl diff --git a/Libraries/glm/gtx/fast_trigonometry.hpp b/thirdparty/glm/gtx/fast_trigonometry.hpp similarity index 100% rename from Libraries/glm/gtx/fast_trigonometry.hpp rename to thirdparty/glm/gtx/fast_trigonometry.hpp diff --git a/Libraries/glm/gtx/fast_trigonometry.inl b/thirdparty/glm/gtx/fast_trigonometry.inl similarity index 100% rename from Libraries/glm/gtx/fast_trigonometry.inl rename to thirdparty/glm/gtx/fast_trigonometry.inl diff --git a/Libraries/glm/gtx/gradient_paint.hpp b/thirdparty/glm/gtx/gradient_paint.hpp similarity index 100% rename from Libraries/glm/gtx/gradient_paint.hpp rename to thirdparty/glm/gtx/gradient_paint.hpp diff --git a/Libraries/glm/gtx/gradient_paint.inl b/thirdparty/glm/gtx/gradient_paint.inl similarity index 100% rename from Libraries/glm/gtx/gradient_paint.inl rename to thirdparty/glm/gtx/gradient_paint.inl diff --git a/Libraries/glm/gtx/handed_coordinate_space.hpp b/thirdparty/glm/gtx/handed_coordinate_space.hpp similarity index 100% rename from Libraries/glm/gtx/handed_coordinate_space.hpp rename to thirdparty/glm/gtx/handed_coordinate_space.hpp diff --git a/Libraries/glm/gtx/handed_coordinate_space.inl b/thirdparty/glm/gtx/handed_coordinate_space.inl similarity index 100% rename from Libraries/glm/gtx/handed_coordinate_space.inl rename to thirdparty/glm/gtx/handed_coordinate_space.inl diff --git a/Libraries/glm/gtx/inertia.hpp b/thirdparty/glm/gtx/inertia.hpp similarity index 100% rename from Libraries/glm/gtx/inertia.hpp rename to thirdparty/glm/gtx/inertia.hpp diff --git a/Libraries/glm/gtx/inertia.inl b/thirdparty/glm/gtx/inertia.inl similarity index 100% rename from Libraries/glm/gtx/inertia.inl rename to thirdparty/glm/gtx/inertia.inl diff --git a/Libraries/glm/gtx/int_10_10_10_2.hpp b/thirdparty/glm/gtx/int_10_10_10_2.hpp similarity index 100% rename from Libraries/glm/gtx/int_10_10_10_2.hpp rename to thirdparty/glm/gtx/int_10_10_10_2.hpp diff --git a/Libraries/glm/gtx/int_10_10_10_2.inl b/thirdparty/glm/gtx/int_10_10_10_2.inl similarity index 100% rename from Libraries/glm/gtx/int_10_10_10_2.inl rename to thirdparty/glm/gtx/int_10_10_10_2.inl diff --git a/Libraries/glm/gtx/integer.hpp b/thirdparty/glm/gtx/integer.hpp similarity index 100% rename from Libraries/glm/gtx/integer.hpp rename to thirdparty/glm/gtx/integer.hpp diff --git a/Libraries/glm/gtx/integer.inl b/thirdparty/glm/gtx/integer.inl similarity index 100% rename from Libraries/glm/gtx/integer.inl rename to thirdparty/glm/gtx/integer.inl diff --git a/Libraries/glm/gtx/intersect.hpp b/thirdparty/glm/gtx/intersect.hpp similarity index 100% rename from Libraries/glm/gtx/intersect.hpp rename to thirdparty/glm/gtx/intersect.hpp diff --git a/Libraries/glm/gtx/intersect.inl b/thirdparty/glm/gtx/intersect.inl similarity index 100% rename from Libraries/glm/gtx/intersect.inl rename to thirdparty/glm/gtx/intersect.inl diff --git a/Libraries/glm/gtx/log_base.hpp b/thirdparty/glm/gtx/log_base.hpp similarity index 100% rename from Libraries/glm/gtx/log_base.hpp rename to thirdparty/glm/gtx/log_base.hpp diff --git a/Libraries/glm/gtx/log_base.inl b/thirdparty/glm/gtx/log_base.inl similarity index 100% rename from Libraries/glm/gtx/log_base.inl rename to thirdparty/glm/gtx/log_base.inl diff --git a/Libraries/glm/gtx/matrix_cross_product.hpp b/thirdparty/glm/gtx/matrix_cross_product.hpp similarity index 100% rename from Libraries/glm/gtx/matrix_cross_product.hpp rename to thirdparty/glm/gtx/matrix_cross_product.hpp diff --git a/Libraries/glm/gtx/matrix_cross_product.inl b/thirdparty/glm/gtx/matrix_cross_product.inl similarity index 100% rename from Libraries/glm/gtx/matrix_cross_product.inl rename to thirdparty/glm/gtx/matrix_cross_product.inl diff --git a/Libraries/glm/gtx/matrix_interpolation.hpp b/thirdparty/glm/gtx/matrix_interpolation.hpp similarity index 100% rename from Libraries/glm/gtx/matrix_interpolation.hpp rename to thirdparty/glm/gtx/matrix_interpolation.hpp diff --git a/Libraries/glm/gtx/matrix_interpolation.inl b/thirdparty/glm/gtx/matrix_interpolation.inl similarity index 100% rename from Libraries/glm/gtx/matrix_interpolation.inl rename to thirdparty/glm/gtx/matrix_interpolation.inl diff --git a/Libraries/glm/gtx/matrix_major_storage.hpp b/thirdparty/glm/gtx/matrix_major_storage.hpp similarity index 100% rename from Libraries/glm/gtx/matrix_major_storage.hpp rename to thirdparty/glm/gtx/matrix_major_storage.hpp diff --git a/Libraries/glm/gtx/matrix_major_storage.inl b/thirdparty/glm/gtx/matrix_major_storage.inl similarity index 100% rename from Libraries/glm/gtx/matrix_major_storage.inl rename to thirdparty/glm/gtx/matrix_major_storage.inl diff --git a/Libraries/glm/gtx/matrix_operation.hpp b/thirdparty/glm/gtx/matrix_operation.hpp similarity index 100% rename from Libraries/glm/gtx/matrix_operation.hpp rename to thirdparty/glm/gtx/matrix_operation.hpp diff --git a/Libraries/glm/gtx/matrix_operation.inl b/thirdparty/glm/gtx/matrix_operation.inl similarity index 100% rename from Libraries/glm/gtx/matrix_operation.inl rename to thirdparty/glm/gtx/matrix_operation.inl diff --git a/Libraries/glm/gtx/matrix_query.hpp b/thirdparty/glm/gtx/matrix_query.hpp similarity index 100% rename from Libraries/glm/gtx/matrix_query.hpp rename to thirdparty/glm/gtx/matrix_query.hpp diff --git a/Libraries/glm/gtx/matrix_query.inl b/thirdparty/glm/gtx/matrix_query.inl similarity index 100% rename from Libraries/glm/gtx/matrix_query.inl rename to thirdparty/glm/gtx/matrix_query.inl diff --git a/Libraries/glm/gtx/mixed_product.hpp b/thirdparty/glm/gtx/mixed_product.hpp similarity index 100% rename from Libraries/glm/gtx/mixed_product.hpp rename to thirdparty/glm/gtx/mixed_product.hpp diff --git a/Libraries/glm/gtx/mixed_product.inl b/thirdparty/glm/gtx/mixed_product.inl similarity index 100% rename from Libraries/glm/gtx/mixed_product.inl rename to thirdparty/glm/gtx/mixed_product.inl diff --git a/Libraries/glm/gtx/multiple.hpp b/thirdparty/glm/gtx/multiple.hpp similarity index 100% rename from Libraries/glm/gtx/multiple.hpp rename to thirdparty/glm/gtx/multiple.hpp diff --git a/Libraries/glm/gtx/multiple.inl b/thirdparty/glm/gtx/multiple.inl similarity index 100% rename from Libraries/glm/gtx/multiple.inl rename to thirdparty/glm/gtx/multiple.inl diff --git a/Libraries/glm/gtx/noise.hpp b/thirdparty/glm/gtx/noise.hpp similarity index 100% rename from Libraries/glm/gtx/noise.hpp rename to thirdparty/glm/gtx/noise.hpp diff --git a/Libraries/glm/gtx/noise.inl b/thirdparty/glm/gtx/noise.inl similarity index 100% rename from Libraries/glm/gtx/noise.inl rename to thirdparty/glm/gtx/noise.inl diff --git a/Libraries/glm/gtx/norm.hpp b/thirdparty/glm/gtx/norm.hpp similarity index 100% rename from Libraries/glm/gtx/norm.hpp rename to thirdparty/glm/gtx/norm.hpp diff --git a/Libraries/glm/gtx/norm.inl b/thirdparty/glm/gtx/norm.inl similarity index 100% rename from Libraries/glm/gtx/norm.inl rename to thirdparty/glm/gtx/norm.inl diff --git a/Libraries/glm/gtx/normal.hpp b/thirdparty/glm/gtx/normal.hpp similarity index 100% rename from Libraries/glm/gtx/normal.hpp rename to thirdparty/glm/gtx/normal.hpp diff --git a/Libraries/glm/gtx/normal.inl b/thirdparty/glm/gtx/normal.inl similarity index 100% rename from Libraries/glm/gtx/normal.inl rename to thirdparty/glm/gtx/normal.inl diff --git a/Libraries/glm/gtx/normalize_dot.hpp b/thirdparty/glm/gtx/normalize_dot.hpp similarity index 100% rename from Libraries/glm/gtx/normalize_dot.hpp rename to thirdparty/glm/gtx/normalize_dot.hpp diff --git a/Libraries/glm/gtx/normalize_dot.inl b/thirdparty/glm/gtx/normalize_dot.inl similarity index 100% rename from Libraries/glm/gtx/normalize_dot.inl rename to thirdparty/glm/gtx/normalize_dot.inl diff --git a/Libraries/glm/gtx/number_precision.hpp b/thirdparty/glm/gtx/number_precision.hpp similarity index 100% rename from Libraries/glm/gtx/number_precision.hpp rename to thirdparty/glm/gtx/number_precision.hpp diff --git a/Libraries/glm/gtx/number_precision.inl b/thirdparty/glm/gtx/number_precision.inl similarity index 100% rename from Libraries/glm/gtx/number_precision.inl rename to thirdparty/glm/gtx/number_precision.inl diff --git a/Libraries/glm/gtx/ocl_type.hpp b/thirdparty/glm/gtx/ocl_type.hpp similarity index 100% rename from Libraries/glm/gtx/ocl_type.hpp rename to thirdparty/glm/gtx/ocl_type.hpp diff --git a/Libraries/glm/gtx/ocl_type.inl b/thirdparty/glm/gtx/ocl_type.inl similarity index 100% rename from Libraries/glm/gtx/ocl_type.inl rename to thirdparty/glm/gtx/ocl_type.inl diff --git a/Libraries/glm/gtx/optimum_pow.hpp b/thirdparty/glm/gtx/optimum_pow.hpp similarity index 100% rename from Libraries/glm/gtx/optimum_pow.hpp rename to thirdparty/glm/gtx/optimum_pow.hpp diff --git a/Libraries/glm/gtx/optimum_pow.inl b/thirdparty/glm/gtx/optimum_pow.inl similarity index 100% rename from Libraries/glm/gtx/optimum_pow.inl rename to thirdparty/glm/gtx/optimum_pow.inl diff --git a/Libraries/glm/gtx/orthonormalize.hpp b/thirdparty/glm/gtx/orthonormalize.hpp similarity index 100% rename from Libraries/glm/gtx/orthonormalize.hpp rename to thirdparty/glm/gtx/orthonormalize.hpp diff --git a/Libraries/glm/gtx/orthonormalize.inl b/thirdparty/glm/gtx/orthonormalize.inl similarity index 100% rename from Libraries/glm/gtx/orthonormalize.inl rename to thirdparty/glm/gtx/orthonormalize.inl diff --git a/Libraries/glm/gtx/perpendicular.hpp b/thirdparty/glm/gtx/perpendicular.hpp similarity index 100% rename from Libraries/glm/gtx/perpendicular.hpp rename to thirdparty/glm/gtx/perpendicular.hpp diff --git a/Libraries/glm/gtx/perpendicular.inl b/thirdparty/glm/gtx/perpendicular.inl similarity index 100% rename from Libraries/glm/gtx/perpendicular.inl rename to thirdparty/glm/gtx/perpendicular.inl diff --git a/Libraries/glm/gtx/polar_coordinates.hpp b/thirdparty/glm/gtx/polar_coordinates.hpp similarity index 100% rename from Libraries/glm/gtx/polar_coordinates.hpp rename to thirdparty/glm/gtx/polar_coordinates.hpp diff --git a/Libraries/glm/gtx/polar_coordinates.inl b/thirdparty/glm/gtx/polar_coordinates.inl similarity index 100% rename from Libraries/glm/gtx/polar_coordinates.inl rename to thirdparty/glm/gtx/polar_coordinates.inl diff --git a/Libraries/glm/gtx/projection.hpp b/thirdparty/glm/gtx/projection.hpp similarity index 100% rename from Libraries/glm/gtx/projection.hpp rename to thirdparty/glm/gtx/projection.hpp diff --git a/Libraries/glm/gtx/projection.inl b/thirdparty/glm/gtx/projection.inl similarity index 100% rename from Libraries/glm/gtx/projection.inl rename to thirdparty/glm/gtx/projection.inl diff --git a/Libraries/glm/gtx/quaternion.hpp b/thirdparty/glm/gtx/quaternion.hpp similarity index 100% rename from Libraries/glm/gtx/quaternion.hpp rename to thirdparty/glm/gtx/quaternion.hpp diff --git a/Libraries/glm/gtx/quaternion.inl b/thirdparty/glm/gtx/quaternion.inl similarity index 100% rename from Libraries/glm/gtx/quaternion.inl rename to thirdparty/glm/gtx/quaternion.inl diff --git a/Libraries/glm/gtx/random.hpp b/thirdparty/glm/gtx/random.hpp similarity index 100% rename from Libraries/glm/gtx/random.hpp rename to thirdparty/glm/gtx/random.hpp diff --git a/Libraries/glm/gtx/random.inl b/thirdparty/glm/gtx/random.inl similarity index 100% rename from Libraries/glm/gtx/random.inl rename to thirdparty/glm/gtx/random.inl diff --git a/Libraries/glm/gtx/raw_data.hpp b/thirdparty/glm/gtx/raw_data.hpp similarity index 100% rename from Libraries/glm/gtx/raw_data.hpp rename to thirdparty/glm/gtx/raw_data.hpp diff --git a/Libraries/glm/gtx/raw_data.inl b/thirdparty/glm/gtx/raw_data.inl similarity index 100% rename from Libraries/glm/gtx/raw_data.inl rename to thirdparty/glm/gtx/raw_data.inl diff --git a/Libraries/glm/gtx/reciprocal.hpp b/thirdparty/glm/gtx/reciprocal.hpp similarity index 100% rename from Libraries/glm/gtx/reciprocal.hpp rename to thirdparty/glm/gtx/reciprocal.hpp diff --git a/Libraries/glm/gtx/reciprocal.inl b/thirdparty/glm/gtx/reciprocal.inl similarity index 100% rename from Libraries/glm/gtx/reciprocal.inl rename to thirdparty/glm/gtx/reciprocal.inl diff --git a/Libraries/glm/gtx/rotate_vector.hpp b/thirdparty/glm/gtx/rotate_vector.hpp similarity index 100% rename from Libraries/glm/gtx/rotate_vector.hpp rename to thirdparty/glm/gtx/rotate_vector.hpp diff --git a/Libraries/glm/gtx/rotate_vector.inl b/thirdparty/glm/gtx/rotate_vector.inl similarity index 100% rename from Libraries/glm/gtx/rotate_vector.inl rename to thirdparty/glm/gtx/rotate_vector.inl diff --git a/Libraries/glm/gtx/simd_mat4.hpp b/thirdparty/glm/gtx/simd_mat4.hpp similarity index 100% rename from Libraries/glm/gtx/simd_mat4.hpp rename to thirdparty/glm/gtx/simd_mat4.hpp diff --git a/Libraries/glm/gtx/simd_mat4.inl b/thirdparty/glm/gtx/simd_mat4.inl similarity index 100% rename from Libraries/glm/gtx/simd_mat4.inl rename to thirdparty/glm/gtx/simd_mat4.inl diff --git a/Libraries/glm/gtx/simd_vec4.hpp b/thirdparty/glm/gtx/simd_vec4.hpp similarity index 100% rename from Libraries/glm/gtx/simd_vec4.hpp rename to thirdparty/glm/gtx/simd_vec4.hpp diff --git a/Libraries/glm/gtx/simd_vec4.inl b/thirdparty/glm/gtx/simd_vec4.inl similarity index 100% rename from Libraries/glm/gtx/simd_vec4.inl rename to thirdparty/glm/gtx/simd_vec4.inl diff --git a/Libraries/glm/gtx/spline.hpp b/thirdparty/glm/gtx/spline.hpp similarity index 100% rename from Libraries/glm/gtx/spline.hpp rename to thirdparty/glm/gtx/spline.hpp diff --git a/Libraries/glm/gtx/spline.inl b/thirdparty/glm/gtx/spline.inl similarity index 100% rename from Libraries/glm/gtx/spline.inl rename to thirdparty/glm/gtx/spline.inl diff --git a/Libraries/glm/gtx/std_based_type.hpp b/thirdparty/glm/gtx/std_based_type.hpp similarity index 100% rename from Libraries/glm/gtx/std_based_type.hpp rename to thirdparty/glm/gtx/std_based_type.hpp diff --git a/Libraries/glm/gtx/std_based_type.inl b/thirdparty/glm/gtx/std_based_type.inl similarity index 100% rename from Libraries/glm/gtx/std_based_type.inl rename to thirdparty/glm/gtx/std_based_type.inl diff --git a/Libraries/glm/gtx/string_cast.hpp b/thirdparty/glm/gtx/string_cast.hpp similarity index 100% rename from Libraries/glm/gtx/string_cast.hpp rename to thirdparty/glm/gtx/string_cast.hpp diff --git a/Libraries/glm/gtx/string_cast.inl b/thirdparty/glm/gtx/string_cast.inl similarity index 100% rename from Libraries/glm/gtx/string_cast.inl rename to thirdparty/glm/gtx/string_cast.inl diff --git a/Libraries/glm/gtx/transform.hpp b/thirdparty/glm/gtx/transform.hpp similarity index 100% rename from Libraries/glm/gtx/transform.hpp rename to thirdparty/glm/gtx/transform.hpp diff --git a/Libraries/glm/gtx/transform.inl b/thirdparty/glm/gtx/transform.inl similarity index 100% rename from Libraries/glm/gtx/transform.inl rename to thirdparty/glm/gtx/transform.inl diff --git a/Libraries/glm/gtx/transform2.hpp b/thirdparty/glm/gtx/transform2.hpp similarity index 100% rename from Libraries/glm/gtx/transform2.hpp rename to thirdparty/glm/gtx/transform2.hpp diff --git a/Libraries/glm/gtx/transform2.inl b/thirdparty/glm/gtx/transform2.inl similarity index 100% rename from Libraries/glm/gtx/transform2.inl rename to thirdparty/glm/gtx/transform2.inl diff --git a/Libraries/glm/gtx/ulp.hpp b/thirdparty/glm/gtx/ulp.hpp similarity index 100% rename from Libraries/glm/gtx/ulp.hpp rename to thirdparty/glm/gtx/ulp.hpp diff --git a/Libraries/glm/gtx/ulp.inl b/thirdparty/glm/gtx/ulp.inl similarity index 100% rename from Libraries/glm/gtx/ulp.inl rename to thirdparty/glm/gtx/ulp.inl diff --git a/Libraries/glm/gtx/unsigned_int.hpp b/thirdparty/glm/gtx/unsigned_int.hpp similarity index 100% rename from Libraries/glm/gtx/unsigned_int.hpp rename to thirdparty/glm/gtx/unsigned_int.hpp diff --git a/Libraries/glm/gtx/unsigned_int.inl b/thirdparty/glm/gtx/unsigned_int.inl similarity index 100% rename from Libraries/glm/gtx/unsigned_int.inl rename to thirdparty/glm/gtx/unsigned_int.inl diff --git a/Libraries/glm/gtx/vec1.hpp b/thirdparty/glm/gtx/vec1.hpp similarity index 100% rename from Libraries/glm/gtx/vec1.hpp rename to thirdparty/glm/gtx/vec1.hpp diff --git a/Libraries/glm/gtx/vec1.inl b/thirdparty/glm/gtx/vec1.inl similarity index 100% rename from Libraries/glm/gtx/vec1.inl rename to thirdparty/glm/gtx/vec1.inl diff --git a/Libraries/glm/gtx/vector_access.hpp b/thirdparty/glm/gtx/vector_access.hpp similarity index 100% rename from Libraries/glm/gtx/vector_access.hpp rename to thirdparty/glm/gtx/vector_access.hpp diff --git a/Libraries/glm/gtx/vector_access.inl b/thirdparty/glm/gtx/vector_access.inl similarity index 100% rename from Libraries/glm/gtx/vector_access.inl rename to thirdparty/glm/gtx/vector_access.inl diff --git a/Libraries/glm/gtx/vector_angle.hpp b/thirdparty/glm/gtx/vector_angle.hpp similarity index 100% rename from Libraries/glm/gtx/vector_angle.hpp rename to thirdparty/glm/gtx/vector_angle.hpp diff --git a/Libraries/glm/gtx/vector_angle.inl b/thirdparty/glm/gtx/vector_angle.inl similarity index 100% rename from Libraries/glm/gtx/vector_angle.inl rename to thirdparty/glm/gtx/vector_angle.inl diff --git a/Libraries/glm/gtx/vector_query.hpp b/thirdparty/glm/gtx/vector_query.hpp similarity index 100% rename from Libraries/glm/gtx/vector_query.hpp rename to thirdparty/glm/gtx/vector_query.hpp diff --git a/Libraries/glm/gtx/vector_query.inl b/thirdparty/glm/gtx/vector_query.inl similarity index 100% rename from Libraries/glm/gtx/vector_query.inl rename to thirdparty/glm/gtx/vector_query.inl diff --git a/Libraries/glm/gtx/verbose_operator.hpp b/thirdparty/glm/gtx/verbose_operator.hpp similarity index 100% rename from Libraries/glm/gtx/verbose_operator.hpp rename to thirdparty/glm/gtx/verbose_operator.hpp diff --git a/Libraries/glm/gtx/verbose_operator.inl b/thirdparty/glm/gtx/verbose_operator.inl similarity index 100% rename from Libraries/glm/gtx/verbose_operator.inl rename to thirdparty/glm/gtx/verbose_operator.inl diff --git a/Libraries/glm/gtx/wrap.hpp b/thirdparty/glm/gtx/wrap.hpp similarity index 100% rename from Libraries/glm/gtx/wrap.hpp rename to thirdparty/glm/gtx/wrap.hpp diff --git a/Libraries/glm/gtx/wrap.inl b/thirdparty/glm/gtx/wrap.inl similarity index 100% rename from Libraries/glm/gtx/wrap.inl rename to thirdparty/glm/gtx/wrap.inl diff --git a/Libraries/glm/virtrev/xstream.hpp b/thirdparty/glm/virtrev/xstream.hpp similarity index 100% rename from Libraries/glm/virtrev/xstream.hpp rename to thirdparty/glm/virtrev/xstream.hpp