@@ -52,6 +52,7 @@ build: | |||
cp -prv /usr/bin/python2.7 /usr/bin/python # stupid depot tool scripts | |||
cp -prv /usr/bin/python2.7 /usr/bin/python2 # stupid depot tool scripts | |||
./build-v8.sh | |||
./build-v8pp.sh # basically only produces the v8pp/config.hpp (from config.hpp.in) | |||
archive: | |||
rm -rf v8.a | |||
@@ -97,4 +98,4 @@ clean: | |||
rm -rf .gclient_entries | |||
shell: | |||
FLAGS="-i --privileged" bash ../ubuntu1804.sh /bin/bash | |||
FLAGS="-i --privileged" bash ../ubuntu2204.sh /bin/bash |
@@ -0,0 +1,8 @@ | |||
pushd v8pp | |||
mkdir -p out; | |||
pushd out | |||
pwd | |||
cmake -DV8_INCLUDE_DIRS=/opt/cppse/build/v8pp/include -DV8_LIB=/opt/cppse/build/v8pp/lib -DV8_LIBPLATFORM=/opt/cppse/build/v8pp/lib -DCMAKE_BUILD_TYPE=Release -DBUILD_TESTING=ON .. | |||
ls -alh | |||
make | |||
# make install |