-
Notifications
You must be signed in to change notification settings - Fork 194
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
CMake version #14
Comments
ben-clayton
added a commit
to ben-clayton/marl
that referenced
this issue
Sep 9, 2019
Don't use GLOB and list FILTER. globbing doesn't automatically scan new files, requiring cmake to be re-run every time a new file is added. FILTER was apparently added in a moderately recent version of CMake, which not everyone has. Fixes: google#14
Hi @facontidavide, Thank you for your feedback. I've put together a change that should fix this (#16). Many thanks, |
ben-clayton
added a commit
that referenced
this issue
Sep 9, 2019
Don't use GLOB and list FILTER. globbing doesn't automatically scan new files, requiring cmake to be re-run every time a new file is added. FILTER was apparently added in a moderately recent version of CMake, which not everyone has. Fixes: #14
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi,
I was trying to compile with CMake 3.5.2, but I got this error:
Apparently FILTER was introduced in version 3.6, but according to the CMakeLists.txt file, only version 2.8 is required.
https://github.com/google/marl/blob/master/CMakeLists.txt#L15
Can we remove FILTER to make this work with older versions of CMake?
The text was updated successfully, but these errors were encountered: