Skip to content

Commit

Permalink
Put CEF version in a var. Delete old symlinks.
Browse files Browse the repository at this point in the history
  • Loading branch information
gruehle committed Dec 17, 2012
1 parent ba5f1b9 commit b499097
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions scripts/download_deps.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,11 @@ root_dir=${full_path%/*/*}

#### CEF

cefVersion="3.1180.823"
if [ "$os" = "darwin" ]; then # Building on mac
zipName="cef_binary_3.1180.823_macosx"
zipName="cef_binary_""$cefVersion""_macosx"
elif [ "$os" = "msys" ]; then # Building on win
zipName="cef_binary_3.1180.823_windows"
zipName="cef_binary_""$cefVersion""_windows"
fi

# See if we already have the correct version
Expand Down Expand Up @@ -47,6 +48,8 @@ else
# Call batch file to make directory junctions
cmd /k "scripts\make_symlinks.bat"
else
rm Debug include libcef_dll Release Resources tools

# Make symlinks to deps/cef directories
ln -s deps/cef/Debug/ Debug
ln -s deps/cef/include/ include
Expand Down

0 comments on commit b499097

Please sign in to comment.