forked from sass/node-sass
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
If PKGCONFIG is set to YES in the proces environment, use pkg-config to locate system libsass to be linked. This way there is no need to checkout a src/libsass submodule at all and the library from the package management system can be used. Otherwise fallback to the bundled libsass. By default, use the bundled library. PR: sass#139 PR: sass#389 PR: sass#744
- Loading branch information
Showing
3 changed files
with
121 additions
and
48 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,95 @@ | ||
{ | ||
'targets': [ | ||
{ | ||
'target_name': 'libsass', | ||
'type': 'static_library', | ||
'product_prefix': 'lib', | ||
'sources': [ | ||
'src/libsass/ast.cpp', | ||
'src/libsass/base64vlq.cpp', | ||
'src/libsass/bind.cpp', | ||
'src/libsass/cencode.c', | ||
'src/libsass/constants.cpp', | ||
'src/libsass/context.cpp', | ||
'src/libsass/contextualize.cpp', | ||
'src/libsass/copy_c_str.cpp', | ||
'src/libsass/error_handling.cpp', | ||
'src/libsass/eval.cpp', | ||
'src/libsass/expand.cpp', | ||
'src/libsass/extend.cpp', | ||
'src/libsass/file.cpp', | ||
'src/libsass/functions.cpp', | ||
'src/libsass/inspect.cpp', | ||
'src/libsass/json.cpp', | ||
'src/libsass/node.cpp', | ||
'src/libsass/output_compressed.cpp', | ||
'src/libsass/output_nested.cpp', | ||
'src/libsass/parser.cpp', | ||
'src/libsass/prelexer.cpp', | ||
'src/libsass/remove_placeholders.cpp', | ||
'src/libsass/sass.cpp', | ||
'src/libsass/sass2scss.cpp', | ||
'src/libsass/sass_context.cpp', | ||
'src/libsass/sass_functions.cpp', | ||
'src/libsass/sass_util.cpp', | ||
'src/libsass/sass_values.cpp', | ||
'src/libsass/source_map.cpp', | ||
'src/libsass/to_c.cpp', | ||
'src/libsass/to_string.cpp', | ||
'src/libsass/units.cpp', | ||
'src/libsass/utf8_string.cpp', | ||
'src/libsass/util.cpp' | ||
], | ||
'cflags!': [ | ||
'-fno-exceptions' | ||
], | ||
'cflags_cc!': [ | ||
'-fno-exceptions' | ||
], | ||
'cflags_cc': [ | ||
'-fexceptions', | ||
'-frtti' | ||
], | ||
'direct_dependent_settings': { | ||
'include_dirs': [ 'src/libsass' ], | ||
}, | ||
'conditions': [ | ||
['OS=="mac"', { | ||
'xcode_settings': { | ||
'OTHER_CPLUSPLUSFLAGS': [ | ||
'-std=c++11', | ||
'-stdlib=libc++' | ||
], | ||
'OTHER_LDFLAGS': [ | ||
'-stdlib=libc++' | ||
], | ||
'GCC_ENABLE_CPP_EXCEPTIONS': 'YES', | ||
'GCC_ENABLE_CPP_RTTI': 'YES', | ||
'MACOSX_DEPLOYMENT_TARGET': '10.7' | ||
} | ||
}], | ||
['OS=="win"', { | ||
'msvs_settings': { | ||
'VCCLCompilerTool': { | ||
'AdditionalOptions': [ | ||
'/GR', | ||
'/EHsc' | ||
] | ||
} | ||
}, | ||
'msvs_disabled_warnings': [ | ||
# conversion from `double` to `size_t`, possible loss of data | ||
4244, | ||
# decorated name length exceeded | ||
4503 | ||
] | ||
}], | ||
['OS!="win"', { | ||
'cflags_cc+': [ | ||
'-std=c++0x' | ||
] | ||
}] | ||
] | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters