0

In Windows system I need to keep all those .dll files in the same as my .exe? I wish I could just merge all files in one single .exe, there is any way how?

I am a Linux and Windows user, in Linux I only use the terminal, but in Windows I use CodeBlocks!

Rohit Vipin Mathews
  • 11,629
  • 15
  • 57
  • 112
Rafael Castro
  • 579
  • 5
  • 14

1 Answers1

1

dlls in windows are like .so in linux, they are made to be separate. If you want to merge a library, don't use dll, use static library instead (.lib)

Edit: If you are not writing the library (somebody already gave you the dll), take a look at this

Community
  • 1
  • 1
khajvah
  • 4,889
  • 9
  • 41
  • 63