-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Apply latest clang-format * Replace different instances of SoundData with SoundDataBuilder * Add documentation * Use windows-2022 and start audiosrv * enable developer command prompt * printf debugging my pipeline * Fix windows change in output path * Try setting up a virtual soundcard * ls to Copy to correct folder * Execute from local directory to avoid path issues * correctly execute executable? * clone lfs files * try to fix windows ci build for coverage * try to fix windows ci build for coverage * call executable from correct path * call executable from correct path * Use CMP instead of FetchContent for external libraries * Add documentation * Add missing test cases * Try to trigger move assignment operator * Fix include quotation marks
- Loading branch information
1 parent
a0c4fd4
commit 5e7e812
Showing
65 changed files
with
591 additions
and
677 deletions.
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
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 |
---|---|---|
@@ -1,14 +1,53 @@ | ||
message(STATUS "Add CPM.cmake") | ||
# download CPM.cmake | ||
file( | ||
DOWNLOAD | ||
https://github.com/cpm-cmake/CPM.cmake/releases/download/v0.38.6/CPM.cmake | ||
${CMAKE_BINARY_DIR}/cmake/CPM.cmake | ||
EXPECTED_HASH SHA256=11c3fa5f1ba14f15d31c2fb63dbc8628ee133d81c8d764caad9a8db9e0bacb07 | ||
) | ||
include(${CMAKE_BINARY_DIR}/cmake/CPM.cmake) | ||
|
||
message(STATUS "Fetching external libraries started") | ||
|
||
|
||
if (NOT EMSCRIPTEN) | ||
add_subdirectory(openal-soft) | ||
message(STATUS "Fetching openal-soft") | ||
CPMAddPackage( | ||
NAME openal-soft | ||
GITHUB_REPOSITORY kcat/openal-soft | ||
GIT_TAG 1.21.1 | ||
OPTIONS | ||
"ALSOFT_UTILS OFF" | ||
"ALSOFT_EXAMPLES OFF" | ||
"ALSOFT_UPDATE_BUILD_VERSION OFF" | ||
) | ||
endif () | ||
|
||
add_subdirectory(libnyquist) | ||
message(STATUS "Fetching libnyquist") | ||
CPMAddPackage( | ||
NAME libnyquist | ||
GITHUB_REPOSITORY ddiakopoulos/libnyquist | ||
GIT_TAG master | ||
OPTIONS | ||
"LIBNYQUIST_BUILD_EXAMPLE OFF" | ||
) | ||
|
||
if (OALPP_ENABLE_UNIT_TESTS) | ||
add_subdirectory(catch2) | ||
message(STATUS "Fetching catch2") | ||
CPMAddPackage( | ||
NAME catch2 | ||
GITHUB_REPOSITORY catchorg/Catch2 | ||
GIT_TAG v2.13.8 | ||
) | ||
endif () | ||
|
||
|
||
if (OALPP_ENABLE_APPROVAL_TESTS) | ||
add_subdirectory(approvaltestscpp) | ||
message(STATUS "Fetching approvaltests") | ||
CPMAddPackage( | ||
NAME approvaltests | ||
GITHUB_REPOSITORY approvals/ApprovalTests.cpp | ||
GIT_TAG v.10.12.2 | ||
) | ||
endif () |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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
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
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
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
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
#ifndef OPENALPP_SOUND_INCLUDE_HPP | ||
#define OPENALPP_SOUND_INCLUDE_HPP | ||
|
||
#include "oalpp/sound/sound.hpp" | ||
#include <oalpp/sound/sound.hpp> | ||
|
||
#endif // OPENALPP_SOUND_INCLUDE_HPP |
Oops, something went wrong.