sassc 2.0.0 → 2.4.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (260) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +2 -0
  3. data/.gitmodules +1 -1
  4. data/.travis.yml +9 -3
  5. data/CHANGELOG.md +36 -0
  6. data/CODE_OF_CONDUCT.md +1 -1
  7. data/README.md +1 -1
  8. data/Rakefile +43 -7
  9. data/ext/depend +4 -0
  10. data/ext/extconf.rb +92 -0
  11. data/ext/libsass/VERSION +1 -0
  12. data/ext/libsass/include/sass/base.h +9 -1
  13. data/ext/libsass/include/sass/context.h +5 -1
  14. data/ext/libsass/src/MurmurHash2.hpp +91 -0
  15. data/ext/libsass/src/ast.cpp +755 -2028
  16. data/ext/libsass/src/ast.hpp +492 -2477
  17. data/ext/libsass/src/{to_c.cpp → ast2c.cpp} +22 -16
  18. data/ext/libsass/src/ast2c.hpp +39 -0
  19. data/ext/libsass/src/ast_def_macros.hpp +70 -10
  20. data/ext/libsass/src/ast_fwd_decl.cpp +5 -3
  21. data/ext/libsass/src/ast_fwd_decl.hpp +107 -296
  22. data/ext/libsass/src/ast_helpers.hpp +292 -0
  23. data/ext/libsass/src/ast_sel_cmp.cpp +396 -0
  24. data/ext/libsass/src/ast_sel_super.cpp +539 -0
  25. data/ext/libsass/src/ast_sel_unify.cpp +275 -0
  26. data/ext/libsass/src/ast_sel_weave.cpp +616 -0
  27. data/ext/libsass/src/ast_selectors.cpp +1043 -0
  28. data/ext/libsass/src/ast_selectors.hpp +522 -0
  29. data/ext/libsass/src/ast_supports.cpp +114 -0
  30. data/ext/libsass/src/ast_supports.hpp +121 -0
  31. data/ext/libsass/src/ast_values.cpp +1154 -0
  32. data/ext/libsass/src/ast_values.hpp +498 -0
  33. data/ext/libsass/src/backtrace.cpp +11 -7
  34. data/ext/libsass/src/backtrace.hpp +5 -5
  35. data/ext/libsass/src/base64vlq.cpp +5 -2
  36. data/ext/libsass/src/base64vlq.hpp +1 -1
  37. data/ext/libsass/src/bind.cpp +35 -34
  38. data/ext/libsass/src/bind.hpp +3 -1
  39. data/ext/libsass/src/c2ast.cpp +64 -0
  40. data/ext/libsass/src/c2ast.hpp +14 -0
  41. data/ext/libsass/src/cencode.c +4 -6
  42. data/ext/libsass/src/check_nesting.cpp +83 -88
  43. data/ext/libsass/src/check_nesting.hpp +39 -34
  44. data/ext/libsass/src/color_maps.cpp +168 -164
  45. data/ext/libsass/src/color_maps.hpp +152 -160
  46. data/ext/libsass/src/constants.cpp +20 -0
  47. data/ext/libsass/src/constants.hpp +19 -0
  48. data/ext/libsass/src/context.cpp +104 -121
  49. data/ext/libsass/src/context.hpp +43 -55
  50. data/ext/libsass/src/cssize.cpp +103 -188
  51. data/ext/libsass/src/cssize.hpp +45 -51
  52. data/ext/libsass/src/dart_helpers.hpp +199 -0
  53. data/ext/libsass/src/debugger.hpp +524 -361
  54. data/ext/libsass/src/emitter.cpp +26 -26
  55. data/ext/libsass/src/emitter.hpp +20 -18
  56. data/ext/libsass/src/environment.cpp +41 -27
  57. data/ext/libsass/src/environment.hpp +33 -22
  58. data/ext/libsass/src/error_handling.cpp +92 -94
  59. data/ext/libsass/src/error_handling.hpp +73 -50
  60. data/ext/libsass/src/eval.cpp +380 -515
  61. data/ext/libsass/src/eval.hpp +64 -57
  62. data/ext/libsass/src/eval_selectors.cpp +75 -0
  63. data/ext/libsass/src/expand.cpp +322 -263
  64. data/ext/libsass/src/expand.hpp +55 -39
  65. data/ext/libsass/src/extender.cpp +1188 -0
  66. data/ext/libsass/src/extender.hpp +399 -0
  67. data/ext/libsass/src/extension.cpp +43 -0
  68. data/ext/libsass/src/extension.hpp +89 -0
  69. data/ext/libsass/src/file.cpp +134 -88
  70. data/ext/libsass/src/file.hpp +28 -37
  71. data/ext/libsass/src/fn_colors.cpp +596 -0
  72. data/ext/libsass/src/fn_colors.hpp +85 -0
  73. data/ext/libsass/src/fn_lists.cpp +285 -0
  74. data/ext/libsass/src/fn_lists.hpp +34 -0
  75. data/ext/libsass/src/fn_maps.cpp +94 -0
  76. data/ext/libsass/src/fn_maps.hpp +30 -0
  77. data/ext/libsass/src/fn_miscs.cpp +244 -0
  78. data/ext/libsass/src/fn_miscs.hpp +40 -0
  79. data/ext/libsass/src/fn_numbers.cpp +227 -0
  80. data/ext/libsass/src/fn_numbers.hpp +45 -0
  81. data/ext/libsass/src/fn_selectors.cpp +205 -0
  82. data/ext/libsass/src/fn_selectors.hpp +35 -0
  83. data/ext/libsass/src/fn_strings.cpp +268 -0
  84. data/ext/libsass/src/fn_strings.hpp +34 -0
  85. data/ext/libsass/src/fn_utils.cpp +158 -0
  86. data/ext/libsass/src/fn_utils.hpp +62 -0
  87. data/ext/libsass/src/inspect.cpp +253 -266
  88. data/ext/libsass/src/inspect.hpp +72 -74
  89. data/ext/libsass/src/json.cpp +2 -2
  90. data/ext/libsass/src/lexer.cpp +25 -84
  91. data/ext/libsass/src/lexer.hpp +5 -16
  92. data/ext/libsass/src/listize.cpp +27 -43
  93. data/ext/libsass/src/listize.hpp +14 -11
  94. data/ext/libsass/src/mapping.hpp +1 -0
  95. data/ext/libsass/src/memory.hpp +12 -0
  96. data/ext/libsass/src/memory/allocator.cpp +48 -0
  97. data/ext/libsass/src/memory/allocator.hpp +138 -0
  98. data/ext/libsass/src/memory/config.hpp +20 -0
  99. data/ext/libsass/src/memory/memory_pool.hpp +186 -0
  100. data/ext/libsass/src/memory/shared_ptr.cpp +33 -0
  101. data/ext/libsass/src/memory/shared_ptr.hpp +332 -0
  102. data/ext/libsass/src/operation.hpp +193 -143
  103. data/ext/libsass/src/operators.cpp +56 -29
  104. data/ext/libsass/src/operators.hpp +11 -11
  105. data/ext/libsass/src/ordered_map.hpp +112 -0
  106. data/ext/libsass/src/output.cpp +59 -75
  107. data/ext/libsass/src/output.hpp +15 -22
  108. data/ext/libsass/src/parser.cpp +662 -818
  109. data/ext/libsass/src/parser.hpp +96 -100
  110. data/ext/libsass/src/parser_selectors.cpp +189 -0
  111. data/ext/libsass/src/permutate.hpp +164 -0
  112. data/ext/libsass/src/plugins.cpp +12 -8
  113. data/ext/libsass/src/plugins.hpp +8 -8
  114. data/ext/libsass/src/position.cpp +10 -26
  115. data/ext/libsass/src/position.hpp +44 -21
  116. data/ext/libsass/src/prelexer.cpp +14 -8
  117. data/ext/libsass/src/prelexer.hpp +9 -9
  118. data/ext/libsass/src/remove_placeholders.cpp +59 -57
  119. data/ext/libsass/src/remove_placeholders.hpp +20 -18
  120. data/ext/libsass/src/sass.cpp +25 -18
  121. data/ext/libsass/src/sass.hpp +22 -14
  122. data/ext/libsass/src/sass2scss.cpp +49 -18
  123. data/ext/libsass/src/sass_context.cpp +104 -132
  124. data/ext/libsass/src/sass_context.hpp +2 -2
  125. data/ext/libsass/src/sass_functions.cpp +7 -4
  126. data/ext/libsass/src/sass_functions.hpp +1 -1
  127. data/ext/libsass/src/sass_values.cpp +26 -21
  128. data/ext/libsass/src/settings.hpp +19 -0
  129. data/ext/libsass/src/source.cpp +69 -0
  130. data/ext/libsass/src/source.hpp +95 -0
  131. data/ext/libsass/src/source_data.hpp +32 -0
  132. data/ext/libsass/src/source_map.cpp +27 -20
  133. data/ext/libsass/src/source_map.hpp +14 -11
  134. data/ext/libsass/src/stylesheet.cpp +22 -0
  135. data/ext/libsass/src/stylesheet.hpp +57 -0
  136. data/ext/libsass/src/to_value.cpp +24 -22
  137. data/ext/libsass/src/to_value.hpp +18 -22
  138. data/ext/libsass/src/units.cpp +28 -22
  139. data/ext/libsass/src/units.hpp +9 -8
  140. data/ext/libsass/src/utf8/checked.h +12 -10
  141. data/ext/libsass/src/utf8/core.h +3 -0
  142. data/ext/libsass/src/utf8_string.cpp +12 -10
  143. data/ext/libsass/src/utf8_string.hpp +7 -6
  144. data/ext/libsass/src/util.cpp +97 -107
  145. data/ext/libsass/src/util.hpp +74 -30
  146. data/ext/libsass/src/util_string.cpp +125 -0
  147. data/ext/libsass/src/util_string.hpp +73 -0
  148. data/ext/libsass/src/values.cpp +33 -24
  149. data/ext/libsass/src/values.hpp +2 -2
  150. data/lib/sassc.rb +24 -0
  151. data/lib/sassc/engine.rb +7 -5
  152. data/lib/sassc/functions_handler.rb +11 -13
  153. data/lib/sassc/native.rb +10 -9
  154. data/lib/sassc/native/native_functions_api.rb +0 -5
  155. data/lib/sassc/script.rb +4 -6
  156. data/lib/sassc/version.rb +1 -1
  157. data/sassc.gemspec +32 -12
  158. data/test/engine_test.rb +32 -2
  159. data/test/functions_test.rb +38 -1
  160. data/test/native_test.rb +4 -4
  161. metadata +95 -109
  162. data/ext/Rakefile +0 -3
  163. data/ext/libsass/.editorconfig +0 -15
  164. data/ext/libsass/.gitattributes +0 -2
  165. data/ext/libsass/.github/CONTRIBUTING.md +0 -65
  166. data/ext/libsass/.github/ISSUE_TEMPLATE.md +0 -54
  167. data/ext/libsass/.gitignore +0 -85
  168. data/ext/libsass/.travis.yml +0 -64
  169. data/ext/libsass/COPYING +0 -25
  170. data/ext/libsass/GNUmakefile.am +0 -88
  171. data/ext/libsass/INSTALL +0 -1
  172. data/ext/libsass/LICENSE +0 -25
  173. data/ext/libsass/Makefile +0 -351
  174. data/ext/libsass/Makefile.conf +0 -55
  175. data/ext/libsass/Readme.md +0 -104
  176. data/ext/libsass/SECURITY.md +0 -10
  177. data/ext/libsass/appveyor.yml +0 -91
  178. data/ext/libsass/configure.ac +0 -138
  179. data/ext/libsass/contrib/libsass.spec +0 -66
  180. data/ext/libsass/docs/README.md +0 -20
  181. data/ext/libsass/docs/api-context-example.md +0 -45
  182. data/ext/libsass/docs/api-context-internal.md +0 -163
  183. data/ext/libsass/docs/api-context.md +0 -295
  184. data/ext/libsass/docs/api-doc.md +0 -215
  185. data/ext/libsass/docs/api-function-example.md +0 -67
  186. data/ext/libsass/docs/api-function-internal.md +0 -8
  187. data/ext/libsass/docs/api-function.md +0 -74
  188. data/ext/libsass/docs/api-importer-example.md +0 -112
  189. data/ext/libsass/docs/api-importer-internal.md +0 -20
  190. data/ext/libsass/docs/api-importer.md +0 -86
  191. data/ext/libsass/docs/api-value-example.md +0 -55
  192. data/ext/libsass/docs/api-value-internal.md +0 -76
  193. data/ext/libsass/docs/api-value.md +0 -154
  194. data/ext/libsass/docs/build-on-darwin.md +0 -27
  195. data/ext/libsass/docs/build-on-gentoo.md +0 -55
  196. data/ext/libsass/docs/build-on-windows.md +0 -139
  197. data/ext/libsass/docs/build-shared-library.md +0 -35
  198. data/ext/libsass/docs/build-with-autotools.md +0 -78
  199. data/ext/libsass/docs/build-with-makefiles.md +0 -68
  200. data/ext/libsass/docs/build-with-mingw.md +0 -107
  201. data/ext/libsass/docs/build-with-visual-studio.md +0 -90
  202. data/ext/libsass/docs/build.md +0 -97
  203. data/ext/libsass/docs/compatibility-plan.md +0 -48
  204. data/ext/libsass/docs/contributing.md +0 -17
  205. data/ext/libsass/docs/custom-functions-internal.md +0 -122
  206. data/ext/libsass/docs/dev-ast-memory.md +0 -223
  207. data/ext/libsass/docs/implementations.md +0 -56
  208. data/ext/libsass/docs/plugins.md +0 -47
  209. data/ext/libsass/docs/setup-environment.md +0 -68
  210. data/ext/libsass/docs/source-map-internals.md +0 -51
  211. data/ext/libsass/docs/trace.md +0 -26
  212. data/ext/libsass/docs/triage.md +0 -17
  213. data/ext/libsass/docs/unicode.md +0 -39
  214. data/ext/libsass/extconf.rb +0 -6
  215. data/ext/libsass/include/sass/version.h.in +0 -12
  216. data/ext/libsass/m4/.gitkeep +0 -0
  217. data/ext/libsass/m4/m4-ax_cxx_compile_stdcxx_11.m4 +0 -167
  218. data/ext/libsass/res/resource.rc +0 -35
  219. data/ext/libsass/script/bootstrap +0 -13
  220. data/ext/libsass/script/branding +0 -10
  221. data/ext/libsass/script/ci-build-libsass +0 -134
  222. data/ext/libsass/script/ci-build-plugin +0 -62
  223. data/ext/libsass/script/ci-install-compiler +0 -6
  224. data/ext/libsass/script/ci-install-deps +0 -20
  225. data/ext/libsass/script/ci-report-coverage +0 -42
  226. data/ext/libsass/script/spec +0 -5
  227. data/ext/libsass/script/tap-driver +0 -652
  228. data/ext/libsass/script/tap-runner +0 -1
  229. data/ext/libsass/script/test-leaks.pl +0 -103
  230. data/ext/libsass/src/GNUmakefile.am +0 -54
  231. data/ext/libsass/src/extend.cpp +0 -2130
  232. data/ext/libsass/src/extend.hpp +0 -86
  233. data/ext/libsass/src/functions.cpp +0 -2234
  234. data/ext/libsass/src/functions.hpp +0 -198
  235. data/ext/libsass/src/memory/SharedPtr.cpp +0 -114
  236. data/ext/libsass/src/memory/SharedPtr.hpp +0 -206
  237. data/ext/libsass/src/node.cpp +0 -319
  238. data/ext/libsass/src/node.hpp +0 -118
  239. data/ext/libsass/src/paths.hpp +0 -71
  240. data/ext/libsass/src/sass_util.cpp +0 -149
  241. data/ext/libsass/src/sass_util.hpp +0 -256
  242. data/ext/libsass/src/subset_map.cpp +0 -55
  243. data/ext/libsass/src/subset_map.hpp +0 -76
  244. data/ext/libsass/src/support/libsass.pc.in +0 -11
  245. data/ext/libsass/src/to_c.hpp +0 -39
  246. data/ext/libsass/test/test_node.cpp +0 -94
  247. data/ext/libsass/test/test_paths.cpp +0 -28
  248. data/ext/libsass/test/test_selector_difference.cpp +0 -25
  249. data/ext/libsass/test/test_specificity.cpp +0 -25
  250. data/ext/libsass/test/test_subset_map.cpp +0 -472
  251. data/ext/libsass/test/test_superselector.cpp +0 -69
  252. data/ext/libsass/test/test_unification.cpp +0 -31
  253. data/ext/libsass/version.sh +0 -10
  254. data/ext/libsass/win/libsass.sln +0 -39
  255. data/ext/libsass/win/libsass.sln.DotSettings +0 -9
  256. data/ext/libsass/win/libsass.targets +0 -118
  257. data/ext/libsass/win/libsass.vcxproj +0 -188
  258. data/ext/libsass/win/libsass.vcxproj.filters +0 -357
  259. data/lib/sassc/native/lib_c.rb +0 -21
  260. data/lib/tasks/libsass.rb +0 -33
@@ -1,69 +0,0 @@
1
- #include "../ast.hpp"
2
- #include "../context.hpp"
3
- #include "../parser.hpp"
4
- #include <string>
5
-
6
- using namespace Sass;
7
-
8
- Context ctx = Context(Context::Data());
9
-
10
- Compound_Selector* compound_selector(std::string src)
11
- { return Parser::from_c_str(src.c_str(), ctx, "", Position()).parse_compound_selector(); }
12
-
13
- Complex_Selector* complex_selector(std::string src)
14
- { return Parser::from_c_str(src.c_str(), ctx, "", Position()).parse_complex_selector(false); }
15
-
16
- void check_compound(std::string s1, std::string s2)
17
- {
18
- std::cout << "Is "
19
- << s1
20
- << " a superselector of "
21
- << s2
22
- << "?\t"
23
- << compound_selector(s1 + ";")->is_superselector_of(compound_selector(s2 + ";"))
24
- << std::endl;
25
- }
26
-
27
- void check_complex(std::string s1, std::string s2)
28
- {
29
- std::cout << "Is "
30
- << s1
31
- << " a superselector of "
32
- << s2
33
- << "?\t"
34
- << complex_selector(s1 + ";")->is_superselector_of(complex_selector(s2 + ";"))
35
- << std::endl;
36
- }
37
-
38
- int main()
39
- {
40
- check_compound(".foo", ".foo.bar");
41
- check_compound(".foo.bar", ".foo");
42
- check_compound(".foo.bar", "div.foo");
43
- check_compound(".foo", "div.foo");
44
- check_compound("div.foo", ".foo");
45
- check_compound("div.foo", "div.bar.foo");
46
- check_compound("p.foo", "div.bar.foo");
47
- check_compound(".hux", ".mumble");
48
-
49
- std::cout << std::endl;
50
-
51
- check_complex(".foo ~ .bar", ".foo + .bar");
52
- check_complex(".foo .bar", ".foo + .bar");
53
- check_complex(".foo .bar", ".foo > .bar");
54
- check_complex(".foo .bar > .hux", ".foo.a .bar.b > .hux");
55
- check_complex(".foo ~ .bar .hux", ".foo.a + .bar.b > .hux");
56
- check_complex(".foo", ".bar .foo");
57
- check_complex(".foo", ".foo.a");
58
- check_complex(".foo.bar", ".foo");
59
- check_complex(".foo .bar .hux", ".bar .hux");
60
- check_complex(".foo ~ .bar .hux.x", ".foo.a + .bar.b > .hux.y");
61
- check_complex(".foo ~ .bar .hux", ".foo.a + .bar.b > .mumble");
62
- check_complex(".foo + .bar", ".foo ~ .bar");
63
- check_complex("a c e", "a b c d e");
64
- check_complex("c a e", "a b c d e");
65
-
66
- return 0;
67
- }
68
-
69
-
@@ -1,31 +0,0 @@
1
- #include "../ast.hpp"
2
- #include "../context.hpp"
3
- #include "../parser.hpp"
4
- #include <string>
5
-
6
- using namespace Sass;
7
-
8
- Context ctx = Context(Context::Data());
9
-
10
- Compound_Selector* selector(std::string src)
11
- { return Parser::from_c_str(src.c_str(), ctx, "", Position()).parse_compound_selector(); }
12
-
13
- void unify(std::string lhs, std::string rhs)
14
- {
15
- Compound_Selector* unified = selector(lhs + ";")->unify_with(selector(rhs + ";"), ctx);
16
- std::cout << lhs << " UNIFIED WITH " << rhs << " =\t" << (unified ? unified->to_string() : "NOTHING") << std::endl;
17
- }
18
-
19
- int main()
20
- {
21
- unify(".foo", ".foo.bar");
22
- unify("div:nth-of-type(odd)", "div:first-child");
23
- unify("div", "span:whatever");
24
- unify("div", "span");
25
- unify("foo:bar::after", "foo:bar::first-letter");
26
- unify(".foo#bar.hux", ".hux.foo#bar");
27
- unify(".foo#bar.hux", ".hux.foo#baz");
28
- unify("*:blah:fudge", "p:fudge:blah");
29
-
30
- return 0;
31
- }
@@ -1,10 +0,0 @@
1
- if test "x$LIBSASS_VERSION" = "x"; then
2
- LIBSASS_VERSION=`git describe --abbrev=4 --dirty --always --tags 2>/dev/null`
3
- fi
4
- if test "x$LIBSASS_VERSION" = "x"; then
5
- LIBSASS_VERSION=`cat VERSION 2>/dev/null`
6
- fi
7
- if test "x$LIBSASS_VERSION" = "x"; then
8
- LIBSASS_VERSION="[na]"
9
- fi
10
- echo $LIBSASS_VERSION
@@ -1,39 +0,0 @@
1
- 
2
- Microsoft Visual Studio Solution File, Format Version 12.00
3
- # Visual Studio 14
4
- VisualStudioVersion = 14.0.25420.1
5
- MinimumVisualStudioVersion = 10.0.40219.1
6
- Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "libsass", "libsass.vcxproj", "{E4030474-AFC9-4CC6-BEB6-D846F631502B}"
7
- EndProject
8
- Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = ".SolutionItems", ".SolutionItems", "{33318C77-2391-4399-8118-C109155A4A75}"
9
- ProjectSection(SolutionItems) = preProject
10
- ..\.editorconfig = ..\.editorconfig
11
- ..\.gitattributes = ..\.gitattributes
12
- ..\.gitignore = ..\.gitignore
13
- ..\.travis.yml = ..\.travis.yml
14
- ..\appveyor.yml = ..\appveyor.yml
15
- ..\Readme.md = ..\Readme.md
16
- ..\res\resource.rc = ..\res\resource.rc
17
- EndProjectSection
18
- EndProject
19
- Global
20
- GlobalSection(SolutionConfigurationPlatforms) = preSolution
21
- Debug|Win32 = Debug|Win32
22
- Debug|Win64 = Debug|Win64
23
- Release|Win32 = Release|Win32
24
- Release|Win64 = Release|Win64
25
- EndGlobalSection
26
- GlobalSection(ProjectConfigurationPlatforms) = postSolution
27
- {E4030474-AFC9-4CC6-BEB6-D846F631502B}.Debug|Win32.ActiveCfg = Debug|Win32
28
- {E4030474-AFC9-4CC6-BEB6-D846F631502B}.Debug|Win32.Build.0 = Debug|Win32
29
- {E4030474-AFC9-4CC6-BEB6-D846F631502B}.Debug|Win64.ActiveCfg = Debug|x64
30
- {E4030474-AFC9-4CC6-BEB6-D846F631502B}.Debug|Win64.Build.0 = Debug|x64
31
- {E4030474-AFC9-4CC6-BEB6-D846F631502B}.Release|Win32.ActiveCfg = Release|Win32
32
- {E4030474-AFC9-4CC6-BEB6-D846F631502B}.Release|Win32.Build.0 = Release|Win32
33
- {E4030474-AFC9-4CC6-BEB6-D846F631502B}.Release|Win64.ActiveCfg = Release|x64
34
- {E4030474-AFC9-4CC6-BEB6-D846F631502B}.Release|Win64.Build.0 = Release|x64
35
- EndGlobalSection
36
- GlobalSection(SolutionProperties) = preSolution
37
- HideSolutionNode = FALSE
38
- EndGlobalSection
39
- EndGlobal
@@ -1,9 +0,0 @@
1
- <wpf:ResourceDictionary xml:space="preserve" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:s="clr-namespace:System;assembly=mscorlib" xmlns:ss="urn:shemas-jetbrains-com:settings-storage-xaml" xmlns:wpf="http://schemas.microsoft.com/winfx/2006/xaml/presentation">
2
- <s:String x:Key="/Default/CodeInspection/ExcludedFiles/FilesAndFoldersToSkip2/=E4030474_002DAFC9_002D4CC6_002DBEB6_002DD846F631502B_002Ff_003Acencode_002Ec_002Fl_003A_002E_002E_003Fsrc_003Fcencode_002Ec/@EntryIndexedValue">ExplicitlyExcluded</s:String>
3
- <s:String x:Key="/Default/CodeInspection/ExcludedFiles/FilesAndFoldersToSkip2/=E4030474_002DAFC9_002D4CC6_002DBEB6_002DD846F631502B_002Ff_003Achecked_002Eh_002Fl_003A_002E_002E_003Fsrc_003Futf8_003Fchecked_002Eh/@EntryIndexedValue">ExplicitlyExcluded</s:String>
4
- <s:String x:Key="/Default/CodeInspection/ExcludedFiles/FilesAndFoldersToSkip2/=E4030474_002DAFC9_002D4CC6_002DBEB6_002DD846F631502B_002Ff_003Acore_002Eh_002Fl_003A_002E_002E_003Fsrc_003Futf8_003Fcore_002Eh/@EntryIndexedValue">ExplicitlyExcluded</s:String>
5
- <s:String x:Key="/Default/CodeInspection/ExcludedFiles/FilesAndFoldersToSkip2/=E4030474_002DAFC9_002D4CC6_002DBEB6_002DD846F631502B_002Ff_003Ajson_002Ecpp_002Fl_003A_002E_002E_003Fsrc_003Fjson_002Ecpp/@EntryIndexedValue">ExplicitlyExcluded</s:String>
6
- <s:String x:Key="/Default/CodeInspection/ExcludedFiles/FilesAndFoldersToSkip2/=E4030474_002DAFC9_002D4CC6_002DBEB6_002DD846F631502B_002Ff_003Ajson_002Ehpp_002Fl_003A_002E_002E_003Fsrc_003Fjson_002Ehpp/@EntryIndexedValue">ExplicitlyExcluded</s:String>
7
- <s:String x:Key="/Default/CodeInspection/ExcludedFiles/FilesAndFoldersToSkip2/=E4030474_002DAFC9_002D4CC6_002DBEB6_002DD846F631502B_002Ff_003Asass2scss_002Ecpp_002Fl_003A_002E_002E_003Fsrc_003Fsass2scss_002Ecpp/@EntryIndexedValue">ExplicitlyExcluded</s:String>
8
- <s:String x:Key="/Default/CodeInspection/ExcludedFiles/FilesAndFoldersToSkip2/=E4030474_002DAFC9_002D4CC6_002DBEB6_002DD846F631502B_002Ff_003Asass2scss_002Eh_002Fl_003A_002E_002E_003Finclude_003Fsass2scss_002Eh/@EntryIndexedValue">ExplicitlyExcluded</s:String>
9
- <s:String x:Key="/Default/CodeInspection/ExcludedFiles/FilesAndFoldersToSkip2/=E4030474_002DAFC9_002D4CC6_002DBEB6_002DD846F631502B_002Ff_003Aunchecked_002Eh_002Fl_003A_002E_002E_003Fsrc_003Futf8_003Funchecked_002Eh/@EntryIndexedValue">ExplicitlyExcluded</s:String></wpf:ResourceDictionary>
@@ -1,118 +0,0 @@
1
- <Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
2
- <ItemGroup Label="LibSass Include Headers">
3
- <ClInclude Include="$(LIBSASS_INCLUDES_DIR)\sass.h" />
4
- <ClInclude Include="$(LIBSASS_INCLUDES_DIR)\sass2scss.h" />
5
- <ClInclude Include="$(LIBSASS_INCLUDES_DIR)\sass\base.h" />
6
- <ClInclude Include="$(LIBSASS_INCLUDES_DIR)\sass\context.h" />
7
- <ClInclude Include="$(LIBSASS_INCLUDES_DIR)\sass\functions.h" />
8
- <ClInclude Include="$(LIBSASS_INCLUDES_DIR)\sass\values.h" />
9
- <ClInclude Include="$(LIBSASS_INCLUDES_DIR)\sass\version.h" />
10
- <ClInclude Include="$(LIBSASS_INCLUDES_DIR)\sass\version.h.in" />
11
- </ItemGroup>
12
- <ItemGroup Label="LibSass Headers">
13
- <ClInclude Include="$(LIBSASS_HEADERS_DIR)\ast.hpp" />
14
- <ClInclude Include="$(LIBSASS_HEADERS_DIR)\ast_def_macros.hpp" />
15
- <ClInclude Include="$(LIBSASS_HEADERS_DIR)\memory\SharedPtr.hpp" />
16
- <ClInclude Include="$(LIBSASS_HEADERS_DIR)\ast_factory.hpp" />
17
- <ClInclude Include="$(LIBSASS_HEADERS_DIR)\ast_fwd_decl.hpp" />
18
- <ClInclude Include="$(LIBSASS_HEADERS_DIR)\backtrace.hpp" />
19
- <ClInclude Include="$(LIBSASS_HEADERS_DIR)\base64vlq.hpp" />
20
- <ClInclude Include="$(LIBSASS_HEADERS_DIR)\bind.hpp" />
21
- <ClInclude Include="$(LIBSASS_HEADERS_DIR)\b64\cencode.h" />
22
- <ClInclude Include="$(LIBSASS_HEADERS_DIR)\check_nesting.hpp" />
23
- <ClInclude Include="$(LIBSASS_HEADERS_DIR)\color_maps.hpp" />
24
- <ClInclude Include="$(LIBSASS_HEADERS_DIR)\constants.hpp" />
25
- <ClInclude Include="$(LIBSASS_HEADERS_DIR)\context.hpp" />
26
- <ClInclude Include="$(LIBSASS_HEADERS_DIR)\cssize.hpp" />
27
- <ClInclude Include="$(LIBSASS_HEADERS_DIR)\debug.hpp" />
28
- <ClInclude Include="$(LIBSASS_HEADERS_DIR)\emitter.hpp" />
29
- <ClInclude Include="$(LIBSASS_HEADERS_DIR)\environment.hpp" />
30
- <ClInclude Include="$(LIBSASS_HEADERS_DIR)\error_handling.hpp" />
31
- <ClInclude Include="$(LIBSASS_HEADERS_DIR)\eval.hpp" />
32
- <ClInclude Include="$(LIBSASS_HEADERS_DIR)\expand.hpp" />
33
- <ClInclude Include="$(LIBSASS_HEADERS_DIR)\extend.hpp" />
34
- <ClInclude Include="$(LIBSASS_HEADERS_DIR)\file.hpp" />
35
- <ClInclude Include="$(LIBSASS_HEADERS_DIR)\functions.hpp" />
36
- <ClInclude Include="$(LIBSASS_HEADERS_DIR)\inspect.hpp" />
37
- <ClInclude Include="$(LIBSASS_HEADERS_DIR)\json.hpp" />
38
- <ClInclude Include="$(LIBSASS_HEADERS_DIR)\kwd_arg_macros.hpp" />
39
- <ClInclude Include="$(LIBSASS_HEADERS_DIR)\lexer.hpp" />
40
- <ClInclude Include="$(LIBSASS_HEADERS_DIR)\listize.hpp" />
41
- <ClInclude Include="$(LIBSASS_HEADERS_DIR)\mapping.hpp" />
42
- <ClInclude Include="$(LIBSASS_HEADERS_DIR)\node.hpp" />
43
- <ClInclude Include="$(LIBSASS_HEADERS_DIR)\operation.hpp" />
44
- <ClInclude Include="$(LIBSASS_HEADERS_DIR)\output.hpp" />
45
- <ClInclude Include="$(LIBSASS_HEADERS_DIR)\parser.hpp" />
46
- <ClInclude Include="$(LIBSASS_HEADERS_DIR)\paths.hpp" />
47
- <ClInclude Include="$(LIBSASS_HEADERS_DIR)\plugins.hpp" />
48
- <ClInclude Include="$(LIBSASS_HEADERS_DIR)\position.hpp" />
49
- <ClInclude Include="$(LIBSASS_HEADERS_DIR)\prelexer.hpp" />
50
- <ClInclude Include="$(LIBSASS_HEADERS_DIR)\remove_placeholders.hpp" />
51
- <ClInclude Include="$(LIBSASS_HEADERS_DIR)\sass.hpp" />
52
- <ClInclude Include="$(LIBSASS_HEADERS_DIR)\sass_context.hpp" />
53
- <ClInclude Include="$(LIBSASS_HEADERS_DIR)\sass_functions.hpp" />
54
- <ClInclude Include="$(LIBSASS_HEADERS_DIR)\sass_util.hpp" />
55
- <ClInclude Include="$(LIBSASS_HEADERS_DIR)\sass_values.hpp" />
56
- <ClInclude Include="$(LIBSASS_HEADERS_DIR)\source_map.hpp" />
57
- <ClInclude Include="$(LIBSASS_HEADERS_DIR)\subset_map.hpp" />
58
- <ClInclude Include="$(LIBSASS_HEADERS_DIR)\to_c.hpp" />
59
- <ClInclude Include="$(LIBSASS_HEADERS_DIR)\to_value.hpp" />
60
- <ClInclude Include="$(LIBSASS_HEADERS_DIR)\units.hpp" />
61
- <ClInclude Include="$(LIBSASS_HEADERS_DIR)\utf8.h" />
62
- <ClInclude Include="$(LIBSASS_HEADERS_DIR)\utf8\checked.h" />
63
- <ClInclude Include="$(LIBSASS_HEADERS_DIR)\utf8\core.h" />
64
- <ClInclude Include="$(LIBSASS_HEADERS_DIR)\utf8\unchecked.h" />
65
- <ClInclude Include="$(LIBSASS_HEADERS_DIR)\utf8_string.hpp" />
66
- <ClInclude Include="$(LIBSASS_HEADERS_DIR)\util.hpp" />
67
- <ClInclude Include="$(LIBSASS_HEADERS_DIR)\values.hpp" />
68
- </ItemGroup>
69
- <ItemGroup Label="LibSass Sources">
70
- <ClCompile Include="$(LIBSASS_SRC_DIR)\ast.cpp" />
71
- <ClCompile Include="$(LIBSASS_SRC_DIR)\memory\SharedPtr.cpp" />
72
- <ClCompile Include="$(LIBSASS_SRC_DIR)\ast_fwd_decl.cpp" />
73
- <ClCompile Include="$(LIBSASS_SRC_DIR)\base64vlq.cpp" />
74
- <ClCompile Include="$(LIBSASS_SRC_DIR)\bind.cpp" />
75
- <ClCompile Condition="$(VisualStudioVersion) &lt; 14.0" Include="$(LIBSASS_SRC_DIR)\c99func.c" />
76
- <ClCompile Include="$(LIBSASS_SRC_DIR)\cencode.c" />
77
- <ClCompile Include="$(LIBSASS_SRC_DIR)\check_nesting.cpp" />
78
- <ClCompile Include="$(LIBSASS_SRC_DIR)\color_maps.cpp" />
79
- <ClCompile Include="$(LIBSASS_SRC_DIR)\constants.cpp" />
80
- <ClCompile Include="$(LIBSASS_SRC_DIR)\context.cpp" />
81
- <ClCompile Include="$(LIBSASS_SRC_DIR)\cssize.cpp" />
82
- <ClCompile Include="$(LIBSASS_SRC_DIR)\emitter.cpp" />
83
- <ClCompile Include="$(LIBSASS_SRC_DIR)\environment.cpp" />
84
- <ClCompile Include="$(LIBSASS_SRC_DIR)\error_handling.cpp" />
85
- <ClCompile Include="$(LIBSASS_SRC_DIR)\eval.cpp" />
86
- <ClCompile Include="$(LIBSASS_SRC_DIR)\expand.cpp" />
87
- <ClCompile Include="$(LIBSASS_SRC_DIR)\extend.cpp" />
88
- <ClCompile Include="$(LIBSASS_SRC_DIR)\file.cpp" />
89
- <ClCompile Include="$(LIBSASS_SRC_DIR)\functions.cpp" />
90
- <ClCompile Include="$(LIBSASS_SRC_DIR)\inspect.cpp" />
91
- <ClCompile Include="$(LIBSASS_SRC_DIR)\json.cpp" />
92
- <ClCompile Include="$(LIBSASS_SRC_DIR)\lexer.cpp" />
93
- <ClCompile Include="$(LIBSASS_SRC_DIR)\listize.cpp" />
94
- <ClCompile Include="$(LIBSASS_SRC_DIR)\node.cpp" />
95
- <ClCompile Include="$(LIBSASS_SRC_DIR)\output.cpp" />
96
- <ClCompile Include="$(LIBSASS_SRC_DIR)\parser.cpp" />
97
- <ClCompile Include="$(LIBSASS_SRC_DIR)\plugins.cpp" />
98
- <ClCompile Include="$(LIBSASS_SRC_DIR)\position.cpp" />
99
- <ClCompile Include="$(LIBSASS_SRC_DIR)\prelexer.cpp" />
100
- <ClCompile Include="$(LIBSASS_SRC_DIR)\backtrace.cpp" />
101
- <ClCompile Include="$(LIBSASS_SRC_DIR)\operators.cpp" />
102
- <ClCompile Include="$(LIBSASS_SRC_DIR)\remove_placeholders.cpp" />
103
- <ClCompile Include="$(LIBSASS_SRC_DIR)\sass.cpp" />
104
- <ClCompile Include="$(LIBSASS_SRC_DIR)\sass_context.cpp" />
105
- <ClCompile Include="$(LIBSASS_SRC_DIR)\sass_functions.cpp" />
106
- <ClCompile Include="$(LIBSASS_SRC_DIR)\sass_util.cpp" />
107
- <ClCompile Include="$(LIBSASS_SRC_DIR)\sass_values.cpp" />
108
- <ClCompile Include="$(LIBSASS_SRC_DIR)\sass2scss.cpp" />
109
- <ClCompile Include="$(LIBSASS_SRC_DIR)\source_map.cpp" />
110
- <ClCompile Include="$(LIBSASS_SRC_DIR)\subset_map.cpp" />
111
- <ClCompile Include="$(LIBSASS_SRC_DIR)\to_c.cpp" />
112
- <ClCompile Include="$(LIBSASS_SRC_DIR)\to_value.cpp" />
113
- <ClCompile Include="$(LIBSASS_SRC_DIR)\units.cpp" />
114
- <ClCompile Include="$(LIBSASS_SRC_DIR)\utf8_string.cpp" />
115
- <ClCompile Include="$(LIBSASS_SRC_DIR)\util.cpp" />
116
- <ClCompile Include="$(LIBSASS_SRC_DIR)\values.cpp" />
117
- </ItemGroup>
118
- </Project>
@@ -1,188 +0,0 @@
1
- <?xml version="1.0" encoding="utf-8"?>
2
- <Project ToolsVersion="14.0" DefaultTargets="GitVersion;Main" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3
- <PropertyGroup>
4
- <LIBSASS_VERSION>[NA]</LIBSASS_VERSION>
5
- <LIBSASS_SRC_DIR>..\src</LIBSASS_SRC_DIR>
6
- <LIBSASS_HEADERS_DIR>..\src</LIBSASS_HEADERS_DIR>
7
- <LIBSASS_INCLUDES_DIR>..\include</LIBSASS_INCLUDES_DIR>
8
- </PropertyGroup>
9
- <Target Name="GitVersion">
10
- <Exec Command="git -C .. describe --abbrev=4 --dirty --always --tags" LogStandardErrorAsError="true" ContinueOnError="true" ConsoleToMSBuild="true">
11
- <Output TaskParameter="ConsoleOutput" PropertyName="LIBSASS_VERSION" />
12
- </Exec>
13
- </Target>
14
- <Target Name="VersionMacros">
15
- <ItemGroup>
16
- <ClCompile>
17
- <PreprocessorDefinitions>%(PreprocessorDefinitions);LIBSASS_VERSION="$(LIBSASS_VERSION)";</PreprocessorDefinitions>
18
- </ClCompile>
19
- </ItemGroup>
20
- </Target>
21
- <Target Name="Main">
22
- <Message Text="libsass: $(LIBSASS_VERSION)" />
23
- <Message Condition="$(LIBSASS_STATIC_LIB) != ''" Text="Building Static LibSass" />
24
- <Message Condition="$(LIBSASS_STATIC_LIB) == ''" Text="Building Dynamic LibSass" />
25
- <CallTarget Targets="VersionMacros" />
26
- <CallTarget Targets="Build" />
27
- </Target>
28
- <ItemGroup Label="ProjectConfigurations">
29
- <ProjectConfiguration Include="Debug|Win32">
30
- <Configuration>Debug</Configuration>
31
- <Platform>Win32</Platform>
32
- </ProjectConfiguration>
33
- <ProjectConfiguration Include="Debug|x64">
34
- <Configuration>Debug</Configuration>
35
- <Platform>x64</Platform>
36
- </ProjectConfiguration>
37
- <ProjectConfiguration Include="Release|Win32">
38
- <Configuration>Release</Configuration>
39
- <Platform>Win32</Platform>
40
- </ProjectConfiguration>
41
- <ProjectConfiguration Include="Release|x64">
42
- <Configuration>Release</Configuration>
43
- <Platform>x64</Platform>
44
- </ProjectConfiguration>
45
- </ItemGroup>
46
- <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
47
- <PropertyGroup Label="Globals">
48
- <ProjectGuid>{E4030474-AFC9-4CC6-BEB6-D846F631502B}</ProjectGuid>
49
- <Keyword>Win32Proj</Keyword>
50
- <RootNamespace>libsass</RootNamespace>
51
- </PropertyGroup>
52
- <PropertyGroup Label="Common Properties">
53
- <TargetName>libsass</TargetName>
54
- <CharacterSet>Unicode</CharacterSet>
55
- </PropertyGroup>
56
- <PropertyGroup Condition="$(LIBSASS_STATIC_LIB) == ''">
57
- <ConfigurationType>DynamicLibrary</ConfigurationType>
58
- <PreprocessorDefinitions>ADD_EXPORTS;$(PreprocessorDefinitions);</PreprocessorDefinitions>
59
- </PropertyGroup>
60
- <PropertyGroup Condition="$(LIBSASS_STATIC_LIB) != ''">
61
- <ConfigurationType>StaticLibrary</ConfigurationType>
62
- </PropertyGroup>
63
- <PropertyGroup Label="VS2013 toolset selection" Condition="'$(VisualStudioVersion)' == '12.0'">
64
- <PlatformToolset>v120</PlatformToolset>
65
- </PropertyGroup>
66
- <PropertyGroup Label="VS2015 toolset selection" Condition="'$(VisualStudioVersion)' == '14.0'">
67
- <PlatformToolset>v140</PlatformToolset>
68
- </PropertyGroup>
69
- <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
70
- <UseDebugLibraries>true</UseDebugLibraries>
71
- </PropertyGroup>
72
- <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
73
- <UseDebugLibraries>true</UseDebugLibraries>
74
- </PropertyGroup>
75
- <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
76
- <UseDebugLibraries>false</UseDebugLibraries>
77
- <WholeProgramOptimization>true</WholeProgramOptimization>
78
- </PropertyGroup>
79
- <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
80
- <UseDebugLibraries>false</UseDebugLibraries>
81
- <WholeProgramOptimization>true</WholeProgramOptimization>
82
- </PropertyGroup>
83
- <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
84
- <ImportGroup Label="ExtensionSettings">
85
- </ImportGroup>
86
- <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
87
- <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
88
- </ImportGroup>
89
- <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="PropertySheets">
90
- <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
91
- </ImportGroup>
92
- <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
93
- <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
94
- </ImportGroup>
95
- <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="PropertySheets">
96
- <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
97
- </ImportGroup>
98
- <PropertyGroup Label="UserMacros" />
99
- <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
100
- <LinkIncremental>true</LinkIncremental>
101
- <OutDir>$(SolutionDir)bin\Debug\</OutDir>
102
- <IntDir>$(SolutionDir)bin\Debug\obj\</IntDir>
103
- </PropertyGroup>
104
- <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
105
- <LinkIncremental>true</LinkIncremental>
106
- <OutDir>$(SolutionDir)bin\Debug\</OutDir>
107
- <IntDir>$(SolutionDir)bin\Debug\obj\</IntDir>
108
- </PropertyGroup>
109
- <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
110
- <LinkIncremental>false</LinkIncremental>
111
- <OutDir>$(SolutionDir)bin\</OutDir>
112
- <IntDir>$(SolutionDir)bin\obj\</IntDir>
113
- </PropertyGroup>
114
- <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
115
- <LinkIncremental>false</LinkIncremental>
116
- <OutDir>$(SolutionDir)bin\</OutDir>
117
- <IntDir>$(SolutionDir)bin\obj\</IntDir>
118
- </PropertyGroup>
119
- <ItemDefinitionGroup>
120
- <ClCompile>
121
- <AdditionalIncludeDirectories>..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
122
- </ClCompile>
123
- </ItemDefinitionGroup>
124
- <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
125
- <ClCompile>
126
- <PrecompiledHeader>
127
- </PrecompiledHeader>
128
- <WarningLevel>Level3</WarningLevel>
129
- <Optimization>Disabled</Optimization>
130
- <PreprocessorDefinitions>WIN32;_DEBUG;_CONSOLE;_LIB;$(PreprocessorDefinitions);</PreprocessorDefinitions>
131
- </ClCompile>
132
- <Link>
133
- <SubSystem>Console</SubSystem>
134
- <GenerateDebugInformation>true</GenerateDebugInformation>
135
- </Link>
136
- </ItemDefinitionGroup>
137
- <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
138
- <ClCompile>
139
- <PrecompiledHeader>
140
- </PrecompiledHeader>
141
- <WarningLevel>Level3</WarningLevel>
142
- <Optimization>Disabled</Optimization>
143
- <PreprocessorDefinitions>WIN32;_DEBUG;_CONSOLE;_LIB;$(PreprocessorDefinitions);</PreprocessorDefinitions>
144
- </ClCompile>
145
- <Link>
146
- <SubSystem>Console</SubSystem>
147
- <GenerateDebugInformation>true</GenerateDebugInformation>
148
- </Link>
149
- </ItemDefinitionGroup>
150
- <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
151
- <ClCompile>
152
- <WarningLevel>Level3</WarningLevel>
153
- <PrecompiledHeader>
154
- </PrecompiledHeader>
155
- <Optimization>MaxSpeed</Optimization>
156
- <FunctionLevelLinking>true</FunctionLevelLinking>
157
- <IntrinsicFunctions>true</IntrinsicFunctions>
158
- <PreprocessorDefinitions>WIN32;NDEBUG;_CONSOLE;_LIB;$(PreprocessorDefinitions);</PreprocessorDefinitions>
159
- </ClCompile>
160
- <Link>
161
- <SubSystem>Console</SubSystem>
162
- <GenerateDebugInformation>true</GenerateDebugInformation>
163
- <EnableCOMDATFolding>true</EnableCOMDATFolding>
164
- <OptimizeReferences>true</OptimizeReferences>
165
- </Link>
166
- </ItemDefinitionGroup>
167
- <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
168
- <ClCompile>
169
- <WarningLevel>Level3</WarningLevel>
170
- <PrecompiledHeader>
171
- </PrecompiledHeader>
172
- <Optimization>MaxSpeed</Optimization>
173
- <FunctionLevelLinking>true</FunctionLevelLinking>
174
- <IntrinsicFunctions>true</IntrinsicFunctions>
175
- <PreprocessorDefinitions>WIN32;NDEBUG;_CONSOLE;_LIB;$(PreprocessorDefinitions);</PreprocessorDefinitions>
176
- </ClCompile>
177
- <Link>
178
- <SubSystem>Console</SubSystem>
179
- <GenerateDebugInformation>true</GenerateDebugInformation>
180
- <EnableCOMDATFolding>true</EnableCOMDATFolding>
181
- <OptimizeReferences>true</OptimizeReferences>
182
- </Link>
183
- </ItemDefinitionGroup>
184
- <Import Project="libsass.targets" />
185
- <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
186
- <ImportGroup Label="ExtensionTargets">
187
- </ImportGroup>
188
- </Project>