aboutsummaryrefslogtreecommitdiff
path: root/lib/blog/dune
blob: 68e31f6e25f286245ea35a377dbe4c936977682e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
(rule
  (targets hash_host.ml)
  (enabled_if (= %{profile} dev))
  (action (copy# hash_host/hash_localhost.ml hash_host.ml)))

(rule
  (targets hash_host.ml)
  (enabled_if (<> %{profile} dev))
  (action (copy# hash_host/hash_blog.ml hash_host.ml)))

(library
 (name blog)
 (libraries 
   brr
   note.brr
   elements
   )
 (preprocess (pps ppx_hash))

 
 )