-
-
Notifications
You must be signed in to change notification settings - Fork 2.6k
remove OF_NO_FMOD #8184
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
dimitre
wants to merge
18
commits into
openframeworks:master
Choose a base branch
from
dimitre:nofmod
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+107
−198
Open
remove OF_NO_FMOD #8184
Changes from all commits
Commits
Show all changes
18 commits
Select commit
Hold shift + click to select a range
ebae252
remove OF_NO_FMOD
dimitre 1060e05
untangle constants
dimitre 5193705
revert some
dimitre 551e6c8
remove quicktime and qtkit mentions
dimitre c35e97b
more template changes
dimitre 9787e2a
more changes
dimitre 1a8b6c9
updates
dimitre dbda2ab
ok
dimitre e0abfcd
revert cout
dimitre 88eefa2
revert cout
dimitre 44320b8
cleanup
dimitre 6229cb2
merge master
dimitre 380a69f
merge master
dimitre c468077
update osx makefile
dimitre b8b1550
Merge branch 'master' into nofmod
dimitre 382a766
merge master
dimitre a6d5537
fix
dimitre 9bb39d6
merge master
dimitre File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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 |
|---|---|---|
|
|
@@ -6,49 +6,56 @@ CLANG_C_LANGUAGE_STANDARD = c17 | |
| MACOSX_DEPLOYMENT_TARGET = 10.15 | ||
|
|
||
|
|
||
| HEADER_OF = "$(OF_PATH)/libs/openFrameworks/**" | ||
| HEADER_FREETYPE = "$(OF_PATH)/libs/freetype/include" | ||
| HEADER_FREETYPE2 = "$(OF_PATH)/libs/freetype/include/freetype2" | ||
| //HEADER_FMOD = "$(OF_PATH)/libs/fmod/include" | ||
| HEADER_GLEW = "$(OF_PATH)/libs/glew/include" | ||
| HEADER_FREEIMAGE = "$(OF_PATH)/libs/FreeImage/include" | ||
| HEADER_TESS2 = "$(OF_PATH)/libs/tess2/include" | ||
| HEADER_CAIRO = "$(OF_PATH)/libs/cairo/include" | ||
| HEADER_RTAUDIO = "$(OF_PATH)/libs/rtAudio/include" | ||
| HEADER_GLFW = "$(OF_PATH)/libs/glfw/include" | ||
| HEADER_UTF8 = "$(OF_PATH)/libs/utf8/include" | ||
| HEADER_JSON = "$(OF_PATH)/libs/json/include" | ||
| HEADER_GLM = "$(OF_PATH)/libs/glm/include" | ||
| HEADER_BROTLI = "$(OF_PATH)/libs/brotli/include" | ||
| HEADER_CURL = "$(OF_PATH)/libs/curl/include" | ||
| HEADER_SSL = "$(OF_PATH)/libs/openssl/include" | ||
| HEADER_URIPARSER = "$(OF_PATH)/libs/uriparser/include" | ||
| HEADER_PUGIXML = "$(OF_PATH)/libs/pugixml/include" | ||
| HEADER_OF = $(OF_PATH)/libs/openFrameworks/** | ||
| HEADER_FREETYPE = $(OF_PATH)/libs/freetype/include | ||
| HEADER_FREETYPE2 = $(OF_PATH)/libs/freetype/include/freetype2 | ||
| //HEADER_FMOD = $(OF_PATH)/libs/fmod/include | ||
| HEADER_GLEW = $(OF_PATH)/libs/glew/include | ||
| HEADER_FREEIMAGE = $(OF_PATH)/libs/FreeImage/include | ||
| HEADER_TESS2 = $(OF_PATH)/libs/tess2/include | ||
| HEADER_CAIRO = $(OF_PATH)/libs/cairo/include | ||
| HEADER_RTAUDIO = $(OF_PATH)/libs/rtAudio/include | ||
| HEADER_GLFW = $(OF_PATH)/libs/glfw/include | ||
| HEADER_UTF8 = $(OF_PATH)/libs/utf8/include | ||
| HEADER_JSON = $(OF_PATH)/libs/json/include | ||
| HEADER_GLM = $(OF_PATH)/libs/glm/include | ||
| HEADER_BROTLI = $(OF_PATH)/libs/brotli/include | ||
| HEADER_CURL = $(OF_PATH)/libs/curl/include | ||
| HEADER_SSL = $(OF_PATH)/libs/openssl/include | ||
| HEADER_URIPARSER = $(OF_PATH)/libs/uriparser/include | ||
| HEADER_PUGIXML = $(OF_PATH)/libs/pugixml/include | ||
|
|
||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Curious about the quote removal - is there any downside to removing? |
||
| //------- Libraries | ||
| LIB_OF_RELEASE = "$(OF_PATH)/libs/openFrameworksCompiled/lib/osx/openFrameworks.a" | ||
| LIB_OF_DEBUG = "$(OF_PATH)/libs/openFrameworksCompiled/lib/osx/openFrameworksDebug.a" | ||
|
|
||
| //LIB_FMOD = "$(OF_PATH)/libs/fmod/lib/macos/libfmod.dylib" | ||
|
|
||
| //LIB_GLFW = "$(OF_PATH)/libs/glfw/lib/osx/glfw3.a" | ||
| //LIB_FREEIMAGE = "$(OF_PATH)/libs/FreeImage/lib/osx/freeimage.a" | ||
| //LIB_FREETYPE = "$(OF_PATH)/libs/freetype/lib/osx/freetype.a" | ||
| //LIB_GLEW = "$(OF_PATH)/libs/glew/lib/osx/glew.a" | ||
| //LIB_RTAUDIO = "$(OF_PATH)/libs/rtAudio/lib/osx/rtaudio.a" | ||
| //LIB_TESS = "$(OF_PATH)/libs/tess2/lib/osx/tess2.a" | ||
| //LIB_CAIRO1 = "$(OF_PATH)/libs/cairo/lib/osx/cairo-script-interpreter.a" | ||
| //LIB_CAIRO2 = "$(OF_PATH)/libs/cairo/lib/osx/cairo.a" | ||
| //LIB_CAIRO3 = "$(OF_PATH)/libs/cairo/lib/osx/pixman-1.a" | ||
| //LIB_FMOD = $(OF_PATH)/libs/fmod/lib/macos/libfmod.dylib | ||
|
|
||
| //LIB_GLFW = $(OF_PATH)/libs/glfw/lib/osx/glfw3.a | ||
| //LIB_FREEIMAGE = $(OF_PATH)/libs/FreeImage/lib/osx/freeimage.a | ||
| //LIB_FREETYPE = $(OF_PATH)/libs/freetype/lib/osx/freetype.a | ||
| //LIB_GLEW = $(OF_PATH)/libs/glew/lib/osx/glew.a | ||
| //LIB_RTAUDIO = $(OF_PATH)/libs/rtAudio/lib/osx/rtaudio.a | ||
| //LIB_TESS = $(OF_PATH)/libs/tess2/lib/osx/tess2.a | ||
| //LIB_CAIRO1 = $(OF_PATH)/libs/cairo/lib/osx/cairo-script-interpreter.a | ||
| //LIB_CAIRO2 = $(OF_PATH)/libs/cairo/lib/osx/cairo.a | ||
| //LIB_CAIRO3 = $(OF_PATH)/libs/cairo/lib/osx/pixman-1.a | ||
| //LIB_CURL = "-lcurl" | ||
| //LIB_URIPARSER = "$(OF_PATH)/libs/uriparser/lib/osx/uriparser.a" | ||
| //LIB_PUGIXML = "$(OF_PATH)/libs/pugixml/lib/osx/pugixml.a" | ||
| //LIB_URIPARSER = $(OF_PATH)/libs/uriparser/lib/osx/uriparser.a | ||
| //LIB_PUGIXML = $(OF_PATH)/libs/pugixml/lib/osx/pugixml.a | ||
|
|
||
|
|
||
|
|
||
|
|
||
| OF_CORE_HEADERS = $(HEADER_OF) $(HEADER_FREETYPE) $(HEADER_FREETYPE2) $(HEADER_GLEW) $(HEADER_FREEIMAGE) $(HEADER_TESS2) $(HEADER_CAIRO) $(HEADER_RTAUDIO) $(HEADER_GLFW) $(HEADER_UTF8) $(HEADER_JSON) $(HEADER_GLM) $(HEADER_CURL) ${HEADER_SSL} $(HEADER_URIPARSER) $(HEADER_PUGIXML) ${HEADER_BROTLI} | ||
|
|
||
| OF_CORE_FRAMEWORKS = -framework Accelerate -framework AppKit -framework ApplicationServices -framework AudioToolbox -framework AVFoundation -framework Cocoa -framework CoreAudio -framework CoreFoundation -framework CoreMedia -framework CoreServices -framework CoreVideo -framework Foundation -framework IOKit -framework OpenGL -framework QuartzCore -framework Security -framework SystemConfiguration -framework Metal | ||
|
|
||
| // FMOD can be enabled in OF Core by uncommenting this block | ||
| //USE_FMOD=1 | ||
| //USER_PREPROCESSOR_DEFINITIONS=USE_FMOD=1 $(inherited) | ||
| //OF_CORE_HEADERS = $(OF_PATH)/libs/fmod/include $(inherited) | ||
| //OF_CORE_LIBS=$(OF_PATH)/libs/fmod/lib/macos/libfmod.dylib $(inherited) | ||
|
|
||
|
|
||
| ALWAYS_SEARCH_USER_PATHS = NO | ||
|
|
||
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Safe to remove even though it mentions rtAudio?