-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.lisp
30 lines (26 loc) · 836 Bytes
/
build.lisp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
(load "jscl.lisp")
(jscl:bootstrap)
(jscl:compile-application
(list
"../jscl-react.lisp"
"../demo-app.lisp")
"../demo-app.js")
(jscl:compile-application
(list
"../jscl-react.lisp"
"../counter-app/components/navbar.lisp"
"../counter-app/components/counters.lisp"
"../counter-app/components/counter.lisp"
"../counter-app/app.lisp")
"../counter-app/counter-app.js")
(when (find-package 'ql) ; only compile emoji-search if we have quicklisp available
(jscl:compile-application
(list
"../jscl-react.lisp"
"../emoji-search/filter-emoji.lisp"
"../emoji-search/emoji-results-row.lisp"
"../emoji-search/emoji-results.lisp"
"../emoji-search/search-input.lisp"
"../emoji-search/header.lisp"
"../emoji-search/app.lisp")
"../emoji-search/emoji-search.js"))