You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, I have 213 .cpp files from Sonic The Hedgehog 2006 but not sure how to compile them inside Visual Studio or Clion, I tried following steps from other Issues related to compiling these files but simply just don't know how to do it. Does anyone know an easy way to do this step? I Would appreciate it a lot!
The text was updated successfully, but these errors were encountered:
second, you're probably gonna run into 1000 other issues while trying to build
in visual studio create a new console app project
delete the .cpp file it made automatically (if you dont when you get through a bunch of issues itll just compile hello world)
right click the header folder > add > existing and select the .h files in the stuff recomp spit out with the cpp files
right click the source folder > add > existing and select all the .cpp files recomp spit out
at the top make sure it says debug and x86
right click the solution > properties and under platform toolset make sure it says its using LLVM(clang-cl) (this is because it has to be built with clang)
click apply and then go to build in the toolbar and click build solution
then everything else you'll have to google when the issues come up (or ask chatgpt) cause im not sure if the other settings i have to use are gonna be the same as settings for compiling another games
Hi, I have 213 .cpp files from Sonic The Hedgehog 2006 but not sure how to compile them inside Visual Studio or Clion, I tried following steps from other Issues related to compiling these files but simply just don't know how to do it. Does anyone know an easy way to do this step? I Would appreciate it a lot!
The text was updated successfully, but these errors were encountered: