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.
20 lines
418 B
20 lines
418 B
include_directories("../../CoreLib") |
|
include_directories("../../NucleusLib") |
|
|
|
set(pnNetCli_HEADERS |
|
Intern.h |
|
Pch.h |
|
pnNetCli.h |
|
) |
|
|
|
set(pnNetCli_SOURCES |
|
pnNcChannel.cpp |
|
pnNcCli.cpp |
|
pnNcEncrypt.cpp |
|
pnNcUtils.cpp |
|
) |
|
|
|
add_library(pnNetCli STATIC ${pnNetCli_HEADERS} ${pnNetCli_SOURCES}) |
|
|
|
source_group("Header Files" FILES ${pnNetCli_HEADERS}) |
|
source_group("Source Files" FILES ${pnNetCli_SOURCES})
|
|
|