Rename wsload compile target

This commit is contained in:
Vinnie Falco
2017-07-31 14:26:30 -07:00
parent 00f237bbf6
commit 3fb5d60db2
4 changed files with 4 additions and 3 deletions

View File

@ -3,6 +3,7 @@ Version 96:
* Move bench/ to test/ * Move bench/ to test/
* Move extras/ to test/ * Move extras/ to test/
* Use <valgrind> property * Use <valgrind> property
* Rename wsload compile target
-------------------------------------------------------------------------------- --------------------------------------------------------------------------------

View File

@ -17,5 +17,5 @@ add_executable (bench-wsload
${COMMON_INCLUDES} ${COMMON_INCLUDES}
${EXTRAS_INCLUDES} ${EXTRAS_INCLUDES}
Jamfile Jamfile
wsload_main.cpp wsload.cpp
) )

View File

@ -9,11 +9,11 @@
exe wsload : exe wsload :
$(TEST_MAIN) $(TEST_MAIN)
wsload_main.cpp wsload.cpp
; ;
explicit wsload ; explicit wsload ;
alias run-tests : alias run-tests :
[ compile wsload_main.cpp ] [ compile wsload.cpp : : wsload-compile ]
; ;