guusw / unnamed-sdvx-clone

A rhythm game written in C++
MIT License
68 stars 107 forks source link

let cmake copy the folders in /bin to the compile folder [minor] #13

Closed nieknooijens closed 8 years ago

nieknooijens commented 8 years ago

just as the title said, I currently have to copy over those folders manually or the game won't load. the make install script does copy them over, but I'd like to launch it from my C++ editor and therefore it runs from within the compile folder.

magiruuvelvet commented 8 years ago

Your IDE should have a feature to run another executable or a wrapper script instead of the main binary, if not you can always create a symlink.

guusw commented 8 years ago

The linux makefiles compile to the bin folder. And both code blocks(linux) and visual studio(windows) can be set to have their working folder set to the bin folder. Doesn't really make sense to copy all the data to the Debug/Release folders since they don't change per configuration and it's handier to just have them in an obvious place.