-
Notifications
You must be signed in to change notification settings - Fork 225
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
audio redesign #2407
Closed
Closed
audio redesign #2407
Changes from all commits
Commits
Show all changes
13 commits
Select commit
Hold shift + click to select a range
6899807
First stage: Got VS build working on Windows and Replaced ASIOSDK2.
pgScorpio b43520e
Bugfix autobuild error (IUnknown errors)
pgScorpio d97e3b8
Bugfix autobuild
pgScorpio 1adad03
Fist stage. Got Windows Visuall Studio build going (See JamulusWin-RE…
pgScorpio f5c5c57
clang-format of windows folder
pgScorpio 280abd2
bugfix old git folder
pgScorpio 53def5d
added .vs folder to gitignore
pgScorpio 89bc903
Remove .vs folder
pgScorpio b679381
clang formatted again (now with Visual Studio plugin)
pgScorpio 19808ea
Re-included the ASIOSDK2 folder (but only using the 2 needed headers …
pgScorpio b244f94
Update correct version info.
pgScorpio d595e25
Added myself to the contibuters list
pgScorpio d1b1555
second stage sound redesign.
pgScorpio 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 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 |
---|---|---|
@@ -1,3 +1,4 @@ | ||
# exclude third party code from clang-format checks | ||
./libs | ||
./windows/nsProcess | ||
./windows/ASIOSDK2 |
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
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
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 @@ | ||
JamulusWin.* files for builing the windows version using visual studio 2019 (by pgScorpio) | ||
|
||
#================================================================================================== | ||
# WARNING: | ||
# The vcx project files in this folder are heavily modified to make them movable. | ||
# DO NOT REGENERATE VCX FILES FROM Qt! | ||
# When the Jamulus pro file is changed, the vcx files need (often manual) editing too! | ||
# | ||
# In Visual Studio NEVER use ABSOLUTE PATHS but always use the appropriate variables. | ||
# In Visual Studio NEVER use PERSONAL PATHS but always use appropriate environment variables. | ||
# | ||
# Do NOT directly open the JamulusWin.vcxproj or JamulusWin.sln files by double-clicking ! | ||
# ALWAYS start Visual studio using this script from Powershell using./JamulusWin.ps1 --startvs | ||
#================================================================================================== | ||
|
||
|
||
JamulusWin.ps1 is a PowerShell script to setup the environment needed for builing with Visual Studio. | ||
JamulusWin.ps1 also handles all Custom Build Steps during building of the project. (Modify when needed.) | ||
|
||
Run ./JamulusWin.ps1 without parameters for command options info. | ||
|
||
You should check the variables defined in JamulusWin.ps1 to reflect your Qt installation | ||
|
||
You can modify the 'User Defined functions' in JamulusWin.ps1 if needed. | ||
|
||
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.
This should go into COMPILING.md if we merge the vs files.