Loading Makefile 0 → 100644 +13 −0 Original line number Diff line number Diff line # Attempt to load a config.make file. # If none is found, project defaults in config.project.make will be used. ifneq ($(wildcard config.make),) include config.make endif # make sure the the OF_ROOT location is defined ifndef OF_ROOT OF_ROOT=$(realpath ../../../Applications/OF) endif # call the project makefile! include $(OF_ROOT)/libs/openFrameworksCompiled/project/makefileCommon/compile.project.mk addons.make +2 −4 Original line number Diff line number Diff line ofxOsc ofxNuitrack ofxGuiExtended ofxNetwork ofxNuitrack ofxOpenCv ofxOsc ofxRealSenseTwo bin/nuitrack.net.dlldeleted 100644 → 0 −63.5 KiB File deleted. View file config.make 0 → 100644 +141 −0 Original line number Diff line number Diff line ################################################################################ # CONFIGURE PROJECT MAKEFILE (optional) # This file is where we make project specific configurations. ################################################################################ ################################################################################ # OF ROOT # The location of your root openFrameworks installation # (default) OF_ROOT = ../../../Applications/OF ################################################################################ # OF_ROOT = ../../../Applications/OF ################################################################################ # PROJECT ROOT # The location of the project - a starting place for searching for files # (default) PROJECT_ROOT = . (this directory) # ################################################################################ # PROJECT_ROOT = . ################################################################################ # PROJECT SPECIFIC CHECKS # This is a project defined section to create internal makefile flags to # conditionally enable or disable the addition of various features within # this makefile. For instance, if you want to make changes based on whether # GTK is installed, one might test that here and create a variable to check. ################################################################################ # None ################################################################################ # PROJECT EXTERNAL SOURCE PATHS # These are fully qualified paths that are not within the PROJECT_ROOT folder. # Like source folders in the PROJECT_ROOT, these paths are subject to # exlclusion via the PROJECT_EXLCUSIONS list. # # (default) PROJECT_EXTERNAL_SOURCE_PATHS = (blank) # # Note: Leave a leading space when adding list items with the += operator ################################################################################ # PROJECT_EXTERNAL_SOURCE_PATHS = ################################################################################ # PROJECT EXCLUSIONS # These makefiles assume that all folders in your current project directory # and any listed in the PROJECT_EXTERNAL_SOURCH_PATHS are are valid locations # to look for source code. The any folders or files that match any of the # items in the PROJECT_EXCLUSIONS list below will be ignored. # # Each item in the PROJECT_EXCLUSIONS list will be treated as a complete # string unless teh user adds a wildcard (%) operator to match subdirectories. # GNU make only allows one wildcard for matching. The second wildcard (%) is # treated literally. # # (default) PROJECT_EXCLUSIONS = (blank) # # Will automatically exclude the following: # # $(PROJECT_ROOT)/bin% # $(PROJECT_ROOT)/obj% # $(PROJECT_ROOT)/%.xcodeproj # # Note: Leave a leading space when adding list items with the += operator ################################################################################ # PROJECT_EXCLUSIONS = ################################################################################ # PROJECT LINKER FLAGS # These flags will be sent to the linker when compiling the executable. # # (default) PROJECT_LDFLAGS = -Wl,-rpath=./libs # # Note: Leave a leading space when adding list items with the += operator # # Currently, shared libraries that are needed are copied to the # $(PROJECT_ROOT)/bin/libs directory. The following LDFLAGS tell the linker to # add a runtime path to search for those shared libraries, since they aren't # incorporated directly into the final executable application binary. ################################################################################ # PROJECT_LDFLAGS=-Wl,-rpath=./libs ################################################################################ # PROJECT DEFINES # Create a space-delimited list of DEFINES. The list will be converted into # CFLAGS with the "-D" flag later in the makefile. # # (default) PROJECT_DEFINES = (blank) # # Note: Leave a leading space when adding list items with the += operator ################################################################################ # PROJECT_DEFINES = ################################################################################ # PROJECT CFLAGS # This is a list of fully qualified CFLAGS required when compiling for this # project. These CFLAGS will be used IN ADDITION TO the PLATFORM_CFLAGS # defined in your platform specific core configuration files. These flags are # presented to the compiler BEFORE the PROJECT_OPTIMIZATION_CFLAGS below. # # (default) PROJECT_CFLAGS = (blank) # # Note: Before adding PROJECT_CFLAGS, note that the PLATFORM_CFLAGS defined in # your platform specific configuration file will be applied by default and # further flags here may not be needed. # # Note: Leave a leading space when adding list items with the += operator ################################################################################ # PROJECT_CFLAGS = ################################################################################ # PROJECT OPTIMIZATION CFLAGS # These are lists of CFLAGS that are target-specific. While any flags could # be conditionally added, they are usually limited to optimization flags. # These flags are added BEFORE the PROJECT_CFLAGS. # # PROJECT_OPTIMIZATION_CFLAGS_RELEASE flags are only applied to RELEASE targets. # # (default) PROJECT_OPTIMIZATION_CFLAGS_RELEASE = (blank) # # PROJECT_OPTIMIZATION_CFLAGS_DEBUG flags are only applied to DEBUG targets. # # (default) PROJECT_OPTIMIZATION_CFLAGS_DEBUG = (blank) # # Note: Before adding PROJECT_OPTIMIZATION_CFLAGS, please note that the # PLATFORM_OPTIMIZATION_CFLAGS defined in your platform specific configuration # file will be applied by default and further optimization flags here may not # be needed. # # Note: Leave a leading space when adding list items with the += operator ################################################################################ # PROJECT_OPTIMIZATION_CFLAGS_RELEASE = # PROJECT_OPTIMIZATION_CFLAGS_DEBUG = ################################################################################ # PROJECT COMPILERS # Custom compilers can be set for CC and CXX # (default) PROJECT_CXX = (blank) # (default) PROJECT_CC = (blank) # Note: Leave a leading space when adding list items with the += operator ################################################################################ # PROJECT_CXX = # PROJECT_CC = the-hole.slndeleted 100644 → 0 +0 −35 Original line number Diff line number Diff line Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio 15 Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "the-hole", "the-hole.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 Loading
Makefile 0 → 100644 +13 −0 Original line number Diff line number Diff line # Attempt to load a config.make file. # If none is found, project defaults in config.project.make will be used. ifneq ($(wildcard config.make),) include config.make endif # make sure the the OF_ROOT location is defined ifndef OF_ROOT OF_ROOT=$(realpath ../../../Applications/OF) endif # call the project makefile! include $(OF_ROOT)/libs/openFrameworksCompiled/project/makefileCommon/compile.project.mk
addons.make +2 −4 Original line number Diff line number Diff line ofxOsc ofxNuitrack ofxGuiExtended ofxNetwork ofxNuitrack ofxOpenCv ofxOsc ofxRealSenseTwo
config.make 0 → 100644 +141 −0 Original line number Diff line number Diff line ################################################################################ # CONFIGURE PROJECT MAKEFILE (optional) # This file is where we make project specific configurations. ################################################################################ ################################################################################ # OF ROOT # The location of your root openFrameworks installation # (default) OF_ROOT = ../../../Applications/OF ################################################################################ # OF_ROOT = ../../../Applications/OF ################################################################################ # PROJECT ROOT # The location of the project - a starting place for searching for files # (default) PROJECT_ROOT = . (this directory) # ################################################################################ # PROJECT_ROOT = . ################################################################################ # PROJECT SPECIFIC CHECKS # This is a project defined section to create internal makefile flags to # conditionally enable or disable the addition of various features within # this makefile. For instance, if you want to make changes based on whether # GTK is installed, one might test that here and create a variable to check. ################################################################################ # None ################################################################################ # PROJECT EXTERNAL SOURCE PATHS # These are fully qualified paths that are not within the PROJECT_ROOT folder. # Like source folders in the PROJECT_ROOT, these paths are subject to # exlclusion via the PROJECT_EXLCUSIONS list. # # (default) PROJECT_EXTERNAL_SOURCE_PATHS = (blank) # # Note: Leave a leading space when adding list items with the += operator ################################################################################ # PROJECT_EXTERNAL_SOURCE_PATHS = ################################################################################ # PROJECT EXCLUSIONS # These makefiles assume that all folders in your current project directory # and any listed in the PROJECT_EXTERNAL_SOURCH_PATHS are are valid locations # to look for source code. The any folders or files that match any of the # items in the PROJECT_EXCLUSIONS list below will be ignored. # # Each item in the PROJECT_EXCLUSIONS list will be treated as a complete # string unless teh user adds a wildcard (%) operator to match subdirectories. # GNU make only allows one wildcard for matching. The second wildcard (%) is # treated literally. # # (default) PROJECT_EXCLUSIONS = (blank) # # Will automatically exclude the following: # # $(PROJECT_ROOT)/bin% # $(PROJECT_ROOT)/obj% # $(PROJECT_ROOT)/%.xcodeproj # # Note: Leave a leading space when adding list items with the += operator ################################################################################ # PROJECT_EXCLUSIONS = ################################################################################ # PROJECT LINKER FLAGS # These flags will be sent to the linker when compiling the executable. # # (default) PROJECT_LDFLAGS = -Wl,-rpath=./libs # # Note: Leave a leading space when adding list items with the += operator # # Currently, shared libraries that are needed are copied to the # $(PROJECT_ROOT)/bin/libs directory. The following LDFLAGS tell the linker to # add a runtime path to search for those shared libraries, since they aren't # incorporated directly into the final executable application binary. ################################################################################ # PROJECT_LDFLAGS=-Wl,-rpath=./libs ################################################################################ # PROJECT DEFINES # Create a space-delimited list of DEFINES. The list will be converted into # CFLAGS with the "-D" flag later in the makefile. # # (default) PROJECT_DEFINES = (blank) # # Note: Leave a leading space when adding list items with the += operator ################################################################################ # PROJECT_DEFINES = ################################################################################ # PROJECT CFLAGS # This is a list of fully qualified CFLAGS required when compiling for this # project. These CFLAGS will be used IN ADDITION TO the PLATFORM_CFLAGS # defined in your platform specific core configuration files. These flags are # presented to the compiler BEFORE the PROJECT_OPTIMIZATION_CFLAGS below. # # (default) PROJECT_CFLAGS = (blank) # # Note: Before adding PROJECT_CFLAGS, note that the PLATFORM_CFLAGS defined in # your platform specific configuration file will be applied by default and # further flags here may not be needed. # # Note: Leave a leading space when adding list items with the += operator ################################################################################ # PROJECT_CFLAGS = ################################################################################ # PROJECT OPTIMIZATION CFLAGS # These are lists of CFLAGS that are target-specific. While any flags could # be conditionally added, they are usually limited to optimization flags. # These flags are added BEFORE the PROJECT_CFLAGS. # # PROJECT_OPTIMIZATION_CFLAGS_RELEASE flags are only applied to RELEASE targets. # # (default) PROJECT_OPTIMIZATION_CFLAGS_RELEASE = (blank) # # PROJECT_OPTIMIZATION_CFLAGS_DEBUG flags are only applied to DEBUG targets. # # (default) PROJECT_OPTIMIZATION_CFLAGS_DEBUG = (blank) # # Note: Before adding PROJECT_OPTIMIZATION_CFLAGS, please note that the # PLATFORM_OPTIMIZATION_CFLAGS defined in your platform specific configuration # file will be applied by default and further optimization flags here may not # be needed. # # Note: Leave a leading space when adding list items with the += operator ################################################################################ # PROJECT_OPTIMIZATION_CFLAGS_RELEASE = # PROJECT_OPTIMIZATION_CFLAGS_DEBUG = ################################################################################ # PROJECT COMPILERS # Custom compilers can be set for CC and CXX # (default) PROJECT_CXX = (blank) # (default) PROJECT_CC = (blank) # Note: Leave a leading space when adding list items with the += operator ################################################################################ # PROJECT_CXX = # PROJECT_CC =
the-hole.slndeleted 100644 → 0 +0 −35 Original line number Diff line number Diff line Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio 15 Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "the-hole", "the-hole.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