Fixed install-dependencies scripts
This commit is contained in:
parent
16aae06e79
commit
11bacffc15
2 changed files with 5 additions and 5 deletions
|
@ -1,14 +1,14 @@
|
|||
git submodule update --init --recursive &&
|
||||
|
||||
cd dependencies/dyncall &&
|
||||
cd dependencies\dyncall &&
|
||||
mkdir build && cd build &&
|
||||
|
||||
cmake -DCMAKE_INSTALL_PREFIX=%LOCAL_INSTALL% %* .. &&
|
||||
make &&
|
||||
make install &&
|
||||
cd ../../../ &&
|
||||
cd ..\..\.. &&
|
||||
|
||||
cd dependencies/libcsptr/ &&
|
||||
cd dependencies\libcsptr &&
|
||||
mkdir build && cd build &&
|
||||
|
||||
cmake -DCMAKE_INSTALL_PREFIX=%LOCAL_INSTALL% %* .. &&
|
||||
|
|
|
@ -5,7 +5,7 @@ git submodule update --init --recursive &&
|
|||
(
|
||||
cd dependencies/dyncall &&
|
||||
mkdir build &&
|
||||
cd $_ &&
|
||||
cd build &&
|
||||
cmake -DCMAKE_INSTALL_PREFIX=$LOCAL_INSTALL "$@" .. &&
|
||||
make &&
|
||||
make install
|
||||
|
@ -14,7 +14,7 @@ git submodule update --init --recursive &&
|
|||
(
|
||||
cd dependencies/libcsptr/ &&
|
||||
mkdir build &&
|
||||
cd $_ &&
|
||||
cd build &&
|
||||
cmake -DCMAKE_INSTALL_PREFIX=$LOCAL_INSTALL "$@" .. &&
|
||||
make &&
|
||||
make install
|
||||
|
|
Loading…
Add table
Reference in a new issue