File tree 6 files changed +27
-20
lines changed
6 files changed +27
-20
lines changed Original file line number Diff line number Diff line change @@ -12,27 +12,12 @@ message(STATUS "ARCANEBUILDROOT for CEA = ${ARCANEBUILDROOT}")
12
12
file (MAKE_DIRECTORY ${ARCANEBUILDROOT} /share)
13
13
file (MAKE_DIRECTORY ${ARCANEBUILDROOT} /share/axl)
14
14
15
- # A supprimer mais en attendant permet de compiler avec IntelMPI
16
- if (ARCANE_WANT_MPI_DISTRIB MATCHES "intelmpi" )
17
- set (DISABLE_SLOOP_AND_TRILINOS YES )
18
- include (cmake/FindItac.cmake)
19
- endif ()
20
- if (ARCANE_USE_MPC)
21
- set (DISABLE_SLOOP_AND_TRILINOS YES )
22
- endif ()
23
-
24
15
# ----------------------------------------------------------------------------
25
16
26
17
include (cmake/VT100.cmake)
27
18
if (NOT WIN32 )
28
- # Lima a besoin de LM et F90 donc il faut qu'ils soient
29
- # recherchés avan lui
30
19
include (cmake/FindItac.cmake)
31
20
include (cmake/FindMathlink.cmake)
32
-
33
- if (NOT DISABLE_SLOOP_AND_TRILINOS)
34
- include (cmake/FindSuperLU.cmake)
35
- endif ()
36
21
endif ()
37
22
38
23
if (NOT WIN32 AND MATHLINK_FOUND)
@@ -43,7 +28,6 @@ add_subdirectory(src/arcane/cea)
43
28
add_subdirectory (src/arcane/geometric)
44
29
add_subdirectory (src/arcane/meshutils)
45
30
add_subdirectory (src/arcane/hyoda)
46
- add_subdirectory (src/arcane/aleph/sloop)
47
31
48
32
# ----------------------------------------------------------------------------
49
33
# Ajoute des tests.
Original file line number Diff line number Diff line change 1
- include (srcs.cmake)
1
+ include (srcs.cmake)
2
2
3
3
arcane_add_library(arcane_aleph
4
4
INPUT_PATH ${Arcane_SOURCE_DIR} /src
@@ -21,3 +21,26 @@ if(MPI_FOUND)
21
21
endif ()
22
22
add_subdirectory (tests)
23
23
endif ()
24
+
25
+ # A supprimer mais en attendant permet de compiler Sloop avec IntelMPI
26
+ if (ARCANE_WANT_MPI_DISTRIB MATCHES "intelmpi" )
27
+ set (DISABLE_SLOOP_AND_TRILINOS YES )
28
+ include (cmake/FindItac.cmake)
29
+ endif ()
30
+ if (ARCANE_USE_MPC)
31
+ set (DISABLE_SLOOP_AND_TRILINOS YES )
32
+ endif ()
33
+
34
+ if (NOT WIN32 )
35
+ if (NOT DISABLE_SLOOP_AND_TRILINOS)
36
+ include (${CMAKE_CURRENT_LIST_DIR} /FindSuperLU.cmake)
37
+ add_subdirectory (sloop)
38
+ endif ()
39
+ endif ()
40
+
41
+ # ----------------------------------------------------------------------------
42
+ # Local Variables:
43
+ # tab-width: 2
44
+ # indent-tabs-mode: nil
45
+ # coding: utf-8-with-signature
46
+ # End:
Original file line number Diff line number Diff line change 1
- info( " ${VT100_FG_GREEN} Looking for ${VT100_BOLD} SuperLU${VT100_RESET} " )
1
+ message ( STATUS " Looking for SuperLU" )
2
2
3
3
find_path (SUPERLU_INCLUDE_DIRS superlu_defs.h)
4
4
find_library (SUPERLU_LIBRARIES superlu_dist_4.2)
5
5
6
- info( " ${VT100_FG_GREEN} SUPERLU_LIBRARY=${VT100_BOLD}${ SUPERLU_LIBRARY}${VT100_RESET } " )
6
+ message ( STATUS " SUPERLU_LIBRARY=${SUPERLU_LIBRARY} " )
7
7
8
8
MESSAGE (STATUS "SUPERLU_LIBRARIES = ${SUPERLU_LIBRARIES} " )
9
9
MESSAGE (STATUS "SUPERLU_INCLUDE_DIRS = ${SUPERLU_INCLUDE_DIRS} " )
10
10
11
11
set (SUPERLU_FOUND "NO" )
12
12
if (SUPERLU_INCLUDE_DIRS AND SUPERLU_LIBRARIES)
13
13
set (SUPERLU_FOUND "YES" )
14
- info( " ${VT100_FG_GREEN}${VT100_BOLD} SUPERU_FOUND=YES${VT100_RESET} " )
14
+ message ( STATUS " SUPERU_FOUND=YES" )
15
15
arcane_add_package_library(superlu SUPERLU)
16
16
endif ()
File renamed without changes.
File renamed without changes.
File renamed without changes.
You can’t perform that action at this time.
0 commit comments