-
Notifications
You must be signed in to change notification settings - Fork 266
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
Does cmake build work for plugins on cygwin? #2980
Comments
Cygwin plugins would use You could modify EDIT: Apparently Autotools does the |
OK, thanks for the info, I am studying it carefully. I wonder if you could elaborate on the changes needed to CMakeFiles.txt? They are not clear to me. Also, I don't understand your comments about findplugin.sh, which I am not really familiar with... |
This bit: netcdf-c/plugins/CMakeLists.txt Lines 12 to 14 in d73521c
disagrees with what Autotools does, as described in findplugin.in here:netcdf-c/plugins/findplugin.in Lines 47 to 49 in d73521c
I'm pretty sure the Autotools way works, so changing plugins/CMakeLists.txt to match findplugin.in should be the simplest way to get everything matching and hopefully working.
I think I remember plugin tests from the Autotools build, but I can't remember where to find them so I can't speak on why CMake isn't running them. |
OK, thanks for the detail, I am trying it here: edwardhartnett#2 |
Yea! It worked! Thanks @DWesl ! |
Does the cmake build work for plugins on cygwin?
The autotools build does work on cygwin, and produces these files for plugins:
And my tst_zstd works with autotools.
But my tst_zstd does not work with the cmake build on cygwin, and the following files are produced:
On cygwin I think we should expect .a files, yet the cmake build only produces .dll files.
The text was updated successfully, but these errors were encountered: