mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-15 02:59:33 +07:00
IDEA-CR-68907: Make install conditional, add native build dirs to gitignore
GitOrigin-RevId: 01c308d79b06f2ddc20391e87e09261f7369908c
This commit is contained in:
committed by
intellij-monorepo-bot
parent
767c637715
commit
7bdeca9bbf
1
.gitignore
vendored
1
.gitignore
vendored
@@ -16,4 +16,5 @@ build/dependencies/build
|
|||||||
edu/dependencies/.gradle
|
edu/dependencies/.gradle
|
||||||
edu/dependencies/build
|
edu/dependencies/build
|
||||||
stale_outputs_checked
|
stale_outputs_checked
|
||||||
|
native/**/build/
|
||||||
/android
|
/android
|
||||||
@@ -2,5 +2,10 @@
|
|||||||
rm -rf build
|
rm -rf build
|
||||||
mkdir build
|
mkdir build
|
||||||
cd build
|
cd build
|
||||||
|
|
||||||
cmake -DCMAKE_BUILD_TYPE=Release ..
|
cmake -DCMAKE_BUILD_TYPE=Release ..
|
||||||
make install/strip VERBOSE=1
|
make VERBOSE=1
|
||||||
|
|
||||||
|
if [ "$1" = "install" ]; then
|
||||||
|
make install/strip VERBOSE=1
|
||||||
|
fi
|
||||||
@@ -2,5 +2,10 @@
|
|||||||
rm -rf build
|
rm -rf build
|
||||||
mkdir build
|
mkdir build
|
||||||
cd build
|
cd build
|
||||||
|
|
||||||
cmake -DCMAKE_BUILD_TYPE=Release ..
|
cmake -DCMAKE_BUILD_TYPE=Release ..
|
||||||
make install/strip VERBOSE=1
|
make VERBOSE=1
|
||||||
|
|
||||||
|
if [ "$1" = "install" ]; then
|
||||||
|
make install/strip VERBOSE=1
|
||||||
|
fi
|
||||||
@@ -2,5 +2,10 @@
|
|||||||
rm -rf build
|
rm -rf build
|
||||||
mkdir build
|
mkdir build
|
||||||
cd build
|
cd build
|
||||||
|
|
||||||
cmake -DCMAKE_BUILD_TYPE=Release ..
|
cmake -DCMAKE_BUILD_TYPE=Release ..
|
||||||
make install/strip VERBOSE=1
|
make VERBOSE=1
|
||||||
|
|
||||||
|
if [ "$1" = "install" ]; then
|
||||||
|
make install/strip VERBOSE=1
|
||||||
|
fi
|
||||||
Reference in New Issue
Block a user