From 356fdefd9e1e711eb77bc60fdea31329933612bc Mon Sep 17 00:00:00 2001 From: redfieldcd Date: Thu, 19 Apr 2018 16:09:05 -0700 Subject: [PATCH] Fix bug for make test failure(#30) --- test/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt index b84f7c7..27f43c2 100644 --- a/test/CMakeLists.txt +++ b/test/CMakeLists.txt @@ -3,4 +3,4 @@ add_subdirectory(bf) enable_testing() add_executable(bf-test tests.cpp) target_link_libraries(bf-test libbf ${CMAKE_THREAD_LIBS_INIT}) -add_test(unit ${CMAKE_CURRENT_BINARY_DIR}/bf-test) +add_test(unit ${CMAKE_BINARY_DIR}/bin/bf-test)