|
From: Lasse Kärkkäi. <tr...@us...> - 2009-09-06 15:43:58
|
Module: performous
Branch: master
Commit: 1f7c735b23509d8d2358f5085aa49c65f647ed66
Author: Lasse Karkkainen <tro...@tr...>
Date: Sun Sep 6 18:16:05 2009 +0300
Modify editor executable name to avoid massively b0rking UNIX systems when installed.
---
editor/CMakeLists.txt | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/editor/CMakeLists.txt b/editor/CMakeLists.txt
index acd5b71..65e7065 100644
--- a/editor/CMakeLists.txt
+++ b/editor/CMakeLists.txt
@@ -30,11 +30,11 @@ if(CMAKE_COMPILER_IS_GNUCXX)
add_definitions("-D__STDC_CONSTANT_MACROS")
endif(CMAKE_COMPILER_IS_GNUCXX)
-add_executable(editor ${SOURCES} ${SDL_SOURCES})
-target_link_libraries(editor da ${LIBS})
+add_executable(performous-editor ${SOURCES} ${SDL_SOURCES})
+target_link_libraries(performous-editor da ${LIBS})
configure_file("${CMAKE_CURRENT_SOURCE_DIR}/config.cmake.hh" "${CMAKE_CURRENT_BINARY_DIR}/config.hh" @ONLY)
include_directories("${CMAKE_CURRENT_BINARY_DIR}")
-install(TARGETS editor DESTINATION bin)
+install(TARGETS performous-editor DESTINATION bin)
|