1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80
|
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 60e2d4b..010f868 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -125,47 +125,7 @@ set(LIBPTSCOTCHERR "" CACHE STRING "Which parallel error library is linked by de
# Allow for testing
option(ENABLE_TESTS "Enable testing" ON)
-if(ENABLE_TESTS)
- enable_testing()
-endif(ENABLE_TESTS)
-
# use GNU standard for file hierarchy installation system
include(GNUInstallDirs)
add_subdirectory(src)
-
-# Install man pages
-set(scotch_man_pages
-acpl.1
-amk_ccc.1
-amk_grf.1
-atst.1
-gbase.1
-gcv.1
-gdump.1
-gmap.1
-gmk_hy.1
-gmk_m2.1
-gmk_msh.1
-gmtst.1
-gord.1
-gotst.1
-gout.1
-gtst.1
-mcv.1
-mmk_m2.1
-mord.1
-mtst.1
-)
-foreach(f IN LISTS scotch_man_pages)
- install(FILES ${CMAKE_CURRENT_SOURCE_DIR}/man/man1/${f}
- DESTINATION ${CMAKE_INSTALL_DATADIR}/man/man1 COMPONENT scotch)
-endforeach()
-
-if(BUILD_PTSCOTCH)
- set(ptscotch_man_pages dgmap.1 dgord.1 dgscat.1 dgtst.1)
- foreach(f IN LISTS ptscotch_man_pages)
- install(FILES ${CMAKE_CURRENT_SOURCE_DIR}/man/man1/${f}
- DESTINATION ${CMAKE_INSTALL_DATADIR}/man/man1 COMPONENT ptscotch)
- endforeach()
-endif(BUILD_PTSCOTCH)
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt
index c6e21eb..b97f9b7 100644
--- a/src/CMakeLists.txt
+++ b/src/CMakeLists.txt
@@ -214,23 +214,6 @@ file(MAKE_DIRECTORY ${GENERATED_INCLUDE_DIR})
# Build Scotch and PT-Scotch libraries
add_subdirectory(libscotch)
-# Build Scotch executables
-add_subdirectory(scotch)
-
-# Build EsMUMPS library
-if(BUILD_LIBESMUMPS AND NOT USE_SUFFIX)
- add_subdirectory(esmumps)
-endif(BUILD_LIBESMUMPS AND NOT USE_SUFFIX)
-
-# Build ScotchMeTiS library
-if(BUILD_LIBSCOTCHMETIS)
- add_subdirectory(libscotchmetis)
-endif(BUILD_LIBSCOTCHMETIS)
-
-# Testing
-if(ENABLE_TESTS)
- add_subdirectory(check)
-endif(ENABLE_TESTS)
####################
# Export targets #
|