-
Notifications
You must be signed in to change notification settings - Fork 276
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e5c28fb
commit 6635dc5
Showing
18 changed files
with
2,880 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
include config.make | ||
include $(OF_ROOT)/libs/openFrameworksCompiled/project/makefileCommon/Makefile.examples |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
//THE PATH TO THE ROOT OF OUR OF PATH RELATIVE TO THIS PROJECT. | ||
//THIS NEEDS TO BE DEFINED BEFORE CoreOF.xcconfig IS INCLUDED | ||
OF_PATH = ../../.. | ||
|
||
//THIS HAS ALL THE HEADER AND LIBS FOR OF CORE | ||
#include "../../../libs/openFrameworksCompiled/project/osx/CoreOF.xcconfig" | ||
|
||
//ICONS - NEW IN 0072 | ||
ICON_NAME_DEBUG = icon-debug.icns | ||
ICON_NAME_RELEASE = icon.icns | ||
ICON_FILE_PATH = $(OF_PATH)/libs/openFrameworksCompiled/project/osx/ | ||
|
||
//IF YOU WANT AN APP TO HAVE A CUSTOM ICON - PUT THEM IN YOUR DATA FOLDER AND CHANGE ICON_FILE_PATH to: | ||
//ICON_FILE_PATH = bin/data/ | ||
|
||
OTHER_LDFLAGS = $(OF_CORE_LIBS) | ||
HEADER_SEARCH_PATHS = $(OF_CORE_HEADERS) |
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
Microsoft Visual Studio Solution File, Format Version 11.00 | ||
# Visual C++ Express 2010 | ||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "SmileExample", "SmileExample.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 | ||
Release|Win32 = Release|Win32 | ||
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}.Release|Win32.ActiveCfg = Release|Win32 | ||
{7FD42DF7-442E-479A-BA76-D0022F99702A}.Release|Win32.Build.0 = Release|Win32 | ||
{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}.Release|Win32.ActiveCfg = Release|Win32 | ||
{5837595D-ACA9-485C-8E76-729040CE4B0B}.Release|Win32.Build.0 = Release|Win32 | ||
EndGlobalSection | ||
GlobalSection(SolutionProperties) = preSolution | ||
HideSolutionNode = FALSE | ||
EndGlobalSection | ||
EndGlobal |
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
<?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>$(TargetDir)</LocalDebuggerWorkingDirectory> | ||
<DebuggerFlavor>WindowsLocalDebugger</DebuggerFlavor> | ||
</PropertyGroup> | ||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'"> | ||
<LocalDebuggerWorkingDirectory>$(TargetDir)</LocalDebuggerWorkingDirectory> | ||
<DebuggerFlavor>WindowsLocalDebugger</DebuggerFlavor> | ||
</PropertyGroup> | ||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?> | ||
<CodeBlocks_workspace_file> | ||
<Workspace title="Workspace"> | ||
<Project filename="SmileExample.cbp" active="1"> | ||
<Depends filename="..\..\..\libs\openFrameworksCompiled\project\win_cb\openFrameworksLib.cbp" /> | ||
</Project> | ||
<Project filename="..\..\..\libs\openFrameworksCompiled\project\win_cb\openFrameworksLib.cbp" /> | ||
</Workspace> | ||
</CodeBlocks_workspace_file> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
ofxCv | ||
ofxOpenCv |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
You need to add a copy of haarcascade_frontalface_default.xml and smiled_05.xml to this directory. | ||
|
||
haarcascade_frontalface_default.xml can be found at: | ||
|
||
openFrameworks/examples/addons/opencvHaarFinderExample/bin/haarcascade_frontalface_default.xml | ||
|
||
smiled_05.xml can be found at: | ||
|
||
https://github.com/hromi/SMILEsmileD/blob/master/smileD/smiled_05.xml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
# add custom variables to this file | ||
|
||
# OF_ROOT allows to move projects outside apps/* just set this variable to the | ||
# absoulte path to the OF root folder | ||
|
||
OF_ROOT = ../../.. | ||
|
||
|
||
# USER_CFLAGS allows to pass custom flags to the compiler | ||
# for example search paths like: | ||
# USER_CFLAGS = -I src/objects | ||
|
||
USER_CFLAGS = | ||
|
||
|
||
# USER_LDFLAGS allows to pass custom flags to the linker | ||
# for example libraries like: | ||
# USER_LDFLAGS = libs/libawesomelib.a | ||
|
||
USER_LDFLAGS = | ||
|
||
|
||
EXCLUDE_FROM_SOURCE="bin,.xcodeproj,obj" | ||
|
||
# change this to add different compiler optimizations to your project | ||
|
||
USER_COMPILER_OPTIMIZATION = -march=native -mtune=native -Os | ||
|
||
|
||
# android specific, in case you want to use different optimizations | ||
USER_LIBS_ARM = | ||
USER_LIBS_ARM7 = | ||
USER_LIBS_NEON = | ||
|
||
# android optimizations | ||
|
||
ANDROID_COMPILER_OPTIMIZATION = -Os | ||
|
||
NDK_PLATFORM = android-8 | ||
|
||
# uncomment this for custom application name (if the folder name is different than the application name) | ||
#APPNAME = folderName | ||
|
||
# uncomment this for custom package name, must be the same as the java package that contains OFActivity | ||
#PKGNAME = cc.openframeworks.$(APPNAME) | ||
|
||
|
||
|
||
|
||
|
||
# linux arm flags | ||
|
||
LINUX_ARM7_COMPILER_OPTIMIZATIONS = -march=armv7-a -mtune=cortex-a8 -finline-functions -funroll-all-loops -O3 -funsafe-math-optimizations -mfpu=neon -ftree-vectorize -mfloat-abi=hard -mfpu=vfp | ||
|
||
|
||
|
Oops, something went wrong.