Skip to content

Fix CMake typo in python module build type check on Apple #136

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: develop
Choose a base branch
from

Conversation

jijamik
Copy link

@jijamik jijamik commented May 14, 2025

Summarize your change.

Corrected a typo in the CMake variable CMAKE__BUILD_TYPE to the correct CMAKE_BUILD_TYPE within the src/python_module/src/CMakeLists.txt file.

Describe what you have tested and on which operating system.

Verified that it build successfully without the previously mentioned error after applying this change. Tested on macOS

Add a list of changes, and note any that might need special attention during the review.

  • File: src/python_module/src/CMakeLists.txt
    • Changed if (${CMAKE__BUILD_TYPE} STREQUAL "Debug")
    • To if (${CMAKE_BUILD_TYPE} STREQUAL "Debug")

This is a straightforward typo correction and should not require special attention beyond verifying the variable name is now correct.

Signed-off-by: jijamik <[email protected]>
Copy link

linux-foundation-easycla bot commented May 14, 2025

CLA Signed


The committers listed above are authorized under a signed CLA.

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