ソースを参照

Include also i18n .so files etc., *.so in output release dir.

master
コミット
aaa369ef86
1個のファイルの変更2行の追加2行の削除
  1. +2
    -2
      v8pp/Makefile

+ 2
- 2
v8pp/Makefile ファイルの表示

@@ -42,7 +42,7 @@ archive:
# We'll use this one below..
find ./v8/out/x64.release/ -name 'libv8_monolith.a' -type f
# We'll also include .so files..
find ./v8/out/x64.release/ -name '*v8*.so' -type f
find ./v8/out/x64.release/ -name '*.so' -type f

package:
rm -rf out
@@ -53,7 +53,7 @@ package:
cp -prv v8.a out/opt/cppse/build/v8pp/lib
cp -prv v8/out/x64.release/obj/libv8_monolith.a out/opt/cppse/build/v8pp/lib
# We'll also include .so files..
find ./v8/out/x64.release/ -name '*v8*.so' -type f | xargs -n 1 cp -prv -t out/opt/cppse/build/v8pp/lib
find ./v8/out/x64.release/ -name '*.so' -type f | xargs -n 1 cp -prv -t out/opt/cppse/build/v8pp/lib
cp -prv v8pp/v8pp out/opt/cppse/build/v8pp/include/
cp -prv v8/include out/opt/cppse/build/v8pp/include/v8


読み込み中…
キャンセル
保存