Skip to content

Fix case-sensitive variable name in CMakeLists.txt #161

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

innermost47
Copy link

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

  • Project builds successfully
  • No CMake configuration errors

Changes

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

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant