mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-06 05:40:54 -06:00
Name the module using CamelCase to test lower-case file name conversion. Also add coverage of existing "sibling" module.
24 lines
428 B
CMake
24 lines
428 B
CMake
# The program units in this file consist of a module/submodule
|
|
# tree represented by the following graph:
|
|
#
|
|
# parent
|
|
# |
|
|
# / \
|
|
# / \
|
|
# child sibling
|
|
# |
|
|
# grandchild
|
|
# |
|
|
# GreatGrandChild
|
|
#
|
|
# where the parent node is a module and all other nodes are submodules.
|
|
|
|
add_executable(submod
|
|
main.f90
|
|
parent.f90
|
|
child.f90
|
|
grandchild.f90
|
|
greatgrandchild.f90
|
|
sibling.f90
|
|
)
|