From 7870e88f0653e6ac93c1f2e123aa9826778be376 Mon Sep 17 00:00:00 2001 From: "Rafael G. Martins" Date: Mon, 25 Feb 2019 22:43:51 +0100 Subject: make: implemented optional sass support using libsass pending: - tests for sass support - build tests on ci with and without libsass - documentation - support sass options in blogcfile --- src/blogc-make/main.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'src/blogc-make/main.c') diff --git a/src/blogc-make/main.c b/src/blogc-make/main.c index 5b4a030..f18b9df 100644 --- a/src/blogc-make/main.c +++ b/src/blogc-make/main.c @@ -75,7 +75,11 @@ main(int argc, char **argv) print_help(); goto cleanup; case 'v': - printf("%s\n", PACKAGE_STRING); + printf(PACKAGE_STRING +#ifdef USE_LIBSASS + "+libsass" +#endif + "\n"); goto cleanup; case 'D': dev = true; -- cgit v1.2.3-18-g5258