-
Notifications
You must be signed in to change notification settings - Fork 1
/
appveyor.yml
47 lines (38 loc) · 991 Bytes
/
appveyor.yml
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
version: 0.2.0.{build}
dependencies:
- HdrHistogram_c
- cxxopts
- json
- fmt
- Google test
install_dependencies:
HdrHistogram_c:
- git clone https://github.com/HdrHistogram/HdrHistogram_c.git
- cd HdrHistogram_c
- mkdir build
- cmake ..
- cmake --build . --target install
fmt:
- git clone https://github.com/xlong88/fmt.git
- cd fmt
- mkdir build
- cmake ..
- cmake --build . --target install
googletest:
- git clone https://github.com/google/googletest.git
- cd googletest
- mkdir build
- cmake ..
- cmake --build . --target install
build_and_run:
- git clone https://github.com/xlong88/Serenade.git
- cd Serenade
- mkdir build
- cd build
- cmake -DCMAKE_INSTALL_PREFIX=../targets ..
- cmake --build . --target install
- cd ../targets/bin
On_Windows_MinGW:
install_and_build:
- cmake -DCMAKE_INSTALL_PREFIX=<MinGW_Root> -G"MinGW Makefiles" ..
- cmake --build . --target install