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

Start CMake-ifying NucleusLib

This commit is contained in:
2011-04-08 01:29:34 -04:00
parent 82a4fc867c
commit 93ac5b22a9
16 changed files with 234 additions and 19 deletions

View File

@ -0,0 +1,18 @@
include_directories(../../CoreLib)
include_directories(../../NucleusLib)
include_directories(../../NucleusLib/inc)
set(pnFactory_SOURCES
plFactory.cpp
)
set(pnFactory_HEADERS
plCreatable.h
plCreator.h
plFactory.h
)
add_library(pnFactory STATIC ${pnFactory_SOURCES} ${pnFactory_HEADERS})
source_group("Source Files" FILES ${pnFactory_SOURCES})
source_group("Header Files" FILES ${pnFactory_HEADERS})

View File

@ -33,7 +33,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
#include "hsUtils.h"
// For class names
#include "../NucleusLib/inc/plCreatableStrings.h"
#include "plCreatableStrings.h"
static plFactory* theFactory = nil;