Skip to content

Commit

Permalink
Rename CMakeLists..txt files to CMakeLists..cmake so we get proper sy…
Browse files Browse the repository at this point in the history
…ntax highlighting
  • Loading branch information
dschmidt committed Dec 27, 2011
1 parent 4c2c4b7 commit 9011e49
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 4 deletions.
File renamed without changes.
File renamed without changes.
4 changes: 2 additions & 2 deletions src/CMakeLists.txt
Expand Up @@ -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 )
Expand Down
4 changes: 2 additions & 2 deletions src/CMakeLists.unix.txt → src/CMakeLists.unix.cmake
Expand Up @@ -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 )
File renamed without changes.

0 comments on commit 9011e49

Please sign in to comment.