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,207
  • 15
  • 55
  • 107
Rafael Castro
  • 549
  • 4
  • 13

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,419
  • 8
  • 36
  • 59