Commit 2f1580d61d71dbd9465417118392d047b10d411d

Authored by Lettiery Procopio
0 parents
Exists in master

Initial Commit

Showing 5 changed files with 381 additions and 0 deletions Side-by-side Diff

Simplex.xcodeproj/project.pbxproj View file @ 2f1580d
... ... @@ -0,0 +1,246 @@
  1 +// !$*UTF8*$!
  2 +{
  3 + archiveVersion = 1;
  4 + classes = {
  5 + };
  6 + objectVersion = 46;
  7 + objects = {
  8 +
  9 +/* Begin PBXBuildFile section */
  10 + 42E6D9151CD7771A00C80A05 /* main.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 42E6D9141CD7771A00C80A05 /* main.cpp */; };
  11 +/* End PBXBuildFile section */
  12 +
  13 +/* Begin PBXCopyFilesBuildPhase section */
  14 + 42E6D90F1CD7771900C80A05 /* CopyFiles */ = {
  15 + isa = PBXCopyFilesBuildPhase;
  16 + buildActionMask = 2147483647;
  17 + dstPath = /usr/share/man/man1/;
  18 + dstSubfolderSpec = 0;
  19 + files = (
  20 + );
  21 + runOnlyForDeploymentPostprocessing = 1;
  22 + };
  23 +/* End PBXCopyFilesBuildPhase section */
  24 +
  25 +/* Begin PBXFileReference section */
  26 + 42E6D9111CD7771A00C80A05 /* Simplex */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = Simplex; sourceTree = BUILT_PRODUCTS_DIR; };
  27 + 42E6D9141CD7771A00C80A05 /* main.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = main.cpp; sourceTree = "<group>"; };
  28 +/* End PBXFileReference section */
  29 +
  30 +/* Begin PBXFrameworksBuildPhase section */
  31 + 42E6D90E1CD7771900C80A05 /* Frameworks */ = {
  32 + isa = PBXFrameworksBuildPhase;
  33 + buildActionMask = 2147483647;
  34 + files = (
  35 + );
  36 + runOnlyForDeploymentPostprocessing = 0;
  37 + };
  38 +/* End PBXFrameworksBuildPhase section */
  39 +
  40 +/* Begin PBXGroup section */
  41 + 42E6D9081CD7771200C80A05 = {
  42 + isa = PBXGroup;
  43 + children = (
  44 + 42E6D9131CD7771A00C80A05 /* Simplex */,
  45 + 42E6D9121CD7771A00C80A05 /* Products */,
  46 + );
  47 + sourceTree = "<group>";
  48 + };
  49 + 42E6D9121CD7771A00C80A05 /* Products */ = {
  50 + isa = PBXGroup;
  51 + children = (
  52 + 42E6D9111CD7771A00C80A05 /* Simplex */,
  53 + );
  54 + name = Products;
  55 + sourceTree = "<group>";
  56 + };
  57 + 42E6D9131CD7771A00C80A05 /* Simplex */ = {
  58 + isa = PBXGroup;
  59 + children = (
  60 + 42E6D9141CD7771A00C80A05 /* main.cpp */,
  61 + );
  62 + path = Simplex;
  63 + sourceTree = "<group>";
  64 + };
  65 +/* End PBXGroup section */
  66 +
  67 +/* Begin PBXNativeTarget section */
  68 + 42E6D9101CD7771900C80A05 /* Simplex */ = {
  69 + isa = PBXNativeTarget;
  70 + buildConfigurationList = 42E6D9181CD7771A00C80A05 /* Build configuration list for PBXNativeTarget "Simplex" */;
  71 + buildPhases = (
  72 + 42E6D90D1CD7771900C80A05 /* Sources */,
  73 + 42E6D90E1CD7771900C80A05 /* Frameworks */,
  74 + 42E6D90F1CD7771900C80A05 /* CopyFiles */,
  75 + );
  76 + buildRules = (
  77 + );
  78 + dependencies = (
  79 + );
  80 + name = Simplex;
  81 + productName = Simplex;
  82 + productReference = 42E6D9111CD7771A00C80A05 /* Simplex */;
  83 + productType = "com.apple.product-type.tool";
  84 + };
  85 +/* End PBXNativeTarget section */
  86 +
  87 +/* Begin PBXProject section */
  88 + 42E6D9091CD7771200C80A05 /* Project object */ = {
  89 + isa = PBXProject;
  90 + attributes = {
  91 + LastUpgradeCheck = 0730;
  92 + ORGANIZATIONNAME = Lettiery;
  93 + TargetAttributes = {
  94 + 42E6D9101CD7771900C80A05 = {
  95 + CreatedOnToolsVersion = 7.3;
  96 + };
  97 + };
  98 + };
  99 + buildConfigurationList = 42E6D90C1CD7771200C80A05 /* Build configuration list for PBXProject "Simplex" */;
  100 + compatibilityVersion = "Xcode 3.2";
  101 + developmentRegion = English;
  102 + hasScannedForEncodings = 0;
  103 + knownRegions = (
  104 + en,
  105 + );
  106 + mainGroup = 42E6D9081CD7771200C80A05;
  107 + productRefGroup = 42E6D9121CD7771A00C80A05 /* Products */;
  108 + projectDirPath = "";
  109 + projectRoot = "";
  110 + targets = (
  111 + 42E6D9101CD7771900C80A05 /* Simplex */,
  112 + );
  113 + };
  114 +/* End PBXProject section */
  115 +
  116 +/* Begin PBXSourcesBuildPhase section */
  117 + 42E6D90D1CD7771900C80A05 /* Sources */ = {
  118 + isa = PBXSourcesBuildPhase;
  119 + buildActionMask = 2147483647;
  120 + files = (
  121 + 42E6D9151CD7771A00C80A05 /* main.cpp in Sources */,
  122 + );
  123 + runOnlyForDeploymentPostprocessing = 0;
  124 + };
  125 +/* End PBXSourcesBuildPhase section */
  126 +
  127 +/* Begin XCBuildConfiguration section */
  128 + 42E6D9161CD7771A00C80A05 /* Debug */ = {
  129 + isa = XCBuildConfiguration;
  130 + buildSettings = {
  131 + ALWAYS_SEARCH_USER_PATHS = NO;
  132 + CLANG_ANALYZER_NONNULL = YES;
  133 + CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
  134 + CLANG_CXX_LIBRARY = "libc++";
  135 + CLANG_ENABLE_MODULES = YES;
  136 + CLANG_ENABLE_OBJC_ARC = YES;
  137 + CLANG_WARN_BOOL_CONVERSION = YES;
  138 + CLANG_WARN_CONSTANT_CONVERSION = YES;
  139 + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
  140 + CLANG_WARN_EMPTY_BODY = YES;
  141 + CLANG_WARN_ENUM_CONVERSION = YES;
  142 + CLANG_WARN_INT_CONVERSION = YES;
  143 + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
  144 + CLANG_WARN_UNREACHABLE_CODE = YES;
  145 + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
  146 + CODE_SIGN_IDENTITY = "-";
  147 + COPY_PHASE_STRIP = NO;
  148 + DEBUG_INFORMATION_FORMAT = dwarf;
  149 + ENABLE_STRICT_OBJC_MSGSEND = YES;
  150 + ENABLE_TESTABILITY = YES;
  151 + GCC_C_LANGUAGE_STANDARD = gnu99;
  152 + GCC_DYNAMIC_NO_PIC = NO;
  153 + GCC_NO_COMMON_BLOCKS = YES;
  154 + GCC_OPTIMIZATION_LEVEL = 0;
  155 + GCC_PREPROCESSOR_DEFINITIONS = (
  156 + "DEBUG=1",
  157 + "$(inherited)",
  158 + );
  159 + GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
  160 + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
  161 + GCC_WARN_UNDECLARED_SELECTOR = YES;
  162 + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
  163 + GCC_WARN_UNUSED_FUNCTION = YES;
  164 + GCC_WARN_UNUSED_VARIABLE = YES;
  165 + MACOSX_DEPLOYMENT_TARGET = 10.11;
  166 + MTL_ENABLE_DEBUG_INFO = YES;
  167 + ONLY_ACTIVE_ARCH = YES;
  168 + SDKROOT = macosx;
  169 + };
  170 + name = Debug;
  171 + };
  172 + 42E6D9171CD7771A00C80A05 /* Release */ = {
  173 + isa = XCBuildConfiguration;
  174 + buildSettings = {
  175 + ALWAYS_SEARCH_USER_PATHS = NO;
  176 + CLANG_ANALYZER_NONNULL = YES;
  177 + CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
  178 + CLANG_CXX_LIBRARY = "libc++";
  179 + CLANG_ENABLE_MODULES = YES;
  180 + CLANG_ENABLE_OBJC_ARC = YES;
  181 + CLANG_WARN_BOOL_CONVERSION = YES;
  182 + CLANG_WARN_CONSTANT_CONVERSION = YES;
  183 + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
  184 + CLANG_WARN_EMPTY_BODY = YES;
  185 + CLANG_WARN_ENUM_CONVERSION = YES;
  186 + CLANG_WARN_INT_CONVERSION = YES;
  187 + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
  188 + CLANG_WARN_UNREACHABLE_CODE = YES;
  189 + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
  190 + CODE_SIGN_IDENTITY = "-";
  191 + COPY_PHASE_STRIP = NO;
  192 + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
  193 + ENABLE_NS_ASSERTIONS = NO;
  194 + ENABLE_STRICT_OBJC_MSGSEND = YES;
  195 + GCC_C_LANGUAGE_STANDARD = gnu99;
  196 + GCC_NO_COMMON_BLOCKS = YES;
  197 + GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
  198 + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
  199 + GCC_WARN_UNDECLARED_SELECTOR = YES;
  200 + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
  201 + GCC_WARN_UNUSED_FUNCTION = YES;
  202 + GCC_WARN_UNUSED_VARIABLE = YES;
  203 + MACOSX_DEPLOYMENT_TARGET = 10.11;
  204 + MTL_ENABLE_DEBUG_INFO = NO;
  205 + SDKROOT = macosx;
  206 + };
  207 + name = Release;
  208 + };
  209 + 42E6D9191CD7771A00C80A05 /* Debug */ = {
  210 + isa = XCBuildConfiguration;
  211 + buildSettings = {
  212 + PRODUCT_NAME = "$(TARGET_NAME)";
  213 + };
  214 + name = Debug;
  215 + };
  216 + 42E6D91A1CD7771A00C80A05 /* Release */ = {
  217 + isa = XCBuildConfiguration;
  218 + buildSettings = {
  219 + PRODUCT_NAME = "$(TARGET_NAME)";
  220 + };
  221 + name = Release;
  222 + };
  223 +/* End XCBuildConfiguration section */
  224 +
  225 +/* Begin XCConfigurationList section */
  226 + 42E6D90C1CD7771200C80A05 /* Build configuration list for PBXProject "Simplex" */ = {
  227 + isa = XCConfigurationList;
  228 + buildConfigurations = (
  229 + 42E6D9161CD7771A00C80A05 /* Debug */,
  230 + 42E6D9171CD7771A00C80A05 /* Release */,
  231 + );
  232 + defaultConfigurationIsVisible = 0;
  233 + defaultConfigurationName = Release;
  234 + };
  235 + 42E6D9181CD7771A00C80A05 /* Build configuration list for PBXNativeTarget "Simplex" */ = {
  236 + isa = XCConfigurationList;
  237 + buildConfigurations = (
  238 + 42E6D9191CD7771A00C80A05 /* Debug */,
  239 + 42E6D91A1CD7771A00C80A05 /* Release */,
  240 + );
  241 + defaultConfigurationIsVisible = 0;
  242 + };
  243 +/* End XCConfigurationList section */
  244 + };
  245 + rootObject = 42E6D9091CD7771200C80A05 /* Project object */;
  246 +}
Simplex.xcodeproj/project.xcworkspace/contents.xcworkspacedata View file @ 2f1580d
... ... @@ -0,0 +1,7 @@
  1 +<?xml version="1.0" encoding="UTF-8"?>
  2 +<Workspace
  3 + version = "1.0">
  4 + <FileRef
  5 + location = "self:Simplex.xcodeproj">
  6 + </FileRef>
  7 +</Workspace>
Simplex.xcodeproj/xcuserdata/Lettiery.xcuserdatad/xcschemes/Simplex.xcscheme View file @ 2f1580d
... ... @@ -0,0 +1,91 @@
  1 +<?xml version="1.0" encoding="UTF-8"?>
  2 +<Scheme
  3 + LastUpgradeVersion = "0730"
  4 + version = "1.3">
  5 + <BuildAction
  6 + parallelizeBuildables = "YES"
  7 + buildImplicitDependencies = "YES">
  8 + <BuildActionEntries>
  9 + <BuildActionEntry
  10 + buildForTesting = "YES"
  11 + buildForRunning = "YES"
  12 + buildForProfiling = "YES"
  13 + buildForArchiving = "YES"
  14 + buildForAnalyzing = "YES">
  15 + <BuildableReference
  16 + BuildableIdentifier = "primary"
  17 + BlueprintIdentifier = "42E6D9101CD7771900C80A05"
  18 + BuildableName = "Simplex"
  19 + BlueprintName = "Simplex"
  20 + ReferencedContainer = "container:Simplex.xcodeproj">
  21 + </BuildableReference>
  22 + </BuildActionEntry>
  23 + </BuildActionEntries>
  24 + </BuildAction>
  25 + <TestAction
  26 + buildConfiguration = "Debug"
  27 + selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
  28 + selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
  29 + shouldUseLaunchSchemeArgsEnv = "YES">
  30 + <Testables>
  31 + </Testables>
  32 + <MacroExpansion>
  33 + <BuildableReference
  34 + BuildableIdentifier = "primary"
  35 + BlueprintIdentifier = "42E6D9101CD7771900C80A05"
  36 + BuildableName = "Simplex"
  37 + BlueprintName = "Simplex"
  38 + ReferencedContainer = "container:Simplex.xcodeproj">
  39 + </BuildableReference>
  40 + </MacroExpansion>
  41 + <AdditionalOptions>
  42 + </AdditionalOptions>
  43 + </TestAction>
  44 + <LaunchAction
  45 + buildConfiguration = "Debug"
  46 + selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
  47 + selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
  48 + launchStyle = "0"
  49 + useCustomWorkingDirectory = "NO"
  50 + ignoresPersistentStateOnLaunch = "NO"
  51 + debugDocumentVersioning = "YES"
  52 + debugServiceExtension = "internal"
  53 + allowLocationSimulation = "YES">
  54 + <BuildableProductRunnable
  55 + runnableDebuggingMode = "0">
  56 + <BuildableReference
  57 + BuildableIdentifier = "primary"
  58 + BlueprintIdentifier = "42E6D9101CD7771900C80A05"
  59 + BuildableName = "Simplex"
  60 + BlueprintName = "Simplex"
  61 + ReferencedContainer = "container:Simplex.xcodeproj">
  62 + </BuildableReference>
  63 + </BuildableProductRunnable>
  64 + <AdditionalOptions>
  65 + </AdditionalOptions>
  66 + </LaunchAction>
  67 + <ProfileAction
  68 + buildConfiguration = "Release"
  69 + shouldUseLaunchSchemeArgsEnv = "YES"
  70 + savedToolIdentifier = ""
  71 + useCustomWorkingDirectory = "NO"
  72 + debugDocumentVersioning = "YES">
  73 + <BuildableProductRunnable
  74 + runnableDebuggingMode = "0">
  75 + <BuildableReference
  76 + BuildableIdentifier = "primary"
  77 + BlueprintIdentifier = "42E6D9101CD7771900C80A05"
  78 + BuildableName = "Simplex"
  79 + BlueprintName = "Simplex"
  80 + ReferencedContainer = "container:Simplex.xcodeproj">
  81 + </BuildableReference>
  82 + </BuildableProductRunnable>
  83 + </ProfileAction>
  84 + <AnalyzeAction
  85 + buildConfiguration = "Debug">
  86 + </AnalyzeAction>
  87 + <ArchiveAction
  88 + buildConfiguration = "Release"
  89 + revealArchiveInOrganizer = "YES">
  90 + </ArchiveAction>
  91 +</Scheme>
Simplex.xcodeproj/xcuserdata/Lettiery.xcuserdatad/xcschemes/xcschememanagement.plist View file @ 2f1580d
... ... @@ -0,0 +1,22 @@
  1 +<?xml version="1.0" encoding="UTF-8"?>
  2 +<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
  3 +<plist version="1.0">
  4 +<dict>
  5 + <key>SchemeUserState</key>
  6 + <dict>
  7 + <key>Simplex.xcscheme</key>
  8 + <dict>
  9 + <key>orderHint</key>
  10 + <integer>0</integer>
  11 + </dict>
  12 + </dict>
  13 + <key>SuppressBuildableAutocreation</key>
  14 + <dict>
  15 + <key>42E6D9101CD7771900C80A05</key>
  16 + <dict>
  17 + <key>primary</key>
  18 + <true/>
  19 + </dict>
  20 + </dict>
  21 +</dict>
  22 +</plist>
Simplex/main.cpp View file @ 2f1580d
... ... @@ -0,0 +1,15 @@
  1 +//
  2 +// main.cpp
  3 +// Simplex
  4 +//
  5 +// Created by Lettiery on 02/05/16.
  6 +// Copyright © 2016 Lettiery. All rights reserved.
  7 +//
  8 +
  9 +#include <iostream>
  10 +
  11 +int main(int argc, const char * argv[]) {
  12 + // insert code here...
  13 + std::cout << "Hello, World!\n";
  14 + return 0;
  15 +}