diff --git a/.gitignore b/.gitignore index 3a7952981092..2699fb9cdf21 100644 --- a/.gitignore +++ b/.gitignore @@ -16,4 +16,5 @@ build/dependencies/build edu/dependencies/.gradle edu/dependencies/build stale_outputs_checked +native/**/build/ /android \ No newline at end of file diff --git a/native/MacRestarter/make.sh b/native/MacRestarter/make.sh index 44d648b967ef..ab9a83bed6d1 100755 --- a/native/MacRestarter/make.sh +++ b/native/MacRestarter/make.sh @@ -2,5 +2,10 @@ rm -rf build mkdir build cd build + cmake -DCMAKE_BUILD_TYPE=Release .. -make install/strip VERBOSE=1 \ No newline at end of file +make VERBOSE=1 + +if [ "$1" = "install" ]; then +make install/strip VERBOSE=1 +fi \ No newline at end of file diff --git a/native/MacTouchBar/make.sh b/native/MacTouchBar/make.sh index 44d648b967ef..ab9a83bed6d1 100755 --- a/native/MacTouchBar/make.sh +++ b/native/MacTouchBar/make.sh @@ -2,5 +2,10 @@ rm -rf build mkdir build cd build + cmake -DCMAKE_BUILD_TYPE=Release .. -make install/strip VERBOSE=1 \ No newline at end of file +make VERBOSE=1 + +if [ "$1" = "install" ]; then +make install/strip VERBOSE=1 +fi \ No newline at end of file diff --git a/native/fsNotifier/mac/make.sh b/native/fsNotifier/mac/make.sh index 44d648b967ef..ab9a83bed6d1 100755 --- a/native/fsNotifier/mac/make.sh +++ b/native/fsNotifier/mac/make.sh @@ -2,5 +2,10 @@ rm -rf build mkdir build cd build + cmake -DCMAKE_BUILD_TYPE=Release .. -make install/strip VERBOSE=1 \ No newline at end of file +make VERBOSE=1 + +if [ "$1" = "install" ]; then +make install/strip VERBOSE=1 +fi \ No newline at end of file