Installation in Windows #183
-
Hey there, I am facing an issue during installation. After configuration and generation in Cmake, when I am opening project its not creating SPHSimualator.exe anywhere also no bin folder created. Instead of this I am getting different file type simulators like vcproj etc. in build. |
Beta Was this translation helpful? Give feedback.
Replies: 6 comments
-
Hi @Rajatpareek, Alternatively you can use CMake from the command line to drive the Visual Studio compiler. To do that, switch into your build directory after configuring/generating the project and call |
Beta Was this translation helpful? Give feedback.
-
Hi @WeilerMarcel thank you for your detailed & kind suggestion. It worked, but I am getting SPHSimulator_d.exe. Is that similar to SPHSimulator.exe ? |
Beta Was this translation helpful? Give feedback.
-
This is the debug version. To get the optimized version you have to build the project in release mode. |
Beta Was this translation helpful? Give feedback.
-
Thank you for your help. Will try this :) |
Beta Was this translation helpful? Give feedback.
-
Is there any possible way to install SPlisHSPlasH in windows without visual studio? |
Beta Was this translation helpful? Give feedback.
-
A simple solution is to install the Python version using pip: pip install pysplishsplash You only need a current Python installed on your computer. |
Beta Was this translation helpful? Give feedback.
Hi @Rajatpareek,
it sounds like you only configured the cmake project and generated the Visual Studio project file. You will have to open that project in Visual Studio and build the executable afterwards.
Alternatively you can use CMake from the command line to drive the Visual Studio compiler. To do that, switch into your build directory after configuring/generating the project and call
cmake --build . --config Release
.