We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
As The code line https://github.com/mknaranja/GMGPolar/blob/ddc23c2df1f424ced9a8c905f35dc43e8308bc3e/CMakeLists.txt#L6 is considered bad practice (https://stackoverflow.com/questions/32411963/why-is-cmake-file-glob-evil) we should go over to concrete list of files. However, this can be done easily without a lot of work by just using python to create folder lists:
import os for file in os.listdir('src/test_cases'): print('X' + file)
We should then probably work with add_subdirectory that contain the corresponding CMakeLists.txt.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
As The code line https://github.com/mknaranja/GMGPolar/blob/ddc23c2df1f424ced9a8c905f35dc43e8308bc3e/CMakeLists.txt#L6 is considered bad practice (https://stackoverflow.com/questions/32411963/why-is-cmake-file-glob-evil) we should go over to concrete list of files. However, this can be done easily without a lot of work by just using python to create folder lists:
We should then probably work with add_subdirectory that contain the corresponding CMakeLists.txt.
The text was updated successfully, but these errors were encountered: