Skip to content

Commit

Permalink
Add functions utility compile unit
Browse files Browse the repository at this point in the history
  • Loading branch information
mgreter committed Mar 17, 2018
1 parent 9cfe0df commit 0dad856
Show file tree
Hide file tree
Showing 5 changed files with 31 additions and 0 deletions.
1 change: 1 addition & 0 deletions Makefile.conf
Expand Up @@ -10,6 +10,7 @@ SOURCES = \
node.cpp \
context.cpp \
constants.cpp \
fn_utils.cpp \
functions.cpp \
color_maps.cpp \
environment.cpp \
Expand Down
10 changes: 10 additions & 0 deletions src/fn_utils.cpp
@@ -0,0 +1,10 @@
#include "sass.hpp"
#include "fn_utils.hpp"

namespace Sass {

namespace Functions {

}

}
12 changes: 12 additions & 0 deletions src/fn_utils.hpp
@@ -0,0 +1,12 @@
#ifndef SASS_FN_UTILS_H
#define SASS_FN_UTILS_H

namespace Sass {

namespace Functions {

}

}

#endif
2 changes: 2 additions & 0 deletions win/libsass.targets
Expand Up @@ -32,6 +32,7 @@
<ClInclude Include="$(LIBSASS_HEADERS_DIR)\expand.hpp" />
<ClInclude Include="$(LIBSASS_HEADERS_DIR)\extend.hpp" />
<ClInclude Include="$(LIBSASS_HEADERS_DIR)\file.hpp" />
<ClInclude Include="$(LIBSASS_HEADERS_DIR)\fn_utils.hpp" />
<ClInclude Include="$(LIBSASS_HEADERS_DIR)\functions.hpp" />
<ClInclude Include="$(LIBSASS_HEADERS_DIR)\inspect.hpp" />
<ClInclude Include="$(LIBSASS_HEADERS_DIR)\json.hpp" />
Expand Down Expand Up @@ -86,6 +87,7 @@
<ClCompile Include="$(LIBSASS_SRC_DIR)\expand.cpp" />
<ClCompile Include="$(LIBSASS_SRC_DIR)\extend.cpp" />
<ClCompile Include="$(LIBSASS_SRC_DIR)\file.cpp" />
<ClCompile Include="$(LIBSASS_SRC_DIR)\fn_utils.cpp" />
<ClCompile Include="$(LIBSASS_SRC_DIR)\functions.cpp" />
<ClCompile Include="$(LIBSASS_SRC_DIR)\inspect.cpp" />
<ClCompile Include="$(LIBSASS_SRC_DIR)\json.cpp" />
Expand Down
6 changes: 6 additions & 0 deletions win/libsass.vcxproj.filters
Expand Up @@ -108,6 +108,9 @@
<ClInclude Include="$(LIBSASS_HEADERS_DIR)\file.hpp">
<Filter>Headers</Filter>
</ClInclude>
<ClInclude Include="$(LIBSASS_HEADERS_DIR)\fn_utils.hpp">
<Filter>Headers</Filter>
</ClInclude>
<ClInclude Include="$(LIBSASS_HEADERS_DIR)\functions.hpp">
<Filter>Headers</Filter>
</ClInclude>
Expand Down Expand Up @@ -269,6 +272,9 @@
<ClCompile Include="$(LIBSASS_SRC_DIR)\file.cpp">
<Filter>Sources</Filter>
</ClCompile>
<ClCompile Include="$(LIBSASS_SRC_DIR)\fn_utils.cpp">
<Filter>Sources</Filter>
</ClCompile>
<ClCompile Include="$(LIBSASS_SRC_DIR)\functions.cpp">
<Filter>Sources</Filter>
</ClCompile>
Expand Down

0 comments on commit 0dad856

Please sign in to comment.