News:

Accounts with zero posts and zero activity during the last months will be deleted periodically to fight SPAM!

Main Menu

[SOLVED] Compiling libPNG failing on pre-build steps, "copy" or "xcopy"

Started by Melchior, July 22, 2017, 09:13:32 AM

Previous topic - Next topic

Melchior

After importing from the
- .\lpng1630\projects\visualc71\libpng.vcproj

"copy"  doesn't  work because it creates a prompt for overwrite confirmation
regardless if  the file exists or NOT.. and because its in the compile log there is no way to interact
with said prompt...

so I resorted to modifying the cmdline from/to:

from: "copy ..\..\scripts\pnglibconf.h.prebuilt ..\..\pnglibconf.h"

to  : "xcopy ..\..\scripts\pnglibconf.h.prebuilt ..\..\pnglibconf.h /Y"


even though...
and even then it only works if I manually copy and rename said file
first.. its strange.. and annoying...

idk.. if you could figure out a fix for that too?, please.

I FOUND this.... after an extensive Google search..

echo f | xcopy /Y /F ..\..\scripts\pnglibconf.h.prebuilt ..\..\pnglibconf.h


works from a .cmd batch file BUT fails inside of CodeBlocks... XD
go figure....

then this

echo.>pnglibconf.h
xcopy /Y /F ..\..\scripts\pnglibconf.h.prebuilt ..\..\pnglibconf.h

works from cmd prompt or bat file BUT again fails in C::B..
does C::B NOT like the "echo" command???

so I tried this from the same site/article,
C::B didn't like it eirther so,
then modified to add "cmd /C"
IT WORKS, C::B LIKED THAT!!! lol :D : D

cmd /C type ..\..\scripts\pnglibconf.h.prebuilt > ..\..\pnglibconf.h
(PC Specs)
CPU: AMD FX-9590 4.7GHz 8-core  RAM: 32GB
Motherboard: Asus SABERTOOTH 990FX R2.0
GPU: nVidia GTX 1070 Ti 8GB  --  GFX Drivers: Nvidia v431.60
OS: Windows 7 Ultimate 64-bit SP1 (x64)