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

First part of PubUtilLib cmakification

This commit is contained in:
2011-04-07 19:33:24 -07:00
parent 4b594c6e2e
commit bead11fb28
146 changed files with 1012 additions and 666 deletions

View File

@ -0,0 +1,20 @@
include_directories("../../CoreLib")
set(plContainer_SOURCES
hsStringTable.cpp
plConfigInfo.cpp
plConfigInfoLogging.cpp
plKeysAndValues.cpp
)
set(plContainer_HEADERS
hsStringTable.h
plConfigInfo.h
plContainer.h
plKeysAndValues.h
)
add_library(plContainer STATIC ${plContainer_SOURCES} ${plContainer_HEADERS})
source_group("Source Files" FILES ${plContainer_SOURCES})
source_group("Header Files" FILES ${plContainer_HEADERS})

View File

@ -24,7 +24,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
*==LICENSE==*/
#include "hsStringTable.h"
#include "stdlib.h"
#include <stdlib.h>
#if HS_BUILD_FOR_PS2 || __MWERKS__ || HS_BUILD_FOR_UNIX
#include <ctype.h>
#endif