summaryrefslogtreecommitdiff
path: root/libs/numeric/odeint/examples/vexcl/Jamfile.v2
blob: 191fbef7bd081a7205653f2fbe86074e53ef7fe0 (plain)
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
# Copyright 2012 Karsten Ahnert
# Copyright 2013 Mario Mulansky
#
# Distributed under the Boost Software License, Version 1.0.
# (See accompanying file LICENSE_1_0.txt or
# copy at http://www.boost.org/LICENSE_1_0.txt)


import boost ;
import os ;

boost.use-project ;


# change these lines to fit you configuration
local HOME = [ os.environ HOME ] ;
local VEXCL_INCLUDE = [ os.environ VEXCL_ROOT ] ;
OPENCL_INCLUDE = /usr/local/cuda/include ;



lib opencl : : <name>OpenCL ;

project : requirements
        <implicit-dependency>/boost//headers
        <include>../../../../..
        <include>$(VEXCL_INCLUDE)
        <include>$(OPENCL_INCLUDE)
        <toolset>gcc:<cxxflags>-std=c++0x
        <library>/boost//system/
        ;

exe lorenz_ensemble : lorenz_ensemble.cpp opencl ;