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/CMakeLists.txt | |
| 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/CMakeLists.txt')
| -rw-r--r-- | src/modules/CMakeLists.txt | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/src/modules/CMakeLists.txt b/src/modules/CMakeLists.txt index edd464261..57468051d 100644 --- a/src/modules/CMakeLists.txt +++ b/src/modules/CMakeLists.txt @@ -1,9 +1,9 @@ # CMakeLists.txt for src/modules/ -IF(APPLE) - SET(CMAKE_MODULE_LINKER_FLAGS "-undefined dynamic_lookup") -ENDIF() +if(APPLE) + set(CMAKE_MODULE_LINKER_FLAGS "-undefined dynamic_lookup") +endif() -INCLUDE_DIRECTORIES( +include_directories( ../kvilib/tal/ ../kvilib/config/ ../kvilib/core/ @@ -24,7 +24,7 @@ INCLUDE_DIRECTORIES( ../kvirc/ui/ ) -SUBDIRS( +subdirs( about action actioneditor addon aliaseditor avatar chan channelsjoin classeditor codetester config context dcc dialog @@ -44,15 +44,15 @@ SUBDIRS( window ) -IF(COMPILE_PERL_SUPPORT) - SUBDIRS(perl) -ENDIF() +if(COMPILE_PERL_SUPPORT) + subdirs(perl) +endif() -IF(COMPILE_PYTHON_SUPPORT) - SUBDIRS(python) -ENDIF() +if(COMPILE_PYTHON_SUPPORT) + subdirs(python) +endif() -IF(APPLE) +if(APPLE) # This is a dirty trick ensure we get some code executed after the last module gets installed - SUBDIRS(zzz_afterlastmodule) -ENDIF() + subdirs(zzz_afterlastmodule) +endif() |
