mgcmgc123 / dcef3

Automatically exported from code.google.com/p/dcef3
0 stars 0 forks source link

Fix output path in demo .proj files. #9

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
My first encounter with dcef3 was a stubborn demo exe's (error "specified 
module could not be found"). Turns out the executable needs to be in the Win32 
folder, not besides it.

This is configured wrong in the dproj file. Opening with Delphi 6 works out of 
the box (after adding a "..\..\src" search path) because it uses the cfg file 
though.

Specifics:

guiclient.dproj (used by Delphi 2010) defines the exe output path as
<DCC_ExeOutput>..\..\bin\$(Platform)</DCC_ExeOutput>

while guiclient.cfg (used by Delphi 6 and 7) defines the exe output path as
-E"..\..\bin\Win32"

Please fix. Thanks!

Original issue reported on code.google.com by barrystaes on 23 Jan 2013 at 8:38