Skip to content
Snippets Groups Projects
Commit 189e092e authored by Thomas Witkowski's avatar Thomas Witkowski
Browse files

* New demo Makefile for boost support

parent a89a23f4
No related branches found
No related tags found
No related merge requests found
...@@ -8,6 +8,7 @@ USE_PARALLEL_AMDIS = 0 # 1 if AMDiS was compiled with parallel support, 0 o ...@@ -8,6 +8,7 @@ USE_PARALLEL_AMDIS = 0 # 1 if AMDiS was compiled with parallel support, 0 o
USE_OPENMP = 0 # 1 if AMDiS was compiled with OpenMP support, 0 otherwise USE_OPENMP = 0 # 1 if AMDiS was compiled with OpenMP support, 0 otherwise
USE_UMFPACK = 0 # 1 if AMDiS was compiled with UMFPACK library, 0 otherwise USE_UMFPACK = 0 # 1 if AMDiS was compiled with UMFPACK library, 0 otherwise
USE_MKL = 0 # 1 if AMDiS was compiled with Intel MKL library, 0 otherwise USE_MKL = 0 # 1 if AMDiS was compiled with Intel MKL library, 0 otherwise
USE_BOOST = 0 # 1 if AMDiS was compiled with Boost support, 0 otherwise
USE_SERVER = # mars, deimos or themisto. If no special server blank USE_SERVER = # mars, deimos or themisto. If no special server blank
USE_COMPILER = gcc # gcc or icc USE_COMPILER = gcc # gcc or icc
USE_SMI = 0 USE_SMI = 0
...@@ -16,6 +17,7 @@ DEBUG = 0 ...@@ -16,6 +17,7 @@ DEBUG = 0
AMDIS_DIR = /usr/local/AMDiS AMDIS_DIR = /usr/local/AMDiS
MPI_DIR = # on mars, deimos or themisto, leave this field blank MPI_DIR = # on mars, deimos or themisto, leave this field blank
BOOST_DIR = # if compiled with boost support, define here the boost directory
SMI_DIR = SMI_DIR =
MPCCI_DIR = MPCCI_DIR =
...@@ -96,6 +98,9 @@ ifeq ($(strip $(USE_MPCCI)), 1) ...@@ -96,6 +98,9 @@ ifeq ($(strip $(USE_MPCCI)), 1)
LIBS += $(MPCCI_LIB) LIBS += $(MPCCI_LIB)
endif endif
ifeq ($(strip $(USE_BOOST)), 1)
LIBS += -L$(BOOST_DIR)/lib -lboost_iostreams
endif
# ============================================================================ # ============================================================================
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment