Author Topic: Do I have to use wxmsw26_gcc_custom.dll?  (Read 7279 times)

SolidNuts

  • Guest
Do I have to use wxmsw26_gcc_custom.dll?
« on: February 15, 2006, 07:06:34 pm »
Can i distribute my app without using that?

Offline Michael

  • Lives here!
  • ****
  • Posts: 1608
Re: Do I have to use wxmsw26_gcc_custom.dll?
« Reply #1 on: February 15, 2006, 07:16:58 pm »
Can i distribute my app without using that?

You should link you application by using a static wxWidgets library.

Michael

Offline thomas

  • Administrator
  • Lives here!
  • *****
  • Posts: 3979
Re: Do I have to use wxmsw26_gcc_custom.dll?
« Reply #2 on: February 15, 2006, 07:17:39 pm »
Re: question in topic's title: no.
Re: question in your post: yes.
"We should forget about small efficiencies, say about 97% of the time: Premature quotation is the root of public humiliation."

Offline thomas

  • Administrator
  • Lives here!
  • *****
  • Posts: 3979
Re: Do I have to use wxmsw26_gcc_custom.dll?
« Reply #3 on: February 15, 2006, 07:19:13 pm »
You should link you application by using a static wxWidgets library.
Not necessarily. He could not be using wxWidgets at all... :)
"We should forget about small efficiencies, say about 97% of the time: Premature quotation is the root of public humiliation."

Offline Michael

  • Lives here!
  • ****
  • Posts: 1608
Re: Do I have to use wxmsw26_gcc_custom.dll?
« Reply #4 on: February 15, 2006, 07:20:21 pm »
You should link you application by using a static wxWidgets library.
Not necessarily. He could not be using wxWidgets at all... :)

Yes, that's right :lol:.

Michael

SolidNuts

  • Guest
Re: Do I have to use wxmsw26_gcc_custom.dll?
« Reply #5 on: February 15, 2006, 07:52:44 pm »
I'm starting with cpp and wxWidgets.. all I want to do by now is execute my application without that dll..
So I can distribute my app to my friends and be happy  :D

Offline Michael

  • Lives here!
  • ****
  • Posts: 1608
Re: Do I have to use wxmsw26_gcc_custom.dll?
« Reply #6 on: February 15, 2006, 08:01:13 pm »
I'm starting with cpp and wxWidgets.. all I want to do by now is execute my application without that dll..
So I can distribute my app to my friends and be happy  :D

So link your application with a static wxWidgets library :). Or build wxWidgets as a static library and use it to link your application.

Best wishes,
Michael