1ffc20a6b2
Extremely handy for sources that require certain libraries to be loaded; it's similar to MSVC's #pragma comment(lib"libToLink").
20 lines
624 B
C++
20 lines
624 B
C++
//--------------------------------------------------------------------*- C++ -*-
|
|
// CLING - the C++ LLVM-based InterpreterG :)
|
|
// author: Axel Naumann <axel@cern.ch>
|
|
//
|
|
// This file is dual-licensed: you can choose to license it under the University
|
|
// of Illinois Open Source License or the GNU Lesser General Public License. See
|
|
// LICENSE.TXT for details.
|
|
//------------------------------------------------------------------------------
|
|
|
|
#ifndef CLING_PRAGMAS_H
|
|
#define CLING_PRAGMAS_H
|
|
|
|
namespace cling {
|
|
class Interpreter;
|
|
|
|
void addClingPragmas(Interpreter& interp);
|
|
} // namespace cling
|
|
|
|
#endif // CLING_PRAGMAS_H
|