use explicit file paths for CMake rather then globing, This is recommended by cmake devs.

globbing vs explicit is discussed here.
http://www.cmake.org/pipermail/cmake/2008-December/025694.html

Practical implications are:
- developers need to keep CMakeLists.txt files up to date.
- Users wont get strange linking errors if they build after a file is added, since CMake detects CMakeLists.txt is modified and automatically reconfigure.
This commit is contained in:
Campbell Barton
2010-10-23 04:05:55 +00:00
parent 54b3508444
commit c6976e7351
92 changed files with 1651 additions and 273 deletions

View File

@@ -24,8 +24,44 @@
#
# ***** END GPL LICENSE BLOCK *****
SET(INC extern superlu)
SET(INC
extern
superlu
)
FILE(GLOB SRC intern/*.c superlu/*.c)
SET(SRC
intern/opennl.c
superlu/colamd.c
superlu/get_perm_c.c
superlu/heap_relax_snode.c
superlu/lsame.c
superlu/memory.c
superlu/mmd.c
superlu/relax_snode.c
superlu/scolumn_bmod.c
superlu/scolumn_dfs.c
superlu/scopy_to_ucol.c
superlu/sgssv.c
superlu/sgstrf.c
superlu/sgstrs.c
superlu/smemory.c
superlu/smyblas2.c
superlu/sp_coletree.c
superlu/sp_ienv.c
superlu/sp_preorder.c
superlu/spanel_bmod.c
superlu/spanel_dfs.c
superlu/spivotL.c
superlu/spruneL.c
superlu/ssnode_bmod.c
superlu/ssnode_dfs.c
superlu/ssp_blas2.c
superlu/ssp_blas3.c
superlu/strsv.c
superlu/superlu_timer.c
superlu/sutil.c
superlu/util.c
superlu/xerbla.c
)
BLENDERLIB(bf_intern_opennl "${SRC}" "${INC}")