#include <iostream> int main(int argc, char** argv) { std::cout << "Hello world!\n"; std::cin.get(); } The hello.exe file, when launching, requires dll's, I can drop them into a folder, but is it possible to make hello.exe so that it runs and does not require libraries. Can I glue them together? Thank.