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.
24 lines
681 B
24 lines
681 B
include_directories("../../CoreLib") |
|
include_directories("../../NucleusLib") |
|
include_directories("../../FeatureLib") |
|
|
|
set(plCrashHandler_SOURCES |
|
main.cpp |
|
) |
|
|
|
add_executable(plCrashHandler ${plCrashHandler_SOURCES}) |
|
if(PLASMA_EXTERNAL_RELEASE) |
|
set_target_properties(plCrashHandler PROPERTIES OUTPUT_NAME "UruCrashHandler") |
|
endif(PLASMA_EXTERNAL_RELEASE) |
|
target_link_libraries(plCrashHandler CoreLib) |
|
target_link_libraries(plCrashHandler pfCrashHandler) |
|
target_link_libraries(plCrashHandler plFile) |
|
|
|
if(USE_VLD) |
|
target_link_libraries(plCrashHandler ${VLD_LIBRARY}) |
|
endif() |
|
|
|
# Platform specific libs |
|
if(WIN32) |
|
target_link_libraries(plCrashHandler Dbghelp) |
|
endif(WIN32)
|
|
|