mirror of
https://github.com/lighttransport/tinyusdz.git
synced 2026-01-18 01:11:17 +01:00
14 lines
211 B
Bash
Executable File
14 lines
211 B
Bash
Executable File
curdir=`pwd`
|
|
|
|
builddir=${curdir}/build-gcc49
|
|
|
|
rm -rf ${builddir}
|
|
mkdir ${builddir}
|
|
|
|
cd ${builddir} && cmake \
|
|
-DCMAKE_C_COMPILER=gcc-4.9 \
|
|
-DCMAKE_CXX_COMPILER=g++-4.9 \
|
|
-DCMAKE_VERBOSE_MAKEFILE=1 \
|
|
..
|
|
|