Search found 3 matches

by naji
Sat Oct 15, 2011 3:55 pm
Forum: General Help
Topic: Build & Install SDK in Debian / Ubuntu + 64bit
Replies: 1
Views: 14714

Re: Build & Install SDK in Debian / Ubuntu + 64bit

You may need to go to Additional Drivers in your Linux distro and install the drivers for your graphics card there for the text to be visible in the IDE or other Ecere programs on Linux. I had too install: ATI/AMD proprietary FGLRX graphics driver in Additional Drivers in Kubuntu 11.10. I also tried...
by naji
Fri Oct 07, 2011 3:30 am
Forum: General Help
Topic: The steps to compile latest sources from git on windows.
Replies: 13
Views: 64247

Re: The steps to compile latest sources from git on windows.

Hi everyone. You can get the latest MinGW Automated Installer from: http://sourceforge.net/projects/mingw/files/Automated%20MinGW%20Installer/mingw-get-inst/ I noticed that when installing MinGW with MinGW-Get Setup, that you need to select. (o) Use pre-packaged repository catalogues And not select:...
by naji
Fri Sep 23, 2011 1:27 pm
Forum: System Library
Topic: Copy Folder/Directory Tree Contents
Replies: 0
Views: 35516

Copy Folder/Directory Tree Contents

Here is a function you can use in the Ecere SDK, eC programming language to copy the contents of a folder to another folder. Thanks to Jerome for the code. void CopyFolderContents(char * indir, char * outdir) { FileListing listing { indir };   MakeDir(outdir);   while (listing.Find()) { char locatio...