Skip to content

Latest commit

 

History

History

auto_depend

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 

Automatic Dependency

This example demonstrates the basic Cmake usage. The Cmake has the automatic dependency solution. The developers don't need to manually setup compiling dependency. In this example, bar.f90 depends on foo.f90 and Cmake knows that foo need to be compiled before bar.

Requirements

Build

$ mkdir build && cd build
$ cmake ..
$ make