You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
232 B
11 lines
232 B
#!/bin/bash
|
|
|
|
echo "Compiling addons."
|
|
|
|
cd /home/pi/openFrameworks/addons/ofxOMXPlayer/example-basic
|
|
make -j $(nproc)
|
|
|
|
cd /home/pi/openFrameworks/addons/ofxJSON/example_file_read_write
|
|
make -j $(nproc)
|
|
|
|
echo "Compiling addons done!"
|
|
|