mirror of
https://foundry.openuru.org/gitblit/r/CWE-ou-minkata.git
synced 2025-07-17 10:52:46 +00:00
Move plFileUtils and hsFiles to CoreLib
--HG-- rename : Sources/Plasma/PubUtilLib/plFile/hsFiles.cpp => Sources/Plasma/CoreLib/hsFiles.cpp rename : Sources/Plasma/PubUtilLib/plFile/hsFiles.h => Sources/Plasma/CoreLib/hsFiles.h rename : Sources/Plasma/PubUtilLib/plFile/hsFiles_Mac.cpp => Sources/Plasma/CoreLib/hsFiles_Mac.cpp rename : Sources/Plasma/PubUtilLib/plFile/hsFiles_PS2.cpp => Sources/Plasma/CoreLib/hsFiles_PS2.cpp rename : Sources/Plasma/PubUtilLib/plFile/hsFiles_Unix.cpp => Sources/Plasma/CoreLib/hsFiles_Unix.cpp rename : Sources/Plasma/PubUtilLib/plFile/hsFiles_Win.cpp => Sources/Plasma/CoreLib/hsFiles_Win.cpp rename : Sources/Plasma/PubUtilLib/plFile/plFileUtils.cpp => Sources/Plasma/CoreLib/plFileUtils.cpp rename : Sources/Plasma/PubUtilLib/plFile/plFileUtils.h => Sources/Plasma/CoreLib/plFileUtils.h
This commit is contained in:
@ -19,6 +19,7 @@ set(CoreLib_SOURCES
|
|||||||
hsCritSect.cpp
|
hsCritSect.cpp
|
||||||
hsExceptionStack.cpp
|
hsExceptionStack.cpp
|
||||||
hsFastMath.cpp
|
hsFastMath.cpp
|
||||||
|
hsFiles.cpp
|
||||||
hsGeometry3.cpp
|
hsGeometry3.cpp
|
||||||
hsMatrix33.cpp
|
hsMatrix33.cpp
|
||||||
hsMatrix44.cpp
|
hsMatrix44.cpp
|
||||||
@ -34,6 +35,7 @@ set(CoreLib_SOURCES
|
|||||||
hsThread.cpp
|
hsThread.cpp
|
||||||
hsWide.cpp
|
hsWide.cpp
|
||||||
pcSmallRect.cpp
|
pcSmallRect.cpp
|
||||||
|
plFileUtils.cpp
|
||||||
plGeneric.cpp
|
plGeneric.cpp
|
||||||
plLoadMask.cpp
|
plLoadMask.cpp
|
||||||
plString.cpp
|
plString.cpp
|
||||||
@ -43,14 +45,15 @@ set(CoreLib_SOURCES
|
|||||||
if(WIN32 AND NOT CYGWIN)
|
if(WIN32 AND NOT CYGWIN)
|
||||||
set(CoreLib_SOURCES ${CoreLib_SOURCES}
|
set(CoreLib_SOURCES ${CoreLib_SOURCES}
|
||||||
hsThread_Win.cpp
|
hsThread_Win.cpp
|
||||||
|
hsFiles_Win.cpp
|
||||||
)
|
)
|
||||||
endif(WIN32 AND NOT CYGWIN)
|
endif(WIN32 AND NOT CYGWIN)
|
||||||
if(UNIX)
|
if(UNIX)
|
||||||
set(CoreLib_SOURCES ${CoreLib_SOURCES}
|
set(CoreLib_SOURCES ${CoreLib_SOURCES}
|
||||||
hsThread_Unix.cpp
|
hsThread_Unix.cpp
|
||||||
|
hsFiles_Unix.cpp
|
||||||
)
|
)
|
||||||
endif(UNIX)
|
endif(UNIX)
|
||||||
|
|
||||||
|
|
||||||
set(CoreLib_HEADERS
|
set(CoreLib_HEADERS
|
||||||
HeadSpin.h
|
HeadSpin.h
|
||||||
@ -62,6 +65,7 @@ set(CoreLib_HEADERS
|
|||||||
hsCritSect.h
|
hsCritSect.h
|
||||||
hsExceptions.h
|
hsExceptions.h
|
||||||
hsFastMath.h
|
hsFastMath.h
|
||||||
|
hsFiles.h
|
||||||
hsGeometry3.h
|
hsGeometry3.h
|
||||||
hsHashTable.h
|
hsHashTable.h
|
||||||
hsMatrix44.h
|
hsMatrix44.h
|
||||||
@ -79,6 +83,7 @@ set(CoreLib_HEADERS
|
|||||||
hsThread.h
|
hsThread.h
|
||||||
hsWide.h
|
hsWide.h
|
||||||
pcSmallRect.h
|
pcSmallRect.h
|
||||||
|
plFileUtils.h
|
||||||
plGeneric.h
|
plGeneric.h
|
||||||
plLoadMask.h
|
plLoadMask.h
|
||||||
plQuality.h
|
plQuality.h
|
||||||
|
@ -5,26 +5,16 @@ include_directories("../../PubUtilLib")
|
|||||||
include_directories(${ZLIB_INCLUDE_DIR})
|
include_directories(${ZLIB_INCLUDE_DIR})
|
||||||
|
|
||||||
set(plFile_SOURCES
|
set(plFile_SOURCES
|
||||||
hsFiles.cpp
|
|
||||||
plBrowseFolder.cpp
|
plBrowseFolder.cpp
|
||||||
plEncryptedStream.cpp
|
plEncryptedStream.cpp
|
||||||
plFileUtils.cpp
|
|
||||||
plInitFileReader.cpp
|
plInitFileReader.cpp
|
||||||
plSecureStream.cpp
|
plSecureStream.cpp
|
||||||
plStreamSource.cpp
|
plStreamSource.cpp
|
||||||
)
|
)
|
||||||
|
|
||||||
if(WIN32)
|
|
||||||
set(plFile_SOURCES ${plFile_SOURCES} hsFiles_Win.cpp)
|
|
||||||
else(WIN32)
|
|
||||||
set(plFile_SOURCES ${plFile_SOURCES} hsFiles_Unix.cpp)
|
|
||||||
endif(WIN32)
|
|
||||||
|
|
||||||
set(plFile_HEADERS
|
set(plFile_HEADERS
|
||||||
hsFiles.h
|
|
||||||
plBrowseFolder.h
|
plBrowseFolder.h
|
||||||
plEncryptedStream.h
|
plEncryptedStream.h
|
||||||
plFileUtils.h
|
|
||||||
plInitFileReader.h
|
plInitFileReader.h
|
||||||
plSecureStream.h
|
plSecureStream.h
|
||||||
plStreamSource.h
|
plStreamSource.h
|
||||||
|
Reference in New Issue
Block a user