Add resources (sound files) to exe? [MS Visual Studio 2012]
问题 I currently have a "data" folder from which I load the .wav sound files that I use in my application. I load them like this sf::Soundbuffer ss; ss.loadFromFile("./data/sfx/sound.wav") Is is possible to somehow integrate all those sound files into my .exe so I don't have to distribute them additionally? Kind of like statically linking libraries instead of dynamically so there's no need to provide them as separate dlls (I do that already). Is it possible and if yes, how would I load them then?