From b9e1e7d31b9017c3eb03e4c9ae2f501b69f20722 Mon Sep 17 00:00:00 2001 From: Yuichi Nishiwaki Date: Sun, 22 Jun 2014 20:32:34 +0900 Subject: [PATCH] add 'make test' target --- CMakeLists.txt | 3 +++ 1 file changed, 3 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22cc4f9d..bba9bd1d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -39,6 +39,9 @@ include(tools/CMakeLists.txt) # $ make run add_custom_target(run bin/picrin DEPENDS repl) +# $ make test +add_custom_target(test DEPENDS no-act) + # $ make no-act add_custom_target(no-act bin/picrin -e '' > /dev/null DEPENDS repl)