Skip to content

Commit

Permalink
Re-fix_test
Browse files Browse the repository at this point in the history
  • Loading branch information
Hussien-Abdo committed Jan 28, 2021
1 parent a616e54 commit 2a0f24f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@
/cmake-build-debug/
/doc/doxygen/
/benchmarks/
/cmake-build-release/
9 changes: 5 additions & 4 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,11 @@ set(TEST_NAME ${PROJECT_NAME}_tests)
add_executable(${TEST_NAME} src/test/Tests.cpp)
target_link_libraries(${TEST_NAME} gtest_main)

set(TEST_NAME ${PROJECT_NAME}_reachability)
add_executable(${TEST_NAME} src/reachable/Tests.h)
target_link_libraries(${TEST_NAME} gtest_main)
set(TEST_Reachability ${PROJECT_NAME}_reachability)
add_executable(${TEST_Reachability} src/reachable/Tests.h)
target_link_libraries(${TEST_Reachability} gtest_main)

enable_testing()
include(GoogleTest)
gtest_discover_tests(${TEST_NAME})
gtest_discover_tests(${TEST_NAME})
gtest_discover_tests(${TEST_Reachability})

0 comments on commit 2a0f24f

Please sign in to comment.