IDEA-CR-68907: Make install conditional, add native build dirs to gitignore

GitOrigin-RevId: 01c308d79b06f2ddc20391e87e09261f7369908c
This commit is contained in:
Florian Kistner
2020-11-18 15:44:40 +01:00
committed by intellij-monorepo-bot
parent 767c637715
commit 7bdeca9bbf
4 changed files with 19 additions and 3 deletions

1
.gitignore vendored
View File

@@ -16,4 +16,5 @@ build/dependencies/build
edu/dependencies/.gradle
edu/dependencies/build
stale_outputs_checked
native/**/build/
/android

View File

@@ -2,5 +2,10 @@
rm -rf build
mkdir build
cd build
cmake -DCMAKE_BUILD_TYPE=Release ..
make install/strip VERBOSE=1
make VERBOSE=1
if [ "$1" = "install" ]; then
make install/strip VERBOSE=1
fi

View File

@@ -2,5 +2,10 @@
rm -rf build
mkdir build
cd build
cmake -DCMAKE_BUILD_TYPE=Release ..
make install/strip VERBOSE=1
make VERBOSE=1
if [ "$1" = "install" ]; then
make install/strip VERBOSE=1
fi

View File

@@ -2,5 +2,10 @@
rm -rf build
mkdir build
cd build
cmake -DCMAKE_BUILD_TYPE=Release ..
make install/strip VERBOSE=1
make VERBOSE=1
if [ "$1" = "install" ]; then
make install/strip VERBOSE=1
fi