From 9011e4977e6b71de00e1646cc055bb689ef12965 Mon Sep 17 00:00:00 2001 From: Dominik Schmidt Date: Tue, 27 Dec 2011 03:25:12 +0100 Subject: [PATCH] Rename CMakeLists..txt files to CMakeLists..cmake so we get proper syntax highlighting --- src/{CMakeLists.linux.txt => CMakeLists.linux.cmake} | 0 src/{CMakeLists.osx.txt => CMakeLists.osx.cmake} | 0 src/CMakeLists.txt | 4 ++-- src/{CMakeLists.unix.txt => CMakeLists.unix.cmake} | 4 ++-- src/{CMakeLists.win32.txt => CMakeLists.win32.cmake} | 0 5 files changed, 4 insertions(+), 4 deletions(-) rename src/{CMakeLists.linux.txt => CMakeLists.linux.cmake} (100%) rename src/{CMakeLists.osx.txt => CMakeLists.osx.cmake} (100%) rename src/{CMakeLists.unix.txt => CMakeLists.unix.cmake} (76%) rename src/{CMakeLists.win32.txt => CMakeLists.win32.cmake} (100%) diff --git a/src/CMakeLists.linux.txt b/src/CMakeLists.linux.cmake similarity index 100% rename from src/CMakeLists.linux.txt rename to src/CMakeLists.linux.cmake diff --git a/src/CMakeLists.osx.txt b/src/CMakeLists.osx.cmake similarity index 100% rename from src/CMakeLists.osx.txt rename to src/CMakeLists.osx.cmake diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 49162d4e9..c8d6e056a 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -176,10 +176,10 @@ INCLUDE_DIRECTORIES( SET( OS_SPECIFIC_LINK_LIBRARIES "" ) IF( WIN32 ) - INCLUDE( "CMakeLists.win32.txt" ) + INCLUDE( "CMakeLists.win32.cmake" ) ENDIF( WIN32 ) IF( UNIX ) - INCLUDE( "CMakeLists.unix.txt" ) + INCLUDE( "CMakeLists.unix.cmake" ) ENDIF( UNIX ) IF( APPLE ) diff --git a/src/CMakeLists.unix.txt b/src/CMakeLists.unix.cmake similarity index 76% rename from src/CMakeLists.unix.txt rename to src/CMakeLists.unix.cmake index 975ddf20f..49caf297b 100644 --- a/src/CMakeLists.unix.txt +++ b/src/CMakeLists.unix.cmake @@ -7,9 +7,9 @@ ADD_DEFINITIONS( -fPIC ) SET( QXTWEB_LIBRARIES qxtweb-standalone ) IF( APPLE ) - INCLUDE( "CMakeLists.osx.txt" ) + INCLUDE( "CMakeLists.osx.cmake" ) ENDIF( APPLE ) IF( UNIX AND NOT APPLE ) - INCLUDE( "CMakeLists.linux.txt" ) + INCLUDE( "CMakeLists.linux.cmake" ) ENDIF( UNIX AND NOT APPLE ) diff --git a/src/CMakeLists.win32.txt b/src/CMakeLists.win32.cmake similarity index 100% rename from src/CMakeLists.win32.txt rename to src/CMakeLists.win32.cmake