Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F7712552
vs2010_x64.sh
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Size
747 B
Referenced Files
None
Subscribers
None
vs2010_x64.sh
View Options
#!/bin/bash
# Script to add x64 platform to msvscpp 2010 files
#
# Version: 20130113
EXIT_FAILURE=1;
EXIT_SUCCESS=0;
if [ ! -x "/usr/bin/find" ] || [ ! -x "/usr/bin/sed" ];
then
echo "Unable to find: /usr/bin/find and /usr/bin/sed.";
exit ${EXIT_FAILURE};
fi
if [ ! -e "msvscpp/scripts/vs2010_x64_sln.sed" ] || [ ! -e "msvscpp/scripts/vs2010_x64_vcxproj.sed" ];
then
echo "Unable to find the sed scripts.";
echo "Are you running the script from the source directory?";
exit ${EXIT_FAILURE};
fi
/usr/bin/find msvscpp/ -name \*.sln -exec /usr/bin/sed -b -f msvscpp/scripts/vs2010_x64_sln.sed -i {} \;
/usr/bin/find msvscpp/ -name \*.vcxproj -exec /usr/bin/sed -b -f msvscpp/scripts/vs2010_x64_vcxproj.sed -i {} \;
exit ${EXIT_SUCCESS};
File Metadata
Details
Attached
Mime Type
text/x-shellscript
Expires
Fri, Nov 21, 5:03 AM (1 d, 6 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
1360952
Default Alt Text
vs2010_x64.sh (747 B)
Attached To
Mode
rXMOUNT xmount
Attached
Detach File
Event Timeline
Log In to Comment