This is an automated email from the ASF dual-hosted git repository. xiaoxiang pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/nuttx-apps.git
commit 8cd8866d87856f3ca235bfda7aea3e6116346e7f Author: SPRESENSE <[email protected]> AuthorDate: Tue Jun 25 20:15:38 2024 +0900 audioutils/fmsynth: Fix CMakeLists.txt Fix a configuration name used in CMakeLists.txt. --- audioutils/fmsynth/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/audioutils/fmsynth/CMakeLists.txt b/audioutils/fmsynth/CMakeLists.txt index 968a001ca..be63c3afb 100644 --- a/audioutils/fmsynth/CMakeLists.txt +++ b/audioutils/fmsynth/CMakeLists.txt @@ -18,6 +18,6 @@ # # ############################################################################## -if(CONFIG_AUDIOUTILS_MMLPARSER_LIB) +if(CONFIG_AUDIOUTILS_FMSYNTH_LIB) target_sources(apps PRIVATE fmsynth.c fmsynth_eg.c fmsynth_op.c) endif()
