CMakeLists.txt 428 B

1234567891011121314151617181920212223
  1. # The program units in this file consist of a module/submodule
  2. # tree represented by the following graph:
  3. #
  4. # parent
  5. # |
  6. # / \
  7. # / \
  8. # child sibling
  9. # |
  10. # grandchild
  11. # |
  12. # GreatGrandChild
  13. #
  14. # where the parent node is a module and all other nodes are submodules.
  15. add_executable(submod
  16. main.f90
  17. parent.f90
  18. child.f90
  19. grandchild.f90
  20. greatgrandchild.f90
  21. sibling.f90
  22. )