66# ###############################################################################
77# OF ROOT
88# The location of your root openFrameworks installation
9- # (default) OF_ROOT = ../../..
9+ # (default) OF_ROOT = ../../..
1010# ###############################################################################
1111OF_ROOT = ../../..
1212
1313# ###############################################################################
1414# PROJECT ROOT
1515# The location of the project - a starting place for searching for files
1616# (default) PROJECT_ROOT = . (this directory)
17- #
17+ #
1818# ###############################################################################
1919# PROJECT_ROOT = .
2020
2121# ###############################################################################
2222# PROJECT SPECIFIC CHECKS
23- # This is a project defined section to create internal makefile flags to
24- # conditionally enable or disable the addition of various features within
23+ # This is a project defined section to create internal makefile flags to
24+ # conditionally enable or disable the addition of various features within
2525# this makefile. For instance, if you want to make changes based on whether
26- # GTK is installed, one might test that here and create a variable to check.
26+ # GTK is installed, one might test that here and create a variable to check.
2727# ###############################################################################
2828# None
2929APPNAME = projectGenerator
@@ -33,23 +33,23 @@ PROJECT_AFTER_OSX="if test -f \"$TARGET_BUILD_DIR/projectGenerator\"; then rm \"
3333# ###############################################################################
3434# PROJECT EXTERNAL SOURCE PATHS
3535# These are fully qualified paths that are not within the PROJECT_ROOT folder.
36- # Like source folders in the PROJECT_ROOT, these paths are subject to
36+ # Like source folders in the PROJECT_ROOT, these paths are subject to
3737# exlclusion via the PROJECT_EXLCUSIONS list.
3838#
39- # (default) PROJECT_EXTERNAL_SOURCE_PATHS = (blank)
39+ # (default) PROJECT_EXTERNAL_SOURCE_PATHS = (blank)
4040#
4141# Note: Leave a leading space when adding list items with the += operator
4242# ###############################################################################
43- # PROJECT_EXTERNAL_SOURCE_PATHS =
43+ # PROJECT_EXTERNAL_SOURCE_PATHS =
4444
4545# ###############################################################################
4646# PROJECT EXCLUSIONS
47- # These makefiles assume that all folders in your current project directory
47+ # These makefiles assume that all folders in your current project directory
4848# and any listed in the PROJECT_EXTERNAL_SOURCH_PATHS are are valid locations
49- # to look for source code. The any folders or files that match any of the
49+ # to look for source code. The any folders or files that match any of the
5050# items in the PROJECT_EXCLUSIONS list below will be ignored.
5151#
52- # Each item in the PROJECT_EXCLUSIONS list will be treated as a complete
52+ # Each item in the PROJECT_EXCLUSIONS list will be treated as a complete
5353# string unless teh user adds a wildcard (%) operator to match subdirectories.
5454# GNU make only allows one wildcard for matching. The second wildcard (%) is
5555# treated literally.
@@ -75,45 +75,45 @@ PROJECT_AFTER_OSX="if test -f \"$TARGET_BUILD_DIR/projectGenerator\"; then rm \"
7575# Note: Leave a leading space when adding list items with the += operator
7676# ###############################################################################
7777
78- # Currently, shared libraries that are needed are copied to the
78+ # Currently, shared libraries that are needed are copied to the
7979# $(PROJECT_ROOT)/bin/libs directory. The following LDFLAGS tell the linker to
80- # add a runtime path to search for those shared libraries, since they aren't
80+ # add a runtime path to search for those shared libraries, since they aren't
8181# incorporated directly into the final executable application binary.
8282# TODO: should this be a default setting?
8383# PROJECT_LDFLAGS=-Wl,-rpath=./libs
8484
8585# ###############################################################################
8686# PROJECT DEFINES
87- # Create a space-delimited list of DEFINES. The list will be converted into
87+ # Create a space-delimited list of DEFINES. The list will be converted into
8888# CFLAGS with the "-D" flag later in the makefile.
8989#
9090# (default) PROJECT_DEFINES = (blank)
9191#
9292# Note: Leave a leading space when adding list items with the += operator
9393# ###############################################################################
94- # PROJECT_DEFINES =
94+ # PROJECT_DEFINES =
9595
9696# ###############################################################################
9797# PROJECT CFLAGS
98- # This is a list of fully qualified CFLAGS required when compiling for this
99- # project. These CFLAGS will be used IN ADDITION TO the PLATFORM_CFLAGS
98+ # This is a list of fully qualified CFLAGS required when compiling for this
99+ # project. These CFLAGS will be used IN ADDITION TO the PLATFORM_CFLAGS
100100# defined in your platform specific core configuration files. These flags are
101- # presented to the compiler BEFORE the PROJECT_OPTIMIZATION_CFLAGS below.
101+ # presented to the compiler BEFORE the PROJECT_OPTIMIZATION_CFLAGS below.
102102#
103103# (default) PROJECT_CFLAGS = (blank)
104104#
105- # Note: Before adding PROJECT_CFLAGS, note that the PLATFORM_CFLAGS defined in
106- # your platform specific configuration file will be applied by default and
105+ # Note: Before adding PROJECT_CFLAGS, note that the PLATFORM_CFLAGS defined in
106+ # your platform specific configuration file will be applied by default and
107107# further flags here may not be needed.
108108#
109109# Note: Leave a leading space when adding list items with the += operator
110110# ###############################################################################
111- # PROJECT_CFLAGS =
111+ # PROJECT_CFLAGS =
112112
113113# ###############################################################################
114114# PROJECT OPTIMIZATION CFLAGS
115- # These are lists of CFLAGS that are target-specific. While any flags could
116- # be conditionally added, they are usually limited to optimization flags.
115+ # These are lists of CFLAGS that are target-specific. While any flags could
116+ # be conditionally added, they are usually limited to optimization flags.
117117# These flags are added BEFORE the PROJECT_CFLAGS.
118118#
119119# PROJECT_OPTIMIZATION_CFLAGS_RELEASE flags are only applied to RELEASE targets.
@@ -124,15 +124,15 @@ PROJECT_AFTER_OSX="if test -f \"$TARGET_BUILD_DIR/projectGenerator\"; then rm \"
124124#
125125# (default) PROJECT_OPTIMIZATION_CFLAGS_DEBUG = (blank)
126126#
127- # Note: Before adding PROJECT_OPTIMIZATION_CFLAGS, please note that the
128- # PLATFORM_OPTIMIZATION_CFLAGS defined in your platform specific configuration
129- # file will be applied by default and further optimization flags here may not
127+ # Note: Before adding PROJECT_OPTIMIZATION_CFLAGS, please note that the
128+ # PLATFORM_OPTIMIZATION_CFLAGS defined in your platform specific configuration
129+ # file will be applied by default and further optimization flags here may not
130130# be needed.
131131#
132132# Note: Leave a leading space when adding list items with the += operator
133133# ###############################################################################
134134PROJECT_OPTIMIZATION_CFLAGS_RELEASE = -O3
135- # PROJECT_OPTIMIZATION_CFLAGS_DEBUG =
135+ # PROJECT_OPTIMIZATION_CFLAGS_DEBUG =
136136
137137# ###############################################################################
138138# PROJECT COMPILERS
@@ -141,8 +141,8 @@ PROJECT_OPTIMIZATION_CFLAGS_RELEASE = -O3
141141# (default) PROJECT_CC = (blank)
142142# Note: Leave a leading space when adding list items with the += operator
143143# ###############################################################################
144- # PROJECT_CXX =
145- # PROJECT_CC =
144+ # PROJECT_CXX =
145+ # PROJECT_CC =
146146
147147
148148# PLATFORM_CORE_EXCLUSIONS += ../../../libs/openFrameworks/utils
@@ -179,11 +179,3 @@ PLATFORM_CORE_EXCLUSIONS += ../../../libs/fmod%
179179
180180# inside ofImage inside ofUtils
181181# PLATFORM_CORE_EXCLUSIONS += ../../../libs/uriparser%
182-
183- export OF_NO_FMOD =1
184- export USER_PREPROCESSOR_DEFINITIONS="OF_NO_FMOD =1"
185- export LIB_FMOD =""
186-
187- # Uncomment/comment below to switch between C++11 and C++17 ( or newer ). On macOS C++17 needs 10.15 or above.
188- export MAC_OS_MIN_VERSION = 10.15
189- export MAC_OS_CPP_VER = -std=c++17
0 commit comments