equal
deleted
inserted
replaced
|
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 .. |