add all extra CMake files to gitignore

This commit is contained in:
Stephen Birarda 2013-02-06 18:26:19 -08:00
parent 1111e4837e
commit 24240a709c
51 changed files with 27 additions and 2823 deletions

9
.gitignore vendored
View file

@ -1,3 +1,12 @@
# CMake
CMakeCache.txt
CMakeFiles/
CMakeScripts/
cmake_install.cmake
# Xcode
*.xcodeproj
*.xcworkspace
.DS_Store
xcuserdata
*.pbxuser

5
CMakeLists.txt Normal file
View file

@ -0,0 +1,5 @@
cmake_minimum_required (VERSION 2.8)
project (hifi)
add_subdirectory (interface)

View file

@ -1,293 +0,0 @@
# 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

View file

@ -1,55 +0,0 @@
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 "")

View file

@ -1,56 +0,0 @@
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 "")

View file

@ -1,15 +0,0 @@
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)

View file

@ -1,393 +0,0 @@
#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

View file

@ -1,2 +0,0 @@
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

View file

@ -1,2 +0,0 @@
dependencies: \
/Users/birarda/code/worklist/interface/interface/CMakeFiles/2.8.10.2/CompilerIdC/CMakeCCompilerId.c

View file

@ -1 +0,0 @@
/Users/birarda/code/worklist/interface/interface/CMakeFiles/2.8.10.2/CompilerIdC/./CompilerIdC.build/Debug/CompilerIdC.build/Objects-normal/i386/CMakeCCompilerId.o

View file

@ -1,68 +0,0 @@
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-

View file

@ -1,107 +0,0 @@
// !$*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 = "<group>"; };
08FB7794FE84155DC02AAC07 = {
isa = PBXGroup;
children = (
2C18F0B415DC1DC700593670,
);
name = CompilerIdC;
sourceTree = "<group>";
};
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;
}

View file

@ -1,375 +0,0 @@
/* 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;
}

View file

@ -1,2 +0,0 @@
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

View file

@ -1,2 +0,0 @@
dependencies: \
/Users/birarda/code/worklist/interface/interface/CMakeFiles/2.8.10.2/CompilerIdCXX/CMakeCXXCompilerId.cpp

View file

@ -1 +0,0 @@
/Users/birarda/code/worklist/interface/interface/CMakeFiles/2.8.10.2/CompilerIdCXX/./CompilerIdCXX.build/Debug/CompilerIdCXX.build/Objects-normal/i386/CMakeCXXCompilerId.o

View file

@ -1,68 +0,0 @@
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-

View file

@ -1,107 +0,0 @@
// !$*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 = "<group>"; };
08FB7794FE84155DC02AAC07 = {
isa = PBXGroup;
children = (
2C18F0B415DC1DC700593670,
);
name = CompilerIdCXX;
sourceTree = "<group>";
};
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;
}

View file

@ -1,187 +0,0 @@
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 **

View file

@ -1,3 +0,0 @@
/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

View file

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

View file

@ -1,3 +1,11 @@
cmake_minimum_required(VERSION 2.8)
project(interface)
add_subdirectory(src)
cmake_minimum_required (VERSION 2.8)
project (interface)
add_subdirectory (src)
# third party libraries
find_package (Portaudio REQUIRED)
include_directories (${Portaudio_INCLUDE_DIRS})
set (LIBS ${LIBS} ${Portaudio_LIBRARIES})
target_link_libraries (interface LIBS)

View file

@ -1,10 +0,0 @@
# 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

View file

@ -1,10 +0,0 @@
# 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

View file

@ -1,10 +0,0 @@
# 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

View file

@ -1,10 +0,0 @@
# 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

View file

@ -1,22 +0,0 @@
# 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

View file

@ -1,32 +0,0 @@
# 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

View file

@ -1,10 +0,0 @@
# 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

View file

@ -1,10 +0,0 @@
# 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

View file

@ -1,10 +0,0 @@
# 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

View file

@ -1,10 +0,0 @@
# 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

View file

@ -1,45 +0,0 @@
# 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)

View file

@ -1,821 +0,0 @@
// !$*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 = "<group>";
};
682B6B177CC24AC8A25B9A5A /* Sources */ = {
isa = PBXGroup;
children = (
7973360B89644846A52F8CF2 /* ALL_BUILD */,
0F1620F6D9514799B33F7AB5 /* ZERO_CHECK */,
59281A4F721E4509BD87C941 /* interface */,
);
name = Sources;
sourceTree = "<group>";
};
6D6ECB79728B47428AD92760 /* Resources */ = {
isa = PBXGroup;
children = (
);
name = Resources;
sourceTree = "<group>";
};
7973360B89644846A52F8CF2 /* ALL_BUILD */ = {
isa = PBXGroup;
children = (
3481E6C0C89B4DC394180358 /* CMake Rules */,
9C2009C9FD894C47A25D8C30 /* /Users/birarda/code/worklist/interface/interface/CMakeLists.txt */,
);
name = ALL_BUILD;
sourceTree = "<group>";
};
3481E6C0C89B4DC394180358 /* CMake Rules */ = {
isa = PBXGroup;
children = (
);
name = "CMake Rules";
sourceTree = "<group>";
};
0F1620F6D9514799B33F7AB5 /* ZERO_CHECK */ = {
isa = PBXGroup;
children = (
190BEABE5D06420B9F6E96B1 /* CMake Rules */,
9C2009C9FD894C47A25D8C30 /* /Users/birarda/code/worklist/interface/interface/CMakeLists.txt */,
);
name = ZERO_CHECK;
sourceTree = "<group>";
};
190BEABE5D06420B9F6E96B1 /* CMake Rules */ = {
isa = PBXGroup;
children = (
);
name = "CMake Rules";
sourceTree = "<group>";
};
59281A4F721E4509BD87C941 /* interface */ = {
isa = PBXGroup;
children = (
F05098812ADE4F96A6408A0E /* Source Files */,
CCACF50D0AC7485D87C94529 /* Header Files */,
B02C8041160442A9A3BFE63D /* /Users/birarda/code/worklist/interface/interface/src/CMakeLists.txt */,
);
name = interface;
sourceTree = "<group>";
};
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 = "<group>";
};
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 = "<group>";
};
ECB823F0564C41B7B0A9D7AE /* Products */ = {
isa = PBXGroup;
children = (
E0790DACE7CB43E6890D4BEC /* interface */,
);
name = Products;
sourceTree = "<group>";
};
/* 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;
}

View file

@ -1,7 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<Workspace
version = "1.0">
<FileRef
location = "self:interface.xcodeproj">
</FileRef>
</Workspace>

View file

@ -1,2 +1,2 @@
file(GLOB INTERFACE_SRCS *.cpp *.h)
add_executable(interface ${INTERFACE_SRCS})
file (GLOB INTERFACE_SRCS *.cpp *.h)
add_executable (interface ${INTERFACE_SRCS})

View file

@ -1,10 +0,0 @@
# 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)

View file

@ -1,10 +0,0 @@
# 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)

View file

@ -1,10 +0,0 @@
# 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)

View file

@ -1,10 +0,0 @@
# 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)

View file

@ -1,29 +0,0 @@
# 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)