Display a note if TBB is not availlable

This commit is contained in:
Laurent Rineau 2014-06-25 19:37:29 +02:00
parent 61f0501ebb
commit e77004089d
1 changed files with 1 additions and 2 deletions

View File

@ -3,12 +3,11 @@
#include <iostream>
#ifndef CGAL_LINKED_WITH_TBB
# pragma message(" : Warning: CGAL_LINKED_WITH_TBB not defined: NOTHING TO TEST.")
int main()
{
std::cout <<
"Warning: CGAL_LINKED_WITH_TBB not defined: NOTHING TO TEST. Quitting..."
"NOTICE: this test needs CGAL_LINKED_WITH_TBB, and will not be tested."
<< std::endl;
return 0;
}