Merged in feature/prohibitTimingTBB (pull request #158)

Prohibit Timing build mode with TBB.
release/4.3a0
Chris Beall 2015-06-17 17:00:36 -04:00
commit cfa656c2b9
1 changed files with 6 additions and 0 deletions

View File

@ -158,6 +158,12 @@ else()
set(GTSAM_USE_TBB 0) # This will go into config.h
endif()
###############################################################################
# Prohibit Timing build mode in combination with TBB
if(GTSAM_USE_TBB AND (CMAKE_BUILD_TYPE STREQUAL "Timing"))
message(FATAL_ERROR "Timing build mode cannot be used together with TBB. Use a sampling profiler such as Instruments or Intel VTune Amplifier instead.")
endif()
###############################################################################
# Find Google perftools