Skip to content

Commit fcbc422

Browse files
committed
fix ci.yml
1 parent b990995 commit fcbc422

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

53 files changed

+3744
-4
lines changed

data-structures/doubly-linked-list/CMakeLists.txt data-structures/DoublyLinkedList/CMakeLists.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,10 @@ include_directories(include)
1818
set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/../bin)
1919

2020
# Add the test executable
21-
add_executable(test_doublylinkedlist __test__/test_DoublyLinkedList.cpp)
21+
add_executable(test_DoublyLinkedList __test__/test_DoublyLinkedList.cpp)
2222

2323
# Set compiler flags for the Debug build type
2424
set(CMAKE_CXX_FLAGS_DEBUG "-g -O0")
2525

2626
# Link the DoublyLinkedList library to the test executable
27-
target_link_libraries(test_doublylinkedlist)
27+
target_link_libraries(test_DoublyLinkedList)

data-structures/linked-list/CMakeLists.txt data-structures/LinkedList/CMakeLists.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ include_directories(include)
1515
set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/../bin)
1616

1717
# Add the test executable
18-
add_executable(test_linkedlist __test__/test_LinkedList.cpp)
18+
add_executable(test_LinkedList __test__/test_LinkedList.cpp)
1919

2020
# Link the LinkedList library to the test executable
21-
target_link_libraries(test_linkedlist)
21+
target_link_libraries(test_LinkedList)
File renamed without changes.
72.7 KB
Binary file not shown.
File renamed without changes.

0 commit comments

Comments
 (0)