This repository was archived by the owner on Dec 18, 2022. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 248
Add CMake modules and build without vendored dependencies using vcpkg #228
Merged
Merged
Changes from all commits
Commits
Show all changes
14 commits
Select commit
Hold shift + click to select a range
dedb67e
AudioIOBase: add missing #include <portaudio.h>
Be-ing 4777d04
Disable EXPERIMENTAL_MIDI_OUT
Be-ing b1549dd
CMake: replace Conan with find_package and add find modules
Be-ing 6a7c7cd
SourceHut CI: build with Arch Linux packages except wxWidgets 3.1.5
Be-ing ea48aa3
Remove cmake-proxies hacks for building vendored libraries
Be-ing 74ccbb8
Devendor all dependencies except libnyquist
Be-ing e9a3742
CMake: fix handling of use_pch option
Be-ing 7f95afc
ToolManager: move #include <wx/eventfilter.h> to cpp file
Be-ing 0acf00d
Use vcpkg for dependencies and cleanup GH Actions workflow
Be-ing af90fee
Rewrite BUILDING.md for revamped dependency management with vcpkg
Be-ing 76c63fa
CMake: add options to disable sccache and ccache if they are found
Be-ing 86ef2cf
Add compile defintions to silence C++17 warnings
emabrey 43eeb00
remove unused CMake modules
Be-ing d54bcb0
Fix `Findid3tag.cmake`
Be-ing File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
The diff you're trying to view is too large. We only load the first 3000 changed files.
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,23 +1,40 @@ | ||
| image: archlinux | ||
| packages: | ||
| - alsa-lib | ||
| - cmake | ||
| - ninja | ||
|
|
||
| - expat | ||
| - gcc-libs | ||
| - gdk-pixbuf2 | ||
| - glibc | ||
| - flac | ||
| - gtk3 | ||
| - glib2 | ||
| - libid3tag | ||
| - lilv | ||
| - libmad | ||
| - libogg | ||
| - portaudio | ||
| - portmidi | ||
| - portsmf | ||
| - libsndfile | ||
| - libsoxr | ||
| - suil | ||
| - twolame | ||
| - vamp-plugin-sdk | ||
| - libvorbis | ||
| - soundtouch | ||
| - ffmpeg | ||
| - gtk2 | ||
| - jack2 | ||
| - python-pip | ||
|
|
||
| sources: | ||
| - https://git.sr.ht/~tenacity/tenacity | ||
| tasks: | ||
| - conan: | | ||
| sudo pip install conan | ||
| - configure: | | ||
| mkdir build | ||
| cd build | ||
| cmake -G "Unix Makefiles" \ | ||
| -Daudacity_use_ffmpeg=loaded \ | ||
| ../tenacity | ||
| - make: | | ||
| cd build | ||
| make -j4 | ||
| # TODO: Add artifacts | ||
| - wxwidgets3-1: | | ||
| git clone https://github.com/wxWidgets/wxWidgets.git | ||
| cd wxWidgets | ||
| git checkout v3.1.5 | ||
| cmake -G Ninja -S . -B cmake_build | ||
| cmake --build cmake_build | ||
| sudo cmake --install cmake_build | ||
| - configure: cmake -G Ninja -S tenacity -B build | ||
| - build: cmake --build build |
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 |
|---|---|---|
|
|
@@ -213,4 +213,6 @@ win/xaudacity.ico | |
| *.dll | ||
|
|
||
| # VSCode | ||
| .vscode/ | ||
| .vscode/ | ||
|
|
||
| vcpkg_installed | ||
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 |
|---|---|---|
| @@ -0,0 +1,4 @@ | ||
| [submodule "vcpkg"] | ||
| path = vcpkg | ||
| url = https://github.com/tenacityteam/vcpkg.git | ||
n0toose marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| branch = tenacity | ||
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.
Uh oh!
There was an error while loading. Please reload this page.