--
You received this message because you are subscribed to the Google Groups "CBFortran" group.
To unsubscribe from this group and stop receiving emails from it, send an email to cbfortran+...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/cbfortran/feeb2456-8ee5-4842-a2fa-ef784cf4ce46n%40googlegroups.com.
I can't be sure, but I think you try to compile to *.exe (program). However, your project has no 'Program' in the code. Add 'Program'
or change the project type from 'Console application' to 'Static library' or 'Dynamic library' in menu Project->Properties.
I would guess that you like to get just one program at the end. Set just one project with Program to 'Console application', while others to 'Static library'.
To view this discussion on the web visit https://groups.google.com/d/msgid/cbfortran/8558f572-f9b3-42d4-9d08-77075746270dn%40googlegroups.com.
By 'Program' I mean Fortran 'program' statement ('main' function if you come from C++).
You should ensure that dependencies are found during the linking step. Dependencies should be added in the project build options dialog.
If you are new to 'static library', 'linking', 'dependencies between libraries', then I would suggest you start from the simpler case: Just make one 'Console application' project and add all your files to it. Ensure you have just one 'Program' statement in your Fortran code. And compile the code in C::B. C::B can handle quite big project files without problems.
To view this discussion on the web visit https://groups.google.com/d/msgid/cbfortran/48b9e750-dace-4c62-9478-febcecfc0a3bn%40googlegroups.com.