-
Notifications
You must be signed in to change notification settings - Fork 27
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 improvements #8
Conversation
Thanks. About the examples: There is nothing to build here without examples. The library consists only of headers. We may want to put everything except the install target inside the IF EXAMPLES block? There is no need to check for libraries if EXAMPLES is off. Also about the install rule for headers. I think we also need the .h files from all the other include directories under examples/matrices example/matprod and examples/areig? |
|
The example headers contain some nice utility (e.g. the class Solution to print results, several simple matrices for testing, wrapper functions etc.). I think it makes sense to make them available via install. (Can you do that)? Then the travis file needs to be changed to "make examples" and maybe we want to run "make install" also for testing on travis. |
I updated the Travis file. |
Yes, would be great. |
Ok, done (Travis updated too). |
For some reason, the travis mac build still fails. Probably some of the mac specific fortran libraries are not added to the example target? |
Oh, also about the install naming. At some point we decided to call the project arpackpp, should we install to that dir instead of ++ ? Or do you know of existing dependencies that expect arpack++ ? |
I'll try to fix that tomorrow. |
This should fix it: Naming: I'd prefer arpackpp. That will make it clear that this is not the old arpack++ library. |
0b2b58d
to
5657289
Compare
6b30810
to
7a05834
Compare
Ok, fixed. |
No description provided.