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.
17 lines
337 B
17 lines
337 B
14 years ago
|
include_directories("../../CoreLib")
|
||
|
include_directories("../../NucleusLib")
|
||
|
|
||
|
set(pnMail_HEADERS
|
||
|
Pch.h
|
||
|
pnMail.h
|
||
|
)
|
||
|
|
||
|
set(pnMail_SOURCES
|
||
|
pnMail.cpp
|
||
|
)
|
||
|
|
||
|
add_library(pnMail STATIC ${pnMail_HEADERS} ${pnMail_SOURCES})
|
||
|
|
||
|
source_group("Header Files" FILES ${pnMail_HEADERS})
|
||
|
source_group("Source Files" FILES ${pnMail_SOURCES})
|