How do I make a Windows build with CMake? #262
-
I want to mess with binary files and try out my edits, but the |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
Technically it is possible to use CMake to generate windows builds (I think it generates an intermediate visual studio project, among other methods). However the limitation right now is that I need to generate the ballistica-internal libraries for windows, which are necessary to build the complete app. (the ballistica-internal library is the parts of the game that still aren't public for reasons such as security). Once I get a chance to automate windows builds of that library I'll just publish my own visual studio projects that people can use to build on windows. I'm hoping to prioritize that as soon as 1.6 is out the door. But sadly, for the immediate moment, building on mac or linux is probably the only viable option. |
Beta Was this translation helpful? Give feedback.
-
Just swinging through to update this for posterity. It is now possible to assemble windows binaries (see #284) |
Beta Was this translation helpful? Give feedback.
Technically it is possible to use CMake to generate windows builds (I think it generates an intermediate visual studio project, among other methods). However the limitation right now is that I need to generate the ballistica-internal libraries for windows, which are necessary to build the complete app. (the ballistica-internal library is the parts of the game that still aren't public for reasons such as security). Once I get a chance to automate windows b…