Skip to content

Commit b1e0d47

Browse files
committed
STYLE: Convert CMake-language commands to lower case
Ancient CMake versions required upper-case commands. Later command names became case-insensitive. Now the preferred style is lower-case. Run the following shell code: NOTE: MUST USE GNU compliant version of sed cmake --help-command-list \ | grep -v "cmake version" \ | while read c; do echo 's/\b'"$(echo $c | tr '[:lower:]' '[:upper:]')"'\(\s*\)(/'"$c"'\1(/g' done >convert.sed \ && git ls-files -z -- bootstrap '*.cmake' '*.cmake.in' '*CMakeLists.txt' \ | xargs -0 gsed -i -f convert.sed \ && rm convert.sed
1 parent 28f0a3f commit b1e0d47

12 files changed

+94
-94
lines changed

CBLAS/CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ endforeach()
2828
endmacro()
2929

3030
append_subdir_files(CBLAS_INCLUDE "include")
31-
INSTALL( FILES ${CBLAS_INCLUDE} ${LAPACK_BINARY_DIR}/include/cblas_mangling.h DESTINATION include )
31+
install( FILES ${CBLAS_INCLUDE} ${LAPACK_BINARY_DIR}/include/cblas_mangling.h DESTINATION include )
3232

3333
# --------------------------------------------------
3434
if(BUILD_TESTING)

CBLAS/include/CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
SET (CBLAS_INCLUDE cblas.h cblas_f77.h cblas_test.h )
1+
set (CBLAS_INCLUDE cblas.h cblas_f77.h cblas_test.h )
22

33
file(COPY ${CBLAS_INCLUDE} DESTINATION ${LAPACK_BINARY_DIR}/include)

CBLAS/testing/CMakeLists.txt

+13-13
Original file line numberDiff line numberDiff line change
@@ -26,26 +26,26 @@ endmacro(add_cblas_test)
2626

2727

2828
# Object files for single real precision
29-
SET( STESTL1O c_sblas1.c)
29+
set( STESTL1O c_sblas1.c)
3030

31-
SET( STESTL2O c_sblas2.c c_s2chke.c auxiliary.c c_xerbla.c)
32-
SET( STESTL2O c_sblas2.c c_s2chke.c auxiliary.c c_xerbla.c)
33-
SET( STESTL3O c_sblas3.c c_s3chke.c auxiliary.c c_xerbla.c)
31+
set( STESTL2O c_sblas2.c c_s2chke.c auxiliary.c c_xerbla.c)
32+
set( STESTL2O c_sblas2.c c_s2chke.c auxiliary.c c_xerbla.c)
33+
set( STESTL3O c_sblas3.c c_s3chke.c auxiliary.c c_xerbla.c)
3434

3535
# Object files for double real precision
36-
SET( DTESTL1O c_dblas1.c)
37-
SET( DTESTL2O c_dblas2.c c_d2chke.c auxiliary.c c_xerbla.c)
38-
SET( DTESTL3O c_dblas3.c c_d3chke.c auxiliary.c c_xerbla.c)
36+
set( DTESTL1O c_dblas1.c)
37+
set( DTESTL2O c_dblas2.c c_d2chke.c auxiliary.c c_xerbla.c)
38+
set( DTESTL3O c_dblas3.c c_d3chke.c auxiliary.c c_xerbla.c)
3939

4040
# Object files for single complex precision
41-
SET( CTESTL1O c_cblat1.f c_cblas1.c)
42-
SET( CTESTL2O c_cblas2.c c_c2chke.c auxiliary.c c_xerbla.c)
43-
SET( CTESTL3O c_cblas3.c c_c3chke.c auxiliary.c c_xerbla.c)
41+
set( CTESTL1O c_cblat1.f c_cblas1.c)
42+
set( CTESTL2O c_cblas2.c c_c2chke.c auxiliary.c c_xerbla.c)
43+
set( CTESTL3O c_cblas3.c c_c3chke.c auxiliary.c c_xerbla.c)
4444

4545
# Object files for double complex precision
46-
SET( ZTESTL1O c_zblas1.c)
47-
SET( ZTESTL2O c_zblas2.c c_z2chke.c auxiliary.c c_xerbla.c)
48-
SET( ZTESTL3O c_zblas3.c c_z3chke.c auxiliary.c c_xerbla.c)
46+
set( ZTESTL1O c_zblas1.c)
47+
set( ZTESTL2O c_zblas2.c c_z2chke.c auxiliary.c c_xerbla.c)
48+
set( ZTESTL3O c_zblas3.c c_z3chke.c auxiliary.c c_xerbla.c)
4949

5050

5151

CMAKE/FortranMangling.cmake

+33-33
Original file line numberDiff line numberDiff line change
@@ -10,37 +10,37 @@
1010
# UpCase
1111
#
1212
macro(FORTRAN_MANGLING CDEFS)
13-
MESSAGE(STATUS "=========")
14-
GET_FILENAME_COMPONENT(F77_NAME ${CMAKE_Fortran_COMPILER} NAME)
15-
GET_FILENAME_COMPONENT(F77_PATH ${CMAKE_Fortran_COMPILER} PATH)
16-
SET(F77 ${F77_NAME} CACHE INTERNAL "Name of the fortran compiler.")
13+
message(STATUS "=========")
14+
get_filename_component(F77_NAME ${CMAKE_Fortran_COMPILER} NAME)
15+
get_filename_component(F77_PATH ${CMAKE_Fortran_COMPILER} PATH)
16+
set(F77 ${F77_NAME} CACHE INTERNAL "Name of the fortran compiler.")
1717

18-
IF(${F77} STREQUAL "ifort.exe")
18+
if(${F77} STREQUAL "ifort.exe")
1919
#settings for Intel Fortran
20-
SET(F77_OPTION_COMPILE "/c" CACHE INTERNAL
20+
set(F77_OPTION_COMPILE "/c" CACHE INTERNAL
2121
"Fortran compiler option for compiling without linking.")
22-
SET(F77_OUTPUT_OBJ "/Fo" CACHE INTERNAL
22+
set(F77_OUTPUT_OBJ "/Fo" CACHE INTERNAL
2323
"Fortran compiler option for setting object file name.")
24-
SET(F77_OUTPUT_EXE "/Fe" CACHE INTERNAL
24+
set(F77_OUTPUT_EXE "/Fe" CACHE INTERNAL
2525
"Fortran compiler option for setting executable file name.")
26-
ELSE(${F77} STREQUAL "ifort.exe")
26+
else(${F77} STREQUAL "ifort.exe")
2727
# in other case, let user specify their fortran configrations.
28-
SET(F77_OPTION_COMPILE "-c" CACHE STRING
28+
set(F77_OPTION_COMPILE "-c" CACHE STRING
2929
"Fortran compiler option for compiling without linking.")
30-
SET(F77_OUTPUT_OBJ "-o" CACHE STRING
30+
set(F77_OUTPUT_OBJ "-o" CACHE STRING
3131
"Fortran compiler option for setting object file name.")
32-
SET(F77_OUTPUT_EXE "-o" CACHE STRING
32+
set(F77_OUTPUT_EXE "-o" CACHE STRING
3333
"Fortran compiler option for setting executable file name.")
34-
SET(F77_LIB_PATH "" CACHE PATH
34+
set(F77_LIB_PATH "" CACHE PATH
3535
"Library path for the fortran compiler")
36-
SET(F77_INCLUDE_PATH "" CACHE PATH
36+
set(F77_INCLUDE_PATH "" CACHE PATH
3737
"Include path for the fortran compiler")
38-
ENDIF(${F77} STREQUAL "ifort.exe")
38+
endif(${F77} STREQUAL "ifort.exe")
3939

4040

41-
MESSAGE(STATUS "Testing FORTRAN_MANGLING")
41+
message(STATUS "Testing FORTRAN_MANGLING")
4242

43-
MESSAGE(STATUS "Compiling Finface.f...")
43+
message(STATUS "Compiling Finface.f...")
4444

4545
execute_process ( COMMAND ${CMAKE_Fortran_COMPILER} ${F77_OPTION_COMPILE} ${PROJECT_SOURCE_DIR}/lapacke/mangling/Fintface.f
4646
WORKING_DIRECTORY ${CMAKE_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/CMakeTmp
@@ -49,13 +49,13 @@ MESSAGE(STATUS "Compiling Finface.f...")
4949
ERROR_VARIABLE ERROR)
5050

5151
if(RESULT EQUAL 0)
52-
MESSAGE(STATUS "Compiling Finface.f successful")
52+
message(STATUS "Compiling Finface.f successful")
5353
else()
54-
MESSAGE(FATAL_ERROR " Compiling Finface.f FAILED")
55-
MESSAGE(FATAL_ERROR " Error:\n ${ERROR}")
54+
message(FATAL_ERROR " Compiling Finface.f FAILED")
55+
message(FATAL_ERROR " Error:\n ${ERROR}")
5656
endif()
5757

58-
MESSAGE(STATUS "Compiling Cintface.c...")
58+
message(STATUS "Compiling Cintface.c...")
5959

6060
execute_process ( COMMAND ${CMAKE_C_COMPILER} ${F77_OPTION_COMPILE} ${PROJECT_SOURCE_DIR}/lapacke/mangling/Cintface.c
6161
WORKING_DIRECTORY ${CMAKE_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/CMakeTmp
@@ -64,13 +64,13 @@ MESSAGE(STATUS "Compiling Cintface.c...")
6464
ERROR_VARIABLE ERROR)
6565

6666
if(RESULT EQUAL 0)
67-
MESSAGE(STATUS "Compiling Cintface.c successful")
67+
message(STATUS "Compiling Cintface.c successful")
6868
else()
69-
MESSAGE(FATAL_ERROR " Compiling Cintface.c FAILED")
70-
MESSAGE(FATAL_ERROR " Error:\n ${ERROR}")
69+
message(FATAL_ERROR " Compiling Cintface.c FAILED")
70+
message(FATAL_ERROR " Error:\n ${ERROR}")
7171
endif()
7272

73-
MESSAGE(STATUS "Linking Finface.f and Cintface.c...")
73+
message(STATUS "Linking Finface.f and Cintface.c...")
7474

7575
execute_process ( COMMAND ${CMAKE_Fortran_COMPILER} ${F77_OUTPUT_OBJ} xintface.exe Fintface.o Cintface.o
7676
WORKING_DIRECTORY ${CMAKE_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/CMakeTmp
@@ -79,13 +79,13 @@ MESSAGE(STATUS "Linking Finface.f and Cintface.c...")
7979
ERROR_VARIABLE ERROR)
8080

8181
if(RESULT EQUAL 0)
82-
MESSAGE(STATUS "Linking Finface.f and Cintface.c successful")
82+
message(STATUS "Linking Finface.f and Cintface.c successful")
8383
else()
84-
MESSAGE(FATAL_ERROR " Linking Finface.f and Cintface.c FAILED")
85-
MESSAGE(FATAL_ERROR " Error:\n ${ERROR}")
84+
message(FATAL_ERROR " Linking Finface.f and Cintface.c FAILED")
85+
message(FATAL_ERROR " Error:\n ${ERROR}")
8686
endif()
8787

88-
MESSAGE(STATUS "Running ./xintface...")
88+
message(STATUS "Running ./xintface...")
8989

9090
execute_process ( COMMAND ./xintface.exe
9191
WORKING_DIRECTORY ${CMAKE_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/CMakeTmp
@@ -95,11 +95,11 @@ MESSAGE(STATUS "Running ./xintface...")
9595

9696

9797
if (xintface_RES EQUAL 0)
98-
STRING(REPLACE "\n" "" xintface_OUT "${xintface_OUT}")
99-
MESSAGE(STATUS "Fortran MANGLING convention: ${xintface_OUT}")
100-
SET(CDEFS ${xintface_OUT})
98+
string(REPLACE "\n" "" xintface_OUT "${xintface_OUT}")
99+
message(STATUS "Fortran MANGLING convention: ${xintface_OUT}")
100+
set(CDEFS ${xintface_OUT})
101101
else()
102-
MESSAGE(FATAL_ERROR "FORTRAN_MANGLING:ERROR ${xintface_ERR}")
102+
message(FATAL_ERROR "FORTRAN_MANGLING:ERROR ${xintface_ERR}")
103103
endif()
104104

105105
endmacro(FORTRAN_MANGLING)

CMakeLists.txt

+21-21
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ if (UNIX)
4343
endif ()
4444
# Delete libmtsk in linking sequence for Sun/Oracle Fortran Compiler.
4545
# This library is not present in the Sun package SolarisStudio12.3-linux-x86-bin
46-
STRING(REPLACE \;mtsk\; \; CMAKE_Fortran_IMPLICIT_LINK_LIBRARIES "${CMAKE_Fortran_IMPLICIT_LINK_LIBRARIES}")
46+
string(REPLACE \;mtsk\; \; CMAKE_Fortran_IMPLICIT_LINK_LIBRARIES "${CMAKE_Fortran_IMPLICIT_LINK_LIBRARIES}")
4747
endif ()
4848

4949
if ( CMAKE_Fortran_COMPILER_ID STREQUAL "Compaq" )
@@ -279,37 +279,37 @@ endif(LAPACKE)
279279
# --------------------------------------------------
280280
# CPACK Packaging
281281

282-
SET(CPACK_PACKAGE_NAME "LAPACK")
283-
SET(CPACK_PACKAGE_VENDOR "University of Tennessee, Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd")
284-
SET(CPACK_PACKAGE_DESCRIPTION_SUMMARY "LAPACK- Linear Algebra Package")
282+
set(CPACK_PACKAGE_NAME "LAPACK")
283+
set(CPACK_PACKAGE_VENDOR "University of Tennessee, Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd")
284+
set(CPACK_PACKAGE_DESCRIPTION_SUMMARY "LAPACK- Linear Algebra Package")
285285
set(CPACK_PACKAGE_VERSION_MAJOR 3)
286286
set(CPACK_PACKAGE_VERSION_MINOR 5)
287287
set(CPACK_PACKAGE_VERSION_PATCH 0)
288288
set(CPACK_RESOURCE_FILE_LICENSE "${CMAKE_CURRENT_SOURCE_DIR}/LICENSE")
289-
SET(CPACK_PACKAGE_INSTALL_DIRECTORY "LAPACK")
290-
IF(WIN32 AND NOT UNIX)
289+
set(CPACK_PACKAGE_INSTALL_DIRECTORY "LAPACK")
290+
if(WIN32 AND NOT UNIX)
291291
# There is a bug in NSI that does not handle full unix paths properly. Make
292292
# sure there is at least one set of four (4) backlasshes.
293-
SET(CPACK_NSIS_HELP_LINK "http:\\\\\\\\http://icl.cs.utk.edu/lapack-forum")
294-
SET(CPACK_NSIS_URL_INFO_ABOUT "http:\\\\\\\\www.netlib.org/lapack")
295-
SET(CPACK_NSIS_CONTACT "[email protected]")
296-
SET(CPACK_NSIS_MODIFY_PATH ON)
297-
SET(CPACK_NSIS_DISPLAY_NAME "LAPACK-${LAPACK_VERSION}")
293+
set(CPACK_NSIS_HELP_LINK "http:\\\\\\\\http://icl.cs.utk.edu/lapack-forum")
294+
set(CPACK_NSIS_URL_INFO_ABOUT "http:\\\\\\\\www.netlib.org/lapack")
295+
set(CPACK_NSIS_CONTACT "[email protected]")
296+
set(CPACK_NSIS_MODIFY_PATH ON)
297+
set(CPACK_NSIS_DISPLAY_NAME "LAPACK-${LAPACK_VERSION}")
298298
set(CPACK_PACKAGE_RELOCATABLE "true")
299-
ELSE(WIN32 AND NOT UNIX)
300-
SET(CPACK_GENERATOR "TGZ")
301-
SET(CPACK_SOURCE_GENERATOR TGZ)
302-
SET(CPACK_SOURCE_PACKAGE_FILE_NAME "lapack-${LAPACK_VERSION}" )
303-
SET(CPACK_SOURCE_IGNORE_FILES ~$ .svn ${CPACK_SOURCE_IGNORE_FILES} )
304-
ENDIF(WIN32 AND NOT UNIX)
305-
INCLUDE(CPack)
299+
else(WIN32 AND NOT UNIX)
300+
set(CPACK_GENERATOR "TGZ")
301+
set(CPACK_SOURCE_GENERATOR TGZ)
302+
set(CPACK_SOURCE_PACKAGE_FILE_NAME "lapack-${LAPACK_VERSION}" )
303+
set(CPACK_SOURCE_IGNORE_FILES ~$ .svn ${CPACK_SOURCE_IGNORE_FILES} )
304+
endif(WIN32 AND NOT UNIX)
305+
include(CPack)
306306

307307

308308
# --------------------------------------------------
309309
# By default static library
310-
OPTION(BUILD_SHARED_LIBS "Build shared libraries" OFF )
311-
OPTION(BUILD_STATIC_LIBS "Build static libraries" ON )
312-
#OPTION(BUILD_SHARED_LIBS "Build shared libraries" ON )
310+
option(BUILD_SHARED_LIBS "Build shared libraries" OFF )
311+
option(BUILD_STATIC_LIBS "Build static libraries" ON )
312+
#option(BUILD_SHARED_LIBS "Build shared libraries" ON )
313313

314314
if(NOT BLAS_FOUND)
315315
set(ALL_TARGETS ${ALL_TARGETS} blas)

CTestConfig.cmake

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
## Then modify the CMakeLists.txt file in the root directory of your
33
## project to incorporate the testing dashboard.
44
## # The following are required to uses Dart and the Cdash dashboard
5-
## ENABLE_TESTING()
6-
## INCLUDE(CTest)
5+
## enable_testing()
6+
## include(CTest)
77
set(CTEST_PROJECT_NAME "LAPACK")
88
set(CTEST_NIGHTLY_START_TIME "00:00:00 EST")
99

CTestCustom.cmake.in

+7-7
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@
33
# see http://www.vtk.org/Wiki/CMake_Testing_With_CTest#Customizing_CTest
44
#
55

6-
SET(CTEST_CUSTOM_MAXIMUM_PASSED_TEST_OUTPUT_SIZE 0)
7-
SET(CTEST_CUSTOM_MAXIMUM_FAILED_TEST_OUTPUT_SIZE 0)
8-
SET(CTEST_CUSTOM_MAXIMUM_NUMBER_OF_ERRORS 500)
9-
SET(CTEST_CUSTOM_MAXIMUM_NUMBER_OF_WARNINGS 500)
6+
set(CTEST_CUSTOM_MAXIMUM_PASSED_TEST_OUTPUT_SIZE 0)
7+
set(CTEST_CUSTOM_MAXIMUM_FAILED_TEST_OUTPUT_SIZE 0)
8+
set(CTEST_CUSTOM_MAXIMUM_NUMBER_OF_ERRORS 500)
9+
set(CTEST_CUSTOM_MAXIMUM_NUMBER_OF_WARNINGS 500)
1010

1111
# Files to explicitly exclude from code coverage
12-
SET(CTEST_CUSTOM_COVERAGE_EXCLUDE
12+
set(CTEST_CUSTOM_COVERAGE_EXCLUDE
1313
${CTEST_CUSTOM_COVERAGE_EXCLUDE}
1414

1515
# Exclude the internal BLAS libraries
@@ -20,7 +20,7 @@ SET(CTEST_CUSTOM_COVERAGE_EXCLUDE
2020
)
2121

2222
# Warnings to explicitly ignore
23-
SET(CTEST_CUSTOM_WARNING_EXCEPTION
23+
set(CTEST_CUSTOM_WARNING_EXCEPTION
2424
${CTEST_CUSTOM_WARNING_EXCEPTION}
2525

2626
# Common warning when linking ATLAS built with GNU Fortran 4.1 and building
@@ -43,4 +43,4 @@ SET(CTEST_CUSTOM_WARNING_EXCEPTION
4343
"Character string truncated to length 1 on assignment"
4444
)
4545

46-
SET(CTEST_CUSTOM_POST_TEST "./lapack_testing.py -s -d TESTING")
46+
set(CTEST_CUSTOM_POST_TEST "./lapack_testing.py -s -d TESTING")

LAPACKE/CMakeLists.txt

+3-3
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ if( NOT FortranCInterface_GLOBAL_FOUND OR NOT FortranCInterface_MODULE_FOUND)
1717
endif ()
1818

1919
if (WIN32 AND NOT UNIX)
20-
ADD_DEFINITIONS(-DHAVE_LAPACK_CONFIG_H -DLAPACK_COMPLEX_STRUCTURE)
21-
MESSAGE (STATUS "Windows BUILD")
20+
add_definitions(-DHAVE_LAPACK_CONFIG_H -DLAPACK_COMPLEX_STRUCTURE)
21+
message (STATUS "Windows BUILD")
2222
endif (WIN32 AND NOT UNIX)
2323

2424
get_directory_property( DirDefs COMPILE_DEFINITIONS )
@@ -55,7 +55,7 @@ else (USE_XBLAS)
5555
endif(USE_XBLAS)
5656

5757
lapack_install_library(lapacke)
58-
INSTALL( FILES ${LAPACKE_INCLUDE} ${LAPACK_BINARY_DIR}/include/lapacke_mangling.h DESTINATION include )
58+
install( FILES ${LAPACKE_INCLUDE} ${LAPACK_BINARY_DIR}/include/lapacke_mangling.h DESTINATION include )
5959

6060
if(BUILD_TESTING)
6161
add_subdirectory(example)

LAPACKE/include/CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
SET (LAPACKE_INCLUDE lapacke.h lapacke_config.h lapacke_utils.h )
1+
set (LAPACKE_INCLUDE lapacke.h lapacke_config.h lapacke_utils.h )
22

33
file(COPY ${LAPACKE_INCLUDE} DESTINATION ${LAPACK_BINARY_DIR}/include)

LAPACKE/src/CMakeLists.txt

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
#AUX_SOURCE_DIRECTORY(${CMAKE_CURRENT_SOURCE_DIR} SRC_OBJ)
1+
#aux_source_directory(${CMAKE_CURRENT_SOURCE_DIR} SRC_OBJ)
22

3-
SET (SRC_OBJ
3+
set (SRC_OBJ
44
lapacke_cbbcsd.c
55
lapacke_cbbcsd_work.c
66
lapacke_cbdsqr.c
@@ -2085,7 +2085,7 @@ lapacke_ilaver.c
20852085
)
20862086

20872087
if(BUILD_DEPRECATED)
2088-
LIST(APPEND SRC_OBJ
2088+
list(APPEND SRC_OBJ
20892089
lapacke_cggsvp.c
20902090
lapacke_cggsvp_work.c
20912091
lapacke_dggsvp.c
@@ -2113,7 +2113,7 @@ if(BUILD_DEPRECATED)
21132113
message(STATUS "Building LAPACKE deprecated routines")
21142114
endif()
21152115

2116-
SET(SRCX_OBJ
2116+
set(SRCX_OBJ
21172117
lapacke_cgbrfsx.c lapacke_cporfsx.c lapacke_dgerfsx.c lapacke_sgbrfsx.c lapacke_ssyrfsx.c lapacke_zherfsx.c
21182118
lapacke_cgbrfsx_work.c lapacke_cporfsx_work.c lapacke_dgerfsx_work.c lapacke_sgbrfsx_work.c lapacke_ssyrfsx_work.c lapacke_zherfsx_work.c
21192119
lapacke_cgerfsx.c lapacke_csyrfsx.c lapacke_dporfsx.c lapacke_sgerfsx.c lapacke_zgbrfsx.c lapacke_zporfsx.c
@@ -2129,7 +2129,7 @@ lapacke_chesvxx_work.c lapacke_dgbsvxx_work.c lapacke_dsysvxx_work.c lapacke_
21292129
)
21302130

21312131
# FILE PARTS OF TMGLIB
2132-
SET (MATGEN_OBJ
2132+
set (MATGEN_OBJ
21332133
lapacke_clatms.c
21342134
lapacke_clatms_work.c
21352135
lapacke_dlatms.c

SRC/CMakeLists.txt

+4-4
Original file line numberDiff line numberDiff line change
@@ -415,16 +415,16 @@ if( USE_XBLAS)
415415
endif()
416416

417417
if(BUILD_DEPRECATED)
418-
LIST(APPEND SLASRC DEPRECATED/sgegs.f DEPRECATED/sgegv.f
418+
list(APPEND SLASRC DEPRECATED/sgegs.f DEPRECATED/sgegv.f
419419
DEPRECATED/sgeqpf.f DEPRECATED/sgelsx.f DEPRECATED/sggsvd.f
420420
DEPRECATED/sggsvp.f DEPRECATED/slahrd.f DEPRECATED/slatzm.f DEPRECATED/stzrqf.f)
421-
LIST(APPEND DLASRC DEPRECATED/dgegs.f DEPRECATED/dgegv.f
421+
list(APPEND DLASRC DEPRECATED/dgegs.f DEPRECATED/dgegv.f
422422
DEPRECATED/dgeqpf.f DEPRECATED/dgelsx.f DEPRECATED/dggsvd.f
423423
DEPRECATED/dggsvp.f DEPRECATED/dlahrd.f DEPRECATED/dlatzm.f DEPRECATED/dtzrqf.f )
424-
LIST(APPEND CLASRC DEPRECATED/cgegs.f DEPRECATED/cgegv.f
424+
list(APPEND CLASRC DEPRECATED/cgegs.f DEPRECATED/cgegv.f
425425
DEPRECATED/cgeqpf.f DEPRECATED/cgelsx.f DEPRECATED/cggsvd.f
426426
DEPRECATED/cggsvp.f DEPRECATED/clahrd.f DEPRECATED/clatzm.f DEPRECATED/ctzrqf.f)
427-
LIST(APPEND ZLASRC DEPRECATED/zgegs.f DEPRECATED/zgegv.f
427+
list(APPEND ZLASRC DEPRECATED/zgegs.f DEPRECATED/zgegv.f
428428
DEPRECATED/zgeqpf.f DEPRECATED/zgelsx.f DEPRECATED/zggsvd.f
429429
DEPRECATED/zggsvp.f DEPRECATED/zlahrd.f DEPRECATED/zlatzm.f DEPRECATED/ztzrqf.f)
430430
message(STATUS "Building deprecated routines")

0 commit comments

Comments
 (0)