PC SOFT

FOROS PROFESIONALES
WINDEVWEBDEV y WINDEV Mobile

Inicio → WINDEV 2024 → [WD22] Multi exe projects possible?
[WD22] Multi exe projects possible?
Iniciado por rob, 06,sep. 2017 15:32 - 2 respuestas
Miembro registrado
105 mensajes
Publicado el 06,septiembre 2017 - 15:32
Is it possible to have a project that includes multiple exe files, and compiles them all and includes them in the installer when you build the project?

For example, an exe that runs as a windows service, and one used to set up configuration for said service.
Publicado el 06,septiembre 2017 - 17:01
Hi Robert,

there are 2 aspects to your question, but the answer is basically YES.

1. It is possible to GENERATE multiples EXEs within only one project by
settings up different CONFIGURATIONS inside it. Each configuration can
use only some of the windows/calsses/etc of the project, and have a
different target (EXE by example)

2. It is ALSO possible in the installer of ONE exe to included other
files (in your as other EXEs generated by the other configurations)

Best regards

--
Fabrice Harari
International WinDev, WebDev and WinDev mobile Consulting

Ready for you: WXShowroom.com, WXReplication (open source) and now WXEDM
(open source)

More information on http://www.fabriceharari.com


Le 9/6/2017 à 7:32 AM, Robert a écrit :
Is it possible to have a project that includes multiple exe files, and
compiles them all and includes them in the installer when you build the
project?

For example, an exe that runs as a windows service, and one used to set
up configuration for said service.
Miembro registrado
105 mensajes
Publicado el 06,septiembre 2017 - 18:48
Thanks! I didn't think of using multiple configurations to do that.