summaryrefslogtreecommitdiffstats
path: root/sigscript
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 /sigscript
parent1db9dcdbf65f56c2807eb4d1f9ce5291e325e139 (diff)
downloadsigen-25ec942048336dde5e1a17e6c75e15e4f8d8290d.tar.gz
sigen-25ec942048336dde5e1a17e6c75e15e4f8d8290d.tar.xz
sigen-25ec942048336dde5e1a17e6c75e15e4f8d8290d.zip
Made all CMakeLists commands lowercase
Diffstat (limited to 'sigscript')
-rw-r--r--sigscript/CMakeLists.txt24
1 files changed, 12 insertions, 12 deletions
diff --git a/sigscript/CMakeLists.txt b/sigscript/CMakeLists.txt
index aedb4db7..0e947633 100644
--- a/sigscript/CMakeLists.txt
+++ b/sigscript/CMakeLists.txt
@@ -1,10 +1,10 @@
-PROJECT(sigscript)
+project(sigscript)
-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(sigscript_HEADERS
+set(sigscript_HEADERS
Config.h
AbilityWrapper.h
AuthorWrapper.h
@@ -41,7 +41,7 @@ SET(sigscript_HEADERS
TypeWrapper.h
WeatherWrapper.h
)
-SET(sigscript_SRCS
+set(sigscript_SRCS
Config.cpp
AbilityWrapper.cpp
AuthorWrapper.cpp
@@ -79,30 +79,30 @@ SET(sigscript_SRCS
WeatherWrapper.cpp
)
-KDE4_ADD_LIBRARY(sigscript
+kde4_add_library(sigscript
SHARED
${sigscript_SRCS}
)
-SET_TARGET_PROPERTIES(sigscript
+set_target_properties(sigscript
PROPERTIES
VERSION ${SIGEN_VERSION}
SOVERSION ${SIGEN_SOVERSION}
)
-TARGET_LINK_LIBRARIES(sigscript
+target_link_libraries(sigscript
${QT_QTCORE_LIBRARY}
${QT_QTGUI_LIBRARY}
${PHONON_LIBRARY}
sigcore
sigmod
)
-TARGET_LINK_LIBRARIES(sigscript LINK_INTERFACE_LIBRARIES
+target_link_libraries(sigscript LINK_INTERFACE_LIBRARIES
${QT_QTCORE_LIBRARY}
${QT_QTGUI_LIBRARY}
${PHONON_LIBRARY}
sigcore
)
-INSTALL(
+install(
TARGETS
sigscript
EXPORT
@@ -113,7 +113,7 @@ INSTALL(
runtime
)
-INSTALL(
+install(
FILES
${sigscript_HEADERS}
DESTINATION