File tree Expand file tree Collapse file tree 3 files changed +6
-21
lines changed Expand file tree Collapse file tree 3 files changed +6
-21
lines changed Original file line number Diff line number Diff line change 6
6
- osx
7
7
julia :
8
8
- 0.5
9
+ - 0.6
9
10
- nightly
10
11
notifications :
11
12
email : false
12
13
branches :
13
14
only :
14
15
- master
15
-
16
16
after_success :
17
17
- julia -e 'cd(Pkg.dir("LCMCore")); Pkg.add("Coverage"); using Coverage; Codecov.submit(process_folder())'
Original file line number Diff line number Diff line change 1
1
julia 0.5
2
2
BinDeps 0.4.0
3
3
@osx Homebrew 0.3.0
4
+ CMakeWrapper 0.0.1
Original file line number Diff line number Diff line change 1
1
using BinDeps
2
+ using CMakeWrapper
2
3
3
4
@BinDeps . setup
4
5
@@ -55,26 +56,9 @@ provides(Sources,
55
56
lcm,
56
57
unpacked_dir= lcm_folder)
57
58
58
- lcm_builddir = joinpath (BinDeps. depsdir (lcm), " builds" , " lcm" )
59
- lcm_srcdir = joinpath (BinDeps. depsdir (lcm), " src" , lcm_folder)
60
- lcm_cmake_command = ` cmake -DCMAKE_INSTALL_PREFIX=$(prefix) `
61
- for arg in lcm_cmake_arguments
62
- lcm_cmake_command = ` $lcm_cmake_command $arg `
63
- end
64
- lcm_cmake_command = ` $lcm_cmake_command $lcm_srcdir `
65
-
66
- provides (BuildProcess,
67
- (@build_steps begin
68
- GetSources (lcm)
69
- CreateDirectory (lcm_builddir)
70
- @build_steps begin
71
- ChangeDirectory (lcm_builddir)
72
- lcm_cmake_command
73
- ` cmake --build . --target install`
74
- end
75
- end ),
76
- lcm,
77
- onload= """
59
+ provides (BuildProcess, CMakeProcess (cmake_args= lcm_cmake_arguments),
60
+ lcm,
61
+ onload= """
78
62
const lcm_prefix = "$prefix "
79
63
""" )
80
64
You can’t perform that action at this time.
0 commit comments