Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions bash/genfilters.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,6 @@
# Usage:
# $1 is the directory of source code to create project filters from
# $2 is file name to create, should be projectname.vcxproj.filters
# $3 is the root of your Windows fodler where these files will be mapped
# the meat of this is after the printheader/footer functions

function printheader(){
echo "<?xml version=\"1.0\" encoding=\"utf-8\"?>
Expand Down
3 changes: 0 additions & 3 deletions bash/genvcxproj.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,6 @@
# Usage:
# $1 is the directory of source code to create a project file for
# $2 is file name to create, should be projectname.vcxproj
# $3 is the root of your Windows fodler where these files will be mapped
# the meat of this is after the printheader/footer functions

function printheader(){
echo "<?xml version=\"1.0\" encoding=\"utf-8\"?>
Expand Down Expand Up @@ -157,7 +155,6 @@ function listinclude(){
do
d=${i%/*}
d=${d//\//\\}
d=${d/.}
f=${i##*/}
printf " <ClInclude Include=\"%s\\%s\" />\n" "$d" "$f"
done
Expand Down