You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
766 B
33 lines
766 B
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()
|
|
|