forked from hpfem/hermes-tutorial
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCMake.vars.example
More file actions
34 lines (30 loc) · 899 Bytes
/
CMake.vars.example
File metadata and controls
34 lines (30 loc) · 899 Bytes
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
# This is a sample CMake.vars file for Hermes.
# Some search paths.
if (WIN32)
set(GLUT_ROOT "d:/hpfem/hermes/dependencies/glut")
set(GLEW_ROOT "d:/hpfem/hermes/dependencies/glew")
set(PTHREAD_ROOT "d:/hpfem/hermes/dependencies/pthread")
set(UMFPACK_ROOT "d:/hpfem/hermes/dependencies/umfpack")
set(CLAPACK_ROOT "d:/hpfem/hermes/dependencies/clapack")
# Target (installation) path.
set(TARGET_ROOT "d:/hpfem/hermes/dependencies")
else()
#set(GLUT_ROOT "/usr/lib/")
#set(GLEW_ROOT "/usr/lib/")
#set(PTHREAD_ROOT "/usr/lib/")
#set(UMFPACK_ROOT "/usr/lib/")
#set(CLAPACK_ROOT "/usr/lib/")
endif()
# Python.
set(WITH_PYTHON NO)
# Trilinos
if (WIN32)
set(TRILINOS_ROOT "d:/hpfem/hermes/dependencies/trilinos")
else()
set(TRILINOS_ROOT "~/solvers/trilinos")
endif()
SET(WITH_TRILINOS YES)
# Experimental
# Turn on Zoltan AND MPI
# SET(WITH_ZOLTAN YES)
# SET(WITH_MPI NO)