mirror of
https://github.com/Relintai/broken_seals_site.git
synced 2024-11-11 21:15:01 +01:00
Added a few helper scripts.
This commit is contained in:
parent
b6e4de9f05
commit
a22306e767
7
cm.sh
Executable file
7
cm.sh
Executable file
@ -0,0 +1,7 @@
|
||||
#!/bin/sh
|
||||
|
||||
cd build
|
||||
cmake ..
|
||||
make -j4
|
||||
cd ..
|
||||
cp -u build/broken_seals site
|
6
compile.sh
Executable file
6
compile.sh
Executable file
@ -0,0 +1,6 @@
|
||||
#!/bin/sh
|
||||
|
||||
cd build
|
||||
make -j4
|
||||
cd ..
|
||||
cp -u build/broken_seals site
|
20
setup.sh
Executable file
20
setup.sh
Executable file
@ -0,0 +1,20 @@
|
||||
#!/bin/sh
|
||||
|
||||
# Temporary git clone, this will be converted to submodules after I'm sure there are no gotchas with
|
||||
# the project's directory structure as messing with submodules can be a huge PITA
|
||||
git clone https://github.com/an-tao/drogon drogon
|
||||
cd drogon
|
||||
git checkout f0110a642dcd31db9f339a49cac34de77ccec06f
|
||||
git submodule update --init
|
||||
mkdir build
|
||||
cd build
|
||||
cmake ..
|
||||
make -j4
|
||||
|
||||
cd ..
|
||||
cd ..
|
||||
|
||||
mkdir build
|
||||
cd build
|
||||
cmake ..
|
||||
make
|
Loading…
Reference in New Issue
Block a user