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:
@ -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()
|
@ -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>
|
||||
|
Reference in New Issue
Block a user