Skip to content

Commit

Permalink
move to 3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
darrenkopp committed Oct 18, 2014
1 parent 94abbd7 commit 98f4f04
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 11 deletions.
26 changes: 17 additions & 9 deletions libsass/LibSass.vcxproj
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Project DefaultTargets="Build" ToolsVersion="12.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ItemGroup Label="ProjectConfigurations">
<ProjectConfiguration Include="Debug|Win32">
<Configuration>Debug</Configuration>
Expand Down Expand Up @@ -28,26 +28,29 @@
<ClCompile Include="native\context.cpp" />
<ClCompile Include="native\contextualize.cpp" />
<ClCompile Include="native\copy_c_str.cpp" />
<ClCompile Include="native\emscripten_wrapper.cpp" />
<ClCompile Include="native\error_handling.cpp" />
<ClCompile Include="native\eval.cpp" />
<ClCompile Include="native\expand.cpp" />
<ClCompile Include="native\extend.cpp" />
<ClCompile Include="native\file.cpp" />
<ClCompile Include="native\functions.cpp" />
<ClCompile Include="native\inspect.cpp" />
<ClCompile Include="native\node.cpp" />
<ClCompile Include="native\output_compressed.cpp" />
<ClCompile Include="native\output_nested.cpp" />
<ClCompile Include="native\parser.cpp" />
<ClCompile Include="native\prelexer.cpp" />
<ClCompile Include="native\remove_placeholders.cpp" />
<ClCompile Include="native\sass.cpp" />
<ClCompile Include="native\sass2scss\sass2scss.cpp" />
<ClCompile Include="native\sass2scss.cpp" />
<ClCompile Include="native\sass_interface.cpp" />
<ClCompile Include="native\sass_util.cpp" />
<ClCompile Include="native\source_map.cpp" />
<ClCompile Include="native\to_c.cpp" />
<ClCompile Include="native\to_string.cpp" />
<ClCompile Include="native\units.cpp" />
<ClCompile Include="native\utf8_string.cpp" />
<ClCompile Include="native\util.cpp" />
<ClCompile Include="SassInterface.cpp" />
<ClCompile Include="StringToANSI.cpp" />
</ItemGroup>
Expand All @@ -67,7 +70,6 @@
<ClInclude Include="native\context.hpp" />
<ClInclude Include="native\contextualize.hpp" />
<ClInclude Include="native\copy_c_str.hpp" />
<ClInclude Include="native\emscripten_wrapper.hpp" />
<ClInclude Include="native\environment.hpp" />
<ClInclude Include="native\error_handling.hpp" />
<ClInclude Include="native\eval.hpp" />
Expand All @@ -79,23 +81,28 @@
<ClInclude Include="native\kwd_arg_macros.hpp" />
<ClInclude Include="native\mapping.hpp" />
<ClInclude Include="native\memory_manager.hpp" />
<ClInclude Include="native\node.hpp" />
<ClInclude Include="native\operation.hpp" />
<ClInclude Include="native\output_compressed.hpp" />
<ClInclude Include="native\output_nested.hpp" />
<ClInclude Include="native\parser.hpp" />
<ClInclude Include="native\paths.hpp" />
<ClInclude Include="native\position.hpp" />
<ClInclude Include="native\prelexer.hpp" />
<ClInclude Include="native\remove_placeholders.hpp" />
<ClInclude Include="native\sass.h" />
<ClInclude Include="native\sass2scss\sass2scss.h" />
<ClInclude Include="native\sass2scss.h" />
<ClInclude Include="native\sass_interface.h" />
<ClInclude Include="native\sass_util.hpp" />
<ClInclude Include="native\source_map.hpp" />
<ClInclude Include="native\subset_map.hpp" />
<ClInclude Include="native\token.hpp" />
<ClInclude Include="native\to_c.hpp" />
<ClInclude Include="native\to_string.hpp" />
<ClInclude Include="native\units.hpp" />
<ClInclude Include="native\utf8.h" />
<ClInclude Include="native\utf8_string.hpp" />
<ClInclude Include="native\util.hpp" />
<ClInclude Include="SassInterface.hpp" />
<ClInclude Include="SassOptions.hpp" />
<ClInclude Include="StringToANSI.hpp" />
Expand All @@ -109,28 +116,29 @@
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
<ConfigurationType>DynamicLibrary</ConfigurationType>
<UseDebugLibraries>true</UseDebugLibraries>
<PlatformToolset>v110</PlatformToolset>
<PlatformToolset>v120</PlatformToolset>
<CharacterSet>NotSet</CharacterSet>
<CLRSupport>true</CLRSupport>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
<ConfigurationType>DynamicLibrary</ConfigurationType>
<UseDebugLibraries>true</UseDebugLibraries>
<PlatformToolset>v110</PlatformToolset>
<PlatformToolset>v120</PlatformToolset>
<CharacterSet>Unicode</CharacterSet>
<CLRSupport>true</CLRSupport>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
<ConfigurationType>DynamicLibrary</ConfigurationType>
<UseDebugLibraries>false</UseDebugLibraries>
<PlatformToolset>v110</PlatformToolset>
<PlatformToolset>v120</PlatformToolset>
<WholeProgramOptimization>true</WholeProgramOptimization>
<CharacterSet>NotSet</CharacterSet>
<CLRSupport>true</CLRSupport>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
<ConfigurationType>DynamicLibrary</ConfigurationType>
<UseDebugLibraries>false</UseDebugLibraries>
<PlatformToolset>v110</PlatformToolset>
<PlatformToolset>v120</PlatformToolset>
<WholeProgramOptimization>true</WholeProgramOptimization>
<CharacterSet>Unicode</CharacterSet>
<CLRSupport>true</CLRSupport>
Expand Down
2 changes: 1 addition & 1 deletion libsass/SassInterface.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ namespace LibSassNet
ctx -> options.source_comments = sassFileContext -> Options -> SourceCommentsMode;
ctx -> options.include_paths = MarshalString(sassFileContext -> Options -> IncludePaths);
ctx -> options.image_path = MarshalString(sassFileContext -> Options -> ImagePath);
ctx -> source_map_file = MarshalString(sassFileContext -> OutputSourceMapFile);
ctx -> options.source_map_file = MarshalString(sassFileContext -> OutputSourceMapFile);
ctx -> options.precision = sassFileContext -> Options -> Precision;
}

Expand Down
2 changes: 1 addition & 1 deletion libsass/native

0 comments on commit 98f4f04

Please sign in to comment.