Fix clean build

This commit is contained in:
Robin Davies
2021-08-23 21:26:53 -04:00
parent 849001de46
commit 264a32d3b2
6 changed files with 34 additions and 7 deletions
Executable
+14
View File
@@ -0,0 +1,14 @@
#!/usr/bin/bash
# Configure cmake build.
echo Configuring cmake build...
mkdir build
cd build
cmake ..
cd ..
# Install react dependencies
cd react
npm install
cd ..