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,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()

View File

@ -35,7 +35,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
#define PLASMA20_SOURCES_PLASMA_NUCLEUSLIB_PNUTILSEXE_PCH_H
#include "../pnUtils/Pch.h"
#include "pnUtils/Pch.h"
#include "Intern.h"
#include <malloc.h>