mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2023-10-10 13:36:59 +02:00
Merge pull request #5 from tvdzwan/master
Update CompileHowto.txt Former-commit-id: 22c733aa48d1f12dfc21c06d84276e59820f84c8
This commit is contained in:
commit
d7546dc042
@ -14,7 +14,7 @@ sudo cp -R "$FIRMWARE_DIR/hardfp/opt/" /opt
|
|||||||
export HYPERION_DIR="hyperion"
|
export HYPERION_DIR="hyperion"
|
||||||
git clone --recursive https://github.com/tvdzwan/hyperion.git "$HYPERION_DIR"
|
git clone --recursive https://github.com/tvdzwan/hyperion.git "$HYPERION_DIR"
|
||||||
|
|
||||||
# if you forget the --resursive in above statement or you are updating an existing clone you need
|
# if you forget the --recursive in above statement or you are updating an existing clone you need
|
||||||
# to clone the protobuf submodule by runnning the follwing two statements:
|
# to clone the protobuf submodule by runnning the follwing two statements:
|
||||||
git submodule init
|
git submodule init
|
||||||
git submodule update
|
git submodule update
|
||||||
@ -29,10 +29,16 @@ cmake -DCMAKE_BUILD_TYPE=Release -Wno-dev ..
|
|||||||
cmake -DENABLE_DISPMANX=OFF -DENABLE_SPIDEV=OFF -DENABLE_X11=ON -DCMAKE_BUILD_TYPE=Release -Wno-dev ..
|
cmake -DENABLE_DISPMANX=OFF -DENABLE_SPIDEV=OFF -DENABLE_X11=ON -DCMAKE_BUILD_TYPE=Release -Wno-dev ..
|
||||||
# as an alternative for the dispmanx grabber on non-rpi devices (e.g. cubox-i) you could try the framebuffer grabber
|
# as an alternative for the dispmanx grabber on non-rpi devices (e.g. cubox-i) you could try the framebuffer grabber
|
||||||
cmake -DENABLE_DISPMANX=OFF -DENABLE_SPIDEV=OFF -DENABLE_FB=ON -DCMAKE_BUILD_TYPE=Release -Wno-dev ..
|
cmake -DENABLE_DISPMANX=OFF -DENABLE_SPIDEV=OFF -DENABLE_FB=ON -DCMAKE_BUILD_TYPE=Release -Wno-dev ..
|
||||||
# for OSX build you need XCode, qt4 libraries and cmake. You can use macport (homebrew might work too) to install them
|
# for OSX build you need XCode, qt4 libraries and cmake (maybe libusb too). You can use macport or homebrew(recommended) to install them:
|
||||||
|
#for port:
|
||||||
sudo port install qt4-mac
|
sudo port install qt4-mac
|
||||||
sudo port install cmake
|
sudo port install cmake
|
||||||
cmake -DENABLE_DISPMANX=OFF -DENABLE_SPIDEV=OFF -DENABLE_V4L2=OFF -DENABLE_OSX=ON .
|
#sudo port install libusb
|
||||||
|
#for brew:
|
||||||
|
sudo brew install qt4-mac
|
||||||
|
sudo brew install cmake
|
||||||
|
#sudo brew install libusb
|
||||||
|
cmake -DENABLE_DISPMANX=OFF -DENABLE_SPIDEV=OFF -DENABLE_V4L2=OFF -DENABLE_OSX=ON ..
|
||||||
|
|
||||||
# run make to build Hyperion
|
# run make to build Hyperion
|
||||||
make
|
make
|
||||||
|
Loading…
Reference in New Issue
Block a user