6 lines
69 B
Bash
6 lines
69 B
Bash
|
|
#!/bin/bash
|
||
|
|
mkdir build_xcode
|
||
|
|
cd build_xcode
|
||
|
|
cmake .. -G Xcode
|
||
|
|
cd ..
|