Search found 64 matches

by hinet
Sat Jan 07, 2023 8:07 pm
Forum: Compiler / Linking / IDE Related
Topic: How to choose the needed library for a specific compilation configuration
Replies: 7
Views: 1366

Re: How to choose the needed library for a specific compilation configuration

Don't worry doublemax, it okay :) Yes, I see depending on the class I want to use I have to include the .a to the linker box ... I tried to compile the minimal project using eclipse on windows using Dynamic, ANSI, and Debug. The compiler throw an error g++: erreur fatale: pas de fichier à l'entrée (...
by hinet
Sat Jan 07, 2023 2:21 pm
Forum: Compiler / Linking / IDE Related
Topic: How to choose the needed library for a specific compilation configuration
Replies: 7
Views: 1366

Re: How to choose the needed library for a specific compilation configuration

I think you didn't understand the question I have found this table: https://openclassrooms.com/fr/courses/1594736-vos-applications-avec-wxwidgets/1595342-compilation-sous-windows#/id/r-1595164 in this table you could see what library to link depending on the configuration you need, I could not under...
by hinet
Sat Jan 07, 2023 11:14 am
Forum: Compiler / Linking / IDE Related
Topic: How to choose the needed library for a specific compilation configuration
Replies: 7
Views: 1366

Re: How to choose the needed library for a specific compilation configuration

Hello doublemax I work with dynamic libs, but sometimes I want to execute the project on another host. To do so, I compile using the static config. I don't have many files to copy. I work on Linux and windows platforms, my be macOS in the future and I want to have all the possibilities since I have ...
by hinet
Sat Jan 07, 2023 10:47 am
Forum: Compiler / Linking / IDE Related
Topic: How to choose the needed library for a specific compilation configuration
Replies: 7
Views: 1366

How to choose the needed library for a specific compilation configuration

Dear wxWidgers hello, I have a question about the linking of the libraries. I have built the library with the following commands on my system: Debug/Dynamic/Unicode: mingw32-make.exe - j16 –f makefile.gcc BUILD=build MONOLITHIC=0 UNICODE=1 SHARED=1 USE_OPENGL=1 USE_ODBC=1 Debug/Dynamic/ANSI: mingw32...
by hinet
Wed Apr 21, 2021 2:18 pm
Forum: General Development
Topic: Run wx projects on embedded board
Replies: 4
Views: 7001

Re: Run wx projects on embedded board

doublemax wrote: Wed Apr 21, 2021 1:11 pm If you're talking about a Raspi with GUI (GTK or X11), it definitely works.
OK, how about other embedded systems?
by hinet
Wed Apr 21, 2021 11:00 am
Forum: General Development
Topic: Run wx projects on embedded board
Replies: 4
Views: 7001

Run wx projects on embedded board

Hi All, I am an embedded system engineer and, running wx applications on embedded systems matters for me. Does wxWidgets runs on any embedded system? I want to try to do this using raspberry pi board but, I don't Know if this could work or not! Does anyone trayed this before? Thank you in advance fo...
by hinet
Tue Apr 20, 2021 4:27 pm
Forum: General Development
Topic: How to contribute to the wxwidgets C++ Project?
Replies: 4
Views: 9248

Re: How to contribute to the wxwidgets C++ Project?

doublemax
should I have to create another account for this purpose or I could use this account "hinet"?
by hinet
Tue Apr 20, 2021 3:59 pm
Forum: General Development
Topic: How to contribute to the wxwidgets C++ Project?
Replies: 4
Views: 9248

Re: How to contribute to the wxwidgets C++ Project?

Thank you for transferring this post to the correct place.
by hinet
Tue Apr 20, 2021 3:01 pm
Forum: General Development
Topic: How to contribute to the wxwidgets C++ Project?
Replies: 4
Views: 9248

How to contribute to the wxwidgets C++ Project?

Dear wxWidgets,
I am an embedded system engineer and C++ is my favorite language,
I want to contribute to wxProject and be a member developer. I am not a wx genius, I like this library and C++ and, I started using wx and I want to learn more.


Thanks in advance,
Regards,
S.Tarik
by hinet
Tue Apr 13, 2021 10:27 pm
Forum: Compiler / Linking / IDE Related
Topic: The easy and rapid method to start wxWidgets project in visual studio 2019
Replies: 10
Views: 6827

Re: The easy and rapid method to start wxWidgets project in visual studio 2019

Hi, Did you build the library itself? Or you just ran the installer? Open MSVC, go to "File -> Open", navigate to c:\wxWidgets\build\msw and open the file wx_vcN.sln. Then go to "Build -> Batch Build...", click "Select All", then "Build". Go make yourself a c...
by hinet
Tue Apr 13, 2021 8:45 pm
Forum: Compiler / Linking / IDE Related
Topic: The easy and rapid method to start wxWidgets project in visual studio 2019
Replies: 10
Views: 6827

Re: The easy and rapid method to start wxWidgets project in visual studio 2019

The only thing missing in the project I create from the temple is the "Configuration prporties>Environment". In the new project created using the template, I have to add it manually, I don't know why? I know nothing about MSVS templates. However, the reason why this cannot be done with a ...
by hinet
Tue Apr 13, 2021 3:42 pm
Forum: Compiler / Linking / IDE Related
Topic: The easy and rapid method to start wxWidgets project in visual studio 2019
Replies: 10
Views: 6827

Re: The easy and rapid method to start wxWidgets project in visual studio 2019

I am using visual studio 2019 to create GUI projects, the thing is each time I want to create a project to test something, I have to go through all the steps to include setup.h file lib includes and other stuff to get the project compiled. Sometimes it takes more time especially when you forgot som...
by hinet
Tue Apr 13, 2021 11:26 am
Forum: Compiler / Linking / IDE Related
Topic: The easy and rapid method to start wxWidgets project in visual studio 2019
Replies: 10
Views: 6827

Re: The easy and rapid method to start wxWidgets project in visual studio 2019

I do not understand French. But it seems that it is just Windows telling you that it cannot find wxWidgets DLLs. This cannot be done by a .props file. You need to place them where the executable can find them, just as with any other DLL. But for just running the executable from MSVS, you could just...
by hinet
Tue Apr 13, 2021 11:13 am
Forum: Compiler / Linking / IDE Related
Topic: The easy and rapid method to start wxWidgets project in visual studio 2019
Replies: 10
Views: 6827

Re: The easy and rapid method to start wxWidgets project in visual studio 2019

I am using visual studio 2019 to create GUI projects, the thing is each time I want to create a project to test something, I have to go through all the steps Why not just create a simple empty project once and then copy it when needed? That is what I do. Anyway, the simplest way is to use the wxWid...
by hinet
Tue Apr 13, 2021 9:57 am
Forum: Compiler / Linking / IDE Related
Topic: The easy and rapid method to start wxWidgets project in visual studio 2019
Replies: 10
Views: 6827

The easy and rapid method to start wxWidgets project in visual studio 2019

Hi ALL, I am using visual studio 2019 to create GUI projects, the thing is each time I want to create a project to test something, I have to go through all the steps to include setup.h file lib includes and other stuff to get the project compiled. Sometimes it takes more time especially when you for...