-
Notifications
You must be signed in to change notification settings - Fork 47
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
Building on Windows. #67
Comments
Let me finish a few more core features now and get back to this. I did try to generate VS solution before using CMAKE with a similar settings in the configure file on Win64. I had the same problem when it comes to IlmBase. I did get a solution file though. Then I needed to open it to continue downloading and compilation for "IlmBase". This part of "CMakeLists.txt" should do something: ` if (WIN32)
else ()
endif () set (IlmBase_FOUND TRUE) |
Getting "Ceres::Solve" built on Windows will be more complicated. Please see the following from its website on Installation " For "rawtoaces", I think we can build an "executable", static library ".lib" or dynamic library ".dll" for the users on Windows and then just distribute them. |
Yeah Ceres is a royal pain, hence my comment on Slack, oh and this was my facebook status earlier:
I managed to build a version without glog and gflags, I had some nasty compiler errors happening when including eigen otherwise. |
Ideally and whatever the platform is, I would like to be able to pass arguments to CMake, something along those lines:
Ceres Solver has actually a very nice configuration in that regard. |
About Ceres on Windows: https://groups.google.com/forum/#!topic/ceres-solver/cR8SSDPFvAk |
Probably need to add a few more "FindPackage.cmake" files to get these variables defined so you can pass stuff to CMake. In fact, as your mentioned, "Cere Solver" already has them. |
Yeah, I managed very difficulty to compile Ceres with glog and gflags support yesterday night, everything needs to be dynamically linked among other things. |
Hey guys, is there a compiled version of rawtoaces for Windows somewhere ? I'm about to start the adventure but since I compile things once every 4 years, if someone has done it and can share it, it would be a blast! Thanks! |
Would love to have a windows-build with this but I got it running successfully using WSL on Windows, so we windows users aren't dead in the water at least! |
Hey there! Just like the other 2 people who already commented on the status of this issue: is there any news on a Windows build? |
You can make a build using WSL: #116 |
Yeah I know! I got that working perfectly, but we would like to use this tool on our Windows systems without having to use WSL. WSL is not really usable in terms of pipeline development. |
Another alternative is Docker: #118 |
Ooh thanks! This is perfect! Hadn't even though of it! |
Hi,
I'm trying to build on Windows and I'm not exactly sure how to pass the various dependencies includes and libraries directories to CMake and it is very likely that the various
find_package
macros will not on our system.Here is my current log:
The text was updated successfully, but these errors were encountered: