Added missing <thread> include. Updated comments regarding this in CMakeLists.txt

This commit is contained in:
kjell@kjell-win7.lan 2012-03-04 02:14:50 +01:00
parent 99fea9ed6f
commit 2bb53f0d01
2 changed files with 1 additions and 3 deletions

View File

@ -91,9 +91,6 @@ ENDIF(MSVC10)
# Visual Studio 2011 -- BETA: std::thread etc are included with the Visual Studio package =)
# so just::thread dependency is no longer needed (see next line: "important")
#
# IMPORTANT: At the moment all compiles except g2log.cpp, L:203 std::this_thread::sleep_for
# If you're using VS2011,. just replace that for a normal sleep
IF(MSVC11)
MESSAGE("")
MESSAGE("Windows: Please run the command [cmake -G \"Visual Studio 11\" ..]")

View File

@ -29,6 +29,7 @@
#include "g2logworker.h"
#include "crashhandler.h"
#include <signal.h>
#include <thread>
namespace g2
{