Skip to content

Commit

Permalink
added vs project to example
Browse files Browse the repository at this point in the history
  • Loading branch information
pierrep committed Sep 6, 2018
1 parent 6a86e38 commit 841a9f6
Show file tree
Hide file tree
Showing 7 changed files with 652 additions and 23 deletions.
6 changes: 1 addition & 5 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -73,12 +73,8 @@ xcuserdata
*.aps
ipch/
*.db
*.sln
*.vcxproj
*.exe
*.tlog
*.vcxproj.user
*.filters
*.log
*.res
icon.rc
Expand Down Expand Up @@ -151,4 +147,4 @@ Desktop.ini
#########################

.mailmap
*/bin
*/bin
35 changes: 35 additions & 0 deletions example-bodytrack/example-bodytrack.sln
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 14
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "example-bodytrack", "example-bodytrack.vcxproj", "{7FD42DF7-442E-479A-BA76-D0022F99702A}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "openframeworksLib", "..\..\..\libs\openFrameworksCompiled\project\vs\openframeworksLib.vcxproj", "{5837595D-ACA9-485C-8E76-729040CE4B0B}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Win32 = Debug|Win32
Debug|x64 = Debug|x64
Release|Win32 = Release|Win32
Release|x64 = Release|x64
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{7FD42DF7-442E-479A-BA76-D0022F99702A}.Debug|Win32.ActiveCfg = Debug|Win32
{7FD42DF7-442E-479A-BA76-D0022F99702A}.Debug|Win32.Build.0 = Debug|Win32
{7FD42DF7-442E-479A-BA76-D0022F99702A}.Debug|x64.ActiveCfg = Debug|x64
{7FD42DF7-442E-479A-BA76-D0022F99702A}.Debug|x64.Build.0 = Debug|x64
{7FD42DF7-442E-479A-BA76-D0022F99702A}.Release|Win32.ActiveCfg = Release|Win32
{7FD42DF7-442E-479A-BA76-D0022F99702A}.Release|Win32.Build.0 = Release|Win32
{7FD42DF7-442E-479A-BA76-D0022F99702A}.Release|x64.ActiveCfg = Release|x64
{7FD42DF7-442E-479A-BA76-D0022F99702A}.Release|x64.Build.0 = Release|x64
{5837595D-ACA9-485C-8E76-729040CE4B0B}.Debug|Win32.ActiveCfg = Debug|Win32
{5837595D-ACA9-485C-8E76-729040CE4B0B}.Debug|Win32.Build.0 = Debug|Win32
{5837595D-ACA9-485C-8E76-729040CE4B0B}.Debug|x64.ActiveCfg = Debug|x64
{5837595D-ACA9-485C-8E76-729040CE4B0B}.Debug|x64.Build.0 = Debug|x64
{5837595D-ACA9-485C-8E76-729040CE4B0B}.Release|Win32.ActiveCfg = Release|Win32
{5837595D-ACA9-485C-8E76-729040CE4B0B}.Release|Win32.Build.0 = Release|Win32
{5837595D-ACA9-485C-8E76-729040CE4B0B}.Release|x64.ActiveCfg = Release|x64
{5837595D-ACA9-485C-8E76-729040CE4B0B}.Release|x64.Build.0 = Release|x64
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
EndGlobal
279 changes: 279 additions & 0 deletions example-bodytrack/example-bodytrack.vcxproj

Large diffs are not rendered by default.

318 changes: 318 additions & 0 deletions example-bodytrack/example-bodytrack.vcxproj.filters

Large diffs are not rendered by default.

19 changes: 19 additions & 0 deletions example-bodytrack/example-bodytrack.vcxproj.user
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
<LocalDebuggerWorkingDirectory>$(ProjectDir)/bin</LocalDebuggerWorkingDirectory>
<DebuggerFlavor>WindowsLocalDebugger</DebuggerFlavor>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
<LocalDebuggerWorkingDirectory>$(ProjectDir)/bin</LocalDebuggerWorkingDirectory>
<DebuggerFlavor>WindowsLocalDebugger</DebuggerFlavor>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
<LocalDebuggerWorkingDirectory>$(ProjectDir)/bin</LocalDebuggerWorkingDirectory>
<DebuggerFlavor>WindowsLocalDebugger</DebuggerFlavor>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
<LocalDebuggerWorkingDirectory>$(ProjectDir)/bin</LocalDebuggerWorkingDirectory>
<DebuggerFlavor>WindowsLocalDebugger</DebuggerFlavor>
</PropertyGroup>
</Project>
10 changes: 0 additions & 10 deletions example-bodytrack/src/ofApp.cpp
Original file line number Diff line number Diff line change
@@ -1,19 +1,10 @@
//
// ofApp.cpp
// example
//
// Created by Pierre Proske on 12/04/17.
//
//

#include "ofApp.h"

void ofApp::setup(){
ofBackground(0);
ofSetWindowShape(1280, 960);
ofSetVerticalSync(true);


astra.setup();
// astra.setLicenseString("<INSERT LICENSE KEY HERE>");

Expand All @@ -27,7 +18,6 @@ void ofApp::update(){
ofSetWindowTitle(ofToString(ofGetFrameRate()));

astra.update();

}

void ofApp::draw(){
Expand Down
8 changes: 0 additions & 8 deletions example-bodytrack/src/ofApp.h
Original file line number Diff line number Diff line change
@@ -1,11 +1,3 @@
//
// ofApp.cpp
// example
//
// Created by Matt Felsen on 11/15/15.
//
//

#pragma once

#include "ofMain.h"
Expand Down

0 comments on commit 841a9f6

Please sign in to comment.