diff options
| author | 2012-10-04 09:29:35 +0000 | |
|---|---|---|
| committer | 2012-10-04 09:29:35 +0000 | |
| commit | 91f40dca07efe74bbb29eb911ae23a8b2da2fdbe (patch) | |
| tree | 8451deb07408f9bd1a29ab7d64c7cd5c3b5c842f /src/modules/setup | |
| parent | fix previous commit (diff) | |
| download | KVIrc-91f40dca07efe74bbb29eb911ae23a8b2da2fdbe.tar.gz KVIrc-91f40dca07efe74bbb29eb911ae23a8b2da2fdbe.tar.bz2 KVIrc-91f40dca07efe74bbb29eb911ae23a8b2da2fdbe.zip | |
convert cmake files to lowercase statements prehistoric cmake versions required uppercase, but lowercase is now preferred so change it (yeah feel free to hate me for this commit )
git-svn-id: https://svn.kvirc.de/svn/trunk/kvirc@6267 17fca916-40b9-46aa-a4ea-0a15b648b75c
Diffstat (limited to 'src/modules/setup')
| -rw-r--r-- | src/modules/setup/CMakeLists.txt | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/modules/setup/CMakeLists.txt b/src/modules/setup/CMakeLists.txt index 7f2634662..41729eb33 100644 --- a/src/modules/setup/CMakeLists.txt +++ b/src/modules/setup/CMakeLists.txt @@ -1,15 +1,15 @@ # CMakeLists for src/modules/setup -IF(WIN32) - LIST(APPEND LIBS -lole32 -luuid) -ENDIF() +if(WIN32) + list(APPEND LIBS -lole32 -luuid) +endif() -SET(kvisetup_SRCS +set(kvisetup_SRCS libkvisetup.cpp SetupWizard.cpp ) -SET(kvi_module_name kvisetup) -INCLUDE(${CMAKE_SOURCE_DIR}/cmake/module.rules.txt) +set(kvi_module_name kvisetup) +include(${CMAKE_SOURCE_DIR}/cmake/module.rules.txt) |
