8 lines
168 B
Bash
Executable File
8 lines
168 B
Bash
Executable File
#!/bin/sh
|
|
rm CMakeCache.txt
|
|
mkdir build_cmake
|
|
cd build_cmake
|
|
cmake -DBUILD_PYTHON=OFF -CMAKE_BUILD_TYPE=Release ..
|
|
make -j12
|
|
examples/ExampleBrowser/App_ExampleBrowser
|