mirror of
https://github.com/Relintai/pi_player.git
synced 2024-11-12 08:45:35 +01:00
18 lines
200 B
Bash
Executable File
18 lines
200 B
Bash
Executable File
#!/bin/bash
|
|
|
|
|
|
cd repos
|
|
|
|
cd fbcp_ili
|
|
|
|
if [ ! -d "build" ]; then
|
|
mkdir build
|
|
fi
|
|
|
|
cd build
|
|
|
|
cmake -DBACKLIGHT_CONTROL=1 -DSTATISTICS=0 -DADAFRUIT_ILI9341_PITFT=ON -DSPI_BUS_CLOCK_DIVISOR=10 ..
|
|
make
|
|
|
|
|