ML-examples icon indicating copy to clipboard operation
ML-examples copied to clipboard

Fix case-sensitive variable name in CMakeLists.txt

Open innermost47 opened this issue 7 months ago • 0 comments

Summary

Fixed a case-sensitivity issue in CMakeLists.txt where ${srcs} was used instead of ${SRCS}.

Problem

The build was failing with:

CMake Error at CMakeLists.txt:77 (add_executable):
  No SOURCES given to target: audiogen

Solution

Changed ${srcs} to ${SRCS} on line 77 to match the variable defined on line 75.

Testing

  • [x] Project builds successfully
  • [x] No CMake configuration errors

Changes

  • Line 77: add_executable(audiogen ${srcs})add_executable(audiogen ${SRCS})

innermost47 avatar Jun 26 '25 13:06 innermost47