holdingarea/full_build.sh
branchbug235_bringup_0
changeset 20 d2d6724aef32
equal deleted inserted replaced
19:da7c1a80df0d 20:d2d6724aef32
       
     1 #! /bin/bash
       
     2 
       
     3 set -e
       
     4 
       
     5 EGL_CONFIG=-DUSE_MINI_EGL:Bool=ON
       
     6 
       
     7 mkdir -p x86Debug; cd x86Debug; cmake .. $EGL_CONFIG -DCMAKE_BUILD_TYPE=Debug && make; cd ..
       
     8 #mkdir -p x86Release && cd x86Release && cmake .. $EGL_CONFIG -DCMAKE_BUILD_TYPE=Release && make && cd ..
       
     9 # Profiling build is the same as release (optimizations, etc.), but with debug symbols
       
    10 #mkdir -p x86Profile && cd x86Profile && cmake .. $EGL_CONFIG -DCMAKE_BUILD_TYPE=RelWithDebInfo && make && cd ..