Skip to content
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

added HOAUgens #146

Merged
merged 33 commits into from
Jun 18, 2018
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
0fd70e1
added HOAUgens
florian-grond Jun 2, 2017
2aea881
added Readme
florian-grond Jun 2, 2017
c49ebfc
compiled HOAUgens with most recent Faust
florian-grond Jun 5, 2017
dd7b4e9
removed redundant classes
florian-grond Jun 5, 2017
a36f88f
compiled up to order 4 with most recent Faust version
florian-grond Jun 26, 2017
17ac693
updated HOA Ugens and CMakelist in oder to supress debugmessages and …
florian-grond Jan 6, 2018
83ff22b
added NOT WIN32 macro for -fbracket-depth flag
florian-grond Jan 7, 2018
e3b0e5f
update readme
florian-grond Jan 12, 2018
d9ca104
update readme
florian-grond Jan 12, 2018
27d67c0
change to if(APPLE) for bracketdepth
florian-grond Jan 28, 2018
265af6f
removed binaries from sources
florian-grond Jan 28, 2018
9738aec
changing to if(APPLE AND CMAKE_COMPILER_IS_CLANG)
florian-grond Jan 29, 2018
8871723
changed fbracket test to CMAKE_COMPILER_IS_CLANG
florian-grond Jan 29, 2018
fad983d
adressing Patrick's change requests
florian-grond Jan 31, 2018
de082bc
small worrding change
florian-grond Jan 31, 2018
749ddaf
adopting Brian's change requests
florian-grond Jan 31, 2018
363cd19
edit CMakeList adopting Brian's change request
florian-grond Jan 31, 2018
dd2a61d
add target specific clang compile flag
patrickdupuis Feb 1, 2018
b6a43b4
use set_property target append property
patrickdupuis Feb 1, 2018
646cee6
Merge pull request #1 from patrickdupuis/HOAUGens
florian-grond Feb 2, 2018
1390db6
readme fix
florian-grond Feb 3, 2018
c8586bb
typo fix CPP -> C++
florian-grond Feb 3, 2018
73e04f6
minor typo
florian-grond Feb 3, 2018
18f996f
Merge branch 'master' into master
mossheim Feb 3, 2018
ea84645
move set property to after target creation (#2)
patrickdupuis Feb 4, 2018
53408c5
set property per source file (#3)
patrickdupuis Feb 4, 2018
965cf3b
integrate most recent addition fro Pierre Lecomte
florian-grond Feb 17, 2018
589c89e
Merge branch 'master' of https://github.com/florian-grond/sc3-pluginsHOA
florian-grond Feb 17, 2018
939dfe3
fix CMakeList typo
florian-grond Feb 17, 2018
2e9ba54
added beam pattern option (#4)
Apr 26, 2018
e993ad1
add option to build HOAUGens (#5)
patrickdupuis Jun 12, 2018
6a039c4
improve the option's description (#6)
patrickdupuis Jun 12, 2018
55cd622
Add a basic README (#7)
patrickdupuis Jun 18, 2018
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions source/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,8 @@ macro(BUILD_PLUGIN PLUGIN_NAME PLUGIN_SOURCES PLUGIN_LIBS PLUGIN_DIR)
endmacro()


set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fbracket-depth=512")

#-----------------------
# plugins without extras
#-----------------------
Expand All @@ -94,6 +96,7 @@ set(PLUGIN_DIRS
DistortionUGens
DWGUGens
GlitchUGens
HOAUGens
JoshUGens
LoopBufUGens
MCLDUGens
Expand Down
Loading