Michael Hansen
14 years ago
10 changed files with 161 additions and 12 deletions
@ -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}) |
@ -0,0 +1,93 @@ |
|||||||
|
include_directories("../../CoreLib") |
||||||
|
include_directories("../../NucleusLib") |
||||||
|
|
||||||
|
include_directories(${OPENSSL_INCLUDE_DIR}) |
||||||
|
|
||||||
|
set(pnUtils_HEADERS |
||||||
|
Intern.h |
||||||
|
Pch.h |
||||||
|
pnUtils.h |
||||||
|
) |
||||||
|
|
||||||
|
set(pnUtils_PRIVATE |
||||||
|
Private/pnUtAddr.h |
||||||
|
Private/pnUtAddr.cpp |
||||||
|
Private/pnUtAllIncludes.h |
||||||
|
Private/pnUtArray.h |
||||||
|
Private/pnUtArray.cpp |
||||||
|
Private/pnUtBase64.h |
||||||
|
Private/pnUtBase64.cpp |
||||||
|
Private/pnUtBigNum.h |
||||||
|
Private/pnUtBigNum.cpp |
||||||
|
Private/pnUtCmd.h |
||||||
|
Private/pnUtCmd.cpp |
||||||
|
Private/pnUtCoreLib.h |
||||||
|
Private/pnUtCrypt.h |
||||||
|
Private/pnUtCrypt.cpp |
||||||
|
Private/pnUtEndian.h |
||||||
|
Private/pnUtEndian.cpp |
||||||
|
Private/pnUtHash.h |
||||||
|
Private/pnUtHash.cpp |
||||||
|
Private/pnUtList.h |
||||||
|
Private/pnUtList.cpp |
||||||
|
Private/pnUtMath.h |
||||||
|
Private/pnUtMath.cpp |
||||||
|
Private/pnUtMisc.h |
||||||
|
Private/pnUtMisc.cpp |
||||||
|
Private/pnUtPath.h |
||||||
|
Private/pnUtPath.cpp |
||||||
|
Private/pnUtPragma.h |
||||||
|
Private/pnUtPriQ.h |
||||||
|
Private/pnUtRand.h |
||||||
|
Private/pnUtRand.cpp |
||||||
|
Private/pnUtRef.h |
||||||
|
Private/pnUtSkipList.h |
||||||
|
Private/pnUtSort.h |
||||||
|
Private/pnUtSpareList.h |
||||||
|
Private/pnUtSpareList.cpp |
||||||
|
Private/pnUtStr.h |
||||||
|
Private/pnUtStr.cpp |
||||||
|
Private/pnUtSubst.h |
||||||
|
Private/pnUtSubst.cpp |
||||||
|
Private/pnUtSync.h |
||||||
|
Private/pnUtTime.h |
||||||
|
Private/pnUtTime.cpp |
||||||
|
Private/pnUtTls.h |
||||||
|
Private/pnUtTls.cpp |
||||||
|
Private/pnUtUuid.h |
||||||
|
Private/pnUtUuid.cpp |
||||||
|
) |
||||||
|
|
||||||
|
set(pnUtils_SOURCES |
||||||
|
pnUtils.cpp |
||||||
|
) |
||||||
|
|
||||||
|
if(WIN32) |
||||||
|
set(pnUtils_WIN32 |
||||||
|
Private/Win32/pnUtW32Addr.cpp |
||||||
|
Private/Win32/pnUtW32Misc.cpp |
||||||
|
Private/Win32/pnUtW32Path.cpp |
||||||
|
Private/Win32/pnUtW32Str.cpp |
||||||
|
Private/Win32/pnUtW32Sync.cpp |
||||||
|
Private/Win32/pnUtW32Time.cpp |
||||||
|
Private/Win32/pnUtW32Uuid.cpp |
||||||
|
) |
||||||
|
else() |
||||||
|
set(pnUtils_UNIX |
||||||
|
Private/Unix/pnUteUxStr.cpp |
||||||
|
Private/Unix/pnUteUxSync.cpp |
||||||
|
Private/Unix/pnUteUxUuid.cpp |
||||||
|
) |
||||||
|
endif() |
||||||
|
|
||||||
|
add_library(pnUtils STATIC ${pnUtils_HEADERS} ${pnUtils_PRIVATE} ${pnUtils_SOURCES} |
||||||
|
${pnUtils_UNIX} ${pnUtils_WIN32}) |
||||||
|
|
||||||
|
source_group("Header Files" FILES ${pnUtils_HEADERS}) |
||||||
|
source_group("Source Files" FILES ${pnUtils_SOURCES}) |
||||||
|
source_group("Private" FILES ${pnUtils_PRIVATE}) |
||||||
|
if(WIN32) |
||||||
|
source_group("Private\\Win32" FILES ${pnUtils_WIN32}) |
||||||
|
else() |
||||||
|
source_group("Private\\Unix" FILES ${pnUtils_UNIX}) |
||||||
|
endif() |
@ -0,0 +1,33 @@ |
|||||||
|
include_directories("../../CoreLib") |
||||||
|
include_directories("../../NucleusLib") |
||||||
|
|
||||||
|
set(pnUtilsExe_HEADERS |
||||||
|
Intern.h |
||||||
|
Pch.h |
||||||
|
) |
||||||
|
|
||||||
|
set(pnUtilsExe_PRIVATE |
||||||
|
Private/pnUteTime.cpp |
||||||
|
Private/pnUteTls.cpp |
||||||
|
) |
||||||
|
|
||||||
|
if(WIN32) |
||||||
|
set(pnUtilsExe_WIN32 |
||||||
|
Private/Win32/pnUteW32Time.cpp |
||||||
|
) |
||||||
|
else() |
||||||
|
set(pnUtilsExe_UNIX |
||||||
|
Private/Unix/pnUteUxTime.cpp |
||||||
|
) |
||||||
|
endif() |
||||||
|
|
||||||
|
add_library(pnUtilsExe STATIC ${pnUtilsExe_HEADERS} ${pnUtilsExe_PRIVATE} |
||||||
|
${pnUtilsExe_UNIX} ${pnUtilsExe_WIN32}) |
||||||
|
|
||||||
|
source_group("Header Files" FILES ${pnUtilsExe_HEADERS}) |
||||||
|
source_group("Private" FILES ${pnUtilsExe_PRIVATE}) |
||||||
|
if(WIN32) |
||||||
|
source_group("Private\\Win32" FILES ${pnUtilsExe_WIN32}) |
||||||
|
else() |
||||||
|
source_group("Private\\Unix" FILES ${pnUtilsExe_UNIX}) |
||||||
|
endif() |
Loading…
Reference in new issue