From 6cb41db909ea624f605f0a983034578fb1e6e6b0 Mon Sep 17 00:00:00 2001 From: Alex Buts <Alex.Buts@stfc.ac.uk> Date: Fri, 9 Nov 2012 11:02:45 +0000 Subject: [PATCH] refs #6103 remove main part of annoying messages but not all of them. --- Code/Mantid/Framework/Algorithms/test/CMakeLists.txt | 9 +++++++++ Code/Mantid/Framework/CMakeLists.txt | 9 +++++++++ .../Framework/Kernel/inc/MantidKernel/DateAndTime.h | 1 + 3 files changed, 19 insertions(+) diff --git a/Code/Mantid/Framework/Algorithms/test/CMakeLists.txt b/Code/Mantid/Framework/Algorithms/test/CMakeLists.txt index 1e888c8f85a..ecd712c4a33 100644 --- a/Code/Mantid/Framework/Algorithms/test/CMakeLists.txt +++ b/Code/Mantid/Framework/Algorithms/test/CMakeLists.txt @@ -1,5 +1,14 @@ if ( CXXTEST_FOUND ) include_directories ( SYSTEM ${CXXTEST_INCLUDE_DIR} ${GMOCK_INCLUDE_DIR} ${GTEST_INCLUDE_DIR} ) + check_include_files ( stdint.h stdint ) + if ( stdint ) + add_definitions ( -DHAVE_STDINT_H ) + endif () + check_include_files ( cstdint.hpp boost_stdint) + if ( boost_stdint ) + add_definitions ( -DBOOST_CSTDINT_HPP ) + endif () + # Generate the MultiplyTest.h and DivideTest.h set ( MULTIPLYDIVIDETEST_CLASS MultiplyTest ) diff --git a/Code/Mantid/Framework/CMakeLists.txt b/Code/Mantid/Framework/CMakeLists.txt index a0216b8b62e..759609e457c 100644 --- a/Code/Mantid/Framework/CMakeLists.txt +++ b/Code/Mantid/Framework/CMakeLists.txt @@ -37,6 +37,15 @@ if ( OPENMP_FOUND ) set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${OpenMP_CXX_FLAGS}" ) endif () +check_include_files ( stdint.h stdint ) +if ( stdint ) + add_definitions ( -DHAVE_STDINT_H ) +endif () +check_include_files ( cstdint.hpp boost_stdint) +if ( boost_stdint ) + add_definitions ( -DBOOST_CSTDINT_HPP ) +endif () + ########################################################################### # MPI-enable build setup ########################################################################### diff --git a/Code/Mantid/Framework/Kernel/inc/MantidKernel/DateAndTime.h b/Code/Mantid/Framework/Kernel/inc/MantidKernel/DateAndTime.h index b531300155d..811dab27113 100644 --- a/Code/Mantid/Framework/Kernel/inc/MantidKernel/DateAndTime.h +++ b/Code/Mantid/Framework/Kernel/inc/MantidKernel/DateAndTime.h @@ -3,6 +3,7 @@ #include "MantidKernel/DllConfig.h" #include "MantidKernel/Logger.h" +#include "MantidKernel/System.h" #include <boost/date_time/posix_time/posix_time.hpp> #include <ctime> #include <ostream> -- GitLab