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.
34 lines
644 B
34 lines
644 B
include_directories("../../CoreLib") |
|
include_directories("../../NucleusLib") |
|
|
|
set(pnUtils_HEADERS |
|
Pch.h |
|
pnUtils.h |
|
pnUtCoreLib.h |
|
pnUtAllIncludes.h |
|
pnUtArray.h |
|
pnUtCrypt.h |
|
pnUtHash.h |
|
pnUtList.h |
|
pnUtPragma.h |
|
pnUtPriQ.h |
|
pnUtSort.h |
|
pnUtStr.h |
|
pnUtTime.h |
|
) |
|
|
|
set(pnUtils_SOURCES |
|
pnUtArray.cpp |
|
pnUtCrypt.cpp |
|
pnUtHash.cpp |
|
pnUtList.cpp |
|
pnUtStr.cpp |
|
pnUtTime.cpp |
|
) |
|
|
|
add_library(pnUtils STATIC ${pnUtils_HEADERS} ${pnUtils_SOURCES}) |
|
|
|
target_link_libraries(pnUtils CoreLib) |
|
|
|
source_group("Header Files" FILES ${pnUtils_HEADERS}) |
|
source_group("Source Files" FILES ${pnUtils_SOURCES})
|
|
|