forked from MCresearch/Candela
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile.vars
27 lines (23 loc) · 865 Bytes
/
Makefile.vars
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
##############################################################################
# Candela MAKEFILE
##############################################################################
#------------------------------------------------------------------
#--------------------------- For Users ----------------------------
#------------------------------------------------------------------
# mpi version: mpiicc/mpiicpc/mpicxx
CXX=mpiicpc
# serial version: icc/icpc/g++
# CXX=g++
#openmp
OPENMP=ON
#Cuda
CUDA=OFF
#use it when CUDA == ON
CUDA_ROOT = /usr/local/cuda
#--------------------------- For Developers -----------------------
# Compile integrate-test version, CXX must use g++/mpicxx
# It can check the leak of memory.
TEST=OFF
#use it when TEST == ON
GTEST_DIR=/home/qianrui/gnucompile/g_gtest
#------------------------------------------------------------------