diff --git a/Makefile b/Makefile index 3e0291b..19b10ae 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -.PHONY: build +.PHONY: build docs bench: build ./build/merle_benchmarks @@ -18,3 +18,6 @@ clean: sync: git submodule update --init --recursive --jobs 8 + +docs: + mkdocs serve diff --git a/README.md b/README.md index 056c4e4..a84092c 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,6 @@ Merle ===== -A SIMD image manipulation library. +A SIMD image manipulation library. For all the documentation visit https://merle.chinmaygarde.com/ + +![Merle Demo](assets/demo.png) diff --git a/assets/demo.png b/assets/demo.png new file mode 100644 index 0000000..5e998f5 Binary files /dev/null and b/assets/demo.png differ diff --git a/merle.sublime-project b/merle.sublime-project index 4d04e53..1a79fbe 100644 --- a/merle.sublime-project +++ b/merle.sublime-project @@ -2,7 +2,7 @@ "build_systems": [ { "name": "Merle Build All", - "shell_cmd": "ninja && ./merle_benchmarks", + "shell_cmd": "ninja && ./merle_tests --gtest_filter=\"*\"", "working_dir": "${project_path}/build", "file_regex": "(.*):(\\d+):(\\d+)(.*)", "shell": true,