mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2025-03-01 10:33:28 +00:00
Update create_all_release.sh
Added "-DCMAKE_BUILD_TYPE=Release -Wno-dev" to make everything ready for release! Former-commit-id: 1c4f6e4b829afbe782dff63c7d16ece8562146fa
This commit is contained in:
parent
2dae58f070
commit
30e4ba47d9
@ -1,37 +1,37 @@
|
|||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
# create all directly for release with -DCMAKE_BUILD_TYPE=Release -Wno-dev
|
||||||
# Create the x64 build
|
# Create the x64 build
|
||||||
mkdir build-x64
|
mkdir build-x64
|
||||||
cd build-x64
|
cd build-x64
|
||||||
cmake -DENABLE_DISPMANX=OFF -DENABLE_X11=ON ..
|
cmake -DENABLE_DISPMANX=OFF -DENABLE_X11=ON -DCMAKE_BUILD_TYPE=Release -Wno-dev ..
|
||||||
make -j 4
|
make -j 4
|
||||||
cd ..
|
cd ..
|
||||||
|
|
||||||
# Create the x32 build
|
# Create the x32 build
|
||||||
mkdir build-x32
|
mkdir build-x32
|
||||||
cd build-x32
|
cd build-x32
|
||||||
cmake -DIMPORT_PROTOC=../build-x64/protoc_export.cmake -DENABLE_DISPMANX=OFF -DENABLE_X11=ON ..
|
cmake -DIMPORT_PROTOC=../build-x64/protoc_export.cmake -DENABLE_DISPMANX=OFF -DENABLE_X11=ON -DCMAKE_BUILD_TYPE=Release -Wno-dev ..
|
||||||
make -j 4
|
make -j 4
|
||||||
cd ..
|
cd ..
|
||||||
|
|
||||||
# Create the RPI build
|
# Create the RPI build
|
||||||
mkdir build-rpi
|
mkdir build-rpi
|
||||||
cd build-rpi
|
cd build-rpi
|
||||||
cmake -DCMAKE_TOOLCHAIN_FILE="../Toolchain-rpi.cmake" -DIMPORT_PROTOC=../build-x64/protoc_export.cmake ..
|
cmake -DCMAKE_TOOLCHAIN_FILE="../Toolchain-rpi.cmake" -DIMPORT_PROTOC=../build-x64/protoc_export.cmake -DCMAKE_BUILD_TYPE=Release -Wno-dev ..
|
||||||
make -j 4
|
make -j 4
|
||||||
cd ..
|
cd ..
|
||||||
|
|
||||||
# Create the WETEK build
|
# Create the WETEK build
|
||||||
mkdir build-wetek
|
mkdir build-wetek
|
||||||
cd build-wetek
|
cd build-wetek
|
||||||
cmake -DCMAKE_TOOLCHAIN_FILE="../Toolchain-rpi.cmake" -DIMPORT_PROTOC=../build-x64/protoc_export.cmake -DENABLE_DISPMANX=OFF -DENABLE_FB=ON -DENABLE_AMLOGIC=ON ..
|
cmake -DCMAKE_TOOLCHAIN_FILE="../Toolchain-rpi.cmake" -DIMPORT_PROTOC=../build-x64/protoc_export.cmake -DENABLE_DISPMANX=OFF -DENABLE_FB=ON -DENABLE_AMLOGIC=ON -DCMAKE_BUILD_TYPE=Release -Wno-dev ..
|
||||||
make -j 4
|
make -j 4
|
||||||
cd ..
|
cd ..
|
||||||
|
|
||||||
# Create the IMX6 build
|
# Create the IMX6 build
|
||||||
mkdir build-imx6
|
mkdir build-imx6
|
||||||
cd build-imx6
|
cd build-imx6
|
||||||
cmake -DCMAKE_TOOLCHAIN_FILE="../Toolchain-imx6.cmake" -DIMPORT_PROTOC=../build-x64/protoc_export.cmake -DENABLE_DISPMANX=OFF -DENABLE_FB=ON ..
|
cmake -DCMAKE_TOOLCHAIN_FILE="../Toolchain-imx6.cmake" -DIMPORT_PROTOC=../build-x64/protoc_export.cmake -DENABLE_DISPMANX=OFF -DENABLE_FB=ON -DCMAKE_BUILD_TYPE=Release -Wno-dev ..
|
||||||
make -j 4
|
make -j 4
|
||||||
cd ..
|
cd ..
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user