summaryrefslogtreecommitdiffstats
path: root/node_modules/node-sass/binding.gyp
diff options
context:
space:
mode:
authorGravatar Piotr Russ <mail@pruss.it> 2020-11-18 23:26:45 +0100
committerGravatar Piotr Russ <mail@pruss.it> 2020-11-18 23:26:45 +0100
commit81ddf9b700bc48a1f8e472209f080f9c1d9a9b09 (patch)
tree8b959d50c5a614cbf9fcb346ed556140374d4b6d /node_modules/node-sass/binding.gyp
parent1870f3fdf43707a15fda0f609a021f516f45eb63 (diff)
downloadwebsite_creator-81ddf9b700bc48a1f8e472209f080f9c1d9a9b09.tar.gz
website_creator-81ddf9b700bc48a1f8e472209f080f9c1d9a9b09.tar.bz2
website_creator-81ddf9b700bc48a1f8e472209f080f9c1d9a9b09.zip
rm node_modules
Diffstat (limited to 'node_modules/node-sass/binding.gyp')
-rw-r--r--node_modules/node-sass/binding.gyp90
1 files changed, 0 insertions, 90 deletions
diff --git a/node_modules/node-sass/binding.gyp b/node_modules/node-sass/binding.gyp
deleted file mode 100644
index 8b34152..0000000
--- a/node_modules/node-sass/binding.gyp
+++ /dev/null
@@ -1,90 +0,0 @@
-{
- 'variables': {
- 'libsass_ext%': '',
- },
- 'targets': [
- {
- 'target_name': 'binding',
- 'win_delay_load_hook': 'true',
- 'sources': [
- 'src/binding.cpp',
- 'src/create_string.cpp',
- 'src/custom_function_bridge.cpp',
- 'src/custom_importer_bridge.cpp',
- 'src/sass_context_wrapper.cpp',
- 'src/sass_types/boolean.cpp',
- 'src/sass_types/color.cpp',
- 'src/sass_types/error.cpp',
- 'src/sass_types/factory.cpp',
- 'src/sass_types/list.cpp',
- 'src/sass_types/map.cpp',
- 'src/sass_types/null.cpp',
- 'src/sass_types/number.cpp',
- 'src/sass_types/string.cpp'
- ],
- 'msvs_settings': {
- 'VCLinkerTool': {
- 'SetChecksum': 'true'
- }
- },
- 'xcode_settings': {
- 'CLANG_CXX_LANGUAGE_STANDARD': 'c++11',
- 'CLANG_CXX_LIBRARY': 'libc++',
- 'OTHER_LDFLAGS': [],
- 'GCC_ENABLE_CPP_EXCEPTIONS': 'NO',
- 'MACOSX_DEPLOYMENT_TARGET': '10.7'
- },
- 'include_dirs': [
- '<!(node -e "require(\'nan\')")',
- ],
- 'conditions': [
- ['libsass_ext == "" or libsass_ext == "no"', {
- 'dependencies': [
- 'src/libsass.gyp:libsass',
- ]
- }],
- ['libsass_ext == "auto"', {
- 'cflags_cc': [
- '<!(pkg-config --cflags libsass)',
- ],
- 'link_settings': {
- 'ldflags': [
- '<!(pkg-config --libs-only-other --libs-only-L libsass)',
- ],
- 'libraries': [
- '<!(pkg-config --libs-only-l libsass)',
- ],
- }
- }],
- ['libsass_ext == "yes"', {
- 'cflags_cc': [
- '<(libsass_cflags)',
- ],
- 'link_settings': {
- 'ldflags': [
- '<(libsass_ldflags)',
- ],
- 'libraries': [
- '<(libsass_library)',
- ],
- }
- }],
- ['OS=="win" and MSVS_VERSION == "2015"', {
- 'msvs_settings': {
- 'VCCLCompilerTool': {
- 'AdditionalOptions': [
- # disable Thread-Safe "Magic" for local static variables
- '/Zc:threadSafeInit-',
- ],
- },
- },
- }],
- ['OS!="win"', {
- 'cflags_cc+': [
- '-std=c++0x'
- ]
- }]
- ]
- }
- ]
-}