From 65b874693e2d1a569c236b2f69fdd63e814640c1 Mon Sep 17 00:00:00 2001 From: Pavel Krajcevski Date: Thu, 20 Mar 2014 18:32:54 -0400 Subject: [PATCH] Move stopwatch.h to Core/src/include --- Core/CMakeLists.txt | 2 +- Core/{src => include}/StopWatch.h | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename Core/{src => include}/StopWatch.h (100%) diff --git a/Core/CMakeLists.txt b/Core/CMakeLists.txt index fbc7036..551b8ec 100644 --- a/Core/CMakeLists.txt +++ b/Core/CMakeLists.txt @@ -64,7 +64,7 @@ SET( HEADERS ) # Make sure to add the appropriate stopwatch files... -SET( HEADERS ${HEADERS} "src/StopWatch.h" ) +SET( HEADERS ${HEADERS} "include/StopWatch.h" ) IF( WIN32 ) SET( SOURCES ${SOURCES} "src/StopWatchWin32.cpp" ) diff --git a/Core/src/StopWatch.h b/Core/include/StopWatch.h similarity index 100% rename from Core/src/StopWatch.h rename to Core/include/StopWatch.h