https://github.com/root-project/root
Raw File
Tip revision: 95fc2e46526e0b83122613f3125dc10f8c254e89 authored by Pere Mato on 13 August 2014, 12:06:38 UTC
Correct the problem with -pthread flag when building with CMake. Should fix issue ROOT-6390
Tip revision: 95fc2e4
vbase1.cxx
/* -*- C++ -*- */
/*************************************************************************
 * Copyright(c) 1995~2005  Masaharu Goto (root-cint@cern.ch)
 *
 * For the licensing terms see the file COPYING
 *
 ************************************************************************/
#if defined(interp) && defined(makecint)
#pragma include "test.dll"
#else
#include "vbase1.h"
#endif

int main(){
  btest();
  ctest();
  dtest();
  etest();
  ftest();
  gtest();
  cout << endl;
  return 0;
}
back to top