Skip to content

Commit fbd7dd2

Browse files
committed
greater should be all UPPERCASE
1 parent e2e1432 commit fbd7dd2

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

mapscript/python/CMakeLists.txt

+3-3
Original file line numberDiff line numberDiff line change
@@ -28,11 +28,11 @@ include_directories(${PROJECT_SOURCE_DIR}/mapscript/swiginc)
2828
include_directories(${PROJECT_SOURCE_DIR}/mapscript/)
2929
include_directories(${PROJECT_SOURCE_DIR}/mapscript/python)
3030

31-
if (${CMAKE_MAJOR_VERSION}.${CMAKE_MINOR_VERSION} greater 3.7)
31+
if (${CMAKE_MAJOR_VERSION}.${CMAKE_MINOR_VERSION} GREATER 3.7)
3232
swig_add_library(pythonmapscript TYPE MODULE LANGUAGE python SOURCES ../mapscript.i)
33-
else (${CMAKE_MAJOR_VERSION}.${CMAKE_MINOR_VERSION} greater 3.7)
33+
else (${CMAKE_MAJOR_VERSION}.${CMAKE_MINOR_VERSION} GREATER 3.7)
3434
swig_add_module(pythonmapscript python ../mapscript.i)
35-
endif (${CMAKE_MAJOR_VERSION}.${CMAKE_MINOR_VERSION} greater 3.7)
35+
endif (${CMAKE_MAJOR_VERSION}.${CMAKE_MINOR_VERSION} GREATER 3.7)
3636

3737
swig_link_libraries(pythonmapscript ${PYTHON_LIBRARIES} ${MAPSERVER_LIBMAPSERVER})
3838

0 commit comments

Comments
 (0)