Browse Source

Use external names for external builds

Branan Purvine-Riley 14 years ago
parent
commit
ec2cb70f94
  1. 3
      Sources/Plasma/Apps/plClient/CMakeLists.txt
  2. 3
      Sources/Plasma/Apps/plUruLauncher/CMakeLists.txt

3
Sources/Plasma/Apps/plClient/CMakeLists.txt

@ -93,6 +93,9 @@ set(plClient_RESOURCES
add_executable(plClient WIN32 ${plClient_SOURCES} ${plClient_HEADERS}
${plClient_TEXT} ${plClient_RESOURCES})
if(PLASMA_EXTERNAL_RELEASE)
set_target_properties(plClient PROPERTIES OUTPUT_NAME "UruExplorer")
endif(PLASMA_EXTERNAL_RELEASE)
target_link_libraries(plClient CoreLib)
target_link_libraries(plClient CoreLibExe)
target_link_libraries(plClient pfAnimation)

3
Sources/Plasma/Apps/plUruLauncher/CMakeLists.txt

@ -29,6 +29,9 @@ set(plUruLauncher_RESOURCES
add_executable(plUruLauncher WIN32 ${plUruLauncher_SOURCES} ${plUruLauncher_HEADERS}
${plUruLauncher_RESOURCES})
if(PLASMA_EXTERNAL_RELEASE)
set_target_properties(plUruLauncher PROPERTIES OUTPUT_NAME UruLauncher)
endif(PLASMA_EXTERNAL_RELEASE)
target_link_libraries(plUruLauncher CoreLib)
target_link_libraries(plUruLauncher CoreLibExe)
target_link_libraries(plUruLauncher pfConsoleCore)

Loading…
Cancel
Save