Clarion Setup Best Practice organizing Project files

Hi All,

Wondering if there are any references or documents outlining IDE/Project Setup best practice for a Clarion Project. Iā€™m probably a bit of a code-tidy-freak and seeing source folders with literally thousands of files in it impacts my OCD :slight_smile: I tend to structure the code projects to keep things separated, such as generated files going into a source folder (that we can delete with Clarion as its generated), .INC files being either with the source or separated etc.

Any tips/best-practice thoughts?

Trevor

I alway edit the redirect file to remove the Release and Debug sections and have all source and in in a .\src folder.

[Debug]
*.obj = obj\
*.res = obj\
*.rsc = obj\
*.lib = obj\
*.FileList.xml = obj\
*.map = map\
[Release]
*.obj = obj\
*.res = obj\
*.rsc = obj\
*.lib = obj\
*.FileList.xml = obj\
*.map = map\

[Common]
*.clw = .\src ; .\Classes ;. ; 
*.inc = .\src ; .\Classes ;. ; 

In the .red file the first folder is used to create files

1 Like