https://github.com/cran/RcppArmadillo
Raw File
Tip revision: 6f9daf5d1d7e028deaa97fc72d6dab9dccf4054f authored by Romain, Dirk and Doug on 29 July 2010, 09:13:01 UTC
version 0.2.4
Tip revision: 6f9daf5
flags.R
## Copyright (C)       2010 Dirk Eddelbuettel, Romain Francois and Douglas Bates
##
## This file is part of RcppArmadillo.
##
## RcppArmadillo is free software: you can redistribute it and/or modify it
## under the terms of the GNU General Public License as published by
## the Free Software Foundation, either version 2 of the License, or
## (at your option) any later version.
##
## RcppArmadillo is distributed in the hope that it will be useful, but
## WITHOUT ANY WARRANTY; without even the implied warranty of
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
## GNU General Public License for more details.
##
## You should have received a copy of the GNU General Public License
## along with RcppArmadillo.  If not, see <http://www.gnu.org/licenses/>.

RcppArmadilloCxxFlags <- function(){
	paste( '-I"', system.file( "include", package = "RcppArmadillo" ), '"', sep = "" ) 
}

CxxFlags <- function(){
	cat( RcppArmadilloCxxFlags() )
}
back to top