diff options
author | Rafael G. Martins <rafael@rafaelmartins.eng.br> | 2019-02-25 22:43:51 +0100 |
---|---|---|
committer | Rafael G. Martins <rafael@rafaelmartins.eng.br> | 2020-01-12 12:37:11 +0100 |
commit | 7870e88f0653e6ac93c1f2e123aa9826778be376 (patch) | |
tree | 98d9c0840bf809ab5be36539680d0997762f3bb4 /src/blogc-make/main.c | |
parent | a45e7255cb89d76c4836e1cac073c2f941529e70 (diff) | |
download | blogc-7870e88f0653e6ac93c1f2e123aa9826778be376.tar.gz blogc-7870e88f0653e6ac93c1f2e123aa9826778be376.tar.bz2 blogc-7870e88f0653e6ac93c1f2e123aa9826778be376.zip |
make: implemented optional sass support using libsassfeature/sass
pending:
- tests for sass support
- build tests on ci with and without libsass
- documentation
- support sass options in blogcfile
Diffstat (limited to 'src/blogc-make/main.c')
-rw-r--r-- | src/blogc-make/main.c | 6 |
1 files changed, 5 insertions, 1 deletions
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; |