File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed
Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change 6363 (jnt/declare-cmake :name " cfltk"
6464 :source-dir " cfltk"
6565 :build-dir cfltk-build-dir
66- :cmake-flags cmake-flags ))
66+ :cmake-flags cmake-flags
67+ :build-type " Release" ))
6768
6869(defn- copy-static-libs []
69- (sh/copy (string/format " %s/%s" cfltk-build-dir cfltk-lib ) (string/format " ./jfltk/%s" cfltk-lib ))
70+ (sh/copy-file (string/format " %s/%s" cfltk-build-dir cfltk-lib ) (string/format " ./jfltk/%s" cfltk-lib ))
7071 (loop [fname :in fltk-libs ]
7172 (let [fullname (string/format " %s/%s" fltk-build-dir fname )
7273 outname (string/format " ./jfltk/%s" fname )]
7374 (when (sh/exists? fullname )
74- (sh/copy fullname outname )))))
75+ (sh/copy-file fullname outname )))))
7576
7677(defn- clean-static-libs []
7778 (loop [fname :in (sh/list-all-files " jfltk" )]
You can’t perform that action at this time.
0 commit comments