
This includes: * Cmake clean up - thanks @Qyriad * Windows binaries saved after each appveyor build * A bump to the Visual Studio version that we use to build it * An appveyor cygwin script for building firmware, it doesn't work but it seems like someone might pick it up and make it work, or blow it away if we switch to Travis firmware artefacts
15 lines
306 B
Bash
15 lines
306 B
Bash
#!/bin/sh
|
|
|
|
/usr/bin/env python -m ensurepip
|
|
/usr/bin/env python -m pip install pyyaml
|
|
|
|
cd firmware/libopencm3
|
|
export SRCLIBDIR='c:\projects\hackrf\firmware\libopencm3\lib\'
|
|
make lib/lpc43xx/m0
|
|
make lib/lpc43xx/m4
|
|
cd ..
|
|
mkdir build-hackrf-one
|
|
cd build-hackrf-one
|
|
cmake -G "Unix Makefiles" ..
|
|
make VERBOSE=1
|