Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Aland, Sebastian
amdis
Commits
60fb9ae8
Commit
60fb9ae8
authored
May 20, 2010
by
Naumann, Andreas
Browse files
boost always required, first amdis gui reference manual
parent
aa99041a
Changes
1
Hide whitespace changes
Inline
Side-by-side
AMDiS/CMakeLists.txt
View file @
60fb9ae8
...
...
@@ -4,6 +4,7 @@ cmake_minimum_required(VERSION 2.6)
#needs: --enable-debug, enable-intel --enable-openmp --enable-parmetis --enable-parallel-domain --enable-umfpack --enable-mkl --enable-boost --enable-marmot
#TODO: use the cmake build type
option
(
ENABLE_DEBUG
"debug"
false
)
#option(ENABLE_INTEL "use intel compiler" false)
option
(
ENABLE_OPENMP
"use openmp"
false
)
...
...
@@ -16,7 +17,7 @@ option(ENABLE_MKL "use the mkl" false)
SET
(
MKL_DIR
""
CACHE STRING
"MKL directory"
)
option
(
ENABLE_DUNE
"use dune"
false
)
SET
(
DUNE_DIR
""
CACHE STRING
"Dune directory"
)
option
(
ENABLE_BOOST
"use the boost library"
false
)
#
option(ENABLE_BOOST "use the boost library" false)
option
(
ENABLE_MARMOT
"use marmot"
false
)
option
(
ENABLE_GUI
"compile the gui"
false
)
#option(ENABLE_TESTS "compile the tests" false)
...
...
@@ -30,10 +31,10 @@ if(ENABLE_INTEL)
#SET(CMAKE_C_COMPILER "icc")
endif
(
ENABLE_INTEL
)
if
(
ENABLE_BOOST
)
#
if(ENABLE_BOOST)
SET
(
COMPILEFLAGS
"
${
COMPILEFLAGS
}
-DHAVE_BOOST=1"
)
find_package
(
Boost 1.42 REQUIRED
)
endif
(
ENABLE_BOOST
)
#
endif(ENABLE_BOOST)
SET
(
LIB_DIR ./lib
)
SET
(
SOURCE_DIR ./src
)
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment