-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
27 changed files
with
3,375 additions
and
2,708 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,6 @@ | ||
cmake_minimum_required(VERSION 3.5 FATAL_ERROR) | ||
project(AvSpeechInNoise) | ||
project(AvSpeechInNoise VERSION 1.3.0 LANGUAGES CXX) | ||
|
||
add_subdirectory(googletest) | ||
add_subdirectory(GSL) | ||
add_subdirectory(av-speech-in-noise) | ||
|
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,11 +1,4 @@ | ||
set( | ||
SOURCES | ||
"src/AdaptiveTrack.cpp" | ||
) | ||
|
||
add_library(adaptive-track ${SOURCES}) | ||
add_library(adaptive-track src/AdaptiveTrack.cpp) | ||
target_include_directories(adaptive-track PUBLIC include) | ||
target_include_directories(adaptive-track PRIVATE include/adaptive-track) | ||
target_compile_options(adaptive-track PRIVATE -Wall -Wextra -pedantic -Werror) | ||
target_link_libraries(adaptive-track recognition-test) | ||
|
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,4 +1,3 @@ | ||
add_library(av-speech-in-noise INTERFACE) | ||
target_include_directories(av-speech-in-noise INTERFACE include) | ||
target_compile_features(av-speech-in-noise INTERFACE cxx_std_14) | ||
|
Oops, something went wrong.