Skip to content

Commit 35f0fc2

Browse files
committed
Change clBLAS/FFT external projects to clBLAS/FFT-ext
1 parent fda0a80 commit 35f0fc2

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

CMakeModules/build_clBLAS.cmake

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ ELSE()
1212
ENDIF()
1313

1414
ExternalProject_Add(
15-
clBLAS-external
15+
clBLAS-ext
1616
GIT_REPOSITORY https://github.com/arrayfire/clBLAS.git
1717
GIT_TAG 102c832825e8e4d60ad73ca97e95668463294068
1818
PREFIX "${prefix}"
@@ -33,10 +33,10 @@ ExternalProject_Add(
3333
${byproducts}
3434
)
3535

36-
ExternalProject_Get_Property(clBLAS-external install_dir)
36+
ExternalProject_Get_Property(clBLAS-ext install_dir)
3737
ADD_LIBRARY(clBLAS IMPORTED STATIC)
3838
SET_TARGET_PROPERTIES(clBLAS PROPERTIES IMPORTED_LOCATION ${clBLAS_location})
39-
ADD_DEPENDENCIES(clBLAS clBLAS-external)
39+
ADD_DEPENDENCIES(clBLAS clBLAS-ext)
4040
SET(CLBLAS_INCLUDE_DIRS ${install_dir}/include)
4141
SET(CLBLAS_LIBRARIES clBLAS)
4242
SET(CLBLAS_FOUND ON)

CMakeModules/build_clFFT.cmake

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ ELSE()
1212
ENDIF()
1313

1414
ExternalProject_Add(
15-
clFFT-external
15+
clFFT-ext
1616
GIT_REPOSITORY https://github.com/arrayfire/clFFT.git
1717
GIT_TAG 1597f0f35a644789c7ad77efe79014236cca2fab
1818
PREFIX "${prefix}"
@@ -34,10 +34,10 @@ ExternalProject_Add(
3434
${byproducts}
3535
)
3636

37-
ExternalProject_Get_Property(clFFT-external install_dir)
37+
ExternalProject_Get_Property(clFFT-ext install_dir)
3838
ADD_LIBRARY(clFFT IMPORTED STATIC)
3939
SET_TARGET_PROPERTIES(clFFT PROPERTIES IMPORTED_LOCATION ${clFFT_location})
40-
ADD_DEPENDENCIES(clFFT clFFT-external)
40+
ADD_DEPENDENCIES(clFFT clFFT-ext)
4141
SET(CLFFT_INCLUDE_DIRS ${install_dir}/include)
4242
SET(CLFFT_LIBRARIES clFFT)
4343
SET(CLFFT_FOUND ON)

0 commit comments

Comments
 (0)