1
0
mirror of https://foundry.openuru.org/gitblit/r/CWE-ou-minkata.git synced 2025-07-19 19:59:09 +00:00

The rest of NucleusLib

This commit is contained in:
2011-04-09 11:53:24 -07:00
parent ae434d4eda
commit 7069e00e6f
10 changed files with 161 additions and 12 deletions

View File

@ -0,0 +1,23 @@
include_directories("../../CoreLib")
include_directories("../../NucleusLib")
include_directories("../../NucleusLib/inc")
set(pnTimer_HEADERS
plTimedValue.h
plTimerCallbackManager.h
pnBuildDates.h
pnTimerCreatable.h
)
set(pnTimer_SOURCES
hsTimer.cpp
plTimedValue.cpp
plTimerCallbackManager.cpp
pnBranchDate.cpp
pnBuildDates.cpp
)
add_library(pnTimer STATIC ${pnTimer_HEADERS} ${pnTimer_SOURCES})
source_group("Header Files" FILES ${pnTimer_HEADERS})
source_group("Source Files" FILES ${pnTimer_SOURCES})

View File

@ -26,9 +26,9 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
#include "hsTypes.h"
#include "plTimerCallbackManager.h"
#include "../pnMessage/plTimeMsg.h"
#include "pnMessage/plTimeMsg.h"
#include "plgDispatch.h"
#include "../pnKeyedObject/plFixedKey.h"
#include "pnKeyedObject/plFixedKey.h"
#include "hsTimer.h"
plTimerCallbackManager::plTimerCallbackManager()

View File

@ -27,7 +27,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
#define plTimerCallbackManager_Defined
#include "hsScalar.h"
#include "../pnKeyedObject/hsKeyedObject.h"
#include "pnKeyedObject/hsKeyedObject.h"
#include "hsTemplates.h"
class plMessage;

View File

@ -36,7 +36,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
//////////////////////////////////////////////////////////////////////////////
#include "hsWindows.h"
#include "../pnTimer/pnBuildDates.h"
#include "pnTimer/pnBuildDates.h"
char pnBuildDates::fBuildDate[ 128 ] = __DATE__;
char pnBuildDates::fBuildTime[ 128 ] = __TIME__;

View File

@ -27,7 +27,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
#ifndef pnTimerCreatable_inc
#define pnTimerCreatable_inc
#include "../pnFactory/plCreator.h"
#include "pnFactory/plCreator.h"
#include "plTimerCallbackManager.h"