Rename project to http-bench

fix #285
This commit is contained in:
Vinnie Falco
2017-04-27 17:55:07 -07:00
parent 28a994e8cb
commit 52028b8da1
3 changed files with 5 additions and 4 deletions

View File

@ -2,6 +2,7 @@
* CMake hide command lines in .vcxproj Output windows" * CMake hide command lines in .vcxproj Output windows"
* Rename to detail::is_invocable * Rename to detail::is_invocable
* Rename project to http-bench
WebSocket: WebSocket:

View File

@ -65,7 +65,7 @@ unit-test http-tests :
http/chunk_encode.cpp http/chunk_encode.cpp
; ;
unit-test bench-tests : unit-test http-bench :
../extras/beast/unit_test/main.cpp ../extras/beast/unit_test/main.cpp
http/nodejs_parser.cpp http/nodejs_parser.cpp
http/parser_bench.cpp http/parser_bench.cpp

View File

@ -34,7 +34,7 @@ else()
target_link_libraries(http-tests ${Boost_LIBRARIES}) target_link_libraries(http-tests ${Boost_LIBRARIES})
endif() endif()
add_executable (bench-tests add_executable (http-bench
${BEAST_INCLUDES} ${BEAST_INCLUDES}
${EXTRAS_INCLUDES} ${EXTRAS_INCLUDES}
nodejs_parser.hpp nodejs_parser.hpp
@ -44,7 +44,7 @@ add_executable (bench-tests
) )
if (NOT WIN32) if (NOT WIN32)
target_link_libraries(bench-tests ${Boost_LIBRARIES} Threads::Threads) target_link_libraries(http-bench ${Boost_LIBRARIES} Threads::Threads)
else() else()
target_link_libraries(bench-tests ${Boost_LIBRARIES}) target_link_libraries(http-bench ${Boost_LIBRARIES})
endif() endif()