How can I build EGSnrc under Windows? #767
-
Building projects with visual studio: I want to learn the details of the code and do some secondary development. How can I build the project under windows? Is there a tool similar to |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 9 replies
-
We don't use cmake. On linux there is a configuration script that does it all - on windows it's really just the installer gui that is comprehensive. But for development essentially if you make a change in egs++ then in HEN_HOUSE/egs++ do |
Beta Was this translation helpful? Give feedback.
-
Not yet. But as soon as windows 11 hits general release it will be on my list ( I don’t have a spare machine to install the beta on currently).
|
Beta Was this translation helpful? Give feedback.
We don't use cmake. On linux there is a configuration script that does it all - on windows it's really just the installer gui that is comprehensive. But for development essentially if you make a change in egs++ then in HEN_HOUSE/egs++ do
mingw32-make
and it will handle the whole egs++ library. If you change the mortran code or an application, then you just need to recompile the application (e.g. in egs_home/egs_app or whichever directory domingw32-make
).