From 0dad85646d1dc7e2c9099c9e8b7cba829ebf6efc Mon Sep 17 00:00:00 2001 From: Marcel Greter Date: Sat, 17 Mar 2018 00:55:09 +0100 Subject: [PATCH] Add functions utility compile unit --- Makefile.conf | 1 + src/fn_utils.cpp | 10 ++++++++++ src/fn_utils.hpp | 12 ++++++++++++ win/libsass.targets | 2 ++ win/libsass.vcxproj.filters | 6 ++++++ 5 files changed, 31 insertions(+) create mode 100644 src/fn_utils.cpp create mode 100644 src/fn_utils.hpp diff --git a/Makefile.conf b/Makefile.conf index 5ba968b68..161ee9767 100644 --- a/Makefile.conf +++ b/Makefile.conf @@ -10,6 +10,7 @@ SOURCES = \ node.cpp \ context.cpp \ constants.cpp \ + fn_utils.cpp \ functions.cpp \ color_maps.cpp \ environment.cpp \ diff --git a/src/fn_utils.cpp b/src/fn_utils.cpp new file mode 100644 index 000000000..e069240d1 --- /dev/null +++ b/src/fn_utils.cpp @@ -0,0 +1,10 @@ +#include "sass.hpp" +#include "fn_utils.hpp" + +namespace Sass { + + namespace Functions { + + } + +} diff --git a/src/fn_utils.hpp b/src/fn_utils.hpp new file mode 100644 index 000000000..8363240eb --- /dev/null +++ b/src/fn_utils.hpp @@ -0,0 +1,12 @@ +#ifndef SASS_FN_UTILS_H +#define SASS_FN_UTILS_H + +namespace Sass { + + namespace Functions { + + } + +} + +#endif diff --git a/win/libsass.targets b/win/libsass.targets index c1c7d45f3..8bf68df60 100644 --- a/win/libsass.targets +++ b/win/libsass.targets @@ -32,6 +32,7 @@ + @@ -86,6 +87,7 @@ + diff --git a/win/libsass.vcxproj.filters b/win/libsass.vcxproj.filters index 980f00f3f..1f301f769 100644 --- a/win/libsass.vcxproj.filters +++ b/win/libsass.vcxproj.filters @@ -108,6 +108,9 @@ Headers + + Headers + Headers @@ -269,6 +272,9 @@ Sources + + Sources + Sources