From 4f5763125cb37118a636a9706dc0a20101e4d12b Mon Sep 17 00:00:00 2001 From: Wei Tjong Yao Date: Sun, 14 Jul 2013 05:36:23 +0000 Subject: [PATCH] Removed the sed command that altered the make target to install/strip as it is not needed anymore now that the stripping is done via custom command. --- cmake_eclipse.sh | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/cmake_eclipse.sh b/cmake_eclipse.sh index a262fc89c..ecc2f1bab 100755 --- a/cmake_eclipse.sh +++ b/cmake_eclipse.sh @@ -4,8 +4,7 @@ cmake -E make_directory build rm -rf {.,build}/CMakeCache.txt CMakeFiles # Create the Cmake generators cmake -E chdir build cmake -G "Eclipse CDT4 - Unix Makefiles" .. $@ -[ $ANDROID_NDK ] && cmake -E chdir Android cmake -G "Eclipse CDT4 - Unix Makefiles" -DANDROID=1 -DCMAKE_TOOLCHAIN_FILE=android.toolchain.cmake -DLIBRARY_OUTPUT_PATH_ROOT=. .. $@ \ - && sed -i.bak 's/all<\/value>/install\/strip<\/value>/g' Android/.project +[ $ANDROID_NDK ] && cmake -E chdir Android cmake -G "Eclipse CDT4 - Unix Makefiles" -DANDROID=1 -DCMAKE_TOOLCHAIN_FILE=android.toolchain.cmake -DLIBRARY_OUTPUT_PATH_ROOT=. .. $@ # Assume Eclipse user uses OpenGL, comment out below sed if this is not true sed -i.bak 's/OpenGL/Direct3D9/g' Doxyfile # Create symbolic links in the build and Android directories