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.
22 lines
514 B
22 lines
514 B
13 years ago
|
include_directories(../../CoreLib)
|
||
|
include_directories(../../NucleusLib)
|
||
|
include_directories(../../PubUtilLib)
|
||
|
|
||
|
set(pfCrashHandler_HEADERS
|
||
|
plCrashCli.h
|
||
|
plCrashBase.h
|
||
|
plCrash_Private.h
|
||
|
plCrashSrv.h
|
||
|
)
|
||
|
|
||
|
set(pfCrashHandler_SOURCES
|
||
|
plCrashCli.cpp
|
||
|
plCrashBase.cpp
|
||
|
plCrashSrv.cpp
|
||
|
)
|
||
|
|
||
|
add_library(pfCrashHandler STATIC ${pfCrashHandler_SOURCES} ${pfCrashHandler_HEADERS})
|
||
|
|
||
|
source_group("Source Files" FILES ${pfCrashHandler_SOURCES})
|
||
|
source_group("Header Files" FILES ${pfCrashHandler_HEADERS})
|