Lines Matching +full:cmake +full:- +full:args
4 # Use of this source code is governed by a BSD-style license that can be
7 # This assumes it is being run inside a docker container of emsdk-base
12 # docker run -v $SKIA_ROOT:/SRC -v /tmp/cmake_out:/OUT gcr.io/skia-public/cmake-release:3.13.1_v1 /…
15 set -xe
17 #BASE_DIR is the dir this script is in ($SKIA_ROOT/infra/cmake)
22 rm -rf $SKIA_DIR/out/CMAKE
23 mkdir --mode=0777 -p $SKIA_DIR/out/CMAKE
26 gn gen out/CMAKE --args='is_debug=false' --ide=json --json-ide-script=../../gn/gn_to_cmake.py
28 cd $SKIA_DIR/out/CMAKE
29 cmake -G"CodeBlocks - Unix Makefiles" .
30 cmake --build . --parallel 8
34 cp $SKIA_DIR/out/CMAKE/* /OUT || true