diff options
author | Enrico Tassi <Enrico.Tassi@inria.fr> | 2017-01-03 10:38:57 +0100 |
---|---|---|
committer | Enrico Tassi <Enrico.Tassi@inria.fr> | 2017-05-23 10:48:27 +0200 |
commit | 74176c031295893d705b4afe7ea45579a50e9a7b (patch) | |
tree | 6b014b7800b7124320f834361075ca1b57916494 | |
parent | e9156da20ec5332b1b53a6c44127e0f822891d16 (diff) |
ide/project_fie.ml4: include standard banner with copyright
-rw-r--r-- | ide/project_file.ml4 | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/ide/project_file.ml4 b/ide/project_file.ml4 index de0720e03..d32273bc2 100644 --- a/ide/project_file.ml4 +++ b/ide/project_file.ml4 @@ -1,3 +1,11 @@ +(************************************************************************) +(* v * The Coq Proof Assistant / The Coq Development Team *) +(* <O___,, * INRIA - CNRS - LIX - LRI - PPS - Copyright 1999-2016 *) +(* \VV/ **************************************************************) +(* // * This file is distributed under the terms of the *) +(* * GNU Lesser General Public License Version 2.1 *) +(************************************************************************) + type target = | ML of string (* ML file : foo.ml -> (ML "foo.ml") *) | MLI of string (* MLI file : foo.mli -> (MLI "foo.mli") *) @@ -200,3 +208,5 @@ let args_from_project file project_files default_name = let newdir = Filename.dirname dir in if dir = newdir then "",[] else find_project_file newdir in find_project_file (Filename.dirname file) + +(* vim:set ft=ocaml: *) |