Packing exe + dlls into one executable

Hello everyone,
please any way to Packing exe + dlls into one executable?
i use Dev-c ++
Dev C++ is a dinosaur, get a newer compiler. If you have to use an IDE there is Visual Studio 2019, Community Edition or Code::Blocks. Both are free.

Start with the source code for the project. Rewrite/factor all the code for the DLLs to compile and be linked into the EXE.

If you are wanting to smush together already existing files WinRar can do it, creating a single archive that runs extraction as an EXE.
I used WinRar , my program files is {exe and 2x dll and ini file}
all i need packing dlls and exe only , I have a problem exe after packing not read ini file ?
i dawnload Code::Blocks how make Packing exe + dlls into one executable ? lib file is [xx.c , xx.dll ,xx.lib] ?
??
I'll give a reply, but I don't have very good news. There is no standard way to pack user-end binaries together. If you were using .NET on Windows, you can use ILMerge, but this won't work for native C++ binaries.

If you can statically link your library instead of using DLL, do that. Otherwise, I would just try doing more searches yourself for packing exe with dll in C++.
Maybe this helps? https://stackoverflow.com/questions/811720/c-how-to-compile-dll-in-a-exe
Last edited on
Topic archived. No new replies allowed.