You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello,
I am trying to run this script: https://github.com/phodina/ProjectConverter/blob/master/converter.py
But I am getting an error at
cmakefile = cmake.CMake(project.getProject(), args.path)
cmakefile.populateCMake()
AttributeError: module 'cmake' has no attribute 'CMake'
Can you please write how to figure out how to fix this?
The text was updated successfully, but these errors were encountered:
We never provided a CMake class. This was trying to get a cmake.py file in your local project, which Python 2 would have done, while Python 3 requires you use a relative import, like from .cmake import CMake. Doesn't have anything to do with this package.
Hello,
I am trying to run this script:
https://github.com/phodina/ProjectConverter/blob/master/converter.py
But I am getting an error at
cmakefile = cmake.CMake(project.getProject(), args.path)
cmakefile.populateCMake()
AttributeError: module 'cmake' has no attribute 'CMake'
Can you please write how to figure out how to fix this?
The text was updated successfully, but these errors were encountered: