Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rough out extraction of sdf_glyph_foundry #132

Merged
merged 2 commits into from
Mar 2, 2017
Merged
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
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,4 @@ glyphs
spec
node_modules
mason_packages
.DS_Store
1 change: 0 additions & 1 deletion binding.gyp
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,6 @@
'sources': [
'src/node_fontnik.cpp',
'src/glyphs.cpp',
'vendor/agg/src/agg_curves.cpp',
'<(SHARED_INTERMEDIATE_DIR)/glyphs.pb.cc'
],
"link_settings": {
Expand Down
5 changes: 4 additions & 1 deletion install_mason.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,14 @@ set -o pipefail

if [ ! -d ./mason ]; then
mkdir ./mason
curl -sSfL https://github.com/mapbox/mason/archive/v0.7.0.tar.gz | tar --gunzip --extract --strip-components=1 --exclude="*md" --exclude="test*" --directory=./mason
# TODO use v0.8.0 tag
curl -sSfL https://github.com/mapbox/mason/archive/ab39e33.tar.gz | tar --gunzip --extract --strip-components=1 --exclude="*md" --exclude="test*" --directory=./mason
./mason/mason install boost 1.63.0
./mason/mason link boost 1.63.0
./mason/mason install freetype 2.7.1
./mason/mason link freetype 2.7.1
./mason/mason install protobuf 3.2.0
./mason/mason link protobuf 3.2.0
./mason/mason install sdf-glyph-foundry 0.1.1
./mason/mason link sdf-glyph-foundry 0.1.1
fi
Loading