Skip to content

Commit 9bcb0cb

Browse files
committed
Fix ep3 cmakelist to point to correct test dir
1 parent 6ca3d0b commit 9bcb0cb

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

episodes/3-fortran-unit-test-syntax/challenge/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,4 @@ file(GLOB PROJ_SRC_FILES "${PROJECT_SOURCE_DIR}/src/*.f90")
1414
# Build src executables
1515
add_executable("${PROJECT_NAME}" "${PROJ_SRC_FILES}")
1616

17-
add_subdirectory("test/pfunit")
17+
add_subdirectory("test")

episodes/3-fortran-unit-test-syntax/solution/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,4 @@ file(GLOB PROJ_SRC_FILES "${PROJECT_SOURCE_DIR}/src/*.f90")
1414
# Build src executables
1515
add_executable("${PROJECT_NAME}" "${PROJ_SRC_FILES}")
1616

17-
add_subdirectory("test/pfunit")
17+
add_subdirectory("test")

0 commit comments

Comments
 (0)