summaryrefslogtreecommitdiffstats
path: root/sigworld
diff options
context:
space:
mode:
authorBen Boeckel <MathStuf@gmail.com>2009-02-23 11:02:05 -0500
committerBen Boeckel <MathStuf@gmail.com>2009-02-23 11:19:30 -0500
commit25ec942048336dde5e1a17e6c75e15e4f8d8290d (patch)
tree19e9fd8227a959a4bc17a7ce8a15b3f09cf7db45 /sigworld
parent1db9dcdbf65f56c2807eb4d1f9ce5291e325e139 (diff)
downloadsigen-25ec942048336dde5e1a17e6c75e15e4f8d8290d.tar.gz
sigen-25ec942048336dde5e1a17e6c75e15e4f8d8290d.tar.xz
sigen-25ec942048336dde5e1a17e6c75e15e4f8d8290d.zip
Made all CMakeLists commands lowercase
Diffstat (limited to 'sigworld')
-rw-r--r--sigworld/CMakeLists.txt24
1 files changed, 12 insertions, 12 deletions
diff --git a/sigworld/CMakeLists.txt b/sigworld/CMakeLists.txt
index d6a83672..fe435f89 100644
--- a/sigworld/CMakeLists.txt
+++ b/sigworld/CMakeLists.txt
@@ -1,47 +1,47 @@
-PROJECT(sigworld)
+project(sigworld)
-IF (NOT SIGEN_VERSION)
- MESSAGE(FATAL_ERROR "Sigen version is not defined")
-ENDIF (NOT SIGEN_VERSION)
+if (NOT SIGEN_VERSION)
+ message(FATAL_ERROR "Sigen version is not defined")
+endif (NOT SIGEN_VERSION)
-SET(sigworld_HEADERS
+set(sigworld_HEADERS
Global.h
MapScene.h
TileGraphicsItem.h
TrainerGraphicsItem.h
WarpGraphicsItem.h
)
-SET(sigworld_SRCS
+set(sigworld_SRCS
MapScene.cpp
TileGraphicsItem.cpp
TrainerGraphicsItem.cpp
WarpGraphicsItem.cpp
)
-KDE4_ADD_LIBRARY(sigworld
+kde4_add_library(sigworld
SHARED
${sigworld_SRCS}
)
-SET_TARGET_PROPERTIES(sigworld
+set_target_properties(sigworld
PROPERTIES
VERSION ${SIGEN_VERSION}
SOVERSION ${SIGEN_SOVERSION}
)
-TARGET_LINK_LIBRARIES(sigworld
+target_link_libraries(sigworld
${QT_QTCORE_LIBRARY}
${QT_QTGUI_LIBRARY}
${KDE4_KROSSCORE_LIBRARY}
sigcore
sigscript
)
-TARGET_LINK_LIBRARIES(sigworld LINK_INTERFACE_LIBRARIES
+target_link_libraries(sigworld LINK_INTERFACE_LIBRARIES
${QT_QTCORE_LIBRARY}
${QT_QTGUI_LIBRARY}
sigcore
sigscript
)
-INSTALL(
+install(
TARGETS
sigworld
EXPORT
@@ -52,7 +52,7 @@ INSTALL(
runtime
)
-INSTALL(
+install(
FILES
${sigworld_HEADERS}
DESTINATION