Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ Dependencies

* Qt >5.15
* CMake 3.8
* Catch2
* Catch2 (you might need to add `Catch2_DIR` to the system variable, pointing to the folder containing `Catch2Config.cmake`)


Current State (v3)
Expand Down
2 changes: 1 addition & 1 deletion external/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
if(BUILD_TESTING)
find_package(Catch2 QUIET)
find_package(Catch2 2.13.7 QUIET)

if(NOT Catch2_FOUND)
add_subdirectory(Catch2)
Expand Down
2 changes: 2 additions & 0 deletions test/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ else()
find_package(Qt5 COMPONENTS Test)
endif()

find_package(Catch2)

add_executable(test_nodes
test_main.cpp
src/TestAbstractGraphModel.cpp
Expand Down
Loading