Skip to content

Commit b60e6ee

Browse files
committed
Solve minor bug in variable names for CMake script in cobol loader.
1 parent a9ed79e commit b60e6ee

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

source/loaders/cob_loader/CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ target_include_directories(${target}
146146
${CMAKE_CURRENT_SOURCE_DIR}/include
147147
${CMAKE_CURRENT_BINARY_DIR}/include
148148

149-
${COBOL_INCLUDE_DIRS} # Cobol includes
149+
${COBOL_INCLUDE_DIR} # Cobol includes
150150

151151
PUBLIC
152152
${DEFAULT_INCLUDE_DIRECTORIES}
@@ -164,7 +164,7 @@ target_include_directories(${target}
164164
target_link_libraries(${target}
165165
PRIVATE
166166

167-
${COBOL_LIBRARIES} # Cobol libraries
167+
${COBOL_LIBRARY} # Cobol libraries
168168

169169
PUBLIC
170170
${DEFAULT_LIBRARIES}

0 commit comments

Comments
 (0)