Skip to content

Commit da11f09

Browse files
authored
Fix CBLAS/src/CMakeLists.txt
remove spurious ../ from target_include_directories path
1 parent def1271 commit da11f09

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

CBLAS/src/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ if(HAS_ATTRIBUTE_WEAK_SUPPORT)
124124
target_compile_definitions(${CBLASLIB} PRIVATE HAS_ATTRIBUTE_WEAK_SUPPORT)
125125
endif()
126126
target_include_directories(${CBLASLIB} PUBLIC
127-
$<BUILD_INTERFACE:${LAPACK_BINARY_DIR}/../include>
127+
$<BUILD_INTERFACE:${LAPACK_BINARY_DIR}/include>
128128
$<INSTALL_INTERFACE:include>
129129
)
130130
target_link_libraries(${CBLASLIB} PRIVATE ${BLAS_LIBRARIES})

0 commit comments

Comments
 (0)