Skip to content

Commit

Permalink
initial with project
Browse files Browse the repository at this point in the history
  • Loading branch information
ddiakopoulos committed Jul 19, 2015
0 parents commit 5e067e0
Show file tree
Hide file tree
Showing 36 changed files with 19,691 additions and 0 deletions.
41 changes: 41 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
# User-specific files
*.suo
*.user

# Build results
[Dd]ebug/
[Rr]elease/
[Oo]bj/

*.ilk
*.obj
*.pch
*.pdb
*.log

# Visual C++ cache files
ipch/
*.opensdf
*.sdf

# Visual Studio profiler
*.psess
*.vsp
*.vspx

# XCode
.DS_Store
build/
*.pbxuser
!default.pbxuser
*.mode1v3
!default.mode1v3
*.mode2v3
!default.mode2v3
*.perspectivev3
!default.perspectivev3
xcuserdata
*.xccheckout
*.moved-aside
DerivedData
*.xcuserstate
Empty file added COPYING
Empty file.
Empty file added LICENSE
Empty file.
285 changes: 285 additions & 0 deletions PointcloudViewer/PointcloudViewer.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,285 @@
// !$*UTF8*$!
{
archiveVersion = 1;
classes = {
};
objectVersion = 46;
objects = {

/* Begin PBXBuildFile section */
08567BB51B5B59E800EB6C0D /* main.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 08567BB41B5B59E800EB6C0D /* main.cpp */; };
08567BD31B5B5A4A00EB6C0D /* librealsense.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 08567BD21B5B5A4A00EB6C0D /* librealsense.a */; };
08567BD71B5B5AA300EB6C0D /* GfxUtil.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 08567BD51B5B5AA300EB6C0D /* GfxUtil.cpp */; };
08567C041B5B5D6B00EB6C0D /* libglfw3.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 08567C031B5B5D6B00EB6C0D /* libglfw3.a */; };
/* End PBXBuildFile section */

/* Begin PBXCopyFilesBuildPhase section */
08567BAF1B5B59E800EB6C0D /* CopyFiles */ = {
isa = PBXCopyFilesBuildPhase;
buildActionMask = 2147483647;
dstPath = /usr/share/man/man1/;
dstSubfolderSpec = 0;
files = (
);
runOnlyForDeploymentPostprocessing = 1;
};
/* End PBXCopyFilesBuildPhase section */

/* Begin PBXFileReference section */
08567BB11B5B59E800EB6C0D /* PointcloudViewer */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = PointcloudViewer; sourceTree = BUILT_PRODUCTS_DIR; };
08567BB41B5B59E800EB6C0D /* main.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = main.cpp; sourceTree = "<group>"; };
08567BD21B5B5A4A00EB6C0D /* librealsense.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = librealsense.a; path = ../librealsense/build/Debug/librealsense.a; sourceTree = "<group>"; };
08567BD51B5B5AA300EB6C0D /* GfxUtil.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = GfxUtil.cpp; sourceTree = "<group>"; };
08567BD61B5B5AA300EB6C0D /* GfxUtil.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GfxUtil.h; sourceTree = "<group>"; };
08567C031B5B5D6B00EB6C0D /* libglfw3.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = libglfw3.a; path = ../third_party/glfw/bin/osx/libglfw3.a; sourceTree = "<group>"; };
/* End PBXFileReference section */

/* Begin PBXFrameworksBuildPhase section */
08567BAE1B5B59E800EB6C0D /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
08567BD31B5B5A4A00EB6C0D /* librealsense.a in Frameworks */,
08567C041B5B5D6B00EB6C0D /* libglfw3.a in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXFrameworksBuildPhase section */

/* Begin PBXGroup section */
08567BA81B5B59E800EB6C0D = {
isa = PBXGroup;
children = (
08567BD21B5B5A4A00EB6C0D /* librealsense.a */,
08567C031B5B5D6B00EB6C0D /* libglfw3.a */,
08567BD41B5B5A5400EB6C0D /* third_party */,
08567BB31B5B59E800EB6C0D /* PointcloudViewer */,
08567BB21B5B59E800EB6C0D /* Products */,
);
sourceTree = "<group>";
};
08567BB21B5B59E800EB6C0D /* Products */ = {
isa = PBXGroup;
children = (
08567BB11B5B59E800EB6C0D /* PointcloudViewer */,
);
name = Products;
sourceTree = "<group>";
};
08567BB31B5B59E800EB6C0D /* PointcloudViewer */ = {
isa = PBXGroup;
children = (
08567BD51B5B5AA300EB6C0D /* GfxUtil.cpp */,
08567BD61B5B5AA300EB6C0D /* GfxUtil.h */,
08567BB41B5B59E800EB6C0D /* main.cpp */,
);
path = PointcloudViewer;
sourceTree = "<group>";
};
08567BD41B5B5A5400EB6C0D /* third_party */ = {
isa = PBXGroup;
children = (
);
name = third_party;
sourceTree = "<group>";
};
/* End PBXGroup section */

/* Begin PBXNativeTarget section */
08567BB01B5B59E800EB6C0D /* PointcloudViewer */ = {
isa = PBXNativeTarget;
buildConfigurationList = 08567BB81B5B59E800EB6C0D /* Build configuration list for PBXNativeTarget "PointcloudViewer" */;
buildPhases = (
08567BAD1B5B59E800EB6C0D /* Sources */,
08567BAE1B5B59E800EB6C0D /* Frameworks */,
08567BAF1B5B59E800EB6C0D /* CopyFiles */,
);
buildRules = (
);
dependencies = (
);
name = PointcloudViewer;
productName = PointcloudViewer;
productReference = 08567BB11B5B59E800EB6C0D /* PointcloudViewer */;
productType = "com.apple.product-type.tool";
};
/* End PBXNativeTarget section */

/* Begin PBXProject section */
08567BA91B5B59E800EB6C0D /* Project object */ = {
isa = PBXProject;
attributes = {
LastUpgradeCheck = 0620;
ORGANIZATIONNAME = "Dimitri Diakopoulos";
TargetAttributes = {
08567BB01B5B59E800EB6C0D = {
CreatedOnToolsVersion = 6.2;
};
};
};
buildConfigurationList = 08567BAC1B5B59E800EB6C0D /* Build configuration list for PBXProject "PointcloudViewer" */;
compatibilityVersion = "Xcode 3.2";
developmentRegion = English;
hasScannedForEncodings = 0;
knownRegions = (
en,
);
mainGroup = 08567BA81B5B59E800EB6C0D;
productRefGroup = 08567BB21B5B59E800EB6C0D /* Products */;
projectDirPath = "";
projectRoot = "";
targets = (
08567BB01B5B59E800EB6C0D /* PointcloudViewer */,
);
};
/* End PBXProject section */

/* Begin PBXSourcesBuildPhase section */
08567BAD1B5B59E800EB6C0D /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
08567BB51B5B59E800EB6C0D /* main.cpp in Sources */,
08567BD71B5B5AA300EB6C0D /* GfxUtil.cpp in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXSourcesBuildPhase section */

/* Begin XCBuildConfiguration section */
08567BB61B5B59E800EB6C0D /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
CLANG_CXX_LIBRARY = "libc++";
CLANG_ENABLE_MODULES = YES;
CLANG_ENABLE_OBJC_ARC = YES;
CLANG_WARN_BOOL_CONVERSION = YES;
CLANG_WARN_CONSTANT_CONVERSION = YES;
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
CLANG_WARN_EMPTY_BODY = YES;
CLANG_WARN_ENUM_CONVERSION = YES;
CLANG_WARN_INT_CONVERSION = YES;
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
CLANG_WARN_UNREACHABLE_CODE = YES;
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
COPY_PHASE_STRIP = NO;
ENABLE_STRICT_OBJC_MSGSEND = YES;
GCC_C_LANGUAGE_STANDARD = gnu99;
GCC_DYNAMIC_NO_PIC = NO;
GCC_OPTIMIZATION_LEVEL = 0;
GCC_PREPROCESSOR_DEFINITIONS = (
"DEBUG=1",
"$(inherited)",
);
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
GCC_WARN_UNDECLARED_SELECTOR = YES;
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
HEADER_SEARCH_PATHS = (
"$(inherited)",
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include,
"$(SRCROOT)/../third_party/libuvc/include",
"$(SRCROOT)/../third_party/glfw",
"$(SRCROOT)/../third_party/catch",
);
MACOSX_DEPLOYMENT_TARGET = 10.10;
MTL_ENABLE_DEBUG_INFO = YES;
ONLY_ACTIVE_ARCH = YES;
SDKROOT = macosx;
};
name = Debug;
};
08567BB71B5B59E800EB6C0D /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
CLANG_CXX_LIBRARY = "libc++";
CLANG_ENABLE_MODULES = YES;
CLANG_ENABLE_OBJC_ARC = YES;
CLANG_WARN_BOOL_CONVERSION = YES;
CLANG_WARN_CONSTANT_CONVERSION = YES;
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
CLANG_WARN_EMPTY_BODY = YES;
CLANG_WARN_ENUM_CONVERSION = YES;
CLANG_WARN_INT_CONVERSION = YES;
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
CLANG_WARN_UNREACHABLE_CODE = YES;
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
COPY_PHASE_STRIP = NO;
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
ENABLE_NS_ASSERTIONS = NO;
ENABLE_STRICT_OBJC_MSGSEND = YES;
GCC_C_LANGUAGE_STANDARD = gnu99;
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
GCC_WARN_UNDECLARED_SELECTOR = YES;
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
HEADER_SEARCH_PATHS = (
"$(inherited)",
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include,
"$(SRCROOT)/../third_party/libuvc/include",
"$(SRCROOT)/../third_party/glfw",
"$(SRCROOT)/../third_party/catch",
);
MACOSX_DEPLOYMENT_TARGET = 10.10;
MTL_ENABLE_DEBUG_INFO = NO;
SDKROOT = macosx;
};
name = Release;
};
08567BB91B5B59E800EB6C0D /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
LIBRARY_SEARCH_PATHS = (
"$(inherited)",
/Users/ddiakopoulos/Desktop/uvcsense/librealsense/build/Debug,
/Users/ddiakopoulos/Desktop/uvcsense/third_party/glfw/bin/osx,
);
PRODUCT_NAME = "$(TARGET_NAME)";
};
name = Debug;
};
08567BBA1B5B59E800EB6C0D /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
LIBRARY_SEARCH_PATHS = (
"$(inherited)",
/Users/ddiakopoulos/Desktop/uvcsense/librealsense/build/Debug,
/Users/ddiakopoulos/Desktop/uvcsense/third_party/glfw/bin/osx,
);
PRODUCT_NAME = "$(TARGET_NAME)";
};
name = Release;
};
/* End XCBuildConfiguration section */

/* Begin XCConfigurationList section */
08567BAC1B5B59E800EB6C0D /* Build configuration list for PBXProject "PointcloudViewer" */ = {
isa = XCConfigurationList;
buildConfigurations = (
08567BB61B5B59E800EB6C0D /* Debug */,
08567BB71B5B59E800EB6C0D /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
08567BB81B5B59E800EB6C0D /* Build configuration list for PBXNativeTarget "PointcloudViewer" */ = {
isa = XCConfigurationList;
buildConfigurations = (
08567BB91B5B59E800EB6C0D /* Debug */,
08567BBA1B5B59E800EB6C0D /* Release */,
);
defaultConfigurationIsVisible = 0;
};
/* End XCConfigurationList section */
};
rootObject = 08567BA91B5B59E800EB6C0D /* Project object */;
}
Loading

0 comments on commit 5e067e0

Please sign in to comment.